Merge pull request #19 from status-im/ui-styling

Styling welcome page
This commit is contained in:
Leonardo Pissinali 2018-09-24 19:22:08 +02:00 committed by GitHub
commit ccbe7e8b83
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
8 changed files with 314 additions and 42 deletions

1
.gitignore vendored
View File

@ -41,3 +41,4 @@ package-lock.json
# other # other
.vs/ .vs/
bin/ bin/
.idea/

View File

@ -23,6 +23,7 @@ import StatusLogo from '../../ui/icons/components/StatusLogo'
import EnsLogo from '../../ui/icons/logos/ens.png'; import EnsLogo from '../../ui/icons/logos/ens.png';
import { formatPrice } from '../ens/utils'; import { formatPrice } from '../ens/utils';
import CheckCircle from '../../ui/icons/components/baseline_check_circle_outline.png'; import CheckCircle from '../../ui/icons/components/baseline_check_circle_outline.png';
import WarningIcon from '../../ui/icons/svg/warning.svg';
const { getPrice, getExpirationTime, release } = UsernameRegistrar.methods; const { getPrice, getExpirationTime, release } = UsernameRegistrar.methods;
import NotInterested from '@material-ui/icons/NotInterested'; import NotInterested from '@material-ui/icons/NotInterested';
import Face from '@material-ui/icons/Face'; import Face from '@material-ui/icons/Face';
@ -284,15 +285,17 @@ const LookupForm = ({ handleSubmit, values, handleChange, justSearch }) => (
<MobileSearch <MobileSearch
search search
name="domainName" name="domainName"
placeholder='Search for vacant name' placeholder='Search for available name'
value={values.domainName} value={values.domainName}
onChange={handleChange} onChange={handleChange}
required required
wide /> wide />
{!justSearch && <Typography variant="subheading" style={{ color: '#939ba1', textAlign: 'center', marginTop: '25vh' }}> {!justSearch &&
Symbols * / <br/> <div style={{ textAlign: 'center', marginTop: '40vh' }}>
are not supported <img style={{ display: 'block', margin: '0 auto 15px' }} src={WarningIcon} />
</Typography>} Names are made with<br/>letters and numbers only
</div>
}
</Hidden> </Hidden>
<Hidden mdDown> <Hidden mdDown>
<Button mode="strong" type="submit" style={{ marginLeft: '3%', maxWidth: '95%' }} wide> <Button mode="strong" type="submit" style={{ marginLeft: '3%', maxWidth: '95%' }} wide>

View File

@ -0,0 +1,90 @@
.ens-welcome {
margin: 16px;
text-align: center;
}
.ens-welcome__img {
margin: 20px 0 50px;
}
.ens-welcome__title {
font-weight: bold;
font-size: 1.375rem;
line-height: 1.75rem;
}
.ens-welcome__guide {
color: #adb5bd;
margin: 20px 0 30px;
}
.ens-welcome__guide span {
position: relative;
}
.ens-welcome__guide span:after, .ens-welcome__guide span:before {
content: '';
border-bottom: solid 6px transparent;
display: block;
position: absolute;
border-top: solid 6px #fff;
border-left: solid 6px transparent;
border-right: solid 6px transparent;
top: 5px;
right: -20px;
}
.ens-welcome__guide span:before {
border-top: solid 6px #adb5bd;
top: 7px;
}
.ens-welcome__list {
margin-top: 20px;
counter-reset: ens-counter;
list-style: none;
text-align: left;
padding-left: 0;
}
.ens-welcome__list li {
margin: 0 0 1rem 0;
padding-left: 80px;
counter-increment: ens-counter;
position: relative;
min-height: 60px;
}
.ens-welcome__list li:before {
content: counter(ens-counter);
color: #4360DF;
font-size: 1.5rem;
font-weight: bold;
position: absolute;
left: 0;
line-height: 60px;
width: 60px;
height: 57px;
top: 0;
border-radius: 50%;
border: solid 3px #ECEFFC;
text-align: center;
}
.ens-welcome__list .title {
font-weight: 500;
margin-bottom: 5px;
}
.ens-welcome__list .text {
color: #adb5bd;
line-height: 1.313rem;
}
.ens-welcome__info {
border-top: solid 1px #ccc;
border-bottom: solid 1px #ccc;
margin: 30px 0 20px;
padding: 15px 0;
text-align: center;
}

View File

@ -1,9 +1,10 @@
import React from 'react'; import React from 'react';
import classNames from 'classnames'; import classNames from 'classnames';
import { withStyles } from '@material-ui/core/styles'; import { withStyles } from '@material-ui/core/styles';
import Typography from '@material-ui/core/Typography';
import Button from '@material-ui/core/Button'; import Button from '@material-ui/core/Button';
import StatusCards from '../../ui/icons/svg/intro_cards.svg'; import StatusCards from '../../ui/icons/svg/intro_name.svg';
import './welcome.css';
const styles = theme => ({ const styles = theme => ({
button: { button: {
@ -13,46 +14,37 @@ const styles = theme => ({
} }
}); });
const textStyle = { textAlign: 'center' };
const sectionTitleStyle = { margin: '10px 0px 10px 0px' };
const subTextStyle = { color: '#939ba1' };
const buttonText = { color: '#4360df', margin: '0 20px', fontWeight: 300 }; const buttonText = { color: '#4360df', margin: '0 20px', fontWeight: 300 };
const WelcomeContent = () => ( const WelcomeContent = () => (
<div style={{ marginTop: '20px', textAlign: 'center' }}>
<div> <div>
<Typography variant="title" style={sectionTitleStyle}> <div className="ens-welcome__guide"><span>How it works</span></div>
Deposit 100 SNT to reserve
</Typography> <ol className="ens-welcome__list">
<Typography variant="subheading" style={subTextStyle}> <li className="item">
After a year, renew your name or release it and get your SNT back. <div className="title">Simplify your ETH address</div>
</Typography> <div className="text">Your complex wallet address (0x...) becomes an easy to read, remember & share URL: <span className="text-primary">myname.stateofus.eth</span></div>
</div> </li>
<div> <li className="item">
<Typography variant="title" style={sectionTitleStyle}> <div className="title">100 SNT to register</div>
Attach wallet & contact code <div className="text">Register once to keep the name forever. After 1 year, you can release the name and get your SNT back.</div>
</Typography> </li>
<Typography variant="subheading" style={subTextStyle}> <li className="item">
Your long, complex wallet address and contact code become a single, easy-to-remember username. <div className="title">Connect & get paid</div>
</Typography> <div className="text">Share your name to chat on Status or receive ETH and tokens.</div>
</div> </li>
<div> </ol>
<Typography variant="title" style={sectionTitleStyle}> <div className="ens-welcome__info">Already have a Status subdomain? <a href="">Manage it</a></div>
Connect & get paid <div className="text-light"><small>Powered by Ethereum Name Services</small></div>
</Typography>
<Typography variant="subheading" style={subTextStyle}>
Share your username to chat on Status or receive payments from anywhere.
</Typography>
</div>
</div> </div>
); );
const Welcome = ({ classes, toggleSearch }) => ( const Welcome = ({ classes, toggleSearch }) => (
<div style={{ display: 'flex', flexDirection: 'column', alignItems: 'center', margin: '16px' }}> <div className="ens-welcome">
<img src={StatusCards} /> <img className="ens-welcome__img" src={StatusCards} />
<Typography variant="title" style={textStyle}> <h2 className="ens-welcome__title">
Get a personal domain name to replace those crazy-long codes ENS names transform those crazy-long addresses into unique usernames
</Typography> </h2>
<Button size="large" className={classNames(classes.button)} onClick={toggleSearch}> <Button size="large" className={classNames(classes.button)} onClick={toggleSearch}>
<div style={buttonText}>Let's Go</div> <div style={buttonText}>Let's Go</div>
</Button> </Button>

View File

@ -1,5 +1,5 @@
.navbar { body {
font-family: 'Roboto', sans-serif;
} }
.accounts { .accounts {

View File

@ -53,7 +53,6 @@ class App extends React.Component {
const isMainnet = network === 'main'; const isMainnet = network === 'main';
return ( return (
<div> <div>
<CssBaseline />
<Hidden mdDown> <Hidden mdDown>
<StatusOptimized /> <StatusOptimized />
</Hidden> </Hidden>

View File

@ -0,0 +1,184 @@
<svg width="260" height="224" viewBox="0 0 260 224" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M139.923 78.3766H49.1043C42.4918 78.3766 37.0817 72.9182 37.0817 66.2467C37.0817 59.5756 42.4918 54.1172 49.1043 54.1172H139.923C146.535 54.1172 151.946 59.5756 151.946 66.2467C151.946 72.9182 146.535 78.3766 139.923 78.3766Z" fill="#ECEEFC"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M210.028 78.3766H166.703C160.127 78.3766 154.747 72.9182 154.747 66.2467C154.747 59.5756 160.127 54.1172 166.703 54.1172H210.028C216.604 54.1172 221.984 59.5756 221.984 66.2467C221.984 72.9182 216.604 78.3766 210.028 78.3766Z" fill="#D8DCFE"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M193.265 50.3849H118.096C111.546 50.3849 106.187 44.9265 106.187 38.255C106.187 31.5839 111.546 26.1255 118.096 26.1255H193.265C199.816 26.1255 205.175 31.5839 205.175 38.255C205.175 44.9265 199.816 50.3849 193.265 50.3849Z" fill="#ECEEFC"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M150.122 24.2594H109.878C103.225 24.2594 97.7821 18.801 97.7821 12.1295C97.7821 5.4584 103.225 0 109.878 0H150.122C156.775 0 162.218 5.4584 162.218 12.1295C162.218 18.801 156.775 24.2594 150.122 24.2594Z" fill="#D8DCFE"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M90.5417 50.3849H64.8664C58.3165 50.3849 52.9572 44.9265 52.9572 38.255C52.9572 31.5839 58.3165 26.1255 64.8664 26.1255H90.5417C97.0921 26.1255 102.451 31.5839 102.451 38.255C102.451 44.9265 97.0921 50.3849 90.5417 50.3849Z" fill="#D8DCFE"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M119.143 144.623H209.962C216.574 144.623 221.984 150.082 221.984 156.753C221.984 163.424 216.574 168.883 209.962 168.883H119.143C112.531 168.883 107.121 163.424 107.121 156.753C107.121 150.082 112.531 144.623 119.143 144.623Z" fill="#D8DCFE"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M49.0378 144.623H92.363C98.9389 144.623 104.319 150.082 104.319 156.753C104.319 163.424 98.9389 168.883 92.363 168.883H49.0378C42.4619 168.883 37.0817 163.424 37.0817 156.753C37.0817 150.082 42.4619 144.623 49.0378 144.623Z" fill="#ECEEFC"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M64.8669 171.682H140.036C146.586 171.682 151.946 177.14 151.946 183.812C151.946 190.483 146.586 195.941 140.036 195.941H64.8669C58.3165 195.941 52.9572 190.483 52.9572 183.812C52.9572 177.14 58.3165 171.682 64.8669 171.682Z" fill="#D8DCFE"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M109.878 198.741H150.122C156.775 198.741 162.218 204.199 162.218 210.871C162.218 217.542 156.775 223 150.122 223H109.878C103.225 223 97.7821 217.542 97.7821 210.871C97.7821 204.199 103.225 198.741 109.878 198.741Z" fill="#ECEEFC"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M167.591 171.682H193.266C199.816 171.682 205.175 177.14 205.175 183.812C205.175 190.483 199.816 195.941 193.266 195.941H167.591C161.04 195.941 155.681 190.483 155.681 183.812C155.681 177.14 161.04 171.682 167.591 171.682Z" fill="#ECEEFC"/>
<g filter="url(#filter0_d)">
<path fill-rule="evenodd" clip-rule="evenodd" d="M223.174 137.263H36.4501C22.0959 137.263 10.3516 125.507 10.3516 111.138C10.3516 96.7687 22.0959 85.0122 36.4501 85.0122H223.174C237.528 85.0122 249.272 96.7687 249.272 111.138C249.272 125.507 237.528 137.263 223.174 137.263Z" fill="#4360DF"/>
</g>
<path fill-rule="evenodd" clip-rule="evenodd" d="M57.2489 65.7805C57.2489 64.1176 56.8458 62.6547 55.7585 62.6547C54.6717 62.6547 54.2682 64.1176 54.2682 65.7805C54.2682 67.4435 54.6717 68.9059 55.7585 68.9059C56.8458 68.9059 57.2489 67.4435 57.2489 65.7805ZM58.5603 65.7805C58.5603 68.0919 57.8093 69.979 55.7585 69.979C53.7078 69.979 52.9572 68.0919 52.9572 65.7805C52.9572 63.4687 53.7078 61.5815 55.7585 61.5815C57.8093 61.5815 58.5603 63.4687 58.5603 65.7805Z" fill="#D8DCFE"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M63.7858 65.7805C63.7858 64.1176 63.3827 62.6547 62.2955 62.6547C61.2087 62.6547 60.8051 64.1176 60.8051 65.7805C60.8051 67.4435 61.2087 68.9059 62.2955 68.9059C63.3827 68.9059 63.7858 67.4435 63.7858 65.7805ZM65.0973 65.7805C65.0973 68.0919 64.3463 69.979 62.2955 69.979C60.2447 69.979 59.4942 68.0919 59.4942 65.7805C59.4942 63.4687 60.2447 61.5815 62.2955 61.5815C64.3463 61.5815 65.0973 63.4687 65.0973 65.7805Z" fill="#D8DCFE"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M70.307 66.7402C70.307 65.5621 69.4733 65.1503 68.8505 65.1503C67.9581 65.1503 67.4058 65.9509 67.4058 67.0348C67.4058 68.1181 67.9463 68.9192 68.8153 68.9192C69.4615 68.9192 70.307 68.5069 70.307 67.3293V66.7402ZM70.307 64.95V61.5815H71.6342V69.8259H70.3658V69.0017C70.0485 69.5083 69.5085 69.979 68.5338 69.979C67.1238 69.979 66.0311 68.8485 66.0311 67.0347C66.0311 65.2209 67.1356 64.09 68.5803 64.09C69.4145 64.09 69.9785 64.4787 70.307 64.95Z" fill="#D8DCFE"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M74.7155 65.6981H76.9989C76.968 64.8474 76.5256 64.377 75.8676 64.377C75.1681 64.377 74.7875 64.9253 74.7155 65.6981ZM77.9967 67.7361C77.6161 68.5425 76.9474 69.0461 75.9191 69.0461C74.4377 69.0461 73.502 67.9265 73.502 66.2357C73.502 64.5673 74.4484 63.4478 75.8775 63.4478C77.4412 63.4478 78.1712 64.7353 78.1712 66.1797V66.5381H74.6949C74.7257 67.3441 75.0549 68.0945 75.9084 68.0945C76.5153 68.0945 76.7931 67.7585 76.9882 67.2993L77.9967 67.7361Z" fill="#D8DCFE"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M81.7246 66.7239C82.3278 66.7239 82.7835 66.369 82.7835 65.6118C82.7835 64.8551 82.3278 64.4647 81.7246 64.4647C81.1322 64.4647 80.6766 64.8551 80.6766 65.6118C80.6766 66.369 81.1322 66.7239 81.7246 66.7239ZM80.6994 69.3617C80.426 69.5037 80.2551 69.7753 80.2551 70.1539C80.2551 70.7218 80.8133 70.9465 81.6676 70.9465C82.6582 70.9465 83.2733 70.6744 83.2733 70.1184C83.2733 69.7403 83.0227 69.5742 82.3848 69.515L80.6994 69.3617ZM80.0619 67.067C79.6632 66.7476 79.4126 66.2625 79.4126 65.6355C79.4126 64.2991 80.5399 63.5661 81.6785 63.5661C82.1688 63.5661 82.6017 63.7076 82.9202 63.8614C83.205 63.6129 83.5353 63.4478 84.0361 63.4478C84.3099 63.4478 84.5373 63.4951 84.7082 63.5779L84.4689 64.4529C84.3669 64.3464 84.2069 64.3109 84.0702 64.3109C83.8771 64.3109 83.7285 64.3701 83.6492 64.4529C83.9112 64.7368 84.0479 65.1746 84.0479 65.6118C84.0479 66.8896 82.943 67.6112 81.7355 67.6112C81.2917 67.6112 81.0639 67.5161 80.9162 67.5161C80.7226 67.5161 80.4606 67.6344 80.4606 67.9065C80.4606 68.155 80.6315 68.2733 81.0753 68.3206L82.6126 68.4744C83.7973 68.6046 84.4689 68.995 84.4689 69.941C84.4689 71.2419 83.2391 71.8452 81.6334 71.8452C80.1303 71.8452 79.105 71.337 79.105 70.2959C79.105 69.6812 79.4582 69.2671 79.9252 69.066C79.5151 68.8648 79.3215 68.5336 79.3215 68.1195C79.3215 67.6818 79.5949 67.2918 80.0619 67.067Z" fill="#D8DCFE"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M84.7082 63.4636H85.7045V62.7332C85.7045 61.1669 86.7999 60.6486 87.8087 60.6486C88.4185 60.6486 89.0412 60.8135 89.3774 61.0609L88.7921 62.074C88.6053 61.9208 88.3313 61.7559 87.9452 61.7559C87.4475 61.7559 87.1113 62.0269 87.1113 62.7214V63.4636H88.4434V64.4531H87.1113V69.046H85.7045V64.4531H84.7082V63.4636Z" fill="#D8DCFE"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M93.6533 66.7402C93.6533 65.5621 92.8196 65.1503 92.1969 65.1503C91.3044 65.1503 90.7521 65.9509 90.7521 67.0348C90.7521 68.1181 91.2926 68.9192 92.1616 68.9192C92.8078 68.9192 93.6533 68.5069 93.6533 67.3293V66.7402ZM93.6533 64.95V61.5815H94.9806V69.8259H93.7121V69.0017C93.3948 69.5083 92.8548 69.979 91.8801 69.979C90.4701 69.979 89.3774 68.8485 89.3774 67.0347C89.3774 65.2209 90.4819 64.09 91.9266 64.09C92.7608 64.09 93.3248 64.4787 93.6533 64.95Z" fill="#D8DCFE"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M98.5339 66.7239C99.1372 66.7239 99.5929 66.369 99.5929 65.6118C99.5929 64.8551 99.1372 64.4647 98.5339 64.4647C97.9416 64.4647 97.4859 64.8551 97.4859 65.6118C97.4859 66.369 97.9416 66.7239 98.5339 66.7239ZM97.5087 69.3617C97.2354 69.5037 97.0645 69.7753 97.0645 70.1539C97.0645 70.7218 97.6227 70.9465 98.477 70.9465C99.4676 70.9465 100.083 70.6744 100.083 70.1184C100.083 69.7403 99.8321 69.5742 99.1942 69.515L97.5087 69.3617ZM96.8713 67.067C96.4726 66.7476 96.222 66.2625 96.222 65.6355C96.222 64.2991 97.3492 63.5661 98.4879 63.5661C98.9782 63.5661 99.4106 63.7076 99.7295 63.8614C100.014 63.6129 100.345 63.4478 100.845 63.4478C101.119 63.4478 101.347 63.4951 101.518 63.5779L101.278 64.4529C101.176 64.3464 101.016 64.3109 100.88 64.3109C100.686 64.3109 100.538 64.3701 100.459 64.4529C100.721 64.7368 100.857 65.1746 100.857 65.6118C100.857 66.8896 99.7523 67.6112 98.5449 67.6112C98.1011 67.6112 97.8732 67.5161 97.7256 67.5161C97.532 67.5161 97.27 67.6344 97.27 67.9065C97.27 68.155 97.4408 68.2733 97.8846 68.3206L99.422 68.4744C100.607 68.6046 101.278 68.995 101.278 69.941C101.278 71.2419 100.048 71.8452 98.4428 71.8452C96.9396 71.8452 95.9144 71.337 95.9144 70.2959C95.9144 69.6812 96.2675 69.2671 96.7346 69.066C96.3245 68.8648 96.1313 68.5336 96.1313 68.1195C96.1313 67.6818 96.4042 67.2918 96.8713 67.067Z" fill="#D8DCFE"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M105.773 66.4239V62.6482H105.752L103.503 66.4239H105.773ZM106.919 61.5815V66.4239H108.054L107.886 67.3812H106.919V69.046H105.773V67.3812H102.451V66.4457L105.384 61.5815H106.919Z" fill="#D8DCFE"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M110.06 63.5629C110.218 62.714 110.821 61.5815 112.242 61.5815C113.623 61.5815 114.424 62.6192 114.424 63.8343C114.424 64.7308 114.009 65.3556 113.377 65.6387C114.098 65.8275 114.591 66.6533 114.591 67.5965C114.591 68.7758 113.831 69.979 112.222 69.979C110.534 69.979 109.952 68.6347 109.922 67.8915L110.988 67.5376C111.038 68.0684 111.285 68.9178 112.232 68.9178C113.111 68.9178 113.446 68.2454 113.446 67.5847C113.446 66.7708 112.933 66.2168 112.015 66.2168C111.966 66.2168 111.887 66.2286 111.817 66.2286H111.68V65.1079C111.719 65.1197 111.758 65.1197 111.788 65.1197H112.005C112.864 65.1197 113.298 64.5893 113.298 63.8343C113.298 63.0679 112.815 62.6433 112.222 62.6433C111.541 62.6433 111.156 63.2444 111.107 63.8579L110.06 63.5629Z" fill="#D8DCFE"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M116.489 68.934L117.442 67.9246C117.958 67.3838 118.556 66.7114 118.88 66.3268C119.498 65.5943 119.893 64.9093 119.893 64.0921C119.893 63.2274 119.478 62.6746 118.829 62.6746C118.009 62.6746 117.664 63.5994 117.583 64.4166L116.459 64.1883C116.682 62.6986 117.431 61.5815 118.86 61.5815C120.349 61.5815 121.068 62.8308 121.068 64.0681C121.068 65.1737 120.491 66.1225 119.731 67.0238C119.245 67.6006 118.515 68.3452 117.999 68.8619H121.128V69.979H116.489V68.934Z" fill="#D8DCFE"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M124.969 67.5282C125.018 68.2492 125.443 68.8855 126.176 68.8855C126.957 68.8855 127.462 68.1771 127.462 67.1557C127.462 66.291 127.105 65.4498 126.245 65.4498C125.78 65.4498 125.315 65.7022 125.088 66.291L124.128 66.0867L124.533 61.5815H128.243L128.085 62.6991H125.355L125.137 64.9812C125.374 64.6568 125.78 64.3568 126.453 64.3568C127.916 64.3568 128.599 65.7743 128.599 67.1316C128.599 68.6813 127.699 69.979 126.156 69.979C124.692 69.979 123.96 68.7654 123.93 67.8646L124.969 67.5282Z" fill="#D8DCFE"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M133.789 66.4239V62.6482H133.768L131.518 66.4239H133.789ZM134.935 61.5815V66.4239H136.07L135.902 67.3812H134.935V69.046H133.789V67.3812H130.467V66.4457L133.4 61.5815H134.935Z" fill="#D8DCFE"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M127.288 157.22C127.288 155.557 126.885 154.094 125.797 154.094C124.711 154.094 124.307 155.557 124.307 157.22C124.307 158.883 124.711 160.345 125.797 160.345C126.885 160.345 127.288 158.883 127.288 157.22ZM128.599 157.22C128.599 159.531 127.848 161.418 125.797 161.418C123.747 161.418 122.996 159.531 122.996 157.22C122.996 154.908 123.747 153.021 125.797 153.021C127.848 153.021 128.599 154.908 128.599 157.22Z" fill="#ECEEFC"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M133.825 157.22C133.825 155.557 133.422 154.094 132.334 154.094C131.248 154.094 130.844 155.557 130.844 157.22C130.844 158.883 131.248 160.345 132.334 160.345C133.422 160.345 133.825 158.883 133.825 157.22ZM135.136 157.22C135.136 159.531 134.385 161.418 132.334 161.418C130.284 161.418 129.533 159.531 129.533 157.22C129.533 154.908 130.284 153.021 132.334 153.021C134.385 153.021 135.136 154.908 135.136 157.22Z" fill="#ECEEFC"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M140.346 158.18C140.346 157.001 139.512 156.59 138.889 156.59C137.997 156.59 137.445 157.39 137.445 158.474C137.445 159.557 137.985 160.359 138.854 160.359C139.5 160.359 140.346 159.946 140.346 158.769V158.18ZM140.346 156.389V153.021H141.673V161.265H140.405V160.441C140.087 160.948 139.547 161.418 138.573 161.418C137.163 161.418 136.07 160.288 136.07 158.474C136.07 156.66 137.175 155.529 138.619 155.529C139.453 155.529 140.017 155.918 140.346 156.389Z" fill="#ECEEFC"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M144.754 157.137H147.038C147.007 156.287 146.565 155.816 145.907 155.816C145.207 155.816 144.826 156.365 144.754 157.137ZM148.036 159.175C147.655 159.982 146.986 160.485 145.958 160.485C144.477 160.485 143.541 159.366 143.541 157.675C143.541 156.007 144.487 154.887 145.916 154.887C147.48 154.887 148.21 156.175 148.21 157.619V157.977H144.734C144.765 158.783 145.094 159.534 145.947 159.534C146.554 159.534 146.832 159.198 147.027 158.739L148.036 159.175Z" fill="#ECEEFC"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M151.764 158.163C152.367 158.163 152.822 157.808 152.822 157.051C152.822 156.294 152.367 155.904 151.764 155.904C151.171 155.904 150.716 156.294 150.716 157.051C150.716 157.808 151.171 158.163 151.764 158.163ZM150.738 160.801C150.465 160.943 150.294 161.215 150.294 161.593C150.294 162.161 150.852 162.386 151.707 162.386C152.697 162.386 153.312 162.114 153.312 161.558C153.312 161.179 153.062 161.013 152.424 160.954L150.738 160.801ZM150.101 158.506C149.702 158.187 149.452 157.702 149.452 157.075C149.452 155.738 150.579 155.005 151.717 155.005C152.208 155.005 152.641 155.147 152.959 155.301C153.244 155.052 153.574 154.887 154.075 154.887C154.349 154.887 154.576 154.934 154.747 155.017L154.508 155.892C154.406 155.786 154.246 155.75 154.109 155.75C153.916 155.75 153.767 155.809 153.688 155.892C153.95 156.176 154.087 156.614 154.087 157.051C154.087 158.329 152.982 159.05 151.774 159.05C151.331 159.05 151.103 158.955 150.955 158.955C150.762 158.955 150.5 159.074 150.5 159.346C150.5 159.594 150.67 159.713 151.114 159.76L152.652 159.914C153.836 160.044 154.508 160.434 154.508 161.38C154.508 162.681 153.278 163.284 151.672 163.284C150.169 163.284 149.144 162.776 149.144 161.735C149.144 161.12 149.497 160.706 149.964 160.505C149.554 160.304 149.36 159.973 149.36 159.559C149.36 159.121 149.634 158.731 150.101 158.506Z" fill="#ECEEFC"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M155.681 155.836H156.677V155.106C156.677 153.539 157.773 153.021 158.781 153.021C159.391 153.021 160.014 153.186 160.35 153.433L159.765 154.446C159.578 154.293 159.304 154.128 158.918 154.128C158.42 154.128 158.084 154.399 158.084 155.094V155.836H159.416V156.825H158.084V161.418H156.677V156.825H155.681V155.836Z" fill="#ECEEFC"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M163.692 158.18C163.692 157.001 162.858 156.59 162.236 156.59C161.343 156.59 160.791 157.39 160.791 158.474C160.791 159.557 161.331 160.359 162.2 160.359C162.847 160.359 163.692 159.946 163.692 158.769V158.18ZM163.692 156.389V153.021H165.019V161.265H163.751V160.441C163.434 160.948 162.894 161.418 161.919 161.418C160.509 161.418 159.416 160.288 159.416 158.474C159.416 156.66 160.521 155.529 161.965 155.529C162.8 155.529 163.364 155.918 163.692 156.389Z" fill="#ECEEFC"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M168.573 158.163C169.176 158.163 169.632 157.808 169.632 157.051C169.632 156.294 169.176 155.904 168.573 155.904C167.98 155.904 167.525 156.294 167.525 157.051C167.525 157.808 167.98 158.163 168.573 158.163ZM167.548 160.801C167.274 160.943 167.103 161.215 167.103 161.593C167.103 162.161 167.662 162.386 168.516 162.386C169.506 162.386 170.122 162.114 170.122 161.558C170.122 161.179 169.871 161.013 169.233 160.954L167.548 160.801ZM166.91 158.506C166.511 158.187 166.261 157.702 166.261 157.075C166.261 155.738 167.388 155.005 168.527 155.005C169.017 155.005 169.45 155.147 169.768 155.301C170.053 155.052 170.384 154.887 170.884 154.887C171.158 154.887 171.386 154.934 171.556 155.017L171.317 155.892C171.215 155.786 171.055 155.75 170.919 155.75C170.725 155.75 170.577 155.809 170.497 155.892C170.759 156.176 170.896 156.614 170.896 157.051C170.896 158.329 169.791 159.05 168.584 159.05C168.14 159.05 167.912 158.955 167.765 158.955C167.571 158.955 167.309 159.074 167.309 159.346C167.309 159.594 167.48 159.713 167.924 159.76L169.461 159.914C170.646 160.044 171.317 160.434 171.317 161.38C171.317 162.681 170.087 163.284 168.482 163.284C166.979 163.284 165.953 162.776 165.953 161.735C165.953 161.12 166.306 160.706 166.773 160.505C166.363 160.304 166.17 159.973 166.17 159.559C166.17 159.121 166.443 158.731 166.91 158.506Z" fill="#ECEEFC"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M175.812 157.863V154.088H175.791L173.541 157.863H175.812ZM176.958 153.021V157.863H178.093L177.925 158.821H176.958V160.485H175.812V158.821H172.49V157.885L175.423 153.021H176.958Z" fill="#ECEEFC"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M180.099 155.002C180.257 154.153 180.86 153.021 182.28 153.021C183.662 153.021 184.462 154.059 184.462 155.274C184.462 156.17 184.048 156.795 183.416 157.078C184.137 157.267 184.63 158.093 184.63 159.036C184.63 160.215 183.87 161.418 182.261 161.418C180.573 161.418 179.991 160.074 179.961 159.331L181.027 158.977C181.077 159.508 181.324 160.357 182.271 160.357C183.15 160.357 183.485 159.685 183.485 159.024C183.485 158.21 182.972 157.656 182.054 157.656C182.004 157.656 181.925 157.668 181.856 157.668H181.718V156.547C181.758 156.559 181.797 156.559 181.827 156.559H182.044C182.903 156.559 183.337 156.029 183.337 155.274C183.337 154.507 182.854 154.083 182.261 154.083C181.58 154.083 181.195 154.684 181.145 155.297L180.099 155.002Z" fill="#ECEEFC"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M186.528 160.373L187.48 159.364C187.997 158.823 188.595 158.151 188.918 157.766C189.537 157.034 189.932 156.349 189.932 155.531C189.932 154.667 189.517 154.114 188.868 154.114C188.047 154.114 187.703 155.039 187.622 155.856L186.498 155.628C186.721 154.138 187.47 153.021 188.899 153.021C190.388 153.021 191.107 154.27 191.107 155.507C191.107 156.613 190.529 157.562 189.769 158.463C189.284 159.04 188.554 159.785 188.038 160.301H191.167V161.418H186.528V160.373Z" fill="#ECEEFC"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M195.008 158.968C195.057 159.688 195.482 160.325 196.215 160.325C196.996 160.325 197.501 159.616 197.501 158.595C197.501 157.73 197.144 156.889 196.284 156.889C195.819 156.889 195.354 157.142 195.127 157.73L194.167 157.526L194.572 153.021H198.282L198.124 154.138H195.394L195.176 156.421C195.413 156.096 195.819 155.796 196.492 155.796C197.955 155.796 198.638 157.214 198.638 158.571C198.638 160.121 197.738 161.418 196.195 161.418C194.731 161.418 193.999 160.205 193.969 159.304L195.008 158.968Z" fill="#ECEEFC"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M203.828 157.863V154.088H203.806L201.557 157.863H203.828ZM204.974 153.021V157.863H206.109L205.941 158.821H204.974V160.485H203.828V158.821H200.506V157.885L203.439 153.021H204.974Z" fill="#ECEEFC"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M119.399 36.5045C119.557 35.6556 120.159 34.5231 121.58 34.5231C122.962 34.5231 123.762 35.5607 123.762 36.7758C123.762 37.6724 123.347 38.2971 122.716 38.5803C123.436 38.769 123.93 39.5948 123.93 40.5381C123.93 41.7173 123.169 42.9206 121.56 42.9206C119.872 42.9206 119.29 41.5762 119.261 40.833L120.327 40.4791C120.376 41.0099 120.623 41.8593 121.57 41.8593C122.449 41.8593 122.784 41.1869 122.784 40.5263C122.784 39.7123 122.271 39.1583 121.353 39.1583C121.304 39.1583 121.225 39.1701 121.156 39.1701H121.018V38.0494C121.057 38.0612 121.097 38.0612 121.126 38.0612H121.344C122.202 38.0612 122.636 37.5308 122.636 36.7758C122.636 36.0095 122.153 35.5848 121.56 35.5848C120.879 35.5848 120.494 36.186 120.445 36.7994L119.399 36.5045Z" fill="#D8DCFE"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M125.936 36.5045C126.094 35.6556 126.696 34.5231 128.117 34.5231C129.499 34.5231 130.299 35.5607 130.299 36.7758C130.299 37.6724 129.884 38.2971 129.253 38.5803C129.973 38.769 130.467 39.5948 130.467 40.5381C130.467 41.7173 129.706 42.9206 128.097 42.9206C126.409 42.9206 125.827 41.5762 125.798 40.833L126.864 40.4791C126.913 41.0099 127.16 41.8593 128.107 41.8593C128.986 41.8593 129.321 41.1869 129.321 40.5263C129.321 39.7123 128.808 39.1583 127.89 39.1583C127.841 39.1583 127.762 39.1701 127.693 39.1701H127.555V38.0494C127.594 38.0612 127.634 38.0612 127.663 38.0612H127.881C128.739 38.0612 129.173 37.5308 129.173 36.7758C129.173 36.0095 128.69 35.5848 128.097 35.5848C127.416 35.5848 127.031 36.186 126.982 36.7994L125.936 36.5045Z" fill="#D8DCFE"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M136.591 39.3655V35.5897H136.569L134.319 39.3655H136.591ZM137.736 34.5231V39.3654H138.872L138.704 40.3227H137.736V41.9875H136.591V40.3227H133.268V39.3872L136.201 34.5231H137.736Z" fill="#D8DCFE"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M143.541 42.6989C143.26 42.8319 142.838 42.9205 142.405 42.9205C141.375 42.9205 140.742 42.3998 140.742 41.425V38.4572H139.805V37.5271H140.742V36.0321L142.066 35.4561V37.5271H143.318V38.4572H142.066V41.2704C142.066 41.7241 142.276 41.8903 142.592 41.8903C142.826 41.8903 143.002 41.8017 143.178 41.713L143.541 42.6989Z" fill="#D8DCFE"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M147.931 37.7225C147.748 37.5845 147.505 37.5155 147.261 37.5155C146.58 37.5155 145.861 38.0675 145.861 39.2398V41.9875H144.475V36.5386H145.777V37.424C146.105 36.7341 146.69 36.3892 147.48 36.3892C147.712 36.3892 147.979 36.4237 148.21 36.5156L147.931 37.7225Z" fill="#D8DCFE"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M149.424 38.6395H151.707C151.677 37.7888 151.234 37.3184 150.576 37.3184C149.876 37.3184 149.496 37.8667 149.424 38.6395ZM152.705 40.6775C152.324 41.4839 151.656 41.9875 150.628 41.9875C149.146 41.9875 148.21 40.8679 148.21 39.1771C148.21 37.5087 149.157 36.3892 150.586 36.3892C152.15 36.3892 152.879 37.6767 152.879 39.1211V39.4795H149.403C149.434 40.2855 149.763 41.0359 150.617 41.0359C151.224 41.0359 151.501 40.6999 151.696 40.2407L152.705 40.6775Z" fill="#D8DCFE"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M155.728 36.2007C155.21 36.2007 154.843 35.8602 154.843 35.3616C154.843 34.8636 155.21 34.5231 155.728 34.5231C156.247 34.5231 156.615 34.8636 156.615 35.3616C156.615 35.8602 156.247 36.2007 155.728 36.2007ZM156.451 43.7016C156.451 45.2094 155.298 45.7197 154.336 45.7197C153.792 45.7197 153.297 45.5616 152.879 45.3189L153.462 44.2853C153.652 44.419 153.917 44.5771 154.26 44.5771C154.728 44.5771 155.007 44.2488 155.007 43.6165V37.3676H156.451V43.7016Z" fill="#D8DCFE"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M159.234 39.6653C159.837 39.6653 160.293 39.3104 160.293 38.5532C160.293 37.7965 159.837 37.4061 159.234 37.4061C158.642 37.4061 158.186 37.7965 158.186 38.5532C158.186 39.3104 158.642 39.6653 159.234 39.6653ZM158.209 42.3031C157.935 42.4451 157.764 42.7167 157.764 43.0953C157.764 43.6632 158.323 43.888 159.177 43.888C160.167 43.888 160.783 43.6158 160.783 43.0598C160.783 42.6817 160.532 42.5156 159.894 42.4564L158.209 42.3031ZM157.572 40.0084C157.173 39.689 156.922 39.2039 156.922 38.5769C156.922 37.2405 158.049 36.5075 159.188 36.5075C159.678 36.5075 160.111 36.649 160.43 36.8028C160.715 36.5543 161.045 36.3892 161.546 36.3892C161.819 36.3892 162.047 36.4365 162.218 36.5193L161.978 37.3943C161.876 37.2878 161.717 37.2523 161.58 37.2523C161.387 37.2523 161.238 37.3115 161.159 37.3943C161.421 37.6782 161.558 38.116 161.558 38.5532C161.558 39.831 160.452 40.5526 159.245 40.5526C158.801 40.5526 158.574 40.4575 158.426 40.4575C158.232 40.4575 157.97 40.5758 157.97 40.8479C157.97 41.0964 158.141 41.2147 158.585 41.262L160.122 41.4158C161.307 41.546 161.978 41.9364 161.978 42.8824C161.978 44.1833 160.748 44.7866 159.143 44.7866C157.64 44.7866 156.615 44.2784 156.615 43.2373C156.615 42.6226 156.968 42.2085 157.435 42.0074C157.025 41.8062 156.831 41.475 156.831 41.0609C156.831 40.6232 157.104 40.2332 157.572 40.0084Z" fill="#D8DCFE"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M168.378 38.7221C168.378 37.0591 167.974 35.5962 166.887 35.5962C165.8 35.5962 165.397 37.0591 165.397 38.7221C165.397 40.385 165.8 41.8475 166.887 41.8475C167.974 41.8475 168.378 40.385 168.378 38.7221ZM169.689 38.7221C169.689 41.0334 168.938 42.9206 166.887 42.9206C164.836 42.9206 164.086 41.0334 164.086 38.7221C164.086 36.4102 164.836 34.5231 166.887 34.5231C168.938 34.5231 169.689 36.4102 169.689 38.7221Z" fill="#D8DCFE"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M174.915 38.7221C174.915 37.0591 174.511 35.5962 173.424 35.5962C172.337 35.5962 171.934 37.0591 171.934 38.7221C171.934 40.385 172.337 41.8475 173.424 41.8475C174.511 41.8475 174.915 40.385 174.915 38.7221ZM176.226 38.7221C176.226 41.0334 175.475 42.9206 173.424 42.9206C171.373 42.9206 170.623 41.0334 170.623 38.7221C170.623 36.4102 171.373 34.5231 173.424 34.5231C175.475 34.5231 176.226 36.4102 176.226 38.7221Z" fill="#D8DCFE"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M179.71 38.651C180.832 38.7966 181.829 39.1657 181.829 40.2744C181.829 41.3491 180.922 41.9875 179.517 41.9875C178.191 41.9875 177.284 41.4275 177.16 40.3864L178.406 40.2072C178.463 40.8008 178.883 41.0584 179.528 41.0584C180.129 41.0584 180.537 40.8452 180.537 40.364C180.537 39.9497 180.242 39.7817 179.347 39.6473C178.123 39.4681 177.307 39.0649 177.307 38.035C177.307 36.9151 178.361 36.3892 179.517 36.3892C180.707 36.3892 181.59 36.9379 181.749 37.8446L180.503 38.1022C180.423 37.5982 180.095 37.3071 179.494 37.3071C178.996 37.3071 178.599 37.531 178.599 37.9454C178.599 38.427 179.041 38.5502 179.71 38.651Z" fill="#D8DCFE"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M184.91 38.6395H187.193C187.162 37.7888 186.72 37.3184 186.062 37.3184C185.363 37.3184 184.982 37.8667 184.91 38.6395ZM188.191 40.6775C187.811 41.4839 187.142 41.9875 186.113 41.9875C184.632 41.9875 183.697 40.8679 183.697 39.1771C183.697 37.5087 184.643 36.3892 186.072 36.3892C187.635 36.3892 188.366 37.6767 188.366 39.1211V39.4795H184.889C184.92 40.2855 185.249 41.0359 186.103 41.0359C186.71 41.0359 186.988 40.6999 187.183 40.2407L188.191 40.6775Z" fill="#D8DCFE"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M192.755 37.7225C192.572 37.5845 192.33 37.5155 192.086 37.5155C191.405 37.5155 190.687 38.0675 190.687 39.2398V41.9875H189.3V36.5386H190.601V37.424C190.93 36.7341 191.514 36.3892 192.305 36.3892C192.536 36.3892 192.804 36.4237 193.035 36.5156L192.755 37.7225Z" fill="#D8DCFE"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M66.1694 181.128C66.3273 180.279 66.9296 179.146 68.3506 179.146C69.7324 179.146 70.5325 180.184 70.5325 181.399C70.5325 182.296 70.1179 182.921 69.486 183.204C70.2067 183.392 70.7004 184.218 70.7004 185.161C70.7004 186.341 69.9401 187.544 68.3312 187.544C66.6433 187.544 66.0611 186.2 66.0311 185.456L67.0974 185.102C67.1468 185.633 67.3936 186.483 68.3411 186.483C69.2198 186.483 69.5551 185.81 69.5551 185.15C69.5551 184.336 69.0417 183.782 68.1239 183.782C68.0745 183.782 67.9955 183.794 67.9264 183.794H67.7886V182.673C67.8277 182.685 67.8672 182.685 67.8968 182.685H68.114C68.973 182.685 69.407 182.154 69.407 181.399C69.407 180.633 68.9236 180.208 68.3312 180.208C67.6499 180.208 67.2649 180.809 67.2155 181.423L66.1694 181.128Z" fill="#ECEEFC"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M73.6402 181.128C73.7982 180.279 74.4004 179.146 75.8214 179.146C77.2032 179.146 78.0034 180.184 78.0034 181.399C78.0034 182.296 77.5887 182.921 76.9568 183.204C77.6776 183.392 78.1712 184.218 78.1712 185.161C78.1712 186.341 77.411 187.544 75.802 187.544C74.1141 187.544 73.532 186.2 73.502 185.456L74.5683 185.102C74.6176 185.633 74.8645 186.483 75.8119 186.483C76.6906 186.483 77.0259 185.81 77.0259 185.15C77.0259 184.336 76.5125 183.782 75.5947 183.782C75.5453 183.782 75.4663 183.794 75.3972 183.794H75.2594V182.673C75.2985 182.685 75.338 182.685 75.3676 182.685H75.5848C76.4438 182.685 76.8778 182.154 76.8778 181.399C76.8778 180.633 76.3944 180.208 75.802 180.208C75.1208 180.208 74.7357 180.809 74.6863 181.423L73.6402 181.128Z" fill="#ECEEFC"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M83.361 183.989V180.213H83.3395L81.0901 183.989H83.361ZM84.5068 179.146V183.989H85.642L85.4738 184.946H84.5068V186.611H83.361V184.946H80.0389V184.011L82.9719 179.146H84.5068Z" fill="#ECEEFC"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M90.3113 187.322C90.0302 187.455 89.609 187.544 89.1756 187.544C88.1454 187.544 87.5129 187.023 87.5129 186.048V183.081H86.5759V182.151H87.5129V180.655L88.8364 180.079V182.151H90.0887V183.081H88.8364V185.894C88.8364 186.348 89.0468 186.514 89.363 186.514C89.5973 186.514 89.773 186.425 89.9487 186.336L90.3113 187.322Z" fill="#ECEEFC"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M95.6345 183.279C95.4519 183.141 95.209 183.072 94.9656 183.072C94.284 183.072 93.566 183.624 93.566 184.796V187.544H92.179V182.095H93.4808V182.98C93.8094 182.291 94.3936 181.946 95.1842 181.946C95.4159 181.946 95.6836 181.98 95.9144 182.072L95.6345 183.279Z" fill="#ECEEFC"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M96.194 184.196H98.4774C98.4466 183.345 98.0042 182.875 97.3462 182.875C96.6467 182.875 96.266 183.423 96.194 184.196ZM99.4753 186.234C99.0947 187.04 98.426 187.544 97.3977 187.544C95.9163 187.544 94.9805 186.424 94.9805 184.734C94.9805 183.065 95.927 181.946 97.3561 181.946C98.9198 181.946 99.6498 183.233 99.6498 184.678V185.036H96.1735C96.2043 185.842 96.5335 186.592 97.387 186.592C97.9939 186.592 98.2717 186.256 98.4667 185.797L99.4753 186.234Z" fill="#ECEEFC"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M103.432 180.824C102.914 180.824 102.546 180.484 102.546 179.985C102.546 179.487 102.914 179.146 103.432 179.146C103.952 179.146 104.319 179.487 104.319 179.985C104.319 180.484 103.952 180.824 103.432 180.824ZM104.154 188.325C104.154 189.833 103.002 190.343 102.04 190.343C101.496 190.343 101.001 190.185 100.584 189.942L101.166 188.909C101.356 189.042 101.622 189.201 101.964 189.201C102.432 189.201 102.711 188.872 102.711 188.24V181.991H104.154V188.325Z" fill="#ECEEFC"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M106.939 185.222C107.542 185.222 107.998 184.867 107.998 184.11C107.998 183.353 107.542 182.963 106.939 182.963C106.346 182.963 105.891 183.353 105.891 184.11C105.891 184.867 106.346 185.222 106.939 185.222ZM105.913 187.859C105.64 188.001 105.469 188.273 105.469 188.652C105.469 189.22 106.027 189.444 106.882 189.444C107.872 189.444 108.487 189.172 108.487 188.616C108.487 188.238 108.237 188.072 107.599 188.013L105.913 187.859ZM105.276 185.565C104.877 185.245 104.627 184.76 104.627 184.133C104.627 182.797 105.754 182.064 106.893 182.064C107.383 182.064 107.816 182.205 108.134 182.359C108.419 182.111 108.749 181.946 109.25 181.946C109.524 181.946 109.751 181.993 109.922 182.076L109.683 182.951C109.581 182.844 109.421 182.809 109.284 182.809C109.091 182.809 108.943 182.868 108.863 182.951C109.125 183.235 109.262 183.672 109.262 184.11C109.262 185.387 108.157 186.109 106.95 186.109C106.506 186.109 106.278 186.014 106.13 186.014C105.937 186.014 105.675 186.132 105.675 186.404C105.675 186.653 105.845 186.771 106.289 186.818L107.827 186.972C109.011 187.102 109.683 187.493 109.683 188.439C109.683 189.74 108.453 190.343 106.847 190.343C105.344 190.343 104.319 189.835 104.319 188.794C104.319 188.179 104.672 187.765 105.139 187.564C104.729 187.363 104.535 187.031 104.535 186.617C104.535 186.18 104.809 185.79 105.276 185.565Z" fill="#ECEEFC"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M115.148 183.345C115.148 181.682 114.745 180.22 113.657 180.22C112.571 180.22 112.167 181.682 112.167 183.345C112.167 185.008 112.571 186.471 113.657 186.471C114.745 186.471 115.148 185.008 115.148 183.345ZM116.459 183.345C116.459 185.657 115.708 187.544 113.657 187.544C111.607 187.544 110.856 185.657 110.856 183.345C110.856 181.034 111.607 179.146 113.657 179.146C115.708 179.146 116.459 181.034 116.459 183.345Z" fill="#ECEEFC"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M122.618 183.345C122.618 181.682 122.215 180.22 121.128 180.22C120.041 180.22 119.638 181.682 119.638 183.345C119.638 185.008 120.041 186.471 121.128 186.471C122.215 186.471 122.618 185.008 122.618 183.345ZM123.93 183.345C123.93 185.657 123.179 187.544 121.128 187.544C119.077 187.544 118.327 185.657 118.327 183.345C118.327 181.034 119.077 179.146 121.128 179.146C123.179 179.146 123.93 181.034 123.93 183.345Z" fill="#ECEEFC"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M127.414 184.207C128.536 184.353 129.533 184.722 129.533 185.831C129.533 186.906 128.627 187.544 127.221 187.544C125.895 187.544 124.989 186.984 124.864 185.943L126.111 185.764C126.167 186.357 126.587 186.615 127.232 186.615C127.833 186.615 128.241 186.402 128.241 185.92C128.241 185.506 127.947 185.338 127.051 185.204C125.827 185.024 125.011 184.621 125.011 183.591C125.011 182.471 126.065 181.946 127.221 181.946C128.411 181.946 129.295 182.494 129.454 183.401L128.207 183.659C128.128 183.155 127.799 182.863 127.198 182.863C126.7 182.863 126.303 183.087 126.303 183.502C126.303 183.983 126.745 184.107 127.414 184.207Z" fill="#ECEEFC"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M131.68 184.196H133.964C133.933 183.345 133.491 182.875 132.833 182.875C132.133 182.875 131.752 183.423 131.68 184.196ZM134.962 186.234C134.581 187.04 133.912 187.544 132.884 187.544C131.403 187.544 130.467 186.424 130.467 184.734C130.467 183.065 131.413 181.946 132.842 181.946C134.406 181.946 135.136 183.233 135.136 184.678V185.036H131.66C131.691 185.842 132.02 186.592 132.873 186.592C133.48 186.592 133.758 186.256 133.953 185.797L134.962 186.234Z" fill="#ECEEFC"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M140.459 183.279C140.277 183.141 140.034 183.072 139.79 183.072C139.109 183.072 138.391 183.624 138.391 184.796V187.544H137.004V182.095H138.306V182.98C138.634 182.291 139.218 181.946 140.009 181.946C140.241 181.946 140.509 181.98 140.739 182.072L140.459 183.279Z" fill="#ECEEFC"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M166.992 67.5282C167.041 68.2492 167.467 68.8855 168.199 68.8855C168.98 68.8855 169.485 68.1771 169.485 67.1557C169.485 66.291 169.129 65.4498 168.268 65.4498C167.803 65.4498 167.338 65.7022 167.111 66.291L166.151 66.0867L166.557 61.5815H170.266L170.108 62.6991H167.378L167.161 64.9812C167.398 64.6568 167.803 64.3568 168.476 64.3568C169.94 64.3568 170.623 65.7743 170.623 67.1316C170.623 68.6813 169.722 69.979 168.179 69.979C166.715 69.979 165.983 68.7654 165.953 67.8646L166.992 67.5282Z" fill="#ECEEFC"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M173.592 61.5815H178.093V62.4414C177.233 63.5619 175.69 66.0212 175.69 69.046H174.552C174.552 66.1409 176.026 63.6925 176.866 62.5937H173.424L173.592 61.5815Z" fill="#ECEEFC"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M183.283 66.4239V62.6482H183.262L181.012 66.4239H183.283ZM184.429 61.5815V66.4239H185.564L185.396 67.3812H184.429V69.046H183.283V67.3812H179.961V66.4457L182.894 61.5815H184.429Z" fill="#ECEEFC"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M189.118 66.7239C189.721 66.7239 190.176 66.369 190.176 65.6118C190.176 64.8551 189.721 64.4647 189.118 64.4647C188.525 64.4647 188.07 64.8551 188.07 65.6118C188.07 66.369 188.525 66.7239 189.118 66.7239ZM188.092 69.3617C187.819 69.5037 187.648 69.7753 187.648 70.1539C187.648 70.7218 188.206 70.9465 189.061 70.9465C190.051 70.9465 190.666 70.6744 190.666 70.1184C190.666 69.7403 190.416 69.5742 189.778 69.515L188.092 69.3617ZM187.455 67.067C187.056 66.7476 186.806 66.2625 186.806 65.6355C186.806 64.2991 187.933 63.5661 189.072 63.5661C189.562 63.5661 189.995 63.7076 190.313 63.8614C190.598 63.6129 190.928 63.4478 191.429 63.4478C191.703 63.4478 191.93 63.4951 192.101 63.5779L191.862 64.4529C191.76 64.3464 191.6 64.3109 191.463 64.3109C191.27 64.3109 191.122 64.3701 191.042 64.4529C191.304 64.7368 191.441 65.1746 191.441 65.6118C191.441 66.8896 190.336 67.6112 189.129 67.6112C188.685 67.6112 188.457 67.5161 188.309 67.5161C188.116 67.5161 187.854 67.6344 187.854 67.9065C187.854 68.155 188.024 68.2733 188.468 68.3206L190.006 68.4744C191.19 68.6046 191.862 68.995 191.862 69.941C191.862 71.2419 190.632 71.8452 189.026 71.8452C187.523 71.8452 186.498 71.337 186.498 70.2959C186.498 69.6812 186.851 69.2671 187.318 69.066C186.908 68.8648 186.714 68.5336 186.714 68.1195C186.714 67.6818 186.988 67.2918 187.455 67.067Z" fill="#ECEEFC"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M194.249 65.6981H196.532C196.501 64.8474 196.059 64.377 195.401 64.377C194.701 64.377 194.321 64.9253 194.249 65.6981ZM197.53 67.7361C197.149 68.5425 196.481 69.0461 195.452 69.0461C193.971 69.0461 193.035 67.9265 193.035 66.2357C193.035 64.5673 193.981 63.4478 195.411 63.4478C196.974 63.4478 197.704 64.7353 197.704 66.1797V66.5381H194.228C194.259 67.3441 194.588 68.0945 195.441 68.0945C196.048 68.0945 196.326 67.7585 196.521 67.2993L197.53 67.7361Z" fill="#ECEEFC"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M199.852 65.6981H202.135C202.104 64.8474 201.662 64.377 201.004 64.377C200.304 64.377 199.924 64.9253 199.852 65.6981ZM203.133 67.7361C202.752 68.5425 202.084 69.0461 201.055 69.0461C199.574 69.0461 198.638 67.9265 198.638 66.2357C198.638 64.5673 199.585 63.4478 201.014 63.4478C202.577 63.4478 203.307 64.7353 203.307 66.1797V66.5381H199.831C199.862 67.3441 200.191 68.0945 201.045 68.0945C201.652 68.0945 201.929 67.7585 202.124 67.2993L203.133 67.7361Z" fill="#ECEEFC"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M206.247 62.63C206.405 61.7811 207.007 60.6486 208.428 60.6486C209.81 60.6486 210.61 61.6862 210.61 62.9013C210.61 63.7979 210.196 64.4226 209.564 64.7057C210.285 64.8945 210.778 65.7203 210.778 66.6636C210.778 67.8428 210.018 69.046 208.409 69.046C206.721 69.046 206.139 67.7017 206.109 66.9585L207.175 66.6046C207.225 67.1354 207.471 67.9848 208.419 67.9848C209.298 67.9848 209.633 67.3124 209.633 66.6518C209.633 65.8378 209.12 65.2838 208.202 65.2838C208.152 65.2838 208.073 65.2956 208.004 65.2956H207.866V64.1749C207.905 64.1867 207.945 64.1867 207.975 64.1867H208.192C209.051 64.1867 209.485 63.6563 209.485 62.9013C209.485 62.135 209.001 61.7103 208.409 61.7103C207.728 61.7103 207.343 62.3114 207.293 62.9249L206.247 62.63Z" fill="#ECEEFC"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M50.2608 158.968C50.3099 159.688 50.7353 160.325 51.4676 160.325C52.2489 160.325 52.7535 159.616 52.7535 158.595C52.7535 157.73 52.3973 156.889 51.5368 156.889C51.0718 156.889 50.6067 157.142 50.3795 157.73L49.4197 157.526L49.825 153.021H53.5348L53.3769 154.138H50.6467L50.429 156.421C50.6661 156.096 51.0718 155.796 51.7446 155.796C53.2083 155.796 53.8911 157.214 53.8911 158.571C53.8911 160.121 52.9906 161.418 51.4478 161.418C49.9837 161.418 49.2515 160.205 49.2218 159.304L50.2608 158.968Z" fill="#D8DCFE"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M55.927 153.021H60.428V153.881C59.5672 155.001 58.0243 157.461 58.0243 160.485H56.8864C56.8864 157.58 58.3604 155.132 59.201 154.033H55.7588L55.927 153.021Z" fill="#D8DCFE"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M65.6178 157.863V154.088H65.5964L63.3469 157.863H65.6178ZM66.7636 153.021V157.863H67.8988L67.7306 158.821H66.7636V160.485H65.6178V158.821H62.2957V157.885L65.2287 153.021H66.7636Z" fill="#D8DCFE"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M72.3861 158.163C72.9893 158.163 73.445 157.808 73.445 157.051C73.445 156.294 72.9893 155.904 72.3861 155.904C71.7937 155.904 71.3381 156.294 71.3381 157.051C71.3381 157.808 71.7937 158.163 72.3861 158.163ZM71.3609 160.801C71.0875 160.943 70.9166 161.215 70.9166 161.593C70.9166 162.161 71.4748 162.386 72.3291 162.386C73.3197 162.386 73.9348 162.114 73.9348 161.558C73.9348 161.179 73.6842 161.013 73.0463 160.954L71.3609 160.801ZM70.7234 158.506C70.3247 158.187 70.0741 157.702 70.0741 157.075C70.0741 155.738 71.2014 155.005 72.34 155.005C72.8303 155.005 73.2632 155.147 73.5817 155.301C73.8665 155.052 74.1968 154.887 74.6976 154.887C74.9714 154.887 75.1988 154.934 75.3697 155.017L75.1304 155.892C75.0284 155.786 74.8684 155.75 74.7317 155.75C74.5386 155.75 74.39 155.809 74.3107 155.892C74.5727 156.176 74.7094 156.614 74.7094 157.051C74.7094 158.329 73.6045 159.05 72.397 159.05C71.9532 159.05 71.7254 158.955 71.5777 158.955C71.3841 158.955 71.1221 159.074 71.1221 159.346C71.1221 159.594 71.293 159.713 71.7368 159.76L73.2741 159.914C74.4588 160.044 75.1304 160.434 75.1304 161.38C75.1304 162.681 73.9006 163.284 72.2949 163.284C70.7918 163.284 69.7665 162.776 69.7665 161.735C69.7665 161.12 70.1197 160.706 70.5867 160.505C70.1766 160.304 69.983 159.973 69.983 159.559C69.983 159.121 70.2564 158.731 70.7234 158.506Z" fill="#D8DCFE"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M76.5832 157.137H78.8666C78.8357 156.287 78.3933 155.816 77.7354 155.816C77.0358 155.816 76.6552 156.365 76.5832 157.137ZM79.8644 159.175C79.4838 159.982 78.8151 160.485 77.7868 160.485C76.3054 160.485 75.3697 159.366 75.3697 157.675C75.3697 156.007 76.3161 154.887 77.7452 154.887C79.3089 154.887 80.0389 156.175 80.0389 157.619V157.977H76.5626C76.5935 158.783 76.9227 159.534 77.7761 159.534C78.3831 159.534 78.6608 159.198 78.8559 158.739L79.8644 159.175Z" fill="#D8DCFE"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M83.1201 157.137H85.4035C85.3727 156.287 84.9303 155.816 84.2723 155.816C83.5728 155.816 83.1921 156.365 83.1201 157.137ZM86.4014 159.175C86.0208 159.982 85.3521 160.485 84.3238 160.485C82.8424 160.485 81.9066 159.366 81.9066 157.675C81.9066 156.007 82.8531 154.887 84.2822 154.887C85.8459 154.887 86.5759 156.175 86.5759 157.619V157.977H83.0995C83.1304 158.783 83.4596 159.534 84.3131 159.534C84.92 159.534 85.1978 159.198 85.3928 158.739L86.4014 159.175Z" fill="#D8DCFE"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M88.5818 155.002C88.7398 154.153 89.342 153.021 90.763 153.021C92.1449 153.021 92.945 154.059 92.945 155.274C92.945 156.17 92.5303 156.795 91.8984 157.078C92.6192 157.267 93.1128 158.093 93.1128 159.036C93.1128 160.215 92.3526 161.418 90.7436 161.418C89.0557 161.418 88.4736 160.074 88.4436 159.331L89.5099 158.977C89.5593 159.508 89.8061 160.357 90.7535 160.357C91.6322 160.357 91.9675 159.685 91.9675 159.024C91.9675 158.21 91.4541 157.656 90.5363 157.656C90.4869 157.656 90.408 157.668 90.3388 157.668H90.201V156.547C90.2401 156.559 90.2796 156.559 90.3092 156.559H90.5264C91.3854 156.559 91.8194 156.029 91.8194 155.274C91.8194 154.507 91.336 154.083 90.7436 154.083C90.0624 154.083 89.6773 154.684 89.628 155.297L88.5818 155.002Z" fill="#D8DCFE"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M66.5739 39.8825V39.4457C65.3036 39.4457 64.446 39.6921 64.446 40.3976C64.446 40.8344 64.804 41.0472 65.2927 41.0472C65.9444 41.0472 66.5739 40.6216 66.5739 39.8825ZM66.7042 41.8419C66.6499 41.7411 66.5956 41.4611 66.5956 41.1592C66.2589 41.6515 65.7814 41.9875 64.956 41.9875C63.9138 41.9875 63.2296 41.4163 63.2296 40.476C63.2296 39.0537 64.8148 38.6286 66.5738 38.6286V38.2926C66.5738 37.7214 66.2806 37.3411 65.6294 37.3411C64.9777 37.3411 64.6632 37.7214 64.6519 38.1694L63.4577 37.9902C63.5771 36.9603 64.5329 36.3892 65.6728 36.3892C66.9105 36.3892 67.7789 37.0387 67.7789 38.315V41.1144C67.7789 41.4387 67.8228 41.6291 67.8988 41.8419H66.7042Z" fill="#ECEEFC"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M72.1769 39.8825V39.4457C70.9067 39.4457 70.0491 39.6921 70.0491 40.3976C70.0491 40.8344 70.4071 41.0472 70.8958 41.0472C71.5475 41.0472 72.1769 40.6216 72.1769 39.8825ZM72.3072 41.8419C72.2529 41.7411 72.1986 41.4611 72.1986 41.1592C71.862 41.6515 71.3845 41.9875 70.5591 41.9875C69.5169 41.9875 68.8327 41.4163 68.8327 40.476C68.8327 39.0537 70.4179 38.6286 72.1769 38.6286V38.2926C72.1769 37.7214 71.8837 37.3411 71.2325 37.3411C70.5808 37.3411 70.2663 37.7214 70.255 38.1694L69.0607 37.9902C69.1802 36.9603 70.136 36.3892 71.2759 36.3892C72.5136 36.3892 73.382 37.0387 73.382 38.315V41.1144C73.382 41.4387 73.4259 41.6291 73.5019 41.8419H72.3072Z" fill="#ECEEFC"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M74.574 36.5045C74.732 35.6556 75.3343 34.5231 76.7552 34.5231C78.1371 34.5231 78.9372 35.5607 78.9372 36.7758C78.9372 37.6724 78.5225 38.2971 77.8906 38.5803C78.6114 38.769 79.1051 39.5948 79.1051 40.5381C79.1051 41.7173 78.3448 42.9206 76.7359 42.9206C75.0479 42.9206 74.4658 41.5762 74.4358 40.833L75.5021 40.4791C75.5515 41.0099 75.7983 41.8593 76.7457 41.8593C77.6245 41.8593 77.9598 41.1869 77.9598 40.5263C77.9598 39.7123 77.4463 39.1583 76.5285 39.1583C76.4792 39.1583 76.4002 39.1701 76.3311 39.1701H76.1932V38.0494C76.2323 38.0612 76.2718 38.0612 76.3014 38.0612H76.5187C77.3776 38.0612 77.8117 37.5308 77.8117 36.7758C77.8117 36.0095 77.3283 35.5848 76.7359 35.5848C76.0546 35.5848 75.6696 36.186 75.6202 36.7994L74.574 36.5045Z" fill="#ECEEFC"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M85.2287 40.2985V36.5227H85.2073L82.9578 40.2985H85.2287ZM86.3745 35.4561V40.2984H87.5097L87.3415 41.2557H86.3745V42.9205H85.2287V41.2557H81.9066V40.3202L84.8396 35.4561H86.3745Z" fill="#ECEEFC"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M89.4074 41.8756L90.3598 40.8661C90.8762 40.3254 91.474 39.6529 91.7978 39.2683C92.4163 38.5358 92.811 37.8508 92.811 37.0337C92.811 36.1689 92.396 35.6161 91.7475 35.6161C90.9268 35.6161 90.5823 36.541 90.5013 37.3581L89.3774 37.1298C89.6003 35.6402 90.3497 34.5231 91.7779 34.5231C93.2669 34.5231 93.9863 35.7724 93.9863 37.0096C93.9863 38.1152 93.4088 39.0641 92.6489 39.9653C92.1629 40.5422 91.4334 41.2867 90.9171 41.8035H94.0467V42.9206H89.4074V41.8756Z" fill="#ECEEFC"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M169.298 185.439V185.002C168.027 185.002 167.17 185.248 167.17 185.954C167.17 186.391 167.528 186.604 168.016 186.604C168.668 186.604 169.298 186.178 169.298 185.439ZM169.428 187.398C169.374 187.297 169.319 187.018 169.319 186.716C168.983 187.208 168.505 187.544 167.68 187.544C166.638 187.544 165.953 186.973 165.953 186.032C165.953 184.61 167.539 184.185 169.298 184.185V183.849C169.298 183.278 169.004 182.898 168.353 182.898C167.701 182.898 167.387 183.278 167.376 183.726L166.181 183.547C166.301 182.517 167.257 181.946 168.397 181.946C169.634 181.946 170.503 182.595 170.503 183.871V186.671C170.503 186.995 170.547 187.186 170.623 187.398H169.428Z" fill="#D8DCFE"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M174.901 185.439V185.002C173.63 185.002 172.773 185.248 172.773 185.954C172.773 186.391 173.131 186.604 173.62 186.604C174.271 186.604 174.901 186.178 174.901 185.439ZM175.031 187.398C174.977 187.297 174.922 187.018 174.922 186.716C174.586 187.208 174.108 187.544 173.283 187.544C172.241 187.544 171.556 186.973 171.556 186.032C171.556 184.61 173.142 184.185 174.901 184.185V183.849C174.901 183.278 174.607 182.898 173.956 182.898C173.305 182.898 172.99 183.278 172.979 183.726L171.784 183.547C171.904 182.517 172.86 181.946 174 181.946C175.237 181.946 176.106 182.595 176.106 183.871V186.671C176.106 186.995 176.15 187.186 176.226 187.398H175.031Z" fill="#D8DCFE"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M177.298 181.128C177.456 180.279 178.058 179.146 179.479 179.146C180.861 179.146 181.661 180.184 181.661 181.399C181.661 182.296 181.246 182.921 180.614 183.204C181.335 183.392 181.829 184.218 181.829 185.161C181.829 186.341 181.069 187.544 179.46 187.544C177.772 187.544 177.19 186.2 177.16 185.456L178.226 185.102C178.275 185.633 178.522 186.483 179.469 186.483C180.348 186.483 180.684 185.81 180.684 185.15C180.684 184.336 180.17 183.782 179.252 183.782C179.203 183.782 179.124 183.794 179.055 183.794H178.917V182.673C178.956 182.685 178.996 182.685 179.025 182.685H179.242C180.101 182.685 180.535 182.154 180.535 181.399C180.535 180.633 180.052 180.208 179.46 180.208C178.778 180.208 178.393 180.809 178.344 181.423L177.298 181.128Z" fill="#D8DCFE"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M187.952 184.922V181.146H187.931L185.682 184.922H187.952ZM189.098 180.079V184.922H190.233L190.065 185.879H189.098V187.544H187.952V185.879H184.63V184.944L187.563 180.079H189.098Z" fill="#D8DCFE"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M191.197 186.499L192.15 185.49C192.666 184.949 193.264 184.276 193.588 183.892C194.206 183.159 194.601 182.474 194.601 181.657C194.601 180.792 194.186 180.24 193.537 180.24C192.717 180.24 192.372 181.164 192.291 181.982L191.167 181.753C191.39 180.264 192.14 179.146 193.568 179.146C195.057 179.146 195.776 180.396 195.776 181.633C195.776 182.739 195.199 183.687 194.439 184.589C193.953 185.166 193.223 185.91 192.707 186.427H195.837V187.544H191.197V186.499Z" fill="#D8DCFE"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M111.249 13.1882C111.249 14.3545 112.071 14.8022 112.729 14.8022C113.61 14.8022 114.162 14.0011 114.162 12.9177C114.162 11.8338 113.61 11.0332 112.729 11.0332C112.071 11.0332 111.249 11.4804 111.249 12.6467V13.1882ZM115.525 12.9177C115.525 14.731 114.444 15.862 113.011 15.862C112.06 15.862 111.495 15.3907 111.201 14.8846V15.7088H109.922V7.46448H111.26V10.8442C111.59 10.373 112.165 9.97289 113.011 9.97289C114.444 9.97289 115.525 11.1034 115.525 12.9177Z" fill="#ECEEFC"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M119.989 13.063C119.989 12.055 119.605 11.2379 118.789 11.2379C117.983 11.2379 117.599 12.055 117.599 13.063C117.599 14.0705 117.983 14.8876 118.789 14.8876C119.605 14.8876 119.989 14.0705 119.989 13.063ZM121.128 13.0629C121.128 14.7312 120.234 15.8619 118.789 15.8619C117.344 15.8619 116.459 14.7312 116.459 13.0629C116.459 11.3942 117.344 10.2635 118.789 10.2635C120.234 10.2635 121.128 11.3942 121.128 13.0629Z" fill="#ECEEFC"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M123.134 9.44588C123.292 8.59651 123.894 7.46448 125.316 7.46448C126.697 7.46448 127.497 8.50213 127.497 9.71721C127.497 10.6138 127.083 11.2385 126.451 11.5212C127.172 11.7104 127.665 12.5362 127.665 13.4795C127.665 14.6587 126.905 15.862 125.296 15.862C123.608 15.862 123.026 14.5171 122.996 13.7744L124.062 13.4205C124.112 13.9513 124.359 14.8007 125.306 14.8007C126.184 14.8007 126.52 14.1283 126.52 13.4672C126.52 12.6537 126.007 12.0997 125.089 12.0997C125.039 12.0997 124.96 12.111 124.891 12.111H124.753V10.9908C124.793 11.0026 124.832 11.0026 124.861 11.0026H125.079C125.938 11.0026 126.372 10.4722 126.372 9.71721C126.372 8.95041 125.888 8.5262 125.296 8.5262C124.615 8.5262 124.229 9.12737 124.18 9.7408L123.134 9.44588Z" fill="#ECEEFC"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M130.467 13.9541H132.25V8.79734C131.936 9.04657 131.407 9.21951 130.769 9.25202L130.564 8.28803C131.429 8.19051 132.034 7.9092 132.412 7.46448H133.504V13.9541H135.136V14.9289H130.467V13.9541Z" fill="#ECEEFC"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M137.004 13.9541H138.787V8.79734C138.473 9.04657 137.944 9.21951 137.306 9.25202L137.101 8.28803C137.966 8.19051 138.571 7.9092 138.949 7.46448H140.041V13.9541H141.673V14.9289H137.004V13.9541Z" fill="#ECEEFC"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M148.766 11.6635C148.766 10.0005 148.363 8.5376 147.276 8.5376C146.189 8.5376 145.786 10.0005 145.786 11.6635C145.786 13.326 146.189 14.7889 147.276 14.7889C148.363 14.7889 148.766 13.326 148.766 11.6635ZM150.078 11.6635C150.078 13.9748 149.326 15.862 147.276 15.862C145.225 15.862 144.475 13.9748 144.475 11.6635C144.475 9.35161 145.225 7.46448 147.276 7.46448C149.326 7.46448 150.078 9.35161 150.078 11.6635Z" fill="#ECEEFC"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M111.249 212.862C111.249 214.028 112.071 214.476 112.729 214.476C113.61 214.476 114.162 213.675 114.162 212.591C114.162 211.507 113.61 210.707 112.729 210.707C112.071 210.707 111.249 211.154 111.249 212.32V212.862ZM115.525 212.591C115.525 214.405 114.444 215.536 113.011 215.536C112.06 215.536 111.496 215.065 111.202 214.558V215.383H109.922V207.138H111.261V210.518C111.59 210.047 112.165 209.647 113.011 209.647C114.444 209.647 115.525 210.777 115.525 212.591Z" fill="#D8DCFE"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M119.988 211.804C119.988 210.796 119.605 209.979 118.789 209.979C117.983 209.979 117.6 210.796 117.6 211.804C117.6 212.811 117.983 213.629 118.789 213.629C119.605 213.629 119.988 212.811 119.988 211.804ZM121.128 211.804C121.128 213.472 120.234 214.602 118.789 214.602C117.344 214.602 116.459 213.472 116.459 211.804C116.459 210.135 117.344 209.004 118.789 209.004C120.234 209.004 121.128 210.135 121.128 211.804Z" fill="#D8DCFE"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M123.134 209.119C123.292 208.271 123.895 207.138 125.316 207.138C126.697 207.138 127.498 208.176 127.498 209.391C127.498 210.287 127.083 210.912 126.451 211.195C127.172 211.384 127.665 212.21 127.665 213.153C127.665 214.332 126.905 215.536 125.296 215.536C123.608 215.536 123.026 214.191 122.996 213.448L124.062 213.094C124.112 213.625 124.359 214.474 125.306 214.474C126.185 214.474 126.52 213.802 126.52 213.141C126.52 212.327 126.007 211.773 125.089 211.773C125.039 211.773 124.96 211.785 124.891 211.785H124.753V210.664C124.793 210.676 124.832 210.676 124.862 210.676H125.079C125.938 210.676 126.372 210.146 126.372 209.391C126.372 208.624 125.889 208.2 125.296 208.2C124.615 208.2 124.23 208.801 124.18 209.414L123.134 209.119Z" fill="#D8DCFE"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M130.467 213.627H132.25V208.47C131.937 208.72 131.407 208.893 130.77 208.926L130.564 207.961C131.429 207.864 132.034 207.582 132.412 207.138H133.504V213.627H135.136V214.602H130.467V213.627Z" fill="#D8DCFE"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M137.004 213.627H138.787V208.47C138.474 208.72 137.944 208.893 137.307 208.926L137.101 207.961C137.966 207.864 138.571 207.582 138.949 207.138H140.041V213.627H141.673V214.602H137.004V213.627Z" fill="#D8DCFE"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M148.766 211.337C148.766 209.674 148.363 208.211 147.276 208.211C146.189 208.211 145.786 209.674 145.786 211.337C145.786 213 146.189 214.462 147.276 214.462C148.363 214.462 148.766 213 148.766 211.337ZM150.078 211.337C150.078 213.648 149.327 215.536 147.276 215.536C145.225 215.536 144.475 213.648 144.475 211.337C144.475 209.025 145.225 207.138 147.276 207.138C149.327 207.138 150.078 209.025 150.078 211.337Z" fill="#D8DCFE"/>
<g filter="url(#filter1_d)">
<path fill-rule="evenodd" clip-rule="evenodd" d="M162.218 194.075C162.218 201.29 156.365 207.138 149.144 207.138C141.923 207.138 136.07 201.29 136.07 194.075C136.07 186.861 141.923 181.013 149.144 181.013C156.365 181.013 162.218 186.861 162.218 194.075Z" fill="#4360DF"/>
</g>
<path fill-rule="evenodd" clip-rule="evenodd" d="M154.747 194.545C154.747 195.645 153.813 196.544 152.67 196.544H148.143L146.008 198.596C145.688 198.904 145.14 198.688 145.14 198.252V196.488C144.226 196.28 143.541 195.489 143.541 194.545V191.41C143.541 190.31 144.475 189.41 145.618 189.41H152.67C153.813 189.41 154.747 190.31 154.747 191.41V194.545Z" fill="white"/>
<g filter="url(#filter2_d)">
<path fill-rule="evenodd" clip-rule="evenodd" d="M168.755 53.1841C168.755 60.3984 162.902 66.2469 155.681 66.2469C148.46 66.2469 142.607 60.3984 142.607 53.1841C142.607 45.9697 148.46 40.1213 155.681 40.1213C162.902 40.1213 168.755 45.9697 168.755 53.1841Z" fill="#4360DF"/>
</g>
<path fill-rule="evenodd" clip-rule="evenodd" d="M154.815 57.8494C154.512 57.8494 154.209 57.7363 153.978 57.5103L150.425 54.0354C149.962 53.5828 149.962 52.8498 150.425 52.3972C150.887 51.945 151.637 51.945 152.1 52.3972L154.815 55.0533L160.196 49.791C160.659 49.3389 161.408 49.3389 161.871 49.791C162.333 50.2437 162.333 50.9767 161.871 51.4293L155.653 57.5103C155.421 57.7363 155.119 57.8494 154.815 57.8494Z" fill="white"/>
<g filter="url(#filter3_d)">
<path fill-rule="evenodd" clip-rule="evenodd" d="M118.327 29.8577C118.327 37.072 112.474 42.9204 105.253 42.9204C98.0323 42.9204 92.179 37.072 92.179 29.8577C92.179 22.6433 98.0323 16.7949 105.253 16.7949C112.474 16.7949 118.327 22.6433 118.327 29.8577Z" fill="#4360DF"/>
</g>
<path fill-rule="evenodd" clip-rule="evenodd" d="M109.951 35.4561C110.508 35.4561 110.944 34.9599 110.841 34.4201C110.348 31.8231 108.033 29.8578 105.253 29.8578C102.473 29.8578 100.158 31.8231 99.6649 34.4201C99.5622 34.9599 99.9976 35.4561 100.555 35.4561H109.951Z" fill="white"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M108.054 26.1256C108.054 27.6715 106.8 28.9247 105.253 28.9247C103.706 28.9247 102.451 27.6715 102.451 26.1256C102.451 24.5797 103.706 23.3264 105.253 23.3264C106.8 23.3264 108.054 24.5797 108.054 26.1256Z" fill="white"/>
<g filter="url(#filter4_d)">
<path fill-rule="evenodd" clip-rule="evenodd" d="M89.3774 165.151C89.3774 172.365 83.5241 178.213 76.3037 178.213C69.0829 178.213 63.2296 172.365 63.2296 165.151C63.2296 157.936 69.0829 152.088 76.3037 152.088C83.5241 152.088 89.3774 157.936 89.3774 165.151Z" fill="#4360DF"/>
</g>
<path fill-rule="evenodd" clip-rule="evenodd" d="M81.9066 165.151C81.9066 165.769 81.4046 166.27 80.786 166.27H77.4241V169.629C77.4241 170.247 76.9221 170.749 76.3035 170.749C75.6849 170.749 75.1829 170.247 75.1829 169.629V166.27H71.821C71.2024 166.27 70.7004 165.769 70.7004 165.151C70.7004 164.533 71.2024 164.031 71.821 164.031H75.1829V160.672C75.1829 160.054 75.6849 159.552 76.3035 159.552C76.9221 159.552 77.4241 160.054 77.4241 160.672V164.031H80.786C81.4046 164.031 81.9066 164.533 81.9066 165.151Z" fill="white"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M54.1511 120.364L55.6881 116.231L52.0233 106.368H54.3087C54.6829 107.51 55.0575 108.548 55.3923 109.525C55.9635 111.186 56.5547 112.972 56.7712 113.553H56.8106C56.9882 112.972 57.5793 111.186 58.1506 109.525C58.4853 108.548 58.8595 107.51 59.2337 106.368H61.3619L56.3377 120.364H54.1511Z" fill="white"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M70.0593 111.5C70.0593 109.652 69.2159 108.154 67.4212 108.154C65.6474 108.154 64.804 109.652 64.804 111.5C64.804 113.347 65.6474 114.846 67.4212 114.846C69.2159 114.846 70.0593 113.347 70.0593 111.5ZM72.5681 111.5C72.5681 114.559 70.5998 116.632 67.4212 116.632C64.2421 116.632 62.2957 114.559 62.2957 111.5C62.2957 108.441 64.2421 106.368 67.4212 106.368C70.5998 106.368 72.5681 108.441 72.5681 111.5Z" fill="white"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M82.8405 116.358H80.6792V114.861C80.0986 115.894 79.1986 116.632 77.7377 116.632C75.9165 116.632 74.4358 115.515 74.4358 113.281V106.368H76.6969V112.691C76.6969 114.124 77.5375 114.672 78.4182 114.672C79.5386 114.672 80.5794 113.639 80.5794 111.658V106.368H82.8405V116.358Z" fill="white"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M87.5095 113.833C88.6049 113.833 89.3774 114.396 89.3774 115.232C89.3774 116.068 88.6049 116.632 87.5095 116.632C86.414 116.632 85.642 116.068 85.642 115.232C85.642 114.396 86.414 113.833 87.5095 113.833Z" fill="white"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M95.8352 110.515C97.8551 110.782 99.6498 111.459 99.6498 113.491C99.6498 115.462 98.0183 116.632 95.4885 116.632C93.1013 116.632 91.4694 115.606 91.2451 113.697L93.4893 113.368C93.5915 114.456 94.3463 114.928 95.5087 114.928C96.5899 114.928 97.3241 114.538 97.3241 113.656C97.3241 112.896 96.794 112.588 95.1822 112.342C92.9794 112.013 91.5102 111.274 91.5102 109.386C91.5102 107.333 93.4072 106.368 95.4885 106.368C97.6304 106.368 99.222 107.374 99.5072 109.037L97.2635 109.509C97.12 108.585 96.5285 108.051 95.4477 108.051C94.5503 108.051 93.8359 108.462 93.8359 109.222C93.8359 110.104 94.6315 110.33 95.8352 110.515Z" fill="white"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M107.121 116.217C106.629 116.466 105.891 116.632 105.133 116.632C103.33 116.632 102.223 115.656 102.223 113.829V108.264H100.584V106.519H102.223V103.716L104.539 102.636V106.519H106.731V108.264H104.539V113.538C104.539 114.389 104.907 114.701 105.46 114.701C105.87 114.701 106.178 114.535 106.485 114.368L107.121 116.217Z" fill="white"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M114.075 112.773V111.972C111.788 111.972 110.244 112.424 110.244 113.717C110.244 114.518 110.889 114.908 111.768 114.908C112.941 114.908 114.075 114.128 114.075 112.773ZM114.309 116.365C114.211 116.18 114.114 115.667 114.114 115.113C113.508 116.016 112.648 116.632 111.163 116.632C109.286 116.632 108.054 115.585 108.054 113.861C108.054 111.254 110.908 110.473 114.075 110.473V109.858C114.075 108.811 113.547 108.113 112.374 108.113C111.201 108.113 110.635 108.811 110.615 109.632L108.465 109.304C108.68 107.415 110.4 106.368 112.453 106.368C114.681 106.368 116.244 107.559 116.244 109.899V115.031C116.244 115.626 116.323 115.975 116.459 116.365H114.309Z" fill="white"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M124.864 116.217C124.371 116.466 123.634 116.632 122.876 116.632C121.073 116.632 119.966 115.656 119.966 113.829V108.264H118.327V106.519H119.966V103.716L122.282 102.636V106.519H124.474V108.264H122.282V113.538C122.282 114.389 122.65 114.701 123.203 114.701C123.613 114.701 123.921 114.535 124.228 114.368L124.864 116.217Z" fill="white"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M128.225 110.494H132.791C132.729 108.934 131.845 108.072 130.529 108.072C129.13 108.072 128.369 109.078 128.225 110.494ZM134.787 114.23C134.026 115.708 132.688 116.632 130.632 116.632C127.67 116.632 125.798 114.579 125.798 111.479C125.798 108.421 127.69 106.368 130.549 106.368C133.676 106.368 135.136 108.729 135.136 111.377V112.034H128.184C128.246 113.512 128.904 114.887 130.611 114.887C131.825 114.887 132.38 114.271 132.77 113.43L134.787 114.23Z" fill="white"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M144.767 111.5C144.767 109.652 143.924 108.154 142.129 108.154C140.356 108.154 139.512 109.652 139.512 111.5C139.512 113.347 140.356 114.846 142.129 114.846C143.924 114.846 144.767 113.347 144.767 111.5ZM147.276 111.5C147.276 114.559 145.308 116.632 142.129 116.632C138.95 116.632 137.004 114.559 137.004 111.5C137.004 108.441 138.95 106.368 142.129 106.368C145.308 106.368 147.276 108.441 147.276 111.5Z" fill="white"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M147.276 106.707H148.87V105.409C148.87 102.624 150.623 101.703 152.237 101.703C153.213 101.703 154.209 101.996 154.747 102.436L153.811 104.236C153.512 103.964 153.074 103.671 152.456 103.671C151.659 103.671 151.121 104.153 151.121 105.388V106.707H153.253V108.466H151.121V116.632H148.87V108.466H147.276V106.707Z" fill="white"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M163.152 116.358H160.991V114.861C160.41 115.894 159.51 116.632 158.049 116.632C156.228 116.632 154.747 115.515 154.747 113.281V106.368H157.008V112.691C157.008 114.124 157.849 114.672 158.729 114.672C159.85 114.672 160.891 113.639 160.891 111.658V106.368H163.152V116.358Z" fill="white"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M169.61 110.515C171.629 110.782 173.424 111.459 173.424 113.491C173.424 115.462 171.793 116.632 169.263 116.632C166.876 116.632 165.244 115.606 165.019 113.697L167.264 113.368C167.366 114.456 168.121 114.928 169.283 114.928C170.364 114.928 171.098 114.538 171.098 113.656C171.098 112.896 170.568 112.588 168.957 112.342C166.754 112.013 165.285 111.274 165.285 109.386C165.285 107.333 167.182 106.368 169.263 106.368C171.405 106.368 172.996 107.374 173.282 109.037L171.038 109.509C170.894 108.585 170.303 108.051 169.222 108.051C168.325 108.051 167.61 108.462 167.61 109.222C167.61 110.104 168.406 110.33 169.61 110.515Z" fill="white"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M177.159 113.833C178.255 113.833 179.027 114.396 179.027 115.232C179.027 116.068 178.255 116.632 177.159 116.632C176.064 116.632 175.292 116.068 175.292 115.232C175.292 114.396 176.064 113.833 177.159 113.833Z" fill="white"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M182.388 110.494H186.955C186.893 108.934 186.009 108.072 184.692 108.072C183.293 108.072 182.532 109.078 182.388 110.494ZM188.95 114.23C188.189 115.708 186.852 116.632 184.795 116.632C181.833 116.632 179.961 114.579 179.961 111.479C179.961 108.421 181.854 106.368 184.712 106.368C187.839 106.368 189.3 108.729 189.3 111.377V112.034H182.347C182.409 113.512 183.067 114.887 184.774 114.887C185.988 114.887 186.543 114.271 186.934 113.43L188.95 114.23Z" fill="white"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M196.77 116.217C196.278 116.466 195.541 116.632 194.783 116.632C192.98 116.632 191.873 115.656 191.873 113.829V108.264H190.233V106.519H191.873V103.716L194.189 102.636V106.519H196.381V108.264H194.189V113.538C194.189 114.389 194.557 114.701 195.11 114.701C195.52 114.701 195.828 114.535 196.135 114.368L196.77 116.217Z" fill="white"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M198.638 101.703H200.887V107.909C201.361 106.992 202.229 106.245 203.728 106.245C205.543 106.245 207.043 107.376 207.043 109.658V116.632H204.794V110.234C204.794 108.783 203.945 108.229 203.058 108.229C201.933 108.229 200.887 109.274 200.887 111.279V116.632H198.638V101.703Z" fill="white"/>
<defs>
<filter id="filter0_d" x="0.351624" y="81.0122" width="258.92" height="72.251" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/>
<feOffset dy="6"/>
<feGaussianBlur stdDeviation="5"/>
<feColorMatrix type="matrix" values="0 0 0 0 0.0313726 0 0 0 0 0.101961 0 0 0 0 0.54902 0 0 0 0.213117 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/>
</filter>
<filter id="filter1_d" x="126.07" y="177.013" width="46.1479" height="46.1255" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/>
<feOffset dy="6"/>
<feGaussianBlur stdDeviation="5"/>
<feColorMatrix type="matrix" values="0 0 0 0 0.0313726 0 0 0 0 0.101961 0 0 0 0 0.54902 0 0 0 0.213117 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/>
</filter>
<filter id="filter2_d" x="132.607" y="36.1213" width="46.1479" height="46.1255" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/>
<feOffset dy="6"/>
<feGaussianBlur stdDeviation="5"/>
<feColorMatrix type="matrix" values="0 0 0 0 0.0313726 0 0 0 0 0.101961 0 0 0 0 0.54902 0 0 0 0.213117 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/>
</filter>
<filter id="filter3_d" x="82.179" y="12.7949" width="46.1479" height="46.1255" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/>
<feOffset dy="6"/>
<feGaussianBlur stdDeviation="5"/>
<feColorMatrix type="matrix" values="0 0 0 0 0.0313726 0 0 0 0 0.101961 0 0 0 0 0.54902 0 0 0 0.213117 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/>
</filter>
<filter id="filter4_d" x="53.2296" y="148.088" width="46.1479" height="46.1255" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/>
<feOffset dy="6"/>
<feGaussianBlur stdDeviation="5"/>
<feColorMatrix type="matrix" values="0 0 0 0 0.0313726 0 0 0 0 0.101961 0 0 0 0 0.54902 0 0 0 0.213117 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/>
</filter>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 67 KiB

View File

@ -0,0 +1,3 @@
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M20 10C20 4.47717 15.5228 0 10 0C4.47717 0 0 4.47717 0 10C0 15.5228 4.47717 20 10 20C15.5228 20 20 15.5228 20 10ZM2 10C2 5.58167 5.58167 2 10 2C14.4183 2 18 5.58167 18 10C18 14.4183 14.4183 18 10 18C5.58167 18 2 14.4183 2 10ZM9 6.04871C9 5.49646 9.44775 5.04871 10 5.04871C10.5522 5.04871 11 5.49646 11 6.04871V10.9696C11 10.9696 11 12 10 12C9.16553 12 9 11.1157 9 10.9696V6.04871ZM9 14C9 13.4478 9.44775 13 10 13C10.5522 13 11 13.4478 11 14C11 14.5522 10.5522 15 10 15C9.44775 15 9 14.5522 9 14Z" fill="#FF2D55"/>
</svg>

After

Width:  |  Height:  |  Size: 667 B