From: jloup Date: Mon, 14 May 2018 18:12:46 +0000 (+0200) Subject: Reliable icon provider for cryptocurrencies logo : Bitonics. X-Git-Tag: v0.0.16 X-Git-Url: https://git.immae.eu/?p=perso%2FImmae%2FProjets%2FCryptomonnaies%2FCryptoportfolio%2FFront.git;a=commitdiff_plain;h=335b0c9bdc3e129f14bc40dd5f125b3526a83a40 Reliable icon provider for cryptocurrencies logo : Bitonics. --- diff --git a/cmd/web/Makefile b/cmd/web/Makefile index cb83f56..8b7d860 100644 --- a/cmd/web/Makefile +++ b/cmd/web/Makefile @@ -2,77 +2,99 @@ SHELL=/bin/bash ENV ?= dev export PATH := $(PATH):./node_modules/.bin -SRC_DIR=js -BUILD_DIR=build/js -JSX_SRC= header_footer.jsx main.jsx signup.jsx signin.jsx otp.jsx poloniex.jsx password_reset.jsx change_password.jsx account.jsx balance.jsx admin.jsx panel.jsx -JS_SRC= cookies.js app.js api.js -STATIC_FILES= index.html style.css fontello.css -STATIC_FILES+=$(addprefix fonts/, fontello.eot fontello.svg fontello.ttf fontello.woff fontello.woff2 cryptocoins.css cryptocoins.ttf cryptocoins.woff cryptocoins.woff2) -JSX_OBJS=$(addprefix $(BUILD_DIR)/,$(JSX_SRC:.jsx=.js)) -JS_OBJS=$(addprefix $(BUILD_DIR)/,$(JS_SRC)) -ICONS=$(addprefix $(STATIC_BUILD_DIR)/icons/black/, $(notdir $(wildcard static/icons/black/*.svg))) -ICONS+=$(addprefix $(STATIC_BUILD_DIR)/icons/color/, $(notdir $(wildcard static/icons/color/*.svg))) +# Javascript objects +JS_SRC_DIR=js +JS_BUILD_DIR=build/js +JSX_SRC=header_footer.jsx main.jsx signup.jsx signin.jsx otp.jsx poloniex.jsx password_reset.jsx change_password.jsx account.jsx balance.jsx admin.jsx panel.jsx icon.jsx +JS_SRC=cookies.js app.js api.js +JSX_OBJS=$(addprefix $(JS_BUILD_DIR)/,$(JSX_SRC:.jsx=.js)) +JS_OBJS=$(addprefix $(JS_BUILD_DIR)/,$(JS_SRC)) + +# Static resources STATIC_BUILD_DIR=build/static +STATIC_FILES=index.html style.css +# Fontello icon provider - regular icons +STATIC_FILES+=fontello.css +STATIC_FILES+=$(addprefix fonts/, fontello.eot fontello.svg fontello.ttf fontello.woff fontello.woff2) +FONTELLO_TMP_DIR = ./static/fontello +FONTELLO_HOST ?= http://fontello.com + +# Biticonics cryptocurrency icon provider. +STATIC_FILES+=$(addprefix fonts/, bitonics.min.css) +CRYPTO_ICONS_FONTS=$(addprefix $(STATIC_BUILD_DIR)/fonts/glyphs/ttf/, $(notdir $(wildcard static/fonts/glyphs/ttf/*.ttf))) +CRYPTO_ICONS_FONTS+=$(addprefix $(STATIC_BUILD_DIR)/fonts/glyphs/woff/, $(notdir $(wildcard static/fonts/glyphs/woff/*.woff))) +CRYPTO_ICONS_FONTS+=$(addprefix $(STATIC_BUILD_DIR)/fonts/glyphs/woff2/, $(notdir $(wildcard static/fonts/glyphs/woff2/*.woff2))) + +define fetch-bitonics-icons = + DIR="static/fonts/glyphs" + + curl 'https://bitonics.net/vendor/bitonics/bitonics.min.css' > static/fonts/bitonics.min.css + + glyphs=($(curl 'https://bitonics.net/vendor/bitonics/bitonics.css' | grep -Po 'glyphs/ttf/[a-z0-9]{8}' | cut -c 12-)) + + for glyph in "${glyphs[@]}" + do + if [ ! -f "$DIR/ttf/$glyph.ttf" ]; then + curl "https://bitonics.net/vendor/bitonics/glyphs/ttf/$glyph.ttf" > "$DIR/ttf/$glyph.ttf" + curl "https://bitonics.net/vendor/bitonics/glyphs/woff/$glyph.woff" > "$DIR/woff/$glyph.woff" + curl "https://bitonics.net/vendor/bitonics/glyphs/woff2/$glyph.woff2" > "$DIR/woff2/$glyph.woff2" + fi + done +endef + +# Rules install: node --version npm --version yarn --version yarn install -static: $(STATIC_BUILD_DIR) $(STATIC_BUILD_DIR)/fonts js $(addprefix $(STATIC_BUILD_DIR)/, $(STATIC_FILES)) $(ICONS) - -js: build/static/main.js - -$(STATIC_BUILD_DIR)/%: static/% - cp $< $@ - -$(STATIC_BUILD_DIR): - mkdir -p $(BUILD_DIR) +$(JS_BUILD_DIR): mkdir -p $@ - mkdir -p $@/icons/black - mkdir -p $@/icons/color $(STATIC_BUILD_DIR)/fonts: mkdir -p $@ -$(BUILD_DIR)/%.js: $(SRC_DIR)/%.jsx +$(STATIC_BUILD_DIR)/fonts/glyphs: + mkdir -p $@/ttf + mkdir -p $@/woff + mkdir -p $@/woff2 + +static: js $(addprefix $(STATIC_BUILD_DIR)/, $(STATIC_FILES)) $(CRYPTO_ICONS_FONTS) + +js: build/static/main.js + +$(STATIC_BUILD_DIR)/%: static/% $(STATIC_BUILD_DIR)/fonts + cp $< $@ + +$(JS_BUILD_DIR)/%.js: $(JS_SRC_DIR)/%.jsx eslint --fix $< cp $< $@ -$(BUILD_DIR)/%.js: $(SRC_DIR)/%.js +$(JS_BUILD_DIR)/%.js: $(JS_SRC_DIR)/%.js eslint $< cp $< $@ -$(STATIC_BUILD_DIR)/icons/black/%.svg: static/icons/black/%.svg +$(STATIC_BUILD_DIR)/fonts/glyphs/%: static/fonts/glyphs/% $(STATIC_BUILD_DIR)/fonts/glyphs cp $< $@ -build/static/main.js: $(JSX_OBJS) $(JS_OBJS) env/$(ENV).env +build/static/main.js: $(JS_BUILD_DIR) $(JSX_OBJS) $(JS_OBJS) env/$(ENV).env browserify -t [ babelify --presets [ env react ] --plugins [ transform-class-properties ] ] \ -t [ localenvify --envfile env/$(ENV).env ] \ -t [ debowerify ] \ - $(BUILD_DIR)/main.js -o $@ + $(JS_BUILD_DIR)/main.js -o $@ -build/webapp.tar.gz: $(addprefix $(STATIC_BUILD_DIR)/, $(STATIC_FILES)) build/static/main.js $(ICONS) +build/webapp.tar.gz: $(addprefix $(STATIC_BUILD_DIR)/, $(STATIC_FILES)) build/static/main.js $(CRYPTO_ICONS_FONTS) tar czf $@ --directory=$(dir $<) $(subst $(STATIC_BUILD_DIR)/,,$^) -release: $(STATIC_BUILD_DIR) build/webapp.tar.gz +release: build/webapp.tar.gz clean: rm -rf build rm -rf node_modules - -FONT_DIR = ./static/fontello -FONTELLO_HOST ?= http://fontello.com - -crypto-icons: - curl "https://raw.githubusercontent.com/AllienWorks/cryptocoins/master/webfont/cryptocoins.css" > ./static/fonts/cryptocoins.css - curl "https://raw.githubusercontent.com/AllienWorks/cryptocoins/master/webfont/cryptocoins.ttf" > ./static/fonts/cryptocoins.ttf - curl "https://raw.githubusercontent.com/AllienWorks/cryptocoins/master/webfont/cryptocoins.woff" > ./static/fonts/cryptocoins.woff - curl "https://raw.githubusercontent.com/AllienWorks/cryptocoins/master/webfont/cryptocoins.woff2" > ./static/fonts/cryptocoins.woff2 - -fontopen: +fontello-open: @if test ! `which curl` ; then \ echo 'Install curl first.' >&2 ; \ exit 128 ; \ @@ -82,8 +104,7 @@ fontopen: ${FONTELLO_HOST} x-www-browser ${FONTELLO_HOST}/`cat .fontello` - -fontsave: +fontello-save: @if test ! `which unzip` ; then \ echo 'Install unzip first.' >&2 ; \ exit 128 ; \ @@ -96,9 +117,14 @@ fontsave: curl --silent --show-error --fail --output .fontello.zip \ ${FONTELLO_HOST}/`cat .fontello`/get unzip .fontello.zip -d .fontello.src - rm -rf ${FONT_DIR} - mv `find ./.fontello.src -maxdepth 1 -name 'fontello-*'` ${FONT_DIR} + rm -rf ${FONTELLO_TMP_DIR} + mv `find ./.fontello.src -maxdepth 1 -name 'fontello-*'` ${FONTELLO_TMP_DIR} rm -rf .fontello.src .fontello.zip - cp ${FONT_DIR}/font/* static/fonts/ - cp ${FONT_DIR}/css/fontello-codes.css static/fontello.css - rm -rf ${FONT_DIR} \ No newline at end of file + cp ${FONTELLO_TMP_DIR}/font/* static/fonts/ + cp ${FONTELLO_TMP_DIR}/css/fontello-codes.css static/fontello.css + rm -rf ${FONTELLO_TMP_DIR} + + +crypto-icons: ; $(value fetch-bitonics-icons) + +.ONESHELL: \ No newline at end of file diff --git a/cmd/web/js/account.jsx b/cmd/web/js/account.jsx index 9a976f4..a80b44a 100644 --- a/cmd/web/js/account.jsx +++ b/cmd/web/js/account.jsx @@ -1,6 +1,7 @@ import Api from './api.js'; import React from 'react'; import Panel from './panel.js'; +import Icon from './icon.js'; class AccountInformation extends React.Component { constructor(props) { @@ -157,13 +158,13 @@ class PoloniexCredentialsForm extends React.Component { var secretDisplayed = this.props.editMode === true ? this.props.apiSecret : 'XXXXXXX'; var keyDisplayed = this.props.editMode === true ? this.props.apiKey : 'XXXXXXX'; - var iconName = 'icon-cancel-circled'; + var iconName = 'icon-cancel'; switch (this.props.status) { case 'loading': - iconName = 'icon-hourglass-2'; + iconName = 'icon-loop'; break; case 'ok': - iconName = 'icon-ok-circled'; + iconName = 'icon-ok'; break; } @@ -171,7 +172,7 @@ class PoloniexCredentialsForm extends React.Component {
- {this.props.statusMessage} + {this.props.statusMessage}
@@ -195,8 +196,8 @@ class UserAccount extends React.Component { render = () => { return ( - } title="Account" /> - } title="Poloniex credentials" topClassName="api-credentials-form" /> + } title={
Account
} /> + } title={
Poloniex credentials
} topClassName="api-credentials-form" />
); } diff --git a/cmd/web/js/balance.jsx b/cmd/web/js/balance.jsx index 6217e96..1915511 100644 --- a/cmd/web/js/balance.jsx +++ b/cmd/web/js/balance.jsx @@ -4,10 +4,10 @@ import classnames from 'classnames'; class CurrencyLogo extends React.Component { render = () => { - var className = classnames('cc', this.props.currency, 'currency-logo'); + var className = classnames('bt', 'bt-' + this.props.currency.toLowerCase(), 'currency-logo'); return ; + aria-hidden="true" + title={this.props.currency}>; } } diff --git a/cmd/web/js/icon.jsx b/cmd/web/js/icon.jsx new file mode 100644 index 0000000..53453bc --- /dev/null +++ b/cmd/web/js/icon.jsx @@ -0,0 +1,19 @@ +import React from 'react'; +import classnames from 'classnames'; + +class Icon extends React.Component { + render = () => { + var className = null; + + if (this.props.icon.startsWith('icon-')) { + className = classnames(this.props.icon, this.props.className); + return ; + } + + className = classnames('bt', 'bt-' + this.props.icon, this.props.className); + return ; + + } +} + +export default Icon; diff --git a/cmd/web/js/panel.jsx b/cmd/web/js/panel.jsx index 7f9f9a3..e1073c6 100644 --- a/cmd/web/js/panel.jsx +++ b/cmd/web/js/panel.jsx @@ -13,7 +13,7 @@ class Panel extends React.Component {
-
{this.props.title}
+
{this.props.title}

{this.props.component} diff --git a/cmd/web/static/fontello.css b/cmd/web/static/fontello.css index ba4e933..ae38241 100644 --- a/cmd/web/static/fontello.css +++ b/cmd/web/static/fontello.css @@ -1,6 +1,5 @@ -.icon-ok-circled:before { content: '\e800'; } /* '' */ -.icon-cancel-circled:before { content: '\e801'; } /* '' */ +.icon-cancel:before { content: '\e800'; } /* '' */ .icon-key:before { content: '\e802'; } /* '' */ .icon-user:before { content: '\e803'; } /* '' */ -.icon-hourglass-2:before { content: '\f252'; } /* '' */ \ No newline at end of file +.icon-ok:before { content: '\e804'; } /* '' */ \ No newline at end of file diff --git a/cmd/web/static/fonts/bitonics.min.css b/cmd/web/static/fonts/bitonics.min.css new file mode 100644 index 0000000..d32fb96 --- /dev/null +++ b/cmd/web/static/fonts/bitonics.min.css @@ -0,0 +1 @@ +.bt { -moz-osx-font-smoothing: grayscale; -webkit-font-smoothing: antialiased; display: inline-block; font-style: normal; font-variant: normal; text-rendering: auto; line-height: 1; } .bt-lg { font-size: 1.33333333em; line-height: 0.75em; vertical-align: -15%; } .bt-2x { font-size: 2em; } .bt-3x { font-size: 3em; } .bt-4x { font-size: 4em; } .bt-5x { font-size: 5em; } .bt-stack { position: relative; display: inline-block; width: 2em; height: 2em; line-height: 2em; vertical-align: middle; } .bt-stack-1x, .bt-stack-2x { position: absolute; left: 0; width: 100%; text-align: center; } .bt-stack-1x { line-height: inherit; } .bt-stack-2x { font-size: 2em; } .bt-inverse { color: #ffffff; } .bt-triangle + i, .bt-triangleo + i { padding-top: .25em; } .bt-star + i, .bt-staro + i { padding-top: .1em; } .bt-spin { -webkit-animation: bt-spin 500ms infinite linear; animation: bt-spin 500ms infinite linear; } @-webkit-keyframes bt-spin { 0% { -webkit-transform: rotate(0deg); transform: rotate(0deg); } 100% { -webkit-transform: rotate(360deg); transform: rotate(360deg); } } @keyframes bt-spin { 0% { -webkit-transform: rotate(0deg); transform: rotate(0deg); } 100% { -webkit-transform: rotate(360deg); transform: rotate(360deg); } } i[class^='bt bt-']::before { content: "\E07B"; font-family: "question"; } .bt.bt-1wo::before { content: "\E000"; font-family: "1wo"; } .bt.bt-abnamro::before { content: "\E001"; font-family: "abnamro"; } .bt.bt-acchain::before { content: "\E002"; font-family: "acchain"; } .bt.bt-xai::before { content: "\E003"; font-family: "xai"; } .bt.bt-aka::before { content: "\E004"; font-family: "aka"; } .bt.bt-alis::before { content: "\E005"; font-family: "alis"; } .bt.bt-amis::before { content: "\E006"; font-family: "amis"; } .bt.bt-arch::before { content: "\E007"; font-family: "arch"; } .bt.bt-atb::before { content: "\E008"; font-family: "atb"; } .bt.bt-atm::before { content: "\E009"; font-family: "atm"; } .bt.bt-awr::before { content: "\E00A"; font-family: "awr"; } .bt.bt-acc::before { content: "\E00B"; font-family: "acc"; } .bt.bt-adx::before { content: "\E00C"; font-family: "adx"; } .bt.bt-adh::before { content: "\E00D"; font-family: "adh"; } .bt.bt-adl::before { content: "\E00E"; font-family: "adl"; } .bt.bt-aib::before { content: "\E00F"; font-family: "aib"; } .bt.bt-aeon::before { content: "\E010"; font-family: "aeon"; } .bt.bt-arn::before { content: "\E011"; font-family: "arn"; } .bt.bt-ae::before { content: "\E012"; font-family: "ae"; } .bt.bt-agrs::before { content: "\E013"; font-family: "agrs"; } .bt.bt-dlt::before { content: "\E014"; font-family: "dlt"; } .bt.bt-aid::before { content: "\E015"; font-family: "aid"; } .bt.bt-aix::before { content: "\E016"; font-family: "aix"; } .bt.bt-aion::before { content: "\E017"; font-family: "aion"; } .bt.bt-ast::before { content: "\E018"; font-family: "ast"; } .bt.bt-air::before { content: "\E019"; font-family: "air"; } .bt.bt-alipay::before { content: "\E01A"; font-family: "alipay"; } .bt.bt-soc::before { content: "\E01B"; font-family: "soc"; } .bt.bt-allcoin::before { content: "\E01C"; font-family: "allcoin"; } .bt.bt-acat::before { content: "\E01D"; font-family: "acat"; } .bt.bt-amazon::before { content: "\E01E"; font-family: "amazon"; } .bt.bt-amb::before { content: "\E01F"; font-family: "amb"; } .bt.bt-amex::before { content: "\E020"; font-family: "amex"; } .bt.bt-avh::before { content: "\E021"; font-family: "avh"; } .bt.bt-anc::before { content: "\E022"; font-family: "anc"; } .bt.bt-aph::before { content: "\E023"; font-family: "aph"; } .bt.bt-appc::before { content: "\E024"; font-family: "appc"; } .bt.bt-applepay::before { content: "\E025"; font-family: "applepay"; } .bt.bt-ant::before { content: "\E026"; font-family: "ant"; } .bt.bt-aramex::before { content: "\E027"; font-family: "aramex"; } .bt.bt-ardr::before { content: "\E028"; font-family: "ardr"; } .bt.bt-ari::before { content: "\E029"; font-family: "ari"; } .bt.bt-ark::before { content: "\E02A"; font-family: "ark"; } .bt.bt-xas::before { content: "\E02B"; font-family: "xas"; } .bt.bt-adc::before { content: "\E02C"; font-family: "adc"; } .bt.bt-rep::before { content: "\E02D"; font-family: "rep"; } .bt.bt-aura::before { content: "\E02E"; font-family: "aura"; } .bt.bt-aur::before { content: "\E02F"; font-family: "aur"; } .bt.bt-avt::before { content: "\E030"; font-family: "avt"; } .bt.bt-b2b::before { content: "\E031"; font-family: "b2b"; } .bt.bt-kb3::before { content: "\E032"; font-family: "kb3"; } .bt.bt-bax::before { content: "\E033"; font-family: "bax"; } .bt.bt-bcap::before { content: "\E034"; font-family: "bcap"; } .bt.bt-bee::before { content: "\E035"; font-family: "bee"; } .bt.bt-bitso::before { content: "\E036"; font-family: "bitso"; } .bt.bt-vee::before { content: "\E037"; font-family: "vee"; } .bt.bt-blue::before { content: "\E038"; font-family: "blue"; } .bt.bt-bnp::before { content: "\E039"; font-family: "bnp"; } .bt.bt-bos::before { content: "\E03A"; font-family: "bos"; } .bt.bt-broker::before { content: "\E03B"; font-family: "broker"; } .bt.bt-btcalpha::before { content: "\E03C"; font-family: "btcalpha"; } .bt.bt-btcc::before { content: "\E03D"; font-family: "btcc"; } .bt.bt-btcn::before { content: "\E03E"; font-family: "btcn"; } .bt.bt-banca::before { content: "\E03F"; font-family: "banca"; } .bt.bt-bsf::before { content: "\E040"; font-family: "bsf"; } .bt.bt-bancomat::before { content: "\E041"; font-family: "bancomat"; } .bt.bt-bancomext::before { content: "\E042"; font-family: "bancomext"; } .bt.bt-bancontact::before { content: "\E043"; font-family: "bancontact"; } .bt.bt-bnt::before { content: "\E044"; font-family: "bnt"; } .bt.bt-bbos::before { content: "\E045"; font-family: "bbos"; } .bt.bt-bca::before { content: "\E046"; font-family: "bca"; } .bt.bt-banktransfer::before { content: "\E047"; font-family: "banktransfer"; } .bt.bt-boa::before { content: "\E048"; font-family: "boa"; } .bt.bt-boat::before { content: "\E049"; font-family: "boat"; } .bt.bt-bocs::before { content: "\E04A"; font-family: "bocs"; } .bt.bt-boh::before { content: "\E04B"; font-family: "boh"; } .bt.bt-bplsk::before { content: "\E04C"; font-family: "bplsk"; } .bt.bt-bkx::before { content: "\E04D"; font-family: "bkx"; } .bt.bt-bankomat::before { content: "\E04E"; font-family: "bankomat"; } .bt.bt-banx::before { content: "\E04F"; font-family: "banx"; } .bt.bt-bacs::before { content: "\E050"; font-family: "bacs"; } .bt.bt-bat::before { content: "\E051"; font-family: "bat"; } .bt.bt-bta::before { content: "\E052"; font-family: "bta"; } .bt.bt-bitb::before { content: "\E053"; font-family: "bitb"; } .bt.bt-xbts::before { content: "\E054"; font-family: "xbts"; } .bt.bt-bbi::before { content: "\E055"; font-family: "bbi"; } .bt.bt-bix::before { content: "\E056"; font-family: "bix"; } .bt.bt-binance::before { content: "\E057"; font-family: "binance"; } .bt.bt-bnb::before { content: "\E058"; font-family: "bnb"; } .bt.bt-bio::before { content: "\E059"; font-family: "bio"; } .bt.bt-btrn::before { content: "\E05A"; font-family: "btrn"; } .bt.bt-bay::before { content: "\E05B"; font-family: "bay"; } .bt.bt-bck::before { content: "\E05C"; font-family: "bck"; } .bt.bt-cat::before { content: "\E05D"; font-family: "cat"; } .bt.bt-bcc::before { content: "\E05E"; font-family: "bcc"; } .bt.bt-bdg::before { content: "\E05F"; font-family: "bdg"; } .bt.bt-bitflyer::before { content: "\E060"; font-family: "bitflyer"; } .bt.bt-bsd::before { content: "\E061"; font-family: "bsd"; } .bt.bt-bts::before { content: "\E062"; font-family: "bts"; } .bt.bt-xbs::before { content: "\E063"; font-family: "xbs"; } .bt.bt-bitx::before { content: "\E064"; font-family: "bitx"; } .bt.bt-btc::before { content: "\E065"; font-family: "btc"; } .bt.bt-btx::before { content: "\E065"; font-family: "btc"; } .bt.bt-bch::before { content: "\E066"; font-family: "bch"; } .bt.bt-bch2::before { content: "\E067"; font-family: "bch2"; } .bt.bt-btg::before { content: "\E068"; font-family: "btg"; } .bt.bt-btcp::before { content: "\E069"; font-family: "btcp"; } .bt.bt-btcd::before { content: "\E06A"; font-family: "btcd"; } .bt.bt-bcx::before { content: "\E06B"; font-family: "bcx"; } .bt.bt-btx::before { content: "\E06C"; font-family: "btx"; } .bt.bt-bdl::before { content: "\E06D"; font-family: "bdl"; } .bt.bt-bitfinex::before { content: "\E06E"; font-family: "bitfinex"; } .bt.bt-bithumb::before { content: "\E06F"; font-family: "bithumb"; } .bt.bt-bt::before { content: "\E070"; font-family: "bt"; } .bt.bt-brokenchain::before { content: "\E071"; font-family: "brokenchain"; } .bt.bt-card::before { content: "\E072"; font-family: "card"; } .bt.bt-card1::before { content: "\E073"; font-family: "card1"; } .bt.bt-card2::before { content: "\E074"; font-family: "card2"; } .bt.bt-certificate::before { content: "\E075"; font-family: "certificate"; } .bt.bt-certificateo::before { content: "\E076"; font-family: "certificateo"; } .bt.bt-circle::before { content: "\E077"; font-family: "circle"; } .bt.bt-circleo::before { content: "\E078"; font-family: "circleo"; } .bt.bt-loader::before { content: "\E079"; font-family: "loader"; } .bt.bt-noimage::before { content: "\E07A"; font-family: "noimage"; } .bt.bt-question::before { content: "\E07B"; font-family: "question"; } .bt.bt-shield::before { content: "\E07C"; font-family: "shield"; } .bt.bt-shieldo::before { content: "\E07D"; font-family: "shieldo"; } .bt.bt-square::before { content: "\E07E"; font-family: "square"; } .bt.bt-square1::before { content: "\E07F"; font-family: "square1"; } .bt.bt-square2::before { content: "\E080"; font-family: "square2"; } .bt.bt-squareo::before { content: "\E081"; font-family: "squareo"; } .bt.bt-star::before { content: "\E082"; font-family: "star"; } .bt.bt-staro::before { content: "\E083"; font-family: "staro"; } .bt.bt-triangle::before { content: "\E084"; font-family: "triangle"; } .bt.bt-triangleo::before { content: "\E085"; font-family: "triangleo"; } .bt.bt-bitpanda::before { content: "\E086"; font-family: "bitpanda"; } .bt.bt-bitpay::before { content: "\E087"; font-family: "bitpay"; } .bt.bt-bq::before { content: "\E088"; font-family: "bq"; } .bt.bt-bitstamp::before { content: "\E089"; font-family: "bitstamp"; } .bt.bt-swift::before { content: "\E08A"; font-family: "swift"; } .bt.bt-bittrex::before { content: "\E08B"; font-family: "bittrex"; } .bt.bt-bc::before { content: "\E08C"; font-family: "bc"; } .bt.bt-bmc::before { content: "\E08D"; font-family: "bmc"; } .bt.bt-xbp::before { content: "\E08E"; font-family: "xbp"; } .bt.bt-bcpt::before { content: "\E08F"; font-family: "bcpt"; } .bt.bt-block::before { content: "\E090"; font-family: "block"; } .bt.bt-bpt::before { content: "\E091"; font-family: "bpt"; } .bt.bt-blt::before { content: "\E092"; font-family: "blt"; } .bt.bt-blz::before { content: "\E093"; font-family: "blz"; } .bt.bt-bft::before { content: "\E094"; font-family: "bft"; } .bt.bt-bot::before { content: "\E095"; font-family: "bot"; } .bt.bt-bnty::before { content: "\E096"; font-family: "bnty"; } .bt.bt-brd::before { content: "\E097"; font-family: "brd"; } .bt.bt-brk::before { content: "\E098"; font-family: "brk"; } .bt.bt-brx::before { content: "\E099"; font-family: "brx"; } .bt.bt-bco::before { content: "\E09A"; font-family: "bco"; } .bt.bt-gbp::before { content: "\E09B"; font-family: "gbp"; } .bt.bt-bwk::before { content: "\E09C"; font-family: "bwk"; } .bt.bt-burst::before { content: "\E09D"; font-family: "burst"; } .bt.bt-gbyte::before { content: "\E09E"; font-family: "gbyte"; } .bt.bt-bcn::before { content: "\E09F"; font-family: "bcn"; } .bt.bt-btm::before { content: "\E0A0"; font-family: "btm"; } .bt.bt-cex::before { content: "\E0A1"; font-family: "cex"; } .bt.bt-cfun::before { content: "\E0A2"; font-family: "cfun"; } .bt.bt-coss::before { content: "\E0A3"; font-family: "coss"; } .bt.bt-coti::before { content: "\E0A4"; font-family: "coti"; } .bt.bt-can::before { content: "\E0A5"; font-family: "can"; } .bt.bt-cpost::before { content: "\E0A6"; font-family: "cpost"; } .bt.bt-capp::before { content: "\E0A7"; font-family: "capp"; } .bt.bt-ada::before { content: "\E0A8"; font-family: "ada"; } .bt.bt-carecredit::before { content: "\E0A9"; font-family: "carecredit"; } .bt.bt-cxo::before { content: "\E0AA"; font-family: "cxo"; } .bt.bt-cartasi::before { content: "\E0AB"; font-family: "cartasi"; } .bt.bt-cartebancaire::before { content: "\E0AC"; font-family: "cartebancaire"; } .bt.bt-capp::before { content: "\E0AD"; font-family: "capp"; } .bt.bt-cashcloud::before { content: "\E0AE"; font-family: "cashcloud"; } .bt.bt-cashu::before { content: "\E0AF"; font-family: "cashu"; } .bt.bt-csc::before { content: "\E0B0"; font-family: "csc"; } .bt.bt-link::before { content: "\E0B1"; font-family: "link"; } .bt.bt-cag::before { content: "\E0B2"; font-family: "cag"; } .bt.bt-chase::before { content: "\E0B3"; font-family: "chase"; } .bt.bt-checkout::before { content: "\E0B4"; font-family: "checkout"; } .bt.bt-ccb::before { content: "\E0B5"; font-family: "ccb"; } .bt.bt-cmb::before { content: "\E0B6"; font-family: "cmb"; } .bt.bt-chinapost::before { content: "\E0B7"; font-family: "chinapost"; } .bt.bt-cny::before { content: "\E0B8"; font-family: "cny"; } .bt.bt-time::before { content: "\E0B9"; font-family: "time"; } .bt.bt-cnd::before { content: "\E0BA"; font-family: "cnd"; } .bt.bt-cirrus::before { content: "\E0BB"; font-family: "cirrus"; } .bt.bt-citibank::before { content: "\E0BC"; font-family: "citibank"; } .bt.bt-cizb::before { content: "\E0BD"; font-family: "cizb"; } .bt.bt-cizbc::before { content: "\E0BE"; font-family: "cizbc"; } .bt.bt-cvc::before { content: "\E0BF"; font-family: "cvc"; } .bt.bt-clam::before { content: "\E0C0"; font-family: "clam"; } .bt.bt-clickandbuy::before { content: "\E0C1"; font-family: "clickandbuy"; } .bt.bt-cloak::before { content: "\E0C2"; font-family: "cloak"; } .bt.bt-cld::before { content: "\E0C3"; font-family: "cld"; } .bt.bt-coe::before { content: "\E0C4"; font-family: "coe"; } .bt.bt-coxst::before { content: "\E0C5"; font-family: "coxst"; } .bt.bt-cob::before { content: "\E0C6"; font-family: "cob"; } .bt.bt-cof::before { content: "\E0C7"; font-family: "cof"; } .bt.bt-cfi::before { content: "\E0C8"; font-family: "cfi"; } .bt.bt-cdt::before { content: "\E0C9"; font-family: "cdt"; } .bt.bt-mee::before { content: "\E0CA"; font-family: "mee"; } .bt.bt-cn1::before { content: "\E0CB"; font-family: "cn1"; } .bt.bt-cb::before { content: "\E0CC"; font-family: "cb"; } .bt.bt-coincheck::before { content: "\E0CD"; font-family: "coincheck"; } .bt.bt-coindesk::before { content: "\E0CE"; font-family: "coindesk"; } .bt.bt-coinfloor::before { content: "\E0CF"; font-family: "coinfloor"; } .bt.bt-cnfy::before { content: "\E0D0"; font-family: "cnfy"; } .bt.bt-ctph::before { content: "\E0D1"; font-family: "ctph"; } .bt.bt-colx::before { content: "\E0D2"; font-family: "colx"; } .bt.bt-cmp::before { content: "\E0D3"; font-family: "cmp"; } .bt.bt-sen::before { content: "\E0D4"; font-family: "sen"; } .bt.bt-csys::before { content: "\E0D5"; font-family: "csys"; } .bt.bt-xcp::before { content: "\E0D6"; font-family: "xcp"; } .bt.bt-cov::before { content: "\E0D7"; font-family: "cov"; } .bt.bt-crea::before { content: "\E0D8"; font-family: "crea"; } .bt.bt-csuis::before { content: "\E0D9"; font-family: "csuis"; } .bt.bt-crb::before { content: "\E0DA"; font-family: "crb"; } .bt.bt-cs::before { content: "\E0DB"; font-family: "cs"; } .bt.bt-credo::before { content: "\E0DC"; font-family: "credo"; } .bt.bt-cmct::before { content: "\E0DD"; font-family: "cmct"; } .bt.bt-crpt::before { content: "\E0DE"; font-family: "crpt"; } .bt.bt-cryptobridge::before { content: "\E0DF"; font-family: "cryptobridge"; } .bt.bt-cnx::before { content: "\E0E0"; font-family: "cnx"; } .bt.bt-cryptonit::before { content: "\E0E1"; font-family: "cryptonit"; } .bt.bt-cryptopia::before { content: "\E0E2"; font-family: "cryptopia"; } .bt.bt-cryptovest::before { content: "\E0E3"; font-family: "cryptovest"; } .bt.bt-auto::before { content: "\E0E4"; font-family: "auto"; } .bt.bt-crnc::before { content: "\E0E5"; font-family: "crnc"; } .bt.bt-cvt::before { content: "\E0E6"; font-family: "cvt"; } .bt.bt-dadi::before { content: "\E0E7"; font-family: "dadi"; } .bt.bt-dax::before { content: "\E0E8"; font-family: "dax"; } .bt.bt-dta::before { content: "\E0E9"; font-family: "dta"; } .bt.bt-datx::before { content: "\E0EA"; font-family: "datx"; } .bt.bt-drp::before { content: "\E0EB"; font-family: "drp"; } .bt.bt-dct::before { content: "\E0EC"; font-family: "dct"; } .bt.bt-dew::before { content: "\E0ED"; font-family: "dew"; } .bt.bt-dhl::before { content: "\E0EE"; font-family: "dhl"; } .bt.bt-dibc::before { content: "\E0EF"; font-family: "dibc"; } .bt.bt-discover::before { content: "\E0F0"; font-family: "discover"; } .bt.bt-dmt::before { content: "\E0F1"; font-family: "dmt"; } .bt.bt-note::before { content: "\E0F2"; font-family: "note"; } .bt.bt-dovu::before { content: "\E0F3"; font-family: "dovu"; } .bt.bt-dpd::before { content: "\E0F4"; font-family: "dpd"; } .bt.bt-dsv::before { content: "\E0F5"; font-family: "dsv"; } .bt.bt-dai::before { content: "\E0F6"; font-family: "dai"; } .bt.bt-dankort::before { content: "\E0F7"; font-family: "dankort"; } .bt.bt-daohb::before { content: "\E0F8"; font-family: "daohb"; } .bt.bt-dash::before { content: "\E0F9"; font-family: "dash"; } .bt.bt-dtt::before { content: "\E0FA"; font-family: "dtt"; } .bt.bt-dxt::before { content: "\E0FB"; font-family: "dxt"; } .bt.bt-dat::before { content: "\E0FC"; font-family: "dat"; } .bt.bt-deb::before { content: "\E0FD"; font-family: "deb"; } .bt.bt-mana::before { content: "\E0FE"; font-family: "mana"; } .bt.bt-dml::before { content: "\E0FF"; font-family: "dml"; } .bt.bt-hst::before { content: "\E100"; font-family: "hst"; } .bt.bt-dcr::before { content: "\E101"; font-family: "dcr"; } .bt.bt-dbc::before { content: "\E102"; font-family: "dbc"; } .bt.bt-onion::before { content: "\E103"; font-family: "onion"; } .bt.bt-dpy::before { content: "\E104"; font-family: "dpy"; } .bt.bt-dent::before { content: "\E105"; font-family: "dent"; } .bt.bt-dcn::before { content: "\E106"; font-family: "dcn"; } .bt.bt-dth::before { content: "\E107"; font-family: "dth"; } .bt.bt-deub::before { content: "\E108"; font-family: "deub"; } .bt.bt-dpost::before { content: "\E109"; font-family: "dpost"; } .bt.bt-eve::before { content: "\E10A"; font-family: "eve"; } .bt.bt-dfinity::before { content: "\E10B"; font-family: "dfinity"; } .bt.bt-dmd::before { content: "\E10C"; font-family: "dmd"; } .bt.bt-dgb::before { content: "\E10D"; font-family: "dgb"; } .bt.bt-xdn::before { content: "\E10E"; font-family: "xdn"; } .bt.bt-dgd::before { content: "\E10F"; font-family: "dgd"; } .bt.bt-dgx::before { content: "\E110"; font-family: "dgx"; } .bt.bt-dime::before { content: "\E111"; font-family: "dime"; } .bt.bt-dinersclub::before { content: "\E112"; font-family: "dinersclub"; } .bt.bt-directdebit::before { content: "\E113"; font-family: "directdebit"; } .bt.bt-divx::before { content: "\E114"; font-family: "divx"; } .bt.bt-dockio::before { content: "\E115"; font-family: "dockio"; } .bt.bt-doge::before { content: "\E116"; font-family: "doge"; } .bt.bt-drt::before { content: "\E117"; font-family: "drt"; } .bt.bt-drg::before { content: "\E118"; font-family: "drg"; } .bt.bt-drgn::before { content: "\E119"; font-family: "drgn"; } .bt.bt-drmt::before { content: "\E11A"; font-family: "drmt"; } .bt.bt-dyn::before { content: "\E11B"; font-family: "dyn"; } .bt.bt-dtr::before { content: "\E11C"; font-family: "dtr"; } .bt.bt-ecc::before { content: "\E11D"; font-family: "ecc"; } .bt.bt-echo::before { content: "\E11E"; font-family: "echo"; } .bt.bt-elo::before { content: "\E11F"; font-family: "elo"; } .bt.bt-ems::before { content: "\E120"; font-family: "ems"; } .bt.bt-eos::before { content: "\E121"; font-family: "eos"; } .bt.bt-esrwallet::before { content: "\E122"; font-family: "esrwallet"; } .bt.bt-essa::before { content: "\E123"; font-family: "essa"; } .bt.bt-lend::before { content: "\E124"; font-family: "lend"; } .bt.bt-exc::before { content: "\E125"; font-family: "exc"; } .bt.bt-exx::before { content: "\E126"; font-family: "exx"; } .bt.bt-ezt::before { content: "\E127"; font-family: "ezt"; } .bt.bt-earth::before { content: "\E128"; font-family: "earth"; } .bt.bt-ebanx::before { content: "\E129"; font-family: "ebanx"; } .bt.bt-edg::before { content: "\E12A"; font-family: "edg"; } .bt.bt-efx::before { content: "\E12B"; font-family: "efx"; } .bt.bt-edo::before { content: "\E12C"; font-family: "edo"; } .bt.bt-emc2::before { content: "\E12D"; font-family: "emc2"; } .bt.bt-elc::before { content: "\E12E"; font-family: "elc"; } .bt.bt-xel::before { content: "\E12F"; font-family: "xel"; } .bt.bt-ela::before { content: "\E130"; font-family: "ela"; } .bt.bt-eca::before { content: "\E131"; font-family: "eca"; } .bt.bt-elec::before { content: "\E132"; font-family: "elec"; } .bt.bt-etn::before { content: "\E133"; font-family: "etn"; } .bt.bt-elix::before { content: "\E134"; font-family: "elix"; } .bt.bt-mbrs::before { content: "\E135"; font-family: "mbrs"; } .bt.bt-emc::before { content: "\E136"; font-family: "emc"; } .bt.bt-ett::before { content: "\E137"; font-family: "ett"; } .bt.bt-enrg::before { content: "\E138"; font-family: "enrg"; } .bt.bt-eng::before { content: "\E139"; font-family: "eng"; } .bt.bt-enj::before { content: "\E13A"; font-family: "enj"; } .bt.bt-env::before { content: "\E13B"; font-family: "env"; } .bt.bt-equa::before { content: "\E13C"; font-family: "equa"; } .bt.bt-eql::before { content: "\E13D"; font-family: "eql"; } .bt.bt-edoge::before { content: "\E13E"; font-family: "edoge"; } .bt.bt-ech::before { content: "\E13F"; font-family: "ech"; } .bt.bt-etc::before { content: "\E140"; font-family: "etc"; } .bt.bt-eth::before { content: "\E141"; font-family: "eth"; } .bt.bt-fuel::before { content: "\E142"; font-family: "fuel"; } .bt.bt-ethos::before { content: "\E143"; font-family: "ethos"; } .bt.bt-eur::before { content: "\E144"; font-family: "eur"; } .bt.bt-eurocheque::before { content: "\E145"; font-family: "eurocheque"; } .bt.bt-erc::before { content: "\E146"; font-family: "erc"; } .bt.bt-xuc::before { content: "\E147"; font-family: "xuc"; } .bt.bt-exmo::before { content: "\E148"; font-family: "exmo"; } .bt.bt-xp::before { content: "\E149"; font-family: "xp"; } .bt.bt-exy::before { content: "\E14A"; font-family: "exy"; } .bt.bt-fct::before { content: "\E14B"; font-family: "fct"; } .bt.bt-fair::before { content: "\E14C"; font-family: "fair"; } .bt.bt-ftc::before { content: "\E14D"; font-family: "ftc"; } .bt.bt-fedex::before { content: "\E14E"; font-family: "fedex"; } .bt.bt-fil::before { content: "\E14F"; font-family: "fil"; } .bt.bt-fi::before { content: "\E150"; font-family: "fi"; } .bt.bt-1st::before { content: "\E151"; font-family: "1st"; } .bt.bt-fash::before { content: "\E152"; font-family: "fash"; } .bt.bt-flattr::before { content: "\E153"; font-family: "flattr"; } .bt.bt-flo::before { content: "\E154"; font-family: "flo"; } .bt.bt-fluz::before { content: "\E155"; font-family: "fluz"; } .bt.bt-frk::before { content: "\E156"; font-family: "frk"; } .bt.bt-fc2::before { content: "\E157"; font-family: "fc2"; } .bt.bt-fun::before { content: "\E158"; font-family: "fun"; } .bt.bt-fsn::before { content: "\E159"; font-family: "fsn"; } .bt.bt-gas::before { content: "\E15A"; font-family: "gas"; } .bt.bt-gdax::before { content: "\E15B"; font-family: "gdax"; } .bt.bt-get::before { content: "\E15C"; font-family: "get"; } .bt.bt-gxs::before { content: "\E15D"; font-family: "gxs"; } .bt.bt-gxs::before { content: "\E15E"; font-family: "gxs"; } .bt.bt-game::before { content: "\E15F"; font-family: "game"; } .bt.bt-gategoin::before { content: "\E160"; font-family: "gategoin"; } .bt.bt-gateio::before { content: "\E161"; font-family: "gateio"; } .bt.bt-gemini::before { content: "\E162"; font-family: "gemini"; } .bt.bt-gem::before { content: "\E163"; font-family: "gem"; } .bt.bt-gvt::before { content: "\E164"; font-family: "gvt"; } .bt.bt-gemz::before { content: "\E165"; font-family: "gemz"; } .bt.bt-gto::before { content: "\E166"; font-family: "gto"; } .bt.bt-gla::before { content: "\E167"; font-family: "gla"; } .bt.bt-gjc::before { content: "\E168"; font-family: "gjc"; } .bt.bt-gno::before { content: "\E169"; font-family: "gno"; } .bt.bt-gld::before { content: "\E16A"; font-family: "gld"; } .bt.bt-gmnt::before { content: "\E16B"; font-family: "gmnt"; } .bt.bt-gnt::before { content: "\E16C"; font-family: "gnt"; } .bt.bt-golos::before { content: "\E16D"; font-family: "golos"; } .bt.bt-googlewallet::before { content: "\E16E"; font-family: "googlewallet"; } .bt.bt-gdc::before { content: "\E16F"; font-family: "gdc"; } .bt.bt-grmd::before { content: "\E170"; font-family: "grmd"; } .bt.bt-grid::before { content: "\E171"; font-family: "grid"; } .bt.bt-grc::before { content: "\E172"; font-family: "grc"; } .bt.bt-grs::before { content: "\E173"; font-family: "grs"; } .bt.bt-efl::before { content: "\E174"; font-family: "efl"; } .bt.bt-nlg::before { content: "\E175"; font-family: "nlg"; } .bt.bt-guppy::before { content: "\E176"; font-family: "guppy"; } .bt.bt-heat::before { content: "\E177"; font-family: "heat"; } .bt.bt-hkn::before { content: "\E178"; font-family: "hkn"; } .bt.bt-hac::before { content: "\E179"; font-family: "hac"; } .bt.bt-hlc::before { content: "\E17A"; font-family: "hlc"; } .bt.bt-hvv::before { content: "\E17B"; font-family: "hvv"; } .bt.bt-hdg::before { content: "\E17C"; font-family: "hdg"; } .bt.bt-hgt::before { content: "\E17D"; font-family: "hgt"; } .bt.bt-thc::before { content: "\E17E"; font-family: "thc"; } .bt.bt-hermes::before { content: "\E17F"; font-family: "hermes"; } .bt.bt-hmc::before { content: "\E180"; font-family: "hmc"; } .bt.bt-hpb::before { content: "\E181"; font-family: "hpb"; } .bt.bt-hitbtc::before { content: "\E182"; font-family: "hitbtc"; } .bt.bt-hvn::before { content: "\E183"; font-family: "hvn"; } .bt.bt-hsr::before { content: "\E184"; font-family: "hsr"; } .bt.bt-hmq::before { content: "\E185"; font-family: "hmq"; } .bt.bt-huobi::before { content: "\E186"; font-family: "huobi"; } .bt.bt-tk::before { content: "\E187"; font-family: "tk"; } .bt.bt-hush::before { content: "\E188"; font-family: "hush"; } .bt.bt-icx::before { content: "\E189"; font-family: "icx"; } .bt.bt-idex::before { content: "\E18A"; font-family: "idex"; } .bt.bt-iht::before { content: "\E18B"; font-family: "iht"; } .bt.bt-ingb::before { content: "\E18C"; font-family: "ingb"; } .bt.bt-ins::before { content: "\E18D"; font-family: "ins"; } .bt.bt-ioc::before { content: "\E18E"; font-family: "ioc"; } .bt.bt-ion::before { content: "\E18F"; font-family: "ion"; } .bt.bt-iost::before { content: "\E190"; font-family: "iost"; } .bt.bt-iotaeco::before { content: "\E191"; font-family: "iotaeco"; } .bt.bt-miota::before { content: "\E192"; font-family: "miota"; } .bt.bt-iota::before { content: "\E192"; font-family: "miota"; } .bt.bt-ipsx::before { content: "\E193"; font-family: "ipsx"; } .bt.bt-icn::before { content: "\E194"; font-family: "icn"; } .bt.bt-ignis::before { content: "\E195"; font-family: "ignis"; } .bt.bt-incnt::before { content: "\E196"; font-family: "incnt"; } .bt.bt-idh::before { content: "\E197"; font-family: "idh"; } .bt.bt-inr::before { content: "\E198"; font-family: "inr"; } .bt.bt-indi::before { content: "\E199"; font-family: "indi"; } .bt.bt-ifc::before { content: "\E19A"; font-family: "ifc"; } .bt.bt-ink::before { content: "\E19B"; font-family: "ink"; } .bt.bt-xnk::before { content: "\E19C"; font-family: "xnk"; } .bt.bt-inn::before { content: "\E19D"; font-family: "inn"; } .bt.bt-ipl::before { content: "\E19E"; font-family: "ipl"; } .bt.bt-int::before { content: "\E19F"; font-family: "int"; } .bt.bt-ipbc::before { content: "\E1A0"; font-family: "ipbc"; } .bt.bt-ift::before { content: "\E1A1"; font-family: "ift"; } .bt.bt-itc::before { content: "\E1A2"; font-family: "itc"; } .bt.bt-ing::before { content: "\E1A3"; font-family: "ing"; } .bt.bt-jcb::before { content: "\E1A4"; font-family: "jcb"; } .bt.bt-j8t::before { content: "\E1A5"; font-family: "j8t"; } .bt.bt-js::before { content: "\E1A6"; font-family: "js"; } .bt.bt-jpy::before { content: "\E1A7"; font-family: "jpy"; } .bt.bt-jc::before { content: "\E1A8"; font-family: "jc"; } .bt.bt-jet::before { content: "\E1A9"; font-family: "jet"; } .bt.bt-jnt::before { content: "\E1AA"; font-family: "jnt"; } .bt.bt-jcr::before { content: "\E1AB"; font-family: "jcr"; } .bt.bt-jbs::before { content: "\E1AC"; font-family: "jbs"; } .bt.bt-kick::before { content: "\E1AD"; font-family: "kick"; } .bt.bt-kin::before { content: "\E1AE"; font-family: "kin"; } .bt.bt-klarna::before { content: "\E1AF"; font-family: "klarna"; } .bt.bt-kobo::before { content: "\E1B0"; font-family: "kobo"; } .bt.bt-kmd::before { content: "\E1B1"; font-family: "kmd"; } .bt.bt-korbit::before { content: "\E1B2"; font-family: "korbit"; } .bt.bt-kore::before { content: "\E1B3"; font-family: "kore"; } .bt.bt-kraken::before { content: "\E1B4"; font-family: "kraken"; } .bt.bt-kucoin::before { content: "\E1B5"; font-family: "kucoin"; } .bt.bt-kcs::before { content: "\E1B6"; font-family: "kcs"; } .bt.bt-knc::before { content: "\E1B7"; font-family: "knc"; } .bt.bt-la::before { content: "\E1B8"; font-family: "la"; } .bt.bt-lbc::before { content: "\E1B9"; font-family: "lbc"; } .bt.bt-leo::before { content: "\E1BA"; font-family: "leo"; } .bt.bt-life::before { content: "\E1BB"; font-family: "life"; } .bt.bt-loci::before { content: "\E1BC"; font-family: "loci"; } .bt.bt-lux::before { content: "\E1BD"; font-family: "lux"; } .bt.bt-laposte::before { content: "\E1BE"; font-family: "laposte"; } .bt.bt-lala::before { content: "\E1BF"; font-family: "lala"; } .bt.bt-lakebtc::before { content: "\E1C0"; font-family: "lakebtc"; } .bt.bt-tau::before { content: "\E1C1"; font-family: "tau"; } .bt.bt-ldc::before { content: "\E1C2"; font-family: "ldc"; } .bt.bt-ledger::before { content: "\E1C3"; font-family: "ledger"; } .bt.bt-lst::before { content: "\E1C4"; font-family: "lst"; } .bt.bt-lev::before { content: "\E1C5"; font-family: "lev"; } .bt.bt-linda::before { content: "\E1C6"; font-family: "linda"; } .bt.bt-linx::before { content: "\E1C7"; font-family: "linx"; } .bt.bt-liqui::before { content: "\E1C8"; font-family: "liqui"; } .bt.bt-lsk::before { content: "\E1C9"; font-family: "lsk"; } .bt.bt-ldoge::before { content: "\E1CA"; font-family: "ldoge"; } .bt.bt-lcc::before { content: "\E1CB"; font-family: "lcc"; } .bt.bt-ltc::before { content: "\E1CC"; font-family: "ltc"; } .bt.bt-livecoin::before { content: "\E1CD"; font-family: "livecoin"; } .bt.bt-llb::before { content: "\E1CE"; font-family: "llb"; } .bt.bt-lol::before { content: "\E1CF"; font-family: "lol"; } .bt.bt-localbitcoins::before { content: "\E1D0"; font-family: "localbitcoins"; } .bt.bt-loom::before { content: "\E1D1"; font-family: "loom"; } .bt.bt-lrc::before { content: "\E1D2"; font-family: "lrc"; } .bt.bt-lun::before { content: "\E1D3"; font-family: "lun"; } .bt.bt-lkk::before { content: "\E1D4"; font-family: "lkk"; } .bt.bt-lym::before { content: "\E1D5"; font-family: "lym"; } .bt.bt-mrk::before { content: "\E1D6"; font-family: "mrk"; } .bt.bt-mcap::before { content: "\E1D7"; font-family: "mcap"; } .bt.bt-mir::before { content: "\E1D8"; font-family: "mir"; } .bt.bt-moac::before { content: "\E1D9"; font-family: "moac"; } .bt.bt-msd::before { content: "\E1DA"; font-family: "msd"; } .bt.bt-muse::before { content: "\E1DB"; font-family: "muse"; } .bt.bt-maestro::before { content: "\E1DC"; font-family: "maestro"; } .bt.bt-mai::before { content: "\E1DD"; font-family: "mai"; } .bt.bt-maid::before { content: "\E1DE"; font-family: "maid"; } .bt.bt-mkr::before { content: "\E1DF"; font-family: "mkr"; } .bt.bt-msc::before { content: "\E1E0"; font-family: "msc"; } .bt.bt-mastercard::before { content: "\E1E1"; font-family: "mastercard"; } .bt.bt-mtr::before { content: "\E1E2"; font-family: "mtr"; } .bt.bt-gup::before { content: "\E1E3"; font-family: "gup"; } .bt.bt-med::before { content: "\E1E4"; font-family: "med"; } .bt.bt-mds::before { content: "\E1E5"; font-family: "mds"; } .bt.bt-mln::before { content: "\E1E6"; font-family: "mln"; } .bt.bt-mer::before { content: "\E1E7"; font-family: "mer"; } .bt.bt-gmt::before { content: "\E1E8"; font-family: "gmt"; } .bt.bt-mtl::before { content: "\E1E9"; font-family: "mtl"; } .bt.bt-etp::before { content: "\E1EA"; font-family: "etp"; } .bt.bt-met::before { content: "\E1EB"; font-family: "met"; } .bt.bt-amm::before { content: "\E1EC"; font-family: "amm"; } .bt.bt-mnx::before { content: "\E1ED"; font-family: "mnx"; } .bt.bt-mint::before { content: "\E1EE"; font-family: "mint"; } .bt.bt-mith::before { content: "\E1EF"; font-family: "mith"; } .bt.bt-xin::before { content: "\E1F0"; font-family: "xin"; } .bt.bt-mobiamo::before { content: "\E1F1"; font-family: "mobiamo"; } .bt.bt-mgo::before { content: "\E1F2"; font-family: "mgo"; } .bt.bt-mod::before { content: "\E1F3"; font-family: "mod"; } .bt.bt-mda::before { content: "\E1F4"; font-family: "mda"; } .bt.bt-moin::before { content: "\E1F5"; font-family: "moin"; } .bt.bt-mona::before { content: "\E1F6"; font-family: "mona"; } .bt.bt-mco::before { content: "\E1F7"; font-family: "mco"; } .bt.bt-xmr::before { content: "\E1F8"; font-family: "xmr"; } .bt.bt-mue::before { content: "\E1F9"; font-family: "mue"; } .bt.bt-mth::before { content: "\E1FA"; font-family: "mth"; } .bt.bt-moon::before { content: "\E1FB"; font-family: "moon"; } .bt.bt-mitx::before { content: "\E1FC"; font-family: "mitx"; } .bt.bt-msp::before { content: "\E1FD"; font-family: "msp"; } .bt.bt-myb::before { content: "\E1FE"; font-family: "myb"; } .bt.bt-xmy::before { content: "\E1FF"; font-family: "xmy"; } .bt.bt-myst::before { content: "\E200"; font-family: "myst"; } .bt.bt-nanj::before { content: "\E201"; font-family: "nanj"; } .bt.bt-nano::before { content: "\E202"; font-family: "nano"; } .bt.bt-nav::before { content: "\E203"; font-family: "nav"; } .bt.bt-xem::before { content: "\E204"; font-family: "xem"; } .bt.bt-neo::before { content: "\E205"; font-family: "neo"; } .bt.bt-nex::before { content: "\E206"; font-family: "nex"; } .bt.bt-nexo::before { content: "\E207"; font-family: "nexo"; } .bt.bt-nvst::before { content: "\E208"; font-family: "nvst"; } .bt.bt-npx::before { content: "\E209"; font-family: "npx"; } .bt.bt-ngc::before { content: "\E20A"; font-family: "ngc"; } .bt.bt-nmc::before { content: "\E20B"; font-family: "nmc"; } .bt.bt-nebl::before { content: "\E20C"; font-family: "nebl"; } .bt.bt-nas::before { content: "\E20D"; font-family: "nas"; } .bt.bt-neos::before { content: "\E20E"; font-family: "neos"; } .bt.bt-neu::before { content: "\E20F"; font-family: "neu"; } .bt.bt-ntk::before { content: "\E210"; font-family: "ntk"; } .bt.bt-ntrn::before { content: "\E211"; font-family: "ntrn"; } .bt.bt-npxs::before { content: "\E212"; font-family: "npxs"; } .bt.bt-nxs::before { content: "\E213"; font-family: "nxs"; } .bt.bt-net::before { content: "\E214"; font-family: "net"; } .bt.bt-nvc::before { content: "\E215"; font-family: "nvc"; } .bt.bt-nbt::before { content: "\E216"; font-family: "nbt"; } .bt.bt-nsr::before { content: "\E217"; font-family: "nsr"; } .bt.bt-ncash::before { content: "\E218"; font-family: "ncash"; } .bt.bt-nuls::before { content: "\E219"; font-family: "nuls"; } .bt.bt-nmr::before { content: "\E21A"; font-family: "nmr"; } .bt.bt-nxt::before { content: "\E21B"; font-family: "nxt"; } .bt.bt-oanda::before { content: "\E21C"; font-family: "oanda"; } .bt.bt-oax::before { content: "\E21D"; font-family: "oax"; } .bt.bt-ode::before { content: "\E21E"; font-family: "ode"; } .bt.bt-ok::before { content: "\E21F"; font-family: "ok"; } .bt.bt-ost::before { content: "\E220"; font-family: "ost"; } .bt.bt-ox::before { content: "\E221"; font-family: "ox"; } .bt.bt-oc::before { content: "\E222"; font-family: "oc"; } .bt.bt-ocl::before { content: "\E223"; font-family: "ocl"; } .bt.bt-occ::before { content: "\E224"; font-family: "occ"; } .bt.bt-ocn::before { content: "\E225"; font-family: "ocn"; } .bt.bt-omg::before { content: "\E226"; font-family: "omg"; } .bt.bt-omni::before { content: "\E227"; font-family: "omni"; } .bt.bt-rnt::before { content: "\E228"; font-family: "rnt"; } .bt.bt-ont::before { content: "\E229"; font-family: "ont"; } .bt.bt-opal::before { content: "\E22A"; font-family: "opal"; } .bt.bt-otn::before { content: "\E22B"; font-family: "otn"; } .bt.bt-trac::before { content: "\E22C"; font-family: "trac"; } .bt.bt-orme::before { content: "\E22D"; font-family: "orme"; } .bt.bt-oxy::before { content: "\E22E"; font-family: "oxy"; } .bt.bt-prl::before { content: "\E22F"; font-family: "prl"; } .bt.bt-pac::before { content: "\E230"; font-family: "pac"; } .bt.bt-pin::before { content: "\E231"; font-family: "pin"; } .bt.bt-pivx::before { content: "\E232"; font-family: "pivx"; } .bt.bt-poa::before { content: "\E233"; font-family: "poa"; } .bt.bt-pnd::before { content: "\E234"; font-family: "pnd"; } .bt.bt-prg::before { content: "\E235"; font-family: "prg"; } .bt.bt-pareto::before { content: "\E236"; font-family: "pareto"; } .bt.bt-part::before { content: "\E237"; font-family: "part"; } .bt.bt-pasc::before { content: "\E238"; font-family: "pasc"; } .bt.bt-ptoy::before { content: "\E239"; font-family: "ptoy"; } .bt.bt-paysafe::before { content: "\E23A"; font-family: "paysafe"; } .bt.bt-paybox::before { content: "\E23B"; font-family: "paybox"; } .bt.bt-xpy::before { content: "\E23C"; font-family: "xpy"; } .bt.bt-paydirekt::before { content: "\E23D"; font-family: "paydirekt"; } .bt.bt-paypal::before { content: "\E23E"; font-family: "paypal"; } .bt.bt-ppp::before { content: "\E23F"; font-family: "ppp"; } .bt.bt-paypro::before { content: "\E240"; font-family: "paypro"; } .bt.bt-pfr::before { content: "\E241"; font-family: "pfr"; } .bt.bt-paymentwall::before { content: "\E242"; font-family: "paymentwall"; } .bt.bt-paymill::before { content: "\E243"; font-family: "paymill"; } .bt.bt-ppc::before { content: "\E244"; font-family: "ppc"; } .bt.bt-ppy::before { content: "\E245"; font-family: "ppy"; } .bt.bt-phr::before { content: "\E246"; font-family: "phr"; } .bt.bt-pho::before { content: "\E247"; font-family: "pho"; } .bt.bt-piggy::before { content: "\E248"; font-family: "piggy"; } .bt.bt-plr::before { content: "\E249"; font-family: "plr"; } .bt.bt-pink::before { content: "\E24A"; font-family: "pink"; } .bt.bt-pkt::before { content: "\E24B"; font-family: "pkt"; } .bt.bt-plu::before { content: "\E24C"; font-family: "plu"; } .bt.bt-posw::before { content: "\E24D"; font-family: "posw"; } .bt.bt-poe::before { content: "\E24E"; font-family: "poe"; } .bt.bt-polis::before { content: "\E24F"; font-family: "polis"; } .bt.bt-polkadot::before { content: "\E250"; font-family: "polkadot"; } .bt.bt-poloniex::before { content: "\E251"; font-family: "poloniex"; } .bt.bt-nct::before { content: "\E252"; font-family: "nct"; } .bt.bt-plbt::before { content: "\E253"; font-family: "plbt"; } .bt.bt-poly::before { content: "\E254"; font-family: "poly"; } .bt.bt-ppt::before { content: "\E255"; font-family: "ppt"; } .bt.bt-postnl::before { content: "\E256"; font-family: "postnl"; } .bt.bt-postnord::before { content: "\E257"; font-family: "postnord"; } .bt.bt-pot::before { content: "\E258"; font-family: "pot"; } .bt.bt-powr::before { content: "\E259"; font-family: "powr"; } .bt.bt-pre::before { content: "\E25A"; font-family: "pre"; } .bt.bt-pbt::before { content: "\E25B"; font-family: "pbt"; } .bt.bt-xpm::before { content: "\E25C"; font-family: "xpm"; } .bt.bt-pro::before { content: "\E25D"; font-family: "pro"; } .bt.bt-xes::before { content: "\E25E"; font-family: "xes"; } .bt.bt-pbl::before { content: "\E25F"; font-family: "pbl"; } .bt.bt-pxs::before { content: "\E260"; font-family: "pxs"; } .bt.bt-pura::before { content: "\E261"; font-family: "pura"; } .bt.bt-qash::before { content: "\E262"; font-family: "qash"; } .bt.bt-qlc::before { content: "\E263"; font-family: "qlc"; } .bt.bt-qbt::before { content: "\E264"; font-family: "qbt"; } .bt.bt-qiwi::before { content: "\E265"; font-family: "qiwi"; } .bt.bt-qtum::before { content: "\E266"; font-family: "qtum"; } .bt.bt-quadrigacx::before { content: "\E267"; font-family: "quadrigacx"; } .bt.bt-qsp::before { content: "\E268"; font-family: "qsp"; } .bt.bt-qua::before { content: "\E269"; font-family: "qua"; } .bt.bt-qrl::before { content: "\E26A"; font-family: "qrl"; } .bt.bt-qrk::before { content: "\E26B"; font-family: "qrk"; } .bt.bt-qun::before { content: "\E26C"; font-family: "qun"; } .bt.bt-quoine::before { content: "\E26D"; font-family: "quoine"; } .bt.bt-rhoc::before { content: "\E26E"; font-family: "rhoc"; } .bt.bt-roka::before { content: "\E26F"; font-family: "roka"; } .bt.bt-rabo::before { content: "\E270"; font-family: "rabo"; } .bt.bt-rads::before { content: "\E271"; font-family: "rads"; } .bt.bt-xrb::before { content: "\E272"; font-family: "xrb"; } .bt.bt-rdn::before { content: "\E273"; font-family: "rdn"; } .bt.bt-raif::before { content: "\E274"; font-family: "raif"; } .bt.bt-rebl::before { content: "\E275"; font-family: "rebl"; } .bt.bt-rrt::before { content: "\E276"; font-family: "rrt"; } .bt.bt-rpx::before { content: "\E277"; font-family: "rpx"; } .bt.bt-rdd::before { content: "\E278"; font-family: "rdd"; } .bt.bt-rfc::before { content: "\E279"; font-family: "rfc"; } .bt.bt-rfm::before { content: "\E27A"; font-family: "rfm"; } .bt.bt-rmc::before { content: "\E27B"; font-family: "rmc"; } .bt.bt-remme::before { content: "\E27C"; font-family: "remme"; } .bt.bt-berry::before { content: "\E27D"; font-family: "berry"; } .bt.bt-ren::before { content: "\E27E"; font-family: "ren"; } .bt.bt-req::before { content: "\E27F"; font-family: "req"; } .bt.bt-mwat::before { content: "\E280"; font-family: "mwat"; } .bt.bt-r::before { content: "\E281"; font-family: "r"; } .bt.bt-xrl::before { content: "\E282"; font-family: "xrl"; } .bt.bt-rbt::before { content: "\E283"; font-family: "rbt"; } .bt.bt-rcn::before { content: "\E284"; font-family: "rcn"; } .bt.bt-xrp::before { content: "\E285"; font-family: "xrp"; } .bt.bt-rbx::before { content: "\E286"; font-family: "rbx"; } .bt.bt-rise::before { content: "\E287"; font-family: "rise"; } .bt.bt-round::before { content: "\E288"; font-family: "round"; } .bt.bt-rkc::before { content: "\E289"; font-family: "rkc"; } .bt.bt-rbies::before { content: "\E28A"; font-family: "rbies"; } .bt.bt-rby::before { content: "\E28B"; font-family: "rby"; } .bt.bt-salt::before { content: "\E28C"; font-family: "salt"; } .bt.bt-sepa::before { content: "\E28D"; font-family: "sepa"; } .bt.bt-xsh::before { content: "\E28E"; font-family: "xsh"; } .bt.bt-sib::before { content: "\E28F"; font-family: "sib"; } .bt.bt-srn::before { content: "\E290"; font-family: "srn"; } .bt.bt-skynet::before { content: "\E291"; font-family: "skynet"; } .bt.bt-snm::before { content: "\E292"; font-family: "snm"; } .bt.bt-altcom::before { content: "\E293"; font-family: "altcom"; } .bt.bt-stk::before { content: "\E294"; font-family: "stk"; } .bt.bt-safex::before { content: "\E295"; font-family: "safex"; } .bt.bt-sage::before { content: "\E296"; font-family: "sage"; } .bt.bt-sls::before { content: "\E297"; font-family: "sls"; } .bt.bt-sant::before { content: "\E298"; font-family: "sant"; } .bt.bt-san::before { content: "\E299"; font-family: "san"; } .bt.bt-sar::before { content: "\E29A"; font-family: "sar"; } .bt.bt-scot::before { content: "\E29B"; font-family: "scot"; } .bt.bt-key::before { content: "\E29C"; font-family: "key"; } .bt.bt-sense::before { content: "\E29D"; font-family: "sense"; } .bt.bt-seth::before { content: "\E29E"; font-family: "seth"; } .bt.bt-sdc::before { content: "\E29F"; font-family: "sdc"; } .bt.bt-shapeshift::before { content: "\E2A0"; font-family: "shapeshift"; } .bt.bt-shp::before { content: "\E2A1"; font-family: "shp"; } .bt.bt-jew::before { content: "\E2A2"; font-family: "jew"; } .bt.bt-shift::before { content: "\E2A3"; font-family: "shift"; } .bt.bt-sc::before { content: "\E2A4"; font-family: "sc"; } .bt.bt-sig::before { content: "\E2A5"; font-family: "sig"; } .bt.bt-sgn::before { content: "\E2A6"; font-family: "sgn"; } .bt.bt-sto::before { content: "\E2A7"; font-family: "sto"; } .bt.bt-sngls::before { content: "\E2A8"; font-family: "sngls"; } .bt.bt-skc::before { content: "\E2A9"; font-family: "skc"; } .bt.bt-skrill::before { content: "\E2AA"; font-family: "skrill"; } .bt.bt-sky::before { content: "\E2AB"; font-family: "sky"; } .bt.bt-smart::before { content: "\E2AC"; font-family: "smart"; } .bt.bt-slt::before { content: "\E2AD"; font-family: "slt"; } .bt.bt-snov::before { content: "\E2AE"; font-family: "snov"; } .bt.bt-soar::before { content: "\E2AF"; font-family: "soar"; } .bt.bt-som::before { content: "\E2B0"; font-family: "som"; } .bt.bt-slr::before { content: "\E2B1"; font-family: "slr"; } .bt.bt-xlr::before { content: "\E2B2"; font-family: "xlr"; } .bt.bt-sphtx::before { content: "\E2B3"; font-family: "sphtx"; } .bt.bt-krw::before { content: "\E2B4"; font-family: "krw"; } .bt.bt-spc::before { content: "\E2B5"; font-family: "spc"; } .bt.bt-spank::before { content: "\E2B6"; font-family: "spank"; } .bt.bt-scdt::before { content: "\E2B7"; font-family: "scdt"; } .bt.bt-xspec::before { content: "\E2B8"; font-family: "xspec"; } .bt.bt-sms::before { content: "\E2B9"; font-family: "sms"; } .bt.bt-spf::before { content: "\E2BA"; font-family: "spf"; } .bt.bt-squareup::before { content: "\E2BB"; font-family: "squareup"; } .bt.bt-kst::before { content: "\E2BC"; font-family: "kst"; } .bt.bt-start::before { content: "\E2BD"; font-family: "start"; } .bt.bt-stac::before { content: "\E2BE"; font-family: "stac"; } .bt.bt-snt::before { content: "\E2BF"; font-family: "snt"; } .bt.bt-xst::before { content: "\E2C0"; font-family: "xst"; } .bt.bt-steem::before { content: "\E2C1"; font-family: "steem"; } .bt.bt-xlm::before { content: "\E2C2"; font-family: "xlm"; } .bt.bt-slg::before { content: "\E2C3"; font-family: "slg"; } .bt.bt-stq::before { content: "\E2C4"; font-family: "stq"; } .bt.bt-storj::before { content: "\E2C5"; font-family: "storj"; } .bt.bt-sjcx::before { content: "\E2C6"; font-family: "sjcx"; } .bt.bt-storm::before { content: "\E2C7"; font-family: "storm"; } .bt.bt-stx::before { content: "\E2C8"; font-family: "stx"; } .bt.bt-strat::before { content: "\E2C9"; font-family: "strat"; } .bt.bt-data::before { content: "\E2CA"; font-family: "data"; } .bt.bt-sub::before { content: "\E2CB"; font-family: "sub"; } .bt.bt-sgr::before { content: "\E2CC"; font-family: "sgr"; } .bt.bt-sumo::before { content: "\E2CD"; font-family: "sumo"; } .bt.bt-snc::before { content: "\E2CE"; font-family: "snc"; } .bt.bt-unity::before { content: "\E2CF"; font-family: "unity"; } .bt.bt-swt::before { content: "\E2D0"; font-family: "swt"; } .bt.bt-swm::before { content: "\E2D1"; font-family: "swm"; } .bt.bt-swisspost::before { content: "\E2D2"; font-family: "swisspost"; } .bt.bt-swh::before { content: "\E2D3"; font-family: "swh"; } .bt.bt-sync::before { content: "\E2D4"; font-family: "sync"; } .bt.bt-mfg::before { content: "\E2D5"; font-family: "mfg"; } .bt.bt-amp::before { content: "\E2D6"; font-family: "amp"; } .bt.bt-snrg::before { content: "\E2D7"; font-family: "snrg"; } .bt.bt-sys::before { content: "\E2D8"; font-family: "sys"; } .bt.bt-tidex::before { content: "\E2D9"; font-family: "tidex"; } .bt.bt-tie::before { content: "\E2DA"; font-family: "tie"; } .bt.bt-tntpost::before { content: "\E2DB"; font-family: "tntpost"; } .bt.bt-toll::before { content: "\E2DC"; font-family: "toll"; } .bt.bt-trezor::before { content: "\E2DD"; font-family: "trezor"; } .bt.bt-trx::before { content: "\E2DE"; font-family: "trx"; } .bt.bt-taas::before { content: "\E2DF"; font-family: "taas"; } .bt.bt-tel::before { content: "\E2E0"; font-family: "tel"; } .bt.bt-pay::before { content: "\E2E1"; font-family: "pay"; } .bt.bt-trc::before { content: "\E2E2"; font-family: "trc"; } .bt.bt-usdt::before { content: "\E2E3"; font-family: "usdt"; } .bt.bt-xtz::before { content: "\E2E4"; font-family: "xtz"; } .bt.bt-dao::before { content: "\E2E5"; font-family: "dao"; } .bt.bt-rocktrading::before { content: "\E2E6"; font-family: "rocktrading"; } .bt.bt-theta::before { content: "\E2E7"; font-family: "theta"; } .bt.bt-tnt::before { content: "\E2E8"; font-family: "tnt"; } .bt.bt-tig::before { content: "\E2E9"; font-family: "tig"; } .bt.bt-tnb::before { content: "\E2EA"; font-family: "tnb"; } .bt.bt-tbar::before { content: "\E2EB"; font-family: "tbar"; } .bt.bt-bar::before { content: "\E2EC"; font-family: "bar"; } .bt.bt-token::before { content: "\E2ED"; font-family: "token"; } .bt.bt-tkn::before { content: "\E2EE"; font-family: "tkn"; } .bt.bt-lyl::before { content: "\E2EF"; font-family: "lyl"; } .bt.bt-tpay::before { content: "\E2F0"; font-family: "tpay"; } .bt.bt-tbx::before { content: "\E2F1"; font-family: "tbx"; } .bt.bt-tomo::before { content: "\E2F2"; font-family: "tomo"; } .bt.bt-trct::before { content: "\E2F3"; font-family: "trct"; } .bt.bt-tradesatoshi::before { content: "\E2F4"; font-family: "tradesatoshi"; } .bt.bt-tio::before { content: "\E2F5"; font-family: "tio"; } .bt.bt-tradingview::before { content: "\E2F6"; font-family: "tradingview"; } .bt.bt-tx::before { content: "\E2F7"; font-family: "tx"; } .bt.bt-trig::before { content: "\E2F8"; font-family: "trig"; } .bt.bt-tnc::before { content: "\E2F9"; font-family: "tnc"; } .bt.bt-true::before { content: "\E2FA"; font-family: "true"; } .bt.bt-tusd::before { content: "\E2FB"; font-family: "tusd"; } .bt.bt-try::before { content: "\E2FC"; font-family: "try"; } .bt.bt-ucash::before { content: "\E2FD"; font-family: "ucash"; } .bt.bt-ups::before { content: "\E2FE"; font-family: "ups"; } .bt.bt-usd::before { content: "\E2FF"; font-family: "usd"; } .bt.bt-utk::before { content: "\E300"; font-family: "utk"; } .bt.bt-ubq::before { content: "\E301"; font-family: "ubq"; } .bt.bt-ukg::before { content: "\E302"; font-family: "ukg"; } .bt.bt-ubank::before { content: "\E303"; font-family: "ubank"; } .bt.bt-uboi::before { content: "\E304"; font-family: "uboi"; } .bt.bt-unionpay::before { content: "\E305"; font-family: "unionpay"; } .bt.bt-usps::before { content: "\E306"; font-family: "usps"; } .bt.bt-uno::before { content: "\E307"; font-family: "uno"; } .bt.bt-up::before { content: "\E308"; font-family: "up"; } .bt.bt-upcoin::before { content: "\E309"; font-family: "upcoin"; } .bt.bt-vpay::before { content: "\E30A"; font-family: "vpay"; } .bt.bt-vibe::before { content: "\E30B"; font-family: "vibe"; } .bt.bt-visa::before { content: "\E30C"; font-family: "visa"; } .bt.bt-vash::before { content: "\E30D"; font-family: "vash"; } .bt.bt-vlc::before { content: "\E30E"; font-family: "vlc"; } .bt.bt-vnl::before { content: "\E30F"; font-family: "vnl"; } .bt.bt-vaultoro::before { content: "\E310"; font-family: "vaultoro"; } .bt.bt-ven::before { content: "\E311"; font-family: "ven"; } .bt.bt-xvg::before { content: "\E312"; font-family: "xvg"; } .bt.bt-vrc::before { content: "\E313"; font-family: "vrc"; } .bt.bt-verisign::before { content: "\E314"; font-family: "verisign"; } .bt.bt-cred::before { content: "\E315"; font-family: "cred"; } .bt.bt-veri::before { content: "\E316"; font-family: "veri"; } .bt.bt-vtc::before { content: "\E317"; font-family: "vtc"; } .bt.bt-via::before { content: "\E318"; font-family: "via"; } .bt.bt-vib::before { content: "\E319"; font-family: "vib"; } .bt.bt-vit::before { content: "\E31A"; font-family: "vit"; } .bt.bt-vior::before { content: "\E31B"; font-family: "vior"; } .bt.bt-viu::before { content: "\E31C"; font-family: "viu"; } .bt.bt-voise::before { content: "\E31D"; font-family: "voise"; } .bt.bt-vtn::before { content: "\E31E"; font-family: "vtn"; } .bt.bt-vox::before { content: "\E31F"; font-family: "vox"; } .bt.bt-vsx::before { content: "\E320"; font-family: "vsx"; } .bt.bt-wax::before { content: "\E321"; font-family: "wax"; } .bt.bt-weth::before { content: "\E322"; font-family: "weth"; } .bt.bt-wabi::before { content: "\E323"; font-family: "wabi"; } .bt.bt-wgr::before { content: "\E324"; font-family: "wgr"; } .bt.bt-wtc::before { content: "\E325"; font-family: "wtc"; } .bt.bt-wan::before { content: "\E326"; font-family: "wan"; } .bt.bt-wct::before { content: "\E327"; font-family: "wct"; } .bt.bt-waves::before { content: "\E328"; font-family: "waves"; } .bt.bt-wechatpay::before { content: "\E329"; font-family: "wechatpay"; } .bt.bt-wpr::before { content: "\E32A"; font-family: "wpr"; } .bt.bt-trst::before { content: "\E32B"; font-family: "trst"; } .bt.bt-webmoney::before { content: "\E32C"; font-family: "webmoney"; } .bt.bt-wings::before { content: "\E32D"; font-family: "wings"; } .bt.bt-wrc::before { content: "\E32E"; font-family: "wrc"; } .bt.bt-xpa::before { content: "\E32F"; font-family: "xpa"; } .bt.bt-xpl::before { content: "\E330"; font-family: "xpl"; } .bt.bt-xby::before { content: "\E331"; font-family: "xby"; } .bt.bt-xaur::before { content: "\E332"; font-family: "xaur"; } .bt.bt-xnn::before { content: "\E333"; font-family: "xnn"; } .bt.bt-yoyow::before { content: "\E334"; font-family: "yoyow"; } .bt.bt-yandex::before { content: "\E335"; font-family: "yandex"; } .bt.bt-ybc::before { content: "\E336"; font-family: "ybc"; } .bt.bt-yobit::before { content: "\E337"; font-family: "yobit"; } .bt.bt-zcl::before { content: "\E338"; font-family: "zcl"; } .bt.bt-xzc::before { content: "\E339"; font-family: "xzc"; } .bt.bt-zec::before { content: "\E33A"; font-family: "zec"; } .bt.bt-zpt::before { content: "\E33B"; font-family: "zpt"; } .bt.bt-zeit::before { content: "\E33C"; font-family: "zeit"; } .bt.bt-zen::before { content: "\E33D"; font-family: "zen"; } .bt.bt-zrx::before { content: "\E33E"; font-family: "zrx"; } .bt.bt-zsc::before { content: "\E33F"; font-family: "zsc"; } .bt.bt-zil::before { content: "\E340"; font-family: "zil"; } .bt.bt-zoi::before { content: "\E341"; font-family: "zoi"; } .bt.bt-zrc::before { content: "\E342"; font-family: "zrc"; } .bt.bt-axp::before { content: "\E343"; font-family: "axp"; } .bt.bt-adt::before { content: "\E344"; font-family: "adt"; } .bt.bt-elf::before { content: "\E345"; font-family: "elf"; } .bt.bt-bitcny::before { content: "\E346"; font-family: "bitcny"; } .bt.bt-coinsecure::before { content: "\E347"; font-family: "coinsecure"; } .bt.bt-coinw::before { content: "\E348"; font-family: "coinw"; } .bt.bt-dnt::before { content: "\E349"; font-family: "dnt"; } .bt.bt-ebtc::before { content: "\E34A"; font-family: "ebtc"; } .bt.bt-egold::before { content: "\E34B"; font-family: "egold"; } .bt.bt-ideal::before { content: "\E34C"; font-family: "ideal"; } .bt.bt-rlc::before { content: "\E34D"; font-family: "rlc"; } .bt.bt-ixt::before { content: "\E34E"; font-family: "ixt"; } .bt.bt-mrc::before { content: "\E34F"; font-family: "mrc"; } .bt.bt-stripe::before { content: "\E350"; font-family: "stripe"; } @font-face { font-family: "1wo"; src: url("glyphs/woff2/91e6882a.woff2") format("woff2"), url("glyphs/woff/91e6882a.woff") format("woff"), url("glyphs/ttf/91e6882a.ttf") format("truetype"); unicode-range: U+E000; } @font-face { font-family: "abnamro"; src: url("glyphs/woff2/67fdb825.woff2") format("woff2"), url("glyphs/woff/67fdb825.woff") format("woff"), url("glyphs/ttf/67fdb825.ttf") format("truetype"); unicode-range: U+E001; } @font-face { font-family: "acchain"; src: url("glyphs/woff2/cba0a9ca.woff2") format("woff2"), url("glyphs/woff/cba0a9ca.woff") format("woff"), url("glyphs/ttf/cba0a9ca.ttf") format("truetype"); unicode-range: U+E002; } @font-face { font-family: "xai"; src: url("glyphs/woff2/1817efca.woff2") format("woff2"), url("glyphs/woff/1817efca.woff") format("woff"), url("glyphs/ttf/1817efca.ttf") format("truetype"); unicode-range: U+E003; } @font-face { font-family: "aka"; src: url("glyphs/woff2/393bcee2.woff2") format("woff2"), url("glyphs/woff/393bcee2.woff") format("woff"), url("glyphs/ttf/393bcee2.ttf") format("truetype"); unicode-range: U+E004; } @font-face { font-family: "alis"; src: url("glyphs/woff2/2b4b2b6f.woff2") format("woff2"), url("glyphs/woff/2b4b2b6f.woff") format("woff"), url("glyphs/ttf/2b4b2b6f.ttf") format("truetype"); unicode-range: U+E005; } @font-face { font-family: "amis"; src: url("glyphs/woff2/a0e42042.woff2") format("woff2"), url("glyphs/woff/a0e42042.woff") format("woff"), url("glyphs/ttf/a0e42042.ttf") format("truetype"); unicode-range: U+E006; } @font-face { font-family: "arch"; src: url("glyphs/woff2/129ec899.woff2") format("woff2"), url("glyphs/woff/129ec899.woff") format("woff"), url("glyphs/ttf/129ec899.ttf") format("truetype"); unicode-range: U+E007; } @font-face { font-family: "atb"; src: url("glyphs/woff2/179f13d3.woff2") format("woff2"), url("glyphs/woff/179f13d3.woff") format("woff"), url("glyphs/ttf/179f13d3.ttf") format("truetype"); unicode-range: U+E008; } @font-face { font-family: "atm"; src: url("glyphs/woff2/cd4d8f7a.woff2") format("woff2"), url("glyphs/woff/cd4d8f7a.woff") format("woff"), url("glyphs/ttf/cd4d8f7a.ttf") format("truetype"); unicode-range: U+E009; } @font-face { font-family: "awr"; src: url("glyphs/woff2/5f1cfaf4.woff2") format("woff2"), url("glyphs/woff/5f1cfaf4.woff") format("woff"), url("glyphs/ttf/5f1cfaf4.ttf") format("truetype"); unicode-range: U+E00A; } @font-face { font-family: "acc"; src: url("glyphs/woff2/a0a347f1.woff2") format("woff2"), url("glyphs/woff/a0a347f1.woff") format("woff"), url("glyphs/ttf/a0a347f1.ttf") format("truetype"); unicode-range: U+E00B; } @font-face { font-family: "adx"; src: url("glyphs/woff2/5685167b.woff2") format("woff2"), url("glyphs/woff/5685167b.woff") format("woff"), url("glyphs/ttf/5685167b.ttf") format("truetype"); unicode-range: U+E00C; } @font-face { font-family: "adh"; src: url("glyphs/woff2/ed5cf55c.woff2") format("woff2"), url("glyphs/woff/ed5cf55c.woff") format("woff"), url("glyphs/ttf/ed5cf55c.ttf") format("truetype"); unicode-range: U+E00D; } @font-face { font-family: "adl"; src: url("glyphs/woff2/3b5ff71f.woff2") format("woff2"), url("glyphs/woff/3b5ff71f.woff") format("woff"), url("glyphs/ttf/3b5ff71f.ttf") format("truetype"); unicode-range: U+E00E; } @font-face { font-family: "aib"; src: url("glyphs/woff2/70ce9c46.woff2") format("woff2"), url("glyphs/woff/70ce9c46.woff") format("woff"), url("glyphs/ttf/70ce9c46.ttf") format("truetype"); unicode-range: U+E00F; } @font-face { font-family: "aeon"; src: url("glyphs/woff2/ecd94f38.woff2") format("woff2"), url("glyphs/woff/ecd94f38.woff") format("woff"), url("glyphs/ttf/ecd94f38.ttf") format("truetype"); unicode-range: U+E010; } @font-face { font-family: "arn"; src: url("glyphs/woff2/4fd52c87.woff2") format("woff2"), url("glyphs/woff/4fd52c87.woff") format("woff"), url("glyphs/ttf/4fd52c87.ttf") format("truetype"); unicode-range: U+E011; } @font-face { font-family: "ae"; src: url("glyphs/woff2/0a01e6d0.woff2") format("woff2"), url("glyphs/woff/0a01e6d0.woff") format("woff"), url("glyphs/ttf/0a01e6d0.ttf") format("truetype"); unicode-range: U+E012; } @font-face { font-family: "agrs"; src: url("glyphs/woff2/df82f44f.woff2") format("woff2"), url("glyphs/woff/df82f44f.woff") format("woff"), url("glyphs/ttf/df82f44f.ttf") format("truetype"); unicode-range: U+E013; } @font-face { font-family: "dlt"; src: url("glyphs/woff2/6e131b1a.woff2") format("woff2"), url("glyphs/woff/6e131b1a.woff") format("woff"), url("glyphs/ttf/6e131b1a.ttf") format("truetype"); unicode-range: U+E014; } @font-face { font-family: "aid"; src: url("glyphs/woff2/da29dda0.woff2") format("woff2"), url("glyphs/woff/da29dda0.woff") format("woff"), url("glyphs/ttf/da29dda0.ttf") format("truetype"); unicode-range: U+E015; } @font-face { font-family: "aix"; src: url("glyphs/woff2/02d0c663.woff2") format("woff2"), url("glyphs/woff/02d0c663.woff") format("woff"), url("glyphs/ttf/02d0c663.ttf") format("truetype"); unicode-range: U+E016; } @font-face { font-family: "aion"; src: url("glyphs/woff2/d4ae9299.woff2") format("woff2"), url("glyphs/woff/d4ae9299.woff") format("woff"), url("glyphs/ttf/d4ae9299.ttf") format("truetype"); unicode-range: U+E017; } @font-face { font-family: "ast"; src: url("glyphs/woff2/cce1425f.woff2") format("woff2"), url("glyphs/woff/cce1425f.woff") format("woff"), url("glyphs/ttf/cce1425f.ttf") format("truetype"); unicode-range: U+E018; } @font-face { font-family: "air"; src: url("glyphs/woff2/d2800ad0.woff2") format("woff2"), url("glyphs/woff/d2800ad0.woff") format("woff"), url("glyphs/ttf/d2800ad0.ttf") format("truetype"); unicode-range: U+E019; } @font-face { font-family: "alipay"; src: url("glyphs/woff2/9730509c.woff2") format("woff2"), url("glyphs/woff/9730509c.woff") format("woff"), url("glyphs/ttf/9730509c.ttf") format("truetype"); unicode-range: U+E01A; } @font-face { font-family: "soc"; src: url("glyphs/woff2/3f357a26.woff2") format("woff2"), url("glyphs/woff/3f357a26.woff") format("woff"), url("glyphs/ttf/3f357a26.ttf") format("truetype"); unicode-range: U+E01B; } @font-face { font-family: "allcoin"; src: url("glyphs/woff2/41038137.woff2") format("woff2"), url("glyphs/woff/41038137.woff") format("woff"), url("glyphs/ttf/41038137.ttf") format("truetype"); unicode-range: U+E01C; } @font-face { font-family: "acat"; src: url("glyphs/woff2/01e07cf4.woff2") format("woff2"), url("glyphs/woff/01e07cf4.woff") format("woff"), url("glyphs/ttf/01e07cf4.ttf") format("truetype"); unicode-range: U+E01D; } @font-face { font-family: "amazon"; src: url("glyphs/woff2/2422dc89.woff2") format("woff2"), url("glyphs/woff/2422dc89.woff") format("woff"), url("glyphs/ttf/2422dc89.ttf") format("truetype"); unicode-range: U+E01E; } @font-face { font-family: "amb"; src: url("glyphs/woff2/1ca00690.woff2") format("woff2"), url("glyphs/woff/1ca00690.woff") format("woff"), url("glyphs/ttf/1ca00690.ttf") format("truetype"); unicode-range: U+E01F; } @font-face { font-family: "amex"; src: url("glyphs/woff2/370da5ae.woff2") format("woff2"), url("glyphs/woff/370da5ae.woff") format("woff"), url("glyphs/ttf/370da5ae.ttf") format("truetype"); unicode-range: U+E020; } @font-face { font-family: "avh"; src: url("glyphs/woff2/eaca633e.woff2") format("woff2"), url("glyphs/woff/eaca633e.woff") format("woff"), url("glyphs/ttf/eaca633e.ttf") format("truetype"); unicode-range: U+E021; } @font-face { font-family: "anc"; src: url("glyphs/woff2/325a5ac2.woff2") format("woff2"), url("glyphs/woff/325a5ac2.woff") format("woff"), url("glyphs/ttf/325a5ac2.ttf") format("truetype"); unicode-range: U+E022; } @font-face { font-family: "aph"; src: url("glyphs/woff2/c21fd5eb.woff2") format("woff2"), url("glyphs/woff/c21fd5eb.woff") format("woff"), url("glyphs/ttf/c21fd5eb.ttf") format("truetype"); unicode-range: U+E023; } @font-face { font-family: "appc"; src: url("glyphs/woff2/7c77a98a.woff2") format("woff2"), url("glyphs/woff/7c77a98a.woff") format("woff"), url("glyphs/ttf/7c77a98a.ttf") format("truetype"); unicode-range: U+E024; } @font-face { font-family: "applepay"; src: url("glyphs/woff2/d5e77211.woff2") format("woff2"), url("glyphs/woff/d5e77211.woff") format("woff"), url("glyphs/ttf/d5e77211.ttf") format("truetype"); unicode-range: U+E025; } @font-face { font-family: "ant"; src: url("glyphs/woff2/0a32e2fb.woff2") format("woff2"), url("glyphs/woff/0a32e2fb.woff") format("woff"), url("glyphs/ttf/0a32e2fb.ttf") format("truetype"); unicode-range: U+E026; } @font-face { font-family: "aramex"; src: url("glyphs/woff2/b166a7c6.woff2") format("woff2"), url("glyphs/woff/b166a7c6.woff") format("woff"), url("glyphs/ttf/b166a7c6.ttf") format("truetype"); unicode-range: U+E027; } @font-face { font-family: "ardr"; src: url("glyphs/woff2/d108850a.woff2") format("woff2"), url("glyphs/woff/d108850a.woff") format("woff"), url("glyphs/ttf/d108850a.ttf") format("truetype"); unicode-range: U+E028; } @font-face { font-family: "ari"; src: url("glyphs/woff2/beaff0e5.woff2") format("woff2"), url("glyphs/woff/beaff0e5.woff") format("woff"), url("glyphs/ttf/beaff0e5.ttf") format("truetype"); unicode-range: U+E029; } @font-face { font-family: "ark"; src: url("glyphs/woff2/ddff0b65.woff2") format("woff2"), url("glyphs/woff/ddff0b65.woff") format("woff"), url("glyphs/ttf/ddff0b65.ttf") format("truetype"); unicode-range: U+E02A; } @font-face { font-family: "xas"; src: url("glyphs/woff2/50f3c095.woff2") format("woff2"), url("glyphs/woff/50f3c095.woff") format("woff"), url("glyphs/ttf/50f3c095.ttf") format("truetype"); unicode-range: U+E02B; } @font-face { font-family: "adc"; src: url("glyphs/woff2/eb7c1720.woff2") format("woff2"), url("glyphs/woff/eb7c1720.woff") format("woff"), url("glyphs/ttf/eb7c1720.ttf") format("truetype"); unicode-range: U+E02C; } @font-face { font-family: "rep"; src: url("glyphs/woff2/e83034c6.woff2") format("woff2"), url("glyphs/woff/e83034c6.woff") format("woff"), url("glyphs/ttf/e83034c6.ttf") format("truetype"); unicode-range: U+E02D; } @font-face { font-family: "aura"; src: url("glyphs/woff2/a9daf068.woff2") format("woff2"), url("glyphs/woff/a9daf068.woff") format("woff"), url("glyphs/ttf/a9daf068.ttf") format("truetype"); unicode-range: U+E02E; } @font-face { font-family: "aur"; src: url("glyphs/woff2/cf6d6f30.woff2") format("woff2"), url("glyphs/woff/cf6d6f30.woff") format("woff"), url("glyphs/ttf/cf6d6f30.ttf") format("truetype"); unicode-range: U+E02F; } @font-face { font-family: "avt"; src: url("glyphs/woff2/b53f50d1.woff2") format("woff2"), url("glyphs/woff/b53f50d1.woff") format("woff"), url("glyphs/ttf/b53f50d1.ttf") format("truetype"); unicode-range: U+E030; } @font-face { font-family: "b2b"; src: url("glyphs/woff2/f8c78a1d.woff2") format("woff2"), url("glyphs/woff/f8c78a1d.woff") format("woff"), url("glyphs/ttf/f8c78a1d.ttf") format("truetype"); unicode-range: U+E031; } @font-face { font-family: "kb3"; src: url("glyphs/woff2/e4ec2dc2.woff2") format("woff2"), url("glyphs/woff/e4ec2dc2.woff") format("woff"), url("glyphs/ttf/e4ec2dc2.ttf") format("truetype"); unicode-range: U+E032; } @font-face { font-family: "bax"; src: url("glyphs/woff2/9bb36328.woff2") format("woff2"), url("glyphs/woff/9bb36328.woff") format("woff"), url("glyphs/ttf/9bb36328.ttf") format("truetype"); unicode-range: U+E033; } @font-face { font-family: "bcap"; src: url("glyphs/woff2/d0342038.woff2") format("woff2"), url("glyphs/woff/d0342038.woff") format("woff"), url("glyphs/ttf/d0342038.ttf") format("truetype"); unicode-range: U+E034; } @font-face { font-family: "bee"; src: url("glyphs/woff2/d129485b.woff2") format("woff2"), url("glyphs/woff/d129485b.woff") format("woff"), url("glyphs/ttf/d129485b.ttf") format("truetype"); unicode-range: U+E035; } @font-face { font-family: "bitso"; src: url("glyphs/woff2/11c88fa3.woff2") format("woff2"), url("glyphs/woff/11c88fa3.woff") format("woff"), url("glyphs/ttf/11c88fa3.ttf") format("truetype"); unicode-range: U+E036; } @font-face { font-family: "vee"; src: url("glyphs/woff2/dcd7c346.woff2") format("woff2"), url("glyphs/woff/dcd7c346.woff") format("woff"), url("glyphs/ttf/dcd7c346.ttf") format("truetype"); unicode-range: U+E037; } @font-face { font-family: "blue"; src: url("glyphs/woff2/b0ad53ea.woff2") format("woff2"), url("glyphs/woff/b0ad53ea.woff") format("woff"), url("glyphs/ttf/b0ad53ea.ttf") format("truetype"); unicode-range: U+E038; } @font-face { font-family: "bnp"; src: url("glyphs/woff2/7bd1e500.woff2") format("woff2"), url("glyphs/woff/7bd1e500.woff") format("woff"), url("glyphs/ttf/7bd1e500.ttf") format("truetype"); unicode-range: U+E039; } @font-face { font-family: "bos"; src: url("glyphs/woff2/73363ff7.woff2") format("woff2"), url("glyphs/woff/73363ff7.woff") format("woff"), url("glyphs/ttf/73363ff7.ttf") format("truetype"); unicode-range: U+E03A; } @font-face { font-family: "broker"; src: url("glyphs/woff2/f952c473.woff2") format("woff2"), url("glyphs/woff/f952c473.woff") format("woff"), url("glyphs/ttf/f952c473.ttf") format("truetype"); unicode-range: U+E03B; } @font-face { font-family: "btcalpha"; src: url("glyphs/woff2/4eb499b8.woff2") format("woff2"), url("glyphs/woff/4eb499b8.woff") format("woff"), url("glyphs/ttf/4eb499b8.ttf") format("truetype"); unicode-range: U+E03C; } @font-face { font-family: "btcc"; src: url("glyphs/woff2/31234fc4.woff2") format("woff2"), url("glyphs/woff/31234fc4.woff") format("woff"), url("glyphs/ttf/31234fc4.ttf") format("truetype"); unicode-range: U+E03D; } @font-face { font-family: "btcn"; src: url("glyphs/woff2/ad6d5849.woff2") format("woff2"), url("glyphs/woff/ad6d5849.woff") format("woff"), url("glyphs/ttf/ad6d5849.ttf") format("truetype"); unicode-range: U+E03E; } @font-face { font-family: "banca"; src: url("glyphs/woff2/7e2c66dd.woff2") format("woff2"), url("glyphs/woff/7e2c66dd.woff") format("woff"), url("glyphs/ttf/7e2c66dd.ttf") format("truetype"); unicode-range: U+E03F; } @font-face { font-family: "bsf"; src: url("glyphs/woff2/ec9c031f.woff2") format("woff2"), url("glyphs/woff/ec9c031f.woff") format("woff"), url("glyphs/ttf/ec9c031f.ttf") format("truetype"); unicode-range: U+E040; } @font-face { font-family: "bancomat"; src: url("glyphs/woff2/0d085f1c.woff2") format("woff2"), url("glyphs/woff/0d085f1c.woff") format("woff"), url("glyphs/ttf/0d085f1c.ttf") format("truetype"); unicode-range: U+E041; } @font-face { font-family: "bancomext"; src: url("glyphs/woff2/97ba67f1.woff2") format("woff2"), url("glyphs/woff/97ba67f1.woff") format("woff"), url("glyphs/ttf/97ba67f1.ttf") format("truetype"); unicode-range: U+E042; } @font-face { font-family: "bancontact"; src: url("glyphs/woff2/4a1c4041.woff2") format("woff2"), url("glyphs/woff/4a1c4041.woff") format("woff"), url("glyphs/ttf/4a1c4041.ttf") format("truetype"); unicode-range: U+E043; } @font-face { font-family: "bnt"; src: url("glyphs/woff2/9e3addab.woff2") format("woff2"), url("glyphs/woff/9e3addab.woff") format("woff"), url("glyphs/ttf/9e3addab.ttf") format("truetype"); unicode-range: U+E044; } @font-face { font-family: "bbos"; src: url("glyphs/woff2/eca1fd47.woff2") format("woff2"), url("glyphs/woff/eca1fd47.woff") format("woff"), url("glyphs/ttf/eca1fd47.ttf") format("truetype"); unicode-range: U+E045; } @font-face { font-family: "bca"; src: url("glyphs/woff2/47f8aa49.woff2") format("woff2"), url("glyphs/woff/47f8aa49.woff") format("woff"), url("glyphs/ttf/47f8aa49.ttf") format("truetype"); unicode-range: U+E046; } @font-face { font-family: "banktransfer"; src: url("glyphs/woff2/8c610c58.woff2") format("woff2"), url("glyphs/woff/8c610c58.woff") format("woff"), url("glyphs/ttf/8c610c58.ttf") format("truetype"); unicode-range: U+E047; } @font-face { font-family: "boa"; src: url("glyphs/woff2/69dbef10.woff2") format("woff2"), url("glyphs/woff/69dbef10.woff") format("woff"), url("glyphs/ttf/69dbef10.ttf") format("truetype"); unicode-range: U+E048; } @font-face { font-family: "boat"; src: url("glyphs/woff2/0ac058dd.woff2") format("woff2"), url("glyphs/woff/0ac058dd.woff") format("woff"), url("glyphs/ttf/0ac058dd.ttf") format("truetype"); unicode-range: U+E049; } @font-face { font-family: "bocs"; src: url("glyphs/woff2/3a530c59.woff2") format("woff2"), url("glyphs/woff/3a530c59.woff") format("woff"), url("glyphs/ttf/3a530c59.ttf") format("truetype"); unicode-range: U+E04A; } @font-face { font-family: "boh"; src: url("glyphs/woff2/94531f1b.woff2") format("woff2"), url("glyphs/woff/94531f1b.woff") format("woff"), url("glyphs/ttf/94531f1b.ttf") format("truetype"); unicode-range: U+E04B; } @font-face { font-family: "bplsk"; src: url("glyphs/woff2/32cb1e15.woff2") format("woff2"), url("glyphs/woff/32cb1e15.woff") format("woff"), url("glyphs/ttf/32cb1e15.ttf") format("truetype"); unicode-range: U+E04C; } @font-face { font-family: "bkx"; src: url("glyphs/woff2/7f4ff157.woff2") format("woff2"), url("glyphs/woff/7f4ff157.woff") format("woff"), url("glyphs/ttf/7f4ff157.ttf") format("truetype"); unicode-range: U+E04D; } @font-face { font-family: "bankomat"; src: url("glyphs/woff2/2b52c387.woff2") format("woff2"), url("glyphs/woff/2b52c387.woff") format("woff"), url("glyphs/ttf/2b52c387.ttf") format("truetype"); unicode-range: U+E04E; } @font-face { font-family: "banx"; src: url("glyphs/woff2/0ff7e3fd.woff2") format("woff2"), url("glyphs/woff/0ff7e3fd.woff") format("woff"), url("glyphs/ttf/0ff7e3fd.ttf") format("truetype"); unicode-range: U+E04F; } @font-face { font-family: "bacs"; src: url("glyphs/woff2/17a7a115.woff2") format("woff2"), url("glyphs/woff/17a7a115.woff") format("woff"), url("glyphs/ttf/17a7a115.ttf") format("truetype"); unicode-range: U+E050; } @font-face { font-family: "bat"; src: url("glyphs/woff2/a36d6959.woff2") format("woff2"), url("glyphs/woff/a36d6959.woff") format("woff"), url("glyphs/ttf/a36d6959.ttf") format("truetype"); unicode-range: U+E051; } @font-face { font-family: "bta"; src: url("glyphs/woff2/b5c50661.woff2") format("woff2"), url("glyphs/woff/b5c50661.woff") format("woff"), url("glyphs/ttf/b5c50661.ttf") format("truetype"); unicode-range: U+E052; } @font-face { font-family: "bitb"; src: url("glyphs/woff2/d702d8e9.woff2") format("woff2"), url("glyphs/woff/d702d8e9.woff") format("woff"), url("glyphs/ttf/d702d8e9.ttf") format("truetype"); unicode-range: U+E053; } @font-face { font-family: "xbts"; src: url("glyphs/woff2/dafd1a87.woff2") format("woff2"), url("glyphs/woff/dafd1a87.woff") format("woff"), url("glyphs/ttf/dafd1a87.ttf") format("truetype"); unicode-range: U+E054; } @font-face { font-family: "bbi"; src: url("glyphs/woff2/8b45a38b.woff2") format("woff2"), url("glyphs/woff/8b45a38b.woff") format("woff"), url("glyphs/ttf/8b45a38b.ttf") format("truetype"); unicode-range: U+E055; } @font-face { font-family: "bix"; src: url("glyphs/woff2/a4b9f2e5.woff2") format("woff2"), url("glyphs/woff/a4b9f2e5.woff") format("woff"), url("glyphs/ttf/a4b9f2e5.ttf") format("truetype"); unicode-range: U+E056; } @font-face { font-family: "binance"; src: url("glyphs/woff2/840f090f.woff2") format("woff2"), url("glyphs/woff/840f090f.woff") format("woff"), url("glyphs/ttf/840f090f.ttf") format("truetype"); unicode-range: U+E057; } @font-face { font-family: "bnb"; src: url("glyphs/woff2/565212e9.woff2") format("woff2"), url("glyphs/woff/565212e9.woff") format("woff"), url("glyphs/ttf/565212e9.ttf") format("truetype"); unicode-range: U+E058; } @font-face { font-family: "bio"; src: url("glyphs/woff2/c8e64019.woff2") format("woff2"), url("glyphs/woff/c8e64019.woff") format("woff"), url("glyphs/ttf/c8e64019.ttf") format("truetype"); unicode-range: U+E059; } @font-face { font-family: "btrn"; src: url("glyphs/woff2/fdc4299c.woff2") format("woff2"), url("glyphs/woff/fdc4299c.woff") format("woff"), url("glyphs/ttf/fdc4299c.ttf") format("truetype"); unicode-range: U+E05A; } @font-face { font-family: "bay"; src: url("glyphs/woff2/4a40a88a.woff2") format("woff2"), url("glyphs/woff/4a40a88a.woff") format("woff"), url("glyphs/ttf/4a40a88a.ttf") format("truetype"); unicode-range: U+E05B; } @font-face { font-family: "bck"; src: url("glyphs/woff2/c9797180.woff2") format("woff2"), url("glyphs/woff/c9797180.woff") format("woff"), url("glyphs/ttf/c9797180.ttf") format("truetype"); unicode-range: U+E05C; } @font-face { font-family: "cat"; src: url("glyphs/woff2/1b07c59f.woff2") format("woff2"), url("glyphs/woff/1b07c59f.woff") format("woff"), url("glyphs/ttf/1b07c59f.ttf") format("truetype"); unicode-range: U+E05D; } @font-face { font-family: "bcc"; src: url("glyphs/woff2/b2f15dff.woff2") format("woff2"), url("glyphs/woff/b2f15dff.woff") format("woff"), url("glyphs/ttf/b2f15dff.ttf") format("truetype"); unicode-range: U+E05E; } @font-face { font-family: "bdg"; src: url("glyphs/woff2/8021a1fc.woff2") format("woff2"), url("glyphs/woff/8021a1fc.woff") format("woff"), url("glyphs/ttf/8021a1fc.ttf") format("truetype"); unicode-range: U+E05F; } @font-face { font-family: "bitflyer"; src: url("glyphs/woff2/e24b4971.woff2") format("woff2"), url("glyphs/woff/e24b4971.woff") format("woff"), url("glyphs/ttf/e24b4971.ttf") format("truetype"); unicode-range: U+E060; } @font-face { font-family: "bsd"; src: url("glyphs/woff2/6961fbe3.woff2") format("woff2"), url("glyphs/woff/6961fbe3.woff") format("woff"), url("glyphs/ttf/6961fbe3.ttf") format("truetype"); unicode-range: U+E061; } @font-face { font-family: "bts"; src: url("glyphs/woff2/39b74aca.woff2") format("woff2"), url("glyphs/woff/39b74aca.woff") format("woff"), url("glyphs/ttf/39b74aca.ttf") format("truetype"); unicode-range: U+E062; } @font-face { font-family: "xbs"; src: url("glyphs/woff2/6690e503.woff2") format("woff2"), url("glyphs/woff/6690e503.woff") format("woff"), url("glyphs/ttf/6690e503.ttf") format("truetype"); unicode-range: U+E063; } @font-face { font-family: "bitx"; src: url("glyphs/woff2/700b8efe.woff2") format("woff2"), url("glyphs/woff/700b8efe.woff") format("woff"), url("glyphs/ttf/700b8efe.ttf") format("truetype"); unicode-range: U+E064; } @font-face { font-family: "btc"; src: url("glyphs/woff2/0cbb9805.woff2") format("woff2"), url("glyphs/woff/0cbb9805.woff") format("woff"), url("glyphs/ttf/0cbb9805.ttf") format("truetype"); unicode-range: U+E065; } @font-face { font-family: "bch"; src: url("glyphs/woff2/9605447e.woff2") format("woff2"), url("glyphs/woff/9605447e.woff") format("woff"), url("glyphs/ttf/9605447e.ttf") format("truetype"); unicode-range: U+E066; } @font-face { font-family: "bch2"; src: url("glyphs/woff2/463c644c.woff2") format("woff2"), url("glyphs/woff/463c644c.woff") format("woff"), url("glyphs/ttf/463c644c.ttf") format("truetype"); unicode-range: U+E067; } @font-face { font-family: "btg"; src: url("glyphs/woff2/576582f8.woff2") format("woff2"), url("glyphs/woff/576582f8.woff") format("woff"), url("glyphs/ttf/576582f8.ttf") format("truetype"); unicode-range: U+E068; } @font-face { font-family: "btcp"; src: url("glyphs/woff2/61fed715.woff2") format("woff2"), url("glyphs/woff/61fed715.woff") format("woff"), url("glyphs/ttf/61fed715.ttf") format("truetype"); unicode-range: U+E069; } @font-face { font-family: "btcd"; src: url("glyphs/woff2/13b487b1.woff2") format("woff2"), url("glyphs/woff/13b487b1.woff") format("woff"), url("glyphs/ttf/13b487b1.ttf") format("truetype"); unicode-range: U+E06A; } @font-face { font-family: "bcx"; src: url("glyphs/woff2/6a4f89c1.woff2") format("woff2"), url("glyphs/woff/6a4f89c1.woff") format("woff"), url("glyphs/ttf/6a4f89c1.ttf") format("truetype"); unicode-range: U+E06B; } @font-face { font-family: "btx"; src: url("glyphs/woff2/6a836616.woff2") format("woff2"), url("glyphs/woff/6a836616.woff") format("woff"), url("glyphs/ttf/6a836616.ttf") format("truetype"); unicode-range: U+E06C; } @font-face { font-family: "bdl"; src: url("glyphs/woff2/86d4d2fb.woff2") format("woff2"), url("glyphs/woff/86d4d2fb.woff") format("woff"), url("glyphs/ttf/86d4d2fb.ttf") format("truetype"); unicode-range: U+E06D; } @font-face { font-family: "bitfinex"; src: url("glyphs/woff2/7345156e.woff2") format("woff2"), url("glyphs/woff/7345156e.woff") format("woff"), url("glyphs/ttf/7345156e.ttf") format("truetype"); unicode-range: U+E06E; } @font-face { font-family: "bithumb"; src: url("glyphs/woff2/3abbb79a.woff2") format("woff2"), url("glyphs/woff/3abbb79a.woff") format("woff"), url("glyphs/ttf/3abbb79a.ttf") format("truetype"); unicode-range: U+E06F; } @font-face { font-family: "bt"; src: url("glyphs/woff2/84aca33c.woff2") format("woff2"), url("glyphs/woff/84aca33c.woff") format("woff"), url("glyphs/ttf/84aca33c.ttf") format("truetype"); unicode-range: U+E070; } @font-face { font-family: "brokenchain"; src: url("glyphs/woff2/f38f3a94.woff2") format("woff2"), url("glyphs/woff/f38f3a94.woff") format("woff"), url("glyphs/ttf/f38f3a94.ttf") format("truetype"); unicode-range: U+E071; } @font-face { font-family: "card"; src: url("glyphs/woff2/dda67aa8.woff2") format("woff2"), url("glyphs/woff/dda67aa8.woff") format("woff"), url("glyphs/ttf/dda67aa8.ttf") format("truetype"); unicode-range: U+E072; } @font-face { font-family: "card1"; src: url("glyphs/woff2/b29ecf6c.woff2") format("woff2"), url("glyphs/woff/b29ecf6c.woff") format("woff"), url("glyphs/ttf/b29ecf6c.ttf") format("truetype"); unicode-range: U+E073; } @font-face { font-family: "card2"; src: url("glyphs/woff2/45a8e7e4.woff2") format("woff2"), url("glyphs/woff/45a8e7e4.woff") format("woff"), url("glyphs/ttf/45a8e7e4.ttf") format("truetype"); unicode-range: U+E074; } @font-face { font-family: "certificate"; src: url("glyphs/woff2/ec5a8b64.woff2") format("woff2"), url("glyphs/woff/ec5a8b64.woff") format("woff"), url("glyphs/ttf/ec5a8b64.ttf") format("truetype"); unicode-range: U+E075; } @font-face { font-family: "certificateo"; src: url("glyphs/woff2/c17f2a95.woff2") format("woff2"), url("glyphs/woff/c17f2a95.woff") format("woff"), url("glyphs/ttf/c17f2a95.ttf") format("truetype"); unicode-range: U+E076; } @font-face { font-family: "circle"; src: url("glyphs/woff2/c1538030.woff2") format("woff2"), url("glyphs/woff/c1538030.woff") format("woff"), url("glyphs/ttf/c1538030.ttf") format("truetype"); unicode-range: U+E077; } @font-face { font-family: "circleo"; src: url("glyphs/woff2/ec62219b.woff2") format("woff2"), url("glyphs/woff/ec62219b.woff") format("woff"), url("glyphs/ttf/ec62219b.ttf") format("truetype"); unicode-range: U+E078; } @font-face { font-family: "loader"; src: url("glyphs/woff2/bd81a851.woff2") format("woff2"), url("glyphs/woff/bd81a851.woff") format("woff"), url("glyphs/ttf/bd81a851.ttf") format("truetype"); unicode-range: U+E079; } @font-face { font-family: "noimage"; src: url("glyphs/woff2/d43f6100.woff2") format("woff2"), url("glyphs/woff/d43f6100.woff") format("woff"), url("glyphs/ttf/d43f6100.ttf") format("truetype"); unicode-range: U+E07A; } @font-face { font-family: "question"; src: url("glyphs/woff2/5b5bda30.woff2") format("woff2"), url("glyphs/woff/5b5bda30.woff") format("woff"), url("glyphs/ttf/5b5bda30.ttf") format("truetype"); unicode-range: U+E07B; } @font-face { font-family: "shield"; src: url("glyphs/woff2/51a7c9cb.woff2") format("woff2"), url("glyphs/woff/51a7c9cb.woff") format("woff"), url("glyphs/ttf/51a7c9cb.ttf") format("truetype"); unicode-range: U+E07C; } @font-face { font-family: "shieldo"; src: url("glyphs/woff2/23b476b4.woff2") format("woff2"), url("glyphs/woff/23b476b4.woff") format("woff"), url("glyphs/ttf/23b476b4.ttf") format("truetype"); unicode-range: U+E07D; } @font-face { font-family: "square"; src: url("glyphs/woff2/cbac8aaa.woff2") format("woff2"), url("glyphs/woff/cbac8aaa.woff") format("woff"), url("glyphs/ttf/cbac8aaa.ttf") format("truetype"); unicode-range: U+E07E; } @font-face { font-family: "square1"; src: url("glyphs/woff2/8377e39a.woff2") format("woff2"), url("glyphs/woff/8377e39a.woff") format("woff"), url("glyphs/ttf/8377e39a.ttf") format("truetype"); unicode-range: U+E07F; } @font-face { font-family: "square2"; src: url("glyphs/woff2/8a52dabb.woff2") format("woff2"), url("glyphs/woff/8a52dabb.woff") format("woff"), url("glyphs/ttf/8a52dabb.ttf") format("truetype"); unicode-range: U+E080; } @font-face { font-family: "squareo"; src: url("glyphs/woff2/f3b8c582.woff2") format("woff2"), url("glyphs/woff/f3b8c582.woff") format("woff"), url("glyphs/ttf/f3b8c582.ttf") format("truetype"); unicode-range: U+E081; } @font-face { font-family: "star"; src: url("glyphs/woff2/da46da57.woff2") format("woff2"), url("glyphs/woff/da46da57.woff") format("woff"), url("glyphs/ttf/da46da57.ttf") format("truetype"); unicode-range: U+E082; } @font-face { font-family: "staro"; src: url("glyphs/woff2/6435b8b4.woff2") format("woff2"), url("glyphs/woff/6435b8b4.woff") format("woff"), url("glyphs/ttf/6435b8b4.ttf") format("truetype"); unicode-range: U+E083; } @font-face { font-family: "triangle"; src: url("glyphs/woff2/edba7c75.woff2") format("woff2"), url("glyphs/woff/edba7c75.woff") format("woff"), url("glyphs/ttf/edba7c75.ttf") format("truetype"); unicode-range: U+E084; } @font-face { font-family: "triangleo"; src: url("glyphs/woff2/871f2951.woff2") format("woff2"), url("glyphs/woff/871f2951.woff") format("woff"), url("glyphs/ttf/871f2951.ttf") format("truetype"); unicode-range: U+E085; } @font-face { font-family: "bitpanda"; src: url("glyphs/woff2/a22847ed.woff2") format("woff2"), url("glyphs/woff/a22847ed.woff") format("woff"), url("glyphs/ttf/a22847ed.ttf") format("truetype"); unicode-range: U+E086; } @font-face { font-family: "bitpay"; src: url("glyphs/woff2/323a4cec.woff2") format("woff2"), url("glyphs/woff/323a4cec.woff") format("woff"), url("glyphs/ttf/323a4cec.ttf") format("truetype"); unicode-range: U+E087; } @font-face { font-family: "bq"; src: url("glyphs/woff2/95114a7a.woff2") format("woff2"), url("glyphs/woff/95114a7a.woff") format("woff"), url("glyphs/ttf/95114a7a.ttf") format("truetype"); unicode-range: U+E088; } @font-face { font-family: "bitstamp"; src: url("glyphs/woff2/e55176f2.woff2") format("woff2"), url("glyphs/woff/e55176f2.woff") format("woff"), url("glyphs/ttf/e55176f2.ttf") format("truetype"); unicode-range: U+E089; } @font-face { font-family: "swift"; src: url("glyphs/woff2/2a4ae11d.woff2") format("woff2"), url("glyphs/woff/2a4ae11d.woff") format("woff"), url("glyphs/ttf/2a4ae11d.ttf") format("truetype"); unicode-range: U+E08A; } @font-face { font-family: "bittrex"; src: url("glyphs/woff2/385855c8.woff2") format("woff2"), url("glyphs/woff/385855c8.woff") format("woff"), url("glyphs/ttf/385855c8.ttf") format("truetype"); unicode-range: U+E08B; } @font-face { font-family: "bc"; src: url("glyphs/woff2/d219fd91.woff2") format("woff2"), url("glyphs/woff/d219fd91.woff") format("woff"), url("glyphs/ttf/d219fd91.ttf") format("truetype"); unicode-range: U+E08C; } @font-face { font-family: "bmc"; src: url("glyphs/woff2/2d5cb25e.woff2") format("woff2"), url("glyphs/woff/2d5cb25e.woff") format("woff"), url("glyphs/ttf/2d5cb25e.ttf") format("truetype"); unicode-range: U+E08D; } @font-face { font-family: "xbp"; src: url("glyphs/woff2/d4a96716.woff2") format("woff2"), url("glyphs/woff/d4a96716.woff") format("woff"), url("glyphs/ttf/d4a96716.ttf") format("truetype"); unicode-range: U+E08E; } @font-face { font-family: "bcpt"; src: url("glyphs/woff2/ae3b63af.woff2") format("woff2"), url("glyphs/woff/ae3b63af.woff") format("woff"), url("glyphs/ttf/ae3b63af.ttf") format("truetype"); unicode-range: U+E08F; } @font-face { font-family: "block"; src: url("glyphs/woff2/3b6b07e4.woff2") format("woff2"), url("glyphs/woff/3b6b07e4.woff") format("woff"), url("glyphs/ttf/3b6b07e4.ttf") format("truetype"); unicode-range: U+E090; } @font-face { font-family: "bpt"; src: url("glyphs/woff2/6748e774.woff2") format("woff2"), url("glyphs/woff/6748e774.woff") format("woff"), url("glyphs/ttf/6748e774.ttf") format("truetype"); unicode-range: U+E091; } @font-face { font-family: "blt"; src: url("glyphs/woff2/6bb79e9f.woff2") format("woff2"), url("glyphs/woff/6bb79e9f.woff") format("woff"), url("glyphs/ttf/6bb79e9f.ttf") format("truetype"); unicode-range: U+E092; } @font-face { font-family: "blz"; src: url("glyphs/woff2/57eb30ea.woff2") format("woff2"), url("glyphs/woff/57eb30ea.woff") format("woff"), url("glyphs/ttf/57eb30ea.ttf") format("truetype"); unicode-range: U+E093; } @font-face { font-family: "bft"; src: url("glyphs/woff2/8216b752.woff2") format("woff2"), url("glyphs/woff/8216b752.woff") format("woff"), url("glyphs/ttf/8216b752.ttf") format("truetype"); unicode-range: U+E094; } @font-face { font-family: "bot"; src: url("glyphs/woff2/a45832ed.woff2") format("woff2"), url("glyphs/woff/a45832ed.woff") format("woff"), url("glyphs/ttf/a45832ed.ttf") format("truetype"); unicode-range: U+E095; } @font-face { font-family: "bnty"; src: url("glyphs/woff2/6a5cf79e.woff2") format("woff2"), url("glyphs/woff/6a5cf79e.woff") format("woff"), url("glyphs/ttf/6a5cf79e.ttf") format("truetype"); unicode-range: U+E096; } @font-face { font-family: "brd"; src: url("glyphs/woff2/ad5bcd8d.woff2") format("woff2"), url("glyphs/woff/ad5bcd8d.woff") format("woff"), url("glyphs/ttf/ad5bcd8d.ttf") format("truetype"); unicode-range: U+E097; } @font-face { font-family: "brk"; src: url("glyphs/woff2/782774ed.woff2") format("woff2"), url("glyphs/woff/782774ed.woff") format("woff"), url("glyphs/ttf/782774ed.ttf") format("truetype"); unicode-range: U+E098; } @font-face { font-family: "brx"; src: url("glyphs/woff2/dee08cc0.woff2") format("woff2"), url("glyphs/woff/dee08cc0.woff") format("woff"), url("glyphs/ttf/dee08cc0.ttf") format("truetype"); unicode-range: U+E099; } @font-face { font-family: "bco"; src: url("glyphs/woff2/1df9ac89.woff2") format("woff2"), url("glyphs/woff/1df9ac89.woff") format("woff"), url("glyphs/ttf/1df9ac89.ttf") format("truetype"); unicode-range: U+E09A; } @font-face { font-family: "gbp"; src: url("glyphs/woff2/011ee55c.woff2") format("woff2"), url("glyphs/woff/011ee55c.woff") format("woff"), url("glyphs/ttf/011ee55c.ttf") format("truetype"); unicode-range: U+E09B; } @font-face { font-family: "bwk"; src: url("glyphs/woff2/d7a69b7b.woff2") format("woff2"), url("glyphs/woff/d7a69b7b.woff") format("woff"), url("glyphs/ttf/d7a69b7b.ttf") format("truetype"); unicode-range: U+E09C; } @font-face { font-family: "burst"; src: url("glyphs/woff2/6cf5db04.woff2") format("woff2"), url("glyphs/woff/6cf5db04.woff") format("woff"), url("glyphs/ttf/6cf5db04.ttf") format("truetype"); unicode-range: U+E09D; } @font-face { font-family: "gbyte"; src: url("glyphs/woff2/70159625.woff2") format("woff2"), url("glyphs/woff/70159625.woff") format("woff"), url("glyphs/ttf/70159625.ttf") format("truetype"); unicode-range: U+E09E; } @font-face { font-family: "bcn"; src: url("glyphs/woff2/53e7de8b.woff2") format("woff2"), url("glyphs/woff/53e7de8b.woff") format("woff"), url("glyphs/ttf/53e7de8b.ttf") format("truetype"); unicode-range: U+E09F; } @font-face { font-family: "btm"; src: url("glyphs/woff2/110df6cd.woff2") format("woff2"), url("glyphs/woff/110df6cd.woff") format("woff"), url("glyphs/ttf/110df6cd.ttf") format("truetype"); unicode-range: U+E0A0; } @font-face { font-family: "cex"; src: url("glyphs/woff2/c407df2f.woff2") format("woff2"), url("glyphs/woff/c407df2f.woff") format("woff"), url("glyphs/ttf/c407df2f.ttf") format("truetype"); unicode-range: U+E0A1; } @font-face { font-family: "cfun"; src: url("glyphs/woff2/899e83fa.woff2") format("woff2"), url("glyphs/woff/899e83fa.woff") format("woff"), url("glyphs/ttf/899e83fa.ttf") format("truetype"); unicode-range: U+E0A2; } @font-face { font-family: "coss"; src: url("glyphs/woff2/120564eb.woff2") format("woff2"), url("glyphs/woff/120564eb.woff") format("woff"), url("glyphs/ttf/120564eb.ttf") format("truetype"); unicode-range: U+E0A3; } @font-face { font-family: "coti"; src: url("glyphs/woff2/31722822.woff2") format("woff2"), url("glyphs/woff/31722822.woff") format("woff"), url("glyphs/ttf/31722822.ttf") format("truetype"); unicode-range: U+E0A4; } @font-face { font-family: "can"; src: url("glyphs/woff2/9be136c3.woff2") format("woff2"), url("glyphs/woff/9be136c3.woff") format("woff"), url("glyphs/ttf/9be136c3.ttf") format("truetype"); unicode-range: U+E0A5; } @font-face { font-family: "cpost"; src: url("glyphs/woff2/5ba710db.woff2") format("woff2"), url("glyphs/woff/5ba710db.woff") format("woff"), url("glyphs/ttf/5ba710db.ttf") format("truetype"); unicode-range: U+E0A6; } @font-face { font-family: "capp"; src: url("glyphs/woff2/a0183c8e.woff2") format("woff2"), url("glyphs/woff/a0183c8e.woff") format("woff"), url("glyphs/ttf/a0183c8e.ttf") format("truetype"); unicode-range: U+E0A7; } @font-face { font-family: "ada"; src: url("glyphs/woff2/41692e5f.woff2") format("woff2"), url("glyphs/woff/41692e5f.woff") format("woff"), url("glyphs/ttf/41692e5f.ttf") format("truetype"); unicode-range: U+E0A8; } @font-face { font-family: "carecredit"; src: url("glyphs/woff2/cda1a566.woff2") format("woff2"), url("glyphs/woff/cda1a566.woff") format("woff"), url("glyphs/ttf/cda1a566.ttf") format("truetype"); unicode-range: U+E0A9; } @font-face { font-family: "cxo"; src: url("glyphs/woff2/b5c60683.woff2") format("woff2"), url("glyphs/woff/b5c60683.woff") format("woff"), url("glyphs/ttf/b5c60683.ttf") format("truetype"); unicode-range: U+E0AA; } @font-face { font-family: "cartasi"; src: url("glyphs/woff2/7845e476.woff2") format("woff2"), url("glyphs/woff/7845e476.woff") format("woff"), url("glyphs/ttf/7845e476.ttf") format("truetype"); unicode-range: U+E0AB; } @font-face { font-family: "cartebancaire"; src: url("glyphs/woff2/4e9dce28.woff2") format("woff2"), url("glyphs/woff/4e9dce28.woff") format("woff"), url("glyphs/ttf/4e9dce28.ttf") format("truetype"); unicode-range: U+E0AC; } @font-face { font-family: "capp"; src: url("glyphs/woff2/a3805f14.woff2") format("woff2"), url("glyphs/woff/a3805f14.woff") format("woff"), url("glyphs/ttf/a3805f14.ttf") format("truetype"); unicode-range: U+E0AD; } @font-face { font-family: "cashcloud"; src: url("glyphs/woff2/38686314.woff2") format("woff2"), url("glyphs/woff/38686314.woff") format("woff"), url("glyphs/ttf/38686314.ttf") format("truetype"); unicode-range: U+E0AE; } @font-face { font-family: "cashu"; src: url("glyphs/woff2/5454be1e.woff2") format("woff2"), url("glyphs/woff/5454be1e.woff") format("woff"), url("glyphs/ttf/5454be1e.ttf") format("truetype"); unicode-range: U+E0AF; } @font-face { font-family: "csc"; src: url("glyphs/woff2/1d3e9975.woff2") format("woff2"), url("glyphs/woff/1d3e9975.woff") format("woff"), url("glyphs/ttf/1d3e9975.ttf") format("truetype"); unicode-range: U+E0B0; } @font-face { font-family: "link"; src: url("glyphs/woff2/d9002330.woff2") format("woff2"), url("glyphs/woff/d9002330.woff") format("woff"), url("glyphs/ttf/d9002330.ttf") format("truetype"); unicode-range: U+E0B1; } @font-face { font-family: "cag"; src: url("glyphs/woff2/6353dd1b.woff2") format("woff2"), url("glyphs/woff/6353dd1b.woff") format("woff"), url("glyphs/ttf/6353dd1b.ttf") format("truetype"); unicode-range: U+E0B2; } @font-face { font-family: "chase"; src: url("glyphs/woff2/edcb62d5.woff2") format("woff2"), url("glyphs/woff/edcb62d5.woff") format("woff"), url("glyphs/ttf/edcb62d5.ttf") format("truetype"); unicode-range: U+E0B3; } @font-face { font-family: "checkout"; src: url("glyphs/woff2/a7644d09.woff2") format("woff2"), url("glyphs/woff/a7644d09.woff") format("woff"), url("glyphs/ttf/a7644d09.ttf") format("truetype"); unicode-range: U+E0B4; } @font-face { font-family: "ccb"; src: url("glyphs/woff2/f73fed81.woff2") format("woff2"), url("glyphs/woff/f73fed81.woff") format("woff"), url("glyphs/ttf/f73fed81.ttf") format("truetype"); unicode-range: U+E0B5; } @font-face { font-family: "cmb"; src: url("glyphs/woff2/4a1c35d5.woff2") format("woff2"), url("glyphs/woff/4a1c35d5.woff") format("woff"), url("glyphs/ttf/4a1c35d5.ttf") format("truetype"); unicode-range: U+E0B6; } @font-face { font-family: "chinapost"; src: url("glyphs/woff2/34a01d7d.woff2") format("woff2"), url("glyphs/woff/34a01d7d.woff") format("woff"), url("glyphs/ttf/34a01d7d.ttf") format("truetype"); unicode-range: U+E0B7; } @font-face { font-family: "cny"; src: url("glyphs/woff2/f20a956f.woff2") format("woff2"), url("glyphs/woff/f20a956f.woff") format("woff"), url("glyphs/ttf/f20a956f.ttf") format("truetype"); unicode-range: U+E0B8; } @font-face { font-family: "time"; src: url("glyphs/woff2/bf5d7fd2.woff2") format("woff2"), url("glyphs/woff/bf5d7fd2.woff") format("woff"), url("glyphs/ttf/bf5d7fd2.ttf") format("truetype"); unicode-range: U+E0B9; } @font-face { font-family: "cnd"; src: url("glyphs/woff2/ea8e0a1a.woff2") format("woff2"), url("glyphs/woff/ea8e0a1a.woff") format("woff"), url("glyphs/ttf/ea8e0a1a.ttf") format("truetype"); unicode-range: U+E0BA; } @font-face { font-family: "cirrus"; src: url("glyphs/woff2/2163c4cf.woff2") format("woff2"), url("glyphs/woff/2163c4cf.woff") format("woff"), url("glyphs/ttf/2163c4cf.ttf") format("truetype"); unicode-range: U+E0BB; } @font-face { font-family: "citibank"; src: url("glyphs/woff2/3e131fc2.woff2") format("woff2"), url("glyphs/woff/3e131fc2.woff") format("woff"), url("glyphs/ttf/3e131fc2.ttf") format("truetype"); unicode-range: U+E0BC; } @font-face { font-family: "cizb"; src: url("glyphs/woff2/dce2e772.woff2") format("woff2"), url("glyphs/woff/dce2e772.woff") format("woff"), url("glyphs/ttf/dce2e772.ttf") format("truetype"); unicode-range: U+E0BD; } @font-face { font-family: "cizbc"; src: url("glyphs/woff2/6ec735fe.woff2") format("woff2"), url("glyphs/woff/6ec735fe.woff") format("woff"), url("glyphs/ttf/6ec735fe.ttf") format("truetype"); unicode-range: U+E0BE; } @font-face { font-family: "cvc"; src: url("glyphs/woff2/c08b2fca.woff2") format("woff2"), url("glyphs/woff/c08b2fca.woff") format("woff"), url("glyphs/ttf/c08b2fca.ttf") format("truetype"); unicode-range: U+E0BF; } @font-face { font-family: "clam"; src: url("glyphs/woff2/87dda7cc.woff2") format("woff2"), url("glyphs/woff/87dda7cc.woff") format("woff"), url("glyphs/ttf/87dda7cc.ttf") format("truetype"); unicode-range: U+E0C0; } @font-face { font-family: "clickandbuy"; src: url("glyphs/woff2/f6e65e59.woff2") format("woff2"), url("glyphs/woff/f6e65e59.woff") format("woff"), url("glyphs/ttf/f6e65e59.ttf") format("truetype"); unicode-range: U+E0C1; } @font-face { font-family: "cloak"; src: url("glyphs/woff2/3a52ed45.woff2") format("woff2"), url("glyphs/woff/3a52ed45.woff") format("woff"), url("glyphs/ttf/3a52ed45.ttf") format("truetype"); unicode-range: U+E0C2; } @font-face { font-family: "cld"; src: url("glyphs/woff2/36fb96fc.woff2") format("woff2"), url("glyphs/woff/36fb96fc.woff") format("woff"), url("glyphs/ttf/36fb96fc.ttf") format("truetype"); unicode-range: U+E0C3; } @font-face { font-family: "coe"; src: url("glyphs/woff2/74da00d4.woff2") format("woff2"), url("glyphs/woff/74da00d4.woff") format("woff"), url("glyphs/ttf/74da00d4.ttf") format("truetype"); unicode-range: U+E0C4; } @font-face { font-family: "coxst"; src: url("glyphs/woff2/430cca2f.woff2") format("woff2"), url("glyphs/woff/430cca2f.woff") format("woff"), url("glyphs/ttf/430cca2f.ttf") format("truetype"); unicode-range: U+E0C5; } @font-face { font-family: "cob"; src: url("glyphs/woff2/a6af89bd.woff2") format("woff2"), url("glyphs/woff/a6af89bd.woff") format("woff"), url("glyphs/ttf/a6af89bd.ttf") format("truetype"); unicode-range: U+E0C6; } @font-face { font-family: "cof"; src: url("glyphs/woff2/1a9e5d1a.woff2") format("woff2"), url("glyphs/woff/1a9e5d1a.woff") format("woff"), url("glyphs/ttf/1a9e5d1a.ttf") format("truetype"); unicode-range: U+E0C7; } @font-face { font-family: "cfi"; src: url("glyphs/woff2/e528cde1.woff2") format("woff2"), url("glyphs/woff/e528cde1.woff") format("woff"), url("glyphs/ttf/e528cde1.ttf") format("truetype"); unicode-range: U+E0C8; } @font-face { font-family: "cdt"; src: url("glyphs/woff2/b09f469a.woff2") format("woff2"), url("glyphs/woff/b09f469a.woff") format("woff"), url("glyphs/ttf/b09f469a.ttf") format("truetype"); unicode-range: U+E0C9; } @font-face { font-family: "mee"; src: url("glyphs/woff2/a5ee2945.woff2") format("woff2"), url("glyphs/woff/a5ee2945.woff") format("woff"), url("glyphs/ttf/a5ee2945.ttf") format("truetype"); unicode-range: U+E0CA; } @font-face { font-family: "cn1"; src: url("glyphs/woff2/8aa66ff2.woff2") format("woff2"), url("glyphs/woff/8aa66ff2.woff") format("woff"), url("glyphs/ttf/8aa66ff2.ttf") format("truetype"); unicode-range: U+E0CB; } @font-face { font-family: "cb"; src: url("glyphs/woff2/08e4c9db.woff2") format("woff2"), url("glyphs/woff/08e4c9db.woff") format("woff"), url("glyphs/ttf/08e4c9db.ttf") format("truetype"); unicode-range: U+E0CC; } @font-face { font-family: "coincheck"; src: url("glyphs/woff2/91c7605d.woff2") format("woff2"), url("glyphs/woff/91c7605d.woff") format("woff"), url("glyphs/ttf/91c7605d.ttf") format("truetype"); unicode-range: U+E0CD; } @font-face { font-family: "coindesk"; src: url("glyphs/woff2/2cee68c5.woff2") format("woff2"), url("glyphs/woff/2cee68c5.woff") format("woff"), url("glyphs/ttf/2cee68c5.ttf") format("truetype"); unicode-range: U+E0CE; } @font-face { font-family: "coinfloor"; src: url("glyphs/woff2/a1f0f211.woff2") format("woff2"), url("glyphs/woff/a1f0f211.woff") format("woff"), url("glyphs/ttf/a1f0f211.ttf") format("truetype"); unicode-range: U+E0CF; } @font-face { font-family: "cnfy"; src: url("glyphs/woff2/0cc88965.woff2") format("woff2"), url("glyphs/woff/0cc88965.woff") format("woff"), url("glyphs/ttf/0cc88965.ttf") format("truetype"); unicode-range: U+E0D0; } @font-face { font-family: "ctph"; src: url("glyphs/woff2/167004d8.woff2") format("woff2"), url("glyphs/woff/167004d8.woff") format("woff"), url("glyphs/ttf/167004d8.ttf") format("truetype"); unicode-range: U+E0D1; } @font-face { font-family: "colx"; src: url("glyphs/woff2/ed4c2c15.woff2") format("woff2"), url("glyphs/woff/ed4c2c15.woff") format("woff"), url("glyphs/ttf/ed4c2c15.ttf") format("truetype"); unicode-range: U+E0D2; } @font-face { font-family: "cmp"; src: url("glyphs/woff2/989ad0a9.woff2") format("woff2"), url("glyphs/woff/989ad0a9.woff") format("woff"), url("glyphs/ttf/989ad0a9.ttf") format("truetype"); unicode-range: U+E0D3; } @font-face { font-family: "sen"; src: url("glyphs/woff2/d9b31097.woff2") format("woff2"), url("glyphs/woff/d9b31097.woff") format("woff"), url("glyphs/ttf/d9b31097.ttf") format("truetype"); unicode-range: U+E0D4; } @font-face { font-family: "csys"; src: url("glyphs/woff2/578f348a.woff2") format("woff2"), url("glyphs/woff/578f348a.woff") format("woff"), url("glyphs/ttf/578f348a.ttf") format("truetype"); unicode-range: U+E0D5; } @font-face { font-family: "xcp"; src: url("glyphs/woff2/520274a8.woff2") format("woff2"), url("glyphs/woff/520274a8.woff") format("woff"), url("glyphs/ttf/520274a8.ttf") format("truetype"); unicode-range: U+E0D6; } @font-face { font-family: "cov"; src: url("glyphs/woff2/3ac9bbf7.woff2") format("woff2"), url("glyphs/woff/3ac9bbf7.woff") format("woff"), url("glyphs/ttf/3ac9bbf7.ttf") format("truetype"); unicode-range: U+E0D7; } @font-face { font-family: "crea"; src: url("glyphs/woff2/dfc642b4.woff2") format("woff2"), url("glyphs/woff/dfc642b4.woff") format("woff"), url("glyphs/ttf/dfc642b4.ttf") format("truetype"); unicode-range: U+E0D8; } @font-face { font-family: "csuis"; src: url("glyphs/woff2/00883b50.woff2") format("woff2"), url("glyphs/woff/00883b50.woff") format("woff"), url("glyphs/ttf/00883b50.ttf") format("truetype"); unicode-range: U+E0D9; } @font-face { font-family: "crb"; src: url("glyphs/woff2/6587b420.woff2") format("woff2"), url("glyphs/woff/6587b420.woff") format("woff"), url("glyphs/ttf/6587b420.ttf") format("truetype"); unicode-range: U+E0DA; } @font-face { font-family: "cs"; src: url("glyphs/woff2/e2b7f2e8.woff2") format("woff2"), url("glyphs/woff/e2b7f2e8.woff") format("woff"), url("glyphs/ttf/e2b7f2e8.ttf") format("truetype"); unicode-range: U+E0DB; } @font-face { font-family: "credo"; src: url("glyphs/woff2/b9507f5e.woff2") format("woff2"), url("glyphs/woff/b9507f5e.woff") format("woff"), url("glyphs/ttf/b9507f5e.ttf") format("truetype"); unicode-range: U+E0DC; } @font-face { font-family: "cmct"; src: url("glyphs/woff2/c42bbfd6.woff2") format("woff2"), url("glyphs/woff/c42bbfd6.woff") format("woff"), url("glyphs/ttf/c42bbfd6.ttf") format("truetype"); unicode-range: U+E0DD; } @font-face { font-family: "crpt"; src: url("glyphs/woff2/e0436cb5.woff2") format("woff2"), url("glyphs/woff/e0436cb5.woff") format("woff"), url("glyphs/ttf/e0436cb5.ttf") format("truetype"); unicode-range: U+E0DE; } @font-face { font-family: "cryptobridge"; src: url("glyphs/woff2/94bb9a0a.woff2") format("woff2"), url("glyphs/woff/94bb9a0a.woff") format("woff"), url("glyphs/ttf/94bb9a0a.ttf") format("truetype"); unicode-range: U+E0DF; } @font-face { font-family: "cnx"; src: url("glyphs/woff2/7e86b04d.woff2") format("woff2"), url("glyphs/woff/7e86b04d.woff") format("woff"), url("glyphs/ttf/7e86b04d.ttf") format("truetype"); unicode-range: U+E0E0; } @font-face { font-family: "cryptonit"; src: url("glyphs/woff2/22c6ed00.woff2") format("woff2"), url("glyphs/woff/22c6ed00.woff") format("woff"), url("glyphs/ttf/22c6ed00.ttf") format("truetype"); unicode-range: U+E0E1; } @font-face { font-family: "cryptopia"; src: url("glyphs/woff2/ba8d699c.woff2") format("woff2"), url("glyphs/woff/ba8d699c.woff") format("woff"), url("glyphs/ttf/ba8d699c.ttf") format("truetype"); unicode-range: U+E0E2; } @font-face { font-family: "cryptovest"; src: url("glyphs/woff2/11805c1a.woff2") format("woff2"), url("glyphs/woff/11805c1a.woff") format("woff"), url("glyphs/ttf/11805c1a.ttf") format("truetype"); unicode-range: U+E0E3; } @font-face { font-family: "auto"; src: url("glyphs/woff2/ea17073b.woff2") format("woff2"), url("glyphs/woff/ea17073b.woff") format("woff"), url("glyphs/ttf/ea17073b.ttf") format("truetype"); unicode-range: U+E0E4; } @font-face { font-family: "crnc"; src: url("glyphs/woff2/37481bd1.woff2") format("woff2"), url("glyphs/woff/37481bd1.woff") format("woff"), url("glyphs/ttf/37481bd1.ttf") format("truetype"); unicode-range: U+E0E5; } @font-face { font-family: "cvt"; src: url("glyphs/woff2/455032d0.woff2") format("woff2"), url("glyphs/woff/455032d0.woff") format("woff"), url("glyphs/ttf/455032d0.ttf") format("truetype"); unicode-range: U+E0E6; } @font-face { font-family: "dadi"; src: url("glyphs/woff2/56521359.woff2") format("woff2"), url("glyphs/woff/56521359.woff") format("woff"), url("glyphs/ttf/56521359.ttf") format("truetype"); unicode-range: U+E0E7; } @font-face { font-family: "dax"; src: url("glyphs/woff2/7651ec5d.woff2") format("woff2"), url("glyphs/woff/7651ec5d.woff") format("woff"), url("glyphs/ttf/7651ec5d.ttf") format("truetype"); unicode-range: U+E0E8; } @font-face { font-family: "dta"; src: url("glyphs/woff2/4a280971.woff2") format("woff2"), url("glyphs/woff/4a280971.woff") format("woff"), url("glyphs/ttf/4a280971.ttf") format("truetype"); unicode-range: U+E0E9; } @font-face { font-family: "datx"; src: url("glyphs/woff2/bb48d505.woff2") format("woff2"), url("glyphs/woff/bb48d505.woff") format("woff"), url("glyphs/ttf/bb48d505.ttf") format("truetype"); unicode-range: U+E0EA; } @font-face { font-family: "drp"; src: url("glyphs/woff2/f522c872.woff2") format("woff2"), url("glyphs/woff/f522c872.woff") format("woff"), url("glyphs/ttf/f522c872.ttf") format("truetype"); unicode-range: U+E0EB; } @font-face { font-family: "dct"; src: url("glyphs/woff2/be79d1c6.woff2") format("woff2"), url("glyphs/woff/be79d1c6.woff") format("woff"), url("glyphs/ttf/be79d1c6.ttf") format("truetype"); unicode-range: U+E0EC; } @font-face { font-family: "dew"; src: url("glyphs/woff2/b8f899c8.woff2") format("woff2"), url("glyphs/woff/b8f899c8.woff") format("woff"), url("glyphs/ttf/b8f899c8.ttf") format("truetype"); unicode-range: U+E0ED; } @font-face { font-family: "dhl"; src: url("glyphs/woff2/516cf792.woff2") format("woff2"), url("glyphs/woff/516cf792.woff") format("woff"), url("glyphs/ttf/516cf792.ttf") format("truetype"); unicode-range: U+E0EE; } @font-face { font-family: "dibc"; src: url("glyphs/woff2/df860193.woff2") format("woff2"), url("glyphs/woff/df860193.woff") format("woff"), url("glyphs/ttf/df860193.ttf") format("truetype"); unicode-range: U+E0EF; } @font-face { font-family: "discover"; src: url("glyphs/woff2/1eb35b35.woff2") format("woff2"), url("glyphs/woff/1eb35b35.woff") format("woff"), url("glyphs/ttf/1eb35b35.ttf") format("truetype"); unicode-range: U+E0F0; } @font-face { font-family: "dmt"; src: url("glyphs/woff2/734be349.woff2") format("woff2"), url("glyphs/woff/734be349.woff") format("woff"), url("glyphs/ttf/734be349.ttf") format("truetype"); unicode-range: U+E0F1; } @font-face { font-family: "note"; src: url("glyphs/woff2/862543ec.woff2") format("woff2"), url("glyphs/woff/862543ec.woff") format("woff"), url("glyphs/ttf/862543ec.ttf") format("truetype"); unicode-range: U+E0F2; } @font-face { font-family: "dovu"; src: url("glyphs/woff2/f0239cc2.woff2") format("woff2"), url("glyphs/woff/f0239cc2.woff") format("woff"), url("glyphs/ttf/f0239cc2.ttf") format("truetype"); unicode-range: U+E0F3; } @font-face { font-family: "dpd"; src: url("glyphs/woff2/389e0153.woff2") format("woff2"), url("glyphs/woff/389e0153.woff") format("woff"), url("glyphs/ttf/389e0153.ttf") format("truetype"); unicode-range: U+E0F4; } @font-face { font-family: "dsv"; src: url("glyphs/woff2/496a7c2f.woff2") format("woff2"), url("glyphs/woff/496a7c2f.woff") format("woff"), url("glyphs/ttf/496a7c2f.ttf") format("truetype"); unicode-range: U+E0F5; } @font-face { font-family: "dai"; src: url("glyphs/woff2/d09b48b1.woff2") format("woff2"), url("glyphs/woff/d09b48b1.woff") format("woff"), url("glyphs/ttf/d09b48b1.ttf") format("truetype"); unicode-range: U+E0F6; } @font-face { font-family: "dankort"; src: url("glyphs/woff2/766bbd91.woff2") format("woff2"), url("glyphs/woff/766bbd91.woff") format("woff"), url("glyphs/ttf/766bbd91.ttf") format("truetype"); unicode-range: U+E0F7; } @font-face { font-family: "daohb"; src: url("glyphs/woff2/b78ccf45.woff2") format("woff2"), url("glyphs/woff/b78ccf45.woff") format("woff"), url("glyphs/ttf/b78ccf45.ttf") format("truetype"); unicode-range: U+E0F8; } @font-face { font-family: "dash"; src: url("glyphs/woff2/3547c23d.woff2") format("woff2"), url("glyphs/woff/3547c23d.woff") format("woff"), url("glyphs/ttf/3547c23d.ttf") format("truetype"); unicode-range: U+E0F9; } @font-face { font-family: "dtt"; src: url("glyphs/woff2/066eea7e.woff2") format("woff2"), url("glyphs/woff/066eea7e.woff") format("woff"), url("glyphs/ttf/066eea7e.ttf") format("truetype"); unicode-range: U+E0FA; } @font-face { font-family: "dxt"; src: url("glyphs/woff2/9f205e65.woff2") format("woff2"), url("glyphs/woff/9f205e65.woff") format("woff"), url("glyphs/ttf/9f205e65.ttf") format("truetype"); unicode-range: U+E0FB; } @font-face { font-family: "dat"; src: url("glyphs/woff2/fd5fe89c.woff2") format("woff2"), url("glyphs/woff/fd5fe89c.woff") format("woff"), url("glyphs/ttf/fd5fe89c.ttf") format("truetype"); unicode-range: U+E0FC; } @font-face { font-family: "deb"; src: url("glyphs/woff2/7fc2dce7.woff2") format("woff2"), url("glyphs/woff/7fc2dce7.woff") format("woff"), url("glyphs/ttf/7fc2dce7.ttf") format("truetype"); unicode-range: U+E0FD; } @font-face { font-family: "mana"; src: url("glyphs/woff2/6dd1f0c3.woff2") format("woff2"), url("glyphs/woff/6dd1f0c3.woff") format("woff"), url("glyphs/ttf/6dd1f0c3.ttf") format("truetype"); unicode-range: U+E0FE; } @font-face { font-family: "dml"; src: url("glyphs/woff2/e7d3044b.woff2") format("woff2"), url("glyphs/woff/e7d3044b.woff") format("woff"), url("glyphs/ttf/e7d3044b.ttf") format("truetype"); unicode-range: U+E0FF; } @font-face { font-family: "hst"; src: url("glyphs/woff2/478bc2f3.woff2") format("woff2"), url("glyphs/woff/478bc2f3.woff") format("woff"), url("glyphs/ttf/478bc2f3.ttf") format("truetype"); unicode-range: U+E100; } @font-face { font-family: "dcr"; src: url("glyphs/woff2/ce9eb004.woff2") format("woff2"), url("glyphs/woff/ce9eb004.woff") format("woff"), url("glyphs/ttf/ce9eb004.ttf") format("truetype"); unicode-range: U+E101; } @font-face { font-family: "dbc"; src: url("glyphs/woff2/20f9b6e3.woff2") format("woff2"), url("glyphs/woff/20f9b6e3.woff") format("woff"), url("glyphs/ttf/20f9b6e3.ttf") format("truetype"); unicode-range: U+E102; } @font-face { font-family: "onion"; src: url("glyphs/woff2/55048901.woff2") format("woff2"), url("glyphs/woff/55048901.woff") format("woff"), url("glyphs/ttf/55048901.ttf") format("truetype"); unicode-range: U+E103; } @font-face { font-family: "dpy"; src: url("glyphs/woff2/eb67386f.woff2") format("woff2"), url("glyphs/woff/eb67386f.woff") format("woff"), url("glyphs/ttf/eb67386f.ttf") format("truetype"); unicode-range: U+E104; } @font-face { font-family: "dent"; src: url("glyphs/woff2/92b634cd.woff2") format("woff2"), url("glyphs/woff/92b634cd.woff") format("woff"), url("glyphs/ttf/92b634cd.ttf") format("truetype"); unicode-range: U+E105; } @font-face { font-family: "dcn"; src: url("glyphs/woff2/bb12d8ab.woff2") format("woff2"), url("glyphs/woff/bb12d8ab.woff") format("woff"), url("glyphs/ttf/bb12d8ab.ttf") format("truetype"); unicode-range: U+E106; } @font-face { font-family: "dth"; src: url("glyphs/woff2/bae4bae8.woff2") format("woff2"), url("glyphs/woff/bae4bae8.woff") format("woff"), url("glyphs/ttf/bae4bae8.ttf") format("truetype"); unicode-range: U+E107; } @font-face { font-family: "deub"; src: url("glyphs/woff2/c48a78a5.woff2") format("woff2"), url("glyphs/woff/c48a78a5.woff") format("woff"), url("glyphs/ttf/c48a78a5.ttf") format("truetype"); unicode-range: U+E108; } @font-face { font-family: "dpost"; src: url("glyphs/woff2/1a8afe19.woff2") format("woff2"), url("glyphs/woff/1a8afe19.woff") format("woff"), url("glyphs/ttf/1a8afe19.ttf") format("truetype"); unicode-range: U+E109; } @font-face { font-family: "eve"; src: url("glyphs/woff2/692990c2.woff2") format("woff2"), url("glyphs/woff/692990c2.woff") format("woff"), url("glyphs/ttf/692990c2.ttf") format("truetype"); unicode-range: U+E10A; } @font-face { font-family: "dfinity"; src: url("glyphs/woff2/b8a14959.woff2") format("woff2"), url("glyphs/woff/b8a14959.woff") format("woff"), url("glyphs/ttf/b8a14959.ttf") format("truetype"); unicode-range: U+E10B; } @font-face { font-family: "dmd"; src: url("glyphs/woff2/2d2cf221.woff2") format("woff2"), url("glyphs/woff/2d2cf221.woff") format("woff"), url("glyphs/ttf/2d2cf221.ttf") format("truetype"); unicode-range: U+E10C; } @font-face { font-family: "dgb"; src: url("glyphs/woff2/e29e8451.woff2") format("woff2"), url("glyphs/woff/e29e8451.woff") format("woff"), url("glyphs/ttf/e29e8451.ttf") format("truetype"); unicode-range: U+E10D; } @font-face { font-family: "xdn"; src: url("glyphs/woff2/1937cd98.woff2") format("woff2"), url("glyphs/woff/1937cd98.woff") format("woff"), url("glyphs/ttf/1937cd98.ttf") format("truetype"); unicode-range: U+E10E; } @font-face { font-family: "dgd"; src: url("glyphs/woff2/7faba1e2.woff2") format("woff2"), url("glyphs/woff/7faba1e2.woff") format("woff"), url("glyphs/ttf/7faba1e2.ttf") format("truetype"); unicode-range: U+E10F; } @font-face { font-family: "dgx"; src: url("glyphs/woff2/9eb86178.woff2") format("woff2"), url("glyphs/woff/9eb86178.woff") format("woff"), url("glyphs/ttf/9eb86178.ttf") format("truetype"); unicode-range: U+E110; } @font-face { font-family: "dime"; src: url("glyphs/woff2/4321166d.woff2") format("woff2"), url("glyphs/woff/4321166d.woff") format("woff"), url("glyphs/ttf/4321166d.ttf") format("truetype"); unicode-range: U+E111; } @font-face { font-family: "dinersclub"; src: url("glyphs/woff2/6895132f.woff2") format("woff2"), url("glyphs/woff/6895132f.woff") format("woff"), url("glyphs/ttf/6895132f.ttf") format("truetype"); unicode-range: U+E112; } @font-face { font-family: "directdebit"; src: url("glyphs/woff2/ea26fef6.woff2") format("woff2"), url("glyphs/woff/ea26fef6.woff") format("woff"), url("glyphs/ttf/ea26fef6.ttf") format("truetype"); unicode-range: U+E113; } @font-face { font-family: "divx"; src: url("glyphs/woff2/93b56efb.woff2") format("woff2"), url("glyphs/woff/93b56efb.woff") format("woff"), url("glyphs/ttf/93b56efb.ttf") format("truetype"); unicode-range: U+E114; } @font-face { font-family: "dockio"; src: url("glyphs/woff2/a9a9d798.woff2") format("woff2"), url("glyphs/woff/a9a9d798.woff") format("woff"), url("glyphs/ttf/a9a9d798.ttf") format("truetype"); unicode-range: U+E115; } @font-face { font-family: "doge"; src: url("glyphs/woff2/297959f6.woff2") format("woff2"), url("glyphs/woff/297959f6.woff") format("woff"), url("glyphs/ttf/297959f6.ttf") format("truetype"); unicode-range: U+E116; } @font-face { font-family: "drt"; src: url("glyphs/woff2/d228d1ac.woff2") format("woff2"), url("glyphs/woff/d228d1ac.woff") format("woff"), url("glyphs/ttf/d228d1ac.ttf") format("truetype"); unicode-range: U+E117; } @font-face { font-family: "drg"; src: url("glyphs/woff2/a4caee91.woff2") format("woff2"), url("glyphs/woff/a4caee91.woff") format("woff"), url("glyphs/ttf/a4caee91.ttf") format("truetype"); unicode-range: U+E118; } @font-face { font-family: "drgn"; src: url("glyphs/woff2/dc86c2f6.woff2") format("woff2"), url("glyphs/woff/dc86c2f6.woff") format("woff"), url("glyphs/ttf/dc86c2f6.ttf") format("truetype"); unicode-range: U+E119; } @font-face { font-family: "drmt"; src: url("glyphs/woff2/04c9aec2.woff2") format("woff2"), url("glyphs/woff/04c9aec2.woff") format("woff"), url("glyphs/ttf/04c9aec2.ttf") format("truetype"); unicode-range: U+E11A; } @font-face { font-family: "dyn"; src: url("glyphs/woff2/ad2eb64b.woff2") format("woff2"), url("glyphs/woff/ad2eb64b.woff") format("woff"), url("glyphs/ttf/ad2eb64b.ttf") format("truetype"); unicode-range: U+E11B; } @font-face { font-family: "dtr"; src: url("glyphs/woff2/9c739b13.woff2") format("woff2"), url("glyphs/woff/9c739b13.woff") format("woff"), url("glyphs/ttf/9c739b13.ttf") format("truetype"); unicode-range: U+E11C; } @font-face { font-family: "ecc"; src: url("glyphs/woff2/817d2a0a.woff2") format("woff2"), url("glyphs/woff/817d2a0a.woff") format("woff"), url("glyphs/ttf/817d2a0a.ttf") format("truetype"); unicode-range: U+E11D; } @font-face { font-family: "echo"; src: url("glyphs/woff2/580961bd.woff2") format("woff2"), url("glyphs/woff/580961bd.woff") format("woff"), url("glyphs/ttf/580961bd.ttf") format("truetype"); unicode-range: U+E11E; } @font-face { font-family: "elo"; src: url("glyphs/woff2/dcd33a62.woff2") format("woff2"), url("glyphs/woff/dcd33a62.woff") format("woff"), url("glyphs/ttf/dcd33a62.ttf") format("truetype"); unicode-range: U+E11F; } @font-face { font-family: "ems"; src: url("glyphs/woff2/3f29fe8f.woff2") format("woff2"), url("glyphs/woff/3f29fe8f.woff") format("woff"), url("glyphs/ttf/3f29fe8f.ttf") format("truetype"); unicode-range: U+E120; } @font-face { font-family: "eos"; src: url("glyphs/woff2/ae453c2f.woff2") format("woff2"), url("glyphs/woff/ae453c2f.woff") format("woff"), url("glyphs/ttf/ae453c2f.ttf") format("truetype"); unicode-range: U+E121; } @font-face { font-family: "esrwallet"; src: url("glyphs/woff2/f8a8936b.woff2") format("woff2"), url("glyphs/woff/f8a8936b.woff") format("woff"), url("glyphs/ttf/f8a8936b.ttf") format("truetype"); unicode-range: U+E122; } @font-face { font-family: "essa"; src: url("glyphs/woff2/218e296f.woff2") format("woff2"), url("glyphs/woff/218e296f.woff") format("woff"), url("glyphs/ttf/218e296f.ttf") format("truetype"); unicode-range: U+E123; } @font-face { font-family: "lend"; src: url("glyphs/woff2/57dd141e.woff2") format("woff2"), url("glyphs/woff/57dd141e.woff") format("woff"), url("glyphs/ttf/57dd141e.ttf") format("truetype"); unicode-range: U+E124; } @font-face { font-family: "exc"; src: url("glyphs/woff2/83f03b1d.woff2") format("woff2"), url("glyphs/woff/83f03b1d.woff") format("woff"), url("glyphs/ttf/83f03b1d.ttf") format("truetype"); unicode-range: U+E125; } @font-face { font-family: "exx"; src: url("glyphs/woff2/061e5117.woff2") format("woff2"), url("glyphs/woff/061e5117.woff") format("woff"), url("glyphs/ttf/061e5117.ttf") format("truetype"); unicode-range: U+E126; } @font-face { font-family: "ezt"; src: url("glyphs/woff2/09afd82a.woff2") format("woff2"), url("glyphs/woff/09afd82a.woff") format("woff"), url("glyphs/ttf/09afd82a.ttf") format("truetype"); unicode-range: U+E127; } @font-face { font-family: "earth"; src: url("glyphs/woff2/06fd396d.woff2") format("woff2"), url("glyphs/woff/06fd396d.woff") format("woff"), url("glyphs/ttf/06fd396d.ttf") format("truetype"); unicode-range: U+E128; } @font-face { font-family: "ebanx"; src: url("glyphs/woff2/d0e625c0.woff2") format("woff2"), url("glyphs/woff/d0e625c0.woff") format("woff"), url("glyphs/ttf/d0e625c0.ttf") format("truetype"); unicode-range: U+E129; } @font-face { font-family: "edg"; src: url("glyphs/woff2/4d59c24a.woff2") format("woff2"), url("glyphs/woff/4d59c24a.woff") format("woff"), url("glyphs/ttf/4d59c24a.ttf") format("truetype"); unicode-range: U+E12A; } @font-face { font-family: "efx"; src: url("glyphs/woff2/2a9dc20c.woff2") format("woff2"), url("glyphs/woff/2a9dc20c.woff") format("woff"), url("glyphs/ttf/2a9dc20c.ttf") format("truetype"); unicode-range: U+E12B; } @font-face { font-family: "edo"; src: url("glyphs/woff2/61965d02.woff2") format("woff2"), url("glyphs/woff/61965d02.woff") format("woff"), url("glyphs/ttf/61965d02.ttf") format("truetype"); unicode-range: U+E12C; } @font-face { font-family: "emc2"; src: url("glyphs/woff2/fe1a9b49.woff2") format("woff2"), url("glyphs/woff/fe1a9b49.woff") format("woff"), url("glyphs/ttf/fe1a9b49.ttf") format("truetype"); unicode-range: U+E12D; } @font-face { font-family: "elc"; src: url("glyphs/woff2/4ee23427.woff2") format("woff2"), url("glyphs/woff/4ee23427.woff") format("woff"), url("glyphs/ttf/4ee23427.ttf") format("truetype"); unicode-range: U+E12E; } @font-face { font-family: "xel"; src: url("glyphs/woff2/2a889c21.woff2") format("woff2"), url("glyphs/woff/2a889c21.woff") format("woff"), url("glyphs/ttf/2a889c21.ttf") format("truetype"); unicode-range: U+E12F; } @font-face { font-family: "ela"; src: url("glyphs/woff2/a87ed935.woff2") format("woff2"), url("glyphs/woff/a87ed935.woff") format("woff"), url("glyphs/ttf/a87ed935.ttf") format("truetype"); unicode-range: U+E130; } @font-face { font-family: "eca"; src: url("glyphs/woff2/dbf1f527.woff2") format("woff2"), url("glyphs/woff/dbf1f527.woff") format("woff"), url("glyphs/ttf/dbf1f527.ttf") format("truetype"); unicode-range: U+E131; } @font-face { font-family: "elec"; src: url("glyphs/woff2/e2920962.woff2") format("woff2"), url("glyphs/woff/e2920962.woff") format("woff"), url("glyphs/ttf/e2920962.ttf") format("truetype"); unicode-range: U+E132; } @font-face { font-family: "etn"; src: url("glyphs/woff2/7d8ef620.woff2") format("woff2"), url("glyphs/woff/7d8ef620.woff") format("woff"), url("glyphs/ttf/7d8ef620.ttf") format("truetype"); unicode-range: U+E133; } @font-face { font-family: "elix"; src: url("glyphs/woff2/a52bb57c.woff2") format("woff2"), url("glyphs/woff/a52bb57c.woff") format("woff"), url("glyphs/ttf/a52bb57c.ttf") format("truetype"); unicode-range: U+E134; } @font-face { font-family: "mbrs"; src: url("glyphs/woff2/ea915e6c.woff2") format("woff2"), url("glyphs/woff/ea915e6c.woff") format("woff"), url("glyphs/ttf/ea915e6c.ttf") format("truetype"); unicode-range: U+E135; } @font-face { font-family: "emc"; src: url("glyphs/woff2/2dc572da.woff2") format("woff2"), url("glyphs/woff/2dc572da.woff") format("woff"), url("glyphs/ttf/2dc572da.ttf") format("truetype"); unicode-range: U+E136; } @font-face { font-family: "ett"; src: url("glyphs/woff2/d72e5642.woff2") format("woff2"), url("glyphs/woff/d72e5642.woff") format("woff"), url("glyphs/ttf/d72e5642.ttf") format("truetype"); unicode-range: U+E137; } @font-face { font-family: "enrg"; src: url("glyphs/woff2/91d96ddb.woff2") format("woff2"), url("glyphs/woff/91d96ddb.woff") format("woff"), url("glyphs/ttf/91d96ddb.ttf") format("truetype"); unicode-range: U+E138; } @font-face { font-family: "eng"; src: url("glyphs/woff2/4062bc3a.woff2") format("woff2"), url("glyphs/woff/4062bc3a.woff") format("woff"), url("glyphs/ttf/4062bc3a.ttf") format("truetype"); unicode-range: U+E139; } @font-face { font-family: "enj"; src: url("glyphs/woff2/ad451fc0.woff2") format("woff2"), url("glyphs/woff/ad451fc0.woff") format("woff"), url("glyphs/ttf/ad451fc0.ttf") format("truetype"); unicode-range: U+E13A; } @font-face { font-family: "env"; src: url("glyphs/woff2/cf9d5267.woff2") format("woff2"), url("glyphs/woff/cf9d5267.woff") format("woff"), url("glyphs/ttf/cf9d5267.ttf") format("truetype"); unicode-range: U+E13B; } @font-face { font-family: "equa"; src: url("glyphs/woff2/1a54066a.woff2") format("woff2"), url("glyphs/woff/1a54066a.woff") format("woff"), url("glyphs/ttf/1a54066a.ttf") format("truetype"); unicode-range: U+E13C; } @font-face { font-family: "eql"; src: url("glyphs/woff2/73337a66.woff2") format("woff2"), url("glyphs/woff/73337a66.woff") format("woff"), url("glyphs/ttf/73337a66.ttf") format("truetype"); unicode-range: U+E13D; } @font-face { font-family: "edoge"; src: url("glyphs/woff2/e67af557.woff2") format("woff2"), url("glyphs/woff/e67af557.woff") format("woff"), url("glyphs/ttf/e67af557.ttf") format("truetype"); unicode-range: U+E13E; } @font-face { font-family: "ech"; src: url("glyphs/woff2/d0f4fedd.woff2") format("woff2"), url("glyphs/woff/d0f4fedd.woff") format("woff"), url("glyphs/ttf/d0f4fedd.ttf") format("truetype"); unicode-range: U+E13F; } @font-face { font-family: "etc"; src: url("glyphs/woff2/0e779307.woff2") format("woff2"), url("glyphs/woff/0e779307.woff") format("woff"), url("glyphs/ttf/0e779307.ttf") format("truetype"); unicode-range: U+E140; } @font-face { font-family: "eth"; src: url("glyphs/woff2/d68c6b5a.woff2") format("woff2"), url("glyphs/woff/d68c6b5a.woff") format("woff"), url("glyphs/ttf/d68c6b5a.ttf") format("truetype"); unicode-range: U+E141; } @font-face { font-family: "fuel"; src: url("glyphs/woff2/a4900e86.woff2") format("woff2"), url("glyphs/woff/a4900e86.woff") format("woff"), url("glyphs/ttf/a4900e86.ttf") format("truetype"); unicode-range: U+E142; } @font-face { font-family: "ethos"; src: url("glyphs/woff2/f265e93a.woff2") format("woff2"), url("glyphs/woff/f265e93a.woff") format("woff"), url("glyphs/ttf/f265e93a.ttf") format("truetype"); unicode-range: U+E143; } @font-face { font-family: "eur"; src: url("glyphs/woff2/67036539.woff2") format("woff2"), url("glyphs/woff/67036539.woff") format("woff"), url("glyphs/ttf/67036539.ttf") format("truetype"); unicode-range: U+E144; } @font-face { font-family: "eurocheque"; src: url("glyphs/woff2/6282768c.woff2") format("woff2"), url("glyphs/woff/6282768c.woff") format("woff"), url("glyphs/ttf/6282768c.ttf") format("truetype"); unicode-range: U+E145; } @font-face { font-family: "erc"; src: url("glyphs/woff2/d9f1f706.woff2") format("woff2"), url("glyphs/woff/d9f1f706.woff") format("woff"), url("glyphs/ttf/d9f1f706.ttf") format("truetype"); unicode-range: U+E146; } @font-face { font-family: "xuc"; src: url("glyphs/woff2/2200df99.woff2") format("woff2"), url("glyphs/woff/2200df99.woff") format("woff"), url("glyphs/ttf/2200df99.ttf") format("truetype"); unicode-range: U+E147; } @font-face { font-family: "exmo"; src: url("glyphs/woff2/d32f8a26.woff2") format("woff2"), url("glyphs/woff/d32f8a26.woff") format("woff"), url("glyphs/ttf/d32f8a26.ttf") format("truetype"); unicode-range: U+E148; } @font-face { font-family: "xp"; src: url("glyphs/woff2/dbdc4b76.woff2") format("woff2"), url("glyphs/woff/dbdc4b76.woff") format("woff"), url("glyphs/ttf/dbdc4b76.ttf") format("truetype"); unicode-range: U+E149; } @font-face { font-family: "exy"; src: url("glyphs/woff2/db17d1b4.woff2") format("woff2"), url("glyphs/woff/db17d1b4.woff") format("woff"), url("glyphs/ttf/db17d1b4.ttf") format("truetype"); unicode-range: U+E14A; } @font-face { font-family: "fct"; src: url("glyphs/woff2/7c28d0b9.woff2") format("woff2"), url("glyphs/woff/7c28d0b9.woff") format("woff"), url("glyphs/ttf/7c28d0b9.ttf") format("truetype"); unicode-range: U+E14B; } @font-face { font-family: "fair"; src: url("glyphs/woff2/2c977e31.woff2") format("woff2"), url("glyphs/woff/2c977e31.woff") format("woff"), url("glyphs/ttf/2c977e31.ttf") format("truetype"); unicode-range: U+E14C; } @font-face { font-family: "ftc"; src: url("glyphs/woff2/1ea52dfd.woff2") format("woff2"), url("glyphs/woff/1ea52dfd.woff") format("woff"), url("glyphs/ttf/1ea52dfd.ttf") format("truetype"); unicode-range: U+E14D; } @font-face { font-family: "fedex"; src: url("glyphs/woff2/f6a67776.woff2") format("woff2"), url("glyphs/woff/f6a67776.woff") format("woff"), url("glyphs/ttf/f6a67776.ttf") format("truetype"); unicode-range: U+E14E; } @font-face { font-family: "fil"; src: url("glyphs/woff2/9518b144.woff2") format("woff2"), url("glyphs/woff/9518b144.woff") format("woff"), url("glyphs/ttf/9518b144.ttf") format("truetype"); unicode-range: U+E14F; } @font-face { font-family: "fi"; src: url("glyphs/woff2/12c373f3.woff2") format("woff2"), url("glyphs/woff/12c373f3.woff") format("woff"), url("glyphs/ttf/12c373f3.ttf") format("truetype"); unicode-range: U+E150; } @font-face { font-family: "1st"; src: url("glyphs/woff2/51a9fa09.woff2") format("woff2"), url("glyphs/woff/51a9fa09.woff") format("woff"), url("glyphs/ttf/51a9fa09.ttf") format("truetype"); unicode-range: U+E151; } @font-face { font-family: "fash"; src: url("glyphs/woff2/7824402e.woff2") format("woff2"), url("glyphs/woff/7824402e.woff") format("woff"), url("glyphs/ttf/7824402e.ttf") format("truetype"); unicode-range: U+E152; } @font-face { font-family: "flattr"; src: url("glyphs/woff2/c7e8635b.woff2") format("woff2"), url("glyphs/woff/c7e8635b.woff") format("woff"), url("glyphs/ttf/c7e8635b.ttf") format("truetype"); unicode-range: U+E153; } @font-face { font-family: "flo"; src: url("glyphs/woff2/b524a1f5.woff2") format("woff2"), url("glyphs/woff/b524a1f5.woff") format("woff"), url("glyphs/ttf/b524a1f5.ttf") format("truetype"); unicode-range: U+E154; } @font-face { font-family: "fluz"; src: url("glyphs/woff2/f2a75c7f.woff2") format("woff2"), url("glyphs/woff/f2a75c7f.woff") format("woff"), url("glyphs/ttf/f2a75c7f.ttf") format("truetype"); unicode-range: U+E155; } @font-face { font-family: "frk"; src: url("glyphs/woff2/b3df67d1.woff2") format("woff2"), url("glyphs/woff/b3df67d1.woff") format("woff"), url("glyphs/ttf/b3df67d1.ttf") format("truetype"); unicode-range: U+E156; } @font-face { font-family: "fc2"; src: url("glyphs/woff2/c9b5076d.woff2") format("woff2"), url("glyphs/woff/c9b5076d.woff") format("woff"), url("glyphs/ttf/c9b5076d.ttf") format("truetype"); unicode-range: U+E157; } @font-face { font-family: "fun"; src: url("glyphs/woff2/1b180f14.woff2") format("woff2"), url("glyphs/woff/1b180f14.woff") format("woff"), url("glyphs/ttf/1b180f14.ttf") format("truetype"); unicode-range: U+E158; } @font-face { font-family: "fsn"; src: url("glyphs/woff2/6b36c863.woff2") format("woff2"), url("glyphs/woff/6b36c863.woff") format("woff"), url("glyphs/ttf/6b36c863.ttf") format("truetype"); unicode-range: U+E159; } @font-face { font-family: "gas"; src: url("glyphs/woff2/09b0664c.woff2") format("woff2"), url("glyphs/woff/09b0664c.woff") format("woff"), url("glyphs/ttf/09b0664c.ttf") format("truetype"); unicode-range: U+E15A; } @font-face { font-family: "gdax"; src: url("glyphs/woff2/d0f7d102.woff2") format("woff2"), url("glyphs/woff/d0f7d102.woff") format("woff"), url("glyphs/ttf/d0f7d102.ttf") format("truetype"); unicode-range: U+E15B; } @font-face { font-family: "get"; src: url("glyphs/woff2/aa6c0f8a.woff2") format("woff2"), url("glyphs/woff/aa6c0f8a.woff") format("woff"), url("glyphs/ttf/aa6c0f8a.ttf") format("truetype"); unicode-range: U+E15C; } @font-face { font-family: "gxs"; src: url("glyphs/woff2/dcfebe0e.woff2") format("woff2"), url("glyphs/woff/dcfebe0e.woff") format("woff"), url("glyphs/ttf/dcfebe0e.ttf") format("truetype"); unicode-range: U+E15D; } @font-face { font-family: "gxs"; src: url("glyphs/woff2/12d9f10f.woff2") format("woff2"), url("glyphs/woff/12d9f10f.woff") format("woff"), url("glyphs/ttf/12d9f10f.ttf") format("truetype"); unicode-range: U+E15E; } @font-face { font-family: "game"; src: url("glyphs/woff2/f076afbd.woff2") format("woff2"), url("glyphs/woff/f076afbd.woff") format("woff"), url("glyphs/ttf/f076afbd.ttf") format("truetype"); unicode-range: U+E15F; } @font-face { font-family: "gategoin"; src: url("glyphs/woff2/9a9a307d.woff2") format("woff2"), url("glyphs/woff/9a9a307d.woff") format("woff"), url("glyphs/ttf/9a9a307d.ttf") format("truetype"); unicode-range: U+E160; } @font-face { font-family: "gateio"; src: url("glyphs/woff2/eccf06e9.woff2") format("woff2"), url("glyphs/woff/eccf06e9.woff") format("woff"), url("glyphs/ttf/eccf06e9.ttf") format("truetype"); unicode-range: U+E161; } @font-face { font-family: "gemini"; src: url("glyphs/woff2/ab5759c1.woff2") format("woff2"), url("glyphs/woff/ab5759c1.woff") format("woff"), url("glyphs/ttf/ab5759c1.ttf") format("truetype"); unicode-range: U+E162; } @font-face { font-family: "gem"; src: url("glyphs/woff2/896bcc00.woff2") format("woff2"), url("glyphs/woff/896bcc00.woff") format("woff"), url("glyphs/ttf/896bcc00.ttf") format("truetype"); unicode-range: U+E163; } @font-face { font-family: "gvt"; src: url("glyphs/woff2/d662c711.woff2") format("woff2"), url("glyphs/woff/d662c711.woff") format("woff"), url("glyphs/ttf/d662c711.ttf") format("truetype"); unicode-range: U+E164; } @font-face { font-family: "gemz"; src: url("glyphs/woff2/72bccb9e.woff2") format("woff2"), url("glyphs/woff/72bccb9e.woff") format("woff"), url("glyphs/ttf/72bccb9e.ttf") format("truetype"); unicode-range: U+E165; } @font-face { font-family: "gto"; src: url("glyphs/woff2/65ed8428.woff2") format("woff2"), url("glyphs/woff/65ed8428.woff") format("woff"), url("glyphs/ttf/65ed8428.ttf") format("truetype"); unicode-range: U+E166; } @font-face { font-family: "gla"; src: url("glyphs/woff2/8cd085fd.woff2") format("woff2"), url("glyphs/woff/8cd085fd.woff") format("woff"), url("glyphs/ttf/8cd085fd.ttf") format("truetype"); unicode-range: U+E167; } @font-face { font-family: "gjc"; src: url("glyphs/woff2/9554c428.woff2") format("woff2"), url("glyphs/woff/9554c428.woff") format("woff"), url("glyphs/ttf/9554c428.ttf") format("truetype"); unicode-range: U+E168; } @font-face { font-family: "gno"; src: url("glyphs/woff2/61e4ec60.woff2") format("woff2"), url("glyphs/woff/61e4ec60.woff") format("woff"), url("glyphs/ttf/61e4ec60.ttf") format("truetype"); unicode-range: U+E169; } @font-face { font-family: "gld"; src: url("glyphs/woff2/9850be29.woff2") format("woff2"), url("glyphs/woff/9850be29.woff") format("woff"), url("glyphs/ttf/9850be29.ttf") format("truetype"); unicode-range: U+E16A; } @font-face { font-family: "gmnt"; src: url("glyphs/woff2/c67e4554.woff2") format("woff2"), url("glyphs/woff/c67e4554.woff") format("woff"), url("glyphs/ttf/c67e4554.ttf") format("truetype"); unicode-range: U+E16B; } @font-face { font-family: "gnt"; src: url("glyphs/woff2/52b1caf8.woff2") format("woff2"), url("glyphs/woff/52b1caf8.woff") format("woff"), url("glyphs/ttf/52b1caf8.ttf") format("truetype"); unicode-range: U+E16C; } @font-face { font-family: "golos"; src: url("glyphs/woff2/ac2048ca.woff2") format("woff2"), url("glyphs/woff/ac2048ca.woff") format("woff"), url("glyphs/ttf/ac2048ca.ttf") format("truetype"); unicode-range: U+E16D; } @font-face { font-family: "googlewallet"; src: url("glyphs/woff2/9393e70c.woff2") format("woff2"), url("glyphs/woff/9393e70c.woff") format("woff"), url("glyphs/ttf/9393e70c.ttf") format("truetype"); unicode-range: U+E16E; } @font-face { font-family: "gdc"; src: url("glyphs/woff2/f99464f4.woff2") format("woff2"), url("glyphs/woff/f99464f4.woff") format("woff"), url("glyphs/ttf/f99464f4.ttf") format("truetype"); unicode-range: U+E16F; } @font-face { font-family: "grmd"; src: url("glyphs/woff2/99b23887.woff2") format("woff2"), url("glyphs/woff/99b23887.woff") format("woff"), url("glyphs/ttf/99b23887.ttf") format("truetype"); unicode-range: U+E170; } @font-face { font-family: "grid"; src: url("glyphs/woff2/57c37525.woff2") format("woff2"), url("glyphs/woff/57c37525.woff") format("woff"), url("glyphs/ttf/57c37525.ttf") format("truetype"); unicode-range: U+E171; } @font-face { font-family: "grc"; src: url("glyphs/woff2/b853b110.woff2") format("woff2"), url("glyphs/woff/b853b110.woff") format("woff"), url("glyphs/ttf/b853b110.ttf") format("truetype"); unicode-range: U+E172; } @font-face { font-family: "grs"; src: url("glyphs/woff2/0cf3a20b.woff2") format("woff2"), url("glyphs/woff/0cf3a20b.woff") format("woff"), url("glyphs/ttf/0cf3a20b.ttf") format("truetype"); unicode-range: U+E173; } @font-face { font-family: "efl"; src: url("glyphs/woff2/b295da08.woff2") format("woff2"), url("glyphs/woff/b295da08.woff") format("woff"), url("glyphs/ttf/b295da08.ttf") format("truetype"); unicode-range: U+E174; } @font-face { font-family: "nlg"; src: url("glyphs/woff2/842ec06d.woff2") format("woff2"), url("glyphs/woff/842ec06d.woff") format("woff"), url("glyphs/ttf/842ec06d.ttf") format("truetype"); unicode-range: U+E175; } @font-face { font-family: "guppy"; src: url("glyphs/woff2/c7a8c9c1.woff2") format("woff2"), url("glyphs/woff/c7a8c9c1.woff") format("woff"), url("glyphs/ttf/c7a8c9c1.ttf") format("truetype"); unicode-range: U+E176; } @font-face { font-family: "heat"; src: url("glyphs/woff2/9046047a.woff2") format("woff2"), url("glyphs/woff/9046047a.woff") format("woff"), url("glyphs/ttf/9046047a.ttf") format("truetype"); unicode-range: U+E177; } @font-face { font-family: "hkn"; src: url("glyphs/woff2/7ee937ee.woff2") format("woff2"), url("glyphs/woff/7ee937ee.woff") format("woff"), url("glyphs/ttf/7ee937ee.ttf") format("truetype"); unicode-range: U+E178; } @font-face { font-family: "hac"; src: url("glyphs/woff2/d8f20bf0.woff2") format("woff2"), url("glyphs/woff/d8f20bf0.woff") format("woff"), url("glyphs/ttf/d8f20bf0.ttf") format("truetype"); unicode-range: U+E179; } @font-face { font-family: "hlc"; src: url("glyphs/woff2/fc061854.woff2") format("woff2"), url("glyphs/woff/fc061854.woff") format("woff"), url("glyphs/ttf/fc061854.ttf") format("truetype"); unicode-range: U+E17A; } @font-face { font-family: "hvv"; src: url("glyphs/woff2/e7c8de5d.woff2") format("woff2"), url("glyphs/woff/e7c8de5d.woff") format("woff"), url("glyphs/ttf/e7c8de5d.ttf") format("truetype"); unicode-range: U+E17B; } @font-face { font-family: "hdg"; src: url("glyphs/woff2/47413c16.woff2") format("woff2"), url("glyphs/woff/47413c16.woff") format("woff"), url("glyphs/ttf/47413c16.ttf") format("truetype"); unicode-range: U+E17C; } @font-face { font-family: "hgt"; src: url("glyphs/woff2/9f3909aa.woff2") format("woff2"), url("glyphs/woff/9f3909aa.woff") format("woff"), url("glyphs/ttf/9f3909aa.ttf") format("truetype"); unicode-range: U+E17D; } @font-face { font-family: "thc"; src: url("glyphs/woff2/1a7bcf02.woff2") format("woff2"), url("glyphs/woff/1a7bcf02.woff") format("woff"), url("glyphs/ttf/1a7bcf02.ttf") format("truetype"); unicode-range: U+E17E; } @font-face { font-family: "hermes"; src: url("glyphs/woff2/315c66f8.woff2") format("woff2"), url("glyphs/woff/315c66f8.woff") format("woff"), url("glyphs/ttf/315c66f8.ttf") format("truetype"); unicode-range: U+E17F; } @font-face { font-family: "hmc"; src: url("glyphs/woff2/cdb6b693.woff2") format("woff2"), url("glyphs/woff/cdb6b693.woff") format("woff"), url("glyphs/ttf/cdb6b693.ttf") format("truetype"); unicode-range: U+E180; } @font-face { font-family: "hpb"; src: url("glyphs/woff2/25eb254d.woff2") format("woff2"), url("glyphs/woff/25eb254d.woff") format("woff"), url("glyphs/ttf/25eb254d.ttf") format("truetype"); unicode-range: U+E181; } @font-face { font-family: "hitbtc"; src: url("glyphs/woff2/9a7fb4ed.woff2") format("woff2"), url("glyphs/woff/9a7fb4ed.woff") format("woff"), url("glyphs/ttf/9a7fb4ed.ttf") format("truetype"); unicode-range: U+E182; } @font-face { font-family: "hvn"; src: url("glyphs/woff2/3d32bff5.woff2") format("woff2"), url("glyphs/woff/3d32bff5.woff") format("woff"), url("glyphs/ttf/3d32bff5.ttf") format("truetype"); unicode-range: U+E183; } @font-face { font-family: "hsr"; src: url("glyphs/woff2/e18256ba.woff2") format("woff2"), url("glyphs/woff/e18256ba.woff") format("woff"), url("glyphs/ttf/e18256ba.ttf") format("truetype"); unicode-range: U+E184; } @font-face { font-family: "hmq"; src: url("glyphs/woff2/be153f92.woff2") format("woff2"), url("glyphs/woff/be153f92.woff") format("woff"), url("glyphs/ttf/be153f92.ttf") format("truetype"); unicode-range: U+E185; } @font-face { font-family: "huobi"; src: url("glyphs/woff2/252bbda4.woff2") format("woff2"), url("glyphs/woff/252bbda4.woff") format("woff"), url("glyphs/ttf/252bbda4.ttf") format("truetype"); unicode-range: U+E186; } @font-face { font-family: "tk"; src: url("glyphs/woff2/34833f66.woff2") format("woff2"), url("glyphs/woff/34833f66.woff") format("woff"), url("glyphs/ttf/34833f66.ttf") format("truetype"); unicode-range: U+E187; } @font-face { font-family: "hush"; src: url("glyphs/woff2/a851f472.woff2") format("woff2"), url("glyphs/woff/a851f472.woff") format("woff"), url("glyphs/ttf/a851f472.ttf") format("truetype"); unicode-range: U+E188; } @font-face { font-family: "icx"; src: url("glyphs/woff2/781792ac.woff2") format("woff2"), url("glyphs/woff/781792ac.woff") format("woff"), url("glyphs/ttf/781792ac.ttf") format("truetype"); unicode-range: U+E189; } @font-face { font-family: "idex"; src: url("glyphs/woff2/090f780c.woff2") format("woff2"), url("glyphs/woff/090f780c.woff") format("woff"), url("glyphs/ttf/090f780c.ttf") format("truetype"); unicode-range: U+E18A; } @font-face { font-family: "iht"; src: url("glyphs/woff2/c206b69c.woff2") format("woff2"), url("glyphs/woff/c206b69c.woff") format("woff"), url("glyphs/ttf/c206b69c.ttf") format("truetype"); unicode-range: U+E18B; } @font-face { font-family: "ingb"; src: url("glyphs/woff2/bfff0e1f.woff2") format("woff2"), url("glyphs/woff/bfff0e1f.woff") format("woff"), url("glyphs/ttf/bfff0e1f.ttf") format("truetype"); unicode-range: U+E18C; } @font-face { font-family: "ins"; src: url("glyphs/woff2/ccc16298.woff2") format("woff2"), url("glyphs/woff/ccc16298.woff") format("woff"), url("glyphs/ttf/ccc16298.ttf") format("truetype"); unicode-range: U+E18D; } @font-face { font-family: "ioc"; src: url("glyphs/woff2/a1fbcdf7.woff2") format("woff2"), url("glyphs/woff/a1fbcdf7.woff") format("woff"), url("glyphs/ttf/a1fbcdf7.ttf") format("truetype"); unicode-range: U+E18E; } @font-face { font-family: "ion"; src: url("glyphs/woff2/d2c72c19.woff2") format("woff2"), url("glyphs/woff/d2c72c19.woff") format("woff"), url("glyphs/ttf/d2c72c19.ttf") format("truetype"); unicode-range: U+E18F; } @font-face { font-family: "iost"; src: url("glyphs/woff2/288dafa6.woff2") format("woff2"), url("glyphs/woff/288dafa6.woff") format("woff"), url("glyphs/ttf/288dafa6.ttf") format("truetype"); unicode-range: U+E190; } @font-face { font-family: "iotaeco"; src: url("glyphs/woff2/e2f6544b.woff2") format("woff2"), url("glyphs/woff/e2f6544b.woff") format("woff"), url("glyphs/ttf/e2f6544b.ttf") format("truetype"); unicode-range: U+E191; } @font-face { font-family: "miota"; src: url("glyphs/woff2/12cd5e20.woff2") format("woff2"), url("glyphs/woff/12cd5e20.woff") format("woff"), url("glyphs/ttf/12cd5e20.ttf") format("truetype"); unicode-range: U+E192; } @font-face { font-family: "ipsx"; src: url("glyphs/woff2/c3f23f1d.woff2") format("woff2"), url("glyphs/woff/c3f23f1d.woff") format("woff"), url("glyphs/ttf/c3f23f1d.ttf") format("truetype"); unicode-range: U+E193; } @font-face { font-family: "icn"; src: url("glyphs/woff2/e6b4aab7.woff2") format("woff2"), url("glyphs/woff/e6b4aab7.woff") format("woff"), url("glyphs/ttf/e6b4aab7.ttf") format("truetype"); unicode-range: U+E194; } @font-face { font-family: "ignis"; src: url("glyphs/woff2/46a505fd.woff2") format("woff2"), url("glyphs/woff/46a505fd.woff") format("woff"), url("glyphs/ttf/46a505fd.ttf") format("truetype"); unicode-range: U+E195; } @font-face { font-family: "incnt"; src: url("glyphs/woff2/dc1b7673.woff2") format("woff2"), url("glyphs/woff/dc1b7673.woff") format("woff"), url("glyphs/ttf/dc1b7673.ttf") format("truetype"); unicode-range: U+E196; } @font-face { font-family: "idh"; src: url("glyphs/woff2/08e9330e.woff2") format("woff2"), url("glyphs/woff/08e9330e.woff") format("woff"), url("glyphs/ttf/08e9330e.ttf") format("truetype"); unicode-range: U+E197; } @font-face { font-family: "inr"; src: url("glyphs/woff2/cf2a0a85.woff2") format("woff2"), url("glyphs/woff/cf2a0a85.woff") format("woff"), url("glyphs/ttf/cf2a0a85.ttf") format("truetype"); unicode-range: U+E198; } @font-face { font-family: "indi"; src: url("glyphs/woff2/172e6f01.woff2") format("woff2"), url("glyphs/woff/172e6f01.woff") format("woff"), url("glyphs/ttf/172e6f01.ttf") format("truetype"); unicode-range: U+E199; } @font-face { font-family: "ifc"; src: url("glyphs/woff2/21619e9c.woff2") format("woff2"), url("glyphs/woff/21619e9c.woff") format("woff"), url("glyphs/ttf/21619e9c.ttf") format("truetype"); unicode-range: U+E19A; } @font-face { font-family: "ink"; src: url("glyphs/woff2/94c87c19.woff2") format("woff2"), url("glyphs/woff/94c87c19.woff") format("woff"), url("glyphs/ttf/94c87c19.ttf") format("truetype"); unicode-range: U+E19B; } @font-face { font-family: "xnk"; src: url("glyphs/woff2/e7803979.woff2") format("woff2"), url("glyphs/woff/e7803979.woff") format("woff"), url("glyphs/ttf/e7803979.ttf") format("truetype"); unicode-range: U+E19C; } @font-face { font-family: "inn"; src: url("glyphs/woff2/83bd70cd.woff2") format("woff2"), url("glyphs/woff/83bd70cd.woff") format("woff"), url("glyphs/ttf/83bd70cd.ttf") format("truetype"); unicode-range: U+E19D; } @font-face { font-family: "ipl"; src: url("glyphs/woff2/2489d00d.woff2") format("woff2"), url("glyphs/woff/2489d00d.woff") format("woff"), url("glyphs/ttf/2489d00d.ttf") format("truetype"); unicode-range: U+E19E; } @font-face { font-family: "int"; src: url("glyphs/woff2/d4fffa4b.woff2") format("woff2"), url("glyphs/woff/d4fffa4b.woff") format("woff"), url("glyphs/ttf/d4fffa4b.ttf") format("truetype"); unicode-range: U+E19F; } @font-face { font-family: "ipbc"; src: url("glyphs/woff2/36a3295a.woff2") format("woff2"), url("glyphs/woff/36a3295a.woff") format("woff"), url("glyphs/ttf/36a3295a.ttf") format("truetype"); unicode-range: U+E1A0; } @font-face { font-family: "ift"; src: url("glyphs/woff2/50b342a2.woff2") format("woff2"), url("glyphs/woff/50b342a2.woff") format("woff"), url("glyphs/ttf/50b342a2.ttf") format("truetype"); unicode-range: U+E1A1; } @font-face { font-family: "itc"; src: url("glyphs/woff2/4af4ef28.woff2") format("woff2"), url("glyphs/woff/4af4ef28.woff") format("woff"), url("glyphs/ttf/4af4ef28.ttf") format("truetype"); unicode-range: U+E1A2; } @font-face { font-family: "ing"; src: url("glyphs/woff2/ba711105.woff2") format("woff2"), url("glyphs/woff/ba711105.woff") format("woff"), url("glyphs/ttf/ba711105.ttf") format("truetype"); unicode-range: U+E1A3; } @font-face { font-family: "jcb"; src: url("glyphs/woff2/2d027c9d.woff2") format("woff2"), url("glyphs/woff/2d027c9d.woff") format("woff"), url("glyphs/ttf/2d027c9d.ttf") format("truetype"); unicode-range: U+E1A4; } @font-face { font-family: "j8t"; src: url("glyphs/woff2/70a458c9.woff2") format("woff2"), url("glyphs/woff/70a458c9.woff") format("woff"), url("glyphs/ttf/70a458c9.ttf") format("truetype"); unicode-range: U+E1A5; } @font-face { font-family: "js"; src: url("glyphs/woff2/3b7180f4.woff2") format("woff2"), url("glyphs/woff/3b7180f4.woff") format("woff"), url("glyphs/ttf/3b7180f4.ttf") format("truetype"); unicode-range: U+E1A6; } @font-face { font-family: "jpy"; src: url("glyphs/woff2/bb6c3f4f.woff2") format("woff2"), url("glyphs/woff/bb6c3f4f.woff") format("woff"), url("glyphs/ttf/bb6c3f4f.ttf") format("truetype"); unicode-range: U+E1A7; } @font-face { font-family: "jc"; src: url("glyphs/woff2/e3d7c442.woff2") format("woff2"), url("glyphs/woff/e3d7c442.woff") format("woff"), url("glyphs/ttf/e3d7c442.ttf") format("truetype"); unicode-range: U+E1A8; } @font-face { font-family: "jet"; src: url("glyphs/woff2/0a4097e4.woff2") format("woff2"), url("glyphs/woff/0a4097e4.woff") format("woff"), url("glyphs/ttf/0a4097e4.ttf") format("truetype"); unicode-range: U+E1A9; } @font-face { font-family: "jnt"; src: url("glyphs/woff2/8796b453.woff2") format("woff2"), url("glyphs/woff/8796b453.woff") format("woff"), url("glyphs/ttf/8796b453.ttf") format("truetype"); unicode-range: U+E1AA; } @font-face { font-family: "jcr"; src: url("glyphs/woff2/ac9383e4.woff2") format("woff2"), url("glyphs/woff/ac9383e4.woff") format("woff"), url("glyphs/ttf/ac9383e4.ttf") format("truetype"); unicode-range: U+E1AB; } @font-face { font-family: "jbs"; src: url("glyphs/woff2/c9480f66.woff2") format("woff2"), url("glyphs/woff/c9480f66.woff") format("woff"), url("glyphs/ttf/c9480f66.ttf") format("truetype"); unicode-range: U+E1AC; } @font-face { font-family: "kick"; src: url("glyphs/woff2/d0cecf4f.woff2") format("woff2"), url("glyphs/woff/d0cecf4f.woff") format("woff"), url("glyphs/ttf/d0cecf4f.ttf") format("truetype"); unicode-range: U+E1AD; } @font-face { font-family: "kin"; src: url("glyphs/woff2/1d31d67a.woff2") format("woff2"), url("glyphs/woff/1d31d67a.woff") format("woff"), url("glyphs/ttf/1d31d67a.ttf") format("truetype"); unicode-range: U+E1AE; } @font-face { font-family: "klarna"; src: url("glyphs/woff2/8f3601cc.woff2") format("woff2"), url("glyphs/woff/8f3601cc.woff") format("woff"), url("glyphs/ttf/8f3601cc.ttf") format("truetype"); unicode-range: U+E1AF; } @font-face { font-family: "kobo"; src: url("glyphs/woff2/c67c215e.woff2") format("woff2"), url("glyphs/woff/c67c215e.woff") format("woff"), url("glyphs/ttf/c67c215e.ttf") format("truetype"); unicode-range: U+E1B0; } @font-face { font-family: "kmd"; src: url("glyphs/woff2/b1eba251.woff2") format("woff2"), url("glyphs/woff/b1eba251.woff") format("woff"), url("glyphs/ttf/b1eba251.ttf") format("truetype"); unicode-range: U+E1B1; } @font-face { font-family: "korbit"; src: url("glyphs/woff2/efc8654c.woff2") format("woff2"), url("glyphs/woff/efc8654c.woff") format("woff"), url("glyphs/ttf/efc8654c.ttf") format("truetype"); unicode-range: U+E1B2; } @font-face { font-family: "kore"; src: url("glyphs/woff2/38dcac7f.woff2") format("woff2"), url("glyphs/woff/38dcac7f.woff") format("woff"), url("glyphs/ttf/38dcac7f.ttf") format("truetype"); unicode-range: U+E1B3; } @font-face { font-family: "kraken"; src: url("glyphs/woff2/5b78e2cb.woff2") format("woff2"), url("glyphs/woff/5b78e2cb.woff") format("woff"), url("glyphs/ttf/5b78e2cb.ttf") format("truetype"); unicode-range: U+E1B4; } @font-face { font-family: "kucoin"; src: url("glyphs/woff2/cfa9655f.woff2") format("woff2"), url("glyphs/woff/cfa9655f.woff") format("woff"), url("glyphs/ttf/cfa9655f.ttf") format("truetype"); unicode-range: U+E1B5; } @font-face { font-family: "kcs"; src: url("glyphs/woff2/97b82bce.woff2") format("woff2"), url("glyphs/woff/97b82bce.woff") format("woff"), url("glyphs/ttf/97b82bce.ttf") format("truetype"); unicode-range: U+E1B6; } @font-face { font-family: "knc"; src: url("glyphs/woff2/75577460.woff2") format("woff2"), url("glyphs/woff/75577460.woff") format("woff"), url("glyphs/ttf/75577460.ttf") format("truetype"); unicode-range: U+E1B7; } @font-face { font-family: "la"; src: url("glyphs/woff2/70d68f2f.woff2") format("woff2"), url("glyphs/woff/70d68f2f.woff") format("woff"), url("glyphs/ttf/70d68f2f.ttf") format("truetype"); unicode-range: U+E1B8; } @font-face { font-family: "lbc"; src: url("glyphs/woff2/61d34932.woff2") format("woff2"), url("glyphs/woff/61d34932.woff") format("woff"), url("glyphs/ttf/61d34932.ttf") format("truetype"); unicode-range: U+E1B9; } @font-face { font-family: "leo"; src: url("glyphs/woff2/da8ef2eb.woff2") format("woff2"), url("glyphs/woff/da8ef2eb.woff") format("woff"), url("glyphs/ttf/da8ef2eb.ttf") format("truetype"); unicode-range: U+E1BA; } @font-face { font-family: "life"; src: url("glyphs/woff2/ac31ca34.woff2") format("woff2"), url("glyphs/woff/ac31ca34.woff") format("woff"), url("glyphs/ttf/ac31ca34.ttf") format("truetype"); unicode-range: U+E1BB; } @font-face { font-family: "loci"; src: url("glyphs/woff2/bb074b56.woff2") format("woff2"), url("glyphs/woff/bb074b56.woff") format("woff"), url("glyphs/ttf/bb074b56.ttf") format("truetype"); unicode-range: U+E1BC; } @font-face { font-family: "lux"; src: url("glyphs/woff2/c9b3ada5.woff2") format("woff2"), url("glyphs/woff/c9b3ada5.woff") format("woff"), url("glyphs/ttf/c9b3ada5.ttf") format("truetype"); unicode-range: U+E1BD; } @font-face { font-family: "laposte"; src: url("glyphs/woff2/5330b47e.woff2") format("woff2"), url("glyphs/woff/5330b47e.woff") format("woff"), url("glyphs/ttf/5330b47e.ttf") format("truetype"); unicode-range: U+E1BE; } @font-face { font-family: "lala"; src: url("glyphs/woff2/8d40bc1f.woff2") format("woff2"), url("glyphs/woff/8d40bc1f.woff") format("woff"), url("glyphs/ttf/8d40bc1f.ttf") format("truetype"); unicode-range: U+E1BF; } @font-face { font-family: "lakebtc"; src: url("glyphs/woff2/3eed650c.woff2") format("woff2"), url("glyphs/woff/3eed650c.woff") format("woff"), url("glyphs/ttf/3eed650c.ttf") format("truetype"); unicode-range: U+E1C0; } @font-face { font-family: "tau"; src: url("glyphs/woff2/e8acadad.woff2") format("woff2"), url("glyphs/woff/e8acadad.woff") format("woff"), url("glyphs/ttf/e8acadad.ttf") format("truetype"); unicode-range: U+E1C1; } @font-face { font-family: "ldc"; src: url("glyphs/woff2/db92c609.woff2") format("woff2"), url("glyphs/woff/db92c609.woff") format("woff"), url("glyphs/ttf/db92c609.ttf") format("truetype"); unicode-range: U+E1C2; } @font-face { font-family: "ledger"; src: url("glyphs/woff2/4129e2ed.woff2") format("woff2"), url("glyphs/woff/4129e2ed.woff") format("woff"), url("glyphs/ttf/4129e2ed.ttf") format("truetype"); unicode-range: U+E1C3; } @font-face { font-family: "lst"; src: url("glyphs/woff2/eb2a76c7.woff2") format("woff2"), url("glyphs/woff/eb2a76c7.woff") format("woff"), url("glyphs/ttf/eb2a76c7.ttf") format("truetype"); unicode-range: U+E1C4; } @font-face { font-family: "lev"; src: url("glyphs/woff2/854811f2.woff2") format("woff2"), url("glyphs/woff/854811f2.woff") format("woff"), url("glyphs/ttf/854811f2.ttf") format("truetype"); unicode-range: U+E1C5; } @font-face { font-family: "linda"; src: url("glyphs/woff2/d289b887.woff2") format("woff2"), url("glyphs/woff/d289b887.woff") format("woff"), url("glyphs/ttf/d289b887.ttf") format("truetype"); unicode-range: U+E1C6; } @font-face { font-family: "linx"; src: url("glyphs/woff2/462ea6a3.woff2") format("woff2"), url("glyphs/woff/462ea6a3.woff") format("woff"), url("glyphs/ttf/462ea6a3.ttf") format("truetype"); unicode-range: U+E1C7; } @font-face { font-family: "liqui"; src: url("glyphs/woff2/52d65af9.woff2") format("woff2"), url("glyphs/woff/52d65af9.woff") format("woff"), url("glyphs/ttf/52d65af9.ttf") format("truetype"); unicode-range: U+E1C8; } @font-face { font-family: "lsk"; src: url("glyphs/woff2/8827eb24.woff2") format("woff2"), url("glyphs/woff/8827eb24.woff") format("woff"), url("glyphs/ttf/8827eb24.ttf") format("truetype"); unicode-range: U+E1C9; } @font-face { font-family: "ldoge"; src: url("glyphs/woff2/d615451a.woff2") format("woff2"), url("glyphs/woff/d615451a.woff") format("woff"), url("glyphs/ttf/d615451a.ttf") format("truetype"); unicode-range: U+E1CA; } @font-face { font-family: "lcc"; src: url("glyphs/woff2/e3ae4d2d.woff2") format("woff2"), url("glyphs/woff/e3ae4d2d.woff") format("woff"), url("glyphs/ttf/e3ae4d2d.ttf") format("truetype"); unicode-range: U+E1CB; } @font-face { font-family: "ltc"; src: url("glyphs/woff2/3fc14a91.woff2") format("woff2"), url("glyphs/woff/3fc14a91.woff") format("woff"), url("glyphs/ttf/3fc14a91.ttf") format("truetype"); unicode-range: U+E1CC; } @font-face { font-family: "livecoin"; src: url("glyphs/woff2/64bbaa0b.woff2") format("woff2"), url("glyphs/woff/64bbaa0b.woff") format("woff"), url("glyphs/ttf/64bbaa0b.ttf") format("truetype"); unicode-range: U+E1CD; } @font-face { font-family: "llb"; src: url("glyphs/woff2/63d16b50.woff2") format("woff2"), url("glyphs/woff/63d16b50.woff") format("woff"), url("glyphs/ttf/63d16b50.ttf") format("truetype"); unicode-range: U+E1CE; } @font-face { font-family: "lol"; src: url("glyphs/woff2/6a54a1a9.woff2") format("woff2"), url("glyphs/woff/6a54a1a9.woff") format("woff"), url("glyphs/ttf/6a54a1a9.ttf") format("truetype"); unicode-range: U+E1CF; } @font-face { font-family: "localbitcoins"; src: url("glyphs/woff2/80629e16.woff2") format("woff2"), url("glyphs/woff/80629e16.woff") format("woff"), url("glyphs/ttf/80629e16.ttf") format("truetype"); unicode-range: U+E1D0; } @font-face { font-family: "loom"; src: url("glyphs/woff2/e036f61e.woff2") format("woff2"), url("glyphs/woff/e036f61e.woff") format("woff"), url("glyphs/ttf/e036f61e.ttf") format("truetype"); unicode-range: U+E1D1; } @font-face { font-family: "lrc"; src: url("glyphs/woff2/02255308.woff2") format("woff2"), url("glyphs/woff/02255308.woff") format("woff"), url("glyphs/ttf/02255308.ttf") format("truetype"); unicode-range: U+E1D2; } @font-face { font-family: "lun"; src: url("glyphs/woff2/8c60c66a.woff2") format("woff2"), url("glyphs/woff/8c60c66a.woff") format("woff"), url("glyphs/ttf/8c60c66a.ttf") format("truetype"); unicode-range: U+E1D3; } @font-face { font-family: "lkk"; src: url("glyphs/woff2/aa227416.woff2") format("woff2"), url("glyphs/woff/aa227416.woff") format("woff"), url("glyphs/ttf/aa227416.ttf") format("truetype"); unicode-range: U+E1D4; } @font-face { font-family: "lym"; src: url("glyphs/woff2/de01f078.woff2") format("woff2"), url("glyphs/woff/de01f078.woff") format("woff"), url("glyphs/ttf/de01f078.ttf") format("truetype"); unicode-range: U+E1D5; } @font-face { font-family: "mrk"; src: url("glyphs/woff2/cf248e93.woff2") format("woff2"), url("glyphs/woff/cf248e93.woff") format("woff"), url("glyphs/ttf/cf248e93.ttf") format("truetype"); unicode-range: U+E1D6; } @font-face { font-family: "mcap"; src: url("glyphs/woff2/dbfd39a7.woff2") format("woff2"), url("glyphs/woff/dbfd39a7.woff") format("woff"), url("glyphs/ttf/dbfd39a7.ttf") format("truetype"); unicode-range: U+E1D7; } @font-face { font-family: "mir"; src: url("glyphs/woff2/3f3d19ae.woff2") format("woff2"), url("glyphs/woff/3f3d19ae.woff") format("woff"), url("glyphs/ttf/3f3d19ae.ttf") format("truetype"); unicode-range: U+E1D8; } @font-face { font-family: "moac"; src: url("glyphs/woff2/61b21f65.woff2") format("woff2"), url("glyphs/woff/61b21f65.woff") format("woff"), url("glyphs/ttf/61b21f65.ttf") format("truetype"); unicode-range: U+E1D9; } @font-face { font-family: "msd"; src: url("glyphs/woff2/6c1508be.woff2") format("woff2"), url("glyphs/woff/6c1508be.woff") format("woff"), url("glyphs/ttf/6c1508be.ttf") format("truetype"); unicode-range: U+E1DA; } @font-face { font-family: "muse"; src: url("glyphs/woff2/bebd5dcc.woff2") format("woff2"), url("glyphs/woff/bebd5dcc.woff") format("woff"), url("glyphs/ttf/bebd5dcc.ttf") format("truetype"); unicode-range: U+E1DB; } @font-face { font-family: "maestro"; src: url("glyphs/woff2/9f00be36.woff2") format("woff2"), url("glyphs/woff/9f00be36.woff") format("woff"), url("glyphs/ttf/9f00be36.ttf") format("truetype"); unicode-range: U+E1DC; } @font-face { font-family: "mai"; src: url("glyphs/woff2/5d77f6cd.woff2") format("woff2"), url("glyphs/woff/5d77f6cd.woff") format("woff"), url("glyphs/ttf/5d77f6cd.ttf") format("truetype"); unicode-range: U+E1DD; } @font-face { font-family: "maid"; src: url("glyphs/woff2/9b9375b4.woff2") format("woff2"), url("glyphs/woff/9b9375b4.woff") format("woff"), url("glyphs/ttf/9b9375b4.ttf") format("truetype"); unicode-range: U+E1DE; } @font-face { font-family: "mkr"; src: url("glyphs/woff2/0bcc804b.woff2") format("woff2"), url("glyphs/woff/0bcc804b.woff") format("woff"), url("glyphs/ttf/0bcc804b.ttf") format("truetype"); unicode-range: U+E1DF; } @font-face { font-family: "msc"; src: url("glyphs/woff2/3c678666.woff2") format("woff2"), url("glyphs/woff/3c678666.woff") format("woff"), url("glyphs/ttf/3c678666.ttf") format("truetype"); unicode-range: U+E1E0; } @font-face { font-family: "mastercard"; src: url("glyphs/woff2/7708bdcb.woff2") format("woff2"), url("glyphs/woff/7708bdcb.woff") format("woff"), url("glyphs/ttf/7708bdcb.ttf") format("truetype"); unicode-range: U+E1E1; } @font-face { font-family: "mtr"; src: url("glyphs/woff2/8c7e5269.woff2") format("woff2"), url("glyphs/woff/8c7e5269.woff") format("woff"), url("glyphs/ttf/8c7e5269.ttf") format("truetype"); unicode-range: U+E1E2; } @font-face { font-family: "gup"; src: url("glyphs/woff2/4003be53.woff2") format("woff2"), url("glyphs/woff/4003be53.woff") format("woff"), url("glyphs/ttf/4003be53.ttf") format("truetype"); unicode-range: U+E1E3; } @font-face { font-family: "med"; src: url("glyphs/woff2/935170dd.woff2") format("woff2"), url("glyphs/woff/935170dd.woff") format("woff"), url("glyphs/ttf/935170dd.ttf") format("truetype"); unicode-range: U+E1E4; } @font-face { font-family: "mds"; src: url("glyphs/woff2/700a244d.woff2") format("woff2"), url("glyphs/woff/700a244d.woff") format("woff"), url("glyphs/ttf/700a244d.ttf") format("truetype"); unicode-range: U+E1E5; } @font-face { font-family: "mln"; src: url("glyphs/woff2/a0ecbb18.woff2") format("woff2"), url("glyphs/woff/a0ecbb18.woff") format("woff"), url("glyphs/ttf/a0ecbb18.ttf") format("truetype"); unicode-range: U+E1E6; } @font-face { font-family: "mer"; src: url("glyphs/woff2/c3c3fe75.woff2") format("woff2"), url("glyphs/woff/c3c3fe75.woff") format("woff"), url("glyphs/ttf/c3c3fe75.ttf") format("truetype"); unicode-range: U+E1E7; } @font-face { font-family: "gmt"; src: url("glyphs/woff2/fcf313ef.woff2") format("woff2"), url("glyphs/woff/fcf313ef.woff") format("woff"), url("glyphs/ttf/fcf313ef.ttf") format("truetype"); unicode-range: U+E1E8; } @font-face { font-family: "mtl"; src: url("glyphs/woff2/de978ae9.woff2") format("woff2"), url("glyphs/woff/de978ae9.woff") format("woff"), url("glyphs/ttf/de978ae9.ttf") format("truetype"); unicode-range: U+E1E9; } @font-face { font-family: "etp"; src: url("glyphs/woff2/d269bf57.woff2") format("woff2"), url("glyphs/woff/d269bf57.woff") format("woff"), url("glyphs/ttf/d269bf57.ttf") format("truetype"); unicode-range: U+E1EA; } @font-face { font-family: "met"; src: url("glyphs/woff2/db26cd0b.woff2") format("woff2"), url("glyphs/woff/db26cd0b.woff") format("woff"), url("glyphs/ttf/db26cd0b.ttf") format("truetype"); unicode-range: U+E1EB; } @font-face { font-family: "amm"; src: url("glyphs/woff2/05b616e5.woff2") format("woff2"), url("glyphs/woff/05b616e5.woff") format("woff"), url("glyphs/ttf/05b616e5.ttf") format("truetype"); unicode-range: U+E1EC; } @font-face { font-family: "mnx"; src: url("glyphs/woff2/af7f0a6e.woff2") format("woff2"), url("glyphs/woff/af7f0a6e.woff") format("woff"), url("glyphs/ttf/af7f0a6e.ttf") format("truetype"); unicode-range: U+E1ED; } @font-face { font-family: "mint"; src: url("glyphs/woff2/f03ffe17.woff2") format("woff2"), url("glyphs/woff/f03ffe17.woff") format("woff"), url("glyphs/ttf/f03ffe17.ttf") format("truetype"); unicode-range: U+E1EE; } @font-face { font-family: "mith"; src: url("glyphs/woff2/1e143288.woff2") format("woff2"), url("glyphs/woff/1e143288.woff") format("woff"), url("glyphs/ttf/1e143288.ttf") format("truetype"); unicode-range: U+E1EF; } @font-face { font-family: "xin"; src: url("glyphs/woff2/34d7ab4a.woff2") format("woff2"), url("glyphs/woff/34d7ab4a.woff") format("woff"), url("glyphs/ttf/34d7ab4a.ttf") format("truetype"); unicode-range: U+E1F0; } @font-face { font-family: "mobiamo"; src: url("glyphs/woff2/2ed7bd06.woff2") format("woff2"), url("glyphs/woff/2ed7bd06.woff") format("woff"), url("glyphs/ttf/2ed7bd06.ttf") format("truetype"); unicode-range: U+E1F1; } @font-face { font-family: "mgo"; src: url("glyphs/woff2/dad2106c.woff2") format("woff2"), url("glyphs/woff/dad2106c.woff") format("woff"), url("glyphs/ttf/dad2106c.ttf") format("truetype"); unicode-range: U+E1F2; } @font-face { font-family: "mod"; src: url("glyphs/woff2/f4964839.woff2") format("woff2"), url("glyphs/woff/f4964839.woff") format("woff"), url("glyphs/ttf/f4964839.ttf") format("truetype"); unicode-range: U+E1F3; } @font-face { font-family: "mda"; src: url("glyphs/woff2/7add0458.woff2") format("woff2"), url("glyphs/woff/7add0458.woff") format("woff"), url("glyphs/ttf/7add0458.ttf") format("truetype"); unicode-range: U+E1F4; } @font-face { font-family: "moin"; src: url("glyphs/woff2/cebaa24b.woff2") format("woff2"), url("glyphs/woff/cebaa24b.woff") format("woff"), url("glyphs/ttf/cebaa24b.ttf") format("truetype"); unicode-range: U+E1F5; } @font-face { font-family: "mona"; src: url("glyphs/woff2/09a35da5.woff2") format("woff2"), url("glyphs/woff/09a35da5.woff") format("woff"), url("glyphs/ttf/09a35da5.ttf") format("truetype"); unicode-range: U+E1F6; } @font-face { font-family: "mco"; src: url("glyphs/woff2/f6b8b235.woff2") format("woff2"), url("glyphs/woff/f6b8b235.woff") format("woff"), url("glyphs/ttf/f6b8b235.ttf") format("truetype"); unicode-range: U+E1F7; } @font-face { font-family: "xmr"; src: url("glyphs/woff2/32c69208.woff2") format("woff2"), url("glyphs/woff/32c69208.woff") format("woff"), url("glyphs/ttf/32c69208.ttf") format("truetype"); unicode-range: U+E1F8; } @font-face { font-family: "mue"; src: url("glyphs/woff2/177d0611.woff2") format("woff2"), url("glyphs/woff/177d0611.woff") format("woff"), url("glyphs/ttf/177d0611.ttf") format("truetype"); unicode-range: U+E1F9; } @font-face { font-family: "mth"; src: url("glyphs/woff2/20b835b7.woff2") format("woff2"), url("glyphs/woff/20b835b7.woff") format("woff"), url("glyphs/ttf/20b835b7.ttf") format("truetype"); unicode-range: U+E1FA; } @font-face { font-family: "moon"; src: url("glyphs/woff2/42130fd7.woff2") format("woff2"), url("glyphs/woff/42130fd7.woff") format("woff"), url("glyphs/ttf/42130fd7.ttf") format("truetype"); unicode-range: U+E1FB; } @font-face { font-family: "mitx"; src: url("glyphs/woff2/29ef8c3a.woff2") format("woff2"), url("glyphs/woff/29ef8c3a.woff") format("woff"), url("glyphs/ttf/29ef8c3a.ttf") format("truetype"); unicode-range: U+E1FC; } @font-face { font-family: "msp"; src: url("glyphs/woff2/3069c5e2.woff2") format("woff2"), url("glyphs/woff/3069c5e2.woff") format("woff"), url("glyphs/ttf/3069c5e2.ttf") format("truetype"); unicode-range: U+E1FD; } @font-face { font-family: "myb"; src: url("glyphs/woff2/9d1ecd98.woff2") format("woff2"), url("glyphs/woff/9d1ecd98.woff") format("woff"), url("glyphs/ttf/9d1ecd98.ttf") format("truetype"); unicode-range: U+E1FE; } @font-face { font-family: "xmy"; src: url("glyphs/woff2/048120ba.woff2") format("woff2"), url("glyphs/woff/048120ba.woff") format("woff"), url("glyphs/ttf/048120ba.ttf") format("truetype"); unicode-range: U+E1FF; } @font-face { font-family: "myst"; src: url("glyphs/woff2/ef00237d.woff2") format("woff2"), url("glyphs/woff/ef00237d.woff") format("woff"), url("glyphs/ttf/ef00237d.ttf") format("truetype"); unicode-range: U+E200; } @font-face { font-family: "nanj"; src: url("glyphs/woff2/5e0938cb.woff2") format("woff2"), url("glyphs/woff/5e0938cb.woff") format("woff"), url("glyphs/ttf/5e0938cb.ttf") format("truetype"); unicode-range: U+E201; } @font-face { font-family: "nano"; src: url("glyphs/woff2/1394a474.woff2") format("woff2"), url("glyphs/woff/1394a474.woff") format("woff"), url("glyphs/ttf/1394a474.ttf") format("truetype"); unicode-range: U+E202; } @font-face { font-family: "nav"; src: url("glyphs/woff2/ccba5701.woff2") format("woff2"), url("glyphs/woff/ccba5701.woff") format("woff"), url("glyphs/ttf/ccba5701.ttf") format("truetype"); unicode-range: U+E203; } @font-face { font-family: "xem"; src: url("glyphs/woff2/22293ce5.woff2") format("woff2"), url("glyphs/woff/22293ce5.woff") format("woff"), url("glyphs/ttf/22293ce5.ttf") format("truetype"); unicode-range: U+E204; } @font-face { font-family: "neo"; src: url("glyphs/woff2/0d26bbc7.woff2") format("woff2"), url("glyphs/woff/0d26bbc7.woff") format("woff"), url("glyphs/ttf/0d26bbc7.ttf") format("truetype"); unicode-range: U+E205; } @font-face { font-family: "nex"; src: url("glyphs/woff2/125fe922.woff2") format("woff2"), url("glyphs/woff/125fe922.woff") format("woff"), url("glyphs/ttf/125fe922.ttf") format("truetype"); unicode-range: U+E206; } @font-face { font-family: "nexo"; src: url("glyphs/woff2/65bc5b9b.woff2") format("woff2"), url("glyphs/woff/65bc5b9b.woff") format("woff"), url("glyphs/ttf/65bc5b9b.ttf") format("truetype"); unicode-range: U+E207; } @font-face { font-family: "nvst"; src: url("glyphs/woff2/cdc770af.woff2") format("woff2"), url("glyphs/woff/cdc770af.woff") format("woff"), url("glyphs/ttf/cdc770af.ttf") format("truetype"); unicode-range: U+E208; } @font-face { font-family: "npx"; src: url("glyphs/woff2/11d82ab4.woff2") format("woff2"), url("glyphs/woff/11d82ab4.woff") format("woff"), url("glyphs/ttf/11d82ab4.ttf") format("truetype"); unicode-range: U+E209; } @font-face { font-family: "ngc"; src: url("glyphs/woff2/15802da1.woff2") format("woff2"), url("glyphs/woff/15802da1.woff") format("woff"), url("glyphs/ttf/15802da1.ttf") format("truetype"); unicode-range: U+E20A; } @font-face { font-family: "nmc"; src: url("glyphs/woff2/99a3e60b.woff2") format("woff2"), url("glyphs/woff/99a3e60b.woff") format("woff"), url("glyphs/ttf/99a3e60b.ttf") format("truetype"); unicode-range: U+E20B; } @font-face { font-family: "nebl"; src: url("glyphs/woff2/4dc72635.woff2") format("woff2"), url("glyphs/woff/4dc72635.woff") format("woff"), url("glyphs/ttf/4dc72635.ttf") format("truetype"); unicode-range: U+E20C; } @font-face { font-family: "nas"; src: url("glyphs/woff2/1a7920cb.woff2") format("woff2"), url("glyphs/woff/1a7920cb.woff") format("woff"), url("glyphs/ttf/1a7920cb.ttf") format("truetype"); unicode-range: U+E20D; } @font-face { font-family: "neos"; src: url("glyphs/woff2/0b12d5a0.woff2") format("woff2"), url("glyphs/woff/0b12d5a0.woff") format("woff"), url("glyphs/ttf/0b12d5a0.ttf") format("truetype"); unicode-range: U+E20E; } @font-face { font-family: "neu"; src: url("glyphs/woff2/6166611f.woff2") format("woff2"), url("glyphs/woff/6166611f.woff") format("woff"), url("glyphs/ttf/6166611f.ttf") format("truetype"); unicode-range: U+E20F; } @font-face { font-family: "ntk"; src: url("glyphs/woff2/fccd4567.woff2") format("woff2"), url("glyphs/woff/fccd4567.woff") format("woff"), url("glyphs/ttf/fccd4567.ttf") format("truetype"); unicode-range: U+E210; } @font-face { font-family: "ntrn"; src: url("glyphs/woff2/e4f0095c.woff2") format("woff2"), url("glyphs/woff/e4f0095c.woff") format("woff"), url("glyphs/ttf/e4f0095c.ttf") format("truetype"); unicode-range: U+E211; } @font-face { font-family: "npxs"; src: url("glyphs/woff2/808ad3a7.woff2") format("woff2"), url("glyphs/woff/808ad3a7.woff") format("woff"), url("glyphs/ttf/808ad3a7.ttf") format("truetype"); unicode-range: U+E212; } @font-face { font-family: "nxs"; src: url("glyphs/woff2/2d7aa05f.woff2") format("woff2"), url("glyphs/woff/2d7aa05f.woff") format("woff"), url("glyphs/ttf/2d7aa05f.ttf") format("truetype"); unicode-range: U+E213; } @font-face { font-family: "net"; src: url("glyphs/woff2/d7ecae43.woff2") format("woff2"), url("glyphs/woff/d7ecae43.woff") format("woff"), url("glyphs/ttf/d7ecae43.ttf") format("truetype"); unicode-range: U+E214; } @font-face { font-family: "nvc"; src: url("glyphs/woff2/9ccb9c44.woff2") format("woff2"), url("glyphs/woff/9ccb9c44.woff") format("woff"), url("glyphs/ttf/9ccb9c44.ttf") format("truetype"); unicode-range: U+E215; } @font-face { font-family: "nbt"; src: url("glyphs/woff2/2a96e401.woff2") format("woff2"), url("glyphs/woff/2a96e401.woff") format("woff"), url("glyphs/ttf/2a96e401.ttf") format("truetype"); unicode-range: U+E216; } @font-face { font-family: "nsr"; src: url("glyphs/woff2/a73e53ed.woff2") format("woff2"), url("glyphs/woff/a73e53ed.woff") format("woff"), url("glyphs/ttf/a73e53ed.ttf") format("truetype"); unicode-range: U+E217; } @font-face { font-family: "ncash"; src: url("glyphs/woff2/4e10ed5b.woff2") format("woff2"), url("glyphs/woff/4e10ed5b.woff") format("woff"), url("glyphs/ttf/4e10ed5b.ttf") format("truetype"); unicode-range: U+E218; } @font-face { font-family: "nuls"; src: url("glyphs/woff2/ca2be6c9.woff2") format("woff2"), url("glyphs/woff/ca2be6c9.woff") format("woff"), url("glyphs/ttf/ca2be6c9.ttf") format("truetype"); unicode-range: U+E219; } @font-face { font-family: "nmr"; src: url("glyphs/woff2/05ed7e4e.woff2") format("woff2"), url("glyphs/woff/05ed7e4e.woff") format("woff"), url("glyphs/ttf/05ed7e4e.ttf") format("truetype"); unicode-range: U+E21A; } @font-face { font-family: "nxt"; src: url("glyphs/woff2/894bfc80.woff2") format("woff2"), url("glyphs/woff/894bfc80.woff") format("woff"), url("glyphs/ttf/894bfc80.ttf") format("truetype"); unicode-range: U+E21B; } @font-face { font-family: "oanda"; src: url("glyphs/woff2/16ed590a.woff2") format("woff2"), url("glyphs/woff/16ed590a.woff") format("woff"), url("glyphs/ttf/16ed590a.ttf") format("truetype"); unicode-range: U+E21C; } @font-face { font-family: "oax"; src: url("glyphs/woff2/cf295f73.woff2") format("woff2"), url("glyphs/woff/cf295f73.woff") format("woff"), url("glyphs/ttf/cf295f73.ttf") format("truetype"); unicode-range: U+E21D; } @font-face { font-family: "ode"; src: url("glyphs/woff2/8179876c.woff2") format("woff2"), url("glyphs/woff/8179876c.woff") format("woff"), url("glyphs/ttf/8179876c.ttf") format("truetype"); unicode-range: U+E21E; } @font-face { font-family: "ok"; src: url("glyphs/woff2/b4fed649.woff2") format("woff2"), url("glyphs/woff/b4fed649.woff") format("woff"), url("glyphs/ttf/b4fed649.ttf") format("truetype"); unicode-range: U+E21F; } @font-face { font-family: "ost"; src: url("glyphs/woff2/bc23c05b.woff2") format("woff2"), url("glyphs/woff/bc23c05b.woff") format("woff"), url("glyphs/ttf/bc23c05b.ttf") format("truetype"); unicode-range: U+E220; } @font-face { font-family: "ox"; src: url("glyphs/woff2/6db9cbfa.woff2") format("woff2"), url("glyphs/woff/6db9cbfa.woff") format("woff"), url("glyphs/ttf/6db9cbfa.ttf") format("truetype"); unicode-range: U+E221; } @font-face { font-family: "oc"; src: url("glyphs/woff2/d7d56ff8.woff2") format("woff2"), url("glyphs/woff/d7d56ff8.woff") format("woff"), url("glyphs/ttf/d7d56ff8.ttf") format("truetype"); unicode-range: U+E222; } @font-face { font-family: "ocl"; src: url("glyphs/woff2/6994c18b.woff2") format("woff2"), url("glyphs/woff/6994c18b.woff") format("woff"), url("glyphs/ttf/6994c18b.ttf") format("truetype"); unicode-range: U+E223; } @font-face { font-family: "occ"; src: url("glyphs/woff2/1a797de5.woff2") format("woff2"), url("glyphs/woff/1a797de5.woff") format("woff"), url("glyphs/ttf/1a797de5.ttf") format("truetype"); unicode-range: U+E224; } @font-face { font-family: "ocn"; src: url("glyphs/woff2/322840cb.woff2") format("woff2"), url("glyphs/woff/322840cb.woff") format("woff"), url("glyphs/ttf/322840cb.ttf") format("truetype"); unicode-range: U+E225; } @font-face { font-family: "omg"; src: url("glyphs/woff2/fe2af1dc.woff2") format("woff2"), url("glyphs/woff/fe2af1dc.woff") format("woff"), url("glyphs/ttf/fe2af1dc.ttf") format("truetype"); unicode-range: U+E226; } @font-face { font-family: "omni"; src: url("glyphs/woff2/72751892.woff2") format("woff2"), url("glyphs/woff/72751892.woff") format("woff"), url("glyphs/ttf/72751892.ttf") format("truetype"); unicode-range: U+E227; } @font-face { font-family: "rnt"; src: url("glyphs/woff2/208046b5.woff2") format("woff2"), url("glyphs/woff/208046b5.woff") format("woff"), url("glyphs/ttf/208046b5.ttf") format("truetype"); unicode-range: U+E228; } @font-face { font-family: "ont"; src: url("glyphs/woff2/fbf90859.woff2") format("woff2"), url("glyphs/woff/fbf90859.woff") format("woff"), url("glyphs/ttf/fbf90859.ttf") format("truetype"); unicode-range: U+E229; } @font-face { font-family: "opal"; src: url("glyphs/woff2/8befb6ca.woff2") format("woff2"), url("glyphs/woff/8befb6ca.woff") format("woff"), url("glyphs/ttf/8befb6ca.ttf") format("truetype"); unicode-range: U+E22A; } @font-face { font-family: "otn"; src: url("glyphs/woff2/6da3182a.woff2") format("woff2"), url("glyphs/woff/6da3182a.woff") format("woff"), url("glyphs/ttf/6da3182a.ttf") format("truetype"); unicode-range: U+E22B; } @font-face { font-family: "trac"; src: url("glyphs/woff2/26fc4657.woff2") format("woff2"), url("glyphs/woff/26fc4657.woff") format("woff"), url("glyphs/ttf/26fc4657.ttf") format("truetype"); unicode-range: U+E22C; } @font-face { font-family: "orme"; src: url("glyphs/woff2/9352bab8.woff2") format("woff2"), url("glyphs/woff/9352bab8.woff") format("woff"), url("glyphs/ttf/9352bab8.ttf") format("truetype"); unicode-range: U+E22D; } @font-face { font-family: "oxy"; src: url("glyphs/woff2/d741c5dd.woff2") format("woff2"), url("glyphs/woff/d741c5dd.woff") format("woff"), url("glyphs/ttf/d741c5dd.ttf") format("truetype"); unicode-range: U+E22E; } @font-face { font-family: "prl"; src: url("glyphs/woff2/6302510b.woff2") format("woff2"), url("glyphs/woff/6302510b.woff") format("woff"), url("glyphs/ttf/6302510b.ttf") format("truetype"); unicode-range: U+E22F; } @font-face { font-family: "pac"; src: url("glyphs/woff2/5bdeb600.woff2") format("woff2"), url("glyphs/woff/5bdeb600.woff") format("woff"), url("glyphs/ttf/5bdeb600.ttf") format("truetype"); unicode-range: U+E230; } @font-face { font-family: "pin"; src: url("glyphs/woff2/b96007b9.woff2") format("woff2"), url("glyphs/woff/b96007b9.woff") format("woff"), url("glyphs/ttf/b96007b9.ttf") format("truetype"); unicode-range: U+E231; } @font-face { font-family: "pivx"; src: url("glyphs/woff2/311bcfdc.woff2") format("woff2"), url("glyphs/woff/311bcfdc.woff") format("woff"), url("glyphs/ttf/311bcfdc.ttf") format("truetype"); unicode-range: U+E232; } @font-face { font-family: "poa"; src: url("glyphs/woff2/971dbc94.woff2") format("woff2"), url("glyphs/woff/971dbc94.woff") format("woff"), url("glyphs/ttf/971dbc94.ttf") format("truetype"); unicode-range: U+E233; } @font-face { font-family: "pnd"; src: url("glyphs/woff2/3506ae92.woff2") format("woff2"), url("glyphs/woff/3506ae92.woff") format("woff"), url("glyphs/ttf/3506ae92.ttf") format("truetype"); unicode-range: U+E234; } @font-face { font-family: "prg"; src: url("glyphs/woff2/35e73fc6.woff2") format("woff2"), url("glyphs/woff/35e73fc6.woff") format("woff"), url("glyphs/ttf/35e73fc6.ttf") format("truetype"); unicode-range: U+E235; } @font-face { font-family: "pareto"; src: url("glyphs/woff2/53605668.woff2") format("woff2"), url("glyphs/woff/53605668.woff") format("woff"), url("glyphs/ttf/53605668.ttf") format("truetype"); unicode-range: U+E236; } @font-face { font-family: "part"; src: url("glyphs/woff2/0d9537d2.woff2") format("woff2"), url("glyphs/woff/0d9537d2.woff") format("woff"), url("glyphs/ttf/0d9537d2.ttf") format("truetype"); unicode-range: U+E237; } @font-face { font-family: "pasc"; src: url("glyphs/woff2/199aab73.woff2") format("woff2"), url("glyphs/woff/199aab73.woff") format("woff"), url("glyphs/ttf/199aab73.ttf") format("truetype"); unicode-range: U+E238; } @font-face { font-family: "ptoy"; src: url("glyphs/woff2/f3aa8be6.woff2") format("woff2"), url("glyphs/woff/f3aa8be6.woff") format("woff"), url("glyphs/ttf/f3aa8be6.ttf") format("truetype"); unicode-range: U+E239; } @font-face { font-family: "paysafe"; src: url("glyphs/woff2/8aacdf16.woff2") format("woff2"), url("glyphs/woff/8aacdf16.woff") format("woff"), url("glyphs/ttf/8aacdf16.ttf") format("truetype"); unicode-range: U+E23A; } @font-face { font-family: "paybox"; src: url("glyphs/woff2/023d4451.woff2") format("woff2"), url("glyphs/woff/023d4451.woff") format("woff"), url("glyphs/ttf/023d4451.ttf") format("truetype"); unicode-range: U+E23B; } @font-face { font-family: "xpy"; src: url("glyphs/woff2/aae08744.woff2") format("woff2"), url("glyphs/woff/aae08744.woff") format("woff"), url("glyphs/ttf/aae08744.ttf") format("truetype"); unicode-range: U+E23C; } @font-face { font-family: "paydirekt"; src: url("glyphs/woff2/6aa52642.woff2") format("woff2"), url("glyphs/woff/6aa52642.woff") format("woff"), url("glyphs/ttf/6aa52642.ttf") format("truetype"); unicode-range: U+E23D; } @font-face { font-family: "paypal"; src: url("glyphs/woff2/87626b68.woff2") format("woff2"), url("glyphs/woff/87626b68.woff") format("woff"), url("glyphs/ttf/87626b68.ttf") format("truetype"); unicode-range: U+E23E; } @font-face { font-family: "ppp"; src: url("glyphs/woff2/888412e6.woff2") format("woff2"), url("glyphs/woff/888412e6.woff") format("woff"), url("glyphs/ttf/888412e6.ttf") format("truetype"); unicode-range: U+E23F; } @font-face { font-family: "paypro"; src: url("glyphs/woff2/dd10b6f4.woff2") format("woff2"), url("glyphs/woff/dd10b6f4.woff") format("woff"), url("glyphs/ttf/dd10b6f4.ttf") format("truetype"); unicode-range: U+E240; } @font-face { font-family: "pfr"; src: url("glyphs/woff2/5798f31f.woff2") format("woff2"), url("glyphs/woff/5798f31f.woff") format("woff"), url("glyphs/ttf/5798f31f.ttf") format("truetype"); unicode-range: U+E241; } @font-face { font-family: "paymentwall"; src: url("glyphs/woff2/1165e24b.woff2") format("woff2"), url("glyphs/woff/1165e24b.woff") format("woff"), url("glyphs/ttf/1165e24b.ttf") format("truetype"); unicode-range: U+E242; } @font-face { font-family: "paymill"; src: url("glyphs/woff2/df01c285.woff2") format("woff2"), url("glyphs/woff/df01c285.woff") format("woff"), url("glyphs/ttf/df01c285.ttf") format("truetype"); unicode-range: U+E243; } @font-face { font-family: "ppc"; src: url("glyphs/woff2/59835a05.woff2") format("woff2"), url("glyphs/woff/59835a05.woff") format("woff"), url("glyphs/ttf/59835a05.ttf") format("truetype"); unicode-range: U+E244; } @font-face { font-family: "ppy"; src: url("glyphs/woff2/7188a9c1.woff2") format("woff2"), url("glyphs/woff/7188a9c1.woff") format("woff"), url("glyphs/ttf/7188a9c1.ttf") format("truetype"); unicode-range: U+E245; } @font-face { font-family: "phr"; src: url("glyphs/woff2/43664073.woff2") format("woff2"), url("glyphs/woff/43664073.woff") format("woff"), url("glyphs/ttf/43664073.ttf") format("truetype"); unicode-range: U+E246; } @font-face { font-family: "pho"; src: url("glyphs/woff2/9b8448e1.woff2") format("woff2"), url("glyphs/woff/9b8448e1.woff") format("woff"), url("glyphs/ttf/9b8448e1.ttf") format("truetype"); unicode-range: U+E247; } @font-face { font-family: "piggy"; src: url("glyphs/woff2/c0dc60c1.woff2") format("woff2"), url("glyphs/woff/c0dc60c1.woff") format("woff"), url("glyphs/ttf/c0dc60c1.ttf") format("truetype"); unicode-range: U+E248; } @font-face { font-family: "plr"; src: url("glyphs/woff2/9ced0dd7.woff2") format("woff2"), url("glyphs/woff/9ced0dd7.woff") format("woff"), url("glyphs/ttf/9ced0dd7.ttf") format("truetype"); unicode-range: U+E249; } @font-face { font-family: "pink"; src: url("glyphs/woff2/fef0478f.woff2") format("woff2"), url("glyphs/woff/fef0478f.woff") format("woff"), url("glyphs/ttf/fef0478f.ttf") format("truetype"); unicode-range: U+E24A; } @font-face { font-family: "pkt"; src: url("glyphs/woff2/b44b2013.woff2") format("woff2"), url("glyphs/woff/b44b2013.woff") format("woff"), url("glyphs/ttf/b44b2013.ttf") format("truetype"); unicode-range: U+E24B; } @font-face { font-family: "plu"; src: url("glyphs/woff2/8beb9dac.woff2") format("woff2"), url("glyphs/woff/8beb9dac.woff") format("woff"), url("glyphs/ttf/8beb9dac.ttf") format("truetype"); unicode-range: U+E24C; } @font-face { font-family: "posw"; src: url("glyphs/woff2/944650cf.woff2") format("woff2"), url("glyphs/woff/944650cf.woff") format("woff"), url("glyphs/ttf/944650cf.ttf") format("truetype"); unicode-range: U+E24D; } @font-face { font-family: "poe"; src: url("glyphs/woff2/74da7207.woff2") format("woff2"), url("glyphs/woff/74da7207.woff") format("woff"), url("glyphs/ttf/74da7207.ttf") format("truetype"); unicode-range: U+E24E; } @font-face { font-family: "polis"; src: url("glyphs/woff2/be09c3ad.woff2") format("woff2"), url("glyphs/woff/be09c3ad.woff") format("woff"), url("glyphs/ttf/be09c3ad.ttf") format("truetype"); unicode-range: U+E24F; } @font-face { font-family: "polkadot"; src: url("glyphs/woff2/354ca571.woff2") format("woff2"), url("glyphs/woff/354ca571.woff") format("woff"), url("glyphs/ttf/354ca571.ttf") format("truetype"); unicode-range: U+E250; } @font-face { font-family: "poloniex"; src: url("glyphs/woff2/900affc9.woff2") format("woff2"), url("glyphs/woff/900affc9.woff") format("woff"), url("glyphs/ttf/900affc9.ttf") format("truetype"); unicode-range: U+E251; } @font-face { font-family: "nct"; src: url("glyphs/woff2/7909aeb7.woff2") format("woff2"), url("glyphs/woff/7909aeb7.woff") format("woff"), url("glyphs/ttf/7909aeb7.ttf") format("truetype"); unicode-range: U+E252; } @font-face { font-family: "plbt"; src: url("glyphs/woff2/064b9505.woff2") format("woff2"), url("glyphs/woff/064b9505.woff") format("woff"), url("glyphs/ttf/064b9505.ttf") format("truetype"); unicode-range: U+E253; } @font-face { font-family: "poly"; src: url("glyphs/woff2/948b9f9b.woff2") format("woff2"), url("glyphs/woff/948b9f9b.woff") format("woff"), url("glyphs/ttf/948b9f9b.ttf") format("truetype"); unicode-range: U+E254; } @font-face { font-family: "ppt"; src: url("glyphs/woff2/41e7e67b.woff2") format("woff2"), url("glyphs/woff/41e7e67b.woff") format("woff"), url("glyphs/ttf/41e7e67b.ttf") format("truetype"); unicode-range: U+E255; } @font-face { font-family: "postnl"; src: url("glyphs/woff2/ab8056ea.woff2") format("woff2"), url("glyphs/woff/ab8056ea.woff") format("woff"), url("glyphs/ttf/ab8056ea.ttf") format("truetype"); unicode-range: U+E256; } @font-face { font-family: "postnord"; src: url("glyphs/woff2/36bf9ec5.woff2") format("woff2"), url("glyphs/woff/36bf9ec5.woff") format("woff"), url("glyphs/ttf/36bf9ec5.ttf") format("truetype"); unicode-range: U+E257; } @font-face { font-family: "pot"; src: url("glyphs/woff2/94ee3537.woff2") format("woff2"), url("glyphs/woff/94ee3537.woff") format("woff"), url("glyphs/ttf/94ee3537.ttf") format("truetype"); unicode-range: U+E258; } @font-face { font-family: "powr"; src: url("glyphs/woff2/4d040d05.woff2") format("woff2"), url("glyphs/woff/4d040d05.woff") format("woff"), url("glyphs/ttf/4d040d05.ttf") format("truetype"); unicode-range: U+E259; } @font-face { font-family: "pre"; src: url("glyphs/woff2/34152b57.woff2") format("woff2"), url("glyphs/woff/34152b57.woff") format("woff"), url("glyphs/ttf/34152b57.ttf") format("truetype"); unicode-range: U+E25A; } @font-face { font-family: "pbt"; src: url("glyphs/woff2/36728431.woff2") format("woff2"), url("glyphs/woff/36728431.woff") format("woff"), url("glyphs/ttf/36728431.ttf") format("truetype"); unicode-range: U+E25B; } @font-face { font-family: "xpm"; src: url("glyphs/woff2/1e3a5f47.woff2") format("woff2"), url("glyphs/woff/1e3a5f47.woff") format("woff"), url("glyphs/ttf/1e3a5f47.ttf") format("truetype"); unicode-range: U+E25C; } @font-face { font-family: "pro"; src: url("glyphs/woff2/d97e9886.woff2") format("woff2"), url("glyphs/woff/d97e9886.woff") format("woff"), url("glyphs/ttf/d97e9886.ttf") format("truetype"); unicode-range: U+E25D; } @font-face { font-family: "xes"; src: url("glyphs/woff2/cff6eea9.woff2") format("woff2"), url("glyphs/woff/cff6eea9.woff") format("woff"), url("glyphs/ttf/cff6eea9.ttf") format("truetype"); unicode-range: U+E25E; } @font-face { font-family: "pbl"; src: url("glyphs/woff2/5f3272da.woff2") format("woff2"), url("glyphs/woff/5f3272da.woff") format("woff"), url("glyphs/ttf/5f3272da.ttf") format("truetype"); unicode-range: U+E25F; } @font-face { font-family: "pxs"; src: url("glyphs/woff2/c035acf1.woff2") format("woff2"), url("glyphs/woff/c035acf1.woff") format("woff"), url("glyphs/ttf/c035acf1.ttf") format("truetype"); unicode-range: U+E260; } @font-face { font-family: "pura"; src: url("glyphs/woff2/836758e3.woff2") format("woff2"), url("glyphs/woff/836758e3.woff") format("woff"), url("glyphs/ttf/836758e3.ttf") format("truetype"); unicode-range: U+E261; } @font-face { font-family: "qash"; src: url("glyphs/woff2/5d9d090a.woff2") format("woff2"), url("glyphs/woff/5d9d090a.woff") format("woff"), url("glyphs/ttf/5d9d090a.ttf") format("truetype"); unicode-range: U+E262; } @font-face { font-family: "qlc"; src: url("glyphs/woff2/4259b075.woff2") format("woff2"), url("glyphs/woff/4259b075.woff") format("woff"), url("glyphs/ttf/4259b075.ttf") format("truetype"); unicode-range: U+E263; } @font-face { font-family: "qbt"; src: url("glyphs/woff2/73db31ed.woff2") format("woff2"), url("glyphs/woff/73db31ed.woff") format("woff"), url("glyphs/ttf/73db31ed.ttf") format("truetype"); unicode-range: U+E264; } @font-face { font-family: "qiwi"; src: url("glyphs/woff2/f21dea18.woff2") format("woff2"), url("glyphs/woff/f21dea18.woff") format("woff"), url("glyphs/ttf/f21dea18.ttf") format("truetype"); unicode-range: U+E265; } @font-face { font-family: "qtum"; src: url("glyphs/woff2/cdf1c3ef.woff2") format("woff2"), url("glyphs/woff/cdf1c3ef.woff") format("woff"), url("glyphs/ttf/cdf1c3ef.ttf") format("truetype"); unicode-range: U+E266; } @font-face { font-family: "quadrigacx"; src: url("glyphs/woff2/018f5952.woff2") format("woff2"), url("glyphs/woff/018f5952.woff") format("woff"), url("glyphs/ttf/018f5952.ttf") format("truetype"); unicode-range: U+E267; } @font-face { font-family: "qsp"; src: url("glyphs/woff2/a564f20f.woff2") format("woff2"), url("glyphs/woff/a564f20f.woff") format("woff"), url("glyphs/ttf/a564f20f.ttf") format("truetype"); unicode-range: U+E268; } @font-face { font-family: "qua"; src: url("glyphs/woff2/f51f8bf3.woff2") format("woff2"), url("glyphs/woff/f51f8bf3.woff") format("woff"), url("glyphs/ttf/f51f8bf3.ttf") format("truetype"); unicode-range: U+E269; } @font-face { font-family: "qrl"; src: url("glyphs/woff2/2db5fddf.woff2") format("woff2"), url("glyphs/woff/2db5fddf.woff") format("woff"), url("glyphs/ttf/2db5fddf.ttf") format("truetype"); unicode-range: U+E26A; } @font-face { font-family: "qrk"; src: url("glyphs/woff2/68db64d0.woff2") format("woff2"), url("glyphs/woff/68db64d0.woff") format("woff"), url("glyphs/ttf/68db64d0.ttf") format("truetype"); unicode-range: U+E26B; } @font-face { font-family: "qun"; src: url("glyphs/woff2/13753541.woff2") format("woff2"), url("glyphs/woff/13753541.woff") format("woff"), url("glyphs/ttf/13753541.ttf") format("truetype"); unicode-range: U+E26C; } @font-face { font-family: "quoine"; src: url("glyphs/woff2/21a02826.woff2") format("woff2"), url("glyphs/woff/21a02826.woff") format("woff"), url("glyphs/ttf/21a02826.ttf") format("truetype"); unicode-range: U+E26D; } @font-face { font-family: "rhoc"; src: url("glyphs/woff2/55092daa.woff2") format("woff2"), url("glyphs/woff/55092daa.woff") format("woff"), url("glyphs/ttf/55092daa.ttf") format("truetype"); unicode-range: U+E26E; } @font-face { font-family: "roka"; src: url("glyphs/woff2/254c8943.woff2") format("woff2"), url("glyphs/woff/254c8943.woff") format("woff"), url("glyphs/ttf/254c8943.ttf") format("truetype"); unicode-range: U+E26F; } @font-face { font-family: "rabo"; src: url("glyphs/woff2/d8f26b1e.woff2") format("woff2"), url("glyphs/woff/d8f26b1e.woff") format("woff"), url("glyphs/ttf/d8f26b1e.ttf") format("truetype"); unicode-range: U+E270; } @font-face { font-family: "rads"; src: url("glyphs/woff2/98a0b6a0.woff2") format("woff2"), url("glyphs/woff/98a0b6a0.woff") format("woff"), url("glyphs/ttf/98a0b6a0.ttf") format("truetype"); unicode-range: U+E271; } @font-face { font-family: "xrb"; src: url("glyphs/woff2/4e1ac177.woff2") format("woff2"), url("glyphs/woff/4e1ac177.woff") format("woff"), url("glyphs/ttf/4e1ac177.ttf") format("truetype"); unicode-range: U+E272; } @font-face { font-family: "rdn"; src: url("glyphs/woff2/7f3c219c.woff2") format("woff2"), url("glyphs/woff/7f3c219c.woff") format("woff"), url("glyphs/ttf/7f3c219c.ttf") format("truetype"); unicode-range: U+E273; } @font-face { font-family: "raif"; src: url("glyphs/woff2/a04998d6.woff2") format("woff2"), url("glyphs/woff/a04998d6.woff") format("woff"), url("glyphs/ttf/a04998d6.ttf") format("truetype"); unicode-range: U+E274; } @font-face { font-family: "rebl"; src: url("glyphs/woff2/6e8af6a3.woff2") format("woff2"), url("glyphs/woff/6e8af6a3.woff") format("woff"), url("glyphs/ttf/6e8af6a3.ttf") format("truetype"); unicode-range: U+E275; } @font-face { font-family: "rrt"; src: url("glyphs/woff2/b7a172a3.woff2") format("woff2"), url("glyphs/woff/b7a172a3.woff") format("woff"), url("glyphs/ttf/b7a172a3.ttf") format("truetype"); unicode-range: U+E276; } @font-face { font-family: "rpx"; src: url("glyphs/woff2/7257f8e5.woff2") format("woff2"), url("glyphs/woff/7257f8e5.woff") format("woff"), url("glyphs/ttf/7257f8e5.ttf") format("truetype"); unicode-range: U+E277; } @font-face { font-family: "rdd"; src: url("glyphs/woff2/3b064daf.woff2") format("woff2"), url("glyphs/woff/3b064daf.woff") format("woff"), url("glyphs/ttf/3b064daf.ttf") format("truetype"); unicode-range: U+E278; } @font-face { font-family: "rfc"; src: url("glyphs/woff2/4a849376.woff2") format("woff2"), url("glyphs/woff/4a849376.woff") format("woff"), url("glyphs/ttf/4a849376.ttf") format("truetype"); unicode-range: U+E279; } @font-face { font-family: "rfm"; src: url("glyphs/woff2/1079bbd9.woff2") format("woff2"), url("glyphs/woff/1079bbd9.woff") format("woff"), url("glyphs/ttf/1079bbd9.ttf") format("truetype"); unicode-range: U+E27A; } @font-face { font-family: "rmc"; src: url("glyphs/woff2/117dc215.woff2") format("woff2"), url("glyphs/woff/117dc215.woff") format("woff"), url("glyphs/ttf/117dc215.ttf") format("truetype"); unicode-range: U+E27B; } @font-face { font-family: "remme"; src: url("glyphs/woff2/59d1acbe.woff2") format("woff2"), url("glyphs/woff/59d1acbe.woff") format("woff"), url("glyphs/ttf/59d1acbe.ttf") format("truetype"); unicode-range: U+E27C; } @font-face { font-family: "berry"; src: url("glyphs/woff2/328fad59.woff2") format("woff2"), url("glyphs/woff/328fad59.woff") format("woff"), url("glyphs/ttf/328fad59.ttf") format("truetype"); unicode-range: U+E27D; } @font-face { font-family: "ren"; src: url("glyphs/woff2/bb366587.woff2") format("woff2"), url("glyphs/woff/bb366587.woff") format("woff"), url("glyphs/ttf/bb366587.ttf") format("truetype"); unicode-range: U+E27E; } @font-face { font-family: "req"; src: url("glyphs/woff2/2bd2fc24.woff2") format("woff2"), url("glyphs/woff/2bd2fc24.woff") format("woff"), url("glyphs/ttf/2bd2fc24.ttf") format("truetype"); unicode-range: U+E27F; } @font-face { font-family: "mwat"; src: url("glyphs/woff2/7d67a50f.woff2") format("woff2"), url("glyphs/woff/7d67a50f.woff") format("woff"), url("glyphs/ttf/7d67a50f.ttf") format("truetype"); unicode-range: U+E280; } @font-face { font-family: "r"; src: url("glyphs/woff2/ae943640.woff2") format("woff2"), url("glyphs/woff/ae943640.woff") format("woff"), url("glyphs/ttf/ae943640.ttf") format("truetype"); unicode-range: U+E281; } @font-face { font-family: "xrl"; src: url("glyphs/woff2/6338d88d.woff2") format("woff2"), url("glyphs/woff/6338d88d.woff") format("woff"), url("glyphs/ttf/6338d88d.ttf") format("truetype"); unicode-range: U+E282; } @font-face { font-family: "rbt"; src: url("glyphs/woff2/2928cfa1.woff2") format("woff2"), url("glyphs/woff/2928cfa1.woff") format("woff"), url("glyphs/ttf/2928cfa1.ttf") format("truetype"); unicode-range: U+E283; } @font-face { font-family: "rcn"; src: url("glyphs/woff2/246660f5.woff2") format("woff2"), url("glyphs/woff/246660f5.woff") format("woff"), url("glyphs/ttf/246660f5.ttf") format("truetype"); unicode-range: U+E284; } @font-face { font-family: "xrp"; src: url("glyphs/woff2/839981ee.woff2") format("woff2"), url("glyphs/woff/839981ee.woff") format("woff"), url("glyphs/ttf/839981ee.ttf") format("truetype"); unicode-range: U+E285; } @font-face { font-family: "rbx"; src: url("glyphs/woff2/4a54867e.woff2") format("woff2"), url("glyphs/woff/4a54867e.woff") format("woff"), url("glyphs/ttf/4a54867e.ttf") format("truetype"); unicode-range: U+E286; } @font-face { font-family: "rise"; src: url("glyphs/woff2/e264079a.woff2") format("woff2"), url("glyphs/woff/e264079a.woff") format("woff"), url("glyphs/ttf/e264079a.ttf") format("truetype"); unicode-range: U+E287; } @font-face { font-family: "round"; src: url("glyphs/woff2/e7aad562.woff2") format("woff2"), url("glyphs/woff/e7aad562.woff") format("woff"), url("glyphs/ttf/e7aad562.ttf") format("truetype"); unicode-range: U+E288; } @font-face { font-family: "rkc"; src: url("glyphs/woff2/24cd796b.woff2") format("woff2"), url("glyphs/woff/24cd796b.woff") format("woff"), url("glyphs/ttf/24cd796b.ttf") format("truetype"); unicode-range: U+E289; } @font-face { font-family: "rbies"; src: url("glyphs/woff2/825014e6.woff2") format("woff2"), url("glyphs/woff/825014e6.woff") format("woff"), url("glyphs/ttf/825014e6.ttf") format("truetype"); unicode-range: U+E28A; } @font-face { font-family: "rby"; src: url("glyphs/woff2/c7e82146.woff2") format("woff2"), url("glyphs/woff/c7e82146.woff") format("woff"), url("glyphs/ttf/c7e82146.ttf") format("truetype"); unicode-range: U+E28B; } @font-face { font-family: "salt"; src: url("glyphs/woff2/4ae1ce28.woff2") format("woff2"), url("glyphs/woff/4ae1ce28.woff") format("woff"), url("glyphs/ttf/4ae1ce28.ttf") format("truetype"); unicode-range: U+E28C; } @font-face { font-family: "sepa"; src: url("glyphs/woff2/e9b1d552.woff2") format("woff2"), url("glyphs/woff/e9b1d552.woff") format("woff"), url("glyphs/ttf/e9b1d552.ttf") format("truetype"); unicode-range: U+E28D; } @font-face { font-family: "xsh"; src: url("glyphs/woff2/ce715050.woff2") format("woff2"), url("glyphs/woff/ce715050.woff") format("woff"), url("glyphs/ttf/ce715050.ttf") format("truetype"); unicode-range: U+E28E; } @font-face { font-family: "sib"; src: url("glyphs/woff2/d2ebd46c.woff2") format("woff2"), url("glyphs/woff/d2ebd46c.woff") format("woff"), url("glyphs/ttf/d2ebd46c.ttf") format("truetype"); unicode-range: U+E28F; } @font-face { font-family: "srn"; src: url("glyphs/woff2/74dc98f9.woff2") format("woff2"), url("glyphs/woff/74dc98f9.woff") format("woff"), url("glyphs/ttf/74dc98f9.ttf") format("truetype"); unicode-range: U+E290; } @font-face { font-family: "skynet"; src: url("glyphs/woff2/7c37a4d6.woff2") format("woff2"), url("glyphs/woff/7c37a4d6.woff") format("woff"), url("glyphs/ttf/7c37a4d6.ttf") format("truetype"); unicode-range: U+E291; } @font-face { font-family: "snm"; src: url("glyphs/woff2/c9a00be7.woff2") format("woff2"), url("glyphs/woff/c9a00be7.woff") format("woff"), url("glyphs/ttf/c9a00be7.ttf") format("truetype"); unicode-range: U+E292; } @font-face { font-family: "altcom"; src: url("glyphs/woff2/db8e73dd.woff2") format("woff2"), url("glyphs/woff/db8e73dd.woff") format("woff"), url("glyphs/ttf/db8e73dd.ttf") format("truetype"); unicode-range: U+E293; } @font-face { font-family: "stk"; src: url("glyphs/woff2/c9ede1cf.woff2") format("woff2"), url("glyphs/woff/c9ede1cf.woff") format("woff"), url("glyphs/ttf/c9ede1cf.ttf") format("truetype"); unicode-range: U+E294; } @font-face { font-family: "safex"; src: url("glyphs/woff2/282e3874.woff2") format("woff2"), url("glyphs/woff/282e3874.woff") format("woff"), url("glyphs/ttf/282e3874.ttf") format("truetype"); unicode-range: U+E295; } @font-face { font-family: "sage"; src: url("glyphs/woff2/088eafe1.woff2") format("woff2"), url("glyphs/woff/088eafe1.woff") format("woff"), url("glyphs/ttf/088eafe1.ttf") format("truetype"); unicode-range: U+E296; } @font-face { font-family: "sls"; src: url("glyphs/woff2/77d98a34.woff2") format("woff2"), url("glyphs/woff/77d98a34.woff") format("woff"), url("glyphs/ttf/77d98a34.ttf") format("truetype"); unicode-range: U+E297; } @font-face { font-family: "sant"; src: url("glyphs/woff2/89eb94d2.woff2") format("woff2"), url("glyphs/woff/89eb94d2.woff") format("woff"), url("glyphs/ttf/89eb94d2.ttf") format("truetype"); unicode-range: U+E298; } @font-face { font-family: "san"; src: url("glyphs/woff2/78600846.woff2") format("woff2"), url("glyphs/woff/78600846.woff") format("woff"), url("glyphs/ttf/78600846.ttf") format("truetype"); unicode-range: U+E299; } @font-face { font-family: "sar"; src: url("glyphs/woff2/c0ef3e5e.woff2") format("woff2"), url("glyphs/woff/c0ef3e5e.woff") format("woff"), url("glyphs/ttf/c0ef3e5e.ttf") format("truetype"); unicode-range: U+E29A; } @font-face { font-family: "scot"; src: url("glyphs/woff2/81e03745.woff2") format("woff2"), url("glyphs/woff/81e03745.woff") format("woff"), url("glyphs/ttf/81e03745.ttf") format("truetype"); unicode-range: U+E29B; } @font-face { font-family: "key"; src: url("glyphs/woff2/61c4be74.woff2") format("woff2"), url("glyphs/woff/61c4be74.woff") format("woff"), url("glyphs/ttf/61c4be74.ttf") format("truetype"); unicode-range: U+E29C; } @font-face { font-family: "sense"; src: url("glyphs/woff2/439e5c3d.woff2") format("woff2"), url("glyphs/woff/439e5c3d.woff") format("woff"), url("glyphs/ttf/439e5c3d.ttf") format("truetype"); unicode-range: U+E29D; } @font-face { font-family: "seth"; src: url("glyphs/woff2/1b7ba367.woff2") format("woff2"), url("glyphs/woff/1b7ba367.woff") format("woff"), url("glyphs/ttf/1b7ba367.ttf") format("truetype"); unicode-range: U+E29E; } @font-face { font-family: "sdc"; src: url("glyphs/woff2/dcf87866.woff2") format("woff2"), url("glyphs/woff/dcf87866.woff") format("woff"), url("glyphs/ttf/dcf87866.ttf") format("truetype"); unicode-range: U+E29F; } @font-face { font-family: "shapeshift"; src: url("glyphs/woff2/6065bb77.woff2") format("woff2"), url("glyphs/woff/6065bb77.woff") format("woff"), url("glyphs/ttf/6065bb77.ttf") format("truetype"); unicode-range: U+E2A0; } @font-face { font-family: "shp"; src: url("glyphs/woff2/1fd6b062.woff2") format("woff2"), url("glyphs/woff/1fd6b062.woff") format("woff"), url("glyphs/ttf/1fd6b062.ttf") format("truetype"); unicode-range: U+E2A1; } @font-face { font-family: "jew"; src: url("glyphs/woff2/be0e8a5a.woff2") format("woff2"), url("glyphs/woff/be0e8a5a.woff") format("woff"), url("glyphs/ttf/be0e8a5a.ttf") format("truetype"); unicode-range: U+E2A2; } @font-face { font-family: "shift"; src: url("glyphs/woff2/bcd60da4.woff2") format("woff2"), url("glyphs/woff/bcd60da4.woff") format("woff"), url("glyphs/ttf/bcd60da4.ttf") format("truetype"); unicode-range: U+E2A3; } @font-face { font-family: "sc"; src: url("glyphs/woff2/2ef4a942.woff2") format("woff2"), url("glyphs/woff/2ef4a942.woff") format("woff"), url("glyphs/ttf/2ef4a942.ttf") format("truetype"); unicode-range: U+E2A4; } @font-face { font-family: "sig"; src: url("glyphs/woff2/9899cecb.woff2") format("woff2"), url("glyphs/woff/9899cecb.woff") format("woff"), url("glyphs/ttf/9899cecb.ttf") format("truetype"); unicode-range: U+E2A5; } @font-face { font-family: "sgn"; src: url("glyphs/woff2/31782ddd.woff2") format("woff2"), url("glyphs/woff/31782ddd.woff") format("woff"), url("glyphs/ttf/31782ddd.ttf") format("truetype"); unicode-range: U+E2A6; } @font-face { font-family: "sto"; src: url("glyphs/woff2/1778d94c.woff2") format("woff2"), url("glyphs/woff/1778d94c.woff") format("woff"), url("glyphs/ttf/1778d94c.ttf") format("truetype"); unicode-range: U+E2A7; } @font-face { font-family: "sngls"; src: url("glyphs/woff2/081f89e0.woff2") format("woff2"), url("glyphs/woff/081f89e0.woff") format("woff"), url("glyphs/ttf/081f89e0.ttf") format("truetype"); unicode-range: U+E2A8; } @font-face { font-family: "skc"; src: url("glyphs/woff2/6795017c.woff2") format("woff2"), url("glyphs/woff/6795017c.woff") format("woff"), url("glyphs/ttf/6795017c.ttf") format("truetype"); unicode-range: U+E2A9; } @font-face { font-family: "skrill"; src: url("glyphs/woff2/25ea7b82.woff2") format("woff2"), url("glyphs/woff/25ea7b82.woff") format("woff"), url("glyphs/ttf/25ea7b82.ttf") format("truetype"); unicode-range: U+E2AA; } @font-face { font-family: "sky"; src: url("glyphs/woff2/68a429e1.woff2") format("woff2"), url("glyphs/woff/68a429e1.woff") format("woff"), url("glyphs/ttf/68a429e1.ttf") format("truetype"); unicode-range: U+E2AB; } @font-face { font-family: "smart"; src: url("glyphs/woff2/676821e3.woff2") format("woff2"), url("glyphs/woff/676821e3.woff") format("woff"), url("glyphs/ttf/676821e3.ttf") format("truetype"); unicode-range: U+E2AC; } @font-face { font-family: "slt"; src: url("glyphs/woff2/b84384c5.woff2") format("woff2"), url("glyphs/woff/b84384c5.woff") format("woff"), url("glyphs/ttf/b84384c5.ttf") format("truetype"); unicode-range: U+E2AD; } @font-face { font-family: "snov"; src: url("glyphs/woff2/ffa0cc23.woff2") format("woff2"), url("glyphs/woff/ffa0cc23.woff") format("woff"), url("glyphs/ttf/ffa0cc23.ttf") format("truetype"); unicode-range: U+E2AE; } @font-face { font-family: "soar"; src: url("glyphs/woff2/36bc1a9d.woff2") format("woff2"), url("glyphs/woff/36bc1a9d.woff") format("woff"), url("glyphs/ttf/36bc1a9d.ttf") format("truetype"); unicode-range: U+E2AF; } @font-face { font-family: "som"; src: url("glyphs/woff2/131ebb37.woff2") format("woff2"), url("glyphs/woff/131ebb37.woff") format("woff"), url("glyphs/ttf/131ebb37.ttf") format("truetype"); unicode-range: U+E2B0; } @font-face { font-family: "slr"; src: url("glyphs/woff2/4a7c46ed.woff2") format("woff2"), url("glyphs/woff/4a7c46ed.woff") format("woff"), url("glyphs/ttf/4a7c46ed.ttf") format("truetype"); unicode-range: U+E2B1; } @font-face { font-family: "xlr"; src: url("glyphs/woff2/860a7588.woff2") format("woff2"), url("glyphs/woff/860a7588.woff") format("woff"), url("glyphs/ttf/860a7588.ttf") format("truetype"); unicode-range: U+E2B2; } @font-face { font-family: "sphtx"; src: url("glyphs/woff2/525958c5.woff2") format("woff2"), url("glyphs/woff/525958c5.woff") format("woff"), url("glyphs/ttf/525958c5.ttf") format("truetype"); unicode-range: U+E2B3; } @font-face { font-family: "krw"; src: url("glyphs/woff2/85b9ab95.woff2") format("woff2"), url("glyphs/woff/85b9ab95.woff") format("woff"), url("glyphs/ttf/85b9ab95.ttf") format("truetype"); unicode-range: U+E2B4; } @font-face { font-family: "spc"; src: url("glyphs/woff2/f4c46d43.woff2") format("woff2"), url("glyphs/woff/f4c46d43.woff") format("woff"), url("glyphs/ttf/f4c46d43.ttf") format("truetype"); unicode-range: U+E2B5; } @font-face { font-family: "spank"; src: url("glyphs/woff2/e2cd4ea9.woff2") format("woff2"), url("glyphs/woff/e2cd4ea9.woff") format("woff"), url("glyphs/ttf/e2cd4ea9.ttf") format("truetype"); unicode-range: U+E2B6; } @font-face { font-family: "scdt"; src: url("glyphs/woff2/b7ecc4fc.woff2") format("woff2"), url("glyphs/woff/b7ecc4fc.woff") format("woff"), url("glyphs/ttf/b7ecc4fc.ttf") format("truetype"); unicode-range: U+E2B7; } @font-face { font-family: "xspec"; src: url("glyphs/woff2/8625f0eb.woff2") format("woff2"), url("glyphs/woff/8625f0eb.woff") format("woff"), url("glyphs/ttf/8625f0eb.ttf") format("truetype"); unicode-range: U+E2B8; } @font-face { font-family: "sms"; src: url("glyphs/woff2/4477f406.woff2") format("woff2"), url("glyphs/woff/4477f406.woff") format("woff"), url("glyphs/ttf/4477f406.ttf") format("truetype"); unicode-range: U+E2B9; } @font-face { font-family: "spf"; src: url("glyphs/woff2/68243e39.woff2") format("woff2"), url("glyphs/woff/68243e39.woff") format("woff"), url("glyphs/ttf/68243e39.ttf") format("truetype"); unicode-range: U+E2BA; } @font-face { font-family: "squareup"; src: url("glyphs/woff2/56c47c5a.woff2") format("woff2"), url("glyphs/woff/56c47c5a.woff") format("woff"), url("glyphs/ttf/56c47c5a.ttf") format("truetype"); unicode-range: U+E2BB; } @font-face { font-family: "kst"; src: url("glyphs/woff2/aa0b1cf4.woff2") format("woff2"), url("glyphs/woff/aa0b1cf4.woff") format("woff"), url("glyphs/ttf/aa0b1cf4.ttf") format("truetype"); unicode-range: U+E2BC; } @font-face { font-family: "start"; src: url("glyphs/woff2/0b4fc343.woff2") format("woff2"), url("glyphs/woff/0b4fc343.woff") format("woff"), url("glyphs/ttf/0b4fc343.ttf") format("truetype"); unicode-range: U+E2BD; } @font-face { font-family: "stac"; src: url("glyphs/woff2/cf02d8e2.woff2") format("woff2"), url("glyphs/woff/cf02d8e2.woff") format("woff"), url("glyphs/ttf/cf02d8e2.ttf") format("truetype"); unicode-range: U+E2BE; } @font-face { font-family: "snt"; src: url("glyphs/woff2/79fefc18.woff2") format("woff2"), url("glyphs/woff/79fefc18.woff") format("woff"), url("glyphs/ttf/79fefc18.ttf") format("truetype"); unicode-range: U+E2BF; } @font-face { font-family: "xst"; src: url("glyphs/woff2/df2fadba.woff2") format("woff2"), url("glyphs/woff/df2fadba.woff") format("woff"), url("glyphs/ttf/df2fadba.ttf") format("truetype"); unicode-range: U+E2C0; } @font-face { font-family: "steem"; src: url("glyphs/woff2/f874c31d.woff2") format("woff2"), url("glyphs/woff/f874c31d.woff") format("woff"), url("glyphs/ttf/f874c31d.ttf") format("truetype"); unicode-range: U+E2C1; } @font-face { font-family: "xlm"; src: url("glyphs/woff2/0ca412f2.woff2") format("woff2"), url("glyphs/woff/0ca412f2.woff") format("woff"), url("glyphs/ttf/0ca412f2.ttf") format("truetype"); unicode-range: U+E2C2; } @font-face { font-family: "slg"; src: url("glyphs/woff2/9375b000.woff2") format("woff2"), url("glyphs/woff/9375b000.woff") format("woff"), url("glyphs/ttf/9375b000.ttf") format("truetype"); unicode-range: U+E2C3; } @font-face { font-family: "stq"; src: url("glyphs/woff2/bae65807.woff2") format("woff2"), url("glyphs/woff/bae65807.woff") format("woff"), url("glyphs/ttf/bae65807.ttf") format("truetype"); unicode-range: U+E2C4; } @font-face { font-family: "storj"; src: url("glyphs/woff2/7b978459.woff2") format("woff2"), url("glyphs/woff/7b978459.woff") format("woff"), url("glyphs/ttf/7b978459.ttf") format("truetype"); unicode-range: U+E2C5; } @font-face { font-family: "sjcx"; src: url("glyphs/woff2/c3ad2575.woff2") format("woff2"), url("glyphs/woff/c3ad2575.woff") format("woff"), url("glyphs/ttf/c3ad2575.ttf") format("truetype"); unicode-range: U+E2C6; } @font-face { font-family: "storm"; src: url("glyphs/woff2/24e7e96e.woff2") format("woff2"), url("glyphs/woff/24e7e96e.woff") format("woff"), url("glyphs/ttf/24e7e96e.ttf") format("truetype"); unicode-range: U+E2C7; } @font-face { font-family: "stx"; src: url("glyphs/woff2/993b5d5e.woff2") format("woff2"), url("glyphs/woff/993b5d5e.woff") format("woff"), url("glyphs/ttf/993b5d5e.ttf") format("truetype"); unicode-range: U+E2C8; } @font-face { font-family: "strat"; src: url("glyphs/woff2/c71e8d9a.woff2") format("woff2"), url("glyphs/woff/c71e8d9a.woff") format("woff"), url("glyphs/ttf/c71e8d9a.ttf") format("truetype"); unicode-range: U+E2C9; } @font-face { font-family: "data"; src: url("glyphs/woff2/25ba326c.woff2") format("woff2"), url("glyphs/woff/25ba326c.woff") format("woff"), url("glyphs/ttf/25ba326c.ttf") format("truetype"); unicode-range: U+E2CA; } @font-face { font-family: "sub"; src: url("glyphs/woff2/e33b2c7f.woff2") format("woff2"), url("glyphs/woff/e33b2c7f.woff") format("woff"), url("glyphs/ttf/e33b2c7f.ttf") format("truetype"); unicode-range: U+E2CB; } @font-face { font-family: "sgr"; src: url("glyphs/woff2/ee154cca.woff2") format("woff2"), url("glyphs/woff/ee154cca.woff") format("woff"), url("glyphs/ttf/ee154cca.ttf") format("truetype"); unicode-range: U+E2CC; } @font-face { font-family: "sumo"; src: url("glyphs/woff2/b779fc78.woff2") format("woff2"), url("glyphs/woff/b779fc78.woff") format("woff"), url("glyphs/ttf/b779fc78.ttf") format("truetype"); unicode-range: U+E2CD; } @font-face { font-family: "snc"; src: url("glyphs/woff2/250eac5a.woff2") format("woff2"), url("glyphs/woff/250eac5a.woff") format("woff"), url("glyphs/ttf/250eac5a.ttf") format("truetype"); unicode-range: U+E2CE; } @font-face { font-family: "unity"; src: url("glyphs/woff2/c0becad5.woff2") format("woff2"), url("glyphs/woff/c0becad5.woff") format("woff"), url("glyphs/ttf/c0becad5.ttf") format("truetype"); unicode-range: U+E2CF; } @font-face { font-family: "swt"; src: url("glyphs/woff2/df6bc6bf.woff2") format("woff2"), url("glyphs/woff/df6bc6bf.woff") format("woff"), url("glyphs/ttf/df6bc6bf.ttf") format("truetype"); unicode-range: U+E2D0; } @font-face { font-family: "swm"; src: url("glyphs/woff2/7d68324f.woff2") format("woff2"), url("glyphs/woff/7d68324f.woff") format("woff"), url("glyphs/ttf/7d68324f.ttf") format("truetype"); unicode-range: U+E2D1; } @font-face { font-family: "swisspost"; src: url("glyphs/woff2/24a80660.woff2") format("woff2"), url("glyphs/woff/24a80660.woff") format("woff"), url("glyphs/ttf/24a80660.ttf") format("truetype"); unicode-range: U+E2D2; } @font-face { font-family: "swh"; src: url("glyphs/woff2/d2e8e796.woff2") format("woff2"), url("glyphs/woff/d2e8e796.woff") format("woff"), url("glyphs/ttf/d2e8e796.ttf") format("truetype"); unicode-range: U+E2D3; } @font-face { font-family: "sync"; src: url("glyphs/woff2/0067bba3.woff2") format("woff2"), url("glyphs/woff/0067bba3.woff") format("woff"), url("glyphs/ttf/0067bba3.ttf") format("truetype"); unicode-range: U+E2D4; } @font-face { font-family: "mfg"; src: url("glyphs/woff2/c290dee9.woff2") format("woff2"), url("glyphs/woff/c290dee9.woff") format("woff"), url("glyphs/ttf/c290dee9.ttf") format("truetype"); unicode-range: U+E2D5; } @font-face { font-family: "amp"; src: url("glyphs/woff2/61e075b5.woff2") format("woff2"), url("glyphs/woff/61e075b5.woff") format("woff"), url("glyphs/ttf/61e075b5.ttf") format("truetype"); unicode-range: U+E2D6; } @font-face { font-family: "snrg"; src: url("glyphs/woff2/e0cf68e8.woff2") format("woff2"), url("glyphs/woff/e0cf68e8.woff") format("woff"), url("glyphs/ttf/e0cf68e8.ttf") format("truetype"); unicode-range: U+E2D7; } @font-face { font-family: "sys"; src: url("glyphs/woff2/b86d565c.woff2") format("woff2"), url("glyphs/woff/b86d565c.woff") format("woff"), url("glyphs/ttf/b86d565c.ttf") format("truetype"); unicode-range: U+E2D8; } @font-face { font-family: "tidex"; src: url("glyphs/woff2/fd56eaf9.woff2") format("woff2"), url("glyphs/woff/fd56eaf9.woff") format("woff"), url("glyphs/ttf/fd56eaf9.ttf") format("truetype"); unicode-range: U+E2D9; } @font-face { font-family: "tie"; src: url("glyphs/woff2/6e3568e1.woff2") format("woff2"), url("glyphs/woff/6e3568e1.woff") format("woff"), url("glyphs/ttf/6e3568e1.ttf") format("truetype"); unicode-range: U+E2DA; } @font-face { font-family: "tntpost"; src: url("glyphs/woff2/159ee498.woff2") format("woff2"), url("glyphs/woff/159ee498.woff") format("woff"), url("glyphs/ttf/159ee498.ttf") format("truetype"); unicode-range: U+E2DB; } @font-face { font-family: "toll"; src: url("glyphs/woff2/957ea602.woff2") format("woff2"), url("glyphs/woff/957ea602.woff") format("woff"), url("glyphs/ttf/957ea602.ttf") format("truetype"); unicode-range: U+E2DC; } @font-face { font-family: "trezor"; src: url("glyphs/woff2/b8276594.woff2") format("woff2"), url("glyphs/woff/b8276594.woff") format("woff"), url("glyphs/ttf/b8276594.ttf") format("truetype"); unicode-range: U+E2DD; } @font-face { font-family: "trx"; src: url("glyphs/woff2/af60aa55.woff2") format("woff2"), url("glyphs/woff/af60aa55.woff") format("woff"), url("glyphs/ttf/af60aa55.ttf") format("truetype"); unicode-range: U+E2DE; } @font-face { font-family: "taas"; src: url("glyphs/woff2/e2ffe70e.woff2") format("woff2"), url("glyphs/woff/e2ffe70e.woff") format("woff"), url("glyphs/ttf/e2ffe70e.ttf") format("truetype"); unicode-range: U+E2DF; } @font-face { font-family: "tel"; src: url("glyphs/woff2/30042e01.woff2") format("woff2"), url("glyphs/woff/30042e01.woff") format("woff"), url("glyphs/ttf/30042e01.ttf") format("truetype"); unicode-range: U+E2E0; } @font-face { font-family: "pay"; src: url("glyphs/woff2/54940801.woff2") format("woff2"), url("glyphs/woff/54940801.woff") format("woff"), url("glyphs/ttf/54940801.ttf") format("truetype"); unicode-range: U+E2E1; } @font-face { font-family: "trc"; src: url("glyphs/woff2/14880f85.woff2") format("woff2"), url("glyphs/woff/14880f85.woff") format("woff"), url("glyphs/ttf/14880f85.ttf") format("truetype"); unicode-range: U+E2E2; } @font-face { font-family: "usdt"; src: url("glyphs/woff2/51792712.woff2") format("woff2"), url("glyphs/woff/51792712.woff") format("woff"), url("glyphs/ttf/51792712.ttf") format("truetype"); unicode-range: U+E2E3; } @font-face { font-family: "xtz"; src: url("glyphs/woff2/fda7a318.woff2") format("woff2"), url("glyphs/woff/fda7a318.woff") format("woff"), url("glyphs/ttf/fda7a318.ttf") format("truetype"); unicode-range: U+E2E4; } @font-face { font-family: "dao"; src: url("glyphs/woff2/1d45862b.woff2") format("woff2"), url("glyphs/woff/1d45862b.woff") format("woff"), url("glyphs/ttf/1d45862b.ttf") format("truetype"); unicode-range: U+E2E5; } @font-face { font-family: "rocktrading"; src: url("glyphs/woff2/d0a546a6.woff2") format("woff2"), url("glyphs/woff/d0a546a6.woff") format("woff"), url("glyphs/ttf/d0a546a6.ttf") format("truetype"); unicode-range: U+E2E6; } @font-face { font-family: "theta"; src: url("glyphs/woff2/2ae6c3ff.woff2") format("woff2"), url("glyphs/woff/2ae6c3ff.woff") format("woff"), url("glyphs/ttf/2ae6c3ff.ttf") format("truetype"); unicode-range: U+E2E7; } @font-face { font-family: "tnt"; src: url("glyphs/woff2/e516e4c5.woff2") format("woff2"), url("glyphs/woff/e516e4c5.woff") format("woff"), url("glyphs/ttf/e516e4c5.ttf") format("truetype"); unicode-range: U+E2E8; } @font-face { font-family: "tig"; src: url("glyphs/woff2/2be8c581.woff2") format("woff2"), url("glyphs/woff/2be8c581.woff") format("woff"), url("glyphs/ttf/2be8c581.ttf") format("truetype"); unicode-range: U+E2E9; } @font-face { font-family: "tnb"; src: url("glyphs/woff2/5496b078.woff2") format("woff2"), url("glyphs/woff/5496b078.woff") format("woff"), url("glyphs/ttf/5496b078.ttf") format("truetype"); unicode-range: U+E2EA; } @font-face { font-family: "tbar"; src: url("glyphs/woff2/0ecabbc7.woff2") format("woff2"), url("glyphs/woff/0ecabbc7.woff") format("woff"), url("glyphs/ttf/0ecabbc7.ttf") format("truetype"); unicode-range: U+E2EB; } @font-face { font-family: "bar"; src: url("glyphs/woff2/2e5887ef.woff2") format("woff2"), url("glyphs/woff/2e5887ef.woff") format("woff"), url("glyphs/ttf/2e5887ef.ttf") format("truetype"); unicode-range: U+E2EC; } @font-face { font-family: "token"; src: url("glyphs/woff2/36ac1140.woff2") format("woff2"), url("glyphs/woff/36ac1140.woff") format("woff"), url("glyphs/ttf/36ac1140.ttf") format("truetype"); unicode-range: U+E2ED; } @font-face { font-family: "tkn"; src: url("glyphs/woff2/8b604615.woff2") format("woff2"), url("glyphs/woff/8b604615.woff") format("woff"), url("glyphs/ttf/8b604615.ttf") format("truetype"); unicode-range: U+E2EE; } @font-face { font-family: "lyl"; src: url("glyphs/woff2/7dd88093.woff2") format("woff2"), url("glyphs/woff/7dd88093.woff") format("woff"), url("glyphs/ttf/7dd88093.ttf") format("truetype"); unicode-range: U+E2EF; } @font-face { font-family: "tpay"; src: url("glyphs/woff2/75058b72.woff2") format("woff2"), url("glyphs/woff/75058b72.woff") format("woff"), url("glyphs/ttf/75058b72.ttf") format("truetype"); unicode-range: U+E2F0; } @font-face { font-family: "tbx"; src: url("glyphs/woff2/d20bd061.woff2") format("woff2"), url("glyphs/woff/d20bd061.woff") format("woff"), url("glyphs/ttf/d20bd061.ttf") format("truetype"); unicode-range: U+E2F1; } @font-face { font-family: "tomo"; src: url("glyphs/woff2/8f9646bf.woff2") format("woff2"), url("glyphs/woff/8f9646bf.woff") format("woff"), url("glyphs/ttf/8f9646bf.ttf") format("truetype"); unicode-range: U+E2F2; } @font-face { font-family: "trct"; src: url("glyphs/woff2/0f971447.woff2") format("woff2"), url("glyphs/woff/0f971447.woff") format("woff"), url("glyphs/ttf/0f971447.ttf") format("truetype"); unicode-range: U+E2F3; } @font-face { font-family: "tradesatoshi"; src: url("glyphs/woff2/c1581e36.woff2") format("woff2"), url("glyphs/woff/c1581e36.woff") format("woff"), url("glyphs/ttf/c1581e36.ttf") format("truetype"); unicode-range: U+E2F4; } @font-face { font-family: "tio"; src: url("glyphs/woff2/b410b0fe.woff2") format("woff2"), url("glyphs/woff/b410b0fe.woff") format("woff"), url("glyphs/ttf/b410b0fe.ttf") format("truetype"); unicode-range: U+E2F5; } @font-face { font-family: "tradingview"; src: url("glyphs/woff2/619e1843.woff2") format("woff2"), url("glyphs/woff/619e1843.woff") format("woff"), url("glyphs/ttf/619e1843.ttf") format("truetype"); unicode-range: U+E2F6; } @font-face { font-family: "tx"; src: url("glyphs/woff2/66a94b72.woff2") format("woff2"), url("glyphs/woff/66a94b72.woff") format("woff"), url("glyphs/ttf/66a94b72.ttf") format("truetype"); unicode-range: U+E2F7; } @font-face { font-family: "trig"; src: url("glyphs/woff2/b82f6a43.woff2") format("woff2"), url("glyphs/woff/b82f6a43.woff") format("woff"), url("glyphs/ttf/b82f6a43.ttf") format("truetype"); unicode-range: U+E2F8; } @font-face { font-family: "tnc"; src: url("glyphs/woff2/b3273cc3.woff2") format("woff2"), url("glyphs/woff/b3273cc3.woff") format("woff"), url("glyphs/ttf/b3273cc3.ttf") format("truetype"); unicode-range: U+E2F9; } @font-face { font-family: "true"; src: url("glyphs/woff2/49c0e6d5.woff2") format("woff2"), url("glyphs/woff/49c0e6d5.woff") format("woff"), url("glyphs/ttf/49c0e6d5.ttf") format("truetype"); unicode-range: U+E2FA; } @font-face { font-family: "tusd"; src: url("glyphs/woff2/72213980.woff2") format("woff2"), url("glyphs/woff/72213980.woff") format("woff"), url("glyphs/ttf/72213980.ttf") format("truetype"); unicode-range: U+E2FB; } @font-face { font-family: "try"; src: url("glyphs/woff2/f674659b.woff2") format("woff2"), url("glyphs/woff/f674659b.woff") format("woff"), url("glyphs/ttf/f674659b.ttf") format("truetype"); unicode-range: U+E2FC; } @font-face { font-family: "ucash"; src: url("glyphs/woff2/300b40cf.woff2") format("woff2"), url("glyphs/woff/300b40cf.woff") format("woff"), url("glyphs/ttf/300b40cf.ttf") format("truetype"); unicode-range: U+E2FD; } @font-face { font-family: "ups"; src: url("glyphs/woff2/c0b59cd5.woff2") format("woff2"), url("glyphs/woff/c0b59cd5.woff") format("woff"), url("glyphs/ttf/c0b59cd5.ttf") format("truetype"); unicode-range: U+E2FE; } @font-face { font-family: "usd"; src: url("glyphs/woff2/604eb358.woff2") format("woff2"), url("glyphs/woff/604eb358.woff") format("woff"), url("glyphs/ttf/604eb358.ttf") format("truetype"); unicode-range: U+E2FF; } @font-face { font-family: "utk"; src: url("glyphs/woff2/2849840b.woff2") format("woff2"), url("glyphs/woff/2849840b.woff") format("woff"), url("glyphs/ttf/2849840b.ttf") format("truetype"); unicode-range: U+E300; } @font-face { font-family: "ubq"; src: url("glyphs/woff2/a54fe823.woff2") format("woff2"), url("glyphs/woff/a54fe823.woff") format("woff"), url("glyphs/ttf/a54fe823.ttf") format("truetype"); unicode-range: U+E301; } @font-face { font-family: "ukg"; src: url("glyphs/woff2/b25a5c47.woff2") format("woff2"), url("glyphs/woff/b25a5c47.woff") format("woff"), url("glyphs/ttf/b25a5c47.ttf") format("truetype"); unicode-range: U+E302; } @font-face { font-family: "ubank"; src: url("glyphs/woff2/e07866a3.woff2") format("woff2"), url("glyphs/woff/e07866a3.woff") format("woff"), url("glyphs/ttf/e07866a3.ttf") format("truetype"); unicode-range: U+E303; } @font-face { font-family: "uboi"; src: url("glyphs/woff2/8ba1a228.woff2") format("woff2"), url("glyphs/woff/8ba1a228.woff") format("woff"), url("glyphs/ttf/8ba1a228.ttf") format("truetype"); unicode-range: U+E304; } @font-face { font-family: "unionpay"; src: url("glyphs/woff2/1cc31435.woff2") format("woff2"), url("glyphs/woff/1cc31435.woff") format("woff"), url("glyphs/ttf/1cc31435.ttf") format("truetype"); unicode-range: U+E305; } @font-face { font-family: "usps"; src: url("glyphs/woff2/66ef61bc.woff2") format("woff2"), url("glyphs/woff/66ef61bc.woff") format("woff"), url("glyphs/ttf/66ef61bc.ttf") format("truetype"); unicode-range: U+E306; } @font-face { font-family: "uno"; src: url("glyphs/woff2/98357202.woff2") format("woff2"), url("glyphs/woff/98357202.woff") format("woff"), url("glyphs/ttf/98357202.ttf") format("truetype"); unicode-range: U+E307; } @font-face { font-family: "up"; src: url("glyphs/woff2/56ed6f41.woff2") format("woff2"), url("glyphs/woff/56ed6f41.woff") format("woff"), url("glyphs/ttf/56ed6f41.ttf") format("truetype"); unicode-range: U+E308; } @font-face { font-family: "upcoin"; src: url("glyphs/woff2/accd5a71.woff2") format("woff2"), url("glyphs/woff/accd5a71.woff") format("woff"), url("glyphs/ttf/accd5a71.ttf") format("truetype"); unicode-range: U+E309; } @font-face { font-family: "vpay"; src: url("glyphs/woff2/1cd81072.woff2") format("woff2"), url("glyphs/woff/1cd81072.woff") format("woff"), url("glyphs/ttf/1cd81072.ttf") format("truetype"); unicode-range: U+E30A; } @font-face { font-family: "vibe"; src: url("glyphs/woff2/793b5687.woff2") format("woff2"), url("glyphs/woff/793b5687.woff") format("woff"), url("glyphs/ttf/793b5687.ttf") format("truetype"); unicode-range: U+E30B; } @font-face { font-family: "visa"; src: url("glyphs/woff2/e094cfe4.woff2") format("woff2"), url("glyphs/woff/e094cfe4.woff") format("woff"), url("glyphs/ttf/e094cfe4.ttf") format("truetype"); unicode-range: U+E30C; } @font-face { font-family: "vash"; src: url("glyphs/woff2/f871e4e4.woff2") format("woff2"), url("glyphs/woff/f871e4e4.woff") format("woff"), url("glyphs/ttf/f871e4e4.ttf") format("truetype"); unicode-range: U+E30D; } @font-face { font-family: "vlc"; src: url("glyphs/woff2/86e445ff.woff2") format("woff2"), url("glyphs/woff/86e445ff.woff") format("woff"), url("glyphs/ttf/86e445ff.ttf") format("truetype"); unicode-range: U+E30E; } @font-face { font-family: "vnl"; src: url("glyphs/woff2/81c6c9c0.woff2") format("woff2"), url("glyphs/woff/81c6c9c0.woff") format("woff"), url("glyphs/ttf/81c6c9c0.ttf") format("truetype"); unicode-range: U+E30F; } @font-face { font-family: "vaultoro"; src: url("glyphs/woff2/0c40016a.woff2") format("woff2"), url("glyphs/woff/0c40016a.woff") format("woff"), url("glyphs/ttf/0c40016a.ttf") format("truetype"); unicode-range: U+E310; } @font-face { font-family: "ven"; src: url("glyphs/woff2/6ff07dde.woff2") format("woff2"), url("glyphs/woff/6ff07dde.woff") format("woff"), url("glyphs/ttf/6ff07dde.ttf") format("truetype"); unicode-range: U+E311; } @font-face { font-family: "xvg"; src: url("glyphs/woff2/e8777ffa.woff2") format("woff2"), url("glyphs/woff/e8777ffa.woff") format("woff"), url("glyphs/ttf/e8777ffa.ttf") format("truetype"); unicode-range: U+E312; } @font-face { font-family: "vrc"; src: url("glyphs/woff2/667938fd.woff2") format("woff2"), url("glyphs/woff/667938fd.woff") format("woff"), url("glyphs/ttf/667938fd.ttf") format("truetype"); unicode-range: U+E313; } @font-face { font-family: "verisign"; src: url("glyphs/woff2/3e670521.woff2") format("woff2"), url("glyphs/woff/3e670521.woff") format("woff"), url("glyphs/ttf/3e670521.ttf") format("truetype"); unicode-range: U+E314; } @font-face { font-family: "cred"; src: url("glyphs/woff2/cd3dc2c3.woff2") format("woff2"), url("glyphs/woff/cd3dc2c3.woff") format("woff"), url("glyphs/ttf/cd3dc2c3.ttf") format("truetype"); unicode-range: U+E315; } @font-face { font-family: "veri"; src: url("glyphs/woff2/3bd53fee.woff2") format("woff2"), url("glyphs/woff/3bd53fee.woff") format("woff"), url("glyphs/ttf/3bd53fee.ttf") format("truetype"); unicode-range: U+E316; } @font-face { font-family: "vtc"; src: url("glyphs/woff2/95ce85b0.woff2") format("woff2"), url("glyphs/woff/95ce85b0.woff") format("woff"), url("glyphs/ttf/95ce85b0.ttf") format("truetype"); unicode-range: U+E317; } @font-face { font-family: "via"; src: url("glyphs/woff2/a97d857e.woff2") format("woff2"), url("glyphs/woff/a97d857e.woff") format("woff"), url("glyphs/ttf/a97d857e.ttf") format("truetype"); unicode-range: U+E318; } @font-face { font-family: "vib"; src: url("glyphs/woff2/2e27c6c1.woff2") format("woff2"), url("glyphs/woff/2e27c6c1.woff") format("woff"), url("glyphs/ttf/2e27c6c1.ttf") format("truetype"); unicode-range: U+E319; } @font-face { font-family: "vit"; src: url("glyphs/woff2/9e0089cc.woff2") format("woff2"), url("glyphs/woff/9e0089cc.woff") format("woff"), url("glyphs/ttf/9e0089cc.ttf") format("truetype"); unicode-range: U+E31A; } @font-face { font-family: "vior"; src: url("glyphs/woff2/c931b176.woff2") format("woff2"), url("glyphs/woff/c931b176.woff") format("woff"), url("glyphs/ttf/c931b176.ttf") format("truetype"); unicode-range: U+E31B; } @font-face { font-family: "viu"; src: url("glyphs/woff2/511209fe.woff2") format("woff2"), url("glyphs/woff/511209fe.woff") format("woff"), url("glyphs/ttf/511209fe.ttf") format("truetype"); unicode-range: U+E31C; } @font-face { font-family: "voise"; src: url("glyphs/woff2/4b099001.woff2") format("woff2"), url("glyphs/woff/4b099001.woff") format("woff"), url("glyphs/ttf/4b099001.ttf") format("truetype"); unicode-range: U+E31D; } @font-face { font-family: "vtn"; src: url("glyphs/woff2/2fd2e914.woff2") format("woff2"), url("glyphs/woff/2fd2e914.woff") format("woff"), url("glyphs/ttf/2fd2e914.ttf") format("truetype"); unicode-range: U+E31E; } @font-face { font-family: "vox"; src: url("glyphs/woff2/b70c5e32.woff2") format("woff2"), url("glyphs/woff/b70c5e32.woff") format("woff"), url("glyphs/ttf/b70c5e32.ttf") format("truetype"); unicode-range: U+E31F; } @font-face { font-family: "vsx"; src: url("glyphs/woff2/d57e51c5.woff2") format("woff2"), url("glyphs/woff/d57e51c5.woff") format("woff"), url("glyphs/ttf/d57e51c5.ttf") format("truetype"); unicode-range: U+E320; } @font-face { font-family: "wax"; src: url("glyphs/woff2/b9a227e4.woff2") format("woff2"), url("glyphs/woff/b9a227e4.woff") format("woff"), url("glyphs/ttf/b9a227e4.ttf") format("truetype"); unicode-range: U+E321; } @font-face { font-family: "weth"; src: url("glyphs/woff2/882182c1.woff2") format("woff2"), url("glyphs/woff/882182c1.woff") format("woff"), url("glyphs/ttf/882182c1.ttf") format("truetype"); unicode-range: U+E322; } @font-face { font-family: "wabi"; src: url("glyphs/woff2/c579a0a6.woff2") format("woff2"), url("glyphs/woff/c579a0a6.woff") format("woff"), url("glyphs/ttf/c579a0a6.ttf") format("truetype"); unicode-range: U+E323; } @font-face { font-family: "wgr"; src: url("glyphs/woff2/7ca46b25.woff2") format("woff2"), url("glyphs/woff/7ca46b25.woff") format("woff"), url("glyphs/ttf/7ca46b25.ttf") format("truetype"); unicode-range: U+E324; } @font-face { font-family: "wtc"; src: url("glyphs/woff2/19f8d5af.woff2") format("woff2"), url("glyphs/woff/19f8d5af.woff") format("woff"), url("glyphs/ttf/19f8d5af.ttf") format("truetype"); unicode-range: U+E325; } @font-face { font-family: "wan"; src: url("glyphs/woff2/982f3edc.woff2") format("woff2"), url("glyphs/woff/982f3edc.woff") format("woff"), url("glyphs/ttf/982f3edc.ttf") format("truetype"); unicode-range: U+E326; } @font-face { font-family: "wct"; src: url("glyphs/woff2/85a57a2a.woff2") format("woff2"), url("glyphs/woff/85a57a2a.woff") format("woff"), url("glyphs/ttf/85a57a2a.ttf") format("truetype"); unicode-range: U+E327; } @font-face { font-family: "waves"; src: url("glyphs/woff2/f324b46a.woff2") format("woff2"), url("glyphs/woff/f324b46a.woff") format("woff"), url("glyphs/ttf/f324b46a.ttf") format("truetype"); unicode-range: U+E328; } @font-face { font-family: "wechatpay"; src: url("glyphs/woff2/c7e2b3d5.woff2") format("woff2"), url("glyphs/woff/c7e2b3d5.woff") format("woff"), url("glyphs/ttf/c7e2b3d5.ttf") format("truetype"); unicode-range: U+E329; } @font-face { font-family: "wpr"; src: url("glyphs/woff2/80160b96.woff2") format("woff2"), url("glyphs/woff/80160b96.woff") format("woff"), url("glyphs/ttf/80160b96.ttf") format("truetype"); unicode-range: U+E32A; } @font-face { font-family: "trst"; src: url("glyphs/woff2/78f17a21.woff2") format("woff2"), url("glyphs/woff/78f17a21.woff") format("woff"), url("glyphs/ttf/78f17a21.ttf") format("truetype"); unicode-range: U+E32B; } @font-face { font-family: "webmoney"; src: url("glyphs/woff2/7692acf2.woff2") format("woff2"), url("glyphs/woff/7692acf2.woff") format("woff"), url("glyphs/ttf/7692acf2.ttf") format("truetype"); unicode-range: U+E32C; } @font-face { font-family: "wings"; src: url("glyphs/woff2/e98b08c6.woff2") format("woff2"), url("glyphs/woff/e98b08c6.woff") format("woff"), url("glyphs/ttf/e98b08c6.ttf") format("truetype"); unicode-range: U+E32D; } @font-face { font-family: "wrc"; src: url("glyphs/woff2/264d968f.woff2") format("woff2"), url("glyphs/woff/264d968f.woff") format("woff"), url("glyphs/ttf/264d968f.ttf") format("truetype"); unicode-range: U+E32E; } @font-face { font-family: "xpa"; src: url("glyphs/woff2/58c58e95.woff2") format("woff2"), url("glyphs/woff/58c58e95.woff") format("woff"), url("glyphs/ttf/58c58e95.ttf") format("truetype"); unicode-range: U+E32F; } @font-face { font-family: "xpl"; src: url("glyphs/woff2/30d929ef.woff2") format("woff2"), url("glyphs/woff/30d929ef.woff") format("woff"), url("glyphs/ttf/30d929ef.ttf") format("truetype"); unicode-range: U+E330; } @font-face { font-family: "xby"; src: url("glyphs/woff2/f352189b.woff2") format("woff2"), url("glyphs/woff/f352189b.woff") format("woff"), url("glyphs/ttf/f352189b.ttf") format("truetype"); unicode-range: U+E331; } @font-face { font-family: "xaur"; src: url("glyphs/woff2/6cf59e55.woff2") format("woff2"), url("glyphs/woff/6cf59e55.woff") format("woff"), url("glyphs/ttf/6cf59e55.ttf") format("truetype"); unicode-range: U+E332; } @font-face { font-family: "xnn"; src: url("glyphs/woff2/131b3834.woff2") format("woff2"), url("glyphs/woff/131b3834.woff") format("woff"), url("glyphs/ttf/131b3834.ttf") format("truetype"); unicode-range: U+E333; } @font-face { font-family: "yoyow"; src: url("glyphs/woff2/e5e909f3.woff2") format("woff2"), url("glyphs/woff/e5e909f3.woff") format("woff"), url("glyphs/ttf/e5e909f3.ttf") format("truetype"); unicode-range: U+E334; } @font-face { font-family: "yandex"; src: url("glyphs/woff2/cb2908e9.woff2") format("woff2"), url("glyphs/woff/cb2908e9.woff") format("woff"), url("glyphs/ttf/cb2908e9.ttf") format("truetype"); unicode-range: U+E335; } @font-face { font-family: "ybc"; src: url("glyphs/woff2/10350c93.woff2") format("woff2"), url("glyphs/woff/10350c93.woff") format("woff"), url("glyphs/ttf/10350c93.ttf") format("truetype"); unicode-range: U+E336; } @font-face { font-family: "yobit"; src: url("glyphs/woff2/f80829f5.woff2") format("woff2"), url("glyphs/woff/f80829f5.woff") format("woff"), url("glyphs/ttf/f80829f5.ttf") format("truetype"); unicode-range: U+E337; } @font-face { font-family: "zcl"; src: url("glyphs/woff2/5922a1ce.woff2") format("woff2"), url("glyphs/woff/5922a1ce.woff") format("woff"), url("glyphs/ttf/5922a1ce.ttf") format("truetype"); unicode-range: U+E338; } @font-face { font-family: "xzc"; src: url("glyphs/woff2/fa9edb37.woff2") format("woff2"), url("glyphs/woff/fa9edb37.woff") format("woff"), url("glyphs/ttf/fa9edb37.ttf") format("truetype"); unicode-range: U+E339; } @font-face { font-family: "zec"; src: url("glyphs/woff2/0cfc2998.woff2") format("woff2"), url("glyphs/woff/0cfc2998.woff") format("woff"), url("glyphs/ttf/0cfc2998.ttf") format("truetype"); unicode-range: U+E33A; } @font-face { font-family: "zpt"; src: url("glyphs/woff2/e49824ce.woff2") format("woff2"), url("glyphs/woff/e49824ce.woff") format("woff"), url("glyphs/ttf/e49824ce.ttf") format("truetype"); unicode-range: U+E33B; } @font-face { font-family: "zeit"; src: url("glyphs/woff2/f6bda42b.woff2") format("woff2"), url("glyphs/woff/f6bda42b.woff") format("woff"), url("glyphs/ttf/f6bda42b.ttf") format("truetype"); unicode-range: U+E33C; } @font-face { font-family: "zen"; src: url("glyphs/woff2/24d18e39.woff2") format("woff2"), url("glyphs/woff/24d18e39.woff") format("woff"), url("glyphs/ttf/24d18e39.ttf") format("truetype"); unicode-range: U+E33D; } @font-face { font-family: "zrx"; src: url("glyphs/woff2/2f84e1d2.woff2") format("woff2"), url("glyphs/woff/2f84e1d2.woff") format("woff"), url("glyphs/ttf/2f84e1d2.ttf") format("truetype"); unicode-range: U+E33E; } @font-face { font-family: "zsc"; src: url("glyphs/woff2/97e6e2a1.woff2") format("woff2"), url("glyphs/woff/97e6e2a1.woff") format("woff"), url("glyphs/ttf/97e6e2a1.ttf") format("truetype"); unicode-range: U+E33F; } @font-face { font-family: "zil"; src: url("glyphs/woff2/98117c28.woff2") format("woff2"), url("glyphs/woff/98117c28.woff") format("woff"), url("glyphs/ttf/98117c28.ttf") format("truetype"); unicode-range: U+E340; } @font-face { font-family: "zoi"; src: url("glyphs/woff2/a1b08642.woff2") format("woff2"), url("glyphs/woff/a1b08642.woff") format("woff"), url("glyphs/ttf/a1b08642.ttf") format("truetype"); unicode-range: U+E341; } @font-face { font-family: "zrc"; src: url("glyphs/woff2/8d4d7cd2.woff2") format("woff2"), url("glyphs/woff/8d4d7cd2.woff") format("woff"), url("glyphs/ttf/8d4d7cd2.ttf") format("truetype"); unicode-range: U+E342; } @font-face { font-family: "axp"; src: url("glyphs/woff2/703d038d.woff2") format("woff2"), url("glyphs/woff/703d038d.woff") format("woff"), url("glyphs/ttf/703d038d.ttf") format("truetype"); unicode-range: U+E343; } @font-face { font-family: "adt"; src: url("glyphs/woff2/d214de53.woff2") format("woff2"), url("glyphs/woff/d214de53.woff") format("woff"), url("glyphs/ttf/d214de53.ttf") format("truetype"); unicode-range: U+E344; } @font-face { font-family: "elf"; src: url("glyphs/woff2/907dea52.woff2") format("woff2"), url("glyphs/woff/907dea52.woff") format("woff"), url("glyphs/ttf/907dea52.ttf") format("truetype"); unicode-range: U+E345; } @font-face { font-family: "bitcny"; src: url("glyphs/woff2/114520c4.woff2") format("woff2"), url("glyphs/woff/114520c4.woff") format("woff"), url("glyphs/ttf/114520c4.ttf") format("truetype"); unicode-range: U+E346; } @font-face { font-family: "coinsecure"; src: url("glyphs/woff2/afb6634e.woff2") format("woff2"), url("glyphs/woff/afb6634e.woff") format("woff"), url("glyphs/ttf/afb6634e.ttf") format("truetype"); unicode-range: U+E347; } @font-face { font-family: "coinw"; src: url("glyphs/woff2/b2e0a125.woff2") format("woff2"), url("glyphs/woff/b2e0a125.woff") format("woff"), url("glyphs/ttf/b2e0a125.ttf") format("truetype"); unicode-range: U+E348; } @font-face { font-family: "dnt"; src: url("glyphs/woff2/616d19f1.woff2") format("woff2"), url("glyphs/woff/616d19f1.woff") format("woff"), url("glyphs/ttf/616d19f1.ttf") format("truetype"); unicode-range: U+E349; } @font-face { font-family: "ebtc"; src: url("glyphs/woff2/928b86d7.woff2") format("woff2"), url("glyphs/woff/928b86d7.woff") format("woff"), url("glyphs/ttf/928b86d7.ttf") format("truetype"); unicode-range: U+E34A; } @font-face { font-family: "egold"; src: url("glyphs/woff2/1098551a.woff2") format("woff2"), url("glyphs/woff/1098551a.woff") format("woff"), url("glyphs/ttf/1098551a.ttf") format("truetype"); unicode-range: U+E34B; } @font-face { font-family: "ideal"; src: url("glyphs/woff2/6c187b99.woff2") format("woff2"), url("glyphs/woff/6c187b99.woff") format("woff"), url("glyphs/ttf/6c187b99.ttf") format("truetype"); unicode-range: U+E34C; } @font-face { font-family: "rlc"; src: url("glyphs/woff2/6d4a4c73.woff2") format("woff2"), url("glyphs/woff/6d4a4c73.woff") format("woff"), url("glyphs/ttf/6d4a4c73.ttf") format("truetype"); unicode-range: U+E34D; } @font-face { font-family: "ixt"; src: url("glyphs/woff2/d6f4d6c5.woff2") format("woff2"), url("glyphs/woff/d6f4d6c5.woff") format("woff"), url("glyphs/ttf/d6f4d6c5.ttf") format("truetype"); unicode-range: U+E34E; } @font-face { font-family: "mrc"; src: url("glyphs/woff2/4d6b8b33.woff2") format("woff2"), url("glyphs/woff/4d6b8b33.woff") format("woff"), url("glyphs/ttf/4d6b8b33.ttf") format("truetype"); unicode-range: U+E34F; } @font-face { font-family: "stripe"; src: url("glyphs/woff2/56652a37.woff2") format("woff2"), url("glyphs/woff/56652a37.woff") format("woff"), url("glyphs/ttf/56652a37.ttf") format("truetype"); unicode-range: U+E350; } \ No newline at end of file diff --git a/cmd/web/static/fonts/cryptocoins.css b/cmd/web/static/fonts/cryptocoins.css deleted file mode 100644 index 6829169..0000000 --- a/cmd/web/static/fonts/cryptocoins.css +++ /dev/null @@ -1,1150 +0,0 @@ -/*! Cryptocoins - cryptocurrency icon font | https://github.com/allienworks/cryptocoins */ - -@font-face { - font-family: "cryptocoins"; - src: url('cryptocoins.woff2') format('woff2'), - url('cryptocoins.woff') format('woff'), - url('cryptocoins.ttf') format('truetype'); -} - -/* .cc:before { */ -.cc::before { - font-family: "cryptocoins"; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; - font-style: normal; - font-variant: normal; - font-weight: normal; - /* speak: none; only necessary if not using the private unicode range (firstGlyph option) */ - text-decoration: none; - text-transform: none; -} - - -.cc.ADA-alt::before { - content: "\E001"; -} - -.cc.ADA::before { - content: "\E002"; -} - -.cc.ADC-alt::before { - content: "\E003"; -} - -.cc.ADC::before { - content: "\E004"; -} - -.cc.AEON-alt::before { - content: "\E005"; -} - -.cc.AEON::before { - content: "\E006"; -} - -.cc.AMP-alt::before { - content: "\E007"; -} - -.cc.AMP::before { - content: "\E008"; -} - -.cc.ANC-alt::before { - content: "\E009"; -} - -.cc.ANC::before { - content: "\E00A"; -} - -.cc.ARCH-alt::before { - content: "\E00B"; -} - -.cc.ARCH::before { - content: "\E00C"; -} - -.cc.ARDR-alt::before { - content: "\E00D"; -} - -.cc.ARDR::before { - content: "\E00E"; -} - -.cc.ARK-alt::before { - content: "\E00F"; -} - -.cc.ARK::before { - content: "\E010"; -} - -.cc.AUR-alt::before { - content: "\E011"; -} - -.cc.AUR::before { - content: "\E012"; -} - -.cc.BANX-alt::before { - content: "\E013"; -} - -.cc.BANX::before { - content: "\E014"; -} - -.cc.BAT-alt::before { - content: "\E015"; -} - -.cc.BAT::before { - content: "\E016"; -} - -.cc.BAY-alt::before { - content: "\E017"; -} - -.cc.BAY::before { - content: "\E018"; -} - -.cc.BC-alt::before { - content: "\E019"; -} - -.cc.BC::before { - content: "\E01A"; -} - -.cc.BCH-alt::before { - content: "\E01B"; -} - -.cc.BCH::before { - content: "\E01C"; -} - -.cc.BCN-alt::before { - content: "\E01D"; -} - -.cc.BCN::before { - content: "\E01E"; -} - -.cc.BFT-alt::before { - content: "\E01F"; -} - -.cc.BFT::before { - content: "\E020"; -} - -.cc.BRK-alt::before { - content: "\E021"; -} - -.cc.BRK::before { - content: "\E022"; -} - -.cc.BRX-alt::before { - content: "\E023"; -} - -.cc.BRX::before { - content: "\E024"; -} - -.cc.BSD-alt::before { - content: "\E025"; -} - -.cc.BSD::before { - content: "\E026"; -} - -.cc.BTA::before { - content: "\E027"; -} - -.cc.BTC-alt::before { - content: "\E028"; -} - -.cc.BTC::before { - content: "\E029"; -} - -.cc.BTCD-alt::before { - content: "\E02A"; -} - -.cc.BTCD::before { - content: "\E02B"; -} - -.cc.BTM-alt::before { - content: "\E02C"; -} - -.cc.BTM::before { - content: "\E02D"; -} - -.cc.BTS-alt::before { - content: "\E02E"; -} - -.cc.BTS::before { - content: "\E02F"; -} - -.cc.CLAM-alt::before { - content: "\E030"; -} - -.cc.CLAM::before { - content: "\E031"; -} - -.cc.CLOAK-alt::before { - content: "\E032"; -} - -.cc.CLOAK::before { - content: "\E033"; -} - -.cc.DAO-alt::before { - content: "\E034"; -} - -.cc.DAO::before { - content: "\E035"; -} - -.cc.DASH-alt::before { - content: "\E036"; -} - -.cc.DASH::before { - content: "\E037"; -} - -.cc.DCR-alt::before { - content: "\E038"; -} - -.cc.DCR::before { - content: "\E039"; -} - -.cc.DCT-alt::before { - content: "\E03A"; -} - -.cc.DCT::before { - content: "\E03B"; -} - -.cc.DGB-alt::before { - content: "\E03C"; -} - -.cc.DGB::before { - content: "\E03D"; -} - -.cc.DGD::before { - content: "\E03E"; -} - -.cc.DGX::before { - content: "\E03F"; -} - -.cc.DMD-alt::before { - content: "\E040"; -} - -.cc.DMD::before { - content: "\E041"; -} - -.cc.DOGE-alt::before { - content: "\E042"; -} - -.cc.DOGE::before { - content: "\E043"; -} - -.cc.EMC-alt::before { - content: "\E044"; -} - -.cc.EMC::before { - content: "\E045"; -} - -.cc.EOS-alt::before { - content: "\E046"; -} - -.cc.EOS::before { - content: "\E047"; -} - -.cc.ERC-alt::before { - content: "\E048"; -} - -.cc.ERC::before { - content: "\E049"; -} - -.cc.ETC-alt::before { - content: "\E04A"; -} - -.cc.ETC::before { - content: "\E04B"; -} - -.cc.ETH-alt::before { - content: "\E04C"; -} - -.cc.ETH::before { - content: "\E04D"; -} - -.cc.FC2-alt::before { - content: "\E04E"; -} - -.cc.FC2::before { - content: "\E04F"; -} - -.cc.FCT-alt::before { - content: "\E050"; -} - -.cc.FCT::before { - content: "\E051"; -} - -.cc.FLO-alt::before { - content: "\E052"; -} - -.cc.FLO::before { - content: "\E053"; -} - -.cc.FRK-alt::before { - content: "\E054"; -} - -.cc.FRK::before { - content: "\E055"; -} - -.cc.FTC-alt::before { - content: "\E056"; -} - -.cc.FTC::before { - content: "\E057"; -} - -.cc.GAME-alt::before { - content: "\E058"; -} - -.cc.GAME::before { - content: "\E059"; -} - -.cc.GBYTE-alt::before { - content: "\E05A"; -} - -.cc.GBYTE::before { - content: "\E05B"; -} - -.cc.GDC-alt::before { - content: "\E05C"; -} - -.cc.GDC::before { - content: "\E05D"; -} - -.cc.GEMZ-alt::before { - content: "\E05E"; -} - -.cc.GEMZ::before { - content: "\E05F"; -} - -.cc.GLD-alt::before { - content: "\E060"; -} - -.cc.GLD::before { - content: "\E061"; -} - -.cc.GNO-alt::before { - content: "\E062"; -} - -.cc.GNO::before { - content: "\E063"; -} - -.cc.GNT-alt::before { - content: "\E064"; -} - -.cc.GNT::before { - content: "\E065"; -} - -.cc.GOLOS-alt::before { - content: "\E066"; -} - -.cc.GOLOS::before { - content: "\E067"; -} - -.cc.GRC-alt::before { - content: "\E068"; -} - -.cc.GRC::before { - content: "\E069"; -} - -.cc.GRS::before { - content: "\E06A"; -} - -.cc.HEAT-alt::before { - content: "\E06B"; -} - -.cc.HEAT::before { - content: "\E06C"; -} - -.cc.ICN-alt::before { - content: "\E06D"; -} - -.cc.ICN::before { - content: "\E06E"; -} - -.cc.IFC-alt::before { - content: "\E06F"; -} - -.cc.IFC::before { - content: "\E070"; -} - -.cc.INCNT-alt::before { - content: "\E071"; -} - -.cc.INCNT::before { - content: "\E072"; -} - -.cc.IOC-alt::before { - content: "\E073"; -} - -.cc.IOC::before { - content: "\E074"; -} - -.cc.IOTA-alt::before { - content: "\E075"; -} - -.cc.IOTA::before { - content: "\E076"; -} - -.cc.JBS-alt::before { - content: "\E077"; -} - -.cc.JBS::before { - content: "\E078"; -} - -.cc.KMD-alt::before { - content: "\E079"; -} - -.cc.KMD::before { - content: "\E07A"; -} - -.cc.KOBO::before { - content: "\E07B"; -} - -.cc.KORE-alt::before { - content: "\E07C"; -} - -.cc.KORE::before { - content: "\E07D"; -} - -.cc.LBC-alt::before { - content: "\E07E"; -} - -.cc.LBC::before { - content: "\E07F"; -} - -.cc.LDOGE-alt::before { - content: "\E080"; -} - -.cc.LDOGE::before { - content: "\E081"; -} - -.cc.LSK-alt::before { - content: "\E082"; -} - -.cc.LSK::before { - content: "\E083"; -} - -.cc.LTC-alt::before { - content: "\E084"; -} - -.cc.LTC::before { - content: "\E085"; -} - -.cc.MAID-alt::before { - content: "\E086"; -} - -.cc.MAID::before { - content: "\E087"; -} - -.cc.MCO-alt::before { - content: "\E088"; -} - -.cc.MCO::before { - content: "\E089"; -} - -.cc.MINT-alt::before { - content: "\E08A"; -} - -.cc.MINT::before { - content: "\E08B"; -} - -.cc.MONA-alt::before { - content: "\E08C"; -} - -.cc.MONA::before { - content: "\E08D"; -} - -.cc.MRC::before { - content: "\E08E"; -} - -.cc.MSC-alt::before { - content: "\E08F"; -} - -.cc.MSC::before { - content: "\E090"; -} - -.cc.MTR-alt::before { - content: "\E091"; -} - -.cc.MTR::before { - content: "\E092"; -} - -.cc.MUE-alt::before { - content: "\E093"; -} - -.cc.MUE::before { - content: "\E094"; -} - -.cc.NBT::before { - content: "\E095"; -} - -.cc.NEO-alt::before { - content: "\E096"; -} - -.cc.NEO::before { - content: "\E097"; -} - -.cc.NEOS-alt::before { - content: "\E098"; -} - -.cc.NEOS::before { - content: "\E099"; -} - -.cc.NEU-alt::before { - content: "\E09A"; -} - -.cc.NEU::before { - content: "\E09B"; -} - -.cc.NLG-alt::before { - content: "\E09C"; -} - -.cc.NLG::before { - content: "\E09D"; -} - -.cc.NMC-alt::before { - content: "\E09E"; -} - -.cc.NMC::before { - content: "\E09F"; -} - -.cc.NOTE-alt::before { - content: "\E0A0"; -} - -.cc.NOTE::before { - content: "\E0A1"; -} - -.cc.NVC-alt::before { - content: "\E0A2"; -} - -.cc.NVC::before { - content: "\E0A3"; -} - -.cc.NXT-alt::before { - content: "\E0A4"; -} - -.cc.NXT::before { - content: "\E0A5"; -} - -.cc.OK-alt::before { - content: "\E0A6"; -} - -.cc.OK::before { - content: "\E0A7"; -} - -.cc.OMG-alt::before { - content: "\E0A8"; -} - -.cc.OMG::before { - content: "\E0A9"; -} - -.cc.OMNI-alt::before { - content: "\E0AA"; -} - -.cc.OMNI::before { - content: "\E0AB"; -} - -.cc.OPAL-alt::before { - content: "\E0AC"; -} - -.cc.OPAL::before { - content: "\E0AD"; -} - -.cc.PART-alt::before { - content: "\E0AE"; -} - -.cc.PART::before { - content: "\E0AF"; -} - -.cc.PIGGY-alt::before { - content: "\E0B0"; -} - -.cc.PIGGY::before { - content: "\E0B1"; -} - -.cc.PINK-alt::before { - content: "\E0B2"; -} - -.cc.PINK::before { - content: "\E0B3"; -} - -.cc.PIVX-alt::before { - content: "\E0B4"; -} - -.cc.PIVX::before { - content: "\E0B5"; -} - -.cc.POT-alt::before { - content: "\E0B6"; -} - -.cc.POT::before { - content: "\E0B7"; -} - -.cc.PPC-alt::before { - content: "\E0B8"; -} - -.cc.PPC::before { - content: "\E0B9"; -} - -.cc.QRK-alt::before { - content: "\E0BA"; -} - -.cc.QRK::before { - content: "\E0BB"; -} - -.cc.QTUM-alt::before { - content: "\E0BC"; -} - -.cc.QTUM::before { - content: "\E0BD"; -} - -.cc.RADS-alt::before { - content: "\E0BE"; -} - -.cc.RADS::before { - content: "\E0BF"; -} - -.cc.RBIES-alt::before { - content: "\E0C0"; -} - -.cc.RBIES::before { - content: "\E0C1"; -} - -.cc.RBT-alt::before { - content: "\E0C2"; -} - -.cc.RBT::before { - content: "\E0C3"; -} - -.cc.RBY-alt::before { - content: "\E0C4"; -} - -.cc.RBY::before { - content: "\E0C5"; -} - -.cc.RDD-alt::before { - content: "\E0C6"; -} - -.cc.RDD::before { - content: "\E0C7"; -} - -.cc.REP-alt::before { - content: "\E0C8"; -} - -.cc.REP::before { - content: "\E0C9"; -} - -.cc.RISE-alt::before { - content: "\E0CA"; -} - -.cc.RISE::before { - content: "\E0CB"; -} - -.cc.SALT-alt::before { - content: "\E0CC"; -} - -.cc.SALT::before { - content: "\E0CD"; -} - -.cc.SAR-alt::before { - content: "\E0CE"; -} - -.cc.SAR::before { - content: "\E0CF"; -} - -.cc.SCOT-alt::before { - content: "\E0D0"; -} - -.cc.SCOT::before { - content: "\E0D1"; -} - -.cc.SDC-alt::before { - content: "\E0D2"; -} - -.cc.SDC::before { - content: "\E0D3"; -} - -.cc.SIA-alt::before { - content: "\E0D4"; -} - -.cc.SIA::before { - content: "\E0D5"; -} - -.cc.SJCX-alt::before { - content: "\E0D6"; -} - -.cc.SJCX::before { - content: "\E0D7"; -} - -.cc.SLG-alt::before { - content: "\E0D8"; -} - -.cc.SLG::before { - content: "\E0D9"; -} - -.cc.SLS-alt::before { - content: "\E0DA"; -} - -.cc.SLS::before { - content: "\E0DB"; -} - -.cc.SNRG-alt::before { - content: "\E0DC"; -} - -.cc.SNRG::before { - content: "\E0DD"; -} - -.cc.START-alt::before { - content: "\E0DE"; -} - -.cc.START::before { - content: "\E0DF"; -} - -.cc.STEEM-alt::before { - content: "\E0E0"; -} - -.cc.STEEM::before { - content: "\E0E1"; -} - -.cc.STR-alt::before { - content: "\E0E2"; -} - -.cc.STR::before { - content: "\E0E3"; -} - -.cc.STRAT-alt::before { - content: "\E0E4"; -} - -.cc.STRAT::before { - content: "\E0E5"; -} - -.cc.SWIFT-alt::before { - content: "\E0E6"; -} - -.cc.SWIFT::before { - content: "\E0E7"; -} - -.cc.SYNC-alt::before { - content: "\E0E8"; -} - -.cc.SYNC::before { - content: "\E0E9"; -} - -.cc.SYS-alt::before { - content: "\E0EA"; -} - -.cc.SYS::before { - content: "\E0EB"; -} - -.cc.TRIG-alt::before { - content: "\E0EC"; -} - -.cc.TRIG::before { - content: "\E0ED"; -} - -.cc.TX-alt::before { - content: "\E0EE"; -} - -.cc.TX::before { - content: "\E0EF"; -} - -.cc.UBQ-alt::before { - content: "\E0F0"; -} - -.cc.UBQ::before { - content: "\E0F1"; -} - -.cc.UNITY-alt::before { - content: "\E0F2"; -} - -.cc.UNITY::before { - content: "\E0F3"; -} - -.cc.USDT-alt::before { - content: "\E0F4"; -} - -.cc.USDT::before { - content: "\E0F5"; -} - -.cc.VIOR-alt::before { - content: "\E0F6"; -} - -.cc.VIOR::before { - content: "\E0F7"; -} - -.cc.VNL-alt::before { - content: "\E0F8"; -} - -.cc.VNL::before { - content: "\E0F9"; -} - -.cc.VPN-alt::before { - content: "\E0FA"; -} - -.cc.VPN::before { - content: "\E0FB"; -} - -.cc.VRC-alt::before { - content: "\E0FC"; -} - -.cc.VRC::before { - content: "\E0FD"; -} - -.cc.VTC-alt::before { - content: "\E0FE"; -} - -.cc.VTC::before { - content: "\E0FF"; -} - -.cc.WAVES-alt::before { - content: "\E100"; -} - -.cc.WAVES::before { - content: "\E101"; -} - -.cc.XAI-alt::before { - content: "\E102"; -} - -.cc.XAI::before { - content: "\E103"; -} - -.cc.XBS-alt::before { - content: "\E104"; -} - -.cc.XBS::before { - content: "\E105"; -} - -.cc.XCP-alt::before { - content: "\E106"; -} - -.cc.XCP::before { - content: "\E107"; -} - -.cc.XEM-alt::before { - content: "\E108"; -} - -.cc.XEM::before { - content: "\E109"; -} - -.cc.XMR::before { - content: "\E10A"; -} - -.cc.XPM-alt::before { - content: "\E10B"; -} - -.cc.XPM::before { - content: "\E10C"; -} - -.cc.XRP-alt::before { - content: "\E10D"; -} - -.cc.XRP::before { - content: "\E10E"; -} - -.cc.XTZ-alt::before { - content: "\E10F"; -} - -.cc.XTZ::before { - content: "\E110"; -} - -.cc.XVG-alt::before { - content: "\E111"; -} - -.cc.XVG::before { - content: "\E112"; -} - -.cc.XZC-alt::before { - content: "\E113"; -} - -.cc.XZC::before { - content: "\E114"; -} - -.cc.YBC-alt::before { - content: "\E115"; -} - -.cc.YBC::before { - content: "\E116"; -} - -.cc.ZEC-alt::before { - content: "\E117"; -} - -.cc.ZEC::before { - content: "\E118"; -} - -.cc.ZEIT-alt::before { - content: "\E119"; -} - -.cc.ZEIT::before { - content: "\E11A"; -} \ No newline at end of file diff --git a/cmd/web/static/fonts/cryptocoins.ttf b/cmd/web/static/fonts/cryptocoins.ttf deleted file mode 100644 index b92c27d..0000000 Binary files a/cmd/web/static/fonts/cryptocoins.ttf and /dev/null differ diff --git a/cmd/web/static/fonts/cryptocoins.woff b/cmd/web/static/fonts/cryptocoins.woff deleted file mode 100644 index bf8eb08..0000000 Binary files a/cmd/web/static/fonts/cryptocoins.woff and /dev/null differ diff --git a/cmd/web/static/fonts/cryptocoins.woff2 b/cmd/web/static/fonts/cryptocoins.woff2 deleted file mode 100644 index dcc195c..0000000 Binary files a/cmd/web/static/fonts/cryptocoins.woff2 and /dev/null differ diff --git a/cmd/web/static/fonts/fontello.eot b/cmd/web/static/fonts/fontello.eot index 14932cc..f9547a0 100644 Binary files a/cmd/web/static/fonts/fontello.eot and b/cmd/web/static/fonts/fontello.eot differ diff --git a/cmd/web/static/fonts/fontello.svg b/cmd/web/static/fonts/fontello.svg index dce8334..195ae3c 100644 --- a/cmd/web/static/fonts/fontello.svg +++ b/cmd/web/static/fonts/fontello.svg @@ -6,15 +6,13 @@ - - - + - + \ No newline at end of file diff --git a/cmd/web/static/fonts/fontello.ttf b/cmd/web/static/fonts/fontello.ttf index ab1efb3..d319347 100644 Binary files a/cmd/web/static/fonts/fontello.ttf and b/cmd/web/static/fonts/fontello.ttf differ diff --git a/cmd/web/static/fonts/fontello.woff b/cmd/web/static/fonts/fontello.woff index 6faf045..dfdb9fc 100644 Binary files a/cmd/web/static/fonts/fontello.woff and b/cmd/web/static/fonts/fontello.woff differ diff --git a/cmd/web/static/fonts/fontello.woff2 b/cmd/web/static/fonts/fontello.woff2 index 8e41726..6f98bfc 100644 Binary files a/cmd/web/static/fonts/fontello.woff2 and b/cmd/web/static/fonts/fontello.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/ttf/0067bba3.ttf b/cmd/web/static/fonts/glyphs/ttf/0067bba3.ttf new file mode 100644 index 0000000..da7d70e Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/0067bba3.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/00883b50.ttf b/cmd/web/static/fonts/glyphs/ttf/00883b50.ttf new file mode 100644 index 0000000..75ba1d0 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/00883b50.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/011ee55c.ttf b/cmd/web/static/fonts/glyphs/ttf/011ee55c.ttf new file mode 100644 index 0000000..492a0ee Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/011ee55c.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/018f5952.ttf b/cmd/web/static/fonts/glyphs/ttf/018f5952.ttf new file mode 100644 index 0000000..4f07adb Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/018f5952.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/01e07cf4.ttf b/cmd/web/static/fonts/glyphs/ttf/01e07cf4.ttf new file mode 100644 index 0000000..cae6c41 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/01e07cf4.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/02255308.ttf b/cmd/web/static/fonts/glyphs/ttf/02255308.ttf new file mode 100644 index 0000000..07d8acf Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/02255308.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/023d4451.ttf b/cmd/web/static/fonts/glyphs/ttf/023d4451.ttf new file mode 100644 index 0000000..f30463a Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/023d4451.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/02d0c663.ttf b/cmd/web/static/fonts/glyphs/ttf/02d0c663.ttf new file mode 100644 index 0000000..7b2f427 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/02d0c663.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/048120ba.ttf b/cmd/web/static/fonts/glyphs/ttf/048120ba.ttf new file mode 100644 index 0000000..5c54c45 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/048120ba.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/04c9aec2.ttf b/cmd/web/static/fonts/glyphs/ttf/04c9aec2.ttf new file mode 100644 index 0000000..1310caa Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/04c9aec2.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/05b616e5.ttf b/cmd/web/static/fonts/glyphs/ttf/05b616e5.ttf new file mode 100644 index 0000000..231c772 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/05b616e5.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/05ed7e4e.ttf b/cmd/web/static/fonts/glyphs/ttf/05ed7e4e.ttf new file mode 100644 index 0000000..c22a7cc Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/05ed7e4e.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/061e5117.ttf b/cmd/web/static/fonts/glyphs/ttf/061e5117.ttf new file mode 100644 index 0000000..71ea966 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/061e5117.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/064b9505.ttf b/cmd/web/static/fonts/glyphs/ttf/064b9505.ttf new file mode 100644 index 0000000..429a895 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/064b9505.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/066eea7e.ttf b/cmd/web/static/fonts/glyphs/ttf/066eea7e.ttf new file mode 100644 index 0000000..d19c316 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/066eea7e.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/06fd396d.ttf b/cmd/web/static/fonts/glyphs/ttf/06fd396d.ttf new file mode 100644 index 0000000..e1d79a5 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/06fd396d.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/081f89e0.ttf b/cmd/web/static/fonts/glyphs/ttf/081f89e0.ttf new file mode 100644 index 0000000..be1002d Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/081f89e0.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/088eafe1.ttf b/cmd/web/static/fonts/glyphs/ttf/088eafe1.ttf new file mode 100644 index 0000000..8c9cadc Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/088eafe1.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/08e4c9db.ttf b/cmd/web/static/fonts/glyphs/ttf/08e4c9db.ttf new file mode 100644 index 0000000..24bf853 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/08e4c9db.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/08e9330e.ttf b/cmd/web/static/fonts/glyphs/ttf/08e9330e.ttf new file mode 100644 index 0000000..0237e2b Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/08e9330e.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/090f780c.ttf b/cmd/web/static/fonts/glyphs/ttf/090f780c.ttf new file mode 100644 index 0000000..4baaccf Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/090f780c.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/09a35da5.ttf b/cmd/web/static/fonts/glyphs/ttf/09a35da5.ttf new file mode 100644 index 0000000..46020f6 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/09a35da5.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/09afd82a.ttf b/cmd/web/static/fonts/glyphs/ttf/09afd82a.ttf new file mode 100644 index 0000000..6e758db Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/09afd82a.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/09b0664c.ttf b/cmd/web/static/fonts/glyphs/ttf/09b0664c.ttf new file mode 100644 index 0000000..a1ab6a6 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/09b0664c.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/0a01e6d0.ttf b/cmd/web/static/fonts/glyphs/ttf/0a01e6d0.ttf new file mode 100644 index 0000000..6ddc27a Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/0a01e6d0.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/0a32e2fb.ttf b/cmd/web/static/fonts/glyphs/ttf/0a32e2fb.ttf new file mode 100644 index 0000000..1fe3bdf Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/0a32e2fb.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/0a4097e4.ttf b/cmd/web/static/fonts/glyphs/ttf/0a4097e4.ttf new file mode 100644 index 0000000..446e130 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/0a4097e4.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/0ac058dd.ttf b/cmd/web/static/fonts/glyphs/ttf/0ac058dd.ttf new file mode 100644 index 0000000..8d34e32 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/0ac058dd.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/0b12d5a0.ttf b/cmd/web/static/fonts/glyphs/ttf/0b12d5a0.ttf new file mode 100644 index 0000000..5a6fd62 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/0b12d5a0.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/0b4fc343.ttf b/cmd/web/static/fonts/glyphs/ttf/0b4fc343.ttf new file mode 100644 index 0000000..e9b98e3 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/0b4fc343.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/0bcc804b.ttf b/cmd/web/static/fonts/glyphs/ttf/0bcc804b.ttf new file mode 100644 index 0000000..a20a964 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/0bcc804b.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/0c40016a.ttf b/cmd/web/static/fonts/glyphs/ttf/0c40016a.ttf new file mode 100644 index 0000000..26868ff Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/0c40016a.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/0ca412f2.ttf b/cmd/web/static/fonts/glyphs/ttf/0ca412f2.ttf new file mode 100644 index 0000000..9e828cc Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/0ca412f2.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/0cbb9805.ttf b/cmd/web/static/fonts/glyphs/ttf/0cbb9805.ttf new file mode 100644 index 0000000..b30825b Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/0cbb9805.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/0cc88965.ttf b/cmd/web/static/fonts/glyphs/ttf/0cc88965.ttf new file mode 100644 index 0000000..b025c99 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/0cc88965.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/0cf3a20b.ttf b/cmd/web/static/fonts/glyphs/ttf/0cf3a20b.ttf new file mode 100644 index 0000000..8e96846 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/0cf3a20b.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/0cfc2998.ttf b/cmd/web/static/fonts/glyphs/ttf/0cfc2998.ttf new file mode 100644 index 0000000..7094365 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/0cfc2998.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/0d085f1c.ttf b/cmd/web/static/fonts/glyphs/ttf/0d085f1c.ttf new file mode 100644 index 0000000..4f29149 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/0d085f1c.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/0d26bbc7.ttf b/cmd/web/static/fonts/glyphs/ttf/0d26bbc7.ttf new file mode 100644 index 0000000..a48647b Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/0d26bbc7.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/0d9537d2.ttf b/cmd/web/static/fonts/glyphs/ttf/0d9537d2.ttf new file mode 100644 index 0000000..a86eec5 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/0d9537d2.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/0e779307.ttf b/cmd/web/static/fonts/glyphs/ttf/0e779307.ttf new file mode 100644 index 0000000..0a9c130 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/0e779307.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/0ecabbc7.ttf b/cmd/web/static/fonts/glyphs/ttf/0ecabbc7.ttf new file mode 100644 index 0000000..66db9dd Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/0ecabbc7.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/0f971447.ttf b/cmd/web/static/fonts/glyphs/ttf/0f971447.ttf new file mode 100644 index 0000000..bfc257f Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/0f971447.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/0ff7e3fd.ttf b/cmd/web/static/fonts/glyphs/ttf/0ff7e3fd.ttf new file mode 100644 index 0000000..0aa5198 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/0ff7e3fd.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/10350c93.ttf b/cmd/web/static/fonts/glyphs/ttf/10350c93.ttf new file mode 100644 index 0000000..0dae6dd Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/10350c93.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/1079bbd9.ttf b/cmd/web/static/fonts/glyphs/ttf/1079bbd9.ttf new file mode 100644 index 0000000..1efa24a Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/1079bbd9.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/1098551a.ttf b/cmd/web/static/fonts/glyphs/ttf/1098551a.ttf new file mode 100644 index 0000000..01074ec Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/1098551a.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/110df6cd.ttf b/cmd/web/static/fonts/glyphs/ttf/110df6cd.ttf new file mode 100644 index 0000000..173850c Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/110df6cd.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/114520c4.ttf b/cmd/web/static/fonts/glyphs/ttf/114520c4.ttf new file mode 100644 index 0000000..9195e03 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/114520c4.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/1165e24b.ttf b/cmd/web/static/fonts/glyphs/ttf/1165e24b.ttf new file mode 100644 index 0000000..3bb540f Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/1165e24b.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/117dc215.ttf b/cmd/web/static/fonts/glyphs/ttf/117dc215.ttf new file mode 100644 index 0000000..b032f1a Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/117dc215.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/11805c1a.ttf b/cmd/web/static/fonts/glyphs/ttf/11805c1a.ttf new file mode 100644 index 0000000..02a757b Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/11805c1a.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/11c88fa3.ttf b/cmd/web/static/fonts/glyphs/ttf/11c88fa3.ttf new file mode 100644 index 0000000..c304499 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/11c88fa3.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/11d82ab4.ttf b/cmd/web/static/fonts/glyphs/ttf/11d82ab4.ttf new file mode 100644 index 0000000..89a7fac Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/11d82ab4.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/120564eb.ttf b/cmd/web/static/fonts/glyphs/ttf/120564eb.ttf new file mode 100644 index 0000000..999a876 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/120564eb.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/125fe922.ttf b/cmd/web/static/fonts/glyphs/ttf/125fe922.ttf new file mode 100644 index 0000000..c9684ab Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/125fe922.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/129ec899.ttf b/cmd/web/static/fonts/glyphs/ttf/129ec899.ttf new file mode 100644 index 0000000..58d952b Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/129ec899.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/12c373f3.ttf b/cmd/web/static/fonts/glyphs/ttf/12c373f3.ttf new file mode 100644 index 0000000..e112197 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/12c373f3.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/12cd5e20.ttf b/cmd/web/static/fonts/glyphs/ttf/12cd5e20.ttf new file mode 100644 index 0000000..0b6ed1b Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/12cd5e20.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/12d9f10f.ttf b/cmd/web/static/fonts/glyphs/ttf/12d9f10f.ttf new file mode 100644 index 0000000..311acd8 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/12d9f10f.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/131b3834.ttf b/cmd/web/static/fonts/glyphs/ttf/131b3834.ttf new file mode 100644 index 0000000..578954b Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/131b3834.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/131ebb37.ttf b/cmd/web/static/fonts/glyphs/ttf/131ebb37.ttf new file mode 100644 index 0000000..a79ded6 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/131ebb37.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/13753541.ttf b/cmd/web/static/fonts/glyphs/ttf/13753541.ttf new file mode 100644 index 0000000..2506bbe Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/13753541.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/1394a474.ttf b/cmd/web/static/fonts/glyphs/ttf/1394a474.ttf new file mode 100644 index 0000000..96eb239 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/1394a474.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/13b487b1.ttf b/cmd/web/static/fonts/glyphs/ttf/13b487b1.ttf new file mode 100644 index 0000000..1ea0549 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/13b487b1.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/14880f85.ttf b/cmd/web/static/fonts/glyphs/ttf/14880f85.ttf new file mode 100644 index 0000000..b0af7bf Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/14880f85.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/15802da1.ttf b/cmd/web/static/fonts/glyphs/ttf/15802da1.ttf new file mode 100644 index 0000000..22200b8 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/15802da1.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/159ee498.ttf b/cmd/web/static/fonts/glyphs/ttf/159ee498.ttf new file mode 100644 index 0000000..d47db90 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/159ee498.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/167004d8.ttf b/cmd/web/static/fonts/glyphs/ttf/167004d8.ttf new file mode 100644 index 0000000..1bcbbb7 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/167004d8.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/16ed590a.ttf b/cmd/web/static/fonts/glyphs/ttf/16ed590a.ttf new file mode 100644 index 0000000..a2d8981 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/16ed590a.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/172e6f01.ttf b/cmd/web/static/fonts/glyphs/ttf/172e6f01.ttf new file mode 100644 index 0000000..ede0563 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/172e6f01.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/1778d94c.ttf b/cmd/web/static/fonts/glyphs/ttf/1778d94c.ttf new file mode 100644 index 0000000..44a54fd Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/1778d94c.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/177d0611.ttf b/cmd/web/static/fonts/glyphs/ttf/177d0611.ttf new file mode 100644 index 0000000..22bb507 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/177d0611.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/179f13d3.ttf b/cmd/web/static/fonts/glyphs/ttf/179f13d3.ttf new file mode 100644 index 0000000..e3bbfa1 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/179f13d3.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/17a7a115.ttf b/cmd/web/static/fonts/glyphs/ttf/17a7a115.ttf new file mode 100644 index 0000000..1086fcc Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/17a7a115.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/1817efca.ttf b/cmd/web/static/fonts/glyphs/ttf/1817efca.ttf new file mode 100644 index 0000000..4884231 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/1817efca.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/1937cd98.ttf b/cmd/web/static/fonts/glyphs/ttf/1937cd98.ttf new file mode 100644 index 0000000..8267149 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/1937cd98.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/199aab73.ttf b/cmd/web/static/fonts/glyphs/ttf/199aab73.ttf new file mode 100644 index 0000000..50e51f9 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/199aab73.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/19f8d5af.ttf b/cmd/web/static/fonts/glyphs/ttf/19f8d5af.ttf new file mode 100644 index 0000000..8ef4157 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/19f8d5af.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/1a54066a.ttf b/cmd/web/static/fonts/glyphs/ttf/1a54066a.ttf new file mode 100644 index 0000000..86669a4 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/1a54066a.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/1a7920cb.ttf b/cmd/web/static/fonts/glyphs/ttf/1a7920cb.ttf new file mode 100644 index 0000000..5a1a889 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/1a7920cb.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/1a797de5.ttf b/cmd/web/static/fonts/glyphs/ttf/1a797de5.ttf new file mode 100644 index 0000000..09158f9 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/1a797de5.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/1a7bcf02.ttf b/cmd/web/static/fonts/glyphs/ttf/1a7bcf02.ttf new file mode 100644 index 0000000..758eeac Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/1a7bcf02.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/1a8afe19.ttf b/cmd/web/static/fonts/glyphs/ttf/1a8afe19.ttf new file mode 100644 index 0000000..a35b63e Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/1a8afe19.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/1a9e5d1a.ttf b/cmd/web/static/fonts/glyphs/ttf/1a9e5d1a.ttf new file mode 100644 index 0000000..a639b08 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/1a9e5d1a.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/1b07c59f.ttf b/cmd/web/static/fonts/glyphs/ttf/1b07c59f.ttf new file mode 100644 index 0000000..e692aad Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/1b07c59f.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/1b180f14.ttf b/cmd/web/static/fonts/glyphs/ttf/1b180f14.ttf new file mode 100644 index 0000000..4d0a3c7 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/1b180f14.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/1b7ba367.ttf b/cmd/web/static/fonts/glyphs/ttf/1b7ba367.ttf new file mode 100644 index 0000000..3c23a42 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/1b7ba367.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/1ca00690.ttf b/cmd/web/static/fonts/glyphs/ttf/1ca00690.ttf new file mode 100644 index 0000000..b3a1924 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/1ca00690.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/1cc31435.ttf b/cmd/web/static/fonts/glyphs/ttf/1cc31435.ttf new file mode 100644 index 0000000..27bac74 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/1cc31435.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/1cd81072.ttf b/cmd/web/static/fonts/glyphs/ttf/1cd81072.ttf new file mode 100644 index 0000000..f0b40fd Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/1cd81072.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/1d31d67a.ttf b/cmd/web/static/fonts/glyphs/ttf/1d31d67a.ttf new file mode 100644 index 0000000..31be8b4 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/1d31d67a.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/1d3e9975.ttf b/cmd/web/static/fonts/glyphs/ttf/1d3e9975.ttf new file mode 100644 index 0000000..70f668a Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/1d3e9975.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/1d45862b.ttf b/cmd/web/static/fonts/glyphs/ttf/1d45862b.ttf new file mode 100644 index 0000000..a661a66 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/1d45862b.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/1df9ac89.ttf b/cmd/web/static/fonts/glyphs/ttf/1df9ac89.ttf new file mode 100644 index 0000000..5e6af63 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/1df9ac89.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/1e143288.ttf b/cmd/web/static/fonts/glyphs/ttf/1e143288.ttf new file mode 100644 index 0000000..048b60d Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/1e143288.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/1e3a5f47.ttf b/cmd/web/static/fonts/glyphs/ttf/1e3a5f47.ttf new file mode 100644 index 0000000..3023927 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/1e3a5f47.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/1ea52dfd.ttf b/cmd/web/static/fonts/glyphs/ttf/1ea52dfd.ttf new file mode 100644 index 0000000..5326b83 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/1ea52dfd.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/1eb35b35.ttf b/cmd/web/static/fonts/glyphs/ttf/1eb35b35.ttf new file mode 100644 index 0000000..f39c7b5 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/1eb35b35.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/1fd6b062.ttf b/cmd/web/static/fonts/glyphs/ttf/1fd6b062.ttf new file mode 100644 index 0000000..7485c78 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/1fd6b062.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/208046b5.ttf b/cmd/web/static/fonts/glyphs/ttf/208046b5.ttf new file mode 100644 index 0000000..6df6311 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/208046b5.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/20b835b7.ttf b/cmd/web/static/fonts/glyphs/ttf/20b835b7.ttf new file mode 100644 index 0000000..31147e8 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/20b835b7.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/20f9b6e3.ttf b/cmd/web/static/fonts/glyphs/ttf/20f9b6e3.ttf new file mode 100644 index 0000000..384a981 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/20f9b6e3.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/21619e9c.ttf b/cmd/web/static/fonts/glyphs/ttf/21619e9c.ttf new file mode 100644 index 0000000..cfd2412 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/21619e9c.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/2163c4cf.ttf b/cmd/web/static/fonts/glyphs/ttf/2163c4cf.ttf new file mode 100644 index 0000000..ee9f5b3 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/2163c4cf.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/218e296f.ttf b/cmd/web/static/fonts/glyphs/ttf/218e296f.ttf new file mode 100644 index 0000000..ab9012d Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/218e296f.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/21a02826.ttf b/cmd/web/static/fonts/glyphs/ttf/21a02826.ttf new file mode 100644 index 0000000..c6c62f4 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/21a02826.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/2200df99.ttf b/cmd/web/static/fonts/glyphs/ttf/2200df99.ttf new file mode 100644 index 0000000..d1c940f Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/2200df99.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/22293ce5.ttf b/cmd/web/static/fonts/glyphs/ttf/22293ce5.ttf new file mode 100644 index 0000000..320550e Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/22293ce5.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/22c6ed00.ttf b/cmd/web/static/fonts/glyphs/ttf/22c6ed00.ttf new file mode 100644 index 0000000..a85a6c6 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/22c6ed00.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/23b476b4.ttf b/cmd/web/static/fonts/glyphs/ttf/23b476b4.ttf new file mode 100644 index 0000000..34d5b8b Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/23b476b4.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/2422dc89.ttf b/cmd/web/static/fonts/glyphs/ttf/2422dc89.ttf new file mode 100644 index 0000000..c85d6d1 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/2422dc89.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/246660f5.ttf b/cmd/web/static/fonts/glyphs/ttf/246660f5.ttf new file mode 100644 index 0000000..68dbbee Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/246660f5.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/2489d00d.ttf b/cmd/web/static/fonts/glyphs/ttf/2489d00d.ttf new file mode 100644 index 0000000..c09906e Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/2489d00d.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/24a80660.ttf b/cmd/web/static/fonts/glyphs/ttf/24a80660.ttf new file mode 100644 index 0000000..009da9e Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/24a80660.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/24cd796b.ttf b/cmd/web/static/fonts/glyphs/ttf/24cd796b.ttf new file mode 100644 index 0000000..271e3e7 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/24cd796b.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/24d18e39.ttf b/cmd/web/static/fonts/glyphs/ttf/24d18e39.ttf new file mode 100644 index 0000000..cf422df Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/24d18e39.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/24e7e96e.ttf b/cmd/web/static/fonts/glyphs/ttf/24e7e96e.ttf new file mode 100644 index 0000000..fd78766 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/24e7e96e.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/250eac5a.ttf b/cmd/web/static/fonts/glyphs/ttf/250eac5a.ttf new file mode 100644 index 0000000..ef1783f Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/250eac5a.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/252bbda4.ttf b/cmd/web/static/fonts/glyphs/ttf/252bbda4.ttf new file mode 100644 index 0000000..c0e8063 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/252bbda4.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/254c8943.ttf b/cmd/web/static/fonts/glyphs/ttf/254c8943.ttf new file mode 100644 index 0000000..ecb2da7 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/254c8943.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/25ba326c.ttf b/cmd/web/static/fonts/glyphs/ttf/25ba326c.ttf new file mode 100644 index 0000000..a4ff59f Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/25ba326c.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/25ea7b82.ttf b/cmd/web/static/fonts/glyphs/ttf/25ea7b82.ttf new file mode 100644 index 0000000..cdb5cbe Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/25ea7b82.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/25eb254d.ttf b/cmd/web/static/fonts/glyphs/ttf/25eb254d.ttf new file mode 100644 index 0000000..b9901ca Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/25eb254d.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/264d968f.ttf b/cmd/web/static/fonts/glyphs/ttf/264d968f.ttf new file mode 100644 index 0000000..ade141f Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/264d968f.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/26fc4657.ttf b/cmd/web/static/fonts/glyphs/ttf/26fc4657.ttf new file mode 100644 index 0000000..d39f3bf Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/26fc4657.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/282e3874.ttf b/cmd/web/static/fonts/glyphs/ttf/282e3874.ttf new file mode 100644 index 0000000..b4f04ac Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/282e3874.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/2849840b.ttf b/cmd/web/static/fonts/glyphs/ttf/2849840b.ttf new file mode 100644 index 0000000..b6e58fe Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/2849840b.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/288dafa6.ttf b/cmd/web/static/fonts/glyphs/ttf/288dafa6.ttf new file mode 100644 index 0000000..99673da Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/288dafa6.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/2928cfa1.ttf b/cmd/web/static/fonts/glyphs/ttf/2928cfa1.ttf new file mode 100644 index 0000000..797f508 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/2928cfa1.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/297959f6.ttf b/cmd/web/static/fonts/glyphs/ttf/297959f6.ttf new file mode 100644 index 0000000..4b5963a Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/297959f6.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/29ef8c3a.ttf b/cmd/web/static/fonts/glyphs/ttf/29ef8c3a.ttf new file mode 100644 index 0000000..eaf562e Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/29ef8c3a.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/2a4ae11d.ttf b/cmd/web/static/fonts/glyphs/ttf/2a4ae11d.ttf new file mode 100644 index 0000000..95aeb52 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/2a4ae11d.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/2a889c21.ttf b/cmd/web/static/fonts/glyphs/ttf/2a889c21.ttf new file mode 100644 index 0000000..514622b Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/2a889c21.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/2a96e401.ttf b/cmd/web/static/fonts/glyphs/ttf/2a96e401.ttf new file mode 100644 index 0000000..69082c1 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/2a96e401.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/2a9dc20c.ttf b/cmd/web/static/fonts/glyphs/ttf/2a9dc20c.ttf new file mode 100644 index 0000000..b0f70c7 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/2a9dc20c.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/2ae6c3ff.ttf b/cmd/web/static/fonts/glyphs/ttf/2ae6c3ff.ttf new file mode 100644 index 0000000..6ba6ec0 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/2ae6c3ff.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/2b4b2b6f.ttf b/cmd/web/static/fonts/glyphs/ttf/2b4b2b6f.ttf new file mode 100644 index 0000000..9a4217f Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/2b4b2b6f.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/2b52c387.ttf b/cmd/web/static/fonts/glyphs/ttf/2b52c387.ttf new file mode 100644 index 0000000..cbb2110 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/2b52c387.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/2bd2fc24.ttf b/cmd/web/static/fonts/glyphs/ttf/2bd2fc24.ttf new file mode 100644 index 0000000..58d66c1 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/2bd2fc24.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/2be8c581.ttf b/cmd/web/static/fonts/glyphs/ttf/2be8c581.ttf new file mode 100644 index 0000000..c595dea Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/2be8c581.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/2c977e31.ttf b/cmd/web/static/fonts/glyphs/ttf/2c977e31.ttf new file mode 100644 index 0000000..56fd9d2 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/2c977e31.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/2cee68c5.ttf b/cmd/web/static/fonts/glyphs/ttf/2cee68c5.ttf new file mode 100644 index 0000000..4f40c62 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/2cee68c5.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/2d027c9d.ttf b/cmd/web/static/fonts/glyphs/ttf/2d027c9d.ttf new file mode 100644 index 0000000..615573a Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/2d027c9d.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/2d2cf221.ttf b/cmd/web/static/fonts/glyphs/ttf/2d2cf221.ttf new file mode 100644 index 0000000..31b9533 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/2d2cf221.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/2d5cb25e.ttf b/cmd/web/static/fonts/glyphs/ttf/2d5cb25e.ttf new file mode 100644 index 0000000..4b12550 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/2d5cb25e.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/2d7aa05f.ttf b/cmd/web/static/fonts/glyphs/ttf/2d7aa05f.ttf new file mode 100644 index 0000000..f9d89d7 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/2d7aa05f.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/2db5fddf.ttf b/cmd/web/static/fonts/glyphs/ttf/2db5fddf.ttf new file mode 100644 index 0000000..1726a5b Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/2db5fddf.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/2dc572da.ttf b/cmd/web/static/fonts/glyphs/ttf/2dc572da.ttf new file mode 100644 index 0000000..d3475ff Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/2dc572da.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/2e27c6c1.ttf b/cmd/web/static/fonts/glyphs/ttf/2e27c6c1.ttf new file mode 100644 index 0000000..fee006f Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/2e27c6c1.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/2e5887ef.ttf b/cmd/web/static/fonts/glyphs/ttf/2e5887ef.ttf new file mode 100644 index 0000000..fb48c38 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/2e5887ef.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/2ed7bd06.ttf b/cmd/web/static/fonts/glyphs/ttf/2ed7bd06.ttf new file mode 100644 index 0000000..53c397d Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/2ed7bd06.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/2ef4a942.ttf b/cmd/web/static/fonts/glyphs/ttf/2ef4a942.ttf new file mode 100644 index 0000000..2e12245 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/2ef4a942.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/2f84e1d2.ttf b/cmd/web/static/fonts/glyphs/ttf/2f84e1d2.ttf new file mode 100644 index 0000000..4fa4898 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/2f84e1d2.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/2fd2e914.ttf b/cmd/web/static/fonts/glyphs/ttf/2fd2e914.ttf new file mode 100644 index 0000000..b6cbb00 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/2fd2e914.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/30042e01.ttf b/cmd/web/static/fonts/glyphs/ttf/30042e01.ttf new file mode 100644 index 0000000..38e793b Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/30042e01.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/300b40cf.ttf b/cmd/web/static/fonts/glyphs/ttf/300b40cf.ttf new file mode 100644 index 0000000..3350e2c Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/300b40cf.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/3069c5e2.ttf b/cmd/web/static/fonts/glyphs/ttf/3069c5e2.ttf new file mode 100644 index 0000000..9e6d794 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/3069c5e2.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/30d929ef.ttf b/cmd/web/static/fonts/glyphs/ttf/30d929ef.ttf new file mode 100644 index 0000000..20e5768 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/30d929ef.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/311bcfdc.ttf b/cmd/web/static/fonts/glyphs/ttf/311bcfdc.ttf new file mode 100644 index 0000000..77c0cfc Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/311bcfdc.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/31234fc4.ttf b/cmd/web/static/fonts/glyphs/ttf/31234fc4.ttf new file mode 100644 index 0000000..f1454e9 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/31234fc4.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/315c66f8.ttf b/cmd/web/static/fonts/glyphs/ttf/315c66f8.ttf new file mode 100644 index 0000000..31cd6c5 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/315c66f8.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/31722822.ttf b/cmd/web/static/fonts/glyphs/ttf/31722822.ttf new file mode 100644 index 0000000..e94d323 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/31722822.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/31782ddd.ttf b/cmd/web/static/fonts/glyphs/ttf/31782ddd.ttf new file mode 100644 index 0000000..fba725c Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/31782ddd.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/322840cb.ttf b/cmd/web/static/fonts/glyphs/ttf/322840cb.ttf new file mode 100644 index 0000000..a8b6b8c Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/322840cb.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/323a4cec.ttf b/cmd/web/static/fonts/glyphs/ttf/323a4cec.ttf new file mode 100644 index 0000000..7ab856c Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/323a4cec.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/325a5ac2.ttf b/cmd/web/static/fonts/glyphs/ttf/325a5ac2.ttf new file mode 100644 index 0000000..2f7ebe1 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/325a5ac2.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/328fad59.ttf b/cmd/web/static/fonts/glyphs/ttf/328fad59.ttf new file mode 100644 index 0000000..234c89c Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/328fad59.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/32c69208.ttf b/cmd/web/static/fonts/glyphs/ttf/32c69208.ttf new file mode 100644 index 0000000..e2f3f04 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/32c69208.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/32cb1e15.ttf b/cmd/web/static/fonts/glyphs/ttf/32cb1e15.ttf new file mode 100644 index 0000000..d2e8905 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/32cb1e15.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/34152b57.ttf b/cmd/web/static/fonts/glyphs/ttf/34152b57.ttf new file mode 100644 index 0000000..337ed92 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/34152b57.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/34833f66.ttf b/cmd/web/static/fonts/glyphs/ttf/34833f66.ttf new file mode 100644 index 0000000..40dfe2b Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/34833f66.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/34a01d7d.ttf b/cmd/web/static/fonts/glyphs/ttf/34a01d7d.ttf new file mode 100644 index 0000000..1a0d334 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/34a01d7d.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/34d7ab4a.ttf b/cmd/web/static/fonts/glyphs/ttf/34d7ab4a.ttf new file mode 100644 index 0000000..79d5ec6 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/34d7ab4a.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/3506ae92.ttf b/cmd/web/static/fonts/glyphs/ttf/3506ae92.ttf new file mode 100644 index 0000000..93769b9 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/3506ae92.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/3547c23d.ttf b/cmd/web/static/fonts/glyphs/ttf/3547c23d.ttf new file mode 100644 index 0000000..2fe7674 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/3547c23d.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/354ca571.ttf b/cmd/web/static/fonts/glyphs/ttf/354ca571.ttf new file mode 100644 index 0000000..5f8be4a Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/354ca571.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/35e73fc6.ttf b/cmd/web/static/fonts/glyphs/ttf/35e73fc6.ttf new file mode 100644 index 0000000..e859b6e Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/35e73fc6.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/36728431.ttf b/cmd/web/static/fonts/glyphs/ttf/36728431.ttf new file mode 100644 index 0000000..02eccff Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/36728431.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/36a3295a.ttf b/cmd/web/static/fonts/glyphs/ttf/36a3295a.ttf new file mode 100644 index 0000000..1734a78 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/36a3295a.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/36ac1140.ttf b/cmd/web/static/fonts/glyphs/ttf/36ac1140.ttf new file mode 100644 index 0000000..9ea9b3c Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/36ac1140.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/36bc1a9d.ttf b/cmd/web/static/fonts/glyphs/ttf/36bc1a9d.ttf new file mode 100644 index 0000000..732530b Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/36bc1a9d.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/36bf9ec5.ttf b/cmd/web/static/fonts/glyphs/ttf/36bf9ec5.ttf new file mode 100644 index 0000000..ebf2ce7 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/36bf9ec5.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/36fb96fc.ttf b/cmd/web/static/fonts/glyphs/ttf/36fb96fc.ttf new file mode 100644 index 0000000..d97016f Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/36fb96fc.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/370da5ae.ttf b/cmd/web/static/fonts/glyphs/ttf/370da5ae.ttf new file mode 100644 index 0000000..fdf68b5 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/370da5ae.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/37481bd1.ttf b/cmd/web/static/fonts/glyphs/ttf/37481bd1.ttf new file mode 100644 index 0000000..1e76fe2 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/37481bd1.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/385855c8.ttf b/cmd/web/static/fonts/glyphs/ttf/385855c8.ttf new file mode 100644 index 0000000..82a267f Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/385855c8.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/38686314.ttf b/cmd/web/static/fonts/glyphs/ttf/38686314.ttf new file mode 100644 index 0000000..141b93c Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/38686314.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/389e0153.ttf b/cmd/web/static/fonts/glyphs/ttf/389e0153.ttf new file mode 100644 index 0000000..5f0c058 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/389e0153.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/38dcac7f.ttf b/cmd/web/static/fonts/glyphs/ttf/38dcac7f.ttf new file mode 100644 index 0000000..3de6aa3 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/38dcac7f.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/393bcee2.ttf b/cmd/web/static/fonts/glyphs/ttf/393bcee2.ttf new file mode 100644 index 0000000..99de204 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/393bcee2.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/39b74aca.ttf b/cmd/web/static/fonts/glyphs/ttf/39b74aca.ttf new file mode 100644 index 0000000..9a05374 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/39b74aca.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/3a52ed45.ttf b/cmd/web/static/fonts/glyphs/ttf/3a52ed45.ttf new file mode 100644 index 0000000..d808ecb Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/3a52ed45.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/3a530c59.ttf b/cmd/web/static/fonts/glyphs/ttf/3a530c59.ttf new file mode 100644 index 0000000..ffe1d0d Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/3a530c59.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/3abbb79a.ttf b/cmd/web/static/fonts/glyphs/ttf/3abbb79a.ttf new file mode 100644 index 0000000..a910f12 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/3abbb79a.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/3ac9bbf7.ttf b/cmd/web/static/fonts/glyphs/ttf/3ac9bbf7.ttf new file mode 100644 index 0000000..f777586 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/3ac9bbf7.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/3b064daf.ttf b/cmd/web/static/fonts/glyphs/ttf/3b064daf.ttf new file mode 100644 index 0000000..78b16ad Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/3b064daf.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/3b5ff71f.ttf b/cmd/web/static/fonts/glyphs/ttf/3b5ff71f.ttf new file mode 100644 index 0000000..f006416 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/3b5ff71f.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/3b6b07e4.ttf b/cmd/web/static/fonts/glyphs/ttf/3b6b07e4.ttf new file mode 100644 index 0000000..7f8ec7f Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/3b6b07e4.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/3b7180f4.ttf b/cmd/web/static/fonts/glyphs/ttf/3b7180f4.ttf new file mode 100644 index 0000000..e7a73ab Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/3b7180f4.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/3bd53fee.ttf b/cmd/web/static/fonts/glyphs/ttf/3bd53fee.ttf new file mode 100644 index 0000000..9fd8238 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/3bd53fee.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/3c678666.ttf b/cmd/web/static/fonts/glyphs/ttf/3c678666.ttf new file mode 100644 index 0000000..d9315a2 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/3c678666.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/3d32bff5.ttf b/cmd/web/static/fonts/glyphs/ttf/3d32bff5.ttf new file mode 100644 index 0000000..cf7c5cc Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/3d32bff5.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/3e131fc2.ttf b/cmd/web/static/fonts/glyphs/ttf/3e131fc2.ttf new file mode 100644 index 0000000..4a07c45 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/3e131fc2.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/3e670521.ttf b/cmd/web/static/fonts/glyphs/ttf/3e670521.ttf new file mode 100644 index 0000000..4dd14e5 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/3e670521.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/3eed650c.ttf b/cmd/web/static/fonts/glyphs/ttf/3eed650c.ttf new file mode 100644 index 0000000..c1b8d9a Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/3eed650c.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/3f29fe8f.ttf b/cmd/web/static/fonts/glyphs/ttf/3f29fe8f.ttf new file mode 100644 index 0000000..30b0070 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/3f29fe8f.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/3f357a26.ttf b/cmd/web/static/fonts/glyphs/ttf/3f357a26.ttf new file mode 100644 index 0000000..128af02 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/3f357a26.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/3f3d19ae.ttf b/cmd/web/static/fonts/glyphs/ttf/3f3d19ae.ttf new file mode 100644 index 0000000..d7219d2 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/3f3d19ae.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/3fc14a91.ttf b/cmd/web/static/fonts/glyphs/ttf/3fc14a91.ttf new file mode 100644 index 0000000..98b6b3e Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/3fc14a91.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/4003be53.ttf b/cmd/web/static/fonts/glyphs/ttf/4003be53.ttf new file mode 100644 index 0000000..578e5fd Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/4003be53.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/4062bc3a.ttf b/cmd/web/static/fonts/glyphs/ttf/4062bc3a.ttf new file mode 100644 index 0000000..72a6c58 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/4062bc3a.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/41038137.ttf b/cmd/web/static/fonts/glyphs/ttf/41038137.ttf new file mode 100644 index 0000000..25a9fda Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/41038137.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/4129e2ed.ttf b/cmd/web/static/fonts/glyphs/ttf/4129e2ed.ttf new file mode 100644 index 0000000..8b5e6c4 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/4129e2ed.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/41692e5f.ttf b/cmd/web/static/fonts/glyphs/ttf/41692e5f.ttf new file mode 100644 index 0000000..6bdd0a1 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/41692e5f.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/41e7e67b.ttf b/cmd/web/static/fonts/glyphs/ttf/41e7e67b.ttf new file mode 100644 index 0000000..587d756 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/41e7e67b.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/42130fd7.ttf b/cmd/web/static/fonts/glyphs/ttf/42130fd7.ttf new file mode 100644 index 0000000..69b3357 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/42130fd7.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/4259b075.ttf b/cmd/web/static/fonts/glyphs/ttf/4259b075.ttf new file mode 100644 index 0000000..c983110 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/4259b075.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/430cca2f.ttf b/cmd/web/static/fonts/glyphs/ttf/430cca2f.ttf new file mode 100644 index 0000000..3cc588f Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/430cca2f.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/4321166d.ttf b/cmd/web/static/fonts/glyphs/ttf/4321166d.ttf new file mode 100644 index 0000000..b38c215 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/4321166d.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/43664073.ttf b/cmd/web/static/fonts/glyphs/ttf/43664073.ttf new file mode 100644 index 0000000..5f5cf73 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/43664073.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/439e5c3d.ttf b/cmd/web/static/fonts/glyphs/ttf/439e5c3d.ttf new file mode 100644 index 0000000..4a02152 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/439e5c3d.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/4477f406.ttf b/cmd/web/static/fonts/glyphs/ttf/4477f406.ttf new file mode 100644 index 0000000..6a3e7ee Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/4477f406.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/455032d0.ttf b/cmd/web/static/fonts/glyphs/ttf/455032d0.ttf new file mode 100644 index 0000000..398142a Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/455032d0.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/45a8e7e4.ttf b/cmd/web/static/fonts/glyphs/ttf/45a8e7e4.ttf new file mode 100644 index 0000000..0211d46 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/45a8e7e4.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/462ea6a3.ttf b/cmd/web/static/fonts/glyphs/ttf/462ea6a3.ttf new file mode 100644 index 0000000..4c67d14 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/462ea6a3.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/463c644c.ttf b/cmd/web/static/fonts/glyphs/ttf/463c644c.ttf new file mode 100644 index 0000000..9034d09 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/463c644c.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/46a505fd.ttf b/cmd/web/static/fonts/glyphs/ttf/46a505fd.ttf new file mode 100644 index 0000000..43258be Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/46a505fd.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/47413c16.ttf b/cmd/web/static/fonts/glyphs/ttf/47413c16.ttf new file mode 100644 index 0000000..01125b3 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/47413c16.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/478bc2f3.ttf b/cmd/web/static/fonts/glyphs/ttf/478bc2f3.ttf new file mode 100644 index 0000000..54dcfa4 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/478bc2f3.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/47f8aa49.ttf b/cmd/web/static/fonts/glyphs/ttf/47f8aa49.ttf new file mode 100644 index 0000000..3c02405 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/47f8aa49.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/496a7c2f.ttf b/cmd/web/static/fonts/glyphs/ttf/496a7c2f.ttf new file mode 100644 index 0000000..1621f15 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/496a7c2f.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/49c0e6d5.ttf b/cmd/web/static/fonts/glyphs/ttf/49c0e6d5.ttf new file mode 100644 index 0000000..a9c249e Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/49c0e6d5.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/4a1c35d5.ttf b/cmd/web/static/fonts/glyphs/ttf/4a1c35d5.ttf new file mode 100644 index 0000000..65532e9 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/4a1c35d5.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/4a1c4041.ttf b/cmd/web/static/fonts/glyphs/ttf/4a1c4041.ttf new file mode 100644 index 0000000..1d2e70a Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/4a1c4041.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/4a280971.ttf b/cmd/web/static/fonts/glyphs/ttf/4a280971.ttf new file mode 100644 index 0000000..35c3493 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/4a280971.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/4a40a88a.ttf b/cmd/web/static/fonts/glyphs/ttf/4a40a88a.ttf new file mode 100644 index 0000000..e215b58 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/4a40a88a.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/4a54867e.ttf b/cmd/web/static/fonts/glyphs/ttf/4a54867e.ttf new file mode 100644 index 0000000..925dbc6 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/4a54867e.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/4a7c46ed.ttf b/cmd/web/static/fonts/glyphs/ttf/4a7c46ed.ttf new file mode 100644 index 0000000..394f546 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/4a7c46ed.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/4a849376.ttf b/cmd/web/static/fonts/glyphs/ttf/4a849376.ttf new file mode 100644 index 0000000..d9edf88 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/4a849376.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/4ae1ce28.ttf b/cmd/web/static/fonts/glyphs/ttf/4ae1ce28.ttf new file mode 100644 index 0000000..d73018b Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/4ae1ce28.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/4af4ef28.ttf b/cmd/web/static/fonts/glyphs/ttf/4af4ef28.ttf new file mode 100644 index 0000000..24c56f7 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/4af4ef28.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/4b099001.ttf b/cmd/web/static/fonts/glyphs/ttf/4b099001.ttf new file mode 100644 index 0000000..7cb0e23 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/4b099001.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/4d040d05.ttf b/cmd/web/static/fonts/glyphs/ttf/4d040d05.ttf new file mode 100644 index 0000000..dcd937c Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/4d040d05.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/4d59c24a.ttf b/cmd/web/static/fonts/glyphs/ttf/4d59c24a.ttf new file mode 100644 index 0000000..54a3a66 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/4d59c24a.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/4d6b8b33.ttf b/cmd/web/static/fonts/glyphs/ttf/4d6b8b33.ttf new file mode 100644 index 0000000..0da638c Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/4d6b8b33.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/4dc72635.ttf b/cmd/web/static/fonts/glyphs/ttf/4dc72635.ttf new file mode 100644 index 0000000..9048397 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/4dc72635.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/4e10ed5b.ttf b/cmd/web/static/fonts/glyphs/ttf/4e10ed5b.ttf new file mode 100644 index 0000000..db2f4da Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/4e10ed5b.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/4e1ac177.ttf b/cmd/web/static/fonts/glyphs/ttf/4e1ac177.ttf new file mode 100644 index 0000000..e0e6461 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/4e1ac177.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/4e9dce28.ttf b/cmd/web/static/fonts/glyphs/ttf/4e9dce28.ttf new file mode 100644 index 0000000..857c801 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/4e9dce28.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/4eb499b8.ttf b/cmd/web/static/fonts/glyphs/ttf/4eb499b8.ttf new file mode 100644 index 0000000..8c1ab0d Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/4eb499b8.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/4ee23427.ttf b/cmd/web/static/fonts/glyphs/ttf/4ee23427.ttf new file mode 100644 index 0000000..66b611f Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/4ee23427.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/4fd52c87.ttf b/cmd/web/static/fonts/glyphs/ttf/4fd52c87.ttf new file mode 100644 index 0000000..bb2d26b Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/4fd52c87.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/50b342a2.ttf b/cmd/web/static/fonts/glyphs/ttf/50b342a2.ttf new file mode 100644 index 0000000..126efd2 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/50b342a2.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/50f3c095.ttf b/cmd/web/static/fonts/glyphs/ttf/50f3c095.ttf new file mode 100644 index 0000000..8cff26b Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/50f3c095.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/511209fe.ttf b/cmd/web/static/fonts/glyphs/ttf/511209fe.ttf new file mode 100644 index 0000000..3cc090b Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/511209fe.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/516cf792.ttf b/cmd/web/static/fonts/glyphs/ttf/516cf792.ttf new file mode 100644 index 0000000..ce8856e Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/516cf792.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/51792712.ttf b/cmd/web/static/fonts/glyphs/ttf/51792712.ttf new file mode 100644 index 0000000..ef6e2d9 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/51792712.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/51a7c9cb.ttf b/cmd/web/static/fonts/glyphs/ttf/51a7c9cb.ttf new file mode 100644 index 0000000..33b1ecf Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/51a7c9cb.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/51a9fa09.ttf b/cmd/web/static/fonts/glyphs/ttf/51a9fa09.ttf new file mode 100644 index 0000000..74807fc Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/51a9fa09.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/520274a8.ttf b/cmd/web/static/fonts/glyphs/ttf/520274a8.ttf new file mode 100644 index 0000000..df7bebf Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/520274a8.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/525958c5.ttf b/cmd/web/static/fonts/glyphs/ttf/525958c5.ttf new file mode 100644 index 0000000..c5fe00b Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/525958c5.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/52b1caf8.ttf b/cmd/web/static/fonts/glyphs/ttf/52b1caf8.ttf new file mode 100644 index 0000000..b53f38c Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/52b1caf8.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/52d65af9.ttf b/cmd/web/static/fonts/glyphs/ttf/52d65af9.ttf new file mode 100644 index 0000000..19dde33 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/52d65af9.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/5330b47e.ttf b/cmd/web/static/fonts/glyphs/ttf/5330b47e.ttf new file mode 100644 index 0000000..66eef51 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/5330b47e.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/53605668.ttf b/cmd/web/static/fonts/glyphs/ttf/53605668.ttf new file mode 100644 index 0000000..2717f3e Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/53605668.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/53e7de8b.ttf b/cmd/web/static/fonts/glyphs/ttf/53e7de8b.ttf new file mode 100644 index 0000000..f0f9180 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/53e7de8b.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/5454be1e.ttf b/cmd/web/static/fonts/glyphs/ttf/5454be1e.ttf new file mode 100644 index 0000000..adc3c23 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/5454be1e.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/54940801.ttf b/cmd/web/static/fonts/glyphs/ttf/54940801.ttf new file mode 100644 index 0000000..d31222a Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/54940801.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/5496b078.ttf b/cmd/web/static/fonts/glyphs/ttf/5496b078.ttf new file mode 100644 index 0000000..9eda750 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/5496b078.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/55048901.ttf b/cmd/web/static/fonts/glyphs/ttf/55048901.ttf new file mode 100644 index 0000000..7196a84 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/55048901.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/55092daa.ttf b/cmd/web/static/fonts/glyphs/ttf/55092daa.ttf new file mode 100644 index 0000000..b89c74a Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/55092daa.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/565212e9.ttf b/cmd/web/static/fonts/glyphs/ttf/565212e9.ttf new file mode 100644 index 0000000..56f683c Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/565212e9.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/56521359.ttf b/cmd/web/static/fonts/glyphs/ttf/56521359.ttf new file mode 100644 index 0000000..cbb9957 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/56521359.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/56652a37.ttf b/cmd/web/static/fonts/glyphs/ttf/56652a37.ttf new file mode 100644 index 0000000..4806140 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/56652a37.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/5685167b.ttf b/cmd/web/static/fonts/glyphs/ttf/5685167b.ttf new file mode 100644 index 0000000..4af3250 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/5685167b.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/56c47c5a.ttf b/cmd/web/static/fonts/glyphs/ttf/56c47c5a.ttf new file mode 100644 index 0000000..b9b7ab0 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/56c47c5a.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/56ed6f41.ttf b/cmd/web/static/fonts/glyphs/ttf/56ed6f41.ttf new file mode 100644 index 0000000..2d1b7e5 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/56ed6f41.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/576582f8.ttf b/cmd/web/static/fonts/glyphs/ttf/576582f8.ttf new file mode 100644 index 0000000..e8710b7 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/576582f8.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/578f348a.ttf b/cmd/web/static/fonts/glyphs/ttf/578f348a.ttf new file mode 100644 index 0000000..43153d6 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/578f348a.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/5798f31f.ttf b/cmd/web/static/fonts/glyphs/ttf/5798f31f.ttf new file mode 100644 index 0000000..9dbb8dd Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/5798f31f.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/57c37525.ttf b/cmd/web/static/fonts/glyphs/ttf/57c37525.ttf new file mode 100644 index 0000000..00822cd Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/57c37525.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/57dd141e.ttf b/cmd/web/static/fonts/glyphs/ttf/57dd141e.ttf new file mode 100644 index 0000000..341d9f1 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/57dd141e.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/57eb30ea.ttf b/cmd/web/static/fonts/glyphs/ttf/57eb30ea.ttf new file mode 100644 index 0000000..d261dd6 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/57eb30ea.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/580961bd.ttf b/cmd/web/static/fonts/glyphs/ttf/580961bd.ttf new file mode 100644 index 0000000..a336428 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/580961bd.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/58c58e95.ttf b/cmd/web/static/fonts/glyphs/ttf/58c58e95.ttf new file mode 100644 index 0000000..99475e7 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/58c58e95.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/5922a1ce.ttf b/cmd/web/static/fonts/glyphs/ttf/5922a1ce.ttf new file mode 100644 index 0000000..6afdf4c Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/5922a1ce.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/59835a05.ttf b/cmd/web/static/fonts/glyphs/ttf/59835a05.ttf new file mode 100644 index 0000000..6750994 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/59835a05.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/59d1acbe.ttf b/cmd/web/static/fonts/glyphs/ttf/59d1acbe.ttf new file mode 100644 index 0000000..d96c2b4 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/59d1acbe.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/5b5bda30.ttf b/cmd/web/static/fonts/glyphs/ttf/5b5bda30.ttf new file mode 100644 index 0000000..a01c8f0 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/5b5bda30.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/5b78e2cb.ttf b/cmd/web/static/fonts/glyphs/ttf/5b78e2cb.ttf new file mode 100644 index 0000000..4cd1abc Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/5b78e2cb.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/5ba710db.ttf b/cmd/web/static/fonts/glyphs/ttf/5ba710db.ttf new file mode 100644 index 0000000..46a5b32 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/5ba710db.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/5bdeb600.ttf b/cmd/web/static/fonts/glyphs/ttf/5bdeb600.ttf new file mode 100644 index 0000000..69e3f85 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/5bdeb600.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/5d77f6cd.ttf b/cmd/web/static/fonts/glyphs/ttf/5d77f6cd.ttf new file mode 100644 index 0000000..fd18327 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/5d77f6cd.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/5d9d090a.ttf b/cmd/web/static/fonts/glyphs/ttf/5d9d090a.ttf new file mode 100644 index 0000000..d6e4e3f Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/5d9d090a.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/5e0938cb.ttf b/cmd/web/static/fonts/glyphs/ttf/5e0938cb.ttf new file mode 100644 index 0000000..bf0a7de Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/5e0938cb.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/5f1cfaf4.ttf b/cmd/web/static/fonts/glyphs/ttf/5f1cfaf4.ttf new file mode 100644 index 0000000..6015b2b Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/5f1cfaf4.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/5f3272da.ttf b/cmd/web/static/fonts/glyphs/ttf/5f3272da.ttf new file mode 100644 index 0000000..2ce7e58 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/5f3272da.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/604eb358.ttf b/cmd/web/static/fonts/glyphs/ttf/604eb358.ttf new file mode 100644 index 0000000..756b606 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/604eb358.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/6065bb77.ttf b/cmd/web/static/fonts/glyphs/ttf/6065bb77.ttf new file mode 100644 index 0000000..cb8d18f Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/6065bb77.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/6166611f.ttf b/cmd/web/static/fonts/glyphs/ttf/6166611f.ttf new file mode 100644 index 0000000..816f67f Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/6166611f.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/616d19f1.ttf b/cmd/web/static/fonts/glyphs/ttf/616d19f1.ttf new file mode 100644 index 0000000..25cd661 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/616d19f1.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/61965d02.ttf b/cmd/web/static/fonts/glyphs/ttf/61965d02.ttf new file mode 100644 index 0000000..df7dd06 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/61965d02.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/619e1843.ttf b/cmd/web/static/fonts/glyphs/ttf/619e1843.ttf new file mode 100644 index 0000000..7478ff5 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/619e1843.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/61b21f65.ttf b/cmd/web/static/fonts/glyphs/ttf/61b21f65.ttf new file mode 100644 index 0000000..1c5565b Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/61b21f65.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/61c4be74.ttf b/cmd/web/static/fonts/glyphs/ttf/61c4be74.ttf new file mode 100644 index 0000000..cfac0f2 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/61c4be74.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/61d34932.ttf b/cmd/web/static/fonts/glyphs/ttf/61d34932.ttf new file mode 100644 index 0000000..259ba40 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/61d34932.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/61e075b5.ttf b/cmd/web/static/fonts/glyphs/ttf/61e075b5.ttf new file mode 100644 index 0000000..b0e9326 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/61e075b5.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/61e4ec60.ttf b/cmd/web/static/fonts/glyphs/ttf/61e4ec60.ttf new file mode 100644 index 0000000..a67643e Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/61e4ec60.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/61fed715.ttf b/cmd/web/static/fonts/glyphs/ttf/61fed715.ttf new file mode 100644 index 0000000..a46777f Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/61fed715.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/6282768c.ttf b/cmd/web/static/fonts/glyphs/ttf/6282768c.ttf new file mode 100644 index 0000000..1f488df Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/6282768c.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/6302510b.ttf b/cmd/web/static/fonts/glyphs/ttf/6302510b.ttf new file mode 100644 index 0000000..0a49381 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/6302510b.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/6338d88d.ttf b/cmd/web/static/fonts/glyphs/ttf/6338d88d.ttf new file mode 100644 index 0000000..429eb87 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/6338d88d.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/6353dd1b.ttf b/cmd/web/static/fonts/glyphs/ttf/6353dd1b.ttf new file mode 100644 index 0000000..0b81560 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/6353dd1b.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/63d16b50.ttf b/cmd/web/static/fonts/glyphs/ttf/63d16b50.ttf new file mode 100644 index 0000000..29ca24a Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/63d16b50.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/6435b8b4.ttf b/cmd/web/static/fonts/glyphs/ttf/6435b8b4.ttf new file mode 100644 index 0000000..d4dbe63 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/6435b8b4.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/64bbaa0b.ttf b/cmd/web/static/fonts/glyphs/ttf/64bbaa0b.ttf new file mode 100644 index 0000000..d9263e1 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/64bbaa0b.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/6587b420.ttf b/cmd/web/static/fonts/glyphs/ttf/6587b420.ttf new file mode 100644 index 0000000..03f174f Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/6587b420.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/65bc5b9b.ttf b/cmd/web/static/fonts/glyphs/ttf/65bc5b9b.ttf new file mode 100644 index 0000000..053c61b Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/65bc5b9b.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/65ed8428.ttf b/cmd/web/static/fonts/glyphs/ttf/65ed8428.ttf new file mode 100644 index 0000000..62ec5b1 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/65ed8428.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/667938fd.ttf b/cmd/web/static/fonts/glyphs/ttf/667938fd.ttf new file mode 100644 index 0000000..28368b5 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/667938fd.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/6690e503.ttf b/cmd/web/static/fonts/glyphs/ttf/6690e503.ttf new file mode 100644 index 0000000..ba202ad Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/6690e503.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/66a94b72.ttf b/cmd/web/static/fonts/glyphs/ttf/66a94b72.ttf new file mode 100644 index 0000000..35f9a0a Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/66a94b72.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/66ef61bc.ttf b/cmd/web/static/fonts/glyphs/ttf/66ef61bc.ttf new file mode 100644 index 0000000..45652c7 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/66ef61bc.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/67036539.ttf b/cmd/web/static/fonts/glyphs/ttf/67036539.ttf new file mode 100644 index 0000000..28223e9 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/67036539.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/6748e774.ttf b/cmd/web/static/fonts/glyphs/ttf/6748e774.ttf new file mode 100644 index 0000000..512495f Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/6748e774.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/676821e3.ttf b/cmd/web/static/fonts/glyphs/ttf/676821e3.ttf new file mode 100644 index 0000000..ffb285a Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/676821e3.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/6795017c.ttf b/cmd/web/static/fonts/glyphs/ttf/6795017c.ttf new file mode 100644 index 0000000..90ebf3f Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/6795017c.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/67fdb825.ttf b/cmd/web/static/fonts/glyphs/ttf/67fdb825.ttf new file mode 100644 index 0000000..ea21697 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/67fdb825.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/68243e39.ttf b/cmd/web/static/fonts/glyphs/ttf/68243e39.ttf new file mode 100644 index 0000000..ba0c9d0 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/68243e39.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/6895132f.ttf b/cmd/web/static/fonts/glyphs/ttf/6895132f.ttf new file mode 100644 index 0000000..e02afca Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/6895132f.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/68a429e1.ttf b/cmd/web/static/fonts/glyphs/ttf/68a429e1.ttf new file mode 100644 index 0000000..393977b Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/68a429e1.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/68db64d0.ttf b/cmd/web/static/fonts/glyphs/ttf/68db64d0.ttf new file mode 100644 index 0000000..acbb574 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/68db64d0.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/692990c2.ttf b/cmd/web/static/fonts/glyphs/ttf/692990c2.ttf new file mode 100644 index 0000000..f1eba92 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/692990c2.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/6961fbe3.ttf b/cmd/web/static/fonts/glyphs/ttf/6961fbe3.ttf new file mode 100644 index 0000000..c25d6df Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/6961fbe3.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/6994c18b.ttf b/cmd/web/static/fonts/glyphs/ttf/6994c18b.ttf new file mode 100644 index 0000000..5ab6225 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/6994c18b.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/69dbef10.ttf b/cmd/web/static/fonts/glyphs/ttf/69dbef10.ttf new file mode 100644 index 0000000..4caa721 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/69dbef10.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/6a4f89c1.ttf b/cmd/web/static/fonts/glyphs/ttf/6a4f89c1.ttf new file mode 100644 index 0000000..abd2a47 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/6a4f89c1.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/6a54a1a9.ttf b/cmd/web/static/fonts/glyphs/ttf/6a54a1a9.ttf new file mode 100644 index 0000000..0e06f47 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/6a54a1a9.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/6a5cf79e.ttf b/cmd/web/static/fonts/glyphs/ttf/6a5cf79e.ttf new file mode 100644 index 0000000..38227b7 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/6a5cf79e.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/6a836616.ttf b/cmd/web/static/fonts/glyphs/ttf/6a836616.ttf new file mode 100644 index 0000000..524e81a Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/6a836616.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/6aa52642.ttf b/cmd/web/static/fonts/glyphs/ttf/6aa52642.ttf new file mode 100644 index 0000000..f871c45 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/6aa52642.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/6b36c863.ttf b/cmd/web/static/fonts/glyphs/ttf/6b36c863.ttf new file mode 100644 index 0000000..ba00421 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/6b36c863.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/6bb79e9f.ttf b/cmd/web/static/fonts/glyphs/ttf/6bb79e9f.ttf new file mode 100644 index 0000000..c446441 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/6bb79e9f.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/6c1508be.ttf b/cmd/web/static/fonts/glyphs/ttf/6c1508be.ttf new file mode 100644 index 0000000..32971d2 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/6c1508be.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/6c187b99.ttf b/cmd/web/static/fonts/glyphs/ttf/6c187b99.ttf new file mode 100644 index 0000000..be4b8c2 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/6c187b99.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/6cf59e55.ttf b/cmd/web/static/fonts/glyphs/ttf/6cf59e55.ttf new file mode 100644 index 0000000..452f18c Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/6cf59e55.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/6cf5db04.ttf b/cmd/web/static/fonts/glyphs/ttf/6cf5db04.ttf new file mode 100644 index 0000000..481a949 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/6cf5db04.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/6d4a4c73.ttf b/cmd/web/static/fonts/glyphs/ttf/6d4a4c73.ttf new file mode 100644 index 0000000..d6882af Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/6d4a4c73.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/6da3182a.ttf b/cmd/web/static/fonts/glyphs/ttf/6da3182a.ttf new file mode 100644 index 0000000..a5d6879 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/6da3182a.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/6db9cbfa.ttf b/cmd/web/static/fonts/glyphs/ttf/6db9cbfa.ttf new file mode 100644 index 0000000..4c6b04c Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/6db9cbfa.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/6dd1f0c3.ttf b/cmd/web/static/fonts/glyphs/ttf/6dd1f0c3.ttf new file mode 100644 index 0000000..437fd4c Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/6dd1f0c3.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/6e131b1a.ttf b/cmd/web/static/fonts/glyphs/ttf/6e131b1a.ttf new file mode 100644 index 0000000..6692cb7 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/6e131b1a.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/6e3568e1.ttf b/cmd/web/static/fonts/glyphs/ttf/6e3568e1.ttf new file mode 100644 index 0000000..a7f819b Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/6e3568e1.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/6e8af6a3.ttf b/cmd/web/static/fonts/glyphs/ttf/6e8af6a3.ttf new file mode 100644 index 0000000..9d941cc Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/6e8af6a3.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/6ec735fe.ttf b/cmd/web/static/fonts/glyphs/ttf/6ec735fe.ttf new file mode 100644 index 0000000..5bdf459 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/6ec735fe.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/6ff07dde.ttf b/cmd/web/static/fonts/glyphs/ttf/6ff07dde.ttf new file mode 100644 index 0000000..36d799f Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/6ff07dde.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/700a244d.ttf b/cmd/web/static/fonts/glyphs/ttf/700a244d.ttf new file mode 100644 index 0000000..9e9fa7e Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/700a244d.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/700b8efe.ttf b/cmd/web/static/fonts/glyphs/ttf/700b8efe.ttf new file mode 100644 index 0000000..87d8735 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/700b8efe.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/70159625.ttf b/cmd/web/static/fonts/glyphs/ttf/70159625.ttf new file mode 100644 index 0000000..a5b92f6 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/70159625.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/703d038d.ttf b/cmd/web/static/fonts/glyphs/ttf/703d038d.ttf new file mode 100644 index 0000000..d686de7 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/703d038d.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/70a458c9.ttf b/cmd/web/static/fonts/glyphs/ttf/70a458c9.ttf new file mode 100644 index 0000000..43d8bee Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/70a458c9.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/70ce9c46.ttf b/cmd/web/static/fonts/glyphs/ttf/70ce9c46.ttf new file mode 100644 index 0000000..f7eca70 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/70ce9c46.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/70d68f2f.ttf b/cmd/web/static/fonts/glyphs/ttf/70d68f2f.ttf new file mode 100644 index 0000000..0c5994b Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/70d68f2f.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/7188a9c1.ttf b/cmd/web/static/fonts/glyphs/ttf/7188a9c1.ttf new file mode 100644 index 0000000..2707d54 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/7188a9c1.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/72213980.ttf b/cmd/web/static/fonts/glyphs/ttf/72213980.ttf new file mode 100644 index 0000000..95d87eb Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/72213980.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/7257f8e5.ttf b/cmd/web/static/fonts/glyphs/ttf/7257f8e5.ttf new file mode 100644 index 0000000..e5c92fb Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/7257f8e5.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/72751892.ttf b/cmd/web/static/fonts/glyphs/ttf/72751892.ttf new file mode 100644 index 0000000..7b2ee34 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/72751892.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/72bccb9e.ttf b/cmd/web/static/fonts/glyphs/ttf/72bccb9e.ttf new file mode 100644 index 0000000..7ecf103 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/72bccb9e.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/73337a66.ttf b/cmd/web/static/fonts/glyphs/ttf/73337a66.ttf new file mode 100644 index 0000000..bef1897 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/73337a66.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/73363ff7.ttf b/cmd/web/static/fonts/glyphs/ttf/73363ff7.ttf new file mode 100644 index 0000000..5d75523 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/73363ff7.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/7345156e.ttf b/cmd/web/static/fonts/glyphs/ttf/7345156e.ttf new file mode 100644 index 0000000..fc9f6f1 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/7345156e.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/734be349.ttf b/cmd/web/static/fonts/glyphs/ttf/734be349.ttf new file mode 100644 index 0000000..1f8f19f Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/734be349.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/73db31ed.ttf b/cmd/web/static/fonts/glyphs/ttf/73db31ed.ttf new file mode 100644 index 0000000..96687f6 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/73db31ed.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/74da00d4.ttf b/cmd/web/static/fonts/glyphs/ttf/74da00d4.ttf new file mode 100644 index 0000000..e56162e Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/74da00d4.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/74da7207.ttf b/cmd/web/static/fonts/glyphs/ttf/74da7207.ttf new file mode 100644 index 0000000..fefb44d Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/74da7207.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/74dc98f9.ttf b/cmd/web/static/fonts/glyphs/ttf/74dc98f9.ttf new file mode 100644 index 0000000..2cde42a Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/74dc98f9.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/75058b72.ttf b/cmd/web/static/fonts/glyphs/ttf/75058b72.ttf new file mode 100644 index 0000000..6cf280a Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/75058b72.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/75577460.ttf b/cmd/web/static/fonts/glyphs/ttf/75577460.ttf new file mode 100644 index 0000000..1824af7 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/75577460.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/7651ec5d.ttf b/cmd/web/static/fonts/glyphs/ttf/7651ec5d.ttf new file mode 100644 index 0000000..7193214 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/7651ec5d.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/766bbd91.ttf b/cmd/web/static/fonts/glyphs/ttf/766bbd91.ttf new file mode 100644 index 0000000..bc84d1a Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/766bbd91.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/7692acf2.ttf b/cmd/web/static/fonts/glyphs/ttf/7692acf2.ttf new file mode 100644 index 0000000..9be4e59 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/7692acf2.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/7708bdcb.ttf b/cmd/web/static/fonts/glyphs/ttf/7708bdcb.ttf new file mode 100644 index 0000000..24d1c7c Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/7708bdcb.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/77d98a34.ttf b/cmd/web/static/fonts/glyphs/ttf/77d98a34.ttf new file mode 100644 index 0000000..85c95e8 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/77d98a34.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/781792ac.ttf b/cmd/web/static/fonts/glyphs/ttf/781792ac.ttf new file mode 100644 index 0000000..23d4e6c Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/781792ac.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/7824402e.ttf b/cmd/web/static/fonts/glyphs/ttf/7824402e.ttf new file mode 100644 index 0000000..7e00cb9 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/7824402e.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/782774ed.ttf b/cmd/web/static/fonts/glyphs/ttf/782774ed.ttf new file mode 100644 index 0000000..3f81aa3 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/782774ed.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/7845e476.ttf b/cmd/web/static/fonts/glyphs/ttf/7845e476.ttf new file mode 100644 index 0000000..eb7a712 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/7845e476.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/78600846.ttf b/cmd/web/static/fonts/glyphs/ttf/78600846.ttf new file mode 100644 index 0000000..0e69f5f Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/78600846.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/78f17a21.ttf b/cmd/web/static/fonts/glyphs/ttf/78f17a21.ttf new file mode 100644 index 0000000..ecaccde Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/78f17a21.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/7909aeb7.ttf b/cmd/web/static/fonts/glyphs/ttf/7909aeb7.ttf new file mode 100644 index 0000000..8de459e Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/7909aeb7.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/793b5687.ttf b/cmd/web/static/fonts/glyphs/ttf/793b5687.ttf new file mode 100644 index 0000000..bb56b89 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/793b5687.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/79fefc18.ttf b/cmd/web/static/fonts/glyphs/ttf/79fefc18.ttf new file mode 100644 index 0000000..d7df827 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/79fefc18.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/7add0458.ttf b/cmd/web/static/fonts/glyphs/ttf/7add0458.ttf new file mode 100644 index 0000000..528e337 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/7add0458.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/7b978459.ttf b/cmd/web/static/fonts/glyphs/ttf/7b978459.ttf new file mode 100644 index 0000000..832ddb5 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/7b978459.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/7bd1e500.ttf b/cmd/web/static/fonts/glyphs/ttf/7bd1e500.ttf new file mode 100644 index 0000000..5fe4d31 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/7bd1e500.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/7c28d0b9.ttf b/cmd/web/static/fonts/glyphs/ttf/7c28d0b9.ttf new file mode 100644 index 0000000..ed559f7 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/7c28d0b9.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/7c37a4d6.ttf b/cmd/web/static/fonts/glyphs/ttf/7c37a4d6.ttf new file mode 100644 index 0000000..31ad250 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/7c37a4d6.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/7c77a98a.ttf b/cmd/web/static/fonts/glyphs/ttf/7c77a98a.ttf new file mode 100644 index 0000000..74564b4 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/7c77a98a.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/7ca46b25.ttf b/cmd/web/static/fonts/glyphs/ttf/7ca46b25.ttf new file mode 100644 index 0000000..e9e45c1 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/7ca46b25.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/7d67a50f.ttf b/cmd/web/static/fonts/glyphs/ttf/7d67a50f.ttf new file mode 100644 index 0000000..b2e1128 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/7d67a50f.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/7d68324f.ttf b/cmd/web/static/fonts/glyphs/ttf/7d68324f.ttf new file mode 100644 index 0000000..a478b04 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/7d68324f.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/7d8ef620.ttf b/cmd/web/static/fonts/glyphs/ttf/7d8ef620.ttf new file mode 100644 index 0000000..802ebc7 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/7d8ef620.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/7dd88093.ttf b/cmd/web/static/fonts/glyphs/ttf/7dd88093.ttf new file mode 100644 index 0000000..54e8288 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/7dd88093.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/7e2c66dd.ttf b/cmd/web/static/fonts/glyphs/ttf/7e2c66dd.ttf new file mode 100644 index 0000000..3699ef5 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/7e2c66dd.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/7e86b04d.ttf b/cmd/web/static/fonts/glyphs/ttf/7e86b04d.ttf new file mode 100644 index 0000000..2a87bbc Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/7e86b04d.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/7ee937ee.ttf b/cmd/web/static/fonts/glyphs/ttf/7ee937ee.ttf new file mode 100644 index 0000000..7402c3b Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/7ee937ee.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/7f3c219c.ttf b/cmd/web/static/fonts/glyphs/ttf/7f3c219c.ttf new file mode 100644 index 0000000..5d7c61d Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/7f3c219c.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/7f4ff157.ttf b/cmd/web/static/fonts/glyphs/ttf/7f4ff157.ttf new file mode 100644 index 0000000..af3a8f6 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/7f4ff157.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/7faba1e2.ttf b/cmd/web/static/fonts/glyphs/ttf/7faba1e2.ttf new file mode 100644 index 0000000..c8a5736 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/7faba1e2.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/7fc2dce7.ttf b/cmd/web/static/fonts/glyphs/ttf/7fc2dce7.ttf new file mode 100644 index 0000000..02bd70e Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/7fc2dce7.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/80160b96.ttf b/cmd/web/static/fonts/glyphs/ttf/80160b96.ttf new file mode 100644 index 0000000..d1248a3 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/80160b96.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/8021a1fc.ttf b/cmd/web/static/fonts/glyphs/ttf/8021a1fc.ttf new file mode 100644 index 0000000..e9a30d0 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/8021a1fc.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/80629e16.ttf b/cmd/web/static/fonts/glyphs/ttf/80629e16.ttf new file mode 100644 index 0000000..98d6b61 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/80629e16.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/808ad3a7.ttf b/cmd/web/static/fonts/glyphs/ttf/808ad3a7.ttf new file mode 100644 index 0000000..f59c22d Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/808ad3a7.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/8179876c.ttf b/cmd/web/static/fonts/glyphs/ttf/8179876c.ttf new file mode 100644 index 0000000..9779eea Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/8179876c.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/817d2a0a.ttf b/cmd/web/static/fonts/glyphs/ttf/817d2a0a.ttf new file mode 100644 index 0000000..60f2033 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/817d2a0a.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/81c6c9c0.ttf b/cmd/web/static/fonts/glyphs/ttf/81c6c9c0.ttf new file mode 100644 index 0000000..e7ee22a Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/81c6c9c0.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/81e03745.ttf b/cmd/web/static/fonts/glyphs/ttf/81e03745.ttf new file mode 100644 index 0000000..9047219 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/81e03745.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/8216b752.ttf b/cmd/web/static/fonts/glyphs/ttf/8216b752.ttf new file mode 100644 index 0000000..8f4704b Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/8216b752.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/825014e6.ttf b/cmd/web/static/fonts/glyphs/ttf/825014e6.ttf new file mode 100644 index 0000000..9e7131b Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/825014e6.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/836758e3.ttf b/cmd/web/static/fonts/glyphs/ttf/836758e3.ttf new file mode 100644 index 0000000..30e1fb7 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/836758e3.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/8377e39a.ttf b/cmd/web/static/fonts/glyphs/ttf/8377e39a.ttf new file mode 100644 index 0000000..3e29300 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/8377e39a.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/839981ee.ttf b/cmd/web/static/fonts/glyphs/ttf/839981ee.ttf new file mode 100644 index 0000000..f34bda5 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/839981ee.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/83bd70cd.ttf b/cmd/web/static/fonts/glyphs/ttf/83bd70cd.ttf new file mode 100644 index 0000000..92ae469 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/83bd70cd.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/83f03b1d.ttf b/cmd/web/static/fonts/glyphs/ttf/83f03b1d.ttf new file mode 100644 index 0000000..c0b1fb6 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/83f03b1d.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/840f090f.ttf b/cmd/web/static/fonts/glyphs/ttf/840f090f.ttf new file mode 100644 index 0000000..855682c Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/840f090f.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/842ec06d.ttf b/cmd/web/static/fonts/glyphs/ttf/842ec06d.ttf new file mode 100644 index 0000000..6efcf3f Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/842ec06d.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/84aca33c.ttf b/cmd/web/static/fonts/glyphs/ttf/84aca33c.ttf new file mode 100644 index 0000000..6b4d1ce Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/84aca33c.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/854811f2.ttf b/cmd/web/static/fonts/glyphs/ttf/854811f2.ttf new file mode 100644 index 0000000..19f8ff6 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/854811f2.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/85a57a2a.ttf b/cmd/web/static/fonts/glyphs/ttf/85a57a2a.ttf new file mode 100644 index 0000000..968b08a Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/85a57a2a.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/85b9ab95.ttf b/cmd/web/static/fonts/glyphs/ttf/85b9ab95.ttf new file mode 100644 index 0000000..74d49af Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/85b9ab95.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/860a7588.ttf b/cmd/web/static/fonts/glyphs/ttf/860a7588.ttf new file mode 100644 index 0000000..74a21d9 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/860a7588.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/862543ec.ttf b/cmd/web/static/fonts/glyphs/ttf/862543ec.ttf new file mode 100644 index 0000000..fdff8ae Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/862543ec.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/8625f0eb.ttf b/cmd/web/static/fonts/glyphs/ttf/8625f0eb.ttf new file mode 100644 index 0000000..4b10cbb Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/8625f0eb.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/86d4d2fb.ttf b/cmd/web/static/fonts/glyphs/ttf/86d4d2fb.ttf new file mode 100644 index 0000000..aca755e Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/86d4d2fb.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/86e445ff.ttf b/cmd/web/static/fonts/glyphs/ttf/86e445ff.ttf new file mode 100644 index 0000000..87e5bfa Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/86e445ff.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/871f2951.ttf b/cmd/web/static/fonts/glyphs/ttf/871f2951.ttf new file mode 100644 index 0000000..8deb2b8 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/871f2951.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/87626b68.ttf b/cmd/web/static/fonts/glyphs/ttf/87626b68.ttf new file mode 100644 index 0000000..98ca5f5 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/87626b68.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/8796b453.ttf b/cmd/web/static/fonts/glyphs/ttf/8796b453.ttf new file mode 100644 index 0000000..fbc33f4 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/8796b453.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/87dda7cc.ttf b/cmd/web/static/fonts/glyphs/ttf/87dda7cc.ttf new file mode 100644 index 0000000..932950b Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/87dda7cc.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/882182c1.ttf b/cmd/web/static/fonts/glyphs/ttf/882182c1.ttf new file mode 100644 index 0000000..c6588d7 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/882182c1.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/8827eb24.ttf b/cmd/web/static/fonts/glyphs/ttf/8827eb24.ttf new file mode 100644 index 0000000..ac90c3e Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/8827eb24.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/888412e6.ttf b/cmd/web/static/fonts/glyphs/ttf/888412e6.ttf new file mode 100644 index 0000000..a705c47 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/888412e6.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/894bfc80.ttf b/cmd/web/static/fonts/glyphs/ttf/894bfc80.ttf new file mode 100644 index 0000000..47f0465 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/894bfc80.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/896bcc00.ttf b/cmd/web/static/fonts/glyphs/ttf/896bcc00.ttf new file mode 100644 index 0000000..e24b905 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/896bcc00.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/899e83fa.ttf b/cmd/web/static/fonts/glyphs/ttf/899e83fa.ttf new file mode 100644 index 0000000..9869062 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/899e83fa.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/89eb94d2.ttf b/cmd/web/static/fonts/glyphs/ttf/89eb94d2.ttf new file mode 100644 index 0000000..dadaf65 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/89eb94d2.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/8a52dabb.ttf b/cmd/web/static/fonts/glyphs/ttf/8a52dabb.ttf new file mode 100644 index 0000000..57c6af6 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/8a52dabb.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/8aa66ff2.ttf b/cmd/web/static/fonts/glyphs/ttf/8aa66ff2.ttf new file mode 100644 index 0000000..c72d9a9 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/8aa66ff2.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/8aacdf16.ttf b/cmd/web/static/fonts/glyphs/ttf/8aacdf16.ttf new file mode 100644 index 0000000..a7bd07c Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/8aacdf16.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/8b45a38b.ttf b/cmd/web/static/fonts/glyphs/ttf/8b45a38b.ttf new file mode 100644 index 0000000..a044052 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/8b45a38b.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/8b604615.ttf b/cmd/web/static/fonts/glyphs/ttf/8b604615.ttf new file mode 100644 index 0000000..1bc1842 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/8b604615.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/8ba1a228.ttf b/cmd/web/static/fonts/glyphs/ttf/8ba1a228.ttf new file mode 100644 index 0000000..df6ceb5 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/8ba1a228.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/8beb9dac.ttf b/cmd/web/static/fonts/glyphs/ttf/8beb9dac.ttf new file mode 100644 index 0000000..403df6c Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/8beb9dac.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/8befb6ca.ttf b/cmd/web/static/fonts/glyphs/ttf/8befb6ca.ttf new file mode 100644 index 0000000..299480f Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/8befb6ca.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/8c60c66a.ttf b/cmd/web/static/fonts/glyphs/ttf/8c60c66a.ttf new file mode 100644 index 0000000..763a2df Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/8c60c66a.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/8c610c58.ttf b/cmd/web/static/fonts/glyphs/ttf/8c610c58.ttf new file mode 100644 index 0000000..09cdfaf Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/8c610c58.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/8c7e5269.ttf b/cmd/web/static/fonts/glyphs/ttf/8c7e5269.ttf new file mode 100644 index 0000000..f5611ab Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/8c7e5269.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/8cd085fd.ttf b/cmd/web/static/fonts/glyphs/ttf/8cd085fd.ttf new file mode 100644 index 0000000..76d86e6 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/8cd085fd.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/8d40bc1f.ttf b/cmd/web/static/fonts/glyphs/ttf/8d40bc1f.ttf new file mode 100644 index 0000000..396d8e8 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/8d40bc1f.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/8d4d7cd2.ttf b/cmd/web/static/fonts/glyphs/ttf/8d4d7cd2.ttf new file mode 100644 index 0000000..2d611a5 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/8d4d7cd2.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/8f3601cc.ttf b/cmd/web/static/fonts/glyphs/ttf/8f3601cc.ttf new file mode 100644 index 0000000..a5d04f0 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/8f3601cc.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/8f9646bf.ttf b/cmd/web/static/fonts/glyphs/ttf/8f9646bf.ttf new file mode 100644 index 0000000..6bf8e8f Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/8f9646bf.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/900affc9.ttf b/cmd/web/static/fonts/glyphs/ttf/900affc9.ttf new file mode 100644 index 0000000..bb95cb2 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/900affc9.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/9046047a.ttf b/cmd/web/static/fonts/glyphs/ttf/9046047a.ttf new file mode 100644 index 0000000..cb31d39 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/9046047a.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/907dea52.ttf b/cmd/web/static/fonts/glyphs/ttf/907dea52.ttf new file mode 100644 index 0000000..68fe5ed Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/907dea52.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/91c7605d.ttf b/cmd/web/static/fonts/glyphs/ttf/91c7605d.ttf new file mode 100644 index 0000000..14e6257 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/91c7605d.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/91d96ddb.ttf b/cmd/web/static/fonts/glyphs/ttf/91d96ddb.ttf new file mode 100644 index 0000000..9ef1d00 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/91d96ddb.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/91e6882a.ttf b/cmd/web/static/fonts/glyphs/ttf/91e6882a.ttf new file mode 100644 index 0000000..79c6683 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/91e6882a.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/928b86d7.ttf b/cmd/web/static/fonts/glyphs/ttf/928b86d7.ttf new file mode 100644 index 0000000..d62067f Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/928b86d7.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/92b634cd.ttf b/cmd/web/static/fonts/glyphs/ttf/92b634cd.ttf new file mode 100644 index 0000000..284cab6 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/92b634cd.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/935170dd.ttf b/cmd/web/static/fonts/glyphs/ttf/935170dd.ttf new file mode 100644 index 0000000..bf037f6 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/935170dd.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/9352bab8.ttf b/cmd/web/static/fonts/glyphs/ttf/9352bab8.ttf new file mode 100644 index 0000000..c541a3e Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/9352bab8.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/9375b000.ttf b/cmd/web/static/fonts/glyphs/ttf/9375b000.ttf new file mode 100644 index 0000000..f0d0b3d Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/9375b000.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/9393e70c.ttf b/cmd/web/static/fonts/glyphs/ttf/9393e70c.ttf new file mode 100644 index 0000000..7359706 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/9393e70c.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/93b56efb.ttf b/cmd/web/static/fonts/glyphs/ttf/93b56efb.ttf new file mode 100644 index 0000000..09efdb0 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/93b56efb.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/944650cf.ttf b/cmd/web/static/fonts/glyphs/ttf/944650cf.ttf new file mode 100644 index 0000000..3c064e6 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/944650cf.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/94531f1b.ttf b/cmd/web/static/fonts/glyphs/ttf/94531f1b.ttf new file mode 100644 index 0000000..8760225 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/94531f1b.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/948b9f9b.ttf b/cmd/web/static/fonts/glyphs/ttf/948b9f9b.ttf new file mode 100644 index 0000000..e420634 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/948b9f9b.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/94bb9a0a.ttf b/cmd/web/static/fonts/glyphs/ttf/94bb9a0a.ttf new file mode 100644 index 0000000..b199a98 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/94bb9a0a.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/94c87c19.ttf b/cmd/web/static/fonts/glyphs/ttf/94c87c19.ttf new file mode 100644 index 0000000..a6d83f3 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/94c87c19.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/94ee3537.ttf b/cmd/web/static/fonts/glyphs/ttf/94ee3537.ttf new file mode 100644 index 0000000..f95c986 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/94ee3537.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/95114a7a.ttf b/cmd/web/static/fonts/glyphs/ttf/95114a7a.ttf new file mode 100644 index 0000000..4430aae Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/95114a7a.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/9518b144.ttf b/cmd/web/static/fonts/glyphs/ttf/9518b144.ttf new file mode 100644 index 0000000..76f539d Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/9518b144.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/9554c428.ttf b/cmd/web/static/fonts/glyphs/ttf/9554c428.ttf new file mode 100644 index 0000000..e936ff6 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/9554c428.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/957ea602.ttf b/cmd/web/static/fonts/glyphs/ttf/957ea602.ttf new file mode 100644 index 0000000..e0b36e8 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/957ea602.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/95ce85b0.ttf b/cmd/web/static/fonts/glyphs/ttf/95ce85b0.ttf new file mode 100644 index 0000000..7c67b1a Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/95ce85b0.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/9605447e.ttf b/cmd/web/static/fonts/glyphs/ttf/9605447e.ttf new file mode 100644 index 0000000..b760217 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/9605447e.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/971dbc94.ttf b/cmd/web/static/fonts/glyphs/ttf/971dbc94.ttf new file mode 100644 index 0000000..4306d6f Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/971dbc94.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/9730509c.ttf b/cmd/web/static/fonts/glyphs/ttf/9730509c.ttf new file mode 100644 index 0000000..ee5ef5f Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/9730509c.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/97b82bce.ttf b/cmd/web/static/fonts/glyphs/ttf/97b82bce.ttf new file mode 100644 index 0000000..08d0ef6 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/97b82bce.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/97ba67f1.ttf b/cmd/web/static/fonts/glyphs/ttf/97ba67f1.ttf new file mode 100644 index 0000000..8e62c02 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/97ba67f1.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/97e6e2a1.ttf b/cmd/web/static/fonts/glyphs/ttf/97e6e2a1.ttf new file mode 100644 index 0000000..190523a Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/97e6e2a1.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/98117c28.ttf b/cmd/web/static/fonts/glyphs/ttf/98117c28.ttf new file mode 100644 index 0000000..b30f0d8 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/98117c28.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/982f3edc.ttf b/cmd/web/static/fonts/glyphs/ttf/982f3edc.ttf new file mode 100644 index 0000000..1716305 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/982f3edc.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/98357202.ttf b/cmd/web/static/fonts/glyphs/ttf/98357202.ttf new file mode 100644 index 0000000..0060262 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/98357202.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/9850be29.ttf b/cmd/web/static/fonts/glyphs/ttf/9850be29.ttf new file mode 100644 index 0000000..93170a7 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/9850be29.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/9899cecb.ttf b/cmd/web/static/fonts/glyphs/ttf/9899cecb.ttf new file mode 100644 index 0000000..59d1da6 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/9899cecb.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/989ad0a9.ttf b/cmd/web/static/fonts/glyphs/ttf/989ad0a9.ttf new file mode 100644 index 0000000..9e92df2 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/989ad0a9.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/98a0b6a0.ttf b/cmd/web/static/fonts/glyphs/ttf/98a0b6a0.ttf new file mode 100644 index 0000000..3bef119 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/98a0b6a0.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/993b5d5e.ttf b/cmd/web/static/fonts/glyphs/ttf/993b5d5e.ttf new file mode 100644 index 0000000..8c97615 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/993b5d5e.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/99a3e60b.ttf b/cmd/web/static/fonts/glyphs/ttf/99a3e60b.ttf new file mode 100644 index 0000000..0262a34 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/99a3e60b.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/99b23887.ttf b/cmd/web/static/fonts/glyphs/ttf/99b23887.ttf new file mode 100644 index 0000000..c1342ba Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/99b23887.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/9a7fb4ed.ttf b/cmd/web/static/fonts/glyphs/ttf/9a7fb4ed.ttf new file mode 100644 index 0000000..7205b3f Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/9a7fb4ed.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/9a9a307d.ttf b/cmd/web/static/fonts/glyphs/ttf/9a9a307d.ttf new file mode 100644 index 0000000..a45786a Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/9a9a307d.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/9b8448e1.ttf b/cmd/web/static/fonts/glyphs/ttf/9b8448e1.ttf new file mode 100644 index 0000000..8743472 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/9b8448e1.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/9b9375b4.ttf b/cmd/web/static/fonts/glyphs/ttf/9b9375b4.ttf new file mode 100644 index 0000000..8f86648 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/9b9375b4.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/9bb36328.ttf b/cmd/web/static/fonts/glyphs/ttf/9bb36328.ttf new file mode 100644 index 0000000..33e6623 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/9bb36328.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/9be136c3.ttf b/cmd/web/static/fonts/glyphs/ttf/9be136c3.ttf new file mode 100644 index 0000000..1c46a0a Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/9be136c3.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/9c739b13.ttf b/cmd/web/static/fonts/glyphs/ttf/9c739b13.ttf new file mode 100644 index 0000000..54e2eb0 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/9c739b13.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/9ccb9c44.ttf b/cmd/web/static/fonts/glyphs/ttf/9ccb9c44.ttf new file mode 100644 index 0000000..0be4e6d Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/9ccb9c44.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/9ced0dd7.ttf b/cmd/web/static/fonts/glyphs/ttf/9ced0dd7.ttf new file mode 100644 index 0000000..f7404db Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/9ced0dd7.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/9d1ecd98.ttf b/cmd/web/static/fonts/glyphs/ttf/9d1ecd98.ttf new file mode 100644 index 0000000..e0fe9fb Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/9d1ecd98.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/9e0089cc.ttf b/cmd/web/static/fonts/glyphs/ttf/9e0089cc.ttf new file mode 100644 index 0000000..f669d15 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/9e0089cc.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/9e3addab.ttf b/cmd/web/static/fonts/glyphs/ttf/9e3addab.ttf new file mode 100644 index 0000000..6bc9ba2 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/9e3addab.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/9eb86178.ttf b/cmd/web/static/fonts/glyphs/ttf/9eb86178.ttf new file mode 100644 index 0000000..3b30b7b Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/9eb86178.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/9f00be36.ttf b/cmd/web/static/fonts/glyphs/ttf/9f00be36.ttf new file mode 100644 index 0000000..b829db3 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/9f00be36.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/9f205e65.ttf b/cmd/web/static/fonts/glyphs/ttf/9f205e65.ttf new file mode 100644 index 0000000..f31edf3 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/9f205e65.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/9f3909aa.ttf b/cmd/web/static/fonts/glyphs/ttf/9f3909aa.ttf new file mode 100644 index 0000000..edc178a Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/9f3909aa.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/a0183c8e.ttf b/cmd/web/static/fonts/glyphs/ttf/a0183c8e.ttf new file mode 100644 index 0000000..dc35cda Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/a0183c8e.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/a04998d6.ttf b/cmd/web/static/fonts/glyphs/ttf/a04998d6.ttf new file mode 100644 index 0000000..00cdcfd Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/a04998d6.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/a0a347f1.ttf b/cmd/web/static/fonts/glyphs/ttf/a0a347f1.ttf new file mode 100644 index 0000000..96b2ea5 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/a0a347f1.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/a0e42042.ttf b/cmd/web/static/fonts/glyphs/ttf/a0e42042.ttf new file mode 100644 index 0000000..ff501c6 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/a0e42042.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/a0ecbb18.ttf b/cmd/web/static/fonts/glyphs/ttf/a0ecbb18.ttf new file mode 100644 index 0000000..3fcceca Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/a0ecbb18.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/a1b08642.ttf b/cmd/web/static/fonts/glyphs/ttf/a1b08642.ttf new file mode 100644 index 0000000..07cfc56 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/a1b08642.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/a1f0f211.ttf b/cmd/web/static/fonts/glyphs/ttf/a1f0f211.ttf new file mode 100644 index 0000000..161c815 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/a1f0f211.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/a1fbcdf7.ttf b/cmd/web/static/fonts/glyphs/ttf/a1fbcdf7.ttf new file mode 100644 index 0000000..7432880 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/a1fbcdf7.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/a22847ed.ttf b/cmd/web/static/fonts/glyphs/ttf/a22847ed.ttf new file mode 100644 index 0000000..7b68360 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/a22847ed.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/a36d6959.ttf b/cmd/web/static/fonts/glyphs/ttf/a36d6959.ttf new file mode 100644 index 0000000..b579c5e Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/a36d6959.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/a3805f14.ttf b/cmd/web/static/fonts/glyphs/ttf/a3805f14.ttf new file mode 100644 index 0000000..1958944 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/a3805f14.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/a45832ed.ttf b/cmd/web/static/fonts/glyphs/ttf/a45832ed.ttf new file mode 100644 index 0000000..71b5bef Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/a45832ed.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/a4900e86.ttf b/cmd/web/static/fonts/glyphs/ttf/a4900e86.ttf new file mode 100644 index 0000000..a50782d Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/a4900e86.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/a4b9f2e5.ttf b/cmd/web/static/fonts/glyphs/ttf/a4b9f2e5.ttf new file mode 100644 index 0000000..9849b62 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/a4b9f2e5.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/a4caee91.ttf b/cmd/web/static/fonts/glyphs/ttf/a4caee91.ttf new file mode 100644 index 0000000..d0844ea Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/a4caee91.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/a52bb57c.ttf b/cmd/web/static/fonts/glyphs/ttf/a52bb57c.ttf new file mode 100644 index 0000000..71ec708 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/a52bb57c.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/a54fe823.ttf b/cmd/web/static/fonts/glyphs/ttf/a54fe823.ttf new file mode 100644 index 0000000..8ddb404 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/a54fe823.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/a564f20f.ttf b/cmd/web/static/fonts/glyphs/ttf/a564f20f.ttf new file mode 100644 index 0000000..a623f51 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/a564f20f.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/a5ee2945.ttf b/cmd/web/static/fonts/glyphs/ttf/a5ee2945.ttf new file mode 100644 index 0000000..29b8811 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/a5ee2945.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/a6af89bd.ttf b/cmd/web/static/fonts/glyphs/ttf/a6af89bd.ttf new file mode 100644 index 0000000..603b9fa Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/a6af89bd.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/a73e53ed.ttf b/cmd/web/static/fonts/glyphs/ttf/a73e53ed.ttf new file mode 100644 index 0000000..cb69c9b Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/a73e53ed.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/a7644d09.ttf b/cmd/web/static/fonts/glyphs/ttf/a7644d09.ttf new file mode 100644 index 0000000..0851871 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/a7644d09.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/a851f472.ttf b/cmd/web/static/fonts/glyphs/ttf/a851f472.ttf new file mode 100644 index 0000000..05708d4 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/a851f472.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/a87ed935.ttf b/cmd/web/static/fonts/glyphs/ttf/a87ed935.ttf new file mode 100644 index 0000000..fabea7f Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/a87ed935.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/a97d857e.ttf b/cmd/web/static/fonts/glyphs/ttf/a97d857e.ttf new file mode 100644 index 0000000..b5c3b18 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/a97d857e.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/a9a9d798.ttf b/cmd/web/static/fonts/glyphs/ttf/a9a9d798.ttf new file mode 100644 index 0000000..32f45fc Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/a9a9d798.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/a9daf068.ttf b/cmd/web/static/fonts/glyphs/ttf/a9daf068.ttf new file mode 100644 index 0000000..ff18b06 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/a9daf068.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/aa0b1cf4.ttf b/cmd/web/static/fonts/glyphs/ttf/aa0b1cf4.ttf new file mode 100644 index 0000000..907f3ca Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/aa0b1cf4.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/aa227416.ttf b/cmd/web/static/fonts/glyphs/ttf/aa227416.ttf new file mode 100644 index 0000000..0b27f99 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/aa227416.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/aa6c0f8a.ttf b/cmd/web/static/fonts/glyphs/ttf/aa6c0f8a.ttf new file mode 100644 index 0000000..7a36707 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/aa6c0f8a.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/aae08744.ttf b/cmd/web/static/fonts/glyphs/ttf/aae08744.ttf new file mode 100644 index 0000000..4959966 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/aae08744.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/ab5759c1.ttf b/cmd/web/static/fonts/glyphs/ttf/ab5759c1.ttf new file mode 100644 index 0000000..1666dde Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/ab5759c1.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/ab8056ea.ttf b/cmd/web/static/fonts/glyphs/ttf/ab8056ea.ttf new file mode 100644 index 0000000..8e9f16a Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/ab8056ea.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/ac2048ca.ttf b/cmd/web/static/fonts/glyphs/ttf/ac2048ca.ttf new file mode 100644 index 0000000..496de0d Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/ac2048ca.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/ac31ca34.ttf b/cmd/web/static/fonts/glyphs/ttf/ac31ca34.ttf new file mode 100644 index 0000000..40165c0 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/ac31ca34.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/ac9383e4.ttf b/cmd/web/static/fonts/glyphs/ttf/ac9383e4.ttf new file mode 100644 index 0000000..ce42993 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/ac9383e4.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/accd5a71.ttf b/cmd/web/static/fonts/glyphs/ttf/accd5a71.ttf new file mode 100644 index 0000000..3902799 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/accd5a71.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/ad2eb64b.ttf b/cmd/web/static/fonts/glyphs/ttf/ad2eb64b.ttf new file mode 100644 index 0000000..e9039bc Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/ad2eb64b.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/ad451fc0.ttf b/cmd/web/static/fonts/glyphs/ttf/ad451fc0.ttf new file mode 100644 index 0000000..02f5066 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/ad451fc0.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/ad5bcd8d.ttf b/cmd/web/static/fonts/glyphs/ttf/ad5bcd8d.ttf new file mode 100644 index 0000000..d3a60cf Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/ad5bcd8d.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/ad6d5849.ttf b/cmd/web/static/fonts/glyphs/ttf/ad6d5849.ttf new file mode 100644 index 0000000..4c15286 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/ad6d5849.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/ae3b63af.ttf b/cmd/web/static/fonts/glyphs/ttf/ae3b63af.ttf new file mode 100644 index 0000000..0cc8216 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/ae3b63af.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/ae453c2f.ttf b/cmd/web/static/fonts/glyphs/ttf/ae453c2f.ttf new file mode 100644 index 0000000..1e6c303 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/ae453c2f.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/ae943640.ttf b/cmd/web/static/fonts/glyphs/ttf/ae943640.ttf new file mode 100644 index 0000000..7f64601 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/ae943640.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/af60aa55.ttf b/cmd/web/static/fonts/glyphs/ttf/af60aa55.ttf new file mode 100644 index 0000000..bb378ce Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/af60aa55.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/af7f0a6e.ttf b/cmd/web/static/fonts/glyphs/ttf/af7f0a6e.ttf new file mode 100644 index 0000000..229a6d5 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/af7f0a6e.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/afb6634e.ttf b/cmd/web/static/fonts/glyphs/ttf/afb6634e.ttf new file mode 100644 index 0000000..d63cdcf Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/afb6634e.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/b09f469a.ttf b/cmd/web/static/fonts/glyphs/ttf/b09f469a.ttf new file mode 100644 index 0000000..6cbab7b Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/b09f469a.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/b0ad53ea.ttf b/cmd/web/static/fonts/glyphs/ttf/b0ad53ea.ttf new file mode 100644 index 0000000..934930a Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/b0ad53ea.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/b166a7c6.ttf b/cmd/web/static/fonts/glyphs/ttf/b166a7c6.ttf new file mode 100644 index 0000000..5d4b3f5 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/b166a7c6.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/b1eba251.ttf b/cmd/web/static/fonts/glyphs/ttf/b1eba251.ttf new file mode 100644 index 0000000..20bc078 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/b1eba251.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/b25a5c47.ttf b/cmd/web/static/fonts/glyphs/ttf/b25a5c47.ttf new file mode 100644 index 0000000..4d24756 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/b25a5c47.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/b295da08.ttf b/cmd/web/static/fonts/glyphs/ttf/b295da08.ttf new file mode 100644 index 0000000..3c9a245 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/b295da08.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/b29ecf6c.ttf b/cmd/web/static/fonts/glyphs/ttf/b29ecf6c.ttf new file mode 100644 index 0000000..68af38f Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/b29ecf6c.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/b2e0a125.ttf b/cmd/web/static/fonts/glyphs/ttf/b2e0a125.ttf new file mode 100644 index 0000000..1e28539 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/b2e0a125.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/b2f15dff.ttf b/cmd/web/static/fonts/glyphs/ttf/b2f15dff.ttf new file mode 100644 index 0000000..6ec0cd2 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/b2f15dff.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/b3273cc3.ttf b/cmd/web/static/fonts/glyphs/ttf/b3273cc3.ttf new file mode 100644 index 0000000..138ff1c Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/b3273cc3.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/b3df67d1.ttf b/cmd/web/static/fonts/glyphs/ttf/b3df67d1.ttf new file mode 100644 index 0000000..3cd1062 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/b3df67d1.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/b410b0fe.ttf b/cmd/web/static/fonts/glyphs/ttf/b410b0fe.ttf new file mode 100644 index 0000000..05921e4 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/b410b0fe.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/b44b2013.ttf b/cmd/web/static/fonts/glyphs/ttf/b44b2013.ttf new file mode 100644 index 0000000..a8af7ba Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/b44b2013.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/b4fed649.ttf b/cmd/web/static/fonts/glyphs/ttf/b4fed649.ttf new file mode 100644 index 0000000..dfdddf8 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/b4fed649.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/b524a1f5.ttf b/cmd/web/static/fonts/glyphs/ttf/b524a1f5.ttf new file mode 100644 index 0000000..d9208d4 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/b524a1f5.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/b53f50d1.ttf b/cmd/web/static/fonts/glyphs/ttf/b53f50d1.ttf new file mode 100644 index 0000000..25f43da Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/b53f50d1.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/b5c50661.ttf b/cmd/web/static/fonts/glyphs/ttf/b5c50661.ttf new file mode 100644 index 0000000..91f19b6 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/b5c50661.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/b5c60683.ttf b/cmd/web/static/fonts/glyphs/ttf/b5c60683.ttf new file mode 100644 index 0000000..de676fc Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/b5c60683.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/b70c5e32.ttf b/cmd/web/static/fonts/glyphs/ttf/b70c5e32.ttf new file mode 100644 index 0000000..35a112d Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/b70c5e32.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/b779fc78.ttf b/cmd/web/static/fonts/glyphs/ttf/b779fc78.ttf new file mode 100644 index 0000000..d8c3edf Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/b779fc78.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/b78ccf45.ttf b/cmd/web/static/fonts/glyphs/ttf/b78ccf45.ttf new file mode 100644 index 0000000..357f229 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/b78ccf45.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/b7a172a3.ttf b/cmd/web/static/fonts/glyphs/ttf/b7a172a3.ttf new file mode 100644 index 0000000..e91db8f Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/b7a172a3.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/b7ecc4fc.ttf b/cmd/web/static/fonts/glyphs/ttf/b7ecc4fc.ttf new file mode 100644 index 0000000..ffa5a0e Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/b7ecc4fc.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/b8276594.ttf b/cmd/web/static/fonts/glyphs/ttf/b8276594.ttf new file mode 100644 index 0000000..0ac6d83 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/b8276594.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/b82f6a43.ttf b/cmd/web/static/fonts/glyphs/ttf/b82f6a43.ttf new file mode 100644 index 0000000..16d1708 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/b82f6a43.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/b84384c5.ttf b/cmd/web/static/fonts/glyphs/ttf/b84384c5.ttf new file mode 100644 index 0000000..d6b8273 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/b84384c5.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/b853b110.ttf b/cmd/web/static/fonts/glyphs/ttf/b853b110.ttf new file mode 100644 index 0000000..f86d153 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/b853b110.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/b86d565c.ttf b/cmd/web/static/fonts/glyphs/ttf/b86d565c.ttf new file mode 100644 index 0000000..b9ac345 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/b86d565c.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/b8a14959.ttf b/cmd/web/static/fonts/glyphs/ttf/b8a14959.ttf new file mode 100644 index 0000000..6c2704b Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/b8a14959.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/b8f899c8.ttf b/cmd/web/static/fonts/glyphs/ttf/b8f899c8.ttf new file mode 100644 index 0000000..4940dbf Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/b8f899c8.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/b9507f5e.ttf b/cmd/web/static/fonts/glyphs/ttf/b9507f5e.ttf new file mode 100644 index 0000000..7fe023e Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/b9507f5e.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/b96007b9.ttf b/cmd/web/static/fonts/glyphs/ttf/b96007b9.ttf new file mode 100644 index 0000000..8ad6e23 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/b96007b9.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/b9a227e4.ttf b/cmd/web/static/fonts/glyphs/ttf/b9a227e4.ttf new file mode 100644 index 0000000..4286197 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/b9a227e4.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/ba711105.ttf b/cmd/web/static/fonts/glyphs/ttf/ba711105.ttf new file mode 100644 index 0000000..afa2e69 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/ba711105.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/ba8d699c.ttf b/cmd/web/static/fonts/glyphs/ttf/ba8d699c.ttf new file mode 100644 index 0000000..d856334 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/ba8d699c.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/bae4bae8.ttf b/cmd/web/static/fonts/glyphs/ttf/bae4bae8.ttf new file mode 100644 index 0000000..9bf3c20 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/bae4bae8.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/bae65807.ttf b/cmd/web/static/fonts/glyphs/ttf/bae65807.ttf new file mode 100644 index 0000000..3768a67 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/bae65807.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/bb074b56.ttf b/cmd/web/static/fonts/glyphs/ttf/bb074b56.ttf new file mode 100644 index 0000000..a6a1017 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/bb074b56.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/bb12d8ab.ttf b/cmd/web/static/fonts/glyphs/ttf/bb12d8ab.ttf new file mode 100644 index 0000000..fc84111 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/bb12d8ab.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/bb366587.ttf b/cmd/web/static/fonts/glyphs/ttf/bb366587.ttf new file mode 100644 index 0000000..952f868 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/bb366587.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/bb48d505.ttf b/cmd/web/static/fonts/glyphs/ttf/bb48d505.ttf new file mode 100644 index 0000000..fec697f Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/bb48d505.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/bb6c3f4f.ttf b/cmd/web/static/fonts/glyphs/ttf/bb6c3f4f.ttf new file mode 100644 index 0000000..bd82721 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/bb6c3f4f.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/bc23c05b.ttf b/cmd/web/static/fonts/glyphs/ttf/bc23c05b.ttf new file mode 100644 index 0000000..93628d4 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/bc23c05b.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/bcd60da4.ttf b/cmd/web/static/fonts/glyphs/ttf/bcd60da4.ttf new file mode 100644 index 0000000..5a3d3db Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/bcd60da4.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/bd81a851.ttf b/cmd/web/static/fonts/glyphs/ttf/bd81a851.ttf new file mode 100644 index 0000000..b7fe2f5 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/bd81a851.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/be09c3ad.ttf b/cmd/web/static/fonts/glyphs/ttf/be09c3ad.ttf new file mode 100644 index 0000000..f7362e9 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/be09c3ad.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/be0e8a5a.ttf b/cmd/web/static/fonts/glyphs/ttf/be0e8a5a.ttf new file mode 100644 index 0000000..a313aef Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/be0e8a5a.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/be153f92.ttf b/cmd/web/static/fonts/glyphs/ttf/be153f92.ttf new file mode 100644 index 0000000..9598b3a Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/be153f92.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/be79d1c6.ttf b/cmd/web/static/fonts/glyphs/ttf/be79d1c6.ttf new file mode 100644 index 0000000..5c2b7bf Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/be79d1c6.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/beaff0e5.ttf b/cmd/web/static/fonts/glyphs/ttf/beaff0e5.ttf new file mode 100644 index 0000000..4d6f45e Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/beaff0e5.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/bebd5dcc.ttf b/cmd/web/static/fonts/glyphs/ttf/bebd5dcc.ttf new file mode 100644 index 0000000..2fcdcf6 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/bebd5dcc.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/bf5d7fd2.ttf b/cmd/web/static/fonts/glyphs/ttf/bf5d7fd2.ttf new file mode 100644 index 0000000..4346858 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/bf5d7fd2.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/bfff0e1f.ttf b/cmd/web/static/fonts/glyphs/ttf/bfff0e1f.ttf new file mode 100644 index 0000000..5a99a72 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/bfff0e1f.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/c035acf1.ttf b/cmd/web/static/fonts/glyphs/ttf/c035acf1.ttf new file mode 100644 index 0000000..88f0674 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/c035acf1.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/c08b2fca.ttf b/cmd/web/static/fonts/glyphs/ttf/c08b2fca.ttf new file mode 100644 index 0000000..8b2915d Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/c08b2fca.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/c0b59cd5.ttf b/cmd/web/static/fonts/glyphs/ttf/c0b59cd5.ttf new file mode 100644 index 0000000..b3661b6 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/c0b59cd5.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/c0becad5.ttf b/cmd/web/static/fonts/glyphs/ttf/c0becad5.ttf new file mode 100644 index 0000000..e15de68 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/c0becad5.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/c0dc60c1.ttf b/cmd/web/static/fonts/glyphs/ttf/c0dc60c1.ttf new file mode 100644 index 0000000..253fe7f Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/c0dc60c1.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/c0ef3e5e.ttf b/cmd/web/static/fonts/glyphs/ttf/c0ef3e5e.ttf new file mode 100644 index 0000000..3db455c Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/c0ef3e5e.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/c1538030.ttf b/cmd/web/static/fonts/glyphs/ttf/c1538030.ttf new file mode 100644 index 0000000..028eb9a Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/c1538030.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/c1581e36.ttf b/cmd/web/static/fonts/glyphs/ttf/c1581e36.ttf new file mode 100644 index 0000000..ab47ab5 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/c1581e36.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/c17f2a95.ttf b/cmd/web/static/fonts/glyphs/ttf/c17f2a95.ttf new file mode 100644 index 0000000..3cee3e1 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/c17f2a95.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/c206b69c.ttf b/cmd/web/static/fonts/glyphs/ttf/c206b69c.ttf new file mode 100644 index 0000000..0b80486 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/c206b69c.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/c21fd5eb.ttf b/cmd/web/static/fonts/glyphs/ttf/c21fd5eb.ttf new file mode 100644 index 0000000..cfd85e4 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/c21fd5eb.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/c290dee9.ttf b/cmd/web/static/fonts/glyphs/ttf/c290dee9.ttf new file mode 100644 index 0000000..aff6ce4 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/c290dee9.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/c3ad2575.ttf b/cmd/web/static/fonts/glyphs/ttf/c3ad2575.ttf new file mode 100644 index 0000000..7379911 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/c3ad2575.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/c3c3fe75.ttf b/cmd/web/static/fonts/glyphs/ttf/c3c3fe75.ttf new file mode 100644 index 0000000..bcaf9d1 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/c3c3fe75.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/c3f23f1d.ttf b/cmd/web/static/fonts/glyphs/ttf/c3f23f1d.ttf new file mode 100644 index 0000000..13b1959 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/c3f23f1d.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/c407df2f.ttf b/cmd/web/static/fonts/glyphs/ttf/c407df2f.ttf new file mode 100644 index 0000000..1402649 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/c407df2f.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/c42bbfd6.ttf b/cmd/web/static/fonts/glyphs/ttf/c42bbfd6.ttf new file mode 100644 index 0000000..8ceadec Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/c42bbfd6.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/c48a78a5.ttf b/cmd/web/static/fonts/glyphs/ttf/c48a78a5.ttf new file mode 100644 index 0000000..ebd5beb Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/c48a78a5.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/c579a0a6.ttf b/cmd/web/static/fonts/glyphs/ttf/c579a0a6.ttf new file mode 100644 index 0000000..c000a30 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/c579a0a6.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/c67c215e.ttf b/cmd/web/static/fonts/glyphs/ttf/c67c215e.ttf new file mode 100644 index 0000000..b115a0c Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/c67c215e.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/c67e4554.ttf b/cmd/web/static/fonts/glyphs/ttf/c67e4554.ttf new file mode 100644 index 0000000..d5c50fc Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/c67e4554.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/c71e8d9a.ttf b/cmd/web/static/fonts/glyphs/ttf/c71e8d9a.ttf new file mode 100644 index 0000000..906e681 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/c71e8d9a.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/c7a8c9c1.ttf b/cmd/web/static/fonts/glyphs/ttf/c7a8c9c1.ttf new file mode 100644 index 0000000..d372d25 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/c7a8c9c1.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/c7e2b3d5.ttf b/cmd/web/static/fonts/glyphs/ttf/c7e2b3d5.ttf new file mode 100644 index 0000000..0150191 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/c7e2b3d5.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/c7e82146.ttf b/cmd/web/static/fonts/glyphs/ttf/c7e82146.ttf new file mode 100644 index 0000000..969b898 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/c7e82146.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/c7e8635b.ttf b/cmd/web/static/fonts/glyphs/ttf/c7e8635b.ttf new file mode 100644 index 0000000..99b3611 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/c7e8635b.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/c8e64019.ttf b/cmd/web/static/fonts/glyphs/ttf/c8e64019.ttf new file mode 100644 index 0000000..5b87062 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/c8e64019.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/c931b176.ttf b/cmd/web/static/fonts/glyphs/ttf/c931b176.ttf new file mode 100644 index 0000000..9bcaa83 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/c931b176.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/c9480f66.ttf b/cmd/web/static/fonts/glyphs/ttf/c9480f66.ttf new file mode 100644 index 0000000..388851e Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/c9480f66.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/c9797180.ttf b/cmd/web/static/fonts/glyphs/ttf/c9797180.ttf new file mode 100644 index 0000000..207f919 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/c9797180.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/c9a00be7.ttf b/cmd/web/static/fonts/glyphs/ttf/c9a00be7.ttf new file mode 100644 index 0000000..57d97e1 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/c9a00be7.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/c9b3ada5.ttf b/cmd/web/static/fonts/glyphs/ttf/c9b3ada5.ttf new file mode 100644 index 0000000..3048b63 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/c9b3ada5.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/c9b5076d.ttf b/cmd/web/static/fonts/glyphs/ttf/c9b5076d.ttf new file mode 100644 index 0000000..d119b1a Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/c9b5076d.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/c9ede1cf.ttf b/cmd/web/static/fonts/glyphs/ttf/c9ede1cf.ttf new file mode 100644 index 0000000..40417aa Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/c9ede1cf.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/ca2be6c9.ttf b/cmd/web/static/fonts/glyphs/ttf/ca2be6c9.ttf new file mode 100644 index 0000000..5c6d51f Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/ca2be6c9.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/cb2908e9.ttf b/cmd/web/static/fonts/glyphs/ttf/cb2908e9.ttf new file mode 100644 index 0000000..f6db181 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/cb2908e9.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/cba0a9ca.ttf b/cmd/web/static/fonts/glyphs/ttf/cba0a9ca.ttf new file mode 100644 index 0000000..756ad3d Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/cba0a9ca.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/cbac8aaa.ttf b/cmd/web/static/fonts/glyphs/ttf/cbac8aaa.ttf new file mode 100644 index 0000000..6de0100 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/cbac8aaa.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/ccba5701.ttf b/cmd/web/static/fonts/glyphs/ttf/ccba5701.ttf new file mode 100644 index 0000000..fcd40a4 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/ccba5701.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/ccc16298.ttf b/cmd/web/static/fonts/glyphs/ttf/ccc16298.ttf new file mode 100644 index 0000000..e10d73d Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/ccc16298.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/cce1425f.ttf b/cmd/web/static/fonts/glyphs/ttf/cce1425f.ttf new file mode 100644 index 0000000..ecc155a Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/cce1425f.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/cd3dc2c3.ttf b/cmd/web/static/fonts/glyphs/ttf/cd3dc2c3.ttf new file mode 100644 index 0000000..e20b838 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/cd3dc2c3.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/cd4d8f7a.ttf b/cmd/web/static/fonts/glyphs/ttf/cd4d8f7a.ttf new file mode 100644 index 0000000..ca01b1a Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/cd4d8f7a.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/cda1a566.ttf b/cmd/web/static/fonts/glyphs/ttf/cda1a566.ttf new file mode 100644 index 0000000..6b0797c Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/cda1a566.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/cdb6b693.ttf b/cmd/web/static/fonts/glyphs/ttf/cdb6b693.ttf new file mode 100644 index 0000000..f1ac9d1 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/cdb6b693.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/cdc770af.ttf b/cmd/web/static/fonts/glyphs/ttf/cdc770af.ttf new file mode 100644 index 0000000..6e89e37 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/cdc770af.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/cdf1c3ef.ttf b/cmd/web/static/fonts/glyphs/ttf/cdf1c3ef.ttf new file mode 100644 index 0000000..1b6dab1 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/cdf1c3ef.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/ce715050.ttf b/cmd/web/static/fonts/glyphs/ttf/ce715050.ttf new file mode 100644 index 0000000..05764b3 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/ce715050.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/ce9eb004.ttf b/cmd/web/static/fonts/glyphs/ttf/ce9eb004.ttf new file mode 100644 index 0000000..5688def Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/ce9eb004.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/cebaa24b.ttf b/cmd/web/static/fonts/glyphs/ttf/cebaa24b.ttf new file mode 100644 index 0000000..bfe0790 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/cebaa24b.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/cf02d8e2.ttf b/cmd/web/static/fonts/glyphs/ttf/cf02d8e2.ttf new file mode 100644 index 0000000..003cd71 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/cf02d8e2.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/cf248e93.ttf b/cmd/web/static/fonts/glyphs/ttf/cf248e93.ttf new file mode 100644 index 0000000..ec867d7 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/cf248e93.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/cf295f73.ttf b/cmd/web/static/fonts/glyphs/ttf/cf295f73.ttf new file mode 100644 index 0000000..abf28c7 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/cf295f73.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/cf2a0a85.ttf b/cmd/web/static/fonts/glyphs/ttf/cf2a0a85.ttf new file mode 100644 index 0000000..f5581c7 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/cf2a0a85.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/cf6d6f30.ttf b/cmd/web/static/fonts/glyphs/ttf/cf6d6f30.ttf new file mode 100644 index 0000000..b325d97 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/cf6d6f30.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/cf9d5267.ttf b/cmd/web/static/fonts/glyphs/ttf/cf9d5267.ttf new file mode 100644 index 0000000..0981df3 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/cf9d5267.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/cfa9655f.ttf b/cmd/web/static/fonts/glyphs/ttf/cfa9655f.ttf new file mode 100644 index 0000000..05d6c42 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/cfa9655f.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/cff6eea9.ttf b/cmd/web/static/fonts/glyphs/ttf/cff6eea9.ttf new file mode 100644 index 0000000..6f3de98 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/cff6eea9.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/d0342038.ttf b/cmd/web/static/fonts/glyphs/ttf/d0342038.ttf new file mode 100644 index 0000000..e4c70a3 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/d0342038.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/d09b48b1.ttf b/cmd/web/static/fonts/glyphs/ttf/d09b48b1.ttf new file mode 100644 index 0000000..a8f26c8 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/d09b48b1.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/d0a546a6.ttf b/cmd/web/static/fonts/glyphs/ttf/d0a546a6.ttf new file mode 100644 index 0000000..23c810b Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/d0a546a6.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/d0cecf4f.ttf b/cmd/web/static/fonts/glyphs/ttf/d0cecf4f.ttf new file mode 100644 index 0000000..620c67a Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/d0cecf4f.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/d0e625c0.ttf b/cmd/web/static/fonts/glyphs/ttf/d0e625c0.ttf new file mode 100644 index 0000000..8df5ba5 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/d0e625c0.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/d0f4fedd.ttf b/cmd/web/static/fonts/glyphs/ttf/d0f4fedd.ttf new file mode 100644 index 0000000..39c41be Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/d0f4fedd.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/d0f7d102.ttf b/cmd/web/static/fonts/glyphs/ttf/d0f7d102.ttf new file mode 100644 index 0000000..d8b9801 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/d0f7d102.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/d108850a.ttf b/cmd/web/static/fonts/glyphs/ttf/d108850a.ttf new file mode 100644 index 0000000..af86e16 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/d108850a.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/d129485b.ttf b/cmd/web/static/fonts/glyphs/ttf/d129485b.ttf new file mode 100644 index 0000000..1ebe3d1 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/d129485b.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/d20bd061.ttf b/cmd/web/static/fonts/glyphs/ttf/d20bd061.ttf new file mode 100644 index 0000000..912fbaa Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/d20bd061.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/d214de53.ttf b/cmd/web/static/fonts/glyphs/ttf/d214de53.ttf new file mode 100644 index 0000000..62cb2f8 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/d214de53.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/d219fd91.ttf b/cmd/web/static/fonts/glyphs/ttf/d219fd91.ttf new file mode 100644 index 0000000..901d9a0 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/d219fd91.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/d228d1ac.ttf b/cmd/web/static/fonts/glyphs/ttf/d228d1ac.ttf new file mode 100644 index 0000000..8d827ec Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/d228d1ac.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/d269bf57.ttf b/cmd/web/static/fonts/glyphs/ttf/d269bf57.ttf new file mode 100644 index 0000000..e145cc6 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/d269bf57.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/d2800ad0.ttf b/cmd/web/static/fonts/glyphs/ttf/d2800ad0.ttf new file mode 100644 index 0000000..9021ba9 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/d2800ad0.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/d289b887.ttf b/cmd/web/static/fonts/glyphs/ttf/d289b887.ttf new file mode 100644 index 0000000..7e675f3 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/d289b887.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/d2c72c19.ttf b/cmd/web/static/fonts/glyphs/ttf/d2c72c19.ttf new file mode 100644 index 0000000..7ee383a Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/d2c72c19.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/d2e8e796.ttf b/cmd/web/static/fonts/glyphs/ttf/d2e8e796.ttf new file mode 100644 index 0000000..7009584 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/d2e8e796.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/d2ebd46c.ttf b/cmd/web/static/fonts/glyphs/ttf/d2ebd46c.ttf new file mode 100644 index 0000000..8fbaf0b Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/d2ebd46c.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/d32f8a26.ttf b/cmd/web/static/fonts/glyphs/ttf/d32f8a26.ttf new file mode 100644 index 0000000..bef64f4 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/d32f8a26.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/d43f6100.ttf b/cmd/web/static/fonts/glyphs/ttf/d43f6100.ttf new file mode 100644 index 0000000..11805a6 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/d43f6100.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/d4a96716.ttf b/cmd/web/static/fonts/glyphs/ttf/d4a96716.ttf new file mode 100644 index 0000000..a4b3df5 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/d4a96716.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/d4ae9299.ttf b/cmd/web/static/fonts/glyphs/ttf/d4ae9299.ttf new file mode 100644 index 0000000..10142fd Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/d4ae9299.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/d4fffa4b.ttf b/cmd/web/static/fonts/glyphs/ttf/d4fffa4b.ttf new file mode 100644 index 0000000..459fc1f Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/d4fffa4b.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/d57e51c5.ttf b/cmd/web/static/fonts/glyphs/ttf/d57e51c5.ttf new file mode 100644 index 0000000..16ba0f3 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/d57e51c5.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/d5e77211.ttf b/cmd/web/static/fonts/glyphs/ttf/d5e77211.ttf new file mode 100644 index 0000000..86d4c0b Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/d5e77211.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/d615451a.ttf b/cmd/web/static/fonts/glyphs/ttf/d615451a.ttf new file mode 100644 index 0000000..d1dc9d1 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/d615451a.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/d662c711.ttf b/cmd/web/static/fonts/glyphs/ttf/d662c711.ttf new file mode 100644 index 0000000..a0820ef Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/d662c711.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/d68c6b5a.ttf b/cmd/web/static/fonts/glyphs/ttf/d68c6b5a.ttf new file mode 100644 index 0000000..4a212aa Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/d68c6b5a.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/d6f4d6c5.ttf b/cmd/web/static/fonts/glyphs/ttf/d6f4d6c5.ttf new file mode 100644 index 0000000..97b3738 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/d6f4d6c5.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/d702d8e9.ttf b/cmd/web/static/fonts/glyphs/ttf/d702d8e9.ttf new file mode 100644 index 0000000..627a698 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/d702d8e9.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/d72e5642.ttf b/cmd/web/static/fonts/glyphs/ttf/d72e5642.ttf new file mode 100644 index 0000000..30992cd Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/d72e5642.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/d741c5dd.ttf b/cmd/web/static/fonts/glyphs/ttf/d741c5dd.ttf new file mode 100644 index 0000000..e9d7fad Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/d741c5dd.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/d7a69b7b.ttf b/cmd/web/static/fonts/glyphs/ttf/d7a69b7b.ttf new file mode 100644 index 0000000..df92f7b Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/d7a69b7b.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/d7d56ff8.ttf b/cmd/web/static/fonts/glyphs/ttf/d7d56ff8.ttf new file mode 100644 index 0000000..8eb4eef Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/d7d56ff8.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/d7ecae43.ttf b/cmd/web/static/fonts/glyphs/ttf/d7ecae43.ttf new file mode 100644 index 0000000..887baad Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/d7ecae43.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/d8f20bf0.ttf b/cmd/web/static/fonts/glyphs/ttf/d8f20bf0.ttf new file mode 100644 index 0000000..d9cc222 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/d8f20bf0.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/d8f26b1e.ttf b/cmd/web/static/fonts/glyphs/ttf/d8f26b1e.ttf new file mode 100644 index 0000000..a70f0b2 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/d8f26b1e.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/d9002330.ttf b/cmd/web/static/fonts/glyphs/ttf/d9002330.ttf new file mode 100644 index 0000000..696400b Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/d9002330.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/d97e9886.ttf b/cmd/web/static/fonts/glyphs/ttf/d97e9886.ttf new file mode 100644 index 0000000..0116ad5 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/d97e9886.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/d9b31097.ttf b/cmd/web/static/fonts/glyphs/ttf/d9b31097.ttf new file mode 100644 index 0000000..0b1fccd Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/d9b31097.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/d9f1f706.ttf b/cmd/web/static/fonts/glyphs/ttf/d9f1f706.ttf new file mode 100644 index 0000000..09ad1af Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/d9f1f706.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/da29dda0.ttf b/cmd/web/static/fonts/glyphs/ttf/da29dda0.ttf new file mode 100644 index 0000000..79e6fe5 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/da29dda0.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/da46da57.ttf b/cmd/web/static/fonts/glyphs/ttf/da46da57.ttf new file mode 100644 index 0000000..f971816 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/da46da57.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/da8ef2eb.ttf b/cmd/web/static/fonts/glyphs/ttf/da8ef2eb.ttf new file mode 100644 index 0000000..e61da38 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/da8ef2eb.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/dad2106c.ttf b/cmd/web/static/fonts/glyphs/ttf/dad2106c.ttf new file mode 100644 index 0000000..eb9f28d Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/dad2106c.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/dafd1a87.ttf b/cmd/web/static/fonts/glyphs/ttf/dafd1a87.ttf new file mode 100644 index 0000000..5149425 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/dafd1a87.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/db17d1b4.ttf b/cmd/web/static/fonts/glyphs/ttf/db17d1b4.ttf new file mode 100644 index 0000000..b39d590 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/db17d1b4.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/db26cd0b.ttf b/cmd/web/static/fonts/glyphs/ttf/db26cd0b.ttf new file mode 100644 index 0000000..fe0e9be Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/db26cd0b.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/db8e73dd.ttf b/cmd/web/static/fonts/glyphs/ttf/db8e73dd.ttf new file mode 100644 index 0000000..44e2f2f Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/db8e73dd.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/db92c609.ttf b/cmd/web/static/fonts/glyphs/ttf/db92c609.ttf new file mode 100644 index 0000000..2abb753 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/db92c609.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/dbdc4b76.ttf b/cmd/web/static/fonts/glyphs/ttf/dbdc4b76.ttf new file mode 100644 index 0000000..23a8ff1 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/dbdc4b76.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/dbf1f527.ttf b/cmd/web/static/fonts/glyphs/ttf/dbf1f527.ttf new file mode 100644 index 0000000..e51b994 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/dbf1f527.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/dbfd39a7.ttf b/cmd/web/static/fonts/glyphs/ttf/dbfd39a7.ttf new file mode 100644 index 0000000..49852a7 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/dbfd39a7.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/dc1b7673.ttf b/cmd/web/static/fonts/glyphs/ttf/dc1b7673.ttf new file mode 100644 index 0000000..aa12ce9 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/dc1b7673.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/dc86c2f6.ttf b/cmd/web/static/fonts/glyphs/ttf/dc86c2f6.ttf new file mode 100644 index 0000000..227750e Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/dc86c2f6.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/dcd33a62.ttf b/cmd/web/static/fonts/glyphs/ttf/dcd33a62.ttf new file mode 100644 index 0000000..04a71e8 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/dcd33a62.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/dcd7c346.ttf b/cmd/web/static/fonts/glyphs/ttf/dcd7c346.ttf new file mode 100644 index 0000000..34b2f79 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/dcd7c346.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/dce2e772.ttf b/cmd/web/static/fonts/glyphs/ttf/dce2e772.ttf new file mode 100644 index 0000000..f306413 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/dce2e772.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/dcf87866.ttf b/cmd/web/static/fonts/glyphs/ttf/dcf87866.ttf new file mode 100644 index 0000000..2e7e8dc Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/dcf87866.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/dcfebe0e.ttf b/cmd/web/static/fonts/glyphs/ttf/dcfebe0e.ttf new file mode 100644 index 0000000..a4de1db Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/dcfebe0e.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/dd10b6f4.ttf b/cmd/web/static/fonts/glyphs/ttf/dd10b6f4.ttf new file mode 100644 index 0000000..2b6a809 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/dd10b6f4.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/dda67aa8.ttf b/cmd/web/static/fonts/glyphs/ttf/dda67aa8.ttf new file mode 100644 index 0000000..dc74808 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/dda67aa8.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/ddff0b65.ttf b/cmd/web/static/fonts/glyphs/ttf/ddff0b65.ttf new file mode 100644 index 0000000..c0057dd Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/ddff0b65.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/de01f078.ttf b/cmd/web/static/fonts/glyphs/ttf/de01f078.ttf new file mode 100644 index 0000000..2d17239 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/de01f078.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/de978ae9.ttf b/cmd/web/static/fonts/glyphs/ttf/de978ae9.ttf new file mode 100644 index 0000000..d07063f Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/de978ae9.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/dee08cc0.ttf b/cmd/web/static/fonts/glyphs/ttf/dee08cc0.ttf new file mode 100644 index 0000000..879079c Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/dee08cc0.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/df01c285.ttf b/cmd/web/static/fonts/glyphs/ttf/df01c285.ttf new file mode 100644 index 0000000..9cb2e33 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/df01c285.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/df2fadba.ttf b/cmd/web/static/fonts/glyphs/ttf/df2fadba.ttf new file mode 100644 index 0000000..21b8f5f Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/df2fadba.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/df6bc6bf.ttf b/cmd/web/static/fonts/glyphs/ttf/df6bc6bf.ttf new file mode 100644 index 0000000..1603588 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/df6bc6bf.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/df82f44f.ttf b/cmd/web/static/fonts/glyphs/ttf/df82f44f.ttf new file mode 100644 index 0000000..8252914 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/df82f44f.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/df860193.ttf b/cmd/web/static/fonts/glyphs/ttf/df860193.ttf new file mode 100644 index 0000000..ac0a3d2 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/df860193.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/dfc642b4.ttf b/cmd/web/static/fonts/glyphs/ttf/dfc642b4.ttf new file mode 100644 index 0000000..66174d5 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/dfc642b4.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/e036f61e.ttf b/cmd/web/static/fonts/glyphs/ttf/e036f61e.ttf new file mode 100644 index 0000000..de990d5 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/e036f61e.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/e0436cb5.ttf b/cmd/web/static/fonts/glyphs/ttf/e0436cb5.ttf new file mode 100644 index 0000000..ac374b4 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/e0436cb5.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/e07866a3.ttf b/cmd/web/static/fonts/glyphs/ttf/e07866a3.ttf new file mode 100644 index 0000000..6eea000 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/e07866a3.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/e094cfe4.ttf b/cmd/web/static/fonts/glyphs/ttf/e094cfe4.ttf new file mode 100644 index 0000000..b9d1282 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/e094cfe4.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/e0cf68e8.ttf b/cmd/web/static/fonts/glyphs/ttf/e0cf68e8.ttf new file mode 100644 index 0000000..fc2c74b Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/e0cf68e8.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/e18256ba.ttf b/cmd/web/static/fonts/glyphs/ttf/e18256ba.ttf new file mode 100644 index 0000000..de49f61 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/e18256ba.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/e24b4971.ttf b/cmd/web/static/fonts/glyphs/ttf/e24b4971.ttf new file mode 100644 index 0000000..72fff1c Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/e24b4971.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/e264079a.ttf b/cmd/web/static/fonts/glyphs/ttf/e264079a.ttf new file mode 100644 index 0000000..c32271e Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/e264079a.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/e2920962.ttf b/cmd/web/static/fonts/glyphs/ttf/e2920962.ttf new file mode 100644 index 0000000..08fbe4a Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/e2920962.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/e29e8451.ttf b/cmd/web/static/fonts/glyphs/ttf/e29e8451.ttf new file mode 100644 index 0000000..7f8a888 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/e29e8451.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/e2b7f2e8.ttf b/cmd/web/static/fonts/glyphs/ttf/e2b7f2e8.ttf new file mode 100644 index 0000000..1527842 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/e2b7f2e8.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/e2cd4ea9.ttf b/cmd/web/static/fonts/glyphs/ttf/e2cd4ea9.ttf new file mode 100644 index 0000000..47e4c02 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/e2cd4ea9.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/e2f6544b.ttf b/cmd/web/static/fonts/glyphs/ttf/e2f6544b.ttf new file mode 100644 index 0000000..d74fff9 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/e2f6544b.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/e2ffe70e.ttf b/cmd/web/static/fonts/glyphs/ttf/e2ffe70e.ttf new file mode 100644 index 0000000..fa373dd Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/e2ffe70e.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/e33b2c7f.ttf b/cmd/web/static/fonts/glyphs/ttf/e33b2c7f.ttf new file mode 100644 index 0000000..0c471cc Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/e33b2c7f.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/e3ae4d2d.ttf b/cmd/web/static/fonts/glyphs/ttf/e3ae4d2d.ttf new file mode 100644 index 0000000..59c7f63 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/e3ae4d2d.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/e3d7c442.ttf b/cmd/web/static/fonts/glyphs/ttf/e3d7c442.ttf new file mode 100644 index 0000000..9796f4e Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/e3d7c442.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/e49824ce.ttf b/cmd/web/static/fonts/glyphs/ttf/e49824ce.ttf new file mode 100644 index 0000000..b725ccf Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/e49824ce.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/e4ec2dc2.ttf b/cmd/web/static/fonts/glyphs/ttf/e4ec2dc2.ttf new file mode 100644 index 0000000..2e1195d Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/e4ec2dc2.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/e4f0095c.ttf b/cmd/web/static/fonts/glyphs/ttf/e4f0095c.ttf new file mode 100644 index 0000000..93ec97a Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/e4f0095c.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/e516e4c5.ttf b/cmd/web/static/fonts/glyphs/ttf/e516e4c5.ttf new file mode 100644 index 0000000..d622609 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/e516e4c5.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/e528cde1.ttf b/cmd/web/static/fonts/glyphs/ttf/e528cde1.ttf new file mode 100644 index 0000000..1f4d31f Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/e528cde1.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/e55176f2.ttf b/cmd/web/static/fonts/glyphs/ttf/e55176f2.ttf new file mode 100644 index 0000000..ba3a59a Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/e55176f2.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/e5e909f3.ttf b/cmd/web/static/fonts/glyphs/ttf/e5e909f3.ttf new file mode 100644 index 0000000..e973b27 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/e5e909f3.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/e67af557.ttf b/cmd/web/static/fonts/glyphs/ttf/e67af557.ttf new file mode 100644 index 0000000..944e1b4 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/e67af557.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/e6b4aab7.ttf b/cmd/web/static/fonts/glyphs/ttf/e6b4aab7.ttf new file mode 100644 index 0000000..2280f51 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/e6b4aab7.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/e7803979.ttf b/cmd/web/static/fonts/glyphs/ttf/e7803979.ttf new file mode 100644 index 0000000..ebf7939 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/e7803979.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/e7aad562.ttf b/cmd/web/static/fonts/glyphs/ttf/e7aad562.ttf new file mode 100644 index 0000000..d69ef1b Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/e7aad562.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/e7c8de5d.ttf b/cmd/web/static/fonts/glyphs/ttf/e7c8de5d.ttf new file mode 100644 index 0000000..34e952e Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/e7c8de5d.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/e7d3044b.ttf b/cmd/web/static/fonts/glyphs/ttf/e7d3044b.ttf new file mode 100644 index 0000000..c831b6f Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/e7d3044b.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/e83034c6.ttf b/cmd/web/static/fonts/glyphs/ttf/e83034c6.ttf new file mode 100644 index 0000000..dba5e69 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/e83034c6.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/e8777ffa.ttf b/cmd/web/static/fonts/glyphs/ttf/e8777ffa.ttf new file mode 100644 index 0000000..590e33a Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/e8777ffa.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/e8acadad.ttf b/cmd/web/static/fonts/glyphs/ttf/e8acadad.ttf new file mode 100644 index 0000000..b4751ea Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/e8acadad.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/e98b08c6.ttf b/cmd/web/static/fonts/glyphs/ttf/e98b08c6.ttf new file mode 100644 index 0000000..1346e5c Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/e98b08c6.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/e9b1d552.ttf b/cmd/web/static/fonts/glyphs/ttf/e9b1d552.ttf new file mode 100644 index 0000000..c632079 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/e9b1d552.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/ea17073b.ttf b/cmd/web/static/fonts/glyphs/ttf/ea17073b.ttf new file mode 100644 index 0000000..bd99cda Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/ea17073b.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/ea26fef6.ttf b/cmd/web/static/fonts/glyphs/ttf/ea26fef6.ttf new file mode 100644 index 0000000..1eaa128 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/ea26fef6.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/ea8e0a1a.ttf b/cmd/web/static/fonts/glyphs/ttf/ea8e0a1a.ttf new file mode 100644 index 0000000..6baa902 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/ea8e0a1a.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/ea915e6c.ttf b/cmd/web/static/fonts/glyphs/ttf/ea915e6c.ttf new file mode 100644 index 0000000..bfdfa33 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/ea915e6c.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/eaca633e.ttf b/cmd/web/static/fonts/glyphs/ttf/eaca633e.ttf new file mode 100644 index 0000000..49c9574 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/eaca633e.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/eb2a76c7.ttf b/cmd/web/static/fonts/glyphs/ttf/eb2a76c7.ttf new file mode 100644 index 0000000..191315f Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/eb2a76c7.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/eb67386f.ttf b/cmd/web/static/fonts/glyphs/ttf/eb67386f.ttf new file mode 100644 index 0000000..648d82f Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/eb67386f.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/eb7c1720.ttf b/cmd/web/static/fonts/glyphs/ttf/eb7c1720.ttf new file mode 100644 index 0000000..a6dadd1 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/eb7c1720.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/ec5a8b64.ttf b/cmd/web/static/fonts/glyphs/ttf/ec5a8b64.ttf new file mode 100644 index 0000000..8401931 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/ec5a8b64.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/ec62219b.ttf b/cmd/web/static/fonts/glyphs/ttf/ec62219b.ttf new file mode 100644 index 0000000..26a2a6b Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/ec62219b.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/ec9c031f.ttf b/cmd/web/static/fonts/glyphs/ttf/ec9c031f.ttf new file mode 100644 index 0000000..4a3369a Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/ec9c031f.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/eca1fd47.ttf b/cmd/web/static/fonts/glyphs/ttf/eca1fd47.ttf new file mode 100644 index 0000000..9f6c928 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/eca1fd47.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/eccf06e9.ttf b/cmd/web/static/fonts/glyphs/ttf/eccf06e9.ttf new file mode 100644 index 0000000..3397693 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/eccf06e9.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/ecd94f38.ttf b/cmd/web/static/fonts/glyphs/ttf/ecd94f38.ttf new file mode 100644 index 0000000..a38e5f1 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/ecd94f38.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/ed4c2c15.ttf b/cmd/web/static/fonts/glyphs/ttf/ed4c2c15.ttf new file mode 100644 index 0000000..6385aea Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/ed4c2c15.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/ed5cf55c.ttf b/cmd/web/static/fonts/glyphs/ttf/ed5cf55c.ttf new file mode 100644 index 0000000..6cebd2b Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/ed5cf55c.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/edba7c75.ttf b/cmd/web/static/fonts/glyphs/ttf/edba7c75.ttf new file mode 100644 index 0000000..a6b7e25 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/edba7c75.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/edcb62d5.ttf b/cmd/web/static/fonts/glyphs/ttf/edcb62d5.ttf new file mode 100644 index 0000000..4288a83 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/edcb62d5.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/ee154cca.ttf b/cmd/web/static/fonts/glyphs/ttf/ee154cca.ttf new file mode 100644 index 0000000..c5c8c8c Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/ee154cca.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/ef00237d.ttf b/cmd/web/static/fonts/glyphs/ttf/ef00237d.ttf new file mode 100644 index 0000000..da241d6 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/ef00237d.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/efc8654c.ttf b/cmd/web/static/fonts/glyphs/ttf/efc8654c.ttf new file mode 100644 index 0000000..31259fc Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/efc8654c.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/f0239cc2.ttf b/cmd/web/static/fonts/glyphs/ttf/f0239cc2.ttf new file mode 100644 index 0000000..759f900 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/f0239cc2.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/f03ffe17.ttf b/cmd/web/static/fonts/glyphs/ttf/f03ffe17.ttf new file mode 100644 index 0000000..1b24e78 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/f03ffe17.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/f076afbd.ttf b/cmd/web/static/fonts/glyphs/ttf/f076afbd.ttf new file mode 100644 index 0000000..3a5d73e Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/f076afbd.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/f20a956f.ttf b/cmd/web/static/fonts/glyphs/ttf/f20a956f.ttf new file mode 100644 index 0000000..f3240d7 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/f20a956f.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/f21dea18.ttf b/cmd/web/static/fonts/glyphs/ttf/f21dea18.ttf new file mode 100644 index 0000000..1a02d67 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/f21dea18.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/f265e93a.ttf b/cmd/web/static/fonts/glyphs/ttf/f265e93a.ttf new file mode 100644 index 0000000..dc75dc7 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/f265e93a.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/f2a75c7f.ttf b/cmd/web/static/fonts/glyphs/ttf/f2a75c7f.ttf new file mode 100644 index 0000000..2cdb6e1 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/f2a75c7f.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/f324b46a.ttf b/cmd/web/static/fonts/glyphs/ttf/f324b46a.ttf new file mode 100644 index 0000000..83a8c6f Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/f324b46a.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/f352189b.ttf b/cmd/web/static/fonts/glyphs/ttf/f352189b.ttf new file mode 100644 index 0000000..77be25e Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/f352189b.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/f38f3a94.ttf b/cmd/web/static/fonts/glyphs/ttf/f38f3a94.ttf new file mode 100644 index 0000000..c7470b3 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/f38f3a94.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/f3aa8be6.ttf b/cmd/web/static/fonts/glyphs/ttf/f3aa8be6.ttf new file mode 100644 index 0000000..31fd9f1 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/f3aa8be6.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/f3b8c582.ttf b/cmd/web/static/fonts/glyphs/ttf/f3b8c582.ttf new file mode 100644 index 0000000..792bf5f Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/f3b8c582.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/f4964839.ttf b/cmd/web/static/fonts/glyphs/ttf/f4964839.ttf new file mode 100644 index 0000000..594af68 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/f4964839.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/f4c46d43.ttf b/cmd/web/static/fonts/glyphs/ttf/f4c46d43.ttf new file mode 100644 index 0000000..3ee9bb3 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/f4c46d43.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/f51f8bf3.ttf b/cmd/web/static/fonts/glyphs/ttf/f51f8bf3.ttf new file mode 100644 index 0000000..e4f503e Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/f51f8bf3.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/f522c872.ttf b/cmd/web/static/fonts/glyphs/ttf/f522c872.ttf new file mode 100644 index 0000000..8ec6ec4 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/f522c872.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/f674659b.ttf b/cmd/web/static/fonts/glyphs/ttf/f674659b.ttf new file mode 100644 index 0000000..109ce5f Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/f674659b.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/f6a67776.ttf b/cmd/web/static/fonts/glyphs/ttf/f6a67776.ttf new file mode 100644 index 0000000..29a9a5b Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/f6a67776.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/f6b8b235.ttf b/cmd/web/static/fonts/glyphs/ttf/f6b8b235.ttf new file mode 100644 index 0000000..cf34a15 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/f6b8b235.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/f6bda42b.ttf b/cmd/web/static/fonts/glyphs/ttf/f6bda42b.ttf new file mode 100644 index 0000000..a19b61d Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/f6bda42b.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/f6e65e59.ttf b/cmd/web/static/fonts/glyphs/ttf/f6e65e59.ttf new file mode 100644 index 0000000..9f8f75f Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/f6e65e59.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/f73fed81.ttf b/cmd/web/static/fonts/glyphs/ttf/f73fed81.ttf new file mode 100644 index 0000000..b6994c0 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/f73fed81.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/f80829f5.ttf b/cmd/web/static/fonts/glyphs/ttf/f80829f5.ttf new file mode 100644 index 0000000..12573cf Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/f80829f5.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/f871e4e4.ttf b/cmd/web/static/fonts/glyphs/ttf/f871e4e4.ttf new file mode 100644 index 0000000..0a1ed37 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/f871e4e4.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/f874c31d.ttf b/cmd/web/static/fonts/glyphs/ttf/f874c31d.ttf new file mode 100644 index 0000000..678c310 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/f874c31d.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/f8a8936b.ttf b/cmd/web/static/fonts/glyphs/ttf/f8a8936b.ttf new file mode 100644 index 0000000..ac6d983 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/f8a8936b.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/f8c78a1d.ttf b/cmd/web/static/fonts/glyphs/ttf/f8c78a1d.ttf new file mode 100644 index 0000000..caf06a5 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/f8c78a1d.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/f952c473.ttf b/cmd/web/static/fonts/glyphs/ttf/f952c473.ttf new file mode 100644 index 0000000..5a54b26 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/f952c473.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/f99464f4.ttf b/cmd/web/static/fonts/glyphs/ttf/f99464f4.ttf new file mode 100644 index 0000000..31b3dc9 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/f99464f4.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/fa9edb37.ttf b/cmd/web/static/fonts/glyphs/ttf/fa9edb37.ttf new file mode 100644 index 0000000..abdbe90 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/fa9edb37.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/fbf90859.ttf b/cmd/web/static/fonts/glyphs/ttf/fbf90859.ttf new file mode 100644 index 0000000..e7f7818 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/fbf90859.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/fc061854.ttf b/cmd/web/static/fonts/glyphs/ttf/fc061854.ttf new file mode 100644 index 0000000..3e9dbad Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/fc061854.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/fccd4567.ttf b/cmd/web/static/fonts/glyphs/ttf/fccd4567.ttf new file mode 100644 index 0000000..a8ae01d Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/fccd4567.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/fcf313ef.ttf b/cmd/web/static/fonts/glyphs/ttf/fcf313ef.ttf new file mode 100644 index 0000000..ac7d57f Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/fcf313ef.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/fd56eaf9.ttf b/cmd/web/static/fonts/glyphs/ttf/fd56eaf9.ttf new file mode 100644 index 0000000..bda1b2d Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/fd56eaf9.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/fd5fe89c.ttf b/cmd/web/static/fonts/glyphs/ttf/fd5fe89c.ttf new file mode 100644 index 0000000..2a5b5e0 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/fd5fe89c.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/fda7a318.ttf b/cmd/web/static/fonts/glyphs/ttf/fda7a318.ttf new file mode 100644 index 0000000..199530b Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/fda7a318.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/fdc4299c.ttf b/cmd/web/static/fonts/glyphs/ttf/fdc4299c.ttf new file mode 100644 index 0000000..e098d1e Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/fdc4299c.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/fe1a9b49.ttf b/cmd/web/static/fonts/glyphs/ttf/fe1a9b49.ttf new file mode 100644 index 0000000..2b112fb Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/fe1a9b49.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/fe2af1dc.ttf b/cmd/web/static/fonts/glyphs/ttf/fe2af1dc.ttf new file mode 100644 index 0000000..11ff901 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/fe2af1dc.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/fef0478f.ttf b/cmd/web/static/fonts/glyphs/ttf/fef0478f.ttf new file mode 100644 index 0000000..1821c92 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/fef0478f.ttf differ diff --git a/cmd/web/static/fonts/glyphs/ttf/ffa0cc23.ttf b/cmd/web/static/fonts/glyphs/ttf/ffa0cc23.ttf new file mode 100644 index 0000000..c0af0dd Binary files /dev/null and b/cmd/web/static/fonts/glyphs/ttf/ffa0cc23.ttf differ diff --git a/cmd/web/static/fonts/glyphs/woff/0067bba3.woff b/cmd/web/static/fonts/glyphs/woff/0067bba3.woff new file mode 100644 index 0000000..3365f66 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/0067bba3.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/00883b50.woff b/cmd/web/static/fonts/glyphs/woff/00883b50.woff new file mode 100644 index 0000000..9a82fb1 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/00883b50.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/011ee55c.woff b/cmd/web/static/fonts/glyphs/woff/011ee55c.woff new file mode 100644 index 0000000..a5c356b Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/011ee55c.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/018f5952.woff b/cmd/web/static/fonts/glyphs/woff/018f5952.woff new file mode 100644 index 0000000..b453985 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/018f5952.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/01e07cf4.woff b/cmd/web/static/fonts/glyphs/woff/01e07cf4.woff new file mode 100644 index 0000000..e904089 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/01e07cf4.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/02255308.woff b/cmd/web/static/fonts/glyphs/woff/02255308.woff new file mode 100644 index 0000000..3c8b70b Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/02255308.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/023d4451.woff b/cmd/web/static/fonts/glyphs/woff/023d4451.woff new file mode 100644 index 0000000..982da83 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/023d4451.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/02d0c663.woff b/cmd/web/static/fonts/glyphs/woff/02d0c663.woff new file mode 100644 index 0000000..a458837 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/02d0c663.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/048120ba.woff b/cmd/web/static/fonts/glyphs/woff/048120ba.woff new file mode 100644 index 0000000..2ba2972 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/048120ba.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/04c9aec2.woff b/cmd/web/static/fonts/glyphs/woff/04c9aec2.woff new file mode 100644 index 0000000..7309124 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/04c9aec2.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/05b616e5.woff b/cmd/web/static/fonts/glyphs/woff/05b616e5.woff new file mode 100644 index 0000000..6f08882 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/05b616e5.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/05ed7e4e.woff b/cmd/web/static/fonts/glyphs/woff/05ed7e4e.woff new file mode 100644 index 0000000..7ad2d6d Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/05ed7e4e.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/061e5117.woff b/cmd/web/static/fonts/glyphs/woff/061e5117.woff new file mode 100644 index 0000000..9ebb361 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/061e5117.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/064b9505.woff b/cmd/web/static/fonts/glyphs/woff/064b9505.woff new file mode 100644 index 0000000..d768a8f Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/064b9505.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/066eea7e.woff b/cmd/web/static/fonts/glyphs/woff/066eea7e.woff new file mode 100644 index 0000000..42c678a Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/066eea7e.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/06fd396d.woff b/cmd/web/static/fonts/glyphs/woff/06fd396d.woff new file mode 100644 index 0000000..b5fdb97 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/06fd396d.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/081f89e0.woff b/cmd/web/static/fonts/glyphs/woff/081f89e0.woff new file mode 100644 index 0000000..cdd2491 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/081f89e0.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/088eafe1.woff b/cmd/web/static/fonts/glyphs/woff/088eafe1.woff new file mode 100644 index 0000000..ebae01f Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/088eafe1.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/08e4c9db.woff b/cmd/web/static/fonts/glyphs/woff/08e4c9db.woff new file mode 100644 index 0000000..28b60a3 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/08e4c9db.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/08e9330e.woff b/cmd/web/static/fonts/glyphs/woff/08e9330e.woff new file mode 100644 index 0000000..21007bc Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/08e9330e.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/090f780c.woff b/cmd/web/static/fonts/glyphs/woff/090f780c.woff new file mode 100644 index 0000000..7411fde Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/090f780c.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/09a35da5.woff b/cmd/web/static/fonts/glyphs/woff/09a35da5.woff new file mode 100644 index 0000000..b406e15 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/09a35da5.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/09afd82a.woff b/cmd/web/static/fonts/glyphs/woff/09afd82a.woff new file mode 100644 index 0000000..f26c0bd Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/09afd82a.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/09b0664c.woff b/cmd/web/static/fonts/glyphs/woff/09b0664c.woff new file mode 100644 index 0000000..ecfae03 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/09b0664c.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/0a01e6d0.woff b/cmd/web/static/fonts/glyphs/woff/0a01e6d0.woff new file mode 100644 index 0000000..3977bfb Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/0a01e6d0.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/0a32e2fb.woff b/cmd/web/static/fonts/glyphs/woff/0a32e2fb.woff new file mode 100644 index 0000000..d5d0785 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/0a32e2fb.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/0a4097e4.woff b/cmd/web/static/fonts/glyphs/woff/0a4097e4.woff new file mode 100644 index 0000000..66f5563 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/0a4097e4.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/0ac058dd.woff b/cmd/web/static/fonts/glyphs/woff/0ac058dd.woff new file mode 100644 index 0000000..911118f Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/0ac058dd.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/0b12d5a0.woff b/cmd/web/static/fonts/glyphs/woff/0b12d5a0.woff new file mode 100644 index 0000000..5725822 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/0b12d5a0.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/0b4fc343.woff b/cmd/web/static/fonts/glyphs/woff/0b4fc343.woff new file mode 100644 index 0000000..e4ca652 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/0b4fc343.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/0bcc804b.woff b/cmd/web/static/fonts/glyphs/woff/0bcc804b.woff new file mode 100644 index 0000000..924671b Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/0bcc804b.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/0c40016a.woff b/cmd/web/static/fonts/glyphs/woff/0c40016a.woff new file mode 100644 index 0000000..c02c7c6 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/0c40016a.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/0ca412f2.woff b/cmd/web/static/fonts/glyphs/woff/0ca412f2.woff new file mode 100644 index 0000000..27e29d6 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/0ca412f2.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/0cbb9805.woff b/cmd/web/static/fonts/glyphs/woff/0cbb9805.woff new file mode 100644 index 0000000..70735f6 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/0cbb9805.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/0cc88965.woff b/cmd/web/static/fonts/glyphs/woff/0cc88965.woff new file mode 100644 index 0000000..45e456f Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/0cc88965.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/0cf3a20b.woff b/cmd/web/static/fonts/glyphs/woff/0cf3a20b.woff new file mode 100644 index 0000000..6073c1a Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/0cf3a20b.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/0cfc2998.woff b/cmd/web/static/fonts/glyphs/woff/0cfc2998.woff new file mode 100644 index 0000000..3d328a9 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/0cfc2998.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/0d085f1c.woff b/cmd/web/static/fonts/glyphs/woff/0d085f1c.woff new file mode 100644 index 0000000..65bcd76 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/0d085f1c.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/0d26bbc7.woff b/cmd/web/static/fonts/glyphs/woff/0d26bbc7.woff new file mode 100644 index 0000000..bc16e77 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/0d26bbc7.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/0d9537d2.woff b/cmd/web/static/fonts/glyphs/woff/0d9537d2.woff new file mode 100644 index 0000000..029a5bb Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/0d9537d2.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/0e779307.woff b/cmd/web/static/fonts/glyphs/woff/0e779307.woff new file mode 100644 index 0000000..a36ce2a Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/0e779307.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/0ecabbc7.woff b/cmd/web/static/fonts/glyphs/woff/0ecabbc7.woff new file mode 100644 index 0000000..e125434 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/0ecabbc7.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/0f971447.woff b/cmd/web/static/fonts/glyphs/woff/0f971447.woff new file mode 100644 index 0000000..cb9821a Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/0f971447.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/0ff7e3fd.woff b/cmd/web/static/fonts/glyphs/woff/0ff7e3fd.woff new file mode 100644 index 0000000..c6e0e45 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/0ff7e3fd.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/10350c93.woff b/cmd/web/static/fonts/glyphs/woff/10350c93.woff new file mode 100644 index 0000000..58643b3 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/10350c93.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/1079bbd9.woff b/cmd/web/static/fonts/glyphs/woff/1079bbd9.woff new file mode 100644 index 0000000..26f9c61 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/1079bbd9.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/1098551a.woff b/cmd/web/static/fonts/glyphs/woff/1098551a.woff new file mode 100644 index 0000000..bc992cc Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/1098551a.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/110df6cd.woff b/cmd/web/static/fonts/glyphs/woff/110df6cd.woff new file mode 100644 index 0000000..62d164d Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/110df6cd.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/114520c4.woff b/cmd/web/static/fonts/glyphs/woff/114520c4.woff new file mode 100644 index 0000000..cd59955 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/114520c4.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/1165e24b.woff b/cmd/web/static/fonts/glyphs/woff/1165e24b.woff new file mode 100644 index 0000000..db0f425 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/1165e24b.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/117dc215.woff b/cmd/web/static/fonts/glyphs/woff/117dc215.woff new file mode 100644 index 0000000..4b8ba8b Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/117dc215.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/11805c1a.woff b/cmd/web/static/fonts/glyphs/woff/11805c1a.woff new file mode 100644 index 0000000..64f0ce9 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/11805c1a.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/11c88fa3.woff b/cmd/web/static/fonts/glyphs/woff/11c88fa3.woff new file mode 100644 index 0000000..2bfcd09 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/11c88fa3.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/11d82ab4.woff b/cmd/web/static/fonts/glyphs/woff/11d82ab4.woff new file mode 100644 index 0000000..0644979 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/11d82ab4.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/120564eb.woff b/cmd/web/static/fonts/glyphs/woff/120564eb.woff new file mode 100644 index 0000000..8554c42 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/120564eb.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/125fe922.woff b/cmd/web/static/fonts/glyphs/woff/125fe922.woff new file mode 100644 index 0000000..22d646d Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/125fe922.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/129ec899.woff b/cmd/web/static/fonts/glyphs/woff/129ec899.woff new file mode 100644 index 0000000..cc26842 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/129ec899.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/12c373f3.woff b/cmd/web/static/fonts/glyphs/woff/12c373f3.woff new file mode 100644 index 0000000..4b86b19 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/12c373f3.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/12cd5e20.woff b/cmd/web/static/fonts/glyphs/woff/12cd5e20.woff new file mode 100644 index 0000000..179ed1c Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/12cd5e20.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/12d9f10f.woff b/cmd/web/static/fonts/glyphs/woff/12d9f10f.woff new file mode 100644 index 0000000..2241729 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/12d9f10f.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/131b3834.woff b/cmd/web/static/fonts/glyphs/woff/131b3834.woff new file mode 100644 index 0000000..9b54e58 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/131b3834.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/131ebb37.woff b/cmd/web/static/fonts/glyphs/woff/131ebb37.woff new file mode 100644 index 0000000..f862a41 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/131ebb37.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/13753541.woff b/cmd/web/static/fonts/glyphs/woff/13753541.woff new file mode 100644 index 0000000..ce31e3d Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/13753541.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/1394a474.woff b/cmd/web/static/fonts/glyphs/woff/1394a474.woff new file mode 100644 index 0000000..d5f2805 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/1394a474.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/13b487b1.woff b/cmd/web/static/fonts/glyphs/woff/13b487b1.woff new file mode 100644 index 0000000..8372ff2 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/13b487b1.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/14880f85.woff b/cmd/web/static/fonts/glyphs/woff/14880f85.woff new file mode 100644 index 0000000..3bacc40 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/14880f85.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/15802da1.woff b/cmd/web/static/fonts/glyphs/woff/15802da1.woff new file mode 100644 index 0000000..df5c4be Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/15802da1.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/159ee498.woff b/cmd/web/static/fonts/glyphs/woff/159ee498.woff new file mode 100644 index 0000000..15266d3 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/159ee498.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/167004d8.woff b/cmd/web/static/fonts/glyphs/woff/167004d8.woff new file mode 100644 index 0000000..2399661 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/167004d8.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/16ed590a.woff b/cmd/web/static/fonts/glyphs/woff/16ed590a.woff new file mode 100644 index 0000000..e199813 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/16ed590a.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/172e6f01.woff b/cmd/web/static/fonts/glyphs/woff/172e6f01.woff new file mode 100644 index 0000000..006ffc5 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/172e6f01.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/1778d94c.woff b/cmd/web/static/fonts/glyphs/woff/1778d94c.woff new file mode 100644 index 0000000..b1cea85 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/1778d94c.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/177d0611.woff b/cmd/web/static/fonts/glyphs/woff/177d0611.woff new file mode 100644 index 0000000..6089193 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/177d0611.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/179f13d3.woff b/cmd/web/static/fonts/glyphs/woff/179f13d3.woff new file mode 100644 index 0000000..f2b984f Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/179f13d3.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/17a7a115.woff b/cmd/web/static/fonts/glyphs/woff/17a7a115.woff new file mode 100644 index 0000000..defb315 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/17a7a115.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/1817efca.woff b/cmd/web/static/fonts/glyphs/woff/1817efca.woff new file mode 100644 index 0000000..d34df15 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/1817efca.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/1937cd98.woff b/cmd/web/static/fonts/glyphs/woff/1937cd98.woff new file mode 100644 index 0000000..7042804 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/1937cd98.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/199aab73.woff b/cmd/web/static/fonts/glyphs/woff/199aab73.woff new file mode 100644 index 0000000..d2388cd Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/199aab73.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/19f8d5af.woff b/cmd/web/static/fonts/glyphs/woff/19f8d5af.woff new file mode 100644 index 0000000..7220117 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/19f8d5af.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/1a54066a.woff b/cmd/web/static/fonts/glyphs/woff/1a54066a.woff new file mode 100644 index 0000000..dcdf38d Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/1a54066a.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/1a7920cb.woff b/cmd/web/static/fonts/glyphs/woff/1a7920cb.woff new file mode 100644 index 0000000..d3d2876 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/1a7920cb.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/1a797de5.woff b/cmd/web/static/fonts/glyphs/woff/1a797de5.woff new file mode 100644 index 0000000..ef0a8d2 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/1a797de5.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/1a7bcf02.woff b/cmd/web/static/fonts/glyphs/woff/1a7bcf02.woff new file mode 100644 index 0000000..79a3244 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/1a7bcf02.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/1a8afe19.woff b/cmd/web/static/fonts/glyphs/woff/1a8afe19.woff new file mode 100644 index 0000000..45e53c0 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/1a8afe19.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/1a9e5d1a.woff b/cmd/web/static/fonts/glyphs/woff/1a9e5d1a.woff new file mode 100644 index 0000000..be11df5 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/1a9e5d1a.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/1b07c59f.woff b/cmd/web/static/fonts/glyphs/woff/1b07c59f.woff new file mode 100644 index 0000000..3e2a6a3 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/1b07c59f.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/1b180f14.woff b/cmd/web/static/fonts/glyphs/woff/1b180f14.woff new file mode 100644 index 0000000..03cf472 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/1b180f14.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/1b7ba367.woff b/cmd/web/static/fonts/glyphs/woff/1b7ba367.woff new file mode 100644 index 0000000..f295287 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/1b7ba367.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/1ca00690.woff b/cmd/web/static/fonts/glyphs/woff/1ca00690.woff new file mode 100644 index 0000000..d4ca2eb Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/1ca00690.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/1cc31435.woff b/cmd/web/static/fonts/glyphs/woff/1cc31435.woff new file mode 100644 index 0000000..c5a1449 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/1cc31435.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/1cd81072.woff b/cmd/web/static/fonts/glyphs/woff/1cd81072.woff new file mode 100644 index 0000000..dcab1de Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/1cd81072.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/1d31d67a.woff b/cmd/web/static/fonts/glyphs/woff/1d31d67a.woff new file mode 100644 index 0000000..a2b0dab Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/1d31d67a.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/1d3e9975.woff b/cmd/web/static/fonts/glyphs/woff/1d3e9975.woff new file mode 100644 index 0000000..09592b9 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/1d3e9975.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/1d45862b.woff b/cmd/web/static/fonts/glyphs/woff/1d45862b.woff new file mode 100644 index 0000000..38beffb Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/1d45862b.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/1df9ac89.woff b/cmd/web/static/fonts/glyphs/woff/1df9ac89.woff new file mode 100644 index 0000000..e8652cb Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/1df9ac89.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/1e143288.woff b/cmd/web/static/fonts/glyphs/woff/1e143288.woff new file mode 100644 index 0000000..a8e2dca Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/1e143288.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/1e3a5f47.woff b/cmd/web/static/fonts/glyphs/woff/1e3a5f47.woff new file mode 100644 index 0000000..81e1a91 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/1e3a5f47.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/1ea52dfd.woff b/cmd/web/static/fonts/glyphs/woff/1ea52dfd.woff new file mode 100644 index 0000000..71d44f7 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/1ea52dfd.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/1eb35b35.woff b/cmd/web/static/fonts/glyphs/woff/1eb35b35.woff new file mode 100644 index 0000000..44ba1c0 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/1eb35b35.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/1fd6b062.woff b/cmd/web/static/fonts/glyphs/woff/1fd6b062.woff new file mode 100644 index 0000000..67a9db5 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/1fd6b062.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/208046b5.woff b/cmd/web/static/fonts/glyphs/woff/208046b5.woff new file mode 100644 index 0000000..2e489a8 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/208046b5.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/20b835b7.woff b/cmd/web/static/fonts/glyphs/woff/20b835b7.woff new file mode 100644 index 0000000..824ea64 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/20b835b7.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/20f9b6e3.woff b/cmd/web/static/fonts/glyphs/woff/20f9b6e3.woff new file mode 100644 index 0000000..6be5322 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/20f9b6e3.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/21619e9c.woff b/cmd/web/static/fonts/glyphs/woff/21619e9c.woff new file mode 100644 index 0000000..e9d03ea Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/21619e9c.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/2163c4cf.woff b/cmd/web/static/fonts/glyphs/woff/2163c4cf.woff new file mode 100644 index 0000000..285e0c0 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/2163c4cf.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/218e296f.woff b/cmd/web/static/fonts/glyphs/woff/218e296f.woff new file mode 100644 index 0000000..130d19d Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/218e296f.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/21a02826.woff b/cmd/web/static/fonts/glyphs/woff/21a02826.woff new file mode 100644 index 0000000..f8db4fb Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/21a02826.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/2200df99.woff b/cmd/web/static/fonts/glyphs/woff/2200df99.woff new file mode 100644 index 0000000..9cdb14d Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/2200df99.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/22293ce5.woff b/cmd/web/static/fonts/glyphs/woff/22293ce5.woff new file mode 100644 index 0000000..0e8a1bf Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/22293ce5.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/22c6ed00.woff b/cmd/web/static/fonts/glyphs/woff/22c6ed00.woff new file mode 100644 index 0000000..8331ee0 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/22c6ed00.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/23b476b4.woff b/cmd/web/static/fonts/glyphs/woff/23b476b4.woff new file mode 100644 index 0000000..3e4e15e Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/23b476b4.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/2422dc89.woff b/cmd/web/static/fonts/glyphs/woff/2422dc89.woff new file mode 100644 index 0000000..1a7986b Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/2422dc89.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/246660f5.woff b/cmd/web/static/fonts/glyphs/woff/246660f5.woff new file mode 100644 index 0000000..6eabedb Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/246660f5.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/2489d00d.woff b/cmd/web/static/fonts/glyphs/woff/2489d00d.woff new file mode 100644 index 0000000..756b18a Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/2489d00d.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/24a80660.woff b/cmd/web/static/fonts/glyphs/woff/24a80660.woff new file mode 100644 index 0000000..f5f144d Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/24a80660.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/24cd796b.woff b/cmd/web/static/fonts/glyphs/woff/24cd796b.woff new file mode 100644 index 0000000..4b3c817 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/24cd796b.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/24d18e39.woff b/cmd/web/static/fonts/glyphs/woff/24d18e39.woff new file mode 100644 index 0000000..cca30ce Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/24d18e39.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/24e7e96e.woff b/cmd/web/static/fonts/glyphs/woff/24e7e96e.woff new file mode 100644 index 0000000..39f041d Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/24e7e96e.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/250eac5a.woff b/cmd/web/static/fonts/glyphs/woff/250eac5a.woff new file mode 100644 index 0000000..c4f6f6c Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/250eac5a.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/252bbda4.woff b/cmd/web/static/fonts/glyphs/woff/252bbda4.woff new file mode 100644 index 0000000..b32bc4d Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/252bbda4.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/254c8943.woff b/cmd/web/static/fonts/glyphs/woff/254c8943.woff new file mode 100644 index 0000000..0678614 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/254c8943.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/25ba326c.woff b/cmd/web/static/fonts/glyphs/woff/25ba326c.woff new file mode 100644 index 0000000..1fa650d Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/25ba326c.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/25ea7b82.woff b/cmd/web/static/fonts/glyphs/woff/25ea7b82.woff new file mode 100644 index 0000000..f74fb47 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/25ea7b82.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/25eb254d.woff b/cmd/web/static/fonts/glyphs/woff/25eb254d.woff new file mode 100644 index 0000000..4c03eb3 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/25eb254d.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/264d968f.woff b/cmd/web/static/fonts/glyphs/woff/264d968f.woff new file mode 100644 index 0000000..6096892 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/264d968f.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/26fc4657.woff b/cmd/web/static/fonts/glyphs/woff/26fc4657.woff new file mode 100644 index 0000000..4b94337 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/26fc4657.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/282e3874.woff b/cmd/web/static/fonts/glyphs/woff/282e3874.woff new file mode 100644 index 0000000..fb38480 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/282e3874.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/2849840b.woff b/cmd/web/static/fonts/glyphs/woff/2849840b.woff new file mode 100644 index 0000000..7559f87 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/2849840b.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/288dafa6.woff b/cmd/web/static/fonts/glyphs/woff/288dafa6.woff new file mode 100644 index 0000000..321e17f Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/288dafa6.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/2928cfa1.woff b/cmd/web/static/fonts/glyphs/woff/2928cfa1.woff new file mode 100644 index 0000000..d8df91a Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/2928cfa1.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/297959f6.woff b/cmd/web/static/fonts/glyphs/woff/297959f6.woff new file mode 100644 index 0000000..2514814 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/297959f6.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/29ef8c3a.woff b/cmd/web/static/fonts/glyphs/woff/29ef8c3a.woff new file mode 100644 index 0000000..2e45ac7 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/29ef8c3a.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/2a4ae11d.woff b/cmd/web/static/fonts/glyphs/woff/2a4ae11d.woff new file mode 100644 index 0000000..9f09267 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/2a4ae11d.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/2a889c21.woff b/cmd/web/static/fonts/glyphs/woff/2a889c21.woff new file mode 100644 index 0000000..6b6b944 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/2a889c21.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/2a96e401.woff b/cmd/web/static/fonts/glyphs/woff/2a96e401.woff new file mode 100644 index 0000000..94a3aa8 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/2a96e401.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/2a9dc20c.woff b/cmd/web/static/fonts/glyphs/woff/2a9dc20c.woff new file mode 100644 index 0000000..41c7c9c Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/2a9dc20c.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/2ae6c3ff.woff b/cmd/web/static/fonts/glyphs/woff/2ae6c3ff.woff new file mode 100644 index 0000000..6102bcc Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/2ae6c3ff.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/2b4b2b6f.woff b/cmd/web/static/fonts/glyphs/woff/2b4b2b6f.woff new file mode 100644 index 0000000..cbf63bc Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/2b4b2b6f.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/2b52c387.woff b/cmd/web/static/fonts/glyphs/woff/2b52c387.woff new file mode 100644 index 0000000..b8ba3cf Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/2b52c387.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/2bd2fc24.woff b/cmd/web/static/fonts/glyphs/woff/2bd2fc24.woff new file mode 100644 index 0000000..d8def9d Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/2bd2fc24.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/2be8c581.woff b/cmd/web/static/fonts/glyphs/woff/2be8c581.woff new file mode 100644 index 0000000..d0dc1a7 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/2be8c581.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/2c977e31.woff b/cmd/web/static/fonts/glyphs/woff/2c977e31.woff new file mode 100644 index 0000000..4eb20c4 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/2c977e31.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/2cee68c5.woff b/cmd/web/static/fonts/glyphs/woff/2cee68c5.woff new file mode 100644 index 0000000..d3ad343 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/2cee68c5.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/2d027c9d.woff b/cmd/web/static/fonts/glyphs/woff/2d027c9d.woff new file mode 100644 index 0000000..b649a19 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/2d027c9d.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/2d2cf221.woff b/cmd/web/static/fonts/glyphs/woff/2d2cf221.woff new file mode 100644 index 0000000..dd4e262 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/2d2cf221.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/2d5cb25e.woff b/cmd/web/static/fonts/glyphs/woff/2d5cb25e.woff new file mode 100644 index 0000000..fc43bc5 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/2d5cb25e.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/2d7aa05f.woff b/cmd/web/static/fonts/glyphs/woff/2d7aa05f.woff new file mode 100644 index 0000000..cfba2a3 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/2d7aa05f.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/2db5fddf.woff b/cmd/web/static/fonts/glyphs/woff/2db5fddf.woff new file mode 100644 index 0000000..d89b166 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/2db5fddf.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/2dc572da.woff b/cmd/web/static/fonts/glyphs/woff/2dc572da.woff new file mode 100644 index 0000000..9e9c8c2 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/2dc572da.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/2e27c6c1.woff b/cmd/web/static/fonts/glyphs/woff/2e27c6c1.woff new file mode 100644 index 0000000..c4f83b1 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/2e27c6c1.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/2e5887ef.woff b/cmd/web/static/fonts/glyphs/woff/2e5887ef.woff new file mode 100644 index 0000000..3f0031d Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/2e5887ef.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/2ed7bd06.woff b/cmd/web/static/fonts/glyphs/woff/2ed7bd06.woff new file mode 100644 index 0000000..8c716d7 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/2ed7bd06.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/2ef4a942.woff b/cmd/web/static/fonts/glyphs/woff/2ef4a942.woff new file mode 100644 index 0000000..c7078fe Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/2ef4a942.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/2f84e1d2.woff b/cmd/web/static/fonts/glyphs/woff/2f84e1d2.woff new file mode 100644 index 0000000..4637258 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/2f84e1d2.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/2fd2e914.woff b/cmd/web/static/fonts/glyphs/woff/2fd2e914.woff new file mode 100644 index 0000000..ef8ebc5 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/2fd2e914.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/30042e01.woff b/cmd/web/static/fonts/glyphs/woff/30042e01.woff new file mode 100644 index 0000000..0974478 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/30042e01.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/300b40cf.woff b/cmd/web/static/fonts/glyphs/woff/300b40cf.woff new file mode 100644 index 0000000..a26e819 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/300b40cf.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/3069c5e2.woff b/cmd/web/static/fonts/glyphs/woff/3069c5e2.woff new file mode 100644 index 0000000..d1fc8c9 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/3069c5e2.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/30d929ef.woff b/cmd/web/static/fonts/glyphs/woff/30d929ef.woff new file mode 100644 index 0000000..0cf0acd Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/30d929ef.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/311bcfdc.woff b/cmd/web/static/fonts/glyphs/woff/311bcfdc.woff new file mode 100644 index 0000000..698982e Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/311bcfdc.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/31234fc4.woff b/cmd/web/static/fonts/glyphs/woff/31234fc4.woff new file mode 100644 index 0000000..609bea8 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/31234fc4.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/315c66f8.woff b/cmd/web/static/fonts/glyphs/woff/315c66f8.woff new file mode 100644 index 0000000..26ec0a8 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/315c66f8.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/31722822.woff b/cmd/web/static/fonts/glyphs/woff/31722822.woff new file mode 100644 index 0000000..034e8ad Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/31722822.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/31782ddd.woff b/cmd/web/static/fonts/glyphs/woff/31782ddd.woff new file mode 100644 index 0000000..e930bc6 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/31782ddd.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/322840cb.woff b/cmd/web/static/fonts/glyphs/woff/322840cb.woff new file mode 100644 index 0000000..465c6fc Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/322840cb.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/323a4cec.woff b/cmd/web/static/fonts/glyphs/woff/323a4cec.woff new file mode 100644 index 0000000..5289fb8 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/323a4cec.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/325a5ac2.woff b/cmd/web/static/fonts/glyphs/woff/325a5ac2.woff new file mode 100644 index 0000000..4f8b43c Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/325a5ac2.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/328fad59.woff b/cmd/web/static/fonts/glyphs/woff/328fad59.woff new file mode 100644 index 0000000..6fa0fe5 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/328fad59.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/32c69208.woff b/cmd/web/static/fonts/glyphs/woff/32c69208.woff new file mode 100644 index 0000000..9598a4a Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/32c69208.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/32cb1e15.woff b/cmd/web/static/fonts/glyphs/woff/32cb1e15.woff new file mode 100644 index 0000000..ebdcb34 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/32cb1e15.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/34152b57.woff b/cmd/web/static/fonts/glyphs/woff/34152b57.woff new file mode 100644 index 0000000..ee32e50 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/34152b57.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/34833f66.woff b/cmd/web/static/fonts/glyphs/woff/34833f66.woff new file mode 100644 index 0000000..21ee1c5 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/34833f66.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/34a01d7d.woff b/cmd/web/static/fonts/glyphs/woff/34a01d7d.woff new file mode 100644 index 0000000..551547a Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/34a01d7d.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/34d7ab4a.woff b/cmd/web/static/fonts/glyphs/woff/34d7ab4a.woff new file mode 100644 index 0000000..b58350c Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/34d7ab4a.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/3506ae92.woff b/cmd/web/static/fonts/glyphs/woff/3506ae92.woff new file mode 100644 index 0000000..12f8aec Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/3506ae92.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/3547c23d.woff b/cmd/web/static/fonts/glyphs/woff/3547c23d.woff new file mode 100644 index 0000000..78fc1e5 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/3547c23d.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/354ca571.woff b/cmd/web/static/fonts/glyphs/woff/354ca571.woff new file mode 100644 index 0000000..abba058 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/354ca571.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/35e73fc6.woff b/cmd/web/static/fonts/glyphs/woff/35e73fc6.woff new file mode 100644 index 0000000..de402ed Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/35e73fc6.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/36728431.woff b/cmd/web/static/fonts/glyphs/woff/36728431.woff new file mode 100644 index 0000000..5f33388 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/36728431.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/36a3295a.woff b/cmd/web/static/fonts/glyphs/woff/36a3295a.woff new file mode 100644 index 0000000..8338a7f Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/36a3295a.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/36ac1140.woff b/cmd/web/static/fonts/glyphs/woff/36ac1140.woff new file mode 100644 index 0000000..f2de81e Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/36ac1140.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/36bc1a9d.woff b/cmd/web/static/fonts/glyphs/woff/36bc1a9d.woff new file mode 100644 index 0000000..97d3dfe Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/36bc1a9d.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/36bf9ec5.woff b/cmd/web/static/fonts/glyphs/woff/36bf9ec5.woff new file mode 100644 index 0000000..02757e6 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/36bf9ec5.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/36fb96fc.woff b/cmd/web/static/fonts/glyphs/woff/36fb96fc.woff new file mode 100644 index 0000000..b184425 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/36fb96fc.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/370da5ae.woff b/cmd/web/static/fonts/glyphs/woff/370da5ae.woff new file mode 100644 index 0000000..e9670db Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/370da5ae.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/37481bd1.woff b/cmd/web/static/fonts/glyphs/woff/37481bd1.woff new file mode 100644 index 0000000..82dbf1e Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/37481bd1.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/385855c8.woff b/cmd/web/static/fonts/glyphs/woff/385855c8.woff new file mode 100644 index 0000000..f53a4eb Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/385855c8.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/38686314.woff b/cmd/web/static/fonts/glyphs/woff/38686314.woff new file mode 100644 index 0000000..3b97da4 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/38686314.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/389e0153.woff b/cmd/web/static/fonts/glyphs/woff/389e0153.woff new file mode 100644 index 0000000..eb54eca Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/389e0153.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/38dcac7f.woff b/cmd/web/static/fonts/glyphs/woff/38dcac7f.woff new file mode 100644 index 0000000..63188de Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/38dcac7f.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/393bcee2.woff b/cmd/web/static/fonts/glyphs/woff/393bcee2.woff new file mode 100644 index 0000000..ab15937 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/393bcee2.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/39b74aca.woff b/cmd/web/static/fonts/glyphs/woff/39b74aca.woff new file mode 100644 index 0000000..e924a1d Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/39b74aca.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/3a52ed45.woff b/cmd/web/static/fonts/glyphs/woff/3a52ed45.woff new file mode 100644 index 0000000..6fe07c6 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/3a52ed45.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/3a530c59.woff b/cmd/web/static/fonts/glyphs/woff/3a530c59.woff new file mode 100644 index 0000000..dbdaeb1 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/3a530c59.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/3abbb79a.woff b/cmd/web/static/fonts/glyphs/woff/3abbb79a.woff new file mode 100644 index 0000000..6ecf55a Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/3abbb79a.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/3ac9bbf7.woff b/cmd/web/static/fonts/glyphs/woff/3ac9bbf7.woff new file mode 100644 index 0000000..dcef6a4 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/3ac9bbf7.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/3b064daf.woff b/cmd/web/static/fonts/glyphs/woff/3b064daf.woff new file mode 100644 index 0000000..4eff54a Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/3b064daf.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/3b5ff71f.woff b/cmd/web/static/fonts/glyphs/woff/3b5ff71f.woff new file mode 100644 index 0000000..e540e10 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/3b5ff71f.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/3b6b07e4.woff b/cmd/web/static/fonts/glyphs/woff/3b6b07e4.woff new file mode 100644 index 0000000..e766730 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/3b6b07e4.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/3b7180f4.woff b/cmd/web/static/fonts/glyphs/woff/3b7180f4.woff new file mode 100644 index 0000000..c5b4a4b Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/3b7180f4.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/3bd53fee.woff b/cmd/web/static/fonts/glyphs/woff/3bd53fee.woff new file mode 100644 index 0000000..2382b68 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/3bd53fee.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/3c678666.woff b/cmd/web/static/fonts/glyphs/woff/3c678666.woff new file mode 100644 index 0000000..38f1efa Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/3c678666.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/3d32bff5.woff b/cmd/web/static/fonts/glyphs/woff/3d32bff5.woff new file mode 100644 index 0000000..6f4fb07 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/3d32bff5.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/3e131fc2.woff b/cmd/web/static/fonts/glyphs/woff/3e131fc2.woff new file mode 100644 index 0000000..2b51489 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/3e131fc2.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/3e670521.woff b/cmd/web/static/fonts/glyphs/woff/3e670521.woff new file mode 100644 index 0000000..38f45be Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/3e670521.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/3eed650c.woff b/cmd/web/static/fonts/glyphs/woff/3eed650c.woff new file mode 100644 index 0000000..588667e Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/3eed650c.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/3f29fe8f.woff b/cmd/web/static/fonts/glyphs/woff/3f29fe8f.woff new file mode 100644 index 0000000..3749ffc Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/3f29fe8f.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/3f357a26.woff b/cmd/web/static/fonts/glyphs/woff/3f357a26.woff new file mode 100644 index 0000000..3d08708 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/3f357a26.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/3f3d19ae.woff b/cmd/web/static/fonts/glyphs/woff/3f3d19ae.woff new file mode 100644 index 0000000..e6597eb Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/3f3d19ae.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/3fc14a91.woff b/cmd/web/static/fonts/glyphs/woff/3fc14a91.woff new file mode 100644 index 0000000..aa194d3 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/3fc14a91.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/4003be53.woff b/cmd/web/static/fonts/glyphs/woff/4003be53.woff new file mode 100644 index 0000000..48bff71 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/4003be53.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/4062bc3a.woff b/cmd/web/static/fonts/glyphs/woff/4062bc3a.woff new file mode 100644 index 0000000..6c99575 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/4062bc3a.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/41038137.woff b/cmd/web/static/fonts/glyphs/woff/41038137.woff new file mode 100644 index 0000000..f82a7af Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/41038137.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/4129e2ed.woff b/cmd/web/static/fonts/glyphs/woff/4129e2ed.woff new file mode 100644 index 0000000..871d622 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/4129e2ed.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/41692e5f.woff b/cmd/web/static/fonts/glyphs/woff/41692e5f.woff new file mode 100644 index 0000000..023dc7a Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/41692e5f.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/41e7e67b.woff b/cmd/web/static/fonts/glyphs/woff/41e7e67b.woff new file mode 100644 index 0000000..4db62da Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/41e7e67b.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/42130fd7.woff b/cmd/web/static/fonts/glyphs/woff/42130fd7.woff new file mode 100644 index 0000000..76d0da5 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/42130fd7.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/4259b075.woff b/cmd/web/static/fonts/glyphs/woff/4259b075.woff new file mode 100644 index 0000000..f3399da Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/4259b075.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/430cca2f.woff b/cmd/web/static/fonts/glyphs/woff/430cca2f.woff new file mode 100644 index 0000000..5aa8eda Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/430cca2f.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/4321166d.woff b/cmd/web/static/fonts/glyphs/woff/4321166d.woff new file mode 100644 index 0000000..334029a Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/4321166d.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/43664073.woff b/cmd/web/static/fonts/glyphs/woff/43664073.woff new file mode 100644 index 0000000..2648c98 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/43664073.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/439e5c3d.woff b/cmd/web/static/fonts/glyphs/woff/439e5c3d.woff new file mode 100644 index 0000000..0b3abcb Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/439e5c3d.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/4477f406.woff b/cmd/web/static/fonts/glyphs/woff/4477f406.woff new file mode 100644 index 0000000..11de556 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/4477f406.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/455032d0.woff b/cmd/web/static/fonts/glyphs/woff/455032d0.woff new file mode 100644 index 0000000..110c4b8 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/455032d0.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/45a8e7e4.woff b/cmd/web/static/fonts/glyphs/woff/45a8e7e4.woff new file mode 100644 index 0000000..d3f91a3 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/45a8e7e4.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/462ea6a3.woff b/cmd/web/static/fonts/glyphs/woff/462ea6a3.woff new file mode 100644 index 0000000..0ff5985 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/462ea6a3.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/463c644c.woff b/cmd/web/static/fonts/glyphs/woff/463c644c.woff new file mode 100644 index 0000000..696ad36 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/463c644c.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/46a505fd.woff b/cmd/web/static/fonts/glyphs/woff/46a505fd.woff new file mode 100644 index 0000000..4d4738a Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/46a505fd.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/47413c16.woff b/cmd/web/static/fonts/glyphs/woff/47413c16.woff new file mode 100644 index 0000000..4a73943 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/47413c16.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/478bc2f3.woff b/cmd/web/static/fonts/glyphs/woff/478bc2f3.woff new file mode 100644 index 0000000..8ddbc16 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/478bc2f3.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/47f8aa49.woff b/cmd/web/static/fonts/glyphs/woff/47f8aa49.woff new file mode 100644 index 0000000..6ba9257 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/47f8aa49.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/496a7c2f.woff b/cmd/web/static/fonts/glyphs/woff/496a7c2f.woff new file mode 100644 index 0000000..1b08023 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/496a7c2f.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/49c0e6d5.woff b/cmd/web/static/fonts/glyphs/woff/49c0e6d5.woff new file mode 100644 index 0000000..cf7b2fa Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/49c0e6d5.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/4a1c35d5.woff b/cmd/web/static/fonts/glyphs/woff/4a1c35d5.woff new file mode 100644 index 0000000..7aed3b4 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/4a1c35d5.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/4a1c4041.woff b/cmd/web/static/fonts/glyphs/woff/4a1c4041.woff new file mode 100644 index 0000000..e1b7058 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/4a1c4041.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/4a280971.woff b/cmd/web/static/fonts/glyphs/woff/4a280971.woff new file mode 100644 index 0000000..385d9b0 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/4a280971.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/4a40a88a.woff b/cmd/web/static/fonts/glyphs/woff/4a40a88a.woff new file mode 100644 index 0000000..40ffba0 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/4a40a88a.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/4a54867e.woff b/cmd/web/static/fonts/glyphs/woff/4a54867e.woff new file mode 100644 index 0000000..8d5e5cd Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/4a54867e.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/4a7c46ed.woff b/cmd/web/static/fonts/glyphs/woff/4a7c46ed.woff new file mode 100644 index 0000000..6055b9b Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/4a7c46ed.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/4a849376.woff b/cmd/web/static/fonts/glyphs/woff/4a849376.woff new file mode 100644 index 0000000..8d8f563 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/4a849376.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/4ae1ce28.woff b/cmd/web/static/fonts/glyphs/woff/4ae1ce28.woff new file mode 100644 index 0000000..7fd74a8 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/4ae1ce28.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/4af4ef28.woff b/cmd/web/static/fonts/glyphs/woff/4af4ef28.woff new file mode 100644 index 0000000..71e19a0 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/4af4ef28.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/4b099001.woff b/cmd/web/static/fonts/glyphs/woff/4b099001.woff new file mode 100644 index 0000000..7c1710c Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/4b099001.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/4d040d05.woff b/cmd/web/static/fonts/glyphs/woff/4d040d05.woff new file mode 100644 index 0000000..3c93f02 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/4d040d05.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/4d59c24a.woff b/cmd/web/static/fonts/glyphs/woff/4d59c24a.woff new file mode 100644 index 0000000..f6d63d7 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/4d59c24a.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/4d6b8b33.woff b/cmd/web/static/fonts/glyphs/woff/4d6b8b33.woff new file mode 100644 index 0000000..3b6bdcf Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/4d6b8b33.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/4dc72635.woff b/cmd/web/static/fonts/glyphs/woff/4dc72635.woff new file mode 100644 index 0000000..9b0bb53 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/4dc72635.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/4e10ed5b.woff b/cmd/web/static/fonts/glyphs/woff/4e10ed5b.woff new file mode 100644 index 0000000..84adffb Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/4e10ed5b.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/4e1ac177.woff b/cmd/web/static/fonts/glyphs/woff/4e1ac177.woff new file mode 100644 index 0000000..dcbbd42 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/4e1ac177.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/4e9dce28.woff b/cmd/web/static/fonts/glyphs/woff/4e9dce28.woff new file mode 100644 index 0000000..3e290f9 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/4e9dce28.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/4eb499b8.woff b/cmd/web/static/fonts/glyphs/woff/4eb499b8.woff new file mode 100644 index 0000000..5defedf Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/4eb499b8.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/4ee23427.woff b/cmd/web/static/fonts/glyphs/woff/4ee23427.woff new file mode 100644 index 0000000..d79e5f2 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/4ee23427.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/4fd52c87.woff b/cmd/web/static/fonts/glyphs/woff/4fd52c87.woff new file mode 100644 index 0000000..f4a4ec2 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/4fd52c87.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/50b342a2.woff b/cmd/web/static/fonts/glyphs/woff/50b342a2.woff new file mode 100644 index 0000000..7cc57c3 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/50b342a2.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/50f3c095.woff b/cmd/web/static/fonts/glyphs/woff/50f3c095.woff new file mode 100644 index 0000000..f1ad874 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/50f3c095.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/511209fe.woff b/cmd/web/static/fonts/glyphs/woff/511209fe.woff new file mode 100644 index 0000000..943c8db Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/511209fe.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/516cf792.woff b/cmd/web/static/fonts/glyphs/woff/516cf792.woff new file mode 100644 index 0000000..e9ffac6 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/516cf792.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/51792712.woff b/cmd/web/static/fonts/glyphs/woff/51792712.woff new file mode 100644 index 0000000..101a417 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/51792712.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/51a7c9cb.woff b/cmd/web/static/fonts/glyphs/woff/51a7c9cb.woff new file mode 100644 index 0000000..b3089a1 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/51a7c9cb.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/51a9fa09.woff b/cmd/web/static/fonts/glyphs/woff/51a9fa09.woff new file mode 100644 index 0000000..341487b Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/51a9fa09.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/520274a8.woff b/cmd/web/static/fonts/glyphs/woff/520274a8.woff new file mode 100644 index 0000000..a7fba1e Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/520274a8.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/525958c5.woff b/cmd/web/static/fonts/glyphs/woff/525958c5.woff new file mode 100644 index 0000000..6b4b581 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/525958c5.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/52b1caf8.woff b/cmd/web/static/fonts/glyphs/woff/52b1caf8.woff new file mode 100644 index 0000000..95fcf92 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/52b1caf8.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/52d65af9.woff b/cmd/web/static/fonts/glyphs/woff/52d65af9.woff new file mode 100644 index 0000000..5450a33 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/52d65af9.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/5330b47e.woff b/cmd/web/static/fonts/glyphs/woff/5330b47e.woff new file mode 100644 index 0000000..16b5491 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/5330b47e.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/53605668.woff b/cmd/web/static/fonts/glyphs/woff/53605668.woff new file mode 100644 index 0000000..d53e198 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/53605668.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/53e7de8b.woff b/cmd/web/static/fonts/glyphs/woff/53e7de8b.woff new file mode 100644 index 0000000..7767fa8 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/53e7de8b.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/5454be1e.woff b/cmd/web/static/fonts/glyphs/woff/5454be1e.woff new file mode 100644 index 0000000..64550c7 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/5454be1e.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/54940801.woff b/cmd/web/static/fonts/glyphs/woff/54940801.woff new file mode 100644 index 0000000..81cbb9d Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/54940801.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/5496b078.woff b/cmd/web/static/fonts/glyphs/woff/5496b078.woff new file mode 100644 index 0000000..ad0b91b Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/5496b078.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/55048901.woff b/cmd/web/static/fonts/glyphs/woff/55048901.woff new file mode 100644 index 0000000..ffc11bb Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/55048901.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/55092daa.woff b/cmd/web/static/fonts/glyphs/woff/55092daa.woff new file mode 100644 index 0000000..9e97fb1 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/55092daa.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/565212e9.woff b/cmd/web/static/fonts/glyphs/woff/565212e9.woff new file mode 100644 index 0000000..5e8a773 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/565212e9.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/56521359.woff b/cmd/web/static/fonts/glyphs/woff/56521359.woff new file mode 100644 index 0000000..96d770a Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/56521359.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/56652a37.woff b/cmd/web/static/fonts/glyphs/woff/56652a37.woff new file mode 100644 index 0000000..1bdfa2a Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/56652a37.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/5685167b.woff b/cmd/web/static/fonts/glyphs/woff/5685167b.woff new file mode 100644 index 0000000..6dfe7ac Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/5685167b.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/56c47c5a.woff b/cmd/web/static/fonts/glyphs/woff/56c47c5a.woff new file mode 100644 index 0000000..a23c68d Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/56c47c5a.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/56ed6f41.woff b/cmd/web/static/fonts/glyphs/woff/56ed6f41.woff new file mode 100644 index 0000000..3feecdc Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/56ed6f41.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/576582f8.woff b/cmd/web/static/fonts/glyphs/woff/576582f8.woff new file mode 100644 index 0000000..703f79b Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/576582f8.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/578f348a.woff b/cmd/web/static/fonts/glyphs/woff/578f348a.woff new file mode 100644 index 0000000..db97e08 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/578f348a.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/5798f31f.woff b/cmd/web/static/fonts/glyphs/woff/5798f31f.woff new file mode 100644 index 0000000..aa81c0a Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/5798f31f.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/57c37525.woff b/cmd/web/static/fonts/glyphs/woff/57c37525.woff new file mode 100644 index 0000000..1f807f9 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/57c37525.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/57dd141e.woff b/cmd/web/static/fonts/glyphs/woff/57dd141e.woff new file mode 100644 index 0000000..89d3158 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/57dd141e.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/57eb30ea.woff b/cmd/web/static/fonts/glyphs/woff/57eb30ea.woff new file mode 100644 index 0000000..66af43a Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/57eb30ea.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/580961bd.woff b/cmd/web/static/fonts/glyphs/woff/580961bd.woff new file mode 100644 index 0000000..7f41b18 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/580961bd.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/58c58e95.woff b/cmd/web/static/fonts/glyphs/woff/58c58e95.woff new file mode 100644 index 0000000..23b2066 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/58c58e95.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/5922a1ce.woff b/cmd/web/static/fonts/glyphs/woff/5922a1ce.woff new file mode 100644 index 0000000..436ee8e Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/5922a1ce.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/59835a05.woff b/cmd/web/static/fonts/glyphs/woff/59835a05.woff new file mode 100644 index 0000000..9656d48 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/59835a05.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/59d1acbe.woff b/cmd/web/static/fonts/glyphs/woff/59d1acbe.woff new file mode 100644 index 0000000..eda463b Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/59d1acbe.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/5b5bda30.woff b/cmd/web/static/fonts/glyphs/woff/5b5bda30.woff new file mode 100644 index 0000000..4409d78 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/5b5bda30.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/5b78e2cb.woff b/cmd/web/static/fonts/glyphs/woff/5b78e2cb.woff new file mode 100644 index 0000000..97bd1b7 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/5b78e2cb.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/5ba710db.woff b/cmd/web/static/fonts/glyphs/woff/5ba710db.woff new file mode 100644 index 0000000..9fdd337 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/5ba710db.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/5bdeb600.woff b/cmd/web/static/fonts/glyphs/woff/5bdeb600.woff new file mode 100644 index 0000000..9911072 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/5bdeb600.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/5d77f6cd.woff b/cmd/web/static/fonts/glyphs/woff/5d77f6cd.woff new file mode 100644 index 0000000..19a7260 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/5d77f6cd.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/5d9d090a.woff b/cmd/web/static/fonts/glyphs/woff/5d9d090a.woff new file mode 100644 index 0000000..f17e337 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/5d9d090a.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/5e0938cb.woff b/cmd/web/static/fonts/glyphs/woff/5e0938cb.woff new file mode 100644 index 0000000..dcd1057 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/5e0938cb.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/5f1cfaf4.woff b/cmd/web/static/fonts/glyphs/woff/5f1cfaf4.woff new file mode 100644 index 0000000..e6e8e25 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/5f1cfaf4.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/5f3272da.woff b/cmd/web/static/fonts/glyphs/woff/5f3272da.woff new file mode 100644 index 0000000..2239cff Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/5f3272da.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/604eb358.woff b/cmd/web/static/fonts/glyphs/woff/604eb358.woff new file mode 100644 index 0000000..88588a6 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/604eb358.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/6065bb77.woff b/cmd/web/static/fonts/glyphs/woff/6065bb77.woff new file mode 100644 index 0000000..8c93e07 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/6065bb77.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/6166611f.woff b/cmd/web/static/fonts/glyphs/woff/6166611f.woff new file mode 100644 index 0000000..c88e582 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/6166611f.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/616d19f1.woff b/cmd/web/static/fonts/glyphs/woff/616d19f1.woff new file mode 100644 index 0000000..0a9d5e8 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/616d19f1.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/61965d02.woff b/cmd/web/static/fonts/glyphs/woff/61965d02.woff new file mode 100644 index 0000000..0b4d0f5 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/61965d02.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/619e1843.woff b/cmd/web/static/fonts/glyphs/woff/619e1843.woff new file mode 100644 index 0000000..32d19fc Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/619e1843.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/61b21f65.woff b/cmd/web/static/fonts/glyphs/woff/61b21f65.woff new file mode 100644 index 0000000..990ada5 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/61b21f65.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/61c4be74.woff b/cmd/web/static/fonts/glyphs/woff/61c4be74.woff new file mode 100644 index 0000000..0ed91eb Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/61c4be74.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/61d34932.woff b/cmd/web/static/fonts/glyphs/woff/61d34932.woff new file mode 100644 index 0000000..9a54e38 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/61d34932.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/61e075b5.woff b/cmd/web/static/fonts/glyphs/woff/61e075b5.woff new file mode 100644 index 0000000..c7d8090 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/61e075b5.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/61e4ec60.woff b/cmd/web/static/fonts/glyphs/woff/61e4ec60.woff new file mode 100644 index 0000000..636fbc4 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/61e4ec60.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/61fed715.woff b/cmd/web/static/fonts/glyphs/woff/61fed715.woff new file mode 100644 index 0000000..29aa623 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/61fed715.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/6282768c.woff b/cmd/web/static/fonts/glyphs/woff/6282768c.woff new file mode 100644 index 0000000..5d2c020 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/6282768c.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/6302510b.woff b/cmd/web/static/fonts/glyphs/woff/6302510b.woff new file mode 100644 index 0000000..2e7884b Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/6302510b.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/6338d88d.woff b/cmd/web/static/fonts/glyphs/woff/6338d88d.woff new file mode 100644 index 0000000..582428c Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/6338d88d.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/6353dd1b.woff b/cmd/web/static/fonts/glyphs/woff/6353dd1b.woff new file mode 100644 index 0000000..32d0add Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/6353dd1b.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/63d16b50.woff b/cmd/web/static/fonts/glyphs/woff/63d16b50.woff new file mode 100644 index 0000000..807f35e Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/63d16b50.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/6435b8b4.woff b/cmd/web/static/fonts/glyphs/woff/6435b8b4.woff new file mode 100644 index 0000000..adcc709 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/6435b8b4.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/64bbaa0b.woff b/cmd/web/static/fonts/glyphs/woff/64bbaa0b.woff new file mode 100644 index 0000000..5c23fb3 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/64bbaa0b.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/6587b420.woff b/cmd/web/static/fonts/glyphs/woff/6587b420.woff new file mode 100644 index 0000000..5a2b4c3 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/6587b420.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/65bc5b9b.woff b/cmd/web/static/fonts/glyphs/woff/65bc5b9b.woff new file mode 100644 index 0000000..86cace3 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/65bc5b9b.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/65ed8428.woff b/cmd/web/static/fonts/glyphs/woff/65ed8428.woff new file mode 100644 index 0000000..aed8236 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/65ed8428.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/667938fd.woff b/cmd/web/static/fonts/glyphs/woff/667938fd.woff new file mode 100644 index 0000000..64e5e53 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/667938fd.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/6690e503.woff b/cmd/web/static/fonts/glyphs/woff/6690e503.woff new file mode 100644 index 0000000..a128ee0 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/6690e503.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/66a94b72.woff b/cmd/web/static/fonts/glyphs/woff/66a94b72.woff new file mode 100644 index 0000000..a228c09 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/66a94b72.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/66ef61bc.woff b/cmd/web/static/fonts/glyphs/woff/66ef61bc.woff new file mode 100644 index 0000000..5cee521 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/66ef61bc.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/67036539.woff b/cmd/web/static/fonts/glyphs/woff/67036539.woff new file mode 100644 index 0000000..81f7c84 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/67036539.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/6748e774.woff b/cmd/web/static/fonts/glyphs/woff/6748e774.woff new file mode 100644 index 0000000..b460152 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/6748e774.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/676821e3.woff b/cmd/web/static/fonts/glyphs/woff/676821e3.woff new file mode 100644 index 0000000..66969be Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/676821e3.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/6795017c.woff b/cmd/web/static/fonts/glyphs/woff/6795017c.woff new file mode 100644 index 0000000..ffa7b5c Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/6795017c.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/67fdb825.woff b/cmd/web/static/fonts/glyphs/woff/67fdb825.woff new file mode 100644 index 0000000..c396d97 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/67fdb825.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/68243e39.woff b/cmd/web/static/fonts/glyphs/woff/68243e39.woff new file mode 100644 index 0000000..c560e1f Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/68243e39.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/6895132f.woff b/cmd/web/static/fonts/glyphs/woff/6895132f.woff new file mode 100644 index 0000000..9e20adc Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/6895132f.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/68a429e1.woff b/cmd/web/static/fonts/glyphs/woff/68a429e1.woff new file mode 100644 index 0000000..27fde73 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/68a429e1.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/68db64d0.woff b/cmd/web/static/fonts/glyphs/woff/68db64d0.woff new file mode 100644 index 0000000..12a00f9 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/68db64d0.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/692990c2.woff b/cmd/web/static/fonts/glyphs/woff/692990c2.woff new file mode 100644 index 0000000..308b0a5 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/692990c2.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/6961fbe3.woff b/cmd/web/static/fonts/glyphs/woff/6961fbe3.woff new file mode 100644 index 0000000..b8e7f6a Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/6961fbe3.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/6994c18b.woff b/cmd/web/static/fonts/glyphs/woff/6994c18b.woff new file mode 100644 index 0000000..96977cb Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/6994c18b.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/69dbef10.woff b/cmd/web/static/fonts/glyphs/woff/69dbef10.woff new file mode 100644 index 0000000..6020c7e Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/69dbef10.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/6a4f89c1.woff b/cmd/web/static/fonts/glyphs/woff/6a4f89c1.woff new file mode 100644 index 0000000..d1d4b74 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/6a4f89c1.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/6a54a1a9.woff b/cmd/web/static/fonts/glyphs/woff/6a54a1a9.woff new file mode 100644 index 0000000..8313938 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/6a54a1a9.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/6a5cf79e.woff b/cmd/web/static/fonts/glyphs/woff/6a5cf79e.woff new file mode 100644 index 0000000..d359e33 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/6a5cf79e.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/6a836616.woff b/cmd/web/static/fonts/glyphs/woff/6a836616.woff new file mode 100644 index 0000000..f0de239 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/6a836616.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/6aa52642.woff b/cmd/web/static/fonts/glyphs/woff/6aa52642.woff new file mode 100644 index 0000000..d61aa14 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/6aa52642.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/6b36c863.woff b/cmd/web/static/fonts/glyphs/woff/6b36c863.woff new file mode 100644 index 0000000..5ae44d2 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/6b36c863.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/6bb79e9f.woff b/cmd/web/static/fonts/glyphs/woff/6bb79e9f.woff new file mode 100644 index 0000000..c9d0e52 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/6bb79e9f.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/6c1508be.woff b/cmd/web/static/fonts/glyphs/woff/6c1508be.woff new file mode 100644 index 0000000..b5ca5d5 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/6c1508be.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/6c187b99.woff b/cmd/web/static/fonts/glyphs/woff/6c187b99.woff new file mode 100644 index 0000000..828ee75 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/6c187b99.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/6cf59e55.woff b/cmd/web/static/fonts/glyphs/woff/6cf59e55.woff new file mode 100644 index 0000000..9e80c60 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/6cf59e55.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/6cf5db04.woff b/cmd/web/static/fonts/glyphs/woff/6cf5db04.woff new file mode 100644 index 0000000..6eb9023 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/6cf5db04.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/6d4a4c73.woff b/cmd/web/static/fonts/glyphs/woff/6d4a4c73.woff new file mode 100644 index 0000000..4f567c1 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/6d4a4c73.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/6da3182a.woff b/cmd/web/static/fonts/glyphs/woff/6da3182a.woff new file mode 100644 index 0000000..0073234 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/6da3182a.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/6db9cbfa.woff b/cmd/web/static/fonts/glyphs/woff/6db9cbfa.woff new file mode 100644 index 0000000..038e104 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/6db9cbfa.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/6dd1f0c3.woff b/cmd/web/static/fonts/glyphs/woff/6dd1f0c3.woff new file mode 100644 index 0000000..6dca226 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/6dd1f0c3.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/6e131b1a.woff b/cmd/web/static/fonts/glyphs/woff/6e131b1a.woff new file mode 100644 index 0000000..f910105 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/6e131b1a.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/6e3568e1.woff b/cmd/web/static/fonts/glyphs/woff/6e3568e1.woff new file mode 100644 index 0000000..5adec51 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/6e3568e1.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/6e8af6a3.woff b/cmd/web/static/fonts/glyphs/woff/6e8af6a3.woff new file mode 100644 index 0000000..0ecaefd Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/6e8af6a3.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/6ec735fe.woff b/cmd/web/static/fonts/glyphs/woff/6ec735fe.woff new file mode 100644 index 0000000..2262088 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/6ec735fe.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/6ff07dde.woff b/cmd/web/static/fonts/glyphs/woff/6ff07dde.woff new file mode 100644 index 0000000..38c69b9 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/6ff07dde.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/700a244d.woff b/cmd/web/static/fonts/glyphs/woff/700a244d.woff new file mode 100644 index 0000000..f871832 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/700a244d.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/700b8efe.woff b/cmd/web/static/fonts/glyphs/woff/700b8efe.woff new file mode 100644 index 0000000..01c26b1 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/700b8efe.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/70159625.woff b/cmd/web/static/fonts/glyphs/woff/70159625.woff new file mode 100644 index 0000000..9f4596a Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/70159625.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/703d038d.woff b/cmd/web/static/fonts/glyphs/woff/703d038d.woff new file mode 100644 index 0000000..00106ef Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/703d038d.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/70a458c9.woff b/cmd/web/static/fonts/glyphs/woff/70a458c9.woff new file mode 100644 index 0000000..b77bf11 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/70a458c9.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/70ce9c46.woff b/cmd/web/static/fonts/glyphs/woff/70ce9c46.woff new file mode 100644 index 0000000..738e38b Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/70ce9c46.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/70d68f2f.woff b/cmd/web/static/fonts/glyphs/woff/70d68f2f.woff new file mode 100644 index 0000000..a32472c Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/70d68f2f.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/7188a9c1.woff b/cmd/web/static/fonts/glyphs/woff/7188a9c1.woff new file mode 100644 index 0000000..59a155f Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/7188a9c1.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/72213980.woff b/cmd/web/static/fonts/glyphs/woff/72213980.woff new file mode 100644 index 0000000..923d6d8 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/72213980.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/7257f8e5.woff b/cmd/web/static/fonts/glyphs/woff/7257f8e5.woff new file mode 100644 index 0000000..362078e Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/7257f8e5.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/72751892.woff b/cmd/web/static/fonts/glyphs/woff/72751892.woff new file mode 100644 index 0000000..cc6c902 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/72751892.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/72bccb9e.woff b/cmd/web/static/fonts/glyphs/woff/72bccb9e.woff new file mode 100644 index 0000000..e0a8e71 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/72bccb9e.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/73337a66.woff b/cmd/web/static/fonts/glyphs/woff/73337a66.woff new file mode 100644 index 0000000..1c486a1 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/73337a66.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/73363ff7.woff b/cmd/web/static/fonts/glyphs/woff/73363ff7.woff new file mode 100644 index 0000000..fa32189 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/73363ff7.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/7345156e.woff b/cmd/web/static/fonts/glyphs/woff/7345156e.woff new file mode 100644 index 0000000..b1133f2 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/7345156e.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/734be349.woff b/cmd/web/static/fonts/glyphs/woff/734be349.woff new file mode 100644 index 0000000..04d740d Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/734be349.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/73db31ed.woff b/cmd/web/static/fonts/glyphs/woff/73db31ed.woff new file mode 100644 index 0000000..0589986 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/73db31ed.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/74da00d4.woff b/cmd/web/static/fonts/glyphs/woff/74da00d4.woff new file mode 100644 index 0000000..6b3d14d Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/74da00d4.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/74da7207.woff b/cmd/web/static/fonts/glyphs/woff/74da7207.woff new file mode 100644 index 0000000..8d8774d Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/74da7207.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/74dc98f9.woff b/cmd/web/static/fonts/glyphs/woff/74dc98f9.woff new file mode 100644 index 0000000..2842509 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/74dc98f9.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/75058b72.woff b/cmd/web/static/fonts/glyphs/woff/75058b72.woff new file mode 100644 index 0000000..eff21a1 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/75058b72.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/75577460.woff b/cmd/web/static/fonts/glyphs/woff/75577460.woff new file mode 100644 index 0000000..ee855b5 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/75577460.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/7651ec5d.woff b/cmd/web/static/fonts/glyphs/woff/7651ec5d.woff new file mode 100644 index 0000000..cab2a55 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/7651ec5d.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/766bbd91.woff b/cmd/web/static/fonts/glyphs/woff/766bbd91.woff new file mode 100644 index 0000000..f01d035 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/766bbd91.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/7692acf2.woff b/cmd/web/static/fonts/glyphs/woff/7692acf2.woff new file mode 100644 index 0000000..f8c84fb Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/7692acf2.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/7708bdcb.woff b/cmd/web/static/fonts/glyphs/woff/7708bdcb.woff new file mode 100644 index 0000000..680ceee Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/7708bdcb.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/77d98a34.woff b/cmd/web/static/fonts/glyphs/woff/77d98a34.woff new file mode 100644 index 0000000..57655d3 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/77d98a34.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/781792ac.woff b/cmd/web/static/fonts/glyphs/woff/781792ac.woff new file mode 100644 index 0000000..f825040 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/781792ac.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/7824402e.woff b/cmd/web/static/fonts/glyphs/woff/7824402e.woff new file mode 100644 index 0000000..3c07fa8 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/7824402e.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/782774ed.woff b/cmd/web/static/fonts/glyphs/woff/782774ed.woff new file mode 100644 index 0000000..3ba7f93 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/782774ed.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/7845e476.woff b/cmd/web/static/fonts/glyphs/woff/7845e476.woff new file mode 100644 index 0000000..d17087c Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/7845e476.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/78600846.woff b/cmd/web/static/fonts/glyphs/woff/78600846.woff new file mode 100644 index 0000000..39dc9e8 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/78600846.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/78f17a21.woff b/cmd/web/static/fonts/glyphs/woff/78f17a21.woff new file mode 100644 index 0000000..3a88605 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/78f17a21.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/7909aeb7.woff b/cmd/web/static/fonts/glyphs/woff/7909aeb7.woff new file mode 100644 index 0000000..8a02519 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/7909aeb7.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/793b5687.woff b/cmd/web/static/fonts/glyphs/woff/793b5687.woff new file mode 100644 index 0000000..c5118cb Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/793b5687.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/79fefc18.woff b/cmd/web/static/fonts/glyphs/woff/79fefc18.woff new file mode 100644 index 0000000..00116bd Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/79fefc18.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/7add0458.woff b/cmd/web/static/fonts/glyphs/woff/7add0458.woff new file mode 100644 index 0000000..876ea3c Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/7add0458.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/7b978459.woff b/cmd/web/static/fonts/glyphs/woff/7b978459.woff new file mode 100644 index 0000000..0503add Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/7b978459.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/7bd1e500.woff b/cmd/web/static/fonts/glyphs/woff/7bd1e500.woff new file mode 100644 index 0000000..a91ae1d Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/7bd1e500.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/7c28d0b9.woff b/cmd/web/static/fonts/glyphs/woff/7c28d0b9.woff new file mode 100644 index 0000000..41fe348 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/7c28d0b9.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/7c37a4d6.woff b/cmd/web/static/fonts/glyphs/woff/7c37a4d6.woff new file mode 100644 index 0000000..3129fec Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/7c37a4d6.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/7c77a98a.woff b/cmd/web/static/fonts/glyphs/woff/7c77a98a.woff new file mode 100644 index 0000000..f92cd3d Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/7c77a98a.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/7ca46b25.woff b/cmd/web/static/fonts/glyphs/woff/7ca46b25.woff new file mode 100644 index 0000000..e0a9be2 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/7ca46b25.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/7d67a50f.woff b/cmd/web/static/fonts/glyphs/woff/7d67a50f.woff new file mode 100644 index 0000000..5965a2b Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/7d67a50f.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/7d68324f.woff b/cmd/web/static/fonts/glyphs/woff/7d68324f.woff new file mode 100644 index 0000000..ec471c8 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/7d68324f.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/7d8ef620.woff b/cmd/web/static/fonts/glyphs/woff/7d8ef620.woff new file mode 100644 index 0000000..e7dc07e Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/7d8ef620.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/7dd88093.woff b/cmd/web/static/fonts/glyphs/woff/7dd88093.woff new file mode 100644 index 0000000..1fdfcf2 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/7dd88093.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/7e2c66dd.woff b/cmd/web/static/fonts/glyphs/woff/7e2c66dd.woff new file mode 100644 index 0000000..a5d4919 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/7e2c66dd.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/7e86b04d.woff b/cmd/web/static/fonts/glyphs/woff/7e86b04d.woff new file mode 100644 index 0000000..75de908 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/7e86b04d.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/7ee937ee.woff b/cmd/web/static/fonts/glyphs/woff/7ee937ee.woff new file mode 100644 index 0000000..36c9d2b Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/7ee937ee.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/7f3c219c.woff b/cmd/web/static/fonts/glyphs/woff/7f3c219c.woff new file mode 100644 index 0000000..3a4d09f Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/7f3c219c.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/7f4ff157.woff b/cmd/web/static/fonts/glyphs/woff/7f4ff157.woff new file mode 100644 index 0000000..3948c6b Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/7f4ff157.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/7faba1e2.woff b/cmd/web/static/fonts/glyphs/woff/7faba1e2.woff new file mode 100644 index 0000000..b95a922 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/7faba1e2.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/7fc2dce7.woff b/cmd/web/static/fonts/glyphs/woff/7fc2dce7.woff new file mode 100644 index 0000000..5a68cb1 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/7fc2dce7.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/80160b96.woff b/cmd/web/static/fonts/glyphs/woff/80160b96.woff new file mode 100644 index 0000000..2b74b9a Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/80160b96.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/8021a1fc.woff b/cmd/web/static/fonts/glyphs/woff/8021a1fc.woff new file mode 100644 index 0000000..36cc912 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/8021a1fc.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/80629e16.woff b/cmd/web/static/fonts/glyphs/woff/80629e16.woff new file mode 100644 index 0000000..f18adcc Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/80629e16.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/808ad3a7.woff b/cmd/web/static/fonts/glyphs/woff/808ad3a7.woff new file mode 100644 index 0000000..8488d86 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/808ad3a7.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/8179876c.woff b/cmd/web/static/fonts/glyphs/woff/8179876c.woff new file mode 100644 index 0000000..85511c9 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/8179876c.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/817d2a0a.woff b/cmd/web/static/fonts/glyphs/woff/817d2a0a.woff new file mode 100644 index 0000000..c03f1c2 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/817d2a0a.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/81c6c9c0.woff b/cmd/web/static/fonts/glyphs/woff/81c6c9c0.woff new file mode 100644 index 0000000..58a1246 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/81c6c9c0.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/81e03745.woff b/cmd/web/static/fonts/glyphs/woff/81e03745.woff new file mode 100644 index 0000000..81a12e2 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/81e03745.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/8216b752.woff b/cmd/web/static/fonts/glyphs/woff/8216b752.woff new file mode 100644 index 0000000..6ae72f2 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/8216b752.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/825014e6.woff b/cmd/web/static/fonts/glyphs/woff/825014e6.woff new file mode 100644 index 0000000..eb74e19 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/825014e6.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/836758e3.woff b/cmd/web/static/fonts/glyphs/woff/836758e3.woff new file mode 100644 index 0000000..7e0e4ae Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/836758e3.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/8377e39a.woff b/cmd/web/static/fonts/glyphs/woff/8377e39a.woff new file mode 100644 index 0000000..9ab292a Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/8377e39a.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/839981ee.woff b/cmd/web/static/fonts/glyphs/woff/839981ee.woff new file mode 100644 index 0000000..614de22 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/839981ee.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/83bd70cd.woff b/cmd/web/static/fonts/glyphs/woff/83bd70cd.woff new file mode 100644 index 0000000..2ea128b Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/83bd70cd.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/83f03b1d.woff b/cmd/web/static/fonts/glyphs/woff/83f03b1d.woff new file mode 100644 index 0000000..7c99ffe Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/83f03b1d.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/840f090f.woff b/cmd/web/static/fonts/glyphs/woff/840f090f.woff new file mode 100644 index 0000000..3926a53 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/840f090f.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/842ec06d.woff b/cmd/web/static/fonts/glyphs/woff/842ec06d.woff new file mode 100644 index 0000000..d295da4 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/842ec06d.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/84aca33c.woff b/cmd/web/static/fonts/glyphs/woff/84aca33c.woff new file mode 100644 index 0000000..1023bdf Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/84aca33c.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/854811f2.woff b/cmd/web/static/fonts/glyphs/woff/854811f2.woff new file mode 100644 index 0000000..023cf97 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/854811f2.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/85a57a2a.woff b/cmd/web/static/fonts/glyphs/woff/85a57a2a.woff new file mode 100644 index 0000000..2ec21c3 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/85a57a2a.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/85b9ab95.woff b/cmd/web/static/fonts/glyphs/woff/85b9ab95.woff new file mode 100644 index 0000000..87bf2c7 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/85b9ab95.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/860a7588.woff b/cmd/web/static/fonts/glyphs/woff/860a7588.woff new file mode 100644 index 0000000..bdc49ab Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/860a7588.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/862543ec.woff b/cmd/web/static/fonts/glyphs/woff/862543ec.woff new file mode 100644 index 0000000..2ffac6b Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/862543ec.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/8625f0eb.woff b/cmd/web/static/fonts/glyphs/woff/8625f0eb.woff new file mode 100644 index 0000000..81f0e93 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/8625f0eb.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/86d4d2fb.woff b/cmd/web/static/fonts/glyphs/woff/86d4d2fb.woff new file mode 100644 index 0000000..85c2efa Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/86d4d2fb.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/86e445ff.woff b/cmd/web/static/fonts/glyphs/woff/86e445ff.woff new file mode 100644 index 0000000..3b2060c Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/86e445ff.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/871f2951.woff b/cmd/web/static/fonts/glyphs/woff/871f2951.woff new file mode 100644 index 0000000..85fc0c3 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/871f2951.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/87626b68.woff b/cmd/web/static/fonts/glyphs/woff/87626b68.woff new file mode 100644 index 0000000..7888513 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/87626b68.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/8796b453.woff b/cmd/web/static/fonts/glyphs/woff/8796b453.woff new file mode 100644 index 0000000..06b5f6a Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/8796b453.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/87dda7cc.woff b/cmd/web/static/fonts/glyphs/woff/87dda7cc.woff new file mode 100644 index 0000000..3807947 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/87dda7cc.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/882182c1.woff b/cmd/web/static/fonts/glyphs/woff/882182c1.woff new file mode 100644 index 0000000..a96215a Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/882182c1.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/8827eb24.woff b/cmd/web/static/fonts/glyphs/woff/8827eb24.woff new file mode 100644 index 0000000..e6f10e1 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/8827eb24.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/888412e6.woff b/cmd/web/static/fonts/glyphs/woff/888412e6.woff new file mode 100644 index 0000000..2fb42ab Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/888412e6.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/894bfc80.woff b/cmd/web/static/fonts/glyphs/woff/894bfc80.woff new file mode 100644 index 0000000..ee9c42f Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/894bfc80.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/896bcc00.woff b/cmd/web/static/fonts/glyphs/woff/896bcc00.woff new file mode 100644 index 0000000..1398479 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/896bcc00.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/899e83fa.woff b/cmd/web/static/fonts/glyphs/woff/899e83fa.woff new file mode 100644 index 0000000..37bee93 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/899e83fa.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/89eb94d2.woff b/cmd/web/static/fonts/glyphs/woff/89eb94d2.woff new file mode 100644 index 0000000..9ff9dd3 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/89eb94d2.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/8a52dabb.woff b/cmd/web/static/fonts/glyphs/woff/8a52dabb.woff new file mode 100644 index 0000000..5678f3c Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/8a52dabb.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/8aa66ff2.woff b/cmd/web/static/fonts/glyphs/woff/8aa66ff2.woff new file mode 100644 index 0000000..da6a054 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/8aa66ff2.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/8aacdf16.woff b/cmd/web/static/fonts/glyphs/woff/8aacdf16.woff new file mode 100644 index 0000000..8584dfd Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/8aacdf16.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/8b45a38b.woff b/cmd/web/static/fonts/glyphs/woff/8b45a38b.woff new file mode 100644 index 0000000..ee785a1 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/8b45a38b.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/8b604615.woff b/cmd/web/static/fonts/glyphs/woff/8b604615.woff new file mode 100644 index 0000000..20214cf Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/8b604615.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/8ba1a228.woff b/cmd/web/static/fonts/glyphs/woff/8ba1a228.woff new file mode 100644 index 0000000..f97b64b Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/8ba1a228.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/8beb9dac.woff b/cmd/web/static/fonts/glyphs/woff/8beb9dac.woff new file mode 100644 index 0000000..a838d7b Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/8beb9dac.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/8befb6ca.woff b/cmd/web/static/fonts/glyphs/woff/8befb6ca.woff new file mode 100644 index 0000000..fb485ea Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/8befb6ca.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/8c60c66a.woff b/cmd/web/static/fonts/glyphs/woff/8c60c66a.woff new file mode 100644 index 0000000..6038723 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/8c60c66a.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/8c610c58.woff b/cmd/web/static/fonts/glyphs/woff/8c610c58.woff new file mode 100644 index 0000000..a10e413 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/8c610c58.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/8c7e5269.woff b/cmd/web/static/fonts/glyphs/woff/8c7e5269.woff new file mode 100644 index 0000000..65decf5 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/8c7e5269.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/8cd085fd.woff b/cmd/web/static/fonts/glyphs/woff/8cd085fd.woff new file mode 100644 index 0000000..31a2714 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/8cd085fd.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/8d40bc1f.woff b/cmd/web/static/fonts/glyphs/woff/8d40bc1f.woff new file mode 100644 index 0000000..11aad0b Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/8d40bc1f.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/8d4d7cd2.woff b/cmd/web/static/fonts/glyphs/woff/8d4d7cd2.woff new file mode 100644 index 0000000..da55e91 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/8d4d7cd2.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/8f3601cc.woff b/cmd/web/static/fonts/glyphs/woff/8f3601cc.woff new file mode 100644 index 0000000..e9e521e Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/8f3601cc.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/8f9646bf.woff b/cmd/web/static/fonts/glyphs/woff/8f9646bf.woff new file mode 100644 index 0000000..84bd52c Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/8f9646bf.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/900affc9.woff b/cmd/web/static/fonts/glyphs/woff/900affc9.woff new file mode 100644 index 0000000..e73e56a Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/900affc9.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/9046047a.woff b/cmd/web/static/fonts/glyphs/woff/9046047a.woff new file mode 100644 index 0000000..92cd433 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/9046047a.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/907dea52.woff b/cmd/web/static/fonts/glyphs/woff/907dea52.woff new file mode 100644 index 0000000..9d1b0b3 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/907dea52.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/91c7605d.woff b/cmd/web/static/fonts/glyphs/woff/91c7605d.woff new file mode 100644 index 0000000..d621080 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/91c7605d.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/91d96ddb.woff b/cmd/web/static/fonts/glyphs/woff/91d96ddb.woff new file mode 100644 index 0000000..c78eba4 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/91d96ddb.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/91e6882a.woff b/cmd/web/static/fonts/glyphs/woff/91e6882a.woff new file mode 100644 index 0000000..9f1acd5 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/91e6882a.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/928b86d7.woff b/cmd/web/static/fonts/glyphs/woff/928b86d7.woff new file mode 100644 index 0000000..bf3cb06 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/928b86d7.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/92b634cd.woff b/cmd/web/static/fonts/glyphs/woff/92b634cd.woff new file mode 100644 index 0000000..2a8c54a Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/92b634cd.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/935170dd.woff b/cmd/web/static/fonts/glyphs/woff/935170dd.woff new file mode 100644 index 0000000..88aaadf Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/935170dd.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/9352bab8.woff b/cmd/web/static/fonts/glyphs/woff/9352bab8.woff new file mode 100644 index 0000000..6d5250c Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/9352bab8.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/9375b000.woff b/cmd/web/static/fonts/glyphs/woff/9375b000.woff new file mode 100644 index 0000000..358d550 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/9375b000.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/9393e70c.woff b/cmd/web/static/fonts/glyphs/woff/9393e70c.woff new file mode 100644 index 0000000..ee85b10 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/9393e70c.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/93b56efb.woff b/cmd/web/static/fonts/glyphs/woff/93b56efb.woff new file mode 100644 index 0000000..ff25fc6 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/93b56efb.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/944650cf.woff b/cmd/web/static/fonts/glyphs/woff/944650cf.woff new file mode 100644 index 0000000..98106f6 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/944650cf.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/94531f1b.woff b/cmd/web/static/fonts/glyphs/woff/94531f1b.woff new file mode 100644 index 0000000..c052b46 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/94531f1b.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/948b9f9b.woff b/cmd/web/static/fonts/glyphs/woff/948b9f9b.woff new file mode 100644 index 0000000..8446792 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/948b9f9b.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/94bb9a0a.woff b/cmd/web/static/fonts/glyphs/woff/94bb9a0a.woff new file mode 100644 index 0000000..ce792ff Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/94bb9a0a.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/94c87c19.woff b/cmd/web/static/fonts/glyphs/woff/94c87c19.woff new file mode 100644 index 0000000..e1de4fb Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/94c87c19.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/94ee3537.woff b/cmd/web/static/fonts/glyphs/woff/94ee3537.woff new file mode 100644 index 0000000..9150f77 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/94ee3537.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/95114a7a.woff b/cmd/web/static/fonts/glyphs/woff/95114a7a.woff new file mode 100644 index 0000000..30f2769 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/95114a7a.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/9518b144.woff b/cmd/web/static/fonts/glyphs/woff/9518b144.woff new file mode 100644 index 0000000..51210b4 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/9518b144.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/9554c428.woff b/cmd/web/static/fonts/glyphs/woff/9554c428.woff new file mode 100644 index 0000000..131c352 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/9554c428.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/957ea602.woff b/cmd/web/static/fonts/glyphs/woff/957ea602.woff new file mode 100644 index 0000000..758ac90 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/957ea602.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/95ce85b0.woff b/cmd/web/static/fonts/glyphs/woff/95ce85b0.woff new file mode 100644 index 0000000..a8e5355 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/95ce85b0.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/9605447e.woff b/cmd/web/static/fonts/glyphs/woff/9605447e.woff new file mode 100644 index 0000000..68ad3ee Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/9605447e.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/971dbc94.woff b/cmd/web/static/fonts/glyphs/woff/971dbc94.woff new file mode 100644 index 0000000..65d8803 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/971dbc94.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/9730509c.woff b/cmd/web/static/fonts/glyphs/woff/9730509c.woff new file mode 100644 index 0000000..29b29e0 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/9730509c.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/97b82bce.woff b/cmd/web/static/fonts/glyphs/woff/97b82bce.woff new file mode 100644 index 0000000..c9ac8d6 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/97b82bce.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/97ba67f1.woff b/cmd/web/static/fonts/glyphs/woff/97ba67f1.woff new file mode 100644 index 0000000..6c277d1 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/97ba67f1.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/97e6e2a1.woff b/cmd/web/static/fonts/glyphs/woff/97e6e2a1.woff new file mode 100644 index 0000000..d363a1d Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/97e6e2a1.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/98117c28.woff b/cmd/web/static/fonts/glyphs/woff/98117c28.woff new file mode 100644 index 0000000..fcdda68 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/98117c28.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/982f3edc.woff b/cmd/web/static/fonts/glyphs/woff/982f3edc.woff new file mode 100644 index 0000000..d8abdf2 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/982f3edc.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/98357202.woff b/cmd/web/static/fonts/glyphs/woff/98357202.woff new file mode 100644 index 0000000..e974cf1 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/98357202.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/9850be29.woff b/cmd/web/static/fonts/glyphs/woff/9850be29.woff new file mode 100644 index 0000000..c2beef5 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/9850be29.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/9899cecb.woff b/cmd/web/static/fonts/glyphs/woff/9899cecb.woff new file mode 100644 index 0000000..1564a1a Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/9899cecb.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/989ad0a9.woff b/cmd/web/static/fonts/glyphs/woff/989ad0a9.woff new file mode 100644 index 0000000..76188c4 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/989ad0a9.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/98a0b6a0.woff b/cmd/web/static/fonts/glyphs/woff/98a0b6a0.woff new file mode 100644 index 0000000..969fae0 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/98a0b6a0.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/993b5d5e.woff b/cmd/web/static/fonts/glyphs/woff/993b5d5e.woff new file mode 100644 index 0000000..bd513a0 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/993b5d5e.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/99a3e60b.woff b/cmd/web/static/fonts/glyphs/woff/99a3e60b.woff new file mode 100644 index 0000000..b6c082d Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/99a3e60b.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/99b23887.woff b/cmd/web/static/fonts/glyphs/woff/99b23887.woff new file mode 100644 index 0000000..8e64840 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/99b23887.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/9a7fb4ed.woff b/cmd/web/static/fonts/glyphs/woff/9a7fb4ed.woff new file mode 100644 index 0000000..0c76f4c Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/9a7fb4ed.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/9a9a307d.woff b/cmd/web/static/fonts/glyphs/woff/9a9a307d.woff new file mode 100644 index 0000000..dcaa398 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/9a9a307d.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/9b8448e1.woff b/cmd/web/static/fonts/glyphs/woff/9b8448e1.woff new file mode 100644 index 0000000..a453b31 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/9b8448e1.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/9b9375b4.woff b/cmd/web/static/fonts/glyphs/woff/9b9375b4.woff new file mode 100644 index 0000000..b250b78 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/9b9375b4.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/9bb36328.woff b/cmd/web/static/fonts/glyphs/woff/9bb36328.woff new file mode 100644 index 0000000..4c94203 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/9bb36328.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/9be136c3.woff b/cmd/web/static/fonts/glyphs/woff/9be136c3.woff new file mode 100644 index 0000000..2e45942 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/9be136c3.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/9c739b13.woff b/cmd/web/static/fonts/glyphs/woff/9c739b13.woff new file mode 100644 index 0000000..53d3644 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/9c739b13.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/9ccb9c44.woff b/cmd/web/static/fonts/glyphs/woff/9ccb9c44.woff new file mode 100644 index 0000000..316f171 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/9ccb9c44.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/9ced0dd7.woff b/cmd/web/static/fonts/glyphs/woff/9ced0dd7.woff new file mode 100644 index 0000000..1ed6716 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/9ced0dd7.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/9d1ecd98.woff b/cmd/web/static/fonts/glyphs/woff/9d1ecd98.woff new file mode 100644 index 0000000..f994ad0 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/9d1ecd98.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/9e0089cc.woff b/cmd/web/static/fonts/glyphs/woff/9e0089cc.woff new file mode 100644 index 0000000..7d0f130 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/9e0089cc.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/9e3addab.woff b/cmd/web/static/fonts/glyphs/woff/9e3addab.woff new file mode 100644 index 0000000..5161b47 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/9e3addab.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/9eb86178.woff b/cmd/web/static/fonts/glyphs/woff/9eb86178.woff new file mode 100644 index 0000000..276374a Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/9eb86178.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/9f00be36.woff b/cmd/web/static/fonts/glyphs/woff/9f00be36.woff new file mode 100644 index 0000000..1171e04 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/9f00be36.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/9f205e65.woff b/cmd/web/static/fonts/glyphs/woff/9f205e65.woff new file mode 100644 index 0000000..87ceea7 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/9f205e65.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/9f3909aa.woff b/cmd/web/static/fonts/glyphs/woff/9f3909aa.woff new file mode 100644 index 0000000..bf15851 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/9f3909aa.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/a0183c8e.woff b/cmd/web/static/fonts/glyphs/woff/a0183c8e.woff new file mode 100644 index 0000000..adb9e24 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/a0183c8e.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/a04998d6.woff b/cmd/web/static/fonts/glyphs/woff/a04998d6.woff new file mode 100644 index 0000000..8bc1ad0 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/a04998d6.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/a0a347f1.woff b/cmd/web/static/fonts/glyphs/woff/a0a347f1.woff new file mode 100644 index 0000000..1e5f1ee Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/a0a347f1.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/a0e42042.woff b/cmd/web/static/fonts/glyphs/woff/a0e42042.woff new file mode 100644 index 0000000..0c33bfc Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/a0e42042.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/a0ecbb18.woff b/cmd/web/static/fonts/glyphs/woff/a0ecbb18.woff new file mode 100644 index 0000000..8da041c Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/a0ecbb18.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/a1b08642.woff b/cmd/web/static/fonts/glyphs/woff/a1b08642.woff new file mode 100644 index 0000000..24f631c Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/a1b08642.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/a1f0f211.woff b/cmd/web/static/fonts/glyphs/woff/a1f0f211.woff new file mode 100644 index 0000000..31159c9 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/a1f0f211.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/a1fbcdf7.woff b/cmd/web/static/fonts/glyphs/woff/a1fbcdf7.woff new file mode 100644 index 0000000..9b83f53 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/a1fbcdf7.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/a22847ed.woff b/cmd/web/static/fonts/glyphs/woff/a22847ed.woff new file mode 100644 index 0000000..3d59446 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/a22847ed.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/a36d6959.woff b/cmd/web/static/fonts/glyphs/woff/a36d6959.woff new file mode 100644 index 0000000..0c87d81 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/a36d6959.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/a3805f14.woff b/cmd/web/static/fonts/glyphs/woff/a3805f14.woff new file mode 100644 index 0000000..56ac3f9 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/a3805f14.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/a45832ed.woff b/cmd/web/static/fonts/glyphs/woff/a45832ed.woff new file mode 100644 index 0000000..10038e9 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/a45832ed.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/a4900e86.woff b/cmd/web/static/fonts/glyphs/woff/a4900e86.woff new file mode 100644 index 0000000..c079a81 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/a4900e86.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/a4b9f2e5.woff b/cmd/web/static/fonts/glyphs/woff/a4b9f2e5.woff new file mode 100644 index 0000000..feafa75 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/a4b9f2e5.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/a4caee91.woff b/cmd/web/static/fonts/glyphs/woff/a4caee91.woff new file mode 100644 index 0000000..1a4684d Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/a4caee91.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/a52bb57c.woff b/cmd/web/static/fonts/glyphs/woff/a52bb57c.woff new file mode 100644 index 0000000..b06e900 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/a52bb57c.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/a54fe823.woff b/cmd/web/static/fonts/glyphs/woff/a54fe823.woff new file mode 100644 index 0000000..da41fc4 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/a54fe823.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/a564f20f.woff b/cmd/web/static/fonts/glyphs/woff/a564f20f.woff new file mode 100644 index 0000000..efcb78b Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/a564f20f.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/a5ee2945.woff b/cmd/web/static/fonts/glyphs/woff/a5ee2945.woff new file mode 100644 index 0000000..ec0edeb Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/a5ee2945.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/a6af89bd.woff b/cmd/web/static/fonts/glyphs/woff/a6af89bd.woff new file mode 100644 index 0000000..1731557 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/a6af89bd.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/a73e53ed.woff b/cmd/web/static/fonts/glyphs/woff/a73e53ed.woff new file mode 100644 index 0000000..6702b02 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/a73e53ed.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/a7644d09.woff b/cmd/web/static/fonts/glyphs/woff/a7644d09.woff new file mode 100644 index 0000000..431f5a8 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/a7644d09.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/a851f472.woff b/cmd/web/static/fonts/glyphs/woff/a851f472.woff new file mode 100644 index 0000000..bef5384 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/a851f472.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/a87ed935.woff b/cmd/web/static/fonts/glyphs/woff/a87ed935.woff new file mode 100644 index 0000000..d83598a Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/a87ed935.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/a97d857e.woff b/cmd/web/static/fonts/glyphs/woff/a97d857e.woff new file mode 100644 index 0000000..704d892 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/a97d857e.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/a9a9d798.woff b/cmd/web/static/fonts/glyphs/woff/a9a9d798.woff new file mode 100644 index 0000000..b025ca8 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/a9a9d798.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/a9daf068.woff b/cmd/web/static/fonts/glyphs/woff/a9daf068.woff new file mode 100644 index 0000000..eabefb1 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/a9daf068.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/aa0b1cf4.woff b/cmd/web/static/fonts/glyphs/woff/aa0b1cf4.woff new file mode 100644 index 0000000..c7d2fd9 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/aa0b1cf4.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/aa227416.woff b/cmd/web/static/fonts/glyphs/woff/aa227416.woff new file mode 100644 index 0000000..193b082 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/aa227416.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/aa6c0f8a.woff b/cmd/web/static/fonts/glyphs/woff/aa6c0f8a.woff new file mode 100644 index 0000000..0258a3d Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/aa6c0f8a.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/aae08744.woff b/cmd/web/static/fonts/glyphs/woff/aae08744.woff new file mode 100644 index 0000000..2e367cd Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/aae08744.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/ab5759c1.woff b/cmd/web/static/fonts/glyphs/woff/ab5759c1.woff new file mode 100644 index 0000000..af117d5 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/ab5759c1.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/ab8056ea.woff b/cmd/web/static/fonts/glyphs/woff/ab8056ea.woff new file mode 100644 index 0000000..41aa4ea Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/ab8056ea.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/ac2048ca.woff b/cmd/web/static/fonts/glyphs/woff/ac2048ca.woff new file mode 100644 index 0000000..2b1dcdc Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/ac2048ca.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/ac31ca34.woff b/cmd/web/static/fonts/glyphs/woff/ac31ca34.woff new file mode 100644 index 0000000..b7abceb Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/ac31ca34.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/ac9383e4.woff b/cmd/web/static/fonts/glyphs/woff/ac9383e4.woff new file mode 100644 index 0000000..981754b Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/ac9383e4.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/accd5a71.woff b/cmd/web/static/fonts/glyphs/woff/accd5a71.woff new file mode 100644 index 0000000..d18eeb7 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/accd5a71.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/ad2eb64b.woff b/cmd/web/static/fonts/glyphs/woff/ad2eb64b.woff new file mode 100644 index 0000000..6cd738c Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/ad2eb64b.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/ad451fc0.woff b/cmd/web/static/fonts/glyphs/woff/ad451fc0.woff new file mode 100644 index 0000000..55288ab Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/ad451fc0.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/ad5bcd8d.woff b/cmd/web/static/fonts/glyphs/woff/ad5bcd8d.woff new file mode 100644 index 0000000..e8aa9f8 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/ad5bcd8d.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/ad6d5849.woff b/cmd/web/static/fonts/glyphs/woff/ad6d5849.woff new file mode 100644 index 0000000..415e9bf Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/ad6d5849.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/ae3b63af.woff b/cmd/web/static/fonts/glyphs/woff/ae3b63af.woff new file mode 100644 index 0000000..2a50850 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/ae3b63af.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/ae453c2f.woff b/cmd/web/static/fonts/glyphs/woff/ae453c2f.woff new file mode 100644 index 0000000..badd68b Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/ae453c2f.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/ae943640.woff b/cmd/web/static/fonts/glyphs/woff/ae943640.woff new file mode 100644 index 0000000..5d65349 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/ae943640.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/af60aa55.woff b/cmd/web/static/fonts/glyphs/woff/af60aa55.woff new file mode 100644 index 0000000..5a3cb2f Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/af60aa55.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/af7f0a6e.woff b/cmd/web/static/fonts/glyphs/woff/af7f0a6e.woff new file mode 100644 index 0000000..2a2fff4 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/af7f0a6e.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/afb6634e.woff b/cmd/web/static/fonts/glyphs/woff/afb6634e.woff new file mode 100644 index 0000000..6698245 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/afb6634e.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/b09f469a.woff b/cmd/web/static/fonts/glyphs/woff/b09f469a.woff new file mode 100644 index 0000000..9590aee Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/b09f469a.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/b0ad53ea.woff b/cmd/web/static/fonts/glyphs/woff/b0ad53ea.woff new file mode 100644 index 0000000..01bcb49 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/b0ad53ea.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/b166a7c6.woff b/cmd/web/static/fonts/glyphs/woff/b166a7c6.woff new file mode 100644 index 0000000..59dc163 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/b166a7c6.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/b1eba251.woff b/cmd/web/static/fonts/glyphs/woff/b1eba251.woff new file mode 100644 index 0000000..9a8fa24 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/b1eba251.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/b25a5c47.woff b/cmd/web/static/fonts/glyphs/woff/b25a5c47.woff new file mode 100644 index 0000000..ad50718 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/b25a5c47.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/b295da08.woff b/cmd/web/static/fonts/glyphs/woff/b295da08.woff new file mode 100644 index 0000000..82b9158 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/b295da08.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/b29ecf6c.woff b/cmd/web/static/fonts/glyphs/woff/b29ecf6c.woff new file mode 100644 index 0000000..b0a45b7 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/b29ecf6c.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/b2e0a125.woff b/cmd/web/static/fonts/glyphs/woff/b2e0a125.woff new file mode 100644 index 0000000..5700668 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/b2e0a125.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/b2f15dff.woff b/cmd/web/static/fonts/glyphs/woff/b2f15dff.woff new file mode 100644 index 0000000..6ddcc2b Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/b2f15dff.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/b3273cc3.woff b/cmd/web/static/fonts/glyphs/woff/b3273cc3.woff new file mode 100644 index 0000000..bcde7cf Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/b3273cc3.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/b3df67d1.woff b/cmd/web/static/fonts/glyphs/woff/b3df67d1.woff new file mode 100644 index 0000000..c9e6a54 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/b3df67d1.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/b410b0fe.woff b/cmd/web/static/fonts/glyphs/woff/b410b0fe.woff new file mode 100644 index 0000000..3d9f621 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/b410b0fe.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/b44b2013.woff b/cmd/web/static/fonts/glyphs/woff/b44b2013.woff new file mode 100644 index 0000000..d6b9bd0 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/b44b2013.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/b4fed649.woff b/cmd/web/static/fonts/glyphs/woff/b4fed649.woff new file mode 100644 index 0000000..4b5c3ce Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/b4fed649.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/b524a1f5.woff b/cmd/web/static/fonts/glyphs/woff/b524a1f5.woff new file mode 100644 index 0000000..f7b395d Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/b524a1f5.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/b53f50d1.woff b/cmd/web/static/fonts/glyphs/woff/b53f50d1.woff new file mode 100644 index 0000000..5fd9ff9 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/b53f50d1.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/b5c50661.woff b/cmd/web/static/fonts/glyphs/woff/b5c50661.woff new file mode 100644 index 0000000..7b7325d Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/b5c50661.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/b5c60683.woff b/cmd/web/static/fonts/glyphs/woff/b5c60683.woff new file mode 100644 index 0000000..6e48102 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/b5c60683.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/b70c5e32.woff b/cmd/web/static/fonts/glyphs/woff/b70c5e32.woff new file mode 100644 index 0000000..f1d6f96 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/b70c5e32.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/b779fc78.woff b/cmd/web/static/fonts/glyphs/woff/b779fc78.woff new file mode 100644 index 0000000..f758fed Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/b779fc78.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/b78ccf45.woff b/cmd/web/static/fonts/glyphs/woff/b78ccf45.woff new file mode 100644 index 0000000..0361df2 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/b78ccf45.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/b7a172a3.woff b/cmd/web/static/fonts/glyphs/woff/b7a172a3.woff new file mode 100644 index 0000000..15a445f Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/b7a172a3.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/b7ecc4fc.woff b/cmd/web/static/fonts/glyphs/woff/b7ecc4fc.woff new file mode 100644 index 0000000..c56bea4 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/b7ecc4fc.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/b8276594.woff b/cmd/web/static/fonts/glyphs/woff/b8276594.woff new file mode 100644 index 0000000..5833a6f Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/b8276594.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/b82f6a43.woff b/cmd/web/static/fonts/glyphs/woff/b82f6a43.woff new file mode 100644 index 0000000..e7d76b4 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/b82f6a43.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/b84384c5.woff b/cmd/web/static/fonts/glyphs/woff/b84384c5.woff new file mode 100644 index 0000000..8d6894b Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/b84384c5.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/b853b110.woff b/cmd/web/static/fonts/glyphs/woff/b853b110.woff new file mode 100644 index 0000000..24cf03c Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/b853b110.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/b86d565c.woff b/cmd/web/static/fonts/glyphs/woff/b86d565c.woff new file mode 100644 index 0000000..842f198 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/b86d565c.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/b8a14959.woff b/cmd/web/static/fonts/glyphs/woff/b8a14959.woff new file mode 100644 index 0000000..12ff88a Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/b8a14959.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/b8f899c8.woff b/cmd/web/static/fonts/glyphs/woff/b8f899c8.woff new file mode 100644 index 0000000..8b87765 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/b8f899c8.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/b9507f5e.woff b/cmd/web/static/fonts/glyphs/woff/b9507f5e.woff new file mode 100644 index 0000000..a680ab8 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/b9507f5e.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/b96007b9.woff b/cmd/web/static/fonts/glyphs/woff/b96007b9.woff new file mode 100644 index 0000000..69cc15b Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/b96007b9.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/b9a227e4.woff b/cmd/web/static/fonts/glyphs/woff/b9a227e4.woff new file mode 100644 index 0000000..68b1903 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/b9a227e4.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/ba711105.woff b/cmd/web/static/fonts/glyphs/woff/ba711105.woff new file mode 100644 index 0000000..215b5ef Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/ba711105.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/ba8d699c.woff b/cmd/web/static/fonts/glyphs/woff/ba8d699c.woff new file mode 100644 index 0000000..91c2bf3 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/ba8d699c.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/bae4bae8.woff b/cmd/web/static/fonts/glyphs/woff/bae4bae8.woff new file mode 100644 index 0000000..9dabdf8 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/bae4bae8.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/bae65807.woff b/cmd/web/static/fonts/glyphs/woff/bae65807.woff new file mode 100644 index 0000000..cc35016 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/bae65807.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/bb074b56.woff b/cmd/web/static/fonts/glyphs/woff/bb074b56.woff new file mode 100644 index 0000000..ea2845a Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/bb074b56.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/bb12d8ab.woff b/cmd/web/static/fonts/glyphs/woff/bb12d8ab.woff new file mode 100644 index 0000000..b880823 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/bb12d8ab.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/bb366587.woff b/cmd/web/static/fonts/glyphs/woff/bb366587.woff new file mode 100644 index 0000000..0ffce42 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/bb366587.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/bb48d505.woff b/cmd/web/static/fonts/glyphs/woff/bb48d505.woff new file mode 100644 index 0000000..44286f0 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/bb48d505.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/bb6c3f4f.woff b/cmd/web/static/fonts/glyphs/woff/bb6c3f4f.woff new file mode 100644 index 0000000..6adbc2a Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/bb6c3f4f.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/bc23c05b.woff b/cmd/web/static/fonts/glyphs/woff/bc23c05b.woff new file mode 100644 index 0000000..5c17c85 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/bc23c05b.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/bcd60da4.woff b/cmd/web/static/fonts/glyphs/woff/bcd60da4.woff new file mode 100644 index 0000000..e2a932a Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/bcd60da4.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/bd81a851.woff b/cmd/web/static/fonts/glyphs/woff/bd81a851.woff new file mode 100644 index 0000000..cc2fcbf Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/bd81a851.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/be09c3ad.woff b/cmd/web/static/fonts/glyphs/woff/be09c3ad.woff new file mode 100644 index 0000000..c7548a0 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/be09c3ad.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/be0e8a5a.woff b/cmd/web/static/fonts/glyphs/woff/be0e8a5a.woff new file mode 100644 index 0000000..5a242a6 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/be0e8a5a.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/be153f92.woff b/cmd/web/static/fonts/glyphs/woff/be153f92.woff new file mode 100644 index 0000000..11245e0 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/be153f92.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/be79d1c6.woff b/cmd/web/static/fonts/glyphs/woff/be79d1c6.woff new file mode 100644 index 0000000..0683214 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/be79d1c6.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/beaff0e5.woff b/cmd/web/static/fonts/glyphs/woff/beaff0e5.woff new file mode 100644 index 0000000..74840d1 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/beaff0e5.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/bebd5dcc.woff b/cmd/web/static/fonts/glyphs/woff/bebd5dcc.woff new file mode 100644 index 0000000..fc0bfb8 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/bebd5dcc.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/bf5d7fd2.woff b/cmd/web/static/fonts/glyphs/woff/bf5d7fd2.woff new file mode 100644 index 0000000..b4ee5b6 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/bf5d7fd2.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/bfff0e1f.woff b/cmd/web/static/fonts/glyphs/woff/bfff0e1f.woff new file mode 100644 index 0000000..e5db106 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/bfff0e1f.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/c035acf1.woff b/cmd/web/static/fonts/glyphs/woff/c035acf1.woff new file mode 100644 index 0000000..e29f417 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/c035acf1.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/c08b2fca.woff b/cmd/web/static/fonts/glyphs/woff/c08b2fca.woff new file mode 100644 index 0000000..00616b3 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/c08b2fca.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/c0b59cd5.woff b/cmd/web/static/fonts/glyphs/woff/c0b59cd5.woff new file mode 100644 index 0000000..996f20f Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/c0b59cd5.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/c0becad5.woff b/cmd/web/static/fonts/glyphs/woff/c0becad5.woff new file mode 100644 index 0000000..b46ae2d Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/c0becad5.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/c0dc60c1.woff b/cmd/web/static/fonts/glyphs/woff/c0dc60c1.woff new file mode 100644 index 0000000..ea5d104 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/c0dc60c1.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/c0ef3e5e.woff b/cmd/web/static/fonts/glyphs/woff/c0ef3e5e.woff new file mode 100644 index 0000000..9f10b58 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/c0ef3e5e.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/c1538030.woff b/cmd/web/static/fonts/glyphs/woff/c1538030.woff new file mode 100644 index 0000000..6f90967 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/c1538030.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/c1581e36.woff b/cmd/web/static/fonts/glyphs/woff/c1581e36.woff new file mode 100644 index 0000000..8fcdb8b Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/c1581e36.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/c17f2a95.woff b/cmd/web/static/fonts/glyphs/woff/c17f2a95.woff new file mode 100644 index 0000000..df1f001 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/c17f2a95.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/c206b69c.woff b/cmd/web/static/fonts/glyphs/woff/c206b69c.woff new file mode 100644 index 0000000..292cb8c Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/c206b69c.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/c21fd5eb.woff b/cmd/web/static/fonts/glyphs/woff/c21fd5eb.woff new file mode 100644 index 0000000..534a110 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/c21fd5eb.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/c290dee9.woff b/cmd/web/static/fonts/glyphs/woff/c290dee9.woff new file mode 100644 index 0000000..f2eac73 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/c290dee9.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/c3ad2575.woff b/cmd/web/static/fonts/glyphs/woff/c3ad2575.woff new file mode 100644 index 0000000..63b7f98 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/c3ad2575.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/c3c3fe75.woff b/cmd/web/static/fonts/glyphs/woff/c3c3fe75.woff new file mode 100644 index 0000000..e52536a Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/c3c3fe75.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/c3f23f1d.woff b/cmd/web/static/fonts/glyphs/woff/c3f23f1d.woff new file mode 100644 index 0000000..5840c55 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/c3f23f1d.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/c407df2f.woff b/cmd/web/static/fonts/glyphs/woff/c407df2f.woff new file mode 100644 index 0000000..9fb5203 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/c407df2f.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/c42bbfd6.woff b/cmd/web/static/fonts/glyphs/woff/c42bbfd6.woff new file mode 100644 index 0000000..4ef73d9 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/c42bbfd6.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/c48a78a5.woff b/cmd/web/static/fonts/glyphs/woff/c48a78a5.woff new file mode 100644 index 0000000..ed4d536 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/c48a78a5.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/c579a0a6.woff b/cmd/web/static/fonts/glyphs/woff/c579a0a6.woff new file mode 100644 index 0000000..8f1b424 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/c579a0a6.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/c67c215e.woff b/cmd/web/static/fonts/glyphs/woff/c67c215e.woff new file mode 100644 index 0000000..a899d1b Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/c67c215e.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/c67e4554.woff b/cmd/web/static/fonts/glyphs/woff/c67e4554.woff new file mode 100644 index 0000000..c3eb532 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/c67e4554.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/c71e8d9a.woff b/cmd/web/static/fonts/glyphs/woff/c71e8d9a.woff new file mode 100644 index 0000000..0ae239e Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/c71e8d9a.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/c7a8c9c1.woff b/cmd/web/static/fonts/glyphs/woff/c7a8c9c1.woff new file mode 100644 index 0000000..be5210a Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/c7a8c9c1.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/c7e2b3d5.woff b/cmd/web/static/fonts/glyphs/woff/c7e2b3d5.woff new file mode 100644 index 0000000..e92c277 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/c7e2b3d5.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/c7e82146.woff b/cmd/web/static/fonts/glyphs/woff/c7e82146.woff new file mode 100644 index 0000000..f1159f5 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/c7e82146.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/c7e8635b.woff b/cmd/web/static/fonts/glyphs/woff/c7e8635b.woff new file mode 100644 index 0000000..7079708 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/c7e8635b.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/c8e64019.woff b/cmd/web/static/fonts/glyphs/woff/c8e64019.woff new file mode 100644 index 0000000..6b9c38d Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/c8e64019.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/c931b176.woff b/cmd/web/static/fonts/glyphs/woff/c931b176.woff new file mode 100644 index 0000000..1366b8e Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/c931b176.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/c9480f66.woff b/cmd/web/static/fonts/glyphs/woff/c9480f66.woff new file mode 100644 index 0000000..5331522 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/c9480f66.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/c9797180.woff b/cmd/web/static/fonts/glyphs/woff/c9797180.woff new file mode 100644 index 0000000..7e9a736 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/c9797180.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/c9a00be7.woff b/cmd/web/static/fonts/glyphs/woff/c9a00be7.woff new file mode 100644 index 0000000..455ca53 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/c9a00be7.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/c9b3ada5.woff b/cmd/web/static/fonts/glyphs/woff/c9b3ada5.woff new file mode 100644 index 0000000..2a72bb9 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/c9b3ada5.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/c9b5076d.woff b/cmd/web/static/fonts/glyphs/woff/c9b5076d.woff new file mode 100644 index 0000000..1eaef53 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/c9b5076d.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/c9ede1cf.woff b/cmd/web/static/fonts/glyphs/woff/c9ede1cf.woff new file mode 100644 index 0000000..db2ed87 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/c9ede1cf.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/ca2be6c9.woff b/cmd/web/static/fonts/glyphs/woff/ca2be6c9.woff new file mode 100644 index 0000000..a0ce8ab Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/ca2be6c9.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/cb2908e9.woff b/cmd/web/static/fonts/glyphs/woff/cb2908e9.woff new file mode 100644 index 0000000..9b8269d Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/cb2908e9.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/cba0a9ca.woff b/cmd/web/static/fonts/glyphs/woff/cba0a9ca.woff new file mode 100644 index 0000000..220779b Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/cba0a9ca.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/cbac8aaa.woff b/cmd/web/static/fonts/glyphs/woff/cbac8aaa.woff new file mode 100644 index 0000000..d92066d Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/cbac8aaa.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/ccba5701.woff b/cmd/web/static/fonts/glyphs/woff/ccba5701.woff new file mode 100644 index 0000000..d9f657f Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/ccba5701.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/ccc16298.woff b/cmd/web/static/fonts/glyphs/woff/ccc16298.woff new file mode 100644 index 0000000..fe230a6 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/ccc16298.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/cce1425f.woff b/cmd/web/static/fonts/glyphs/woff/cce1425f.woff new file mode 100644 index 0000000..dac62e7 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/cce1425f.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/cd3dc2c3.woff b/cmd/web/static/fonts/glyphs/woff/cd3dc2c3.woff new file mode 100644 index 0000000..e2881ec Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/cd3dc2c3.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/cd4d8f7a.woff b/cmd/web/static/fonts/glyphs/woff/cd4d8f7a.woff new file mode 100644 index 0000000..1a9a4e8 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/cd4d8f7a.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/cda1a566.woff b/cmd/web/static/fonts/glyphs/woff/cda1a566.woff new file mode 100644 index 0000000..061a87d Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/cda1a566.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/cdb6b693.woff b/cmd/web/static/fonts/glyphs/woff/cdb6b693.woff new file mode 100644 index 0000000..e913118 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/cdb6b693.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/cdc770af.woff b/cmd/web/static/fonts/glyphs/woff/cdc770af.woff new file mode 100644 index 0000000..f36b36b Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/cdc770af.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/cdf1c3ef.woff b/cmd/web/static/fonts/glyphs/woff/cdf1c3ef.woff new file mode 100644 index 0000000..f787836 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/cdf1c3ef.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/ce715050.woff b/cmd/web/static/fonts/glyphs/woff/ce715050.woff new file mode 100644 index 0000000..4f9d5dc Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/ce715050.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/ce9eb004.woff b/cmd/web/static/fonts/glyphs/woff/ce9eb004.woff new file mode 100644 index 0000000..41224a7 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/ce9eb004.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/cebaa24b.woff b/cmd/web/static/fonts/glyphs/woff/cebaa24b.woff new file mode 100644 index 0000000..510bed8 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/cebaa24b.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/cf02d8e2.woff b/cmd/web/static/fonts/glyphs/woff/cf02d8e2.woff new file mode 100644 index 0000000..e961c0e Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/cf02d8e2.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/cf248e93.woff b/cmd/web/static/fonts/glyphs/woff/cf248e93.woff new file mode 100644 index 0000000..0e35144 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/cf248e93.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/cf295f73.woff b/cmd/web/static/fonts/glyphs/woff/cf295f73.woff new file mode 100644 index 0000000..74f5a92 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/cf295f73.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/cf2a0a85.woff b/cmd/web/static/fonts/glyphs/woff/cf2a0a85.woff new file mode 100644 index 0000000..380801b Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/cf2a0a85.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/cf6d6f30.woff b/cmd/web/static/fonts/glyphs/woff/cf6d6f30.woff new file mode 100644 index 0000000..96a03f5 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/cf6d6f30.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/cf9d5267.woff b/cmd/web/static/fonts/glyphs/woff/cf9d5267.woff new file mode 100644 index 0000000..b4982e7 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/cf9d5267.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/cfa9655f.woff b/cmd/web/static/fonts/glyphs/woff/cfa9655f.woff new file mode 100644 index 0000000..07122ac Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/cfa9655f.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/cff6eea9.woff b/cmd/web/static/fonts/glyphs/woff/cff6eea9.woff new file mode 100644 index 0000000..037053f Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/cff6eea9.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/d0342038.woff b/cmd/web/static/fonts/glyphs/woff/d0342038.woff new file mode 100644 index 0000000..d82f42d Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/d0342038.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/d09b48b1.woff b/cmd/web/static/fonts/glyphs/woff/d09b48b1.woff new file mode 100644 index 0000000..9bcdce8 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/d09b48b1.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/d0a546a6.woff b/cmd/web/static/fonts/glyphs/woff/d0a546a6.woff new file mode 100644 index 0000000..4789fc2 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/d0a546a6.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/d0cecf4f.woff b/cmd/web/static/fonts/glyphs/woff/d0cecf4f.woff new file mode 100644 index 0000000..011babd Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/d0cecf4f.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/d0e625c0.woff b/cmd/web/static/fonts/glyphs/woff/d0e625c0.woff new file mode 100644 index 0000000..36fcc0e Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/d0e625c0.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/d0f4fedd.woff b/cmd/web/static/fonts/glyphs/woff/d0f4fedd.woff new file mode 100644 index 0000000..5e0a5f4 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/d0f4fedd.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/d0f7d102.woff b/cmd/web/static/fonts/glyphs/woff/d0f7d102.woff new file mode 100644 index 0000000..2af2857 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/d0f7d102.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/d108850a.woff b/cmd/web/static/fonts/glyphs/woff/d108850a.woff new file mode 100644 index 0000000..95933c4 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/d108850a.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/d129485b.woff b/cmd/web/static/fonts/glyphs/woff/d129485b.woff new file mode 100644 index 0000000..7619443 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/d129485b.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/d20bd061.woff b/cmd/web/static/fonts/glyphs/woff/d20bd061.woff new file mode 100644 index 0000000..a5f9406 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/d20bd061.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/d214de53.woff b/cmd/web/static/fonts/glyphs/woff/d214de53.woff new file mode 100644 index 0000000..eb18862 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/d214de53.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/d219fd91.woff b/cmd/web/static/fonts/glyphs/woff/d219fd91.woff new file mode 100644 index 0000000..af606c7 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/d219fd91.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/d228d1ac.woff b/cmd/web/static/fonts/glyphs/woff/d228d1ac.woff new file mode 100644 index 0000000..f317d71 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/d228d1ac.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/d269bf57.woff b/cmd/web/static/fonts/glyphs/woff/d269bf57.woff new file mode 100644 index 0000000..57d3379 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/d269bf57.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/d2800ad0.woff b/cmd/web/static/fonts/glyphs/woff/d2800ad0.woff new file mode 100644 index 0000000..5865aba Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/d2800ad0.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/d289b887.woff b/cmd/web/static/fonts/glyphs/woff/d289b887.woff new file mode 100644 index 0000000..90f2f86 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/d289b887.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/d2c72c19.woff b/cmd/web/static/fonts/glyphs/woff/d2c72c19.woff new file mode 100644 index 0000000..a969bc3 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/d2c72c19.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/d2e8e796.woff b/cmd/web/static/fonts/glyphs/woff/d2e8e796.woff new file mode 100644 index 0000000..ec8f3cd Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/d2e8e796.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/d2ebd46c.woff b/cmd/web/static/fonts/glyphs/woff/d2ebd46c.woff new file mode 100644 index 0000000..3255747 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/d2ebd46c.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/d32f8a26.woff b/cmd/web/static/fonts/glyphs/woff/d32f8a26.woff new file mode 100644 index 0000000..47d1427 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/d32f8a26.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/d43f6100.woff b/cmd/web/static/fonts/glyphs/woff/d43f6100.woff new file mode 100644 index 0000000..9da6383 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/d43f6100.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/d4a96716.woff b/cmd/web/static/fonts/glyphs/woff/d4a96716.woff new file mode 100644 index 0000000..0df2131 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/d4a96716.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/d4ae9299.woff b/cmd/web/static/fonts/glyphs/woff/d4ae9299.woff new file mode 100644 index 0000000..abb5e83 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/d4ae9299.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/d4fffa4b.woff b/cmd/web/static/fonts/glyphs/woff/d4fffa4b.woff new file mode 100644 index 0000000..74bf781 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/d4fffa4b.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/d57e51c5.woff b/cmd/web/static/fonts/glyphs/woff/d57e51c5.woff new file mode 100644 index 0000000..f3cbfc0 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/d57e51c5.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/d5e77211.woff b/cmd/web/static/fonts/glyphs/woff/d5e77211.woff new file mode 100644 index 0000000..d3922cb Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/d5e77211.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/d615451a.woff b/cmd/web/static/fonts/glyphs/woff/d615451a.woff new file mode 100644 index 0000000..20a0eac Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/d615451a.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/d662c711.woff b/cmd/web/static/fonts/glyphs/woff/d662c711.woff new file mode 100644 index 0000000..52a9278 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/d662c711.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/d68c6b5a.woff b/cmd/web/static/fonts/glyphs/woff/d68c6b5a.woff new file mode 100644 index 0000000..ecf7319 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/d68c6b5a.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/d6f4d6c5.woff b/cmd/web/static/fonts/glyphs/woff/d6f4d6c5.woff new file mode 100644 index 0000000..408dd0b Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/d6f4d6c5.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/d702d8e9.woff b/cmd/web/static/fonts/glyphs/woff/d702d8e9.woff new file mode 100644 index 0000000..9f3d752 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/d702d8e9.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/d72e5642.woff b/cmd/web/static/fonts/glyphs/woff/d72e5642.woff new file mode 100644 index 0000000..91b2214 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/d72e5642.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/d741c5dd.woff b/cmd/web/static/fonts/glyphs/woff/d741c5dd.woff new file mode 100644 index 0000000..38ae4a9 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/d741c5dd.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/d7a69b7b.woff b/cmd/web/static/fonts/glyphs/woff/d7a69b7b.woff new file mode 100644 index 0000000..0ebd1df Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/d7a69b7b.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/d7d56ff8.woff b/cmd/web/static/fonts/glyphs/woff/d7d56ff8.woff new file mode 100644 index 0000000..4064a72 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/d7d56ff8.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/d7ecae43.woff b/cmd/web/static/fonts/glyphs/woff/d7ecae43.woff new file mode 100644 index 0000000..17b4567 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/d7ecae43.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/d8f20bf0.woff b/cmd/web/static/fonts/glyphs/woff/d8f20bf0.woff new file mode 100644 index 0000000..57334fa Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/d8f20bf0.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/d8f26b1e.woff b/cmd/web/static/fonts/glyphs/woff/d8f26b1e.woff new file mode 100644 index 0000000..aa77765 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/d8f26b1e.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/d9002330.woff b/cmd/web/static/fonts/glyphs/woff/d9002330.woff new file mode 100644 index 0000000..bd667cf Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/d9002330.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/d97e9886.woff b/cmd/web/static/fonts/glyphs/woff/d97e9886.woff new file mode 100644 index 0000000..f7ae72d Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/d97e9886.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/d9b31097.woff b/cmd/web/static/fonts/glyphs/woff/d9b31097.woff new file mode 100644 index 0000000..8ae78c2 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/d9b31097.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/d9f1f706.woff b/cmd/web/static/fonts/glyphs/woff/d9f1f706.woff new file mode 100644 index 0000000..bc55826 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/d9f1f706.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/da29dda0.woff b/cmd/web/static/fonts/glyphs/woff/da29dda0.woff new file mode 100644 index 0000000..2991d6c Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/da29dda0.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/da46da57.woff b/cmd/web/static/fonts/glyphs/woff/da46da57.woff new file mode 100644 index 0000000..ba401e0 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/da46da57.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/da8ef2eb.woff b/cmd/web/static/fonts/glyphs/woff/da8ef2eb.woff new file mode 100644 index 0000000..3bc1ea9 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/da8ef2eb.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/dad2106c.woff b/cmd/web/static/fonts/glyphs/woff/dad2106c.woff new file mode 100644 index 0000000..a529b63 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/dad2106c.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/dafd1a87.woff b/cmd/web/static/fonts/glyphs/woff/dafd1a87.woff new file mode 100644 index 0000000..d4a879a Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/dafd1a87.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/db17d1b4.woff b/cmd/web/static/fonts/glyphs/woff/db17d1b4.woff new file mode 100644 index 0000000..d2f367c Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/db17d1b4.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/db26cd0b.woff b/cmd/web/static/fonts/glyphs/woff/db26cd0b.woff new file mode 100644 index 0000000..f453c9d Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/db26cd0b.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/db8e73dd.woff b/cmd/web/static/fonts/glyphs/woff/db8e73dd.woff new file mode 100644 index 0000000..7e49def Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/db8e73dd.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/db92c609.woff b/cmd/web/static/fonts/glyphs/woff/db92c609.woff new file mode 100644 index 0000000..cffe52b Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/db92c609.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/dbdc4b76.woff b/cmd/web/static/fonts/glyphs/woff/dbdc4b76.woff new file mode 100644 index 0000000..faeda38 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/dbdc4b76.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/dbf1f527.woff b/cmd/web/static/fonts/glyphs/woff/dbf1f527.woff new file mode 100644 index 0000000..a897dde Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/dbf1f527.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/dbfd39a7.woff b/cmd/web/static/fonts/glyphs/woff/dbfd39a7.woff new file mode 100644 index 0000000..88e9fd5 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/dbfd39a7.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/dc1b7673.woff b/cmd/web/static/fonts/glyphs/woff/dc1b7673.woff new file mode 100644 index 0000000..b0a56a1 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/dc1b7673.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/dc86c2f6.woff b/cmd/web/static/fonts/glyphs/woff/dc86c2f6.woff new file mode 100644 index 0000000..d6a47ad Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/dc86c2f6.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/dcd33a62.woff b/cmd/web/static/fonts/glyphs/woff/dcd33a62.woff new file mode 100644 index 0000000..478b3cb Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/dcd33a62.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/dcd7c346.woff b/cmd/web/static/fonts/glyphs/woff/dcd7c346.woff new file mode 100644 index 0000000..47838c0 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/dcd7c346.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/dce2e772.woff b/cmd/web/static/fonts/glyphs/woff/dce2e772.woff new file mode 100644 index 0000000..fcc08fb Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/dce2e772.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/dcf87866.woff b/cmd/web/static/fonts/glyphs/woff/dcf87866.woff new file mode 100644 index 0000000..a0f630a Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/dcf87866.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/dcfebe0e.woff b/cmd/web/static/fonts/glyphs/woff/dcfebe0e.woff new file mode 100644 index 0000000..bfbf63e Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/dcfebe0e.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/dd10b6f4.woff b/cmd/web/static/fonts/glyphs/woff/dd10b6f4.woff new file mode 100644 index 0000000..ae3a494 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/dd10b6f4.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/dda67aa8.woff b/cmd/web/static/fonts/glyphs/woff/dda67aa8.woff new file mode 100644 index 0000000..928e787 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/dda67aa8.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/ddff0b65.woff b/cmd/web/static/fonts/glyphs/woff/ddff0b65.woff new file mode 100644 index 0000000..0488571 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/ddff0b65.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/de01f078.woff b/cmd/web/static/fonts/glyphs/woff/de01f078.woff new file mode 100644 index 0000000..e65f820 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/de01f078.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/de978ae9.woff b/cmd/web/static/fonts/glyphs/woff/de978ae9.woff new file mode 100644 index 0000000..c0c9057 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/de978ae9.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/dee08cc0.woff b/cmd/web/static/fonts/glyphs/woff/dee08cc0.woff new file mode 100644 index 0000000..3aaa6a5 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/dee08cc0.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/df01c285.woff b/cmd/web/static/fonts/glyphs/woff/df01c285.woff new file mode 100644 index 0000000..97b1769 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/df01c285.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/df2fadba.woff b/cmd/web/static/fonts/glyphs/woff/df2fadba.woff new file mode 100644 index 0000000..75a4637 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/df2fadba.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/df6bc6bf.woff b/cmd/web/static/fonts/glyphs/woff/df6bc6bf.woff new file mode 100644 index 0000000..e3b778c Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/df6bc6bf.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/df82f44f.woff b/cmd/web/static/fonts/glyphs/woff/df82f44f.woff new file mode 100644 index 0000000..3a71ebc Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/df82f44f.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/df860193.woff b/cmd/web/static/fonts/glyphs/woff/df860193.woff new file mode 100644 index 0000000..20c816d Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/df860193.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/dfc642b4.woff b/cmd/web/static/fonts/glyphs/woff/dfc642b4.woff new file mode 100644 index 0000000..d781345 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/dfc642b4.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/e036f61e.woff b/cmd/web/static/fonts/glyphs/woff/e036f61e.woff new file mode 100644 index 0000000..7d0b079 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/e036f61e.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/e0436cb5.woff b/cmd/web/static/fonts/glyphs/woff/e0436cb5.woff new file mode 100644 index 0000000..6e94b2e Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/e0436cb5.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/e07866a3.woff b/cmd/web/static/fonts/glyphs/woff/e07866a3.woff new file mode 100644 index 0000000..733b5b4 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/e07866a3.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/e094cfe4.woff b/cmd/web/static/fonts/glyphs/woff/e094cfe4.woff new file mode 100644 index 0000000..922237e Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/e094cfe4.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/e0cf68e8.woff b/cmd/web/static/fonts/glyphs/woff/e0cf68e8.woff new file mode 100644 index 0000000..d0c5183 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/e0cf68e8.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/e18256ba.woff b/cmd/web/static/fonts/glyphs/woff/e18256ba.woff new file mode 100644 index 0000000..7600fb4 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/e18256ba.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/e24b4971.woff b/cmd/web/static/fonts/glyphs/woff/e24b4971.woff new file mode 100644 index 0000000..0ade661 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/e24b4971.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/e264079a.woff b/cmd/web/static/fonts/glyphs/woff/e264079a.woff new file mode 100644 index 0000000..4f3c1d7 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/e264079a.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/e2920962.woff b/cmd/web/static/fonts/glyphs/woff/e2920962.woff new file mode 100644 index 0000000..2164671 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/e2920962.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/e29e8451.woff b/cmd/web/static/fonts/glyphs/woff/e29e8451.woff new file mode 100644 index 0000000..0eb279b Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/e29e8451.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/e2b7f2e8.woff b/cmd/web/static/fonts/glyphs/woff/e2b7f2e8.woff new file mode 100644 index 0000000..d1b648c Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/e2b7f2e8.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/e2cd4ea9.woff b/cmd/web/static/fonts/glyphs/woff/e2cd4ea9.woff new file mode 100644 index 0000000..f043a87 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/e2cd4ea9.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/e2f6544b.woff b/cmd/web/static/fonts/glyphs/woff/e2f6544b.woff new file mode 100644 index 0000000..4ce458f Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/e2f6544b.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/e2ffe70e.woff b/cmd/web/static/fonts/glyphs/woff/e2ffe70e.woff new file mode 100644 index 0000000..9afc430 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/e2ffe70e.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/e33b2c7f.woff b/cmd/web/static/fonts/glyphs/woff/e33b2c7f.woff new file mode 100644 index 0000000..a0da897 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/e33b2c7f.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/e3ae4d2d.woff b/cmd/web/static/fonts/glyphs/woff/e3ae4d2d.woff new file mode 100644 index 0000000..edc017d Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/e3ae4d2d.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/e3d7c442.woff b/cmd/web/static/fonts/glyphs/woff/e3d7c442.woff new file mode 100644 index 0000000..4e33273 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/e3d7c442.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/e49824ce.woff b/cmd/web/static/fonts/glyphs/woff/e49824ce.woff new file mode 100644 index 0000000..db1d339 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/e49824ce.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/e4ec2dc2.woff b/cmd/web/static/fonts/glyphs/woff/e4ec2dc2.woff new file mode 100644 index 0000000..02de60c Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/e4ec2dc2.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/e4f0095c.woff b/cmd/web/static/fonts/glyphs/woff/e4f0095c.woff new file mode 100644 index 0000000..362ac1f Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/e4f0095c.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/e516e4c5.woff b/cmd/web/static/fonts/glyphs/woff/e516e4c5.woff new file mode 100644 index 0000000..92b6f7f Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/e516e4c5.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/e528cde1.woff b/cmd/web/static/fonts/glyphs/woff/e528cde1.woff new file mode 100644 index 0000000..4718507 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/e528cde1.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/e55176f2.woff b/cmd/web/static/fonts/glyphs/woff/e55176f2.woff new file mode 100644 index 0000000..caddf05 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/e55176f2.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/e5e909f3.woff b/cmd/web/static/fonts/glyphs/woff/e5e909f3.woff new file mode 100644 index 0000000..ed4a6f7 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/e5e909f3.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/e67af557.woff b/cmd/web/static/fonts/glyphs/woff/e67af557.woff new file mode 100644 index 0000000..d8c6f1d Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/e67af557.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/e6b4aab7.woff b/cmd/web/static/fonts/glyphs/woff/e6b4aab7.woff new file mode 100644 index 0000000..04ade06 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/e6b4aab7.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/e7803979.woff b/cmd/web/static/fonts/glyphs/woff/e7803979.woff new file mode 100644 index 0000000..1ec8086 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/e7803979.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/e7aad562.woff b/cmd/web/static/fonts/glyphs/woff/e7aad562.woff new file mode 100644 index 0000000..74f027e Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/e7aad562.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/e7c8de5d.woff b/cmd/web/static/fonts/glyphs/woff/e7c8de5d.woff new file mode 100644 index 0000000..c8e48aa Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/e7c8de5d.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/e7d3044b.woff b/cmd/web/static/fonts/glyphs/woff/e7d3044b.woff new file mode 100644 index 0000000..57ff473 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/e7d3044b.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/e83034c6.woff b/cmd/web/static/fonts/glyphs/woff/e83034c6.woff new file mode 100644 index 0000000..4208182 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/e83034c6.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/e8777ffa.woff b/cmd/web/static/fonts/glyphs/woff/e8777ffa.woff new file mode 100644 index 0000000..11ab3d1 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/e8777ffa.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/e8acadad.woff b/cmd/web/static/fonts/glyphs/woff/e8acadad.woff new file mode 100644 index 0000000..1ee0331 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/e8acadad.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/e98b08c6.woff b/cmd/web/static/fonts/glyphs/woff/e98b08c6.woff new file mode 100644 index 0000000..432cca2 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/e98b08c6.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/e9b1d552.woff b/cmd/web/static/fonts/glyphs/woff/e9b1d552.woff new file mode 100644 index 0000000..1124cd5 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/e9b1d552.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/ea17073b.woff b/cmd/web/static/fonts/glyphs/woff/ea17073b.woff new file mode 100644 index 0000000..acbbf63 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/ea17073b.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/ea26fef6.woff b/cmd/web/static/fonts/glyphs/woff/ea26fef6.woff new file mode 100644 index 0000000..b90acf8 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/ea26fef6.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/ea8e0a1a.woff b/cmd/web/static/fonts/glyphs/woff/ea8e0a1a.woff new file mode 100644 index 0000000..2340611 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/ea8e0a1a.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/ea915e6c.woff b/cmd/web/static/fonts/glyphs/woff/ea915e6c.woff new file mode 100644 index 0000000..38790bb Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/ea915e6c.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/eaca633e.woff b/cmd/web/static/fonts/glyphs/woff/eaca633e.woff new file mode 100644 index 0000000..9ea8903 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/eaca633e.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/eb2a76c7.woff b/cmd/web/static/fonts/glyphs/woff/eb2a76c7.woff new file mode 100644 index 0000000..7785a03 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/eb2a76c7.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/eb67386f.woff b/cmd/web/static/fonts/glyphs/woff/eb67386f.woff new file mode 100644 index 0000000..202ed9a Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/eb67386f.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/eb7c1720.woff b/cmd/web/static/fonts/glyphs/woff/eb7c1720.woff new file mode 100644 index 0000000..6462611 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/eb7c1720.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/ec5a8b64.woff b/cmd/web/static/fonts/glyphs/woff/ec5a8b64.woff new file mode 100644 index 0000000..ed717cd Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/ec5a8b64.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/ec62219b.woff b/cmd/web/static/fonts/glyphs/woff/ec62219b.woff new file mode 100644 index 0000000..a1892bd Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/ec62219b.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/ec9c031f.woff b/cmd/web/static/fonts/glyphs/woff/ec9c031f.woff new file mode 100644 index 0000000..9561dd4 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/ec9c031f.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/eca1fd47.woff b/cmd/web/static/fonts/glyphs/woff/eca1fd47.woff new file mode 100644 index 0000000..e522616 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/eca1fd47.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/eccf06e9.woff b/cmd/web/static/fonts/glyphs/woff/eccf06e9.woff new file mode 100644 index 0000000..4c27557 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/eccf06e9.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/ecd94f38.woff b/cmd/web/static/fonts/glyphs/woff/ecd94f38.woff new file mode 100644 index 0000000..1a875e3 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/ecd94f38.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/ed4c2c15.woff b/cmd/web/static/fonts/glyphs/woff/ed4c2c15.woff new file mode 100644 index 0000000..38907fe Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/ed4c2c15.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/ed5cf55c.woff b/cmd/web/static/fonts/glyphs/woff/ed5cf55c.woff new file mode 100644 index 0000000..f44455a Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/ed5cf55c.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/edba7c75.woff b/cmd/web/static/fonts/glyphs/woff/edba7c75.woff new file mode 100644 index 0000000..0a47518 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/edba7c75.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/edcb62d5.woff b/cmd/web/static/fonts/glyphs/woff/edcb62d5.woff new file mode 100644 index 0000000..c6a4486 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/edcb62d5.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/ee154cca.woff b/cmd/web/static/fonts/glyphs/woff/ee154cca.woff new file mode 100644 index 0000000..7f365e1 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/ee154cca.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/ef00237d.woff b/cmd/web/static/fonts/glyphs/woff/ef00237d.woff new file mode 100644 index 0000000..a63b12f Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/ef00237d.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/efc8654c.woff b/cmd/web/static/fonts/glyphs/woff/efc8654c.woff new file mode 100644 index 0000000..69bbe67 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/efc8654c.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/f0239cc2.woff b/cmd/web/static/fonts/glyphs/woff/f0239cc2.woff new file mode 100644 index 0000000..24c08bc Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/f0239cc2.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/f03ffe17.woff b/cmd/web/static/fonts/glyphs/woff/f03ffe17.woff new file mode 100644 index 0000000..7aee54d Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/f03ffe17.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/f076afbd.woff b/cmd/web/static/fonts/glyphs/woff/f076afbd.woff new file mode 100644 index 0000000..6096e78 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/f076afbd.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/f20a956f.woff b/cmd/web/static/fonts/glyphs/woff/f20a956f.woff new file mode 100644 index 0000000..b7b7d27 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/f20a956f.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/f21dea18.woff b/cmd/web/static/fonts/glyphs/woff/f21dea18.woff new file mode 100644 index 0000000..fe25aa8 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/f21dea18.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/f265e93a.woff b/cmd/web/static/fonts/glyphs/woff/f265e93a.woff new file mode 100644 index 0000000..4bc96e0 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/f265e93a.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/f2a75c7f.woff b/cmd/web/static/fonts/glyphs/woff/f2a75c7f.woff new file mode 100644 index 0000000..49844fd Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/f2a75c7f.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/f324b46a.woff b/cmd/web/static/fonts/glyphs/woff/f324b46a.woff new file mode 100644 index 0000000..03f4491 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/f324b46a.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/f352189b.woff b/cmd/web/static/fonts/glyphs/woff/f352189b.woff new file mode 100644 index 0000000..791fd38 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/f352189b.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/f38f3a94.woff b/cmd/web/static/fonts/glyphs/woff/f38f3a94.woff new file mode 100644 index 0000000..0978ad7 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/f38f3a94.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/f3aa8be6.woff b/cmd/web/static/fonts/glyphs/woff/f3aa8be6.woff new file mode 100644 index 0000000..c5d145e Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/f3aa8be6.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/f3b8c582.woff b/cmd/web/static/fonts/glyphs/woff/f3b8c582.woff new file mode 100644 index 0000000..43097b8 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/f3b8c582.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/f4964839.woff b/cmd/web/static/fonts/glyphs/woff/f4964839.woff new file mode 100644 index 0000000..a6b23df Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/f4964839.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/f4c46d43.woff b/cmd/web/static/fonts/glyphs/woff/f4c46d43.woff new file mode 100644 index 0000000..382d5b5 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/f4c46d43.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/f51f8bf3.woff b/cmd/web/static/fonts/glyphs/woff/f51f8bf3.woff new file mode 100644 index 0000000..c6c1fe1 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/f51f8bf3.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/f522c872.woff b/cmd/web/static/fonts/glyphs/woff/f522c872.woff new file mode 100644 index 0000000..6af6946 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/f522c872.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/f674659b.woff b/cmd/web/static/fonts/glyphs/woff/f674659b.woff new file mode 100644 index 0000000..7737a34 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/f674659b.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/f6a67776.woff b/cmd/web/static/fonts/glyphs/woff/f6a67776.woff new file mode 100644 index 0000000..4402a6a Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/f6a67776.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/f6b8b235.woff b/cmd/web/static/fonts/glyphs/woff/f6b8b235.woff new file mode 100644 index 0000000..dfef5d8 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/f6b8b235.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/f6bda42b.woff b/cmd/web/static/fonts/glyphs/woff/f6bda42b.woff new file mode 100644 index 0000000..331c86b Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/f6bda42b.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/f6e65e59.woff b/cmd/web/static/fonts/glyphs/woff/f6e65e59.woff new file mode 100644 index 0000000..821235d Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/f6e65e59.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/f73fed81.woff b/cmd/web/static/fonts/glyphs/woff/f73fed81.woff new file mode 100644 index 0000000..6f13f39 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/f73fed81.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/f80829f5.woff b/cmd/web/static/fonts/glyphs/woff/f80829f5.woff new file mode 100644 index 0000000..366c364 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/f80829f5.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/f871e4e4.woff b/cmd/web/static/fonts/glyphs/woff/f871e4e4.woff new file mode 100644 index 0000000..3320a66 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/f871e4e4.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/f874c31d.woff b/cmd/web/static/fonts/glyphs/woff/f874c31d.woff new file mode 100644 index 0000000..2967198 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/f874c31d.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/f8a8936b.woff b/cmd/web/static/fonts/glyphs/woff/f8a8936b.woff new file mode 100644 index 0000000..54ec412 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/f8a8936b.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/f8c78a1d.woff b/cmd/web/static/fonts/glyphs/woff/f8c78a1d.woff new file mode 100644 index 0000000..661e24e Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/f8c78a1d.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/f952c473.woff b/cmd/web/static/fonts/glyphs/woff/f952c473.woff new file mode 100644 index 0000000..477e325 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/f952c473.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/f99464f4.woff b/cmd/web/static/fonts/glyphs/woff/f99464f4.woff new file mode 100644 index 0000000..e313091 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/f99464f4.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/fa9edb37.woff b/cmd/web/static/fonts/glyphs/woff/fa9edb37.woff new file mode 100644 index 0000000..11d22da Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/fa9edb37.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/fbf90859.woff b/cmd/web/static/fonts/glyphs/woff/fbf90859.woff new file mode 100644 index 0000000..76a763b Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/fbf90859.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/fc061854.woff b/cmd/web/static/fonts/glyphs/woff/fc061854.woff new file mode 100644 index 0000000..a6d8974 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/fc061854.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/fccd4567.woff b/cmd/web/static/fonts/glyphs/woff/fccd4567.woff new file mode 100644 index 0000000..9226b69 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/fccd4567.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/fcf313ef.woff b/cmd/web/static/fonts/glyphs/woff/fcf313ef.woff new file mode 100644 index 0000000..b83e5be Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/fcf313ef.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/fd56eaf9.woff b/cmd/web/static/fonts/glyphs/woff/fd56eaf9.woff new file mode 100644 index 0000000..8b55b87 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/fd56eaf9.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/fd5fe89c.woff b/cmd/web/static/fonts/glyphs/woff/fd5fe89c.woff new file mode 100644 index 0000000..05624d1 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/fd5fe89c.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/fda7a318.woff b/cmd/web/static/fonts/glyphs/woff/fda7a318.woff new file mode 100644 index 0000000..e888609 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/fda7a318.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/fdc4299c.woff b/cmd/web/static/fonts/glyphs/woff/fdc4299c.woff new file mode 100644 index 0000000..3fdea61 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/fdc4299c.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/fe1a9b49.woff b/cmd/web/static/fonts/glyphs/woff/fe1a9b49.woff new file mode 100644 index 0000000..c804146 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/fe1a9b49.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/fe2af1dc.woff b/cmd/web/static/fonts/glyphs/woff/fe2af1dc.woff new file mode 100644 index 0000000..d912727 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/fe2af1dc.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/fef0478f.woff b/cmd/web/static/fonts/glyphs/woff/fef0478f.woff new file mode 100644 index 0000000..fe15c6f Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/fef0478f.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff/ffa0cc23.woff b/cmd/web/static/fonts/glyphs/woff/ffa0cc23.woff new file mode 100644 index 0000000..26b51bf Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff/ffa0cc23.woff differ diff --git a/cmd/web/static/fonts/glyphs/woff2/0067bba3.woff2 b/cmd/web/static/fonts/glyphs/woff2/0067bba3.woff2 new file mode 100644 index 0000000..6e205cd Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/0067bba3.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/00883b50.woff2 b/cmd/web/static/fonts/glyphs/woff2/00883b50.woff2 new file mode 100644 index 0000000..158ac72 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/00883b50.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/011ee55c.woff2 b/cmd/web/static/fonts/glyphs/woff2/011ee55c.woff2 new file mode 100644 index 0000000..558d15f Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/011ee55c.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/018f5952.woff2 b/cmd/web/static/fonts/glyphs/woff2/018f5952.woff2 new file mode 100644 index 0000000..b4fcb9d Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/018f5952.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/01e07cf4.woff2 b/cmd/web/static/fonts/glyphs/woff2/01e07cf4.woff2 new file mode 100644 index 0000000..32e296d Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/01e07cf4.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/02255308.woff2 b/cmd/web/static/fonts/glyphs/woff2/02255308.woff2 new file mode 100644 index 0000000..1233f81 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/02255308.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/023d4451.woff2 b/cmd/web/static/fonts/glyphs/woff2/023d4451.woff2 new file mode 100644 index 0000000..05b6b72 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/023d4451.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/02d0c663.woff2 b/cmd/web/static/fonts/glyphs/woff2/02d0c663.woff2 new file mode 100644 index 0000000..be3b4c6 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/02d0c663.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/048120ba.woff2 b/cmd/web/static/fonts/glyphs/woff2/048120ba.woff2 new file mode 100644 index 0000000..55cfecf Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/048120ba.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/04c9aec2.woff2 b/cmd/web/static/fonts/glyphs/woff2/04c9aec2.woff2 new file mode 100644 index 0000000..de97c15 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/04c9aec2.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/05b616e5.woff2 b/cmd/web/static/fonts/glyphs/woff2/05b616e5.woff2 new file mode 100644 index 0000000..fee5ee2 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/05b616e5.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/05ed7e4e.woff2 b/cmd/web/static/fonts/glyphs/woff2/05ed7e4e.woff2 new file mode 100644 index 0000000..7ed25dc Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/05ed7e4e.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/061e5117.woff2 b/cmd/web/static/fonts/glyphs/woff2/061e5117.woff2 new file mode 100644 index 0000000..f7a23ba Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/061e5117.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/064b9505.woff2 b/cmd/web/static/fonts/glyphs/woff2/064b9505.woff2 new file mode 100644 index 0000000..0c0d61e Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/064b9505.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/066eea7e.woff2 b/cmd/web/static/fonts/glyphs/woff2/066eea7e.woff2 new file mode 100644 index 0000000..48f2fd4 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/066eea7e.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/06fd396d.woff2 b/cmd/web/static/fonts/glyphs/woff2/06fd396d.woff2 new file mode 100644 index 0000000..23128a5 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/06fd396d.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/081f89e0.woff2 b/cmd/web/static/fonts/glyphs/woff2/081f89e0.woff2 new file mode 100644 index 0000000..9675b82 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/081f89e0.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/088eafe1.woff2 b/cmd/web/static/fonts/glyphs/woff2/088eafe1.woff2 new file mode 100644 index 0000000..e38c152 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/088eafe1.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/08e4c9db.woff2 b/cmd/web/static/fonts/glyphs/woff2/08e4c9db.woff2 new file mode 100644 index 0000000..639cb52 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/08e4c9db.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/08e9330e.woff2 b/cmd/web/static/fonts/glyphs/woff2/08e9330e.woff2 new file mode 100644 index 0000000..7962ea3 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/08e9330e.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/090f780c.woff2 b/cmd/web/static/fonts/glyphs/woff2/090f780c.woff2 new file mode 100644 index 0000000..87cc7e3 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/090f780c.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/09a35da5.woff2 b/cmd/web/static/fonts/glyphs/woff2/09a35da5.woff2 new file mode 100644 index 0000000..9cb053a Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/09a35da5.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/09afd82a.woff2 b/cmd/web/static/fonts/glyphs/woff2/09afd82a.woff2 new file mode 100644 index 0000000..43a19a4 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/09afd82a.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/09b0664c.woff2 b/cmd/web/static/fonts/glyphs/woff2/09b0664c.woff2 new file mode 100644 index 0000000..1756b3f Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/09b0664c.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/0a01e6d0.woff2 b/cmd/web/static/fonts/glyphs/woff2/0a01e6d0.woff2 new file mode 100644 index 0000000..3daa703 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/0a01e6d0.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/0a32e2fb.woff2 b/cmd/web/static/fonts/glyphs/woff2/0a32e2fb.woff2 new file mode 100644 index 0000000..361a7af Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/0a32e2fb.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/0a4097e4.woff2 b/cmd/web/static/fonts/glyphs/woff2/0a4097e4.woff2 new file mode 100644 index 0000000..368682b Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/0a4097e4.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/0ac058dd.woff2 b/cmd/web/static/fonts/glyphs/woff2/0ac058dd.woff2 new file mode 100644 index 0000000..301c3b7 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/0ac058dd.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/0b12d5a0.woff2 b/cmd/web/static/fonts/glyphs/woff2/0b12d5a0.woff2 new file mode 100644 index 0000000..b5f0b87 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/0b12d5a0.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/0b4fc343.woff2 b/cmd/web/static/fonts/glyphs/woff2/0b4fc343.woff2 new file mode 100644 index 0000000..d14b77d Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/0b4fc343.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/0bcc804b.woff2 b/cmd/web/static/fonts/glyphs/woff2/0bcc804b.woff2 new file mode 100644 index 0000000..52813e0 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/0bcc804b.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/0c40016a.woff2 b/cmd/web/static/fonts/glyphs/woff2/0c40016a.woff2 new file mode 100644 index 0000000..020a7f3 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/0c40016a.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/0ca412f2.woff2 b/cmd/web/static/fonts/glyphs/woff2/0ca412f2.woff2 new file mode 100644 index 0000000..bde2d08 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/0ca412f2.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/0cbb9805.woff2 b/cmd/web/static/fonts/glyphs/woff2/0cbb9805.woff2 new file mode 100644 index 0000000..9afe4c5 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/0cbb9805.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/0cc88965.woff2 b/cmd/web/static/fonts/glyphs/woff2/0cc88965.woff2 new file mode 100644 index 0000000..755880b Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/0cc88965.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/0cf3a20b.woff2 b/cmd/web/static/fonts/glyphs/woff2/0cf3a20b.woff2 new file mode 100644 index 0000000..a031524 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/0cf3a20b.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/0cfc2998.woff2 b/cmd/web/static/fonts/glyphs/woff2/0cfc2998.woff2 new file mode 100644 index 0000000..7b65713 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/0cfc2998.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/0d085f1c.woff2 b/cmd/web/static/fonts/glyphs/woff2/0d085f1c.woff2 new file mode 100644 index 0000000..639c6cc Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/0d085f1c.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/0d26bbc7.woff2 b/cmd/web/static/fonts/glyphs/woff2/0d26bbc7.woff2 new file mode 100644 index 0000000..69ff446 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/0d26bbc7.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/0d9537d2.woff2 b/cmd/web/static/fonts/glyphs/woff2/0d9537d2.woff2 new file mode 100644 index 0000000..2cc0231 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/0d9537d2.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/0e779307.woff2 b/cmd/web/static/fonts/glyphs/woff2/0e779307.woff2 new file mode 100644 index 0000000..3f4c5a2 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/0e779307.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/0ecabbc7.woff2 b/cmd/web/static/fonts/glyphs/woff2/0ecabbc7.woff2 new file mode 100644 index 0000000..1b93ab1 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/0ecabbc7.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/0f971447.woff2 b/cmd/web/static/fonts/glyphs/woff2/0f971447.woff2 new file mode 100644 index 0000000..d6d5e79 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/0f971447.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/0ff7e3fd.woff2 b/cmd/web/static/fonts/glyphs/woff2/0ff7e3fd.woff2 new file mode 100644 index 0000000..2302c83 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/0ff7e3fd.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/10350c93.woff2 b/cmd/web/static/fonts/glyphs/woff2/10350c93.woff2 new file mode 100644 index 0000000..110c715 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/10350c93.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/1079bbd9.woff2 b/cmd/web/static/fonts/glyphs/woff2/1079bbd9.woff2 new file mode 100644 index 0000000..5070e04 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/1079bbd9.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/1098551a.woff2 b/cmd/web/static/fonts/glyphs/woff2/1098551a.woff2 new file mode 100644 index 0000000..5b0834e Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/1098551a.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/110df6cd.woff2 b/cmd/web/static/fonts/glyphs/woff2/110df6cd.woff2 new file mode 100644 index 0000000..bc2787f Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/110df6cd.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/114520c4.woff2 b/cmd/web/static/fonts/glyphs/woff2/114520c4.woff2 new file mode 100644 index 0000000..96d29ca Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/114520c4.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/1165e24b.woff2 b/cmd/web/static/fonts/glyphs/woff2/1165e24b.woff2 new file mode 100644 index 0000000..6132430 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/1165e24b.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/117dc215.woff2 b/cmd/web/static/fonts/glyphs/woff2/117dc215.woff2 new file mode 100644 index 0000000..3d17d07 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/117dc215.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/11805c1a.woff2 b/cmd/web/static/fonts/glyphs/woff2/11805c1a.woff2 new file mode 100644 index 0000000..8c7e385 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/11805c1a.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/11c88fa3.woff2 b/cmd/web/static/fonts/glyphs/woff2/11c88fa3.woff2 new file mode 100644 index 0000000..d651255 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/11c88fa3.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/11d82ab4.woff2 b/cmd/web/static/fonts/glyphs/woff2/11d82ab4.woff2 new file mode 100644 index 0000000..346e9d0 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/11d82ab4.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/120564eb.woff2 b/cmd/web/static/fonts/glyphs/woff2/120564eb.woff2 new file mode 100644 index 0000000..bb5169d Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/120564eb.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/125fe922.woff2 b/cmd/web/static/fonts/glyphs/woff2/125fe922.woff2 new file mode 100644 index 0000000..37a520a Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/125fe922.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/129ec899.woff2 b/cmd/web/static/fonts/glyphs/woff2/129ec899.woff2 new file mode 100644 index 0000000..311cf3a Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/129ec899.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/12c373f3.woff2 b/cmd/web/static/fonts/glyphs/woff2/12c373f3.woff2 new file mode 100644 index 0000000..6399044 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/12c373f3.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/12cd5e20.woff2 b/cmd/web/static/fonts/glyphs/woff2/12cd5e20.woff2 new file mode 100644 index 0000000..f7df407 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/12cd5e20.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/12d9f10f.woff2 b/cmd/web/static/fonts/glyphs/woff2/12d9f10f.woff2 new file mode 100644 index 0000000..606b668 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/12d9f10f.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/131b3834.woff2 b/cmd/web/static/fonts/glyphs/woff2/131b3834.woff2 new file mode 100644 index 0000000..fb3ceae Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/131b3834.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/131ebb37.woff2 b/cmd/web/static/fonts/glyphs/woff2/131ebb37.woff2 new file mode 100644 index 0000000..6b7b8aa Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/131ebb37.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/13753541.woff2 b/cmd/web/static/fonts/glyphs/woff2/13753541.woff2 new file mode 100644 index 0000000..4e8fa75 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/13753541.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/1394a474.woff2 b/cmd/web/static/fonts/glyphs/woff2/1394a474.woff2 new file mode 100644 index 0000000..d2aaf62 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/1394a474.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/13b487b1.woff2 b/cmd/web/static/fonts/glyphs/woff2/13b487b1.woff2 new file mode 100644 index 0000000..9f3d523 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/13b487b1.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/14880f85.woff2 b/cmd/web/static/fonts/glyphs/woff2/14880f85.woff2 new file mode 100644 index 0000000..4c27bd4 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/14880f85.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/15802da1.woff2 b/cmd/web/static/fonts/glyphs/woff2/15802da1.woff2 new file mode 100644 index 0000000..a3702cd Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/15802da1.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/159ee498.woff2 b/cmd/web/static/fonts/glyphs/woff2/159ee498.woff2 new file mode 100644 index 0000000..55e01e5 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/159ee498.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/167004d8.woff2 b/cmd/web/static/fonts/glyphs/woff2/167004d8.woff2 new file mode 100644 index 0000000..116e727 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/167004d8.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/16ed590a.woff2 b/cmd/web/static/fonts/glyphs/woff2/16ed590a.woff2 new file mode 100644 index 0000000..3b49f02 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/16ed590a.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/172e6f01.woff2 b/cmd/web/static/fonts/glyphs/woff2/172e6f01.woff2 new file mode 100644 index 0000000..ac1f994 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/172e6f01.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/1778d94c.woff2 b/cmd/web/static/fonts/glyphs/woff2/1778d94c.woff2 new file mode 100644 index 0000000..9ded92a Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/1778d94c.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/177d0611.woff2 b/cmd/web/static/fonts/glyphs/woff2/177d0611.woff2 new file mode 100644 index 0000000..26e6ee6 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/177d0611.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/179f13d3.woff2 b/cmd/web/static/fonts/glyphs/woff2/179f13d3.woff2 new file mode 100644 index 0000000..3f64134 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/179f13d3.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/17a7a115.woff2 b/cmd/web/static/fonts/glyphs/woff2/17a7a115.woff2 new file mode 100644 index 0000000..91fd93e Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/17a7a115.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/1817efca.woff2 b/cmd/web/static/fonts/glyphs/woff2/1817efca.woff2 new file mode 100644 index 0000000..01ab6a2 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/1817efca.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/1937cd98.woff2 b/cmd/web/static/fonts/glyphs/woff2/1937cd98.woff2 new file mode 100644 index 0000000..fd86662 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/1937cd98.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/199aab73.woff2 b/cmd/web/static/fonts/glyphs/woff2/199aab73.woff2 new file mode 100644 index 0000000..5549974 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/199aab73.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/19f8d5af.woff2 b/cmd/web/static/fonts/glyphs/woff2/19f8d5af.woff2 new file mode 100644 index 0000000..9d58b10 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/19f8d5af.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/1a54066a.woff2 b/cmd/web/static/fonts/glyphs/woff2/1a54066a.woff2 new file mode 100644 index 0000000..dc94e67 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/1a54066a.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/1a7920cb.woff2 b/cmd/web/static/fonts/glyphs/woff2/1a7920cb.woff2 new file mode 100644 index 0000000..5136326 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/1a7920cb.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/1a797de5.woff2 b/cmd/web/static/fonts/glyphs/woff2/1a797de5.woff2 new file mode 100644 index 0000000..9cf6099 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/1a797de5.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/1a7bcf02.woff2 b/cmd/web/static/fonts/glyphs/woff2/1a7bcf02.woff2 new file mode 100644 index 0000000..31374a5 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/1a7bcf02.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/1a8afe19.woff2 b/cmd/web/static/fonts/glyphs/woff2/1a8afe19.woff2 new file mode 100644 index 0000000..c1fc929 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/1a8afe19.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/1a9e5d1a.woff2 b/cmd/web/static/fonts/glyphs/woff2/1a9e5d1a.woff2 new file mode 100644 index 0000000..cff7dc8 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/1a9e5d1a.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/1b07c59f.woff2 b/cmd/web/static/fonts/glyphs/woff2/1b07c59f.woff2 new file mode 100644 index 0000000..db9bd42 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/1b07c59f.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/1b180f14.woff2 b/cmd/web/static/fonts/glyphs/woff2/1b180f14.woff2 new file mode 100644 index 0000000..9384544 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/1b180f14.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/1b7ba367.woff2 b/cmd/web/static/fonts/glyphs/woff2/1b7ba367.woff2 new file mode 100644 index 0000000..e2c1bda Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/1b7ba367.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/1ca00690.woff2 b/cmd/web/static/fonts/glyphs/woff2/1ca00690.woff2 new file mode 100644 index 0000000..494aa66 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/1ca00690.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/1cc31435.woff2 b/cmd/web/static/fonts/glyphs/woff2/1cc31435.woff2 new file mode 100644 index 0000000..6b99e60 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/1cc31435.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/1cd81072.woff2 b/cmd/web/static/fonts/glyphs/woff2/1cd81072.woff2 new file mode 100644 index 0000000..97242b0 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/1cd81072.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/1d31d67a.woff2 b/cmd/web/static/fonts/glyphs/woff2/1d31d67a.woff2 new file mode 100644 index 0000000..3d80515 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/1d31d67a.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/1d3e9975.woff2 b/cmd/web/static/fonts/glyphs/woff2/1d3e9975.woff2 new file mode 100644 index 0000000..124ac9b Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/1d3e9975.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/1d45862b.woff2 b/cmd/web/static/fonts/glyphs/woff2/1d45862b.woff2 new file mode 100644 index 0000000..3877980 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/1d45862b.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/1df9ac89.woff2 b/cmd/web/static/fonts/glyphs/woff2/1df9ac89.woff2 new file mode 100644 index 0000000..e54359b Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/1df9ac89.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/1e143288.woff2 b/cmd/web/static/fonts/glyphs/woff2/1e143288.woff2 new file mode 100644 index 0000000..52e14fe Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/1e143288.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/1e3a5f47.woff2 b/cmd/web/static/fonts/glyphs/woff2/1e3a5f47.woff2 new file mode 100644 index 0000000..6ba4df2 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/1e3a5f47.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/1ea52dfd.woff2 b/cmd/web/static/fonts/glyphs/woff2/1ea52dfd.woff2 new file mode 100644 index 0000000..3ef50ae Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/1ea52dfd.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/1eb35b35.woff2 b/cmd/web/static/fonts/glyphs/woff2/1eb35b35.woff2 new file mode 100644 index 0000000..bfa1b55 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/1eb35b35.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/1fd6b062.woff2 b/cmd/web/static/fonts/glyphs/woff2/1fd6b062.woff2 new file mode 100644 index 0000000..3e3145d Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/1fd6b062.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/208046b5.woff2 b/cmd/web/static/fonts/glyphs/woff2/208046b5.woff2 new file mode 100644 index 0000000..7eac9ae Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/208046b5.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/20b835b7.woff2 b/cmd/web/static/fonts/glyphs/woff2/20b835b7.woff2 new file mode 100644 index 0000000..c7e95b0 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/20b835b7.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/20f9b6e3.woff2 b/cmd/web/static/fonts/glyphs/woff2/20f9b6e3.woff2 new file mode 100644 index 0000000..04fed6b Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/20f9b6e3.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/21619e9c.woff2 b/cmd/web/static/fonts/glyphs/woff2/21619e9c.woff2 new file mode 100644 index 0000000..a220c74 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/21619e9c.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/2163c4cf.woff2 b/cmd/web/static/fonts/glyphs/woff2/2163c4cf.woff2 new file mode 100644 index 0000000..a33303d Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/2163c4cf.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/218e296f.woff2 b/cmd/web/static/fonts/glyphs/woff2/218e296f.woff2 new file mode 100644 index 0000000..02e4f72 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/218e296f.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/21a02826.woff2 b/cmd/web/static/fonts/glyphs/woff2/21a02826.woff2 new file mode 100644 index 0000000..14e1b68 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/21a02826.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/2200df99.woff2 b/cmd/web/static/fonts/glyphs/woff2/2200df99.woff2 new file mode 100644 index 0000000..8dc40d4 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/2200df99.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/22293ce5.woff2 b/cmd/web/static/fonts/glyphs/woff2/22293ce5.woff2 new file mode 100644 index 0000000..463eeeb Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/22293ce5.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/22c6ed00.woff2 b/cmd/web/static/fonts/glyphs/woff2/22c6ed00.woff2 new file mode 100644 index 0000000..3cae26d Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/22c6ed00.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/23b476b4.woff2 b/cmd/web/static/fonts/glyphs/woff2/23b476b4.woff2 new file mode 100644 index 0000000..8f72741 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/23b476b4.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/2422dc89.woff2 b/cmd/web/static/fonts/glyphs/woff2/2422dc89.woff2 new file mode 100644 index 0000000..2034325 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/2422dc89.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/246660f5.woff2 b/cmd/web/static/fonts/glyphs/woff2/246660f5.woff2 new file mode 100644 index 0000000..cf95567 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/246660f5.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/2489d00d.woff2 b/cmd/web/static/fonts/glyphs/woff2/2489d00d.woff2 new file mode 100644 index 0000000..184e348 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/2489d00d.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/24a80660.woff2 b/cmd/web/static/fonts/glyphs/woff2/24a80660.woff2 new file mode 100644 index 0000000..2929b83 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/24a80660.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/24cd796b.woff2 b/cmd/web/static/fonts/glyphs/woff2/24cd796b.woff2 new file mode 100644 index 0000000..82c5e5a Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/24cd796b.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/24d18e39.woff2 b/cmd/web/static/fonts/glyphs/woff2/24d18e39.woff2 new file mode 100644 index 0000000..3db8fcc Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/24d18e39.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/24e7e96e.woff2 b/cmd/web/static/fonts/glyphs/woff2/24e7e96e.woff2 new file mode 100644 index 0000000..87b704e Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/24e7e96e.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/250eac5a.woff2 b/cmd/web/static/fonts/glyphs/woff2/250eac5a.woff2 new file mode 100644 index 0000000..e53ce5a Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/250eac5a.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/252bbda4.woff2 b/cmd/web/static/fonts/glyphs/woff2/252bbda4.woff2 new file mode 100644 index 0000000..f5c512d Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/252bbda4.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/254c8943.woff2 b/cmd/web/static/fonts/glyphs/woff2/254c8943.woff2 new file mode 100644 index 0000000..48942b4 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/254c8943.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/25ba326c.woff2 b/cmd/web/static/fonts/glyphs/woff2/25ba326c.woff2 new file mode 100644 index 0000000..7c69ad2 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/25ba326c.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/25ea7b82.woff2 b/cmd/web/static/fonts/glyphs/woff2/25ea7b82.woff2 new file mode 100644 index 0000000..237da42 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/25ea7b82.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/25eb254d.woff2 b/cmd/web/static/fonts/glyphs/woff2/25eb254d.woff2 new file mode 100644 index 0000000..1758226 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/25eb254d.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/264d968f.woff2 b/cmd/web/static/fonts/glyphs/woff2/264d968f.woff2 new file mode 100644 index 0000000..21b8d17 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/264d968f.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/26fc4657.woff2 b/cmd/web/static/fonts/glyphs/woff2/26fc4657.woff2 new file mode 100644 index 0000000..e7fe2ae Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/26fc4657.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/282e3874.woff2 b/cmd/web/static/fonts/glyphs/woff2/282e3874.woff2 new file mode 100644 index 0000000..0e9fe72 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/282e3874.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/2849840b.woff2 b/cmd/web/static/fonts/glyphs/woff2/2849840b.woff2 new file mode 100644 index 0000000..1f7fe3e Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/2849840b.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/288dafa6.woff2 b/cmd/web/static/fonts/glyphs/woff2/288dafa6.woff2 new file mode 100644 index 0000000..c84567e Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/288dafa6.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/2928cfa1.woff2 b/cmd/web/static/fonts/glyphs/woff2/2928cfa1.woff2 new file mode 100644 index 0000000..c4cd53f Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/2928cfa1.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/297959f6.woff2 b/cmd/web/static/fonts/glyphs/woff2/297959f6.woff2 new file mode 100644 index 0000000..fd5d976 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/297959f6.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/29ef8c3a.woff2 b/cmd/web/static/fonts/glyphs/woff2/29ef8c3a.woff2 new file mode 100644 index 0000000..7d2a59d Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/29ef8c3a.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/2a4ae11d.woff2 b/cmd/web/static/fonts/glyphs/woff2/2a4ae11d.woff2 new file mode 100644 index 0000000..b93dd90 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/2a4ae11d.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/2a889c21.woff2 b/cmd/web/static/fonts/glyphs/woff2/2a889c21.woff2 new file mode 100644 index 0000000..e7323da Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/2a889c21.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/2a96e401.woff2 b/cmd/web/static/fonts/glyphs/woff2/2a96e401.woff2 new file mode 100644 index 0000000..6c026ff Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/2a96e401.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/2a9dc20c.woff2 b/cmd/web/static/fonts/glyphs/woff2/2a9dc20c.woff2 new file mode 100644 index 0000000..c32e7a0 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/2a9dc20c.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/2ae6c3ff.woff2 b/cmd/web/static/fonts/glyphs/woff2/2ae6c3ff.woff2 new file mode 100644 index 0000000..6222d84 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/2ae6c3ff.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/2b4b2b6f.woff2 b/cmd/web/static/fonts/glyphs/woff2/2b4b2b6f.woff2 new file mode 100644 index 0000000..7cf3515 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/2b4b2b6f.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/2b52c387.woff2 b/cmd/web/static/fonts/glyphs/woff2/2b52c387.woff2 new file mode 100644 index 0000000..841edc4 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/2b52c387.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/2bd2fc24.woff2 b/cmd/web/static/fonts/glyphs/woff2/2bd2fc24.woff2 new file mode 100644 index 0000000..d2adf1f Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/2bd2fc24.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/2be8c581.woff2 b/cmd/web/static/fonts/glyphs/woff2/2be8c581.woff2 new file mode 100644 index 0000000..e4b592e Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/2be8c581.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/2c977e31.woff2 b/cmd/web/static/fonts/glyphs/woff2/2c977e31.woff2 new file mode 100644 index 0000000..093163f Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/2c977e31.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/2cee68c5.woff2 b/cmd/web/static/fonts/glyphs/woff2/2cee68c5.woff2 new file mode 100644 index 0000000..692b71d Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/2cee68c5.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/2d027c9d.woff2 b/cmd/web/static/fonts/glyphs/woff2/2d027c9d.woff2 new file mode 100644 index 0000000..6f655ae Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/2d027c9d.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/2d2cf221.woff2 b/cmd/web/static/fonts/glyphs/woff2/2d2cf221.woff2 new file mode 100644 index 0000000..6f24d66 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/2d2cf221.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/2d5cb25e.woff2 b/cmd/web/static/fonts/glyphs/woff2/2d5cb25e.woff2 new file mode 100644 index 0000000..42760b1 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/2d5cb25e.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/2d7aa05f.woff2 b/cmd/web/static/fonts/glyphs/woff2/2d7aa05f.woff2 new file mode 100644 index 0000000..8de82e2 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/2d7aa05f.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/2db5fddf.woff2 b/cmd/web/static/fonts/glyphs/woff2/2db5fddf.woff2 new file mode 100644 index 0000000..917f687 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/2db5fddf.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/2dc572da.woff2 b/cmd/web/static/fonts/glyphs/woff2/2dc572da.woff2 new file mode 100644 index 0000000..4ad6f6f Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/2dc572da.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/2e27c6c1.woff2 b/cmd/web/static/fonts/glyphs/woff2/2e27c6c1.woff2 new file mode 100644 index 0000000..70a4a00 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/2e27c6c1.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/2e5887ef.woff2 b/cmd/web/static/fonts/glyphs/woff2/2e5887ef.woff2 new file mode 100644 index 0000000..5b64142 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/2e5887ef.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/2ed7bd06.woff2 b/cmd/web/static/fonts/glyphs/woff2/2ed7bd06.woff2 new file mode 100644 index 0000000..31c9a0f Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/2ed7bd06.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/2ef4a942.woff2 b/cmd/web/static/fonts/glyphs/woff2/2ef4a942.woff2 new file mode 100644 index 0000000..2884874 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/2ef4a942.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/2f84e1d2.woff2 b/cmd/web/static/fonts/glyphs/woff2/2f84e1d2.woff2 new file mode 100644 index 0000000..e877098 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/2f84e1d2.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/2fd2e914.woff2 b/cmd/web/static/fonts/glyphs/woff2/2fd2e914.woff2 new file mode 100644 index 0000000..d6b23b1 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/2fd2e914.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/30042e01.woff2 b/cmd/web/static/fonts/glyphs/woff2/30042e01.woff2 new file mode 100644 index 0000000..97d9dfe Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/30042e01.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/300b40cf.woff2 b/cmd/web/static/fonts/glyphs/woff2/300b40cf.woff2 new file mode 100644 index 0000000..5a1f235 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/300b40cf.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/3069c5e2.woff2 b/cmd/web/static/fonts/glyphs/woff2/3069c5e2.woff2 new file mode 100644 index 0000000..b3cf94a Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/3069c5e2.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/30d929ef.woff2 b/cmd/web/static/fonts/glyphs/woff2/30d929ef.woff2 new file mode 100644 index 0000000..fc20852 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/30d929ef.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/311bcfdc.woff2 b/cmd/web/static/fonts/glyphs/woff2/311bcfdc.woff2 new file mode 100644 index 0000000..4ecc808 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/311bcfdc.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/31234fc4.woff2 b/cmd/web/static/fonts/glyphs/woff2/31234fc4.woff2 new file mode 100644 index 0000000..3d317c5 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/31234fc4.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/315c66f8.woff2 b/cmd/web/static/fonts/glyphs/woff2/315c66f8.woff2 new file mode 100644 index 0000000..ddaf20e Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/315c66f8.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/31722822.woff2 b/cmd/web/static/fonts/glyphs/woff2/31722822.woff2 new file mode 100644 index 0000000..f561dc8 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/31722822.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/31782ddd.woff2 b/cmd/web/static/fonts/glyphs/woff2/31782ddd.woff2 new file mode 100644 index 0000000..f52b772 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/31782ddd.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/322840cb.woff2 b/cmd/web/static/fonts/glyphs/woff2/322840cb.woff2 new file mode 100644 index 0000000..bab057a Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/322840cb.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/323a4cec.woff2 b/cmd/web/static/fonts/glyphs/woff2/323a4cec.woff2 new file mode 100644 index 0000000..8849477 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/323a4cec.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/325a5ac2.woff2 b/cmd/web/static/fonts/glyphs/woff2/325a5ac2.woff2 new file mode 100644 index 0000000..4ccaabc Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/325a5ac2.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/328fad59.woff2 b/cmd/web/static/fonts/glyphs/woff2/328fad59.woff2 new file mode 100644 index 0000000..bad5233 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/328fad59.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/32c69208.woff2 b/cmd/web/static/fonts/glyphs/woff2/32c69208.woff2 new file mode 100644 index 0000000..5165f16 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/32c69208.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/32cb1e15.woff2 b/cmd/web/static/fonts/glyphs/woff2/32cb1e15.woff2 new file mode 100644 index 0000000..c09a593 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/32cb1e15.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/34152b57.woff2 b/cmd/web/static/fonts/glyphs/woff2/34152b57.woff2 new file mode 100644 index 0000000..74b2bd6 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/34152b57.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/34833f66.woff2 b/cmd/web/static/fonts/glyphs/woff2/34833f66.woff2 new file mode 100644 index 0000000..c2843da Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/34833f66.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/34a01d7d.woff2 b/cmd/web/static/fonts/glyphs/woff2/34a01d7d.woff2 new file mode 100644 index 0000000..54f3754 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/34a01d7d.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/34d7ab4a.woff2 b/cmd/web/static/fonts/glyphs/woff2/34d7ab4a.woff2 new file mode 100644 index 0000000..39a691e Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/34d7ab4a.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/3506ae92.woff2 b/cmd/web/static/fonts/glyphs/woff2/3506ae92.woff2 new file mode 100644 index 0000000..5ad69fb Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/3506ae92.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/3547c23d.woff2 b/cmd/web/static/fonts/glyphs/woff2/3547c23d.woff2 new file mode 100644 index 0000000..accec41 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/3547c23d.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/354ca571.woff2 b/cmd/web/static/fonts/glyphs/woff2/354ca571.woff2 new file mode 100644 index 0000000..b46a62b Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/354ca571.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/35e73fc6.woff2 b/cmd/web/static/fonts/glyphs/woff2/35e73fc6.woff2 new file mode 100644 index 0000000..bfac623 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/35e73fc6.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/36728431.woff2 b/cmd/web/static/fonts/glyphs/woff2/36728431.woff2 new file mode 100644 index 0000000..b0f4418 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/36728431.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/36a3295a.woff2 b/cmd/web/static/fonts/glyphs/woff2/36a3295a.woff2 new file mode 100644 index 0000000..dfef0d8 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/36a3295a.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/36ac1140.woff2 b/cmd/web/static/fonts/glyphs/woff2/36ac1140.woff2 new file mode 100644 index 0000000..9155361 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/36ac1140.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/36bc1a9d.woff2 b/cmd/web/static/fonts/glyphs/woff2/36bc1a9d.woff2 new file mode 100644 index 0000000..31d3f0d Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/36bc1a9d.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/36bf9ec5.woff2 b/cmd/web/static/fonts/glyphs/woff2/36bf9ec5.woff2 new file mode 100644 index 0000000..b6d97e0 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/36bf9ec5.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/36fb96fc.woff2 b/cmd/web/static/fonts/glyphs/woff2/36fb96fc.woff2 new file mode 100644 index 0000000..e61cca6 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/36fb96fc.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/370da5ae.woff2 b/cmd/web/static/fonts/glyphs/woff2/370da5ae.woff2 new file mode 100644 index 0000000..f93aa8c Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/370da5ae.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/37481bd1.woff2 b/cmd/web/static/fonts/glyphs/woff2/37481bd1.woff2 new file mode 100644 index 0000000..1ab72c2 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/37481bd1.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/385855c8.woff2 b/cmd/web/static/fonts/glyphs/woff2/385855c8.woff2 new file mode 100644 index 0000000..fa4bb51 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/385855c8.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/38686314.woff2 b/cmd/web/static/fonts/glyphs/woff2/38686314.woff2 new file mode 100644 index 0000000..d709fa0 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/38686314.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/389e0153.woff2 b/cmd/web/static/fonts/glyphs/woff2/389e0153.woff2 new file mode 100644 index 0000000..a0fdede Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/389e0153.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/38dcac7f.woff2 b/cmd/web/static/fonts/glyphs/woff2/38dcac7f.woff2 new file mode 100644 index 0000000..346b6c8 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/38dcac7f.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/393bcee2.woff2 b/cmd/web/static/fonts/glyphs/woff2/393bcee2.woff2 new file mode 100644 index 0000000..27334a1 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/393bcee2.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/39b74aca.woff2 b/cmd/web/static/fonts/glyphs/woff2/39b74aca.woff2 new file mode 100644 index 0000000..fc1900a Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/39b74aca.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/3a52ed45.woff2 b/cmd/web/static/fonts/glyphs/woff2/3a52ed45.woff2 new file mode 100644 index 0000000..3d9bc04 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/3a52ed45.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/3a530c59.woff2 b/cmd/web/static/fonts/glyphs/woff2/3a530c59.woff2 new file mode 100644 index 0000000..9efface Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/3a530c59.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/3abbb79a.woff2 b/cmd/web/static/fonts/glyphs/woff2/3abbb79a.woff2 new file mode 100644 index 0000000..b7f2b74 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/3abbb79a.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/3ac9bbf7.woff2 b/cmd/web/static/fonts/glyphs/woff2/3ac9bbf7.woff2 new file mode 100644 index 0000000..7a6f299 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/3ac9bbf7.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/3b064daf.woff2 b/cmd/web/static/fonts/glyphs/woff2/3b064daf.woff2 new file mode 100644 index 0000000..6560691 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/3b064daf.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/3b5ff71f.woff2 b/cmd/web/static/fonts/glyphs/woff2/3b5ff71f.woff2 new file mode 100644 index 0000000..e60411f Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/3b5ff71f.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/3b6b07e4.woff2 b/cmd/web/static/fonts/glyphs/woff2/3b6b07e4.woff2 new file mode 100644 index 0000000..c972379 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/3b6b07e4.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/3b7180f4.woff2 b/cmd/web/static/fonts/glyphs/woff2/3b7180f4.woff2 new file mode 100644 index 0000000..51a5358 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/3b7180f4.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/3bd53fee.woff2 b/cmd/web/static/fonts/glyphs/woff2/3bd53fee.woff2 new file mode 100644 index 0000000..fcf7694 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/3bd53fee.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/3c678666.woff2 b/cmd/web/static/fonts/glyphs/woff2/3c678666.woff2 new file mode 100644 index 0000000..a116851 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/3c678666.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/3d32bff5.woff2 b/cmd/web/static/fonts/glyphs/woff2/3d32bff5.woff2 new file mode 100644 index 0000000..e82d826 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/3d32bff5.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/3e131fc2.woff2 b/cmd/web/static/fonts/glyphs/woff2/3e131fc2.woff2 new file mode 100644 index 0000000..9fc0cea Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/3e131fc2.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/3e670521.woff2 b/cmd/web/static/fonts/glyphs/woff2/3e670521.woff2 new file mode 100644 index 0000000..57c471a Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/3e670521.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/3eed650c.woff2 b/cmd/web/static/fonts/glyphs/woff2/3eed650c.woff2 new file mode 100644 index 0000000..c1e9cd9 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/3eed650c.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/3f29fe8f.woff2 b/cmd/web/static/fonts/glyphs/woff2/3f29fe8f.woff2 new file mode 100644 index 0000000..a138f57 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/3f29fe8f.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/3f357a26.woff2 b/cmd/web/static/fonts/glyphs/woff2/3f357a26.woff2 new file mode 100644 index 0000000..db02133 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/3f357a26.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/3f3d19ae.woff2 b/cmd/web/static/fonts/glyphs/woff2/3f3d19ae.woff2 new file mode 100644 index 0000000..8175856 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/3f3d19ae.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/3fc14a91.woff2 b/cmd/web/static/fonts/glyphs/woff2/3fc14a91.woff2 new file mode 100644 index 0000000..0067a5c Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/3fc14a91.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/4003be53.woff2 b/cmd/web/static/fonts/glyphs/woff2/4003be53.woff2 new file mode 100644 index 0000000..88d1925 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/4003be53.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/4062bc3a.woff2 b/cmd/web/static/fonts/glyphs/woff2/4062bc3a.woff2 new file mode 100644 index 0000000..5156115 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/4062bc3a.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/41038137.woff2 b/cmd/web/static/fonts/glyphs/woff2/41038137.woff2 new file mode 100644 index 0000000..6cb4051 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/41038137.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/4129e2ed.woff2 b/cmd/web/static/fonts/glyphs/woff2/4129e2ed.woff2 new file mode 100644 index 0000000..dce47b8 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/4129e2ed.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/41692e5f.woff2 b/cmd/web/static/fonts/glyphs/woff2/41692e5f.woff2 new file mode 100644 index 0000000..d3cc3fe Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/41692e5f.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/41e7e67b.woff2 b/cmd/web/static/fonts/glyphs/woff2/41e7e67b.woff2 new file mode 100644 index 0000000..61b7c8f Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/41e7e67b.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/42130fd7.woff2 b/cmd/web/static/fonts/glyphs/woff2/42130fd7.woff2 new file mode 100644 index 0000000..a43458e Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/42130fd7.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/4259b075.woff2 b/cmd/web/static/fonts/glyphs/woff2/4259b075.woff2 new file mode 100644 index 0000000..a4b17db Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/4259b075.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/430cca2f.woff2 b/cmd/web/static/fonts/glyphs/woff2/430cca2f.woff2 new file mode 100644 index 0000000..3d731eb Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/430cca2f.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/4321166d.woff2 b/cmd/web/static/fonts/glyphs/woff2/4321166d.woff2 new file mode 100644 index 0000000..93f0ab7 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/4321166d.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/43664073.woff2 b/cmd/web/static/fonts/glyphs/woff2/43664073.woff2 new file mode 100644 index 0000000..acf5201 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/43664073.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/439e5c3d.woff2 b/cmd/web/static/fonts/glyphs/woff2/439e5c3d.woff2 new file mode 100644 index 0000000..0c7bf0d Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/439e5c3d.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/4477f406.woff2 b/cmd/web/static/fonts/glyphs/woff2/4477f406.woff2 new file mode 100644 index 0000000..ef728db Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/4477f406.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/455032d0.woff2 b/cmd/web/static/fonts/glyphs/woff2/455032d0.woff2 new file mode 100644 index 0000000..ed994aa Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/455032d0.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/45a8e7e4.woff2 b/cmd/web/static/fonts/glyphs/woff2/45a8e7e4.woff2 new file mode 100644 index 0000000..d1c7957 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/45a8e7e4.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/462ea6a3.woff2 b/cmd/web/static/fonts/glyphs/woff2/462ea6a3.woff2 new file mode 100644 index 0000000..4c2d006 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/462ea6a3.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/463c644c.woff2 b/cmd/web/static/fonts/glyphs/woff2/463c644c.woff2 new file mode 100644 index 0000000..381b133 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/463c644c.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/46a505fd.woff2 b/cmd/web/static/fonts/glyphs/woff2/46a505fd.woff2 new file mode 100644 index 0000000..1166e31 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/46a505fd.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/47413c16.woff2 b/cmd/web/static/fonts/glyphs/woff2/47413c16.woff2 new file mode 100644 index 0000000..8f00a77 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/47413c16.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/478bc2f3.woff2 b/cmd/web/static/fonts/glyphs/woff2/478bc2f3.woff2 new file mode 100644 index 0000000..e543009 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/478bc2f3.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/47f8aa49.woff2 b/cmd/web/static/fonts/glyphs/woff2/47f8aa49.woff2 new file mode 100644 index 0000000..3563386 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/47f8aa49.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/496a7c2f.woff2 b/cmd/web/static/fonts/glyphs/woff2/496a7c2f.woff2 new file mode 100644 index 0000000..9d7793b Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/496a7c2f.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/49c0e6d5.woff2 b/cmd/web/static/fonts/glyphs/woff2/49c0e6d5.woff2 new file mode 100644 index 0000000..e2a1f31 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/49c0e6d5.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/4a1c35d5.woff2 b/cmd/web/static/fonts/glyphs/woff2/4a1c35d5.woff2 new file mode 100644 index 0000000..a167c51 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/4a1c35d5.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/4a1c4041.woff2 b/cmd/web/static/fonts/glyphs/woff2/4a1c4041.woff2 new file mode 100644 index 0000000..070cf60 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/4a1c4041.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/4a280971.woff2 b/cmd/web/static/fonts/glyphs/woff2/4a280971.woff2 new file mode 100644 index 0000000..822b49e Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/4a280971.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/4a40a88a.woff2 b/cmd/web/static/fonts/glyphs/woff2/4a40a88a.woff2 new file mode 100644 index 0000000..4bf5de9 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/4a40a88a.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/4a54867e.woff2 b/cmd/web/static/fonts/glyphs/woff2/4a54867e.woff2 new file mode 100644 index 0000000..45d3809 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/4a54867e.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/4a7c46ed.woff2 b/cmd/web/static/fonts/glyphs/woff2/4a7c46ed.woff2 new file mode 100644 index 0000000..78b401d Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/4a7c46ed.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/4a849376.woff2 b/cmd/web/static/fonts/glyphs/woff2/4a849376.woff2 new file mode 100644 index 0000000..db8d22b Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/4a849376.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/4ae1ce28.woff2 b/cmd/web/static/fonts/glyphs/woff2/4ae1ce28.woff2 new file mode 100644 index 0000000..6e1f474 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/4ae1ce28.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/4af4ef28.woff2 b/cmd/web/static/fonts/glyphs/woff2/4af4ef28.woff2 new file mode 100644 index 0000000..dfd9433 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/4af4ef28.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/4b099001.woff2 b/cmd/web/static/fonts/glyphs/woff2/4b099001.woff2 new file mode 100644 index 0000000..8dad514 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/4b099001.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/4d040d05.woff2 b/cmd/web/static/fonts/glyphs/woff2/4d040d05.woff2 new file mode 100644 index 0000000..b2f21aa Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/4d040d05.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/4d59c24a.woff2 b/cmd/web/static/fonts/glyphs/woff2/4d59c24a.woff2 new file mode 100644 index 0000000..e13ecec Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/4d59c24a.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/4d6b8b33.woff2 b/cmd/web/static/fonts/glyphs/woff2/4d6b8b33.woff2 new file mode 100644 index 0000000..8a637ca Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/4d6b8b33.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/4dc72635.woff2 b/cmd/web/static/fonts/glyphs/woff2/4dc72635.woff2 new file mode 100644 index 0000000..70b8eac Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/4dc72635.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/4e10ed5b.woff2 b/cmd/web/static/fonts/glyphs/woff2/4e10ed5b.woff2 new file mode 100644 index 0000000..5f6f710 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/4e10ed5b.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/4e1ac177.woff2 b/cmd/web/static/fonts/glyphs/woff2/4e1ac177.woff2 new file mode 100644 index 0000000..4c13ca6 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/4e1ac177.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/4e9dce28.woff2 b/cmd/web/static/fonts/glyphs/woff2/4e9dce28.woff2 new file mode 100644 index 0000000..5fb2a78 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/4e9dce28.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/4eb499b8.woff2 b/cmd/web/static/fonts/glyphs/woff2/4eb499b8.woff2 new file mode 100644 index 0000000..6844097 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/4eb499b8.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/4ee23427.woff2 b/cmd/web/static/fonts/glyphs/woff2/4ee23427.woff2 new file mode 100644 index 0000000..6f08929 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/4ee23427.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/4fd52c87.woff2 b/cmd/web/static/fonts/glyphs/woff2/4fd52c87.woff2 new file mode 100644 index 0000000..7d6c59b Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/4fd52c87.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/50b342a2.woff2 b/cmd/web/static/fonts/glyphs/woff2/50b342a2.woff2 new file mode 100644 index 0000000..cd37797 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/50b342a2.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/50f3c095.woff2 b/cmd/web/static/fonts/glyphs/woff2/50f3c095.woff2 new file mode 100644 index 0000000..3d97de6 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/50f3c095.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/511209fe.woff2 b/cmd/web/static/fonts/glyphs/woff2/511209fe.woff2 new file mode 100644 index 0000000..296d524 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/511209fe.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/516cf792.woff2 b/cmd/web/static/fonts/glyphs/woff2/516cf792.woff2 new file mode 100644 index 0000000..54a1bc8 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/516cf792.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/51792712.woff2 b/cmd/web/static/fonts/glyphs/woff2/51792712.woff2 new file mode 100644 index 0000000..f6d3927 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/51792712.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/51a7c9cb.woff2 b/cmd/web/static/fonts/glyphs/woff2/51a7c9cb.woff2 new file mode 100644 index 0000000..455b4ab Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/51a7c9cb.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/51a9fa09.woff2 b/cmd/web/static/fonts/glyphs/woff2/51a9fa09.woff2 new file mode 100644 index 0000000..f9dc94a Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/51a9fa09.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/520274a8.woff2 b/cmd/web/static/fonts/glyphs/woff2/520274a8.woff2 new file mode 100644 index 0000000..f9627bf Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/520274a8.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/525958c5.woff2 b/cmd/web/static/fonts/glyphs/woff2/525958c5.woff2 new file mode 100644 index 0000000..e2087a5 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/525958c5.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/52b1caf8.woff2 b/cmd/web/static/fonts/glyphs/woff2/52b1caf8.woff2 new file mode 100644 index 0000000..de5077e Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/52b1caf8.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/52d65af9.woff2 b/cmd/web/static/fonts/glyphs/woff2/52d65af9.woff2 new file mode 100644 index 0000000..2d51712 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/52d65af9.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/5330b47e.woff2 b/cmd/web/static/fonts/glyphs/woff2/5330b47e.woff2 new file mode 100644 index 0000000..80ad463 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/5330b47e.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/53605668.woff2 b/cmd/web/static/fonts/glyphs/woff2/53605668.woff2 new file mode 100644 index 0000000..0254ff4 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/53605668.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/53e7de8b.woff2 b/cmd/web/static/fonts/glyphs/woff2/53e7de8b.woff2 new file mode 100644 index 0000000..4a57053 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/53e7de8b.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/5454be1e.woff2 b/cmd/web/static/fonts/glyphs/woff2/5454be1e.woff2 new file mode 100644 index 0000000..5cfc9b4 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/5454be1e.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/54940801.woff2 b/cmd/web/static/fonts/glyphs/woff2/54940801.woff2 new file mode 100644 index 0000000..771391b Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/54940801.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/5496b078.woff2 b/cmd/web/static/fonts/glyphs/woff2/5496b078.woff2 new file mode 100644 index 0000000..fe79143 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/5496b078.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/55048901.woff2 b/cmd/web/static/fonts/glyphs/woff2/55048901.woff2 new file mode 100644 index 0000000..5fb0596 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/55048901.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/55092daa.woff2 b/cmd/web/static/fonts/glyphs/woff2/55092daa.woff2 new file mode 100644 index 0000000..2938364 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/55092daa.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/565212e9.woff2 b/cmd/web/static/fonts/glyphs/woff2/565212e9.woff2 new file mode 100644 index 0000000..e7e396c Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/565212e9.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/56521359.woff2 b/cmd/web/static/fonts/glyphs/woff2/56521359.woff2 new file mode 100644 index 0000000..1b8b7a3 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/56521359.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/56652a37.woff2 b/cmd/web/static/fonts/glyphs/woff2/56652a37.woff2 new file mode 100644 index 0000000..89440c1 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/56652a37.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/5685167b.woff2 b/cmd/web/static/fonts/glyphs/woff2/5685167b.woff2 new file mode 100644 index 0000000..e651782 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/5685167b.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/56c47c5a.woff2 b/cmd/web/static/fonts/glyphs/woff2/56c47c5a.woff2 new file mode 100644 index 0000000..0ae7067 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/56c47c5a.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/56ed6f41.woff2 b/cmd/web/static/fonts/glyphs/woff2/56ed6f41.woff2 new file mode 100644 index 0000000..51e4567 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/56ed6f41.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/576582f8.woff2 b/cmd/web/static/fonts/glyphs/woff2/576582f8.woff2 new file mode 100644 index 0000000..a2434fb Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/576582f8.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/578f348a.woff2 b/cmd/web/static/fonts/glyphs/woff2/578f348a.woff2 new file mode 100644 index 0000000..5bdf165 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/578f348a.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/5798f31f.woff2 b/cmd/web/static/fonts/glyphs/woff2/5798f31f.woff2 new file mode 100644 index 0000000..a83f428 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/5798f31f.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/57c37525.woff2 b/cmd/web/static/fonts/glyphs/woff2/57c37525.woff2 new file mode 100644 index 0000000..88ed0cf Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/57c37525.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/57dd141e.woff2 b/cmd/web/static/fonts/glyphs/woff2/57dd141e.woff2 new file mode 100644 index 0000000..e05c7f9 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/57dd141e.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/57eb30ea.woff2 b/cmd/web/static/fonts/glyphs/woff2/57eb30ea.woff2 new file mode 100644 index 0000000..e8ef9f5 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/57eb30ea.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/580961bd.woff2 b/cmd/web/static/fonts/glyphs/woff2/580961bd.woff2 new file mode 100644 index 0000000..6bc9312 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/580961bd.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/58c58e95.woff2 b/cmd/web/static/fonts/glyphs/woff2/58c58e95.woff2 new file mode 100644 index 0000000..3dcd3bb Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/58c58e95.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/5922a1ce.woff2 b/cmd/web/static/fonts/glyphs/woff2/5922a1ce.woff2 new file mode 100644 index 0000000..f07fe60 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/5922a1ce.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/59835a05.woff2 b/cmd/web/static/fonts/glyphs/woff2/59835a05.woff2 new file mode 100644 index 0000000..e58a676 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/59835a05.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/59d1acbe.woff2 b/cmd/web/static/fonts/glyphs/woff2/59d1acbe.woff2 new file mode 100644 index 0000000..fb21df7 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/59d1acbe.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/5b5bda30.woff2 b/cmd/web/static/fonts/glyphs/woff2/5b5bda30.woff2 new file mode 100644 index 0000000..6f329d2 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/5b5bda30.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/5b78e2cb.woff2 b/cmd/web/static/fonts/glyphs/woff2/5b78e2cb.woff2 new file mode 100644 index 0000000..77220e7 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/5b78e2cb.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/5ba710db.woff2 b/cmd/web/static/fonts/glyphs/woff2/5ba710db.woff2 new file mode 100644 index 0000000..d70db4d Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/5ba710db.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/5bdeb600.woff2 b/cmd/web/static/fonts/glyphs/woff2/5bdeb600.woff2 new file mode 100644 index 0000000..0e7af47 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/5bdeb600.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/5d77f6cd.woff2 b/cmd/web/static/fonts/glyphs/woff2/5d77f6cd.woff2 new file mode 100644 index 0000000..6153447 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/5d77f6cd.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/5d9d090a.woff2 b/cmd/web/static/fonts/glyphs/woff2/5d9d090a.woff2 new file mode 100644 index 0000000..943110d Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/5d9d090a.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/5e0938cb.woff2 b/cmd/web/static/fonts/glyphs/woff2/5e0938cb.woff2 new file mode 100644 index 0000000..81ce32c Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/5e0938cb.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/5f1cfaf4.woff2 b/cmd/web/static/fonts/glyphs/woff2/5f1cfaf4.woff2 new file mode 100644 index 0000000..3679b9b Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/5f1cfaf4.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/5f3272da.woff2 b/cmd/web/static/fonts/glyphs/woff2/5f3272da.woff2 new file mode 100644 index 0000000..212a85a Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/5f3272da.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/604eb358.woff2 b/cmd/web/static/fonts/glyphs/woff2/604eb358.woff2 new file mode 100644 index 0000000..00f9e22 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/604eb358.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/6065bb77.woff2 b/cmd/web/static/fonts/glyphs/woff2/6065bb77.woff2 new file mode 100644 index 0000000..c5d45a1 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/6065bb77.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/6166611f.woff2 b/cmd/web/static/fonts/glyphs/woff2/6166611f.woff2 new file mode 100644 index 0000000..5d3218c Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/6166611f.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/616d19f1.woff2 b/cmd/web/static/fonts/glyphs/woff2/616d19f1.woff2 new file mode 100644 index 0000000..acd944d Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/616d19f1.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/61965d02.woff2 b/cmd/web/static/fonts/glyphs/woff2/61965d02.woff2 new file mode 100644 index 0000000..9365b32 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/61965d02.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/619e1843.woff2 b/cmd/web/static/fonts/glyphs/woff2/619e1843.woff2 new file mode 100644 index 0000000..22465b1 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/619e1843.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/61b21f65.woff2 b/cmd/web/static/fonts/glyphs/woff2/61b21f65.woff2 new file mode 100644 index 0000000..05e7f6b Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/61b21f65.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/61c4be74.woff2 b/cmd/web/static/fonts/glyphs/woff2/61c4be74.woff2 new file mode 100644 index 0000000..5a22552 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/61c4be74.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/61d34932.woff2 b/cmd/web/static/fonts/glyphs/woff2/61d34932.woff2 new file mode 100644 index 0000000..327d70d Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/61d34932.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/61e075b5.woff2 b/cmd/web/static/fonts/glyphs/woff2/61e075b5.woff2 new file mode 100644 index 0000000..5f45907 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/61e075b5.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/61e4ec60.woff2 b/cmd/web/static/fonts/glyphs/woff2/61e4ec60.woff2 new file mode 100644 index 0000000..92c9005 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/61e4ec60.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/61fed715.woff2 b/cmd/web/static/fonts/glyphs/woff2/61fed715.woff2 new file mode 100644 index 0000000..07198eb Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/61fed715.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/6282768c.woff2 b/cmd/web/static/fonts/glyphs/woff2/6282768c.woff2 new file mode 100644 index 0000000..6189c26 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/6282768c.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/6302510b.woff2 b/cmd/web/static/fonts/glyphs/woff2/6302510b.woff2 new file mode 100644 index 0000000..95b1ced Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/6302510b.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/6338d88d.woff2 b/cmd/web/static/fonts/glyphs/woff2/6338d88d.woff2 new file mode 100644 index 0000000..fff4494 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/6338d88d.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/6353dd1b.woff2 b/cmd/web/static/fonts/glyphs/woff2/6353dd1b.woff2 new file mode 100644 index 0000000..a0132aa Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/6353dd1b.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/63d16b50.woff2 b/cmd/web/static/fonts/glyphs/woff2/63d16b50.woff2 new file mode 100644 index 0000000..b722837 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/63d16b50.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/6435b8b4.woff2 b/cmd/web/static/fonts/glyphs/woff2/6435b8b4.woff2 new file mode 100644 index 0000000..add89b1 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/6435b8b4.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/64bbaa0b.woff2 b/cmd/web/static/fonts/glyphs/woff2/64bbaa0b.woff2 new file mode 100644 index 0000000..6e71f11 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/64bbaa0b.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/6587b420.woff2 b/cmd/web/static/fonts/glyphs/woff2/6587b420.woff2 new file mode 100644 index 0000000..e8e93c4 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/6587b420.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/65bc5b9b.woff2 b/cmd/web/static/fonts/glyphs/woff2/65bc5b9b.woff2 new file mode 100644 index 0000000..cc7fe78 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/65bc5b9b.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/65ed8428.woff2 b/cmd/web/static/fonts/glyphs/woff2/65ed8428.woff2 new file mode 100644 index 0000000..bfc312b Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/65ed8428.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/667938fd.woff2 b/cmd/web/static/fonts/glyphs/woff2/667938fd.woff2 new file mode 100644 index 0000000..89fbcf7 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/667938fd.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/6690e503.woff2 b/cmd/web/static/fonts/glyphs/woff2/6690e503.woff2 new file mode 100644 index 0000000..09fb002 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/6690e503.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/66a94b72.woff2 b/cmd/web/static/fonts/glyphs/woff2/66a94b72.woff2 new file mode 100644 index 0000000..4882c17 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/66a94b72.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/66ef61bc.woff2 b/cmd/web/static/fonts/glyphs/woff2/66ef61bc.woff2 new file mode 100644 index 0000000..ae14614 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/66ef61bc.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/67036539.woff2 b/cmd/web/static/fonts/glyphs/woff2/67036539.woff2 new file mode 100644 index 0000000..f6be84d Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/67036539.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/6748e774.woff2 b/cmd/web/static/fonts/glyphs/woff2/6748e774.woff2 new file mode 100644 index 0000000..b39fada Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/6748e774.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/676821e3.woff2 b/cmd/web/static/fonts/glyphs/woff2/676821e3.woff2 new file mode 100644 index 0000000..5031693 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/676821e3.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/6795017c.woff2 b/cmd/web/static/fonts/glyphs/woff2/6795017c.woff2 new file mode 100644 index 0000000..6145a6b Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/6795017c.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/67fdb825.woff2 b/cmd/web/static/fonts/glyphs/woff2/67fdb825.woff2 new file mode 100644 index 0000000..f780a71 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/67fdb825.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/68243e39.woff2 b/cmd/web/static/fonts/glyphs/woff2/68243e39.woff2 new file mode 100644 index 0000000..c955be4 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/68243e39.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/6895132f.woff2 b/cmd/web/static/fonts/glyphs/woff2/6895132f.woff2 new file mode 100644 index 0000000..d6d87f9 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/6895132f.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/68a429e1.woff2 b/cmd/web/static/fonts/glyphs/woff2/68a429e1.woff2 new file mode 100644 index 0000000..57b8dc2 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/68a429e1.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/68db64d0.woff2 b/cmd/web/static/fonts/glyphs/woff2/68db64d0.woff2 new file mode 100644 index 0000000..dddc355 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/68db64d0.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/692990c2.woff2 b/cmd/web/static/fonts/glyphs/woff2/692990c2.woff2 new file mode 100644 index 0000000..e1c036a Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/692990c2.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/6961fbe3.woff2 b/cmd/web/static/fonts/glyphs/woff2/6961fbe3.woff2 new file mode 100644 index 0000000..9018230 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/6961fbe3.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/6994c18b.woff2 b/cmd/web/static/fonts/glyphs/woff2/6994c18b.woff2 new file mode 100644 index 0000000..40a6715 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/6994c18b.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/69dbef10.woff2 b/cmd/web/static/fonts/glyphs/woff2/69dbef10.woff2 new file mode 100644 index 0000000..1012c7a Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/69dbef10.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/6a4f89c1.woff2 b/cmd/web/static/fonts/glyphs/woff2/6a4f89c1.woff2 new file mode 100644 index 0000000..853d5f7 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/6a4f89c1.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/6a54a1a9.woff2 b/cmd/web/static/fonts/glyphs/woff2/6a54a1a9.woff2 new file mode 100644 index 0000000..40e3457 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/6a54a1a9.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/6a5cf79e.woff2 b/cmd/web/static/fonts/glyphs/woff2/6a5cf79e.woff2 new file mode 100644 index 0000000..4a3c3f2 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/6a5cf79e.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/6a836616.woff2 b/cmd/web/static/fonts/glyphs/woff2/6a836616.woff2 new file mode 100644 index 0000000..19b5553 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/6a836616.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/6aa52642.woff2 b/cmd/web/static/fonts/glyphs/woff2/6aa52642.woff2 new file mode 100644 index 0000000..130bd45 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/6aa52642.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/6b36c863.woff2 b/cmd/web/static/fonts/glyphs/woff2/6b36c863.woff2 new file mode 100644 index 0000000..7cec257 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/6b36c863.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/6bb79e9f.woff2 b/cmd/web/static/fonts/glyphs/woff2/6bb79e9f.woff2 new file mode 100644 index 0000000..fca5301 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/6bb79e9f.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/6c1508be.woff2 b/cmd/web/static/fonts/glyphs/woff2/6c1508be.woff2 new file mode 100644 index 0000000..d52021e Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/6c1508be.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/6c187b99.woff2 b/cmd/web/static/fonts/glyphs/woff2/6c187b99.woff2 new file mode 100644 index 0000000..662903b Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/6c187b99.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/6cf59e55.woff2 b/cmd/web/static/fonts/glyphs/woff2/6cf59e55.woff2 new file mode 100644 index 0000000..4a2e0f7 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/6cf59e55.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/6cf5db04.woff2 b/cmd/web/static/fonts/glyphs/woff2/6cf5db04.woff2 new file mode 100644 index 0000000..db60f36 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/6cf5db04.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/6d4a4c73.woff2 b/cmd/web/static/fonts/glyphs/woff2/6d4a4c73.woff2 new file mode 100644 index 0000000..0911006 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/6d4a4c73.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/6da3182a.woff2 b/cmd/web/static/fonts/glyphs/woff2/6da3182a.woff2 new file mode 100644 index 0000000..47c45ab Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/6da3182a.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/6db9cbfa.woff2 b/cmd/web/static/fonts/glyphs/woff2/6db9cbfa.woff2 new file mode 100644 index 0000000..3468e63 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/6db9cbfa.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/6dd1f0c3.woff2 b/cmd/web/static/fonts/glyphs/woff2/6dd1f0c3.woff2 new file mode 100644 index 0000000..04970f6 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/6dd1f0c3.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/6e131b1a.woff2 b/cmd/web/static/fonts/glyphs/woff2/6e131b1a.woff2 new file mode 100644 index 0000000..ac9223a Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/6e131b1a.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/6e3568e1.woff2 b/cmd/web/static/fonts/glyphs/woff2/6e3568e1.woff2 new file mode 100644 index 0000000..fceafb3 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/6e3568e1.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/6e8af6a3.woff2 b/cmd/web/static/fonts/glyphs/woff2/6e8af6a3.woff2 new file mode 100644 index 0000000..4f2672a Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/6e8af6a3.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/6ec735fe.woff2 b/cmd/web/static/fonts/glyphs/woff2/6ec735fe.woff2 new file mode 100644 index 0000000..ddff957 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/6ec735fe.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/6ff07dde.woff2 b/cmd/web/static/fonts/glyphs/woff2/6ff07dde.woff2 new file mode 100644 index 0000000..acc0a67 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/6ff07dde.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/700a244d.woff2 b/cmd/web/static/fonts/glyphs/woff2/700a244d.woff2 new file mode 100644 index 0000000..2f922e3 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/700a244d.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/700b8efe.woff2 b/cmd/web/static/fonts/glyphs/woff2/700b8efe.woff2 new file mode 100644 index 0000000..40d194c Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/700b8efe.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/70159625.woff2 b/cmd/web/static/fonts/glyphs/woff2/70159625.woff2 new file mode 100644 index 0000000..053a03e Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/70159625.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/703d038d.woff2 b/cmd/web/static/fonts/glyphs/woff2/703d038d.woff2 new file mode 100644 index 0000000..992db51 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/703d038d.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/70a458c9.woff2 b/cmd/web/static/fonts/glyphs/woff2/70a458c9.woff2 new file mode 100644 index 0000000..d69a2cc Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/70a458c9.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/70ce9c46.woff2 b/cmd/web/static/fonts/glyphs/woff2/70ce9c46.woff2 new file mode 100644 index 0000000..cd149d6 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/70ce9c46.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/70d68f2f.woff2 b/cmd/web/static/fonts/glyphs/woff2/70d68f2f.woff2 new file mode 100644 index 0000000..2e102db Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/70d68f2f.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/7188a9c1.woff2 b/cmd/web/static/fonts/glyphs/woff2/7188a9c1.woff2 new file mode 100644 index 0000000..8ea5e84 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/7188a9c1.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/72213980.woff2 b/cmd/web/static/fonts/glyphs/woff2/72213980.woff2 new file mode 100644 index 0000000..acdb061 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/72213980.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/7257f8e5.woff2 b/cmd/web/static/fonts/glyphs/woff2/7257f8e5.woff2 new file mode 100644 index 0000000..54e5abc Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/7257f8e5.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/72751892.woff2 b/cmd/web/static/fonts/glyphs/woff2/72751892.woff2 new file mode 100644 index 0000000..a259ff2 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/72751892.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/72bccb9e.woff2 b/cmd/web/static/fonts/glyphs/woff2/72bccb9e.woff2 new file mode 100644 index 0000000..a22de83 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/72bccb9e.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/73337a66.woff2 b/cmd/web/static/fonts/glyphs/woff2/73337a66.woff2 new file mode 100644 index 0000000..ff52e4b Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/73337a66.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/73363ff7.woff2 b/cmd/web/static/fonts/glyphs/woff2/73363ff7.woff2 new file mode 100644 index 0000000..f3baf52 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/73363ff7.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/7345156e.woff2 b/cmd/web/static/fonts/glyphs/woff2/7345156e.woff2 new file mode 100644 index 0000000..5dba204 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/7345156e.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/734be349.woff2 b/cmd/web/static/fonts/glyphs/woff2/734be349.woff2 new file mode 100644 index 0000000..6e335cd Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/734be349.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/73db31ed.woff2 b/cmd/web/static/fonts/glyphs/woff2/73db31ed.woff2 new file mode 100644 index 0000000..4ebde94 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/73db31ed.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/74da00d4.woff2 b/cmd/web/static/fonts/glyphs/woff2/74da00d4.woff2 new file mode 100644 index 0000000..21e1eda Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/74da00d4.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/74da7207.woff2 b/cmd/web/static/fonts/glyphs/woff2/74da7207.woff2 new file mode 100644 index 0000000..1153dd7 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/74da7207.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/74dc98f9.woff2 b/cmd/web/static/fonts/glyphs/woff2/74dc98f9.woff2 new file mode 100644 index 0000000..f8218e9 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/74dc98f9.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/75058b72.woff2 b/cmd/web/static/fonts/glyphs/woff2/75058b72.woff2 new file mode 100644 index 0000000..d7894d3 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/75058b72.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/75577460.woff2 b/cmd/web/static/fonts/glyphs/woff2/75577460.woff2 new file mode 100644 index 0000000..fd2d64d Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/75577460.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/7651ec5d.woff2 b/cmd/web/static/fonts/glyphs/woff2/7651ec5d.woff2 new file mode 100644 index 0000000..2a0c465 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/7651ec5d.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/766bbd91.woff2 b/cmd/web/static/fonts/glyphs/woff2/766bbd91.woff2 new file mode 100644 index 0000000..2ee1ae4 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/766bbd91.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/7692acf2.woff2 b/cmd/web/static/fonts/glyphs/woff2/7692acf2.woff2 new file mode 100644 index 0000000..e7ea6d6 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/7692acf2.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/7708bdcb.woff2 b/cmd/web/static/fonts/glyphs/woff2/7708bdcb.woff2 new file mode 100644 index 0000000..6e1280c Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/7708bdcb.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/77d98a34.woff2 b/cmd/web/static/fonts/glyphs/woff2/77d98a34.woff2 new file mode 100644 index 0000000..0773369 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/77d98a34.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/781792ac.woff2 b/cmd/web/static/fonts/glyphs/woff2/781792ac.woff2 new file mode 100644 index 0000000..bc3953d Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/781792ac.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/7824402e.woff2 b/cmd/web/static/fonts/glyphs/woff2/7824402e.woff2 new file mode 100644 index 0000000..9f4e4e6 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/7824402e.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/782774ed.woff2 b/cmd/web/static/fonts/glyphs/woff2/782774ed.woff2 new file mode 100644 index 0000000..92155a9 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/782774ed.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/7845e476.woff2 b/cmd/web/static/fonts/glyphs/woff2/7845e476.woff2 new file mode 100644 index 0000000..168a2bd Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/7845e476.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/78600846.woff2 b/cmd/web/static/fonts/glyphs/woff2/78600846.woff2 new file mode 100644 index 0000000..b9dcf77 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/78600846.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/78f17a21.woff2 b/cmd/web/static/fonts/glyphs/woff2/78f17a21.woff2 new file mode 100644 index 0000000..f8c1d23 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/78f17a21.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/7909aeb7.woff2 b/cmd/web/static/fonts/glyphs/woff2/7909aeb7.woff2 new file mode 100644 index 0000000..83e9da4 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/7909aeb7.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/793b5687.woff2 b/cmd/web/static/fonts/glyphs/woff2/793b5687.woff2 new file mode 100644 index 0000000..f755bcc Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/793b5687.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/79fefc18.woff2 b/cmd/web/static/fonts/glyphs/woff2/79fefc18.woff2 new file mode 100644 index 0000000..27dd16d Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/79fefc18.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/7add0458.woff2 b/cmd/web/static/fonts/glyphs/woff2/7add0458.woff2 new file mode 100644 index 0000000..cd5a39c Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/7add0458.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/7b978459.woff2 b/cmd/web/static/fonts/glyphs/woff2/7b978459.woff2 new file mode 100644 index 0000000..9570efa Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/7b978459.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/7bd1e500.woff2 b/cmd/web/static/fonts/glyphs/woff2/7bd1e500.woff2 new file mode 100644 index 0000000..0503b1d Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/7bd1e500.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/7c28d0b9.woff2 b/cmd/web/static/fonts/glyphs/woff2/7c28d0b9.woff2 new file mode 100644 index 0000000..f1aced7 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/7c28d0b9.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/7c37a4d6.woff2 b/cmd/web/static/fonts/glyphs/woff2/7c37a4d6.woff2 new file mode 100644 index 0000000..cea988f Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/7c37a4d6.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/7c77a98a.woff2 b/cmd/web/static/fonts/glyphs/woff2/7c77a98a.woff2 new file mode 100644 index 0000000..f5e24ef Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/7c77a98a.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/7ca46b25.woff2 b/cmd/web/static/fonts/glyphs/woff2/7ca46b25.woff2 new file mode 100644 index 0000000..092ea74 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/7ca46b25.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/7d67a50f.woff2 b/cmd/web/static/fonts/glyphs/woff2/7d67a50f.woff2 new file mode 100644 index 0000000..ee57ca0 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/7d67a50f.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/7d68324f.woff2 b/cmd/web/static/fonts/glyphs/woff2/7d68324f.woff2 new file mode 100644 index 0000000..a23aec7 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/7d68324f.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/7d8ef620.woff2 b/cmd/web/static/fonts/glyphs/woff2/7d8ef620.woff2 new file mode 100644 index 0000000..2e29b34 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/7d8ef620.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/7dd88093.woff2 b/cmd/web/static/fonts/glyphs/woff2/7dd88093.woff2 new file mode 100644 index 0000000..4c3d01e Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/7dd88093.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/7e2c66dd.woff2 b/cmd/web/static/fonts/glyphs/woff2/7e2c66dd.woff2 new file mode 100644 index 0000000..cd933c9 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/7e2c66dd.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/7e86b04d.woff2 b/cmd/web/static/fonts/glyphs/woff2/7e86b04d.woff2 new file mode 100644 index 0000000..ffe5d33 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/7e86b04d.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/7ee937ee.woff2 b/cmd/web/static/fonts/glyphs/woff2/7ee937ee.woff2 new file mode 100644 index 0000000..d4833b4 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/7ee937ee.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/7f3c219c.woff2 b/cmd/web/static/fonts/glyphs/woff2/7f3c219c.woff2 new file mode 100644 index 0000000..fa29bad Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/7f3c219c.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/7f4ff157.woff2 b/cmd/web/static/fonts/glyphs/woff2/7f4ff157.woff2 new file mode 100644 index 0000000..2d75d02 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/7f4ff157.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/7faba1e2.woff2 b/cmd/web/static/fonts/glyphs/woff2/7faba1e2.woff2 new file mode 100644 index 0000000..4c2fbca Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/7faba1e2.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/7fc2dce7.woff2 b/cmd/web/static/fonts/glyphs/woff2/7fc2dce7.woff2 new file mode 100644 index 0000000..ae544c5 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/7fc2dce7.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/80160b96.woff2 b/cmd/web/static/fonts/glyphs/woff2/80160b96.woff2 new file mode 100644 index 0000000..7a9f92b Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/80160b96.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/8021a1fc.woff2 b/cmd/web/static/fonts/glyphs/woff2/8021a1fc.woff2 new file mode 100644 index 0000000..4ddbca2 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/8021a1fc.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/80629e16.woff2 b/cmd/web/static/fonts/glyphs/woff2/80629e16.woff2 new file mode 100644 index 0000000..fb1424f Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/80629e16.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/808ad3a7.woff2 b/cmd/web/static/fonts/glyphs/woff2/808ad3a7.woff2 new file mode 100644 index 0000000..ec12dd9 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/808ad3a7.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/8179876c.woff2 b/cmd/web/static/fonts/glyphs/woff2/8179876c.woff2 new file mode 100644 index 0000000..d399f62 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/8179876c.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/817d2a0a.woff2 b/cmd/web/static/fonts/glyphs/woff2/817d2a0a.woff2 new file mode 100644 index 0000000..0ebe68d Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/817d2a0a.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/81c6c9c0.woff2 b/cmd/web/static/fonts/glyphs/woff2/81c6c9c0.woff2 new file mode 100644 index 0000000..98ead87 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/81c6c9c0.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/81e03745.woff2 b/cmd/web/static/fonts/glyphs/woff2/81e03745.woff2 new file mode 100644 index 0000000..a17656b Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/81e03745.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/8216b752.woff2 b/cmd/web/static/fonts/glyphs/woff2/8216b752.woff2 new file mode 100644 index 0000000..64bb40d Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/8216b752.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/825014e6.woff2 b/cmd/web/static/fonts/glyphs/woff2/825014e6.woff2 new file mode 100644 index 0000000..917bce5 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/825014e6.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/836758e3.woff2 b/cmd/web/static/fonts/glyphs/woff2/836758e3.woff2 new file mode 100644 index 0000000..2e60ae4 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/836758e3.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/8377e39a.woff2 b/cmd/web/static/fonts/glyphs/woff2/8377e39a.woff2 new file mode 100644 index 0000000..3c678e3 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/8377e39a.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/839981ee.woff2 b/cmd/web/static/fonts/glyphs/woff2/839981ee.woff2 new file mode 100644 index 0000000..baf68a6 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/839981ee.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/83bd70cd.woff2 b/cmd/web/static/fonts/glyphs/woff2/83bd70cd.woff2 new file mode 100644 index 0000000..f096567 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/83bd70cd.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/83f03b1d.woff2 b/cmd/web/static/fonts/glyphs/woff2/83f03b1d.woff2 new file mode 100644 index 0000000..9ce8f9d Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/83f03b1d.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/840f090f.woff2 b/cmd/web/static/fonts/glyphs/woff2/840f090f.woff2 new file mode 100644 index 0000000..18a1c36 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/840f090f.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/842ec06d.woff2 b/cmd/web/static/fonts/glyphs/woff2/842ec06d.woff2 new file mode 100644 index 0000000..9a7530a Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/842ec06d.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/84aca33c.woff2 b/cmd/web/static/fonts/glyphs/woff2/84aca33c.woff2 new file mode 100644 index 0000000..2a83c7f Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/84aca33c.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/854811f2.woff2 b/cmd/web/static/fonts/glyphs/woff2/854811f2.woff2 new file mode 100644 index 0000000..0ce41a7 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/854811f2.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/85a57a2a.woff2 b/cmd/web/static/fonts/glyphs/woff2/85a57a2a.woff2 new file mode 100644 index 0000000..026353f Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/85a57a2a.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/85b9ab95.woff2 b/cmd/web/static/fonts/glyphs/woff2/85b9ab95.woff2 new file mode 100644 index 0000000..3cab2ec Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/85b9ab95.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/860a7588.woff2 b/cmd/web/static/fonts/glyphs/woff2/860a7588.woff2 new file mode 100644 index 0000000..da263d8 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/860a7588.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/862543ec.woff2 b/cmd/web/static/fonts/glyphs/woff2/862543ec.woff2 new file mode 100644 index 0000000..7dfe5be Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/862543ec.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/8625f0eb.woff2 b/cmd/web/static/fonts/glyphs/woff2/8625f0eb.woff2 new file mode 100644 index 0000000..0d6bd16 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/8625f0eb.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/86d4d2fb.woff2 b/cmd/web/static/fonts/glyphs/woff2/86d4d2fb.woff2 new file mode 100644 index 0000000..6b83131 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/86d4d2fb.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/86e445ff.woff2 b/cmd/web/static/fonts/glyphs/woff2/86e445ff.woff2 new file mode 100644 index 0000000..b5c7fdf Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/86e445ff.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/871f2951.woff2 b/cmd/web/static/fonts/glyphs/woff2/871f2951.woff2 new file mode 100644 index 0000000..aa04849 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/871f2951.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/87626b68.woff2 b/cmd/web/static/fonts/glyphs/woff2/87626b68.woff2 new file mode 100644 index 0000000..1bbe568 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/87626b68.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/8796b453.woff2 b/cmd/web/static/fonts/glyphs/woff2/8796b453.woff2 new file mode 100644 index 0000000..3f2ff99 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/8796b453.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/87dda7cc.woff2 b/cmd/web/static/fonts/glyphs/woff2/87dda7cc.woff2 new file mode 100644 index 0000000..333c813 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/87dda7cc.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/882182c1.woff2 b/cmd/web/static/fonts/glyphs/woff2/882182c1.woff2 new file mode 100644 index 0000000..ee49866 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/882182c1.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/8827eb24.woff2 b/cmd/web/static/fonts/glyphs/woff2/8827eb24.woff2 new file mode 100644 index 0000000..014d563 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/8827eb24.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/888412e6.woff2 b/cmd/web/static/fonts/glyphs/woff2/888412e6.woff2 new file mode 100644 index 0000000..07fa4c8 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/888412e6.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/894bfc80.woff2 b/cmd/web/static/fonts/glyphs/woff2/894bfc80.woff2 new file mode 100644 index 0000000..438c92c Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/894bfc80.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/896bcc00.woff2 b/cmd/web/static/fonts/glyphs/woff2/896bcc00.woff2 new file mode 100644 index 0000000..967064e Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/896bcc00.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/899e83fa.woff2 b/cmd/web/static/fonts/glyphs/woff2/899e83fa.woff2 new file mode 100644 index 0000000..54ae047 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/899e83fa.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/89eb94d2.woff2 b/cmd/web/static/fonts/glyphs/woff2/89eb94d2.woff2 new file mode 100644 index 0000000..0b23477 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/89eb94d2.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/8a52dabb.woff2 b/cmd/web/static/fonts/glyphs/woff2/8a52dabb.woff2 new file mode 100644 index 0000000..e1f4772 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/8a52dabb.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/8aa66ff2.woff2 b/cmd/web/static/fonts/glyphs/woff2/8aa66ff2.woff2 new file mode 100644 index 0000000..a473a27 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/8aa66ff2.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/8aacdf16.woff2 b/cmd/web/static/fonts/glyphs/woff2/8aacdf16.woff2 new file mode 100644 index 0000000..de36e30 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/8aacdf16.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/8b45a38b.woff2 b/cmd/web/static/fonts/glyphs/woff2/8b45a38b.woff2 new file mode 100644 index 0000000..00609ed Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/8b45a38b.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/8b604615.woff2 b/cmd/web/static/fonts/glyphs/woff2/8b604615.woff2 new file mode 100644 index 0000000..4ee4a77 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/8b604615.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/8ba1a228.woff2 b/cmd/web/static/fonts/glyphs/woff2/8ba1a228.woff2 new file mode 100644 index 0000000..8b6f05a Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/8ba1a228.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/8beb9dac.woff2 b/cmd/web/static/fonts/glyphs/woff2/8beb9dac.woff2 new file mode 100644 index 0000000..64a96d9 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/8beb9dac.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/8befb6ca.woff2 b/cmd/web/static/fonts/glyphs/woff2/8befb6ca.woff2 new file mode 100644 index 0000000..0b79527 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/8befb6ca.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/8c60c66a.woff2 b/cmd/web/static/fonts/glyphs/woff2/8c60c66a.woff2 new file mode 100644 index 0000000..7c70ba0 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/8c60c66a.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/8c610c58.woff2 b/cmd/web/static/fonts/glyphs/woff2/8c610c58.woff2 new file mode 100644 index 0000000..66de15f Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/8c610c58.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/8c7e5269.woff2 b/cmd/web/static/fonts/glyphs/woff2/8c7e5269.woff2 new file mode 100644 index 0000000..7c50856 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/8c7e5269.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/8cd085fd.woff2 b/cmd/web/static/fonts/glyphs/woff2/8cd085fd.woff2 new file mode 100644 index 0000000..0f3cec7 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/8cd085fd.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/8d40bc1f.woff2 b/cmd/web/static/fonts/glyphs/woff2/8d40bc1f.woff2 new file mode 100644 index 0000000..6b3806f Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/8d40bc1f.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/8d4d7cd2.woff2 b/cmd/web/static/fonts/glyphs/woff2/8d4d7cd2.woff2 new file mode 100644 index 0000000..73c01eb Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/8d4d7cd2.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/8f3601cc.woff2 b/cmd/web/static/fonts/glyphs/woff2/8f3601cc.woff2 new file mode 100644 index 0000000..19c6cab Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/8f3601cc.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/8f9646bf.woff2 b/cmd/web/static/fonts/glyphs/woff2/8f9646bf.woff2 new file mode 100644 index 0000000..03dd888 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/8f9646bf.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/900affc9.woff2 b/cmd/web/static/fonts/glyphs/woff2/900affc9.woff2 new file mode 100644 index 0000000..f28543d Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/900affc9.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/9046047a.woff2 b/cmd/web/static/fonts/glyphs/woff2/9046047a.woff2 new file mode 100644 index 0000000..e27bda2 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/9046047a.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/907dea52.woff2 b/cmd/web/static/fonts/glyphs/woff2/907dea52.woff2 new file mode 100644 index 0000000..f6f304f Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/907dea52.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/91c7605d.woff2 b/cmd/web/static/fonts/glyphs/woff2/91c7605d.woff2 new file mode 100644 index 0000000..dbae37a Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/91c7605d.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/91d96ddb.woff2 b/cmd/web/static/fonts/glyphs/woff2/91d96ddb.woff2 new file mode 100644 index 0000000..49ac327 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/91d96ddb.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/91e6882a.woff2 b/cmd/web/static/fonts/glyphs/woff2/91e6882a.woff2 new file mode 100644 index 0000000..9bb257a Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/91e6882a.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/928b86d7.woff2 b/cmd/web/static/fonts/glyphs/woff2/928b86d7.woff2 new file mode 100644 index 0000000..18ec474 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/928b86d7.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/92b634cd.woff2 b/cmd/web/static/fonts/glyphs/woff2/92b634cd.woff2 new file mode 100644 index 0000000..f544db1 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/92b634cd.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/935170dd.woff2 b/cmd/web/static/fonts/glyphs/woff2/935170dd.woff2 new file mode 100644 index 0000000..294efbc Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/935170dd.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/9352bab8.woff2 b/cmd/web/static/fonts/glyphs/woff2/9352bab8.woff2 new file mode 100644 index 0000000..e5a44c3 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/9352bab8.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/9375b000.woff2 b/cmd/web/static/fonts/glyphs/woff2/9375b000.woff2 new file mode 100644 index 0000000..6d2cef5 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/9375b000.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/9393e70c.woff2 b/cmd/web/static/fonts/glyphs/woff2/9393e70c.woff2 new file mode 100644 index 0000000..16de34e Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/9393e70c.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/93b56efb.woff2 b/cmd/web/static/fonts/glyphs/woff2/93b56efb.woff2 new file mode 100644 index 0000000..f82cf89 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/93b56efb.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/944650cf.woff2 b/cmd/web/static/fonts/glyphs/woff2/944650cf.woff2 new file mode 100644 index 0000000..df27c07 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/944650cf.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/94531f1b.woff2 b/cmd/web/static/fonts/glyphs/woff2/94531f1b.woff2 new file mode 100644 index 0000000..d32b577 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/94531f1b.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/948b9f9b.woff2 b/cmd/web/static/fonts/glyphs/woff2/948b9f9b.woff2 new file mode 100644 index 0000000..d185b07 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/948b9f9b.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/94bb9a0a.woff2 b/cmd/web/static/fonts/glyphs/woff2/94bb9a0a.woff2 new file mode 100644 index 0000000..f4dec60 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/94bb9a0a.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/94c87c19.woff2 b/cmd/web/static/fonts/glyphs/woff2/94c87c19.woff2 new file mode 100644 index 0000000..557b8a6 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/94c87c19.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/94ee3537.woff2 b/cmd/web/static/fonts/glyphs/woff2/94ee3537.woff2 new file mode 100644 index 0000000..65c9200 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/94ee3537.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/95114a7a.woff2 b/cmd/web/static/fonts/glyphs/woff2/95114a7a.woff2 new file mode 100644 index 0000000..65e3528 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/95114a7a.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/9518b144.woff2 b/cmd/web/static/fonts/glyphs/woff2/9518b144.woff2 new file mode 100644 index 0000000..9fd1f6d Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/9518b144.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/9554c428.woff2 b/cmd/web/static/fonts/glyphs/woff2/9554c428.woff2 new file mode 100644 index 0000000..ab93e65 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/9554c428.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/957ea602.woff2 b/cmd/web/static/fonts/glyphs/woff2/957ea602.woff2 new file mode 100644 index 0000000..8cc9231 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/957ea602.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/95ce85b0.woff2 b/cmd/web/static/fonts/glyphs/woff2/95ce85b0.woff2 new file mode 100644 index 0000000..e1de70f Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/95ce85b0.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/9605447e.woff2 b/cmd/web/static/fonts/glyphs/woff2/9605447e.woff2 new file mode 100644 index 0000000..fd135a7 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/9605447e.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/971dbc94.woff2 b/cmd/web/static/fonts/glyphs/woff2/971dbc94.woff2 new file mode 100644 index 0000000..a636a2b Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/971dbc94.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/9730509c.woff2 b/cmd/web/static/fonts/glyphs/woff2/9730509c.woff2 new file mode 100644 index 0000000..13b736a Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/9730509c.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/97b82bce.woff2 b/cmd/web/static/fonts/glyphs/woff2/97b82bce.woff2 new file mode 100644 index 0000000..f266c09 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/97b82bce.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/97ba67f1.woff2 b/cmd/web/static/fonts/glyphs/woff2/97ba67f1.woff2 new file mode 100644 index 0000000..0c4d477 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/97ba67f1.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/97e6e2a1.woff2 b/cmd/web/static/fonts/glyphs/woff2/97e6e2a1.woff2 new file mode 100644 index 0000000..af8270a Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/97e6e2a1.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/98117c28.woff2 b/cmd/web/static/fonts/glyphs/woff2/98117c28.woff2 new file mode 100644 index 0000000..c893485 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/98117c28.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/982f3edc.woff2 b/cmd/web/static/fonts/glyphs/woff2/982f3edc.woff2 new file mode 100644 index 0000000..93562de Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/982f3edc.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/98357202.woff2 b/cmd/web/static/fonts/glyphs/woff2/98357202.woff2 new file mode 100644 index 0000000..24070f7 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/98357202.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/9850be29.woff2 b/cmd/web/static/fonts/glyphs/woff2/9850be29.woff2 new file mode 100644 index 0000000..0dbbb05 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/9850be29.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/9899cecb.woff2 b/cmd/web/static/fonts/glyphs/woff2/9899cecb.woff2 new file mode 100644 index 0000000..5ccaa53 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/9899cecb.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/989ad0a9.woff2 b/cmd/web/static/fonts/glyphs/woff2/989ad0a9.woff2 new file mode 100644 index 0000000..898b7dd Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/989ad0a9.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/98a0b6a0.woff2 b/cmd/web/static/fonts/glyphs/woff2/98a0b6a0.woff2 new file mode 100644 index 0000000..950d9f8 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/98a0b6a0.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/993b5d5e.woff2 b/cmd/web/static/fonts/glyphs/woff2/993b5d5e.woff2 new file mode 100644 index 0000000..fcf825d Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/993b5d5e.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/99a3e60b.woff2 b/cmd/web/static/fonts/glyphs/woff2/99a3e60b.woff2 new file mode 100644 index 0000000..7bf4036 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/99a3e60b.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/99b23887.woff2 b/cmd/web/static/fonts/glyphs/woff2/99b23887.woff2 new file mode 100644 index 0000000..6849a75 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/99b23887.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/9a7fb4ed.woff2 b/cmd/web/static/fonts/glyphs/woff2/9a7fb4ed.woff2 new file mode 100644 index 0000000..d0f7f00 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/9a7fb4ed.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/9a9a307d.woff2 b/cmd/web/static/fonts/glyphs/woff2/9a9a307d.woff2 new file mode 100644 index 0000000..45eebe6 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/9a9a307d.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/9b8448e1.woff2 b/cmd/web/static/fonts/glyphs/woff2/9b8448e1.woff2 new file mode 100644 index 0000000..8a84948 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/9b8448e1.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/9b9375b4.woff2 b/cmd/web/static/fonts/glyphs/woff2/9b9375b4.woff2 new file mode 100644 index 0000000..992dfc4 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/9b9375b4.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/9bb36328.woff2 b/cmd/web/static/fonts/glyphs/woff2/9bb36328.woff2 new file mode 100644 index 0000000..f937b3c Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/9bb36328.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/9be136c3.woff2 b/cmd/web/static/fonts/glyphs/woff2/9be136c3.woff2 new file mode 100644 index 0000000..6287e81 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/9be136c3.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/9c739b13.woff2 b/cmd/web/static/fonts/glyphs/woff2/9c739b13.woff2 new file mode 100644 index 0000000..ff9ac2d Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/9c739b13.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/9ccb9c44.woff2 b/cmd/web/static/fonts/glyphs/woff2/9ccb9c44.woff2 new file mode 100644 index 0000000..3dff29d Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/9ccb9c44.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/9ced0dd7.woff2 b/cmd/web/static/fonts/glyphs/woff2/9ced0dd7.woff2 new file mode 100644 index 0000000..3c0ba9b Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/9ced0dd7.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/9d1ecd98.woff2 b/cmd/web/static/fonts/glyphs/woff2/9d1ecd98.woff2 new file mode 100644 index 0000000..ee95394 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/9d1ecd98.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/9e0089cc.woff2 b/cmd/web/static/fonts/glyphs/woff2/9e0089cc.woff2 new file mode 100644 index 0000000..49c7a1b Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/9e0089cc.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/9e3addab.woff2 b/cmd/web/static/fonts/glyphs/woff2/9e3addab.woff2 new file mode 100644 index 0000000..10d553d Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/9e3addab.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/9eb86178.woff2 b/cmd/web/static/fonts/glyphs/woff2/9eb86178.woff2 new file mode 100644 index 0000000..1ffdd11 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/9eb86178.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/9f00be36.woff2 b/cmd/web/static/fonts/glyphs/woff2/9f00be36.woff2 new file mode 100644 index 0000000..e32949f Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/9f00be36.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/9f205e65.woff2 b/cmd/web/static/fonts/glyphs/woff2/9f205e65.woff2 new file mode 100644 index 0000000..1de1734 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/9f205e65.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/9f3909aa.woff2 b/cmd/web/static/fonts/glyphs/woff2/9f3909aa.woff2 new file mode 100644 index 0000000..67cc775 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/9f3909aa.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/a0183c8e.woff2 b/cmd/web/static/fonts/glyphs/woff2/a0183c8e.woff2 new file mode 100644 index 0000000..cca7322 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/a0183c8e.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/a04998d6.woff2 b/cmd/web/static/fonts/glyphs/woff2/a04998d6.woff2 new file mode 100644 index 0000000..36d16d8 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/a04998d6.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/a0a347f1.woff2 b/cmd/web/static/fonts/glyphs/woff2/a0a347f1.woff2 new file mode 100644 index 0000000..e9c9b8c Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/a0a347f1.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/a0e42042.woff2 b/cmd/web/static/fonts/glyphs/woff2/a0e42042.woff2 new file mode 100644 index 0000000..bd0f78f Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/a0e42042.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/a0ecbb18.woff2 b/cmd/web/static/fonts/glyphs/woff2/a0ecbb18.woff2 new file mode 100644 index 0000000..f727339 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/a0ecbb18.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/a1b08642.woff2 b/cmd/web/static/fonts/glyphs/woff2/a1b08642.woff2 new file mode 100644 index 0000000..740021d Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/a1b08642.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/a1f0f211.woff2 b/cmd/web/static/fonts/glyphs/woff2/a1f0f211.woff2 new file mode 100644 index 0000000..1443958 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/a1f0f211.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/a1fbcdf7.woff2 b/cmd/web/static/fonts/glyphs/woff2/a1fbcdf7.woff2 new file mode 100644 index 0000000..c8acd80 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/a1fbcdf7.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/a22847ed.woff2 b/cmd/web/static/fonts/glyphs/woff2/a22847ed.woff2 new file mode 100644 index 0000000..4975af7 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/a22847ed.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/a36d6959.woff2 b/cmd/web/static/fonts/glyphs/woff2/a36d6959.woff2 new file mode 100644 index 0000000..3b16964 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/a36d6959.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/a3805f14.woff2 b/cmd/web/static/fonts/glyphs/woff2/a3805f14.woff2 new file mode 100644 index 0000000..604f845 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/a3805f14.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/a45832ed.woff2 b/cmd/web/static/fonts/glyphs/woff2/a45832ed.woff2 new file mode 100644 index 0000000..2a968c2 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/a45832ed.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/a4900e86.woff2 b/cmd/web/static/fonts/glyphs/woff2/a4900e86.woff2 new file mode 100644 index 0000000..035c92e Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/a4900e86.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/a4b9f2e5.woff2 b/cmd/web/static/fonts/glyphs/woff2/a4b9f2e5.woff2 new file mode 100644 index 0000000..242f121 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/a4b9f2e5.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/a4caee91.woff2 b/cmd/web/static/fonts/glyphs/woff2/a4caee91.woff2 new file mode 100644 index 0000000..b677b28 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/a4caee91.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/a52bb57c.woff2 b/cmd/web/static/fonts/glyphs/woff2/a52bb57c.woff2 new file mode 100644 index 0000000..1ecef33 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/a52bb57c.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/a54fe823.woff2 b/cmd/web/static/fonts/glyphs/woff2/a54fe823.woff2 new file mode 100644 index 0000000..cea4984 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/a54fe823.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/a564f20f.woff2 b/cmd/web/static/fonts/glyphs/woff2/a564f20f.woff2 new file mode 100644 index 0000000..204965a Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/a564f20f.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/a5ee2945.woff2 b/cmd/web/static/fonts/glyphs/woff2/a5ee2945.woff2 new file mode 100644 index 0000000..c8b4f17 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/a5ee2945.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/a6af89bd.woff2 b/cmd/web/static/fonts/glyphs/woff2/a6af89bd.woff2 new file mode 100644 index 0000000..def3650 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/a6af89bd.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/a73e53ed.woff2 b/cmd/web/static/fonts/glyphs/woff2/a73e53ed.woff2 new file mode 100644 index 0000000..314e72f Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/a73e53ed.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/a7644d09.woff2 b/cmd/web/static/fonts/glyphs/woff2/a7644d09.woff2 new file mode 100644 index 0000000..1ead572 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/a7644d09.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/a851f472.woff2 b/cmd/web/static/fonts/glyphs/woff2/a851f472.woff2 new file mode 100644 index 0000000..85f4ab6 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/a851f472.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/a87ed935.woff2 b/cmd/web/static/fonts/glyphs/woff2/a87ed935.woff2 new file mode 100644 index 0000000..94d7793 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/a87ed935.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/a97d857e.woff2 b/cmd/web/static/fonts/glyphs/woff2/a97d857e.woff2 new file mode 100644 index 0000000..ed34414 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/a97d857e.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/a9a9d798.woff2 b/cmd/web/static/fonts/glyphs/woff2/a9a9d798.woff2 new file mode 100644 index 0000000..815ad5b Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/a9a9d798.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/a9daf068.woff2 b/cmd/web/static/fonts/glyphs/woff2/a9daf068.woff2 new file mode 100644 index 0000000..f219f77 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/a9daf068.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/aa0b1cf4.woff2 b/cmd/web/static/fonts/glyphs/woff2/aa0b1cf4.woff2 new file mode 100644 index 0000000..aeea8c4 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/aa0b1cf4.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/aa227416.woff2 b/cmd/web/static/fonts/glyphs/woff2/aa227416.woff2 new file mode 100644 index 0000000..c8e9687 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/aa227416.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/aa6c0f8a.woff2 b/cmd/web/static/fonts/glyphs/woff2/aa6c0f8a.woff2 new file mode 100644 index 0000000..4f0a267 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/aa6c0f8a.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/aae08744.woff2 b/cmd/web/static/fonts/glyphs/woff2/aae08744.woff2 new file mode 100644 index 0000000..d20683b Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/aae08744.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/ab5759c1.woff2 b/cmd/web/static/fonts/glyphs/woff2/ab5759c1.woff2 new file mode 100644 index 0000000..deb07aa Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/ab5759c1.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/ab8056ea.woff2 b/cmd/web/static/fonts/glyphs/woff2/ab8056ea.woff2 new file mode 100644 index 0000000..358a585 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/ab8056ea.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/ac2048ca.woff2 b/cmd/web/static/fonts/glyphs/woff2/ac2048ca.woff2 new file mode 100644 index 0000000..21980b2 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/ac2048ca.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/ac31ca34.woff2 b/cmd/web/static/fonts/glyphs/woff2/ac31ca34.woff2 new file mode 100644 index 0000000..47506bb Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/ac31ca34.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/ac9383e4.woff2 b/cmd/web/static/fonts/glyphs/woff2/ac9383e4.woff2 new file mode 100644 index 0000000..9e619e6 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/ac9383e4.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/accd5a71.woff2 b/cmd/web/static/fonts/glyphs/woff2/accd5a71.woff2 new file mode 100644 index 0000000..9374724 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/accd5a71.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/ad2eb64b.woff2 b/cmd/web/static/fonts/glyphs/woff2/ad2eb64b.woff2 new file mode 100644 index 0000000..4617476 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/ad2eb64b.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/ad451fc0.woff2 b/cmd/web/static/fonts/glyphs/woff2/ad451fc0.woff2 new file mode 100644 index 0000000..6b0efa8 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/ad451fc0.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/ad5bcd8d.woff2 b/cmd/web/static/fonts/glyphs/woff2/ad5bcd8d.woff2 new file mode 100644 index 0000000..5200801 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/ad5bcd8d.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/ad6d5849.woff2 b/cmd/web/static/fonts/glyphs/woff2/ad6d5849.woff2 new file mode 100644 index 0000000..37d81e3 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/ad6d5849.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/ae3b63af.woff2 b/cmd/web/static/fonts/glyphs/woff2/ae3b63af.woff2 new file mode 100644 index 0000000..63f1987 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/ae3b63af.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/ae453c2f.woff2 b/cmd/web/static/fonts/glyphs/woff2/ae453c2f.woff2 new file mode 100644 index 0000000..b8ca2c2 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/ae453c2f.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/ae943640.woff2 b/cmd/web/static/fonts/glyphs/woff2/ae943640.woff2 new file mode 100644 index 0000000..926c71b Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/ae943640.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/af60aa55.woff2 b/cmd/web/static/fonts/glyphs/woff2/af60aa55.woff2 new file mode 100644 index 0000000..ab10847 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/af60aa55.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/af7f0a6e.woff2 b/cmd/web/static/fonts/glyphs/woff2/af7f0a6e.woff2 new file mode 100644 index 0000000..1b3b30d Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/af7f0a6e.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/afb6634e.woff2 b/cmd/web/static/fonts/glyphs/woff2/afb6634e.woff2 new file mode 100644 index 0000000..b7154b1 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/afb6634e.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/b09f469a.woff2 b/cmd/web/static/fonts/glyphs/woff2/b09f469a.woff2 new file mode 100644 index 0000000..aad8731 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/b09f469a.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/b0ad53ea.woff2 b/cmd/web/static/fonts/glyphs/woff2/b0ad53ea.woff2 new file mode 100644 index 0000000..f9faa85 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/b0ad53ea.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/b166a7c6.woff2 b/cmd/web/static/fonts/glyphs/woff2/b166a7c6.woff2 new file mode 100644 index 0000000..adcfbed Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/b166a7c6.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/b1eba251.woff2 b/cmd/web/static/fonts/glyphs/woff2/b1eba251.woff2 new file mode 100644 index 0000000..7407709 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/b1eba251.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/b25a5c47.woff2 b/cmd/web/static/fonts/glyphs/woff2/b25a5c47.woff2 new file mode 100644 index 0000000..1c557c4 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/b25a5c47.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/b295da08.woff2 b/cmd/web/static/fonts/glyphs/woff2/b295da08.woff2 new file mode 100644 index 0000000..ff7dc38 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/b295da08.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/b29ecf6c.woff2 b/cmd/web/static/fonts/glyphs/woff2/b29ecf6c.woff2 new file mode 100644 index 0000000..7c959ec Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/b29ecf6c.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/b2e0a125.woff2 b/cmd/web/static/fonts/glyphs/woff2/b2e0a125.woff2 new file mode 100644 index 0000000..7b36b2f Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/b2e0a125.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/b2f15dff.woff2 b/cmd/web/static/fonts/glyphs/woff2/b2f15dff.woff2 new file mode 100644 index 0000000..35e68be Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/b2f15dff.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/b3273cc3.woff2 b/cmd/web/static/fonts/glyphs/woff2/b3273cc3.woff2 new file mode 100644 index 0000000..483a47f Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/b3273cc3.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/b3df67d1.woff2 b/cmd/web/static/fonts/glyphs/woff2/b3df67d1.woff2 new file mode 100644 index 0000000..f742967 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/b3df67d1.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/b410b0fe.woff2 b/cmd/web/static/fonts/glyphs/woff2/b410b0fe.woff2 new file mode 100644 index 0000000..a0b6d82 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/b410b0fe.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/b44b2013.woff2 b/cmd/web/static/fonts/glyphs/woff2/b44b2013.woff2 new file mode 100644 index 0000000..9b0e197 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/b44b2013.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/b4fed649.woff2 b/cmd/web/static/fonts/glyphs/woff2/b4fed649.woff2 new file mode 100644 index 0000000..b469ebc Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/b4fed649.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/b524a1f5.woff2 b/cmd/web/static/fonts/glyphs/woff2/b524a1f5.woff2 new file mode 100644 index 0000000..a366b4d Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/b524a1f5.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/b53f50d1.woff2 b/cmd/web/static/fonts/glyphs/woff2/b53f50d1.woff2 new file mode 100644 index 0000000..302ef85 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/b53f50d1.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/b5c50661.woff2 b/cmd/web/static/fonts/glyphs/woff2/b5c50661.woff2 new file mode 100644 index 0000000..a2dd439 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/b5c50661.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/b5c60683.woff2 b/cmd/web/static/fonts/glyphs/woff2/b5c60683.woff2 new file mode 100644 index 0000000..780fd94 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/b5c60683.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/b70c5e32.woff2 b/cmd/web/static/fonts/glyphs/woff2/b70c5e32.woff2 new file mode 100644 index 0000000..03216e5 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/b70c5e32.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/b779fc78.woff2 b/cmd/web/static/fonts/glyphs/woff2/b779fc78.woff2 new file mode 100644 index 0000000..db0cc33 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/b779fc78.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/b78ccf45.woff2 b/cmd/web/static/fonts/glyphs/woff2/b78ccf45.woff2 new file mode 100644 index 0000000..d9248f1 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/b78ccf45.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/b7a172a3.woff2 b/cmd/web/static/fonts/glyphs/woff2/b7a172a3.woff2 new file mode 100644 index 0000000..79bb336 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/b7a172a3.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/b7ecc4fc.woff2 b/cmd/web/static/fonts/glyphs/woff2/b7ecc4fc.woff2 new file mode 100644 index 0000000..20db025 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/b7ecc4fc.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/b8276594.woff2 b/cmd/web/static/fonts/glyphs/woff2/b8276594.woff2 new file mode 100644 index 0000000..4a2b271 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/b8276594.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/b82f6a43.woff2 b/cmd/web/static/fonts/glyphs/woff2/b82f6a43.woff2 new file mode 100644 index 0000000..1f7baad Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/b82f6a43.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/b84384c5.woff2 b/cmd/web/static/fonts/glyphs/woff2/b84384c5.woff2 new file mode 100644 index 0000000..fb12050 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/b84384c5.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/b853b110.woff2 b/cmd/web/static/fonts/glyphs/woff2/b853b110.woff2 new file mode 100644 index 0000000..2b6933f Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/b853b110.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/b86d565c.woff2 b/cmd/web/static/fonts/glyphs/woff2/b86d565c.woff2 new file mode 100644 index 0000000..0cccffa Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/b86d565c.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/b8a14959.woff2 b/cmd/web/static/fonts/glyphs/woff2/b8a14959.woff2 new file mode 100644 index 0000000..7cd0822 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/b8a14959.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/b8f899c8.woff2 b/cmd/web/static/fonts/glyphs/woff2/b8f899c8.woff2 new file mode 100644 index 0000000..f9faf8c Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/b8f899c8.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/b9507f5e.woff2 b/cmd/web/static/fonts/glyphs/woff2/b9507f5e.woff2 new file mode 100644 index 0000000..8e22923 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/b9507f5e.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/b96007b9.woff2 b/cmd/web/static/fonts/glyphs/woff2/b96007b9.woff2 new file mode 100644 index 0000000..12faae4 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/b96007b9.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/b9a227e4.woff2 b/cmd/web/static/fonts/glyphs/woff2/b9a227e4.woff2 new file mode 100644 index 0000000..8a51871 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/b9a227e4.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/ba711105.woff2 b/cmd/web/static/fonts/glyphs/woff2/ba711105.woff2 new file mode 100644 index 0000000..f603677 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/ba711105.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/ba8d699c.woff2 b/cmd/web/static/fonts/glyphs/woff2/ba8d699c.woff2 new file mode 100644 index 0000000..3bc7277 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/ba8d699c.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/bae4bae8.woff2 b/cmd/web/static/fonts/glyphs/woff2/bae4bae8.woff2 new file mode 100644 index 0000000..3281444 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/bae4bae8.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/bae65807.woff2 b/cmd/web/static/fonts/glyphs/woff2/bae65807.woff2 new file mode 100644 index 0000000..0a6745b Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/bae65807.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/bb074b56.woff2 b/cmd/web/static/fonts/glyphs/woff2/bb074b56.woff2 new file mode 100644 index 0000000..09a6569 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/bb074b56.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/bb12d8ab.woff2 b/cmd/web/static/fonts/glyphs/woff2/bb12d8ab.woff2 new file mode 100644 index 0000000..7a32270 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/bb12d8ab.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/bb366587.woff2 b/cmd/web/static/fonts/glyphs/woff2/bb366587.woff2 new file mode 100644 index 0000000..848d44d Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/bb366587.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/bb48d505.woff2 b/cmd/web/static/fonts/glyphs/woff2/bb48d505.woff2 new file mode 100644 index 0000000..c389424 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/bb48d505.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/bb6c3f4f.woff2 b/cmd/web/static/fonts/glyphs/woff2/bb6c3f4f.woff2 new file mode 100644 index 0000000..970e9d5 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/bb6c3f4f.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/bc23c05b.woff2 b/cmd/web/static/fonts/glyphs/woff2/bc23c05b.woff2 new file mode 100644 index 0000000..dfd9f91 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/bc23c05b.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/bcd60da4.woff2 b/cmd/web/static/fonts/glyphs/woff2/bcd60da4.woff2 new file mode 100644 index 0000000..01bdce9 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/bcd60da4.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/bd81a851.woff2 b/cmd/web/static/fonts/glyphs/woff2/bd81a851.woff2 new file mode 100644 index 0000000..cf4c99f Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/bd81a851.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/be09c3ad.woff2 b/cmd/web/static/fonts/glyphs/woff2/be09c3ad.woff2 new file mode 100644 index 0000000..bf47cba Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/be09c3ad.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/be0e8a5a.woff2 b/cmd/web/static/fonts/glyphs/woff2/be0e8a5a.woff2 new file mode 100644 index 0000000..318f6e1 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/be0e8a5a.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/be153f92.woff2 b/cmd/web/static/fonts/glyphs/woff2/be153f92.woff2 new file mode 100644 index 0000000..6e3d78f Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/be153f92.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/be79d1c6.woff2 b/cmd/web/static/fonts/glyphs/woff2/be79d1c6.woff2 new file mode 100644 index 0000000..d5ddcf7 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/be79d1c6.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/beaff0e5.woff2 b/cmd/web/static/fonts/glyphs/woff2/beaff0e5.woff2 new file mode 100644 index 0000000..9455c88 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/beaff0e5.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/bebd5dcc.woff2 b/cmd/web/static/fonts/glyphs/woff2/bebd5dcc.woff2 new file mode 100644 index 0000000..71d96af Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/bebd5dcc.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/bf5d7fd2.woff2 b/cmd/web/static/fonts/glyphs/woff2/bf5d7fd2.woff2 new file mode 100644 index 0000000..eb39fdd Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/bf5d7fd2.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/bfff0e1f.woff2 b/cmd/web/static/fonts/glyphs/woff2/bfff0e1f.woff2 new file mode 100644 index 0000000..969caf9 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/bfff0e1f.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/c035acf1.woff2 b/cmd/web/static/fonts/glyphs/woff2/c035acf1.woff2 new file mode 100644 index 0000000..8f89e8a Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/c035acf1.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/c08b2fca.woff2 b/cmd/web/static/fonts/glyphs/woff2/c08b2fca.woff2 new file mode 100644 index 0000000..8aa0671 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/c08b2fca.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/c0b59cd5.woff2 b/cmd/web/static/fonts/glyphs/woff2/c0b59cd5.woff2 new file mode 100644 index 0000000..dd76e3e Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/c0b59cd5.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/c0becad5.woff2 b/cmd/web/static/fonts/glyphs/woff2/c0becad5.woff2 new file mode 100644 index 0000000..1d3a0de Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/c0becad5.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/c0dc60c1.woff2 b/cmd/web/static/fonts/glyphs/woff2/c0dc60c1.woff2 new file mode 100644 index 0000000..5b47ca5 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/c0dc60c1.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/c0ef3e5e.woff2 b/cmd/web/static/fonts/glyphs/woff2/c0ef3e5e.woff2 new file mode 100644 index 0000000..5b1e1ae Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/c0ef3e5e.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/c1538030.woff2 b/cmd/web/static/fonts/glyphs/woff2/c1538030.woff2 new file mode 100644 index 0000000..71028ed Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/c1538030.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/c1581e36.woff2 b/cmd/web/static/fonts/glyphs/woff2/c1581e36.woff2 new file mode 100644 index 0000000..c40fb45 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/c1581e36.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/c17f2a95.woff2 b/cmd/web/static/fonts/glyphs/woff2/c17f2a95.woff2 new file mode 100644 index 0000000..dc3d6e0 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/c17f2a95.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/c206b69c.woff2 b/cmd/web/static/fonts/glyphs/woff2/c206b69c.woff2 new file mode 100644 index 0000000..820309c Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/c206b69c.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/c21fd5eb.woff2 b/cmd/web/static/fonts/glyphs/woff2/c21fd5eb.woff2 new file mode 100644 index 0000000..f991159 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/c21fd5eb.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/c290dee9.woff2 b/cmd/web/static/fonts/glyphs/woff2/c290dee9.woff2 new file mode 100644 index 0000000..52e63ce Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/c290dee9.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/c3ad2575.woff2 b/cmd/web/static/fonts/glyphs/woff2/c3ad2575.woff2 new file mode 100644 index 0000000..18ff453 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/c3ad2575.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/c3c3fe75.woff2 b/cmd/web/static/fonts/glyphs/woff2/c3c3fe75.woff2 new file mode 100644 index 0000000..cc91872 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/c3c3fe75.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/c3f23f1d.woff2 b/cmd/web/static/fonts/glyphs/woff2/c3f23f1d.woff2 new file mode 100644 index 0000000..904554f Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/c3f23f1d.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/c407df2f.woff2 b/cmd/web/static/fonts/glyphs/woff2/c407df2f.woff2 new file mode 100644 index 0000000..a88cb60 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/c407df2f.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/c42bbfd6.woff2 b/cmd/web/static/fonts/glyphs/woff2/c42bbfd6.woff2 new file mode 100644 index 0000000..5038559 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/c42bbfd6.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/c48a78a5.woff2 b/cmd/web/static/fonts/glyphs/woff2/c48a78a5.woff2 new file mode 100644 index 0000000..95a1e53 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/c48a78a5.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/c579a0a6.woff2 b/cmd/web/static/fonts/glyphs/woff2/c579a0a6.woff2 new file mode 100644 index 0000000..dae8ab4 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/c579a0a6.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/c67c215e.woff2 b/cmd/web/static/fonts/glyphs/woff2/c67c215e.woff2 new file mode 100644 index 0000000..305331a Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/c67c215e.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/c67e4554.woff2 b/cmd/web/static/fonts/glyphs/woff2/c67e4554.woff2 new file mode 100644 index 0000000..be5d643 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/c67e4554.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/c71e8d9a.woff2 b/cmd/web/static/fonts/glyphs/woff2/c71e8d9a.woff2 new file mode 100644 index 0000000..f480a9f Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/c71e8d9a.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/c7a8c9c1.woff2 b/cmd/web/static/fonts/glyphs/woff2/c7a8c9c1.woff2 new file mode 100644 index 0000000..4374026 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/c7a8c9c1.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/c7e2b3d5.woff2 b/cmd/web/static/fonts/glyphs/woff2/c7e2b3d5.woff2 new file mode 100644 index 0000000..7da0e00 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/c7e2b3d5.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/c7e82146.woff2 b/cmd/web/static/fonts/glyphs/woff2/c7e82146.woff2 new file mode 100644 index 0000000..46d00d4 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/c7e82146.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/c7e8635b.woff2 b/cmd/web/static/fonts/glyphs/woff2/c7e8635b.woff2 new file mode 100644 index 0000000..947caf0 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/c7e8635b.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/c8e64019.woff2 b/cmd/web/static/fonts/glyphs/woff2/c8e64019.woff2 new file mode 100644 index 0000000..d07c66c Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/c8e64019.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/c931b176.woff2 b/cmd/web/static/fonts/glyphs/woff2/c931b176.woff2 new file mode 100644 index 0000000..91a8ad4 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/c931b176.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/c9480f66.woff2 b/cmd/web/static/fonts/glyphs/woff2/c9480f66.woff2 new file mode 100644 index 0000000..1348eca Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/c9480f66.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/c9797180.woff2 b/cmd/web/static/fonts/glyphs/woff2/c9797180.woff2 new file mode 100644 index 0000000..8eba6aa Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/c9797180.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/c9a00be7.woff2 b/cmd/web/static/fonts/glyphs/woff2/c9a00be7.woff2 new file mode 100644 index 0000000..0d71b9a Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/c9a00be7.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/c9b3ada5.woff2 b/cmd/web/static/fonts/glyphs/woff2/c9b3ada5.woff2 new file mode 100644 index 0000000..0b42980 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/c9b3ada5.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/c9b5076d.woff2 b/cmd/web/static/fonts/glyphs/woff2/c9b5076d.woff2 new file mode 100644 index 0000000..fab4dbf Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/c9b5076d.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/c9ede1cf.woff2 b/cmd/web/static/fonts/glyphs/woff2/c9ede1cf.woff2 new file mode 100644 index 0000000..2781990 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/c9ede1cf.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/ca2be6c9.woff2 b/cmd/web/static/fonts/glyphs/woff2/ca2be6c9.woff2 new file mode 100644 index 0000000..abaecf8 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/ca2be6c9.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/cb2908e9.woff2 b/cmd/web/static/fonts/glyphs/woff2/cb2908e9.woff2 new file mode 100644 index 0000000..57c3606 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/cb2908e9.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/cba0a9ca.woff2 b/cmd/web/static/fonts/glyphs/woff2/cba0a9ca.woff2 new file mode 100644 index 0000000..a896d08 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/cba0a9ca.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/cbac8aaa.woff2 b/cmd/web/static/fonts/glyphs/woff2/cbac8aaa.woff2 new file mode 100644 index 0000000..bd60a13 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/cbac8aaa.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/ccba5701.woff2 b/cmd/web/static/fonts/glyphs/woff2/ccba5701.woff2 new file mode 100644 index 0000000..24a345f Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/ccba5701.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/ccc16298.woff2 b/cmd/web/static/fonts/glyphs/woff2/ccc16298.woff2 new file mode 100644 index 0000000..911888f Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/ccc16298.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/cce1425f.woff2 b/cmd/web/static/fonts/glyphs/woff2/cce1425f.woff2 new file mode 100644 index 0000000..3562117 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/cce1425f.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/cd3dc2c3.woff2 b/cmd/web/static/fonts/glyphs/woff2/cd3dc2c3.woff2 new file mode 100644 index 0000000..077378a Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/cd3dc2c3.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/cd4d8f7a.woff2 b/cmd/web/static/fonts/glyphs/woff2/cd4d8f7a.woff2 new file mode 100644 index 0000000..b7ba155 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/cd4d8f7a.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/cda1a566.woff2 b/cmd/web/static/fonts/glyphs/woff2/cda1a566.woff2 new file mode 100644 index 0000000..73f9cfd Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/cda1a566.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/cdb6b693.woff2 b/cmd/web/static/fonts/glyphs/woff2/cdb6b693.woff2 new file mode 100644 index 0000000..3596dac Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/cdb6b693.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/cdc770af.woff2 b/cmd/web/static/fonts/glyphs/woff2/cdc770af.woff2 new file mode 100644 index 0000000..2fdbc1e Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/cdc770af.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/cdf1c3ef.woff2 b/cmd/web/static/fonts/glyphs/woff2/cdf1c3ef.woff2 new file mode 100644 index 0000000..e0a59fd Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/cdf1c3ef.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/ce715050.woff2 b/cmd/web/static/fonts/glyphs/woff2/ce715050.woff2 new file mode 100644 index 0000000..2e47c96 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/ce715050.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/ce9eb004.woff2 b/cmd/web/static/fonts/glyphs/woff2/ce9eb004.woff2 new file mode 100644 index 0000000..7750926 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/ce9eb004.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/cebaa24b.woff2 b/cmd/web/static/fonts/glyphs/woff2/cebaa24b.woff2 new file mode 100644 index 0000000..346218e Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/cebaa24b.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/cf02d8e2.woff2 b/cmd/web/static/fonts/glyphs/woff2/cf02d8e2.woff2 new file mode 100644 index 0000000..76342f2 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/cf02d8e2.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/cf248e93.woff2 b/cmd/web/static/fonts/glyphs/woff2/cf248e93.woff2 new file mode 100644 index 0000000..59eeb15 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/cf248e93.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/cf295f73.woff2 b/cmd/web/static/fonts/glyphs/woff2/cf295f73.woff2 new file mode 100644 index 0000000..ab54a14 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/cf295f73.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/cf2a0a85.woff2 b/cmd/web/static/fonts/glyphs/woff2/cf2a0a85.woff2 new file mode 100644 index 0000000..ec58312 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/cf2a0a85.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/cf6d6f30.woff2 b/cmd/web/static/fonts/glyphs/woff2/cf6d6f30.woff2 new file mode 100644 index 0000000..1455316 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/cf6d6f30.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/cf9d5267.woff2 b/cmd/web/static/fonts/glyphs/woff2/cf9d5267.woff2 new file mode 100644 index 0000000..9b6082f Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/cf9d5267.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/cfa9655f.woff2 b/cmd/web/static/fonts/glyphs/woff2/cfa9655f.woff2 new file mode 100644 index 0000000..59aabdf Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/cfa9655f.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/cff6eea9.woff2 b/cmd/web/static/fonts/glyphs/woff2/cff6eea9.woff2 new file mode 100644 index 0000000..ae606bb Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/cff6eea9.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/d0342038.woff2 b/cmd/web/static/fonts/glyphs/woff2/d0342038.woff2 new file mode 100644 index 0000000..fa20267 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/d0342038.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/d09b48b1.woff2 b/cmd/web/static/fonts/glyphs/woff2/d09b48b1.woff2 new file mode 100644 index 0000000..3c90db3 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/d09b48b1.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/d0a546a6.woff2 b/cmd/web/static/fonts/glyphs/woff2/d0a546a6.woff2 new file mode 100644 index 0000000..3643fec Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/d0a546a6.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/d0cecf4f.woff2 b/cmd/web/static/fonts/glyphs/woff2/d0cecf4f.woff2 new file mode 100644 index 0000000..224ccae Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/d0cecf4f.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/d0e625c0.woff2 b/cmd/web/static/fonts/glyphs/woff2/d0e625c0.woff2 new file mode 100644 index 0000000..7e97045 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/d0e625c0.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/d0f4fedd.woff2 b/cmd/web/static/fonts/glyphs/woff2/d0f4fedd.woff2 new file mode 100644 index 0000000..7303846 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/d0f4fedd.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/d0f7d102.woff2 b/cmd/web/static/fonts/glyphs/woff2/d0f7d102.woff2 new file mode 100644 index 0000000..b8c5610 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/d0f7d102.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/d108850a.woff2 b/cmd/web/static/fonts/glyphs/woff2/d108850a.woff2 new file mode 100644 index 0000000..6cc5864 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/d108850a.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/d129485b.woff2 b/cmd/web/static/fonts/glyphs/woff2/d129485b.woff2 new file mode 100644 index 0000000..5ad6291 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/d129485b.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/d20bd061.woff2 b/cmd/web/static/fonts/glyphs/woff2/d20bd061.woff2 new file mode 100644 index 0000000..f55375e Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/d20bd061.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/d214de53.woff2 b/cmd/web/static/fonts/glyphs/woff2/d214de53.woff2 new file mode 100644 index 0000000..14625e7 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/d214de53.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/d219fd91.woff2 b/cmd/web/static/fonts/glyphs/woff2/d219fd91.woff2 new file mode 100644 index 0000000..946e91e Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/d219fd91.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/d228d1ac.woff2 b/cmd/web/static/fonts/glyphs/woff2/d228d1ac.woff2 new file mode 100644 index 0000000..a2d33ac Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/d228d1ac.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/d269bf57.woff2 b/cmd/web/static/fonts/glyphs/woff2/d269bf57.woff2 new file mode 100644 index 0000000..6d6a4fa Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/d269bf57.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/d2800ad0.woff2 b/cmd/web/static/fonts/glyphs/woff2/d2800ad0.woff2 new file mode 100644 index 0000000..833ec82 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/d2800ad0.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/d289b887.woff2 b/cmd/web/static/fonts/glyphs/woff2/d289b887.woff2 new file mode 100644 index 0000000..e562ef0 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/d289b887.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/d2c72c19.woff2 b/cmd/web/static/fonts/glyphs/woff2/d2c72c19.woff2 new file mode 100644 index 0000000..372ff89 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/d2c72c19.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/d2e8e796.woff2 b/cmd/web/static/fonts/glyphs/woff2/d2e8e796.woff2 new file mode 100644 index 0000000..fea54ac Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/d2e8e796.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/d2ebd46c.woff2 b/cmd/web/static/fonts/glyphs/woff2/d2ebd46c.woff2 new file mode 100644 index 0000000..132b5dd Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/d2ebd46c.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/d32f8a26.woff2 b/cmd/web/static/fonts/glyphs/woff2/d32f8a26.woff2 new file mode 100644 index 0000000..ee7dd45 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/d32f8a26.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/d43f6100.woff2 b/cmd/web/static/fonts/glyphs/woff2/d43f6100.woff2 new file mode 100644 index 0000000..eb0433e Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/d43f6100.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/d4a96716.woff2 b/cmd/web/static/fonts/glyphs/woff2/d4a96716.woff2 new file mode 100644 index 0000000..912ff88 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/d4a96716.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/d4ae9299.woff2 b/cmd/web/static/fonts/glyphs/woff2/d4ae9299.woff2 new file mode 100644 index 0000000..6c98728 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/d4ae9299.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/d4fffa4b.woff2 b/cmd/web/static/fonts/glyphs/woff2/d4fffa4b.woff2 new file mode 100644 index 0000000..79a4794 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/d4fffa4b.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/d57e51c5.woff2 b/cmd/web/static/fonts/glyphs/woff2/d57e51c5.woff2 new file mode 100644 index 0000000..724f4b6 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/d57e51c5.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/d5e77211.woff2 b/cmd/web/static/fonts/glyphs/woff2/d5e77211.woff2 new file mode 100644 index 0000000..9f25695 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/d5e77211.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/d615451a.woff2 b/cmd/web/static/fonts/glyphs/woff2/d615451a.woff2 new file mode 100644 index 0000000..330fc03 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/d615451a.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/d662c711.woff2 b/cmd/web/static/fonts/glyphs/woff2/d662c711.woff2 new file mode 100644 index 0000000..7cfb12e Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/d662c711.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/d68c6b5a.woff2 b/cmd/web/static/fonts/glyphs/woff2/d68c6b5a.woff2 new file mode 100644 index 0000000..93f5ba6 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/d68c6b5a.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/d6f4d6c5.woff2 b/cmd/web/static/fonts/glyphs/woff2/d6f4d6c5.woff2 new file mode 100644 index 0000000..2e4301e Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/d6f4d6c5.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/d702d8e9.woff2 b/cmd/web/static/fonts/glyphs/woff2/d702d8e9.woff2 new file mode 100644 index 0000000..80b7779 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/d702d8e9.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/d72e5642.woff2 b/cmd/web/static/fonts/glyphs/woff2/d72e5642.woff2 new file mode 100644 index 0000000..d72d08b Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/d72e5642.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/d741c5dd.woff2 b/cmd/web/static/fonts/glyphs/woff2/d741c5dd.woff2 new file mode 100644 index 0000000..2cac3e8 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/d741c5dd.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/d7a69b7b.woff2 b/cmd/web/static/fonts/glyphs/woff2/d7a69b7b.woff2 new file mode 100644 index 0000000..6bffb97 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/d7a69b7b.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/d7d56ff8.woff2 b/cmd/web/static/fonts/glyphs/woff2/d7d56ff8.woff2 new file mode 100644 index 0000000..828ef2a Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/d7d56ff8.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/d7ecae43.woff2 b/cmd/web/static/fonts/glyphs/woff2/d7ecae43.woff2 new file mode 100644 index 0000000..eb19b18 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/d7ecae43.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/d8f20bf0.woff2 b/cmd/web/static/fonts/glyphs/woff2/d8f20bf0.woff2 new file mode 100644 index 0000000..021fb5e Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/d8f20bf0.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/d8f26b1e.woff2 b/cmd/web/static/fonts/glyphs/woff2/d8f26b1e.woff2 new file mode 100644 index 0000000..211d00e Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/d8f26b1e.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/d9002330.woff2 b/cmd/web/static/fonts/glyphs/woff2/d9002330.woff2 new file mode 100644 index 0000000..ce1fe97 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/d9002330.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/d97e9886.woff2 b/cmd/web/static/fonts/glyphs/woff2/d97e9886.woff2 new file mode 100644 index 0000000..5f2101c Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/d97e9886.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/d9b31097.woff2 b/cmd/web/static/fonts/glyphs/woff2/d9b31097.woff2 new file mode 100644 index 0000000..1e25a98 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/d9b31097.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/d9f1f706.woff2 b/cmd/web/static/fonts/glyphs/woff2/d9f1f706.woff2 new file mode 100644 index 0000000..3a1e394 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/d9f1f706.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/da29dda0.woff2 b/cmd/web/static/fonts/glyphs/woff2/da29dda0.woff2 new file mode 100644 index 0000000..80ad757 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/da29dda0.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/da46da57.woff2 b/cmd/web/static/fonts/glyphs/woff2/da46da57.woff2 new file mode 100644 index 0000000..f8ba059 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/da46da57.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/da8ef2eb.woff2 b/cmd/web/static/fonts/glyphs/woff2/da8ef2eb.woff2 new file mode 100644 index 0000000..78e6cb0 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/da8ef2eb.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/dad2106c.woff2 b/cmd/web/static/fonts/glyphs/woff2/dad2106c.woff2 new file mode 100644 index 0000000..ff9bbba Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/dad2106c.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/dafd1a87.woff2 b/cmd/web/static/fonts/glyphs/woff2/dafd1a87.woff2 new file mode 100644 index 0000000..0b5ffa6 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/dafd1a87.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/db17d1b4.woff2 b/cmd/web/static/fonts/glyphs/woff2/db17d1b4.woff2 new file mode 100644 index 0000000..e86f666 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/db17d1b4.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/db26cd0b.woff2 b/cmd/web/static/fonts/glyphs/woff2/db26cd0b.woff2 new file mode 100644 index 0000000..f5df6a7 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/db26cd0b.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/db8e73dd.woff2 b/cmd/web/static/fonts/glyphs/woff2/db8e73dd.woff2 new file mode 100644 index 0000000..b8479ec Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/db8e73dd.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/db92c609.woff2 b/cmd/web/static/fonts/glyphs/woff2/db92c609.woff2 new file mode 100644 index 0000000..5416135 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/db92c609.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/dbdc4b76.woff2 b/cmd/web/static/fonts/glyphs/woff2/dbdc4b76.woff2 new file mode 100644 index 0000000..b8e6507 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/dbdc4b76.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/dbf1f527.woff2 b/cmd/web/static/fonts/glyphs/woff2/dbf1f527.woff2 new file mode 100644 index 0000000..1b06c84 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/dbf1f527.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/dbfd39a7.woff2 b/cmd/web/static/fonts/glyphs/woff2/dbfd39a7.woff2 new file mode 100644 index 0000000..adca78c Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/dbfd39a7.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/dc1b7673.woff2 b/cmd/web/static/fonts/glyphs/woff2/dc1b7673.woff2 new file mode 100644 index 0000000..1560b2c Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/dc1b7673.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/dc86c2f6.woff2 b/cmd/web/static/fonts/glyphs/woff2/dc86c2f6.woff2 new file mode 100644 index 0000000..d17e13f Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/dc86c2f6.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/dcd33a62.woff2 b/cmd/web/static/fonts/glyphs/woff2/dcd33a62.woff2 new file mode 100644 index 0000000..6a09ffc Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/dcd33a62.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/dcd7c346.woff2 b/cmd/web/static/fonts/glyphs/woff2/dcd7c346.woff2 new file mode 100644 index 0000000..ac56924 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/dcd7c346.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/dce2e772.woff2 b/cmd/web/static/fonts/glyphs/woff2/dce2e772.woff2 new file mode 100644 index 0000000..f24b354 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/dce2e772.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/dcf87866.woff2 b/cmd/web/static/fonts/glyphs/woff2/dcf87866.woff2 new file mode 100644 index 0000000..e5d8ff1 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/dcf87866.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/dcfebe0e.woff2 b/cmd/web/static/fonts/glyphs/woff2/dcfebe0e.woff2 new file mode 100644 index 0000000..a211b64 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/dcfebe0e.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/dd10b6f4.woff2 b/cmd/web/static/fonts/glyphs/woff2/dd10b6f4.woff2 new file mode 100644 index 0000000..6da38dc Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/dd10b6f4.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/dda67aa8.woff2 b/cmd/web/static/fonts/glyphs/woff2/dda67aa8.woff2 new file mode 100644 index 0000000..57b69ea Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/dda67aa8.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/ddff0b65.woff2 b/cmd/web/static/fonts/glyphs/woff2/ddff0b65.woff2 new file mode 100644 index 0000000..463e013 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/ddff0b65.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/de01f078.woff2 b/cmd/web/static/fonts/glyphs/woff2/de01f078.woff2 new file mode 100644 index 0000000..6ccc324 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/de01f078.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/de978ae9.woff2 b/cmd/web/static/fonts/glyphs/woff2/de978ae9.woff2 new file mode 100644 index 0000000..6fb43ee Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/de978ae9.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/dee08cc0.woff2 b/cmd/web/static/fonts/glyphs/woff2/dee08cc0.woff2 new file mode 100644 index 0000000..ff1de34 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/dee08cc0.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/df01c285.woff2 b/cmd/web/static/fonts/glyphs/woff2/df01c285.woff2 new file mode 100644 index 0000000..30420c2 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/df01c285.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/df2fadba.woff2 b/cmd/web/static/fonts/glyphs/woff2/df2fadba.woff2 new file mode 100644 index 0000000..f2c0784 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/df2fadba.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/df6bc6bf.woff2 b/cmd/web/static/fonts/glyphs/woff2/df6bc6bf.woff2 new file mode 100644 index 0000000..ae89510 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/df6bc6bf.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/df82f44f.woff2 b/cmd/web/static/fonts/glyphs/woff2/df82f44f.woff2 new file mode 100644 index 0000000..32470a6 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/df82f44f.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/df860193.woff2 b/cmd/web/static/fonts/glyphs/woff2/df860193.woff2 new file mode 100644 index 0000000..1ac0abf Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/df860193.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/dfc642b4.woff2 b/cmd/web/static/fonts/glyphs/woff2/dfc642b4.woff2 new file mode 100644 index 0000000..530f70d Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/dfc642b4.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/e036f61e.woff2 b/cmd/web/static/fonts/glyphs/woff2/e036f61e.woff2 new file mode 100644 index 0000000..8fb2906 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/e036f61e.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/e0436cb5.woff2 b/cmd/web/static/fonts/glyphs/woff2/e0436cb5.woff2 new file mode 100644 index 0000000..f13e11d Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/e0436cb5.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/e07866a3.woff2 b/cmd/web/static/fonts/glyphs/woff2/e07866a3.woff2 new file mode 100644 index 0000000..253146d Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/e07866a3.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/e094cfe4.woff2 b/cmd/web/static/fonts/glyphs/woff2/e094cfe4.woff2 new file mode 100644 index 0000000..909b632 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/e094cfe4.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/e0cf68e8.woff2 b/cmd/web/static/fonts/glyphs/woff2/e0cf68e8.woff2 new file mode 100644 index 0000000..942098f Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/e0cf68e8.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/e18256ba.woff2 b/cmd/web/static/fonts/glyphs/woff2/e18256ba.woff2 new file mode 100644 index 0000000..8b757ec Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/e18256ba.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/e24b4971.woff2 b/cmd/web/static/fonts/glyphs/woff2/e24b4971.woff2 new file mode 100644 index 0000000..cdc4304 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/e24b4971.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/e264079a.woff2 b/cmd/web/static/fonts/glyphs/woff2/e264079a.woff2 new file mode 100644 index 0000000..23ddf41 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/e264079a.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/e2920962.woff2 b/cmd/web/static/fonts/glyphs/woff2/e2920962.woff2 new file mode 100644 index 0000000..72e6e03 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/e2920962.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/e29e8451.woff2 b/cmd/web/static/fonts/glyphs/woff2/e29e8451.woff2 new file mode 100644 index 0000000..953abac Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/e29e8451.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/e2b7f2e8.woff2 b/cmd/web/static/fonts/glyphs/woff2/e2b7f2e8.woff2 new file mode 100644 index 0000000..f282f18 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/e2b7f2e8.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/e2cd4ea9.woff2 b/cmd/web/static/fonts/glyphs/woff2/e2cd4ea9.woff2 new file mode 100644 index 0000000..6152679 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/e2cd4ea9.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/e2f6544b.woff2 b/cmd/web/static/fonts/glyphs/woff2/e2f6544b.woff2 new file mode 100644 index 0000000..21c4b45 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/e2f6544b.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/e2ffe70e.woff2 b/cmd/web/static/fonts/glyphs/woff2/e2ffe70e.woff2 new file mode 100644 index 0000000..cbf157b Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/e2ffe70e.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/e33b2c7f.woff2 b/cmd/web/static/fonts/glyphs/woff2/e33b2c7f.woff2 new file mode 100644 index 0000000..373b1d4 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/e33b2c7f.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/e3ae4d2d.woff2 b/cmd/web/static/fonts/glyphs/woff2/e3ae4d2d.woff2 new file mode 100644 index 0000000..d369801 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/e3ae4d2d.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/e3d7c442.woff2 b/cmd/web/static/fonts/glyphs/woff2/e3d7c442.woff2 new file mode 100644 index 0000000..529e44c Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/e3d7c442.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/e49824ce.woff2 b/cmd/web/static/fonts/glyphs/woff2/e49824ce.woff2 new file mode 100644 index 0000000..880cb2c Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/e49824ce.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/e4ec2dc2.woff2 b/cmd/web/static/fonts/glyphs/woff2/e4ec2dc2.woff2 new file mode 100644 index 0000000..38def63 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/e4ec2dc2.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/e4f0095c.woff2 b/cmd/web/static/fonts/glyphs/woff2/e4f0095c.woff2 new file mode 100644 index 0000000..6d1c52b Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/e4f0095c.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/e516e4c5.woff2 b/cmd/web/static/fonts/glyphs/woff2/e516e4c5.woff2 new file mode 100644 index 0000000..52e47ed Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/e516e4c5.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/e528cde1.woff2 b/cmd/web/static/fonts/glyphs/woff2/e528cde1.woff2 new file mode 100644 index 0000000..2f8371f Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/e528cde1.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/e55176f2.woff2 b/cmd/web/static/fonts/glyphs/woff2/e55176f2.woff2 new file mode 100644 index 0000000..6f7c8e7 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/e55176f2.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/e5e909f3.woff2 b/cmd/web/static/fonts/glyphs/woff2/e5e909f3.woff2 new file mode 100644 index 0000000..d4e23d6 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/e5e909f3.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/e67af557.woff2 b/cmd/web/static/fonts/glyphs/woff2/e67af557.woff2 new file mode 100644 index 0000000..5f50ecf Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/e67af557.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/e6b4aab7.woff2 b/cmd/web/static/fonts/glyphs/woff2/e6b4aab7.woff2 new file mode 100644 index 0000000..9f77c9e Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/e6b4aab7.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/e7803979.woff2 b/cmd/web/static/fonts/glyphs/woff2/e7803979.woff2 new file mode 100644 index 0000000..f296b74 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/e7803979.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/e7aad562.woff2 b/cmd/web/static/fonts/glyphs/woff2/e7aad562.woff2 new file mode 100644 index 0000000..f8bf5da Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/e7aad562.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/e7c8de5d.woff2 b/cmd/web/static/fonts/glyphs/woff2/e7c8de5d.woff2 new file mode 100644 index 0000000..a8d10fb Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/e7c8de5d.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/e7d3044b.woff2 b/cmd/web/static/fonts/glyphs/woff2/e7d3044b.woff2 new file mode 100644 index 0000000..fd43038 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/e7d3044b.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/e83034c6.woff2 b/cmd/web/static/fonts/glyphs/woff2/e83034c6.woff2 new file mode 100644 index 0000000..f66a214 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/e83034c6.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/e8777ffa.woff2 b/cmd/web/static/fonts/glyphs/woff2/e8777ffa.woff2 new file mode 100644 index 0000000..4e64539 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/e8777ffa.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/e8acadad.woff2 b/cmd/web/static/fonts/glyphs/woff2/e8acadad.woff2 new file mode 100644 index 0000000..1e7f058 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/e8acadad.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/e98b08c6.woff2 b/cmd/web/static/fonts/glyphs/woff2/e98b08c6.woff2 new file mode 100644 index 0000000..e71534c Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/e98b08c6.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/e9b1d552.woff2 b/cmd/web/static/fonts/glyphs/woff2/e9b1d552.woff2 new file mode 100644 index 0000000..72e074d Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/e9b1d552.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/ea17073b.woff2 b/cmd/web/static/fonts/glyphs/woff2/ea17073b.woff2 new file mode 100644 index 0000000..76f4c1f Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/ea17073b.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/ea26fef6.woff2 b/cmd/web/static/fonts/glyphs/woff2/ea26fef6.woff2 new file mode 100644 index 0000000..1c356de Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/ea26fef6.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/ea8e0a1a.woff2 b/cmd/web/static/fonts/glyphs/woff2/ea8e0a1a.woff2 new file mode 100644 index 0000000..92014e4 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/ea8e0a1a.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/ea915e6c.woff2 b/cmd/web/static/fonts/glyphs/woff2/ea915e6c.woff2 new file mode 100644 index 0000000..4e1aea3 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/ea915e6c.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/eaca633e.woff2 b/cmd/web/static/fonts/glyphs/woff2/eaca633e.woff2 new file mode 100644 index 0000000..8ad2642 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/eaca633e.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/eb2a76c7.woff2 b/cmd/web/static/fonts/glyphs/woff2/eb2a76c7.woff2 new file mode 100644 index 0000000..8b08bc2 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/eb2a76c7.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/eb67386f.woff2 b/cmd/web/static/fonts/glyphs/woff2/eb67386f.woff2 new file mode 100644 index 0000000..95ef40b Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/eb67386f.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/eb7c1720.woff2 b/cmd/web/static/fonts/glyphs/woff2/eb7c1720.woff2 new file mode 100644 index 0000000..f2139a7 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/eb7c1720.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/ec5a8b64.woff2 b/cmd/web/static/fonts/glyphs/woff2/ec5a8b64.woff2 new file mode 100644 index 0000000..64002ee Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/ec5a8b64.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/ec62219b.woff2 b/cmd/web/static/fonts/glyphs/woff2/ec62219b.woff2 new file mode 100644 index 0000000..f24916a Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/ec62219b.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/ec9c031f.woff2 b/cmd/web/static/fonts/glyphs/woff2/ec9c031f.woff2 new file mode 100644 index 0000000..2d62c78 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/ec9c031f.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/eca1fd47.woff2 b/cmd/web/static/fonts/glyphs/woff2/eca1fd47.woff2 new file mode 100644 index 0000000..eed7549 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/eca1fd47.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/eccf06e9.woff2 b/cmd/web/static/fonts/glyphs/woff2/eccf06e9.woff2 new file mode 100644 index 0000000..d042304 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/eccf06e9.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/ecd94f38.woff2 b/cmd/web/static/fonts/glyphs/woff2/ecd94f38.woff2 new file mode 100644 index 0000000..d4d60ce Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/ecd94f38.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/ed4c2c15.woff2 b/cmd/web/static/fonts/glyphs/woff2/ed4c2c15.woff2 new file mode 100644 index 0000000..d885795 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/ed4c2c15.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/ed5cf55c.woff2 b/cmd/web/static/fonts/glyphs/woff2/ed5cf55c.woff2 new file mode 100644 index 0000000..406fa61 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/ed5cf55c.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/edba7c75.woff2 b/cmd/web/static/fonts/glyphs/woff2/edba7c75.woff2 new file mode 100644 index 0000000..f145a08 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/edba7c75.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/edcb62d5.woff2 b/cmd/web/static/fonts/glyphs/woff2/edcb62d5.woff2 new file mode 100644 index 0000000..1dcd0af Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/edcb62d5.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/ee154cca.woff2 b/cmd/web/static/fonts/glyphs/woff2/ee154cca.woff2 new file mode 100644 index 0000000..ce1a239 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/ee154cca.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/ef00237d.woff2 b/cmd/web/static/fonts/glyphs/woff2/ef00237d.woff2 new file mode 100644 index 0000000..6c12b2f Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/ef00237d.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/efc8654c.woff2 b/cmd/web/static/fonts/glyphs/woff2/efc8654c.woff2 new file mode 100644 index 0000000..a677f4a Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/efc8654c.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/f0239cc2.woff2 b/cmd/web/static/fonts/glyphs/woff2/f0239cc2.woff2 new file mode 100644 index 0000000..1d2ddef Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/f0239cc2.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/f03ffe17.woff2 b/cmd/web/static/fonts/glyphs/woff2/f03ffe17.woff2 new file mode 100644 index 0000000..048ce46 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/f03ffe17.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/f076afbd.woff2 b/cmd/web/static/fonts/glyphs/woff2/f076afbd.woff2 new file mode 100644 index 0000000..e144521 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/f076afbd.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/f20a956f.woff2 b/cmd/web/static/fonts/glyphs/woff2/f20a956f.woff2 new file mode 100644 index 0000000..9f45fae Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/f20a956f.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/f21dea18.woff2 b/cmd/web/static/fonts/glyphs/woff2/f21dea18.woff2 new file mode 100644 index 0000000..dc9f114 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/f21dea18.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/f265e93a.woff2 b/cmd/web/static/fonts/glyphs/woff2/f265e93a.woff2 new file mode 100644 index 0000000..1c403c0 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/f265e93a.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/f2a75c7f.woff2 b/cmd/web/static/fonts/glyphs/woff2/f2a75c7f.woff2 new file mode 100644 index 0000000..4c481f1 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/f2a75c7f.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/f324b46a.woff2 b/cmd/web/static/fonts/glyphs/woff2/f324b46a.woff2 new file mode 100644 index 0000000..23f807c Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/f324b46a.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/f352189b.woff2 b/cmd/web/static/fonts/glyphs/woff2/f352189b.woff2 new file mode 100644 index 0000000..30108da Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/f352189b.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/f38f3a94.woff2 b/cmd/web/static/fonts/glyphs/woff2/f38f3a94.woff2 new file mode 100644 index 0000000..847b6a1 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/f38f3a94.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/f3aa8be6.woff2 b/cmd/web/static/fonts/glyphs/woff2/f3aa8be6.woff2 new file mode 100644 index 0000000..af8f7c9 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/f3aa8be6.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/f3b8c582.woff2 b/cmd/web/static/fonts/glyphs/woff2/f3b8c582.woff2 new file mode 100644 index 0000000..749a676 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/f3b8c582.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/f4964839.woff2 b/cmd/web/static/fonts/glyphs/woff2/f4964839.woff2 new file mode 100644 index 0000000..bdb3b8a Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/f4964839.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/f4c46d43.woff2 b/cmd/web/static/fonts/glyphs/woff2/f4c46d43.woff2 new file mode 100644 index 0000000..55b01cf Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/f4c46d43.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/f51f8bf3.woff2 b/cmd/web/static/fonts/glyphs/woff2/f51f8bf3.woff2 new file mode 100644 index 0000000..78842f1 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/f51f8bf3.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/f522c872.woff2 b/cmd/web/static/fonts/glyphs/woff2/f522c872.woff2 new file mode 100644 index 0000000..027372a Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/f522c872.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/f674659b.woff2 b/cmd/web/static/fonts/glyphs/woff2/f674659b.woff2 new file mode 100644 index 0000000..0f85845 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/f674659b.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/f6a67776.woff2 b/cmd/web/static/fonts/glyphs/woff2/f6a67776.woff2 new file mode 100644 index 0000000..878cc72 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/f6a67776.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/f6b8b235.woff2 b/cmd/web/static/fonts/glyphs/woff2/f6b8b235.woff2 new file mode 100644 index 0000000..b0ac9ed Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/f6b8b235.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/f6bda42b.woff2 b/cmd/web/static/fonts/glyphs/woff2/f6bda42b.woff2 new file mode 100644 index 0000000..bd31804 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/f6bda42b.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/f6e65e59.woff2 b/cmd/web/static/fonts/glyphs/woff2/f6e65e59.woff2 new file mode 100644 index 0000000..1cc722a Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/f6e65e59.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/f73fed81.woff2 b/cmd/web/static/fonts/glyphs/woff2/f73fed81.woff2 new file mode 100644 index 0000000..9e8839e Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/f73fed81.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/f80829f5.woff2 b/cmd/web/static/fonts/glyphs/woff2/f80829f5.woff2 new file mode 100644 index 0000000..9dbc9bc Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/f80829f5.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/f871e4e4.woff2 b/cmd/web/static/fonts/glyphs/woff2/f871e4e4.woff2 new file mode 100644 index 0000000..54ba1c8 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/f871e4e4.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/f874c31d.woff2 b/cmd/web/static/fonts/glyphs/woff2/f874c31d.woff2 new file mode 100644 index 0000000..5ee5bf5 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/f874c31d.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/f8a8936b.woff2 b/cmd/web/static/fonts/glyphs/woff2/f8a8936b.woff2 new file mode 100644 index 0000000..cd12968 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/f8a8936b.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/f8c78a1d.woff2 b/cmd/web/static/fonts/glyphs/woff2/f8c78a1d.woff2 new file mode 100644 index 0000000..1d2cd3f Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/f8c78a1d.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/f952c473.woff2 b/cmd/web/static/fonts/glyphs/woff2/f952c473.woff2 new file mode 100644 index 0000000..1b6b6a6 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/f952c473.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/f99464f4.woff2 b/cmd/web/static/fonts/glyphs/woff2/f99464f4.woff2 new file mode 100644 index 0000000..6c964ba Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/f99464f4.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/fa9edb37.woff2 b/cmd/web/static/fonts/glyphs/woff2/fa9edb37.woff2 new file mode 100644 index 0000000..28d3709 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/fa9edb37.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/fbf90859.woff2 b/cmd/web/static/fonts/glyphs/woff2/fbf90859.woff2 new file mode 100644 index 0000000..cd73c71 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/fbf90859.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/fc061854.woff2 b/cmd/web/static/fonts/glyphs/woff2/fc061854.woff2 new file mode 100644 index 0000000..eb15cd8 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/fc061854.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/fccd4567.woff2 b/cmd/web/static/fonts/glyphs/woff2/fccd4567.woff2 new file mode 100644 index 0000000..11df275 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/fccd4567.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/fcf313ef.woff2 b/cmd/web/static/fonts/glyphs/woff2/fcf313ef.woff2 new file mode 100644 index 0000000..1118161 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/fcf313ef.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/fd56eaf9.woff2 b/cmd/web/static/fonts/glyphs/woff2/fd56eaf9.woff2 new file mode 100644 index 0000000..d3e95d0 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/fd56eaf9.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/fd5fe89c.woff2 b/cmd/web/static/fonts/glyphs/woff2/fd5fe89c.woff2 new file mode 100644 index 0000000..03e7284 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/fd5fe89c.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/fda7a318.woff2 b/cmd/web/static/fonts/glyphs/woff2/fda7a318.woff2 new file mode 100644 index 0000000..125d766 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/fda7a318.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/fdc4299c.woff2 b/cmd/web/static/fonts/glyphs/woff2/fdc4299c.woff2 new file mode 100644 index 0000000..6449194 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/fdc4299c.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/fe1a9b49.woff2 b/cmd/web/static/fonts/glyphs/woff2/fe1a9b49.woff2 new file mode 100644 index 0000000..7d41e84 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/fe1a9b49.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/fe2af1dc.woff2 b/cmd/web/static/fonts/glyphs/woff2/fe2af1dc.woff2 new file mode 100644 index 0000000..2189075 Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/fe2af1dc.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/fef0478f.woff2 b/cmd/web/static/fonts/glyphs/woff2/fef0478f.woff2 new file mode 100644 index 0000000..52339ee Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/fef0478f.woff2 differ diff --git a/cmd/web/static/fonts/glyphs/woff2/ffa0cc23.woff2 b/cmd/web/static/fonts/glyphs/woff2/ffa0cc23.woff2 new file mode 100644 index 0000000..df4eaac Binary files /dev/null and b/cmd/web/static/fonts/glyphs/woff2/ffa0cc23.woff2 differ diff --git a/cmd/web/static/index.html b/cmd/web/static/index.html index 73ffbe3..201225f 100644 --- a/cmd/web/static/index.html +++ b/cmd/web/static/index.html @@ -13,7 +13,7 @@ - +