Merge branch 'staging' into wownero/desktop
10
.github/workflows/test.yaml
vendored
|
@ -23,6 +23,7 @@ jobs:
|
|||
run: |
|
||||
cargo install cargo-ndk
|
||||
rustup target add x86_64-unknown-linux-gnu
|
||||
sudo apt clean
|
||||
sudo apt update
|
||||
sudo apt install -y unzip automake build-essential file pkg-config git python libtool libtinfo5 cmake openjdk-8-jre-headless libgit2-dev clang libncurses5-dev libncursesw5-dev zlib1g-dev llvm
|
||||
sudo apt install -y debhelper libclang-dev cargo rustc opencl-headers libssl-dev ocl-icd-opencl-dev
|
||||
|
@ -83,6 +84,12 @@ jobs:
|
|||
$secretFileNamecoinHash = Get-FileHash $secretFileNamecoin;
|
||||
Write-Output "Secret file $secretFileNamecoin has hash $($secretFileNamecoinHash.Hash)";
|
||||
|
||||
$secretFileParticl = Join-Path -Path $env:GITHUB_WORKSPACE -ChildPath "test/services/coins/particl/particl_wallet_test_parameters.dart";
|
||||
$encodedBytes = [System.Convert]::FromBase64String($env:PARTICL_TEST);
|
||||
Set-Content $secretFileParticl -Value $encodedBytes -AsByteStream;
|
||||
$secretFileParticlHash = Get-FileHash $secretFileParticl;
|
||||
Write-Output "Secret file $secretFileParticl has hash $($secretFileParticlHash.Hash)";
|
||||
|
||||
shell: pwsh
|
||||
env:
|
||||
CHANGE_NOW: ${{ secrets.CHANGE_NOW }}
|
||||
|
@ -91,6 +98,7 @@ jobs:
|
|||
FIRO_TEST: ${{ secrets.FIRO_TEST }}
|
||||
BITCOINCASH_TEST: ${{ secrets.BITCOINCASH_TEST }}
|
||||
NAMECOIN_TEST: ${{ secrets.NAMECOIN_TEST }}
|
||||
PARTICL_TEST: ${{ secrets.PARTICL_TEST }}
|
||||
# - name: Analyze
|
||||
# run: flutter analyze
|
||||
- name: Test
|
||||
|
@ -109,6 +117,7 @@ jobs:
|
|||
$secretFileFiro = Join-Path -Path $env:GITHUB_WORKSPACE -ChildPath "test/services/coins/firo/firo_wallet_test_parameters.dart";
|
||||
$secretFileBitcoinCash = Join-Path -Path $env:GITHUB_WORKSPACE -ChildPath "test/services/coins/bitcoincash/bitcoincash_wallet_test_parameters.dart";
|
||||
$secretFileNamecoin = Join-Path -Path $env:GITHUB_WORKSPACE -ChildPath "test/services/coins/namecoin/namecoin_wallet_test_parameters.dart";
|
||||
$secretFileParticl = Join-Path -Path $env:GITHUB_WORKSPACE -ChildPath "test/services/coins/particl/particl_wallet_test_parameters.dart";
|
||||
|
||||
Remove-Item -Path $secretFileExchange;
|
||||
Remove-Item -Path $secretFileBitcoin;
|
||||
|
@ -116,5 +125,6 @@ jobs:
|
|||
Remove-Item -Path $secretFileFiro;
|
||||
Remove-Item -Path $secretFileBitcoinCash;
|
||||
Remove-Item -Path $secretFileNamecoin;
|
||||
Remove-Item -Path $secretFileParticl;
|
||||
shell: pwsh
|
||||
if: always()
|
||||
|
|
10
.gitignore
vendored
|
@ -38,7 +38,9 @@ test/services/coins/bitcoin/bitcoin_wallet_test_parameters.dart
|
|||
test/services/coins/firo/firo_wallet_test_parameters.dart
|
||||
test/services/coins/dogecoin/dogecoin_wallet_test_parameters.dart
|
||||
test/services/coins/namecoin/namecoin_wallet_test_parameters.dart
|
||||
test/services/coins/namecoin/namecoin_wallet_test_parameters.dart.txt # Legacy
|
||||
test/services/coins/bitcoincash/bitcoincash_wallet_test_parameters.dart
|
||||
test/services/coins/particl/particl_wallet_test_parameters.dart
|
||||
/integration_test/private.dart
|
||||
|
||||
# Exceptions to above rules.
|
||||
|
@ -48,5 +50,9 @@ test/services/coins/bitcoincash/bitcoincash_wallet_test_parameters.dart
|
|||
coverage
|
||||
scripts/**/build
|
||||
/lib/external_api_keys.dart
|
||||
/test/services/coins/bitcoincash/bitcoincash_wallet_test_parameters.dart
|
||||
/test/services/coins/namecoin/namecoin_wallet_test_parameters.dart.txt
|
||||
|
||||
libcw_monero.dll
|
||||
libcw_wownero.dll
|
||||
libepic_cash_wallet.dll
|
||||
libmobileliblelantus.dll
|
||||
/libisar.so
|
||||
|
|
|
@ -22,10 +22,10 @@ Highlights include:
|
|||
- The only OS supported for building is Ubuntu 20.04
|
||||
- A machine with at least 100 GB of Storage
|
||||
|
||||
The following prerequisities can be installed with the setup script `scripts/setup.sh` or manually as described below:
|
||||
The following prerequisites can be installed with the setup script `scripts/setup.sh` or manually as described below:
|
||||
|
||||
- Flutter 3.0.5 [(install manually or with git, do not install with snap)](https://docs.flutter.dev/get-started/install)
|
||||
- Dart SDK Requirement (>=2.17.0, up until <3.0.0)
|
||||
- Flutter 3.7.6 [(install manually or with git, do not install with snap)](https://docs.flutter.dev/get-started/install)
|
||||
- Dart SDK Requirement (>=2.19.0, up until <3.0.0) (normally included with a flutter install)
|
||||
- Android setup ([Android Studio](https://developer.android.com/studio) and subsequent dependencies)
|
||||
|
||||
### Scripted setup
|
||||
|
|
|
@ -42,14 +42,21 @@
|
|||
android:label="Stack Wallet"
|
||||
android:priority="1">
|
||||
<action android:name="android.intent.action.VIEW"/>
|
||||
<category android:name="android.intent.category.DEFAULT"/>
|
||||
<category android:name="android.intent.category.BROWSABLE"/>
|
||||
<data android:scheme="content" />
|
||||
<category android:name="android.intent.category.DEFAULT"/>
|
||||
<data android:scheme="http" />
|
||||
<data android:scheme="file" />
|
||||
<data android:scheme="content" />
|
||||
<data android:host="*" />
|
||||
<data android:mimeType="*/*" />
|
||||
<data android:pathPattern=".*\\.swb" />
|
||||
</intent-filter>
|
||||
<intent-filter>
|
||||
<data android:scheme="file" />
|
||||
<data android:mimeType="*/*" />
|
||||
<data android:pathPattern=".*\\.swb" />
|
||||
<data android:host="*" />
|
||||
</intent-filter>
|
||||
|
||||
</activity>
|
||||
<!-- Don't delete the meta-data below.
|
||||
This is used by the Flutter tool to generate GeneratedPluginRegistrant.java -->
|
||||
|
|
BIN
assets/gif/coins/bitcoin/kiss.gif
Normal file
After Width: | Height: | Size: 2.3 MiB |
BIN
assets/gif/coins/bitcoin/plain.gif
Normal file
After Width: | Height: | Size: 3 MiB |
BIN
assets/gif/coins/bitcoincash/kiss.gif
Normal file
After Width: | Height: | Size: 1.8 MiB |
BIN
assets/gif/coins/bitcoincash/plain.gif
Normal file
After Width: | Height: | Size: 2.4 MiB |
BIN
assets/gif/coins/dogecoin/kiss.gif
Normal file
After Width: | Height: | Size: 2.3 MiB |
BIN
assets/gif/coins/dogecoin/plain.gif
Normal file
After Width: | Height: | Size: 3.3 MiB |
BIN
assets/gif/coins/epicCash/kiss.gif
Normal file
After Width: | Height: | Size: 2 MiB |
BIN
assets/gif/coins/epicCash/plain.gif
Normal file
After Width: | Height: | Size: 3.4 MiB |
BIN
assets/gif/coins/ethereum/kiss.gif
Normal file
After Width: | Height: | Size: 1.8 MiB |
BIN
assets/gif/coins/ethereum/plain.gif
Normal file
After Width: | Height: | Size: 2.5 MiB |
BIN
assets/gif/coins/firo/kiss.gif
Normal file
After Width: | Height: | Size: 2.2 MiB |
BIN
assets/gif/coins/firo/plain.gif
Normal file
After Width: | Height: | Size: 2.9 MiB |
BIN
assets/gif/coins/litecoin/kiss.gif
Normal file
After Width: | Height: | Size: 2.1 MiB |
BIN
assets/gif/coins/litecoin/plain.gif
Normal file
After Width: | Height: | Size: 2.1 MiB |
BIN
assets/gif/coins/monero/kiss.gif
Normal file
After Width: | Height: | Size: 1.9 MiB |
BIN
assets/gif/coins/monero/plain.gif
Normal file
After Width: | Height: | Size: 2.5 MiB |
BIN
assets/gif/coins/namecoin/kiss.gif
Normal file
After Width: | Height: | Size: 2 MiB |
BIN
assets/gif/coins/namecoin/plain.gif
Normal file
After Width: | Height: | Size: 4.2 MiB |
BIN
assets/gif/coins/particl/kiss.gif
Normal file
After Width: | Height: | Size: 1.9 MiB |
BIN
assets/gif/coins/particl/plain.gif
Normal file
After Width: | Height: | Size: 3.3 MiB |
BIN
assets/gif/coins/wownero/kiss.gif
Normal file
After Width: | Height: | Size: 2.2 MiB |
BIN
assets/gif/coins/wownero/plain.gif
Normal file
After Width: | Height: | Size: 3.2 MiB |
BIN
assets/gif/stacy-plain.gif
Normal file
After Width: | Height: | Size: 2.7 MiB |
Before Width: | Height: | Size: 388 KiB |
Before Width: | Height: | Size: 354 KiB |
Before Width: | Height: | Size: 861 KiB |
Before Width: | Height: | Size: 368 KiB |
Before Width: | Height: | Size: 316 KiB |
BIN
assets/images/glasses-hidden.png
Normal file
After Width: | Height: | Size: 1 KiB |
BIN
assets/images/glasses.png
Normal file
After Width: | Height: | Size: 1.9 KiB |
Before Width: | Height: | Size: 322 KiB |
Before Width: | Height: | Size: 284 KiB |
Before Width: | Height: | Size: 351 KiB |
Before Width: | Height: | Size: 677 KiB |
Before Width: | Height: | Size: 371 KiB |
65
assets/svg/buy/Simplex-Nuvei-Logo-light.svg
Normal file
After Width: | Height: | Size: 10 KiB |
65
assets/svg/buy/Simplex-Nuvei-Logo.svg
Normal file
After Width: | Height: | Size: 10 KiB |
12
assets/svg/chanstheme.svg
Normal file
After Width: | Height: | Size: 216 KiB |
3
assets/svg/circle-plus-filled.svg
Normal 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 d="M0 10C0 4.47656 4.47656 0 10 0C15.5234 0 20 4.47656 20 10C20 15.5234 15.5234 20 10 20C4.47656 20 0 15.5234 0 10ZM10 14.375C10.5195 14.375 10.9375 13.957 10.9375 13.4375V10.9375H13.4375C13.957 10.9375 14.375 10.5195 14.375 10C14.375 9.48047 13.957 9.0625 13.4375 9.0625H10.9375V6.5625C10.9375 6.04297 10.5195 5.625 10 5.625C9.48047 5.625 9.0625 6.04297 9.0625 6.5625V9.0625H6.5625C6.04297 9.0625 5.625 9.48047 5.625 10C5.625 10.5195 6.04297 10.9375 6.5625 10.9375H9.0625V13.4375C9.0625 13.957 9.48047 14.375 10 14.375Z" fill="#232323"/>
|
||||
</svg>
|
After Width: | Height: | Size: 648 B |
3
assets/svg/coin_control/frozen.svg
Normal 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 d="M17.8628 14.5871C17.6515 14.9523 17.2648 15.1564 16.8709 15.1564C16.6744 15.1564 16.4756 15.1061 16.2934 14.9998L15.395 14.4755L15.5876 15.2021C15.7091 15.6608 15.4352 16.132 14.976 16.2527C14.9021 16.2728 14.8281 16.2817 14.7553 16.2817C14.3746 16.2817 14.0262 16.0277 13.9242 15.6429L13.289 13.2467L11.1454 11.9946L11.1454 14.519L12.8777 16.2693C13.2121 16.6073 13.2087 17.1509 12.871 17.4846C12.703 17.6522 12.4846 17.7345 12.2661 17.7345C12.0444 17.7345 11.8225 17.6495 11.6545 17.4794L11.1454 16.9649V18.021C11.1454 18.6544 10.6319 19.1668 9.99845 19.1668C9.36502 19.1668 8.85155 18.6544 8.85155 18.021L8.85154 16.9647L8.34236 17.4792C8.00856 17.8172 7.46401 17.8194 7.12599 17.4859C6.78825 17.1525 6.78492 16.6087 7.11927 16.2706L8.85163 14.5204L8.82147 11.9946L6.67768 13.2454L6.04246 15.6416C5.94048 16.0265 5.59201 16.2804 5.21138 16.2804C5.13851 16.2804 5.06457 16.2715 4.99066 16.2513C4.53161 16.1305 4.25768 15.6594 4.37907 15.2007L4.57168 14.4742L3.67327 14.9984C3.52235 15.1063 3.32362 15.1564 3.12703 15.1564C2.7328 15.1564 2.34858 14.9527 2.13553 14.5878C1.8157 14.0417 2 13.3403 2.54731 13.0212L3.47687 12.4787L2.74891 12.2815C2.29022 12.1593 2.01987 11.6867 2.14412 11.2284C2.26837 10.77 2.73888 10.5015 3.19936 10.6232L5.55942 11.2642L7.72576 10.0002L5.55942 8.73616L3.19936 9.37712C3.12378 9.39726 3.04808 9.40733 2.9736 9.40733C2.59512 9.40733 2.24779 9.15557 2.1443 8.77282C2.01987 8.31364 2.29022 7.84456 2.74891 7.71924L3.47687 7.52201L2.54731 6.97803C2.00018 6.65913 1.81577 5.95752 2.13553 5.41146C2.45368 4.86432 3.15604 4.67956 3.70425 4.99967L4.60265 5.52389L4.41001 4.79736C4.28862 4.33939 4.56398 3.86816 4.99009 3.74749C5.48423 3.62324 5.92108 3.89967 6.07505 4.35729L6.71027 6.75352L8.82147 8.0057L8.82146 5.48128L7.12062 3.72959C6.78761 3.39157 6.78761 2.84766 7.12778 2.51429C7.46437 2.17949 8.00864 2.18415 8.34523 2.52109L8.85441 3.03564L8.82147 1.97933C8.82147 1.3459 9.33494 0.833496 9.96838 0.833496C10.6018 0.833496 11.1153 1.3459 11.1153 1.97933L11.1153 3.03564L11.6245 2.52109C11.9577 2.18429 12.5021 2.17981 12.8408 2.51438C13.1786 2.84782 13.1819 3.39166 12.8476 3.72968L11.1152 5.47994L11.1454 8.0057L13.2891 6.75495L13.9244 4.35872C14.0459 3.90111 14.5173 3.62467 14.9764 3.74893C15.4354 3.86978 15.7094 4.34082 15.588 4.79951L15.3954 5.52604L16.2938 5.00182C16.8409 4.68292 17.5438 4.86755 17.8625 5.41361C18.1823 5.95967 17.998 6.66113 17.4507 6.98018L16.5211 7.52266L17.2491 7.71988C17.7078 7.8441 17.9785 8.31643 17.8539 8.77405C17.7502 9.15683 17.4031 9.40855 17.0246 9.40855C16.9501 9.40855 16.8745 9.39848 16.7988 9.37834L14.4074 8.73616L12.2733 10.0002L14.4382 11.2634L16.7997 10.6236C17.2612 10.5015 17.7303 10.77 17.8556 11.2284C17.98 11.686 17.7095 12.1583 17.2509 12.2825L16.5229 12.4797L17.4525 13.0222C17.9989 13.341 18.1815 14.0428 17.8628 14.5871Z" fill="#96B0D6"/>
|
||||
</svg>
|
After Width: | Height: | Size: 2.9 KiB |
3
assets/svg/coin_control/gamepad.svg
Normal 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 d="M20.0002 14.3397C20.0002 14.1755 19.9859 14.0085 19.9562 13.8404L18.9131 7.22787C18.4814 4.76975 16.3127 3.3335 9.97206 3.3335C3.71894 3.3335 1.52237 4.75412 1.08706 7.22725L0.0439375 13.8397C0.0142906 14.008 0 14.1747 0 14.3391C0 15.9607 1.39313 17.3332 3.17188 17.3332C4.72469 17.3332 6.1025 16.3938 6.59375 15.0007L6.82812 14.3332H13.1719L13.4062 15.0007C13.8975 16.3938 15.2753 17.3332 16.8281 17.3332C18.6064 17.3054 20.0002 15.9616 20.0002 14.3397ZM7.72206 10.0835L6.72331 10.0832L6.72206 11.0835C6.72206 11.496 6.38519 11.8335 5.97269 11.8335C5.56019 11.8335 5.22206 11.496 5.22206 11.0835L5.22321 10.0832L4.22206 10.0835C3.80956 10.0835 3.47269 9.746 3.47269 9.3335C3.47269 8.921 3.80925 8.5835 4.22206 8.5835L5.22331 8.58315L5.22206 7.5835C5.22206 7.171 5.56019 6.8335 5.97269 6.8335C6.38519 6.8335 6.72206 7.171 6.72206 7.5835L6.72321 8.58318L7.72206 8.5835C8.13456 8.5835 8.47269 8.921 8.47269 9.3335C8.47206 9.746 8.16269 10.0835 7.72206 10.0835ZM13.5002 12.0554C12.8099 12.0554 12.2502 11.4954 12.2502 10.8054C12.2502 10.1154 12.8099 9.55537 13.5002 9.55537C14.1905 9.55537 14.7502 10.1154 14.7502 10.8054C14.7502 11.5241 14.1908 12.0554 13.5002 12.0554ZM15.5002 9.05537C14.8099 9.05537 14.2502 8.49537 14.2502 7.80537C14.2502 7.11537 14.8099 6.55537 15.5002 6.55537C16.1905 6.55537 16.7502 7.11537 16.7502 7.80537C16.7502 8.52412 16.1908 9.05537 15.5002 9.05537Z" fill="#8E9192"/>
|
||||
</svg>
|
After Width: | Height: | Size: 1.5 KiB |
3
assets/svg/coin_control/selected.svg
Normal file
|
@ -0,0 +1,3 @@
|
|||
<svg width="16" height="18" viewBox="0 0 16 18" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M15.7179 3.5972C16.0821 3.92551 16.0821 4.45639 15.7179 4.75327L6.28929 13.9739C5.98571 14.3301 5.44286 14.3301 5.10714 13.9739L0.251036 9.22385C-0.0836786 8.92698 -0.0836786 8.3961 0.251036 8.06779C0.585714 7.74297 1.12857 7.74297 1.46321 8.06779L5.71429 12.2275L14.5357 3.5972C14.8714 3.27099 15.4143 3.27099 15.7179 3.5972Z" fill="white"/>
|
||||
</svg>
|
After Width: | Height: | Size: 455 B |
3
assets/svg/coin_control/unfrozen.svg
Normal 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="M4.27148 8.01188C4.27148 9.27588 6.83529 10.3035 10.0007 10.3035C13.166 10.3035 15.7298 9.27588 15.7298 8.01188C15.7298 6.74788 13.166 5.72021 10.0007 5.72021C6.83529 5.72021 4.27148 6.74788 4.27148 8.01188ZM19.1673 8.29834C19.1673 5.45166 15.0638 3.14209 10.0007 3.14209C4.9375 3.14209 0.833984 5.45166 0.833984 8.29834C0.833984 11.145 4.9375 13.4546 10.0007 13.4546C15.0638 13.4546 19.1673 11.145 19.1673 8.29834ZM3.93454 9.73779C3.50163 9.32601 3.09342 8.74593 3.09342 8.01188C3.09342 7.27783 3.50163 6.69775 3.93454 6.28597C4.36458 5.88135 4.92676 5.56624 5.49251 5.32633C6.72786 4.84652 8.31055 4.57438 9.96842 4.57438C11.6908 4.57438 13.2734 4.84652 14.4766 5.32633C15.0745 5.56624 15.6367 5.88135 16.0664 6.28597C16.4997 6.69775 16.8757 7.27783 16.8757 8.01188C16.8757 8.74593 16.4997 9.32601 16.0664 9.73779C15.6367 10.1424 15.0745 10.4575 14.4766 10.6652C13.2734 11.1772 11.6908 11.4494 10.0007 11.4494C8.31055 11.4494 6.72786 11.1772 5.49251 10.6652C4.92676 10.4575 4.36458 10.1424 3.93454 9.73779ZM19.1673 11.2386C18.6947 11.8008 18.1038 12.2878 17.4486 12.6709V14.9805C18.5299 14.2285 19.1673 13.3047 19.1673 12.277V11.2386ZM16.3027 15.6071V13.3226C15.2858 13.7917 14.1221 14.1462 12.8652 14.361V16.6634C14.1615 16.4521 15.3324 16.0977 16.3027 15.6071ZM9.90337 14.5687C9.3533 14.5689 8.81281 14.5691 8.2819 14.515V16.8138C8.8022 16.8608 9.34137 16.8606 9.89058 16.8604C9.92723 16.8604 9.96392 16.8604 10.0007 16.8604C10.0374 16.8604 10.0741 16.8604 10.1107 16.8604C10.6599 16.8606 11.1991 16.8608 11.7194 16.8138V14.515C11.1885 14.5691 10.648 14.5689 10.0979 14.5687C10.0655 14.5687 10.0331 14.5687 10.0007 14.5687C9.96819 14.5687 9.93576 14.5687 9.90337 14.5687ZM7.13607 16.6634V14.361C5.87923 14.1462 4.71549 13.7917 3.69857 13.3226V15.6071C4.66895 16.0977 5.83984 16.4521 7.13607 16.6634ZM0.833984 12.277C0.833984 13.3047 1.471 14.2285 2.55273 14.9805V12.6709C1.89818 12.2878 1.307 11.8008 0.833984 11.2386V12.277Z" fill="#F7931A"/>
|
||||
</svg>
|
After Width: | Height: | Size: 2.1 KiB |
|
@ -1,4 +1 @@
|
|||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M23.6408 14.9029C22.0379 21.3315 15.5261 25.2438 9.09602 23.6407C2.66858 22.038 -1.24421 15.5266 0.359461 9.09838C1.96163 2.66907 8.47345 -1.24364 14.9016 0.359095C21.3313 1.96183 25.2437 8.47401 23.6408 14.9029Z" fill="#F7931A"/>
|
||||
<path d="M17.2896 10.2905C17.5285 8.69373 16.3126 7.83536 14.6501 7.26274L15.1894 5.09976L13.8726 4.77164L13.3476 6.87762C13.0014 6.79137 12.6459 6.71 12.2926 6.62937L12.8214 4.50952L11.5054 4.1814L10.9657 6.34363C10.6791 6.27838 10.3979 6.21388 10.1248 6.146L10.1263 6.13925L8.3104 5.68588L7.96011 7.09212C7.96011 7.09212 8.93709 7.31599 8.91646 7.32986C9.44977 7.46299 9.54615 7.81586 9.53003 8.09561L8.91571 10.5597C8.95246 10.5691 9.0001 10.5826 9.0526 10.6036C9.00872 10.5927 8.96184 10.5807 8.91346 10.5691L8.05237 14.0209C7.98711 14.1829 7.82172 14.4259 7.44893 14.3337C7.46206 14.3528 6.49183 14.0948 6.49183 14.0948L5.83813 15.6019L7.55169 16.029C7.87048 16.1089 8.18288 16.1925 8.49041 16.2713L7.94548 18.459L9.26075 18.7871L9.80043 16.6226C10.1597 16.7201 10.5085 16.8101 10.8498 16.8949L10.312 19.0492L11.6287 19.3774L12.1737 17.1938C14.419 17.6186 16.1075 17.4473 16.8182 15.4167C17.3909 13.7817 16.7897 12.8386 15.6083 12.2236C16.4686 12.0252 17.1167 11.4593 17.2896 10.2905V10.2905ZM14.281 14.5088C13.8741 16.1438 11.1209 15.2599 10.2284 15.0383L10.9514 12.1399C11.844 12.3627 14.7063 12.8037 14.281 14.5088V14.5088ZM14.6883 10.2668C14.317 11.7541 12.0255 10.9985 11.2822 10.8132L11.9378 8.18448C12.6811 8.36973 15.075 8.71548 14.6883 10.2668V10.2668Z" fill="white"/>
|
||||
</svg>
|
||||
<svg fill="none" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="m23.6408 14.9029c-1.6029 6.4286-8.1147 10.3409-14.54478 8.7378-6.42744-1.6027-10.34023-8.1141-8.736559-14.54232 1.602169-6.42931 8.113989-10.34202 14.542139-8.739285 6.4297 1.602735 10.3421 8.114915 8.7392 14.543805z" fill="#f7931a"/><path d="m17.2896 10.2905c.2389-1.59677-.977-2.45514-2.6395-3.02776l.5393-2.16298-1.3168-.32812-.525 2.10598c-.3462-.08625-.7017-.16762-1.055-.24825l.5288-2.11985-1.316-.32812-.5397 2.16223c-.2866-.06525-.5678-.12975-.8409-.19763l.0015-.00675-1.8159-.45337-.35029 1.40624s.97698.22387.95635.23774c.53331.13313.62969.486.61357.76575l-.61432 2.46409c.03675.0094.08439.0229.13689.0439-.04388-.0109-.09076-.0229-.13914-.0345l-.86109 3.4518c-.06526.162-.23065.405-.60344.3128.01313.0191-.9571-.2389-.9571-.2389l-.6537 1.5071 1.71356.4271c.31879.0799.63119.1635.93872.2423l-.54493 2.1877 1.31527.3281.53968-2.1645c.35927.0975.70807.1875 1.04937.2723l-.5378 2.1543 1.3167.3282.545-2.1836c2.2453.4248 3.9338.2535 4.6445-1.7771.5727-1.635-.0285-2.5781-1.2099-3.1931.8603-.1984 1.5084-.7643 1.6813-1.9331zm-3.0086 4.2183c-.4069 1.635-3.1601.7511-4.0526.5295l.723-2.8984c.8926.2228 3.7549.6638 3.3296 2.3689zm.4073-4.242c-.3713 1.4873-2.6628.7317-3.4061.5464l.6556-2.62872c.7433.18525 3.1372.531 2.7505 2.08232z" fill="#fff"/></svg>
|
Before Width: | Height: | Size: 1.6 KiB After Width: | Height: | Size: 1.3 KiB |
|
@ -1 +1 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 511.76 511.76"><title>bitcoin-cash-bch</title><circle style="fill:#0ac18e;" cx="255.88" cy="255.88" r="255.88"/><path id="symbol" style="fill:#fff;" d="M335.94,170.3c-12.86-29.16-42.41-35.4-78.59-29.36L245.73,95.87,218.32,103l11.43,44.94c-7.21,1.82-14.61,3.38-21.95,5.46l-11.43-44.68L169,115.75l11.63,45.07c-5.91,1.69-55.33,14.35-55.33,14.35l7.53,29.35s20.13-5.65,19.94-5.19c11.17-2.92,16.43,2.66,18.9,7.92l32,123.53c.39,3.57-.26,9.67-7.92,11.75.45.26-19.94,5.13-19.94,5.13l3,34.23s49-12.54,55.4-14.16l11.76,45.59,27.4-7.08-11.75-45.91q11.3-2.64,22-5.46l11.69,45.66,27.4-7.08-11.75-45.53c42.21-10.26,72-36.89,65.92-77.61-3.9-24.55-30.72-44.68-53-46.95,13.7-12.15,20.65-29.88,12.15-53.06ZM322.75,277.78c5.46,40.33-50.59,45.27-69.1,50.14l-16.11-60.33C256.12,262.71,313.53,242.26,322.75,277.78ZM289,195.63c5.78,35.85-42.15,40-57.61,44L216.7,184.85C232.22,181,277.23,162.44,289,195.63Z" transform="translate(-0.24 -0.34)"/></svg>
|
||||
<svg viewBox="0 0 511.76 511.76" xmlns="http://www.w3.org/2000/svg"><circle cx="255.88" cy="255.88" fill="#0ac18e" r="255.88"/><path d="m335.94 170.3c-12.86-29.16-42.41-35.4-78.59-29.36l-11.62-45.07-27.41 7.13 11.43 44.94c-7.21 1.82-14.61 3.38-21.95 5.46l-11.43-44.68-27.37 7.03 11.63 45.07c-5.91 1.69-55.33 14.35-55.33 14.35l7.53 29.35s20.13-5.65 19.94-5.19c11.17-2.92 16.43 2.66 18.9 7.92l32 123.53c.39 3.57-.26 9.67-7.92 11.75.45.26-19.94 5.13-19.94 5.13l3 34.23s49-12.54 55.4-14.16l11.76 45.59 27.4-7.08-11.75-45.91q11.3-2.64 22-5.46l11.69 45.66 27.4-7.08-11.75-45.53c42.21-10.26 72-36.89 65.92-77.61-3.9-24.55-30.72-44.68-53-46.95 13.7-12.15 20.65-29.88 12.15-53.06zm-13.19 107.48c5.46 40.33-50.59 45.27-69.1 50.14l-16.11-60.33c18.58-4.88 75.99-25.33 85.21 10.19zm-33.75-82.15c5.78 35.85-42.15 40-57.61 44l-14.69-54.78c15.52-3.85 60.53-22.41 72.3 10.78z" fill="#fff" transform="translate(-.24 -.34)"/></svg>
|
Before Width: | Height: | Size: 978 B After Width: | Height: | Size: 912 B |
Before Width: | Height: | Size: 56 KiB After Width: | Height: | Size: 53 KiB |
|
@ -1,27 +1 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 24 24" style="enable-background:new 0 0 24 24;" xml:space="preserve">
|
||||
<g>
|
||||
<circle style="fill:#2D3132;" cx="12" cy="12" r="12"/>
|
||||
|
||||
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="8.9651" y1="496.8" x2="19.3776" y2="496.8" gradientTransform="matrix(1 0 0 1 0 -486)">
|
||||
<stop offset="0" style="stop-color:#F3F5F4"/>
|
||||
<stop offset="1" style="stop-color:#F3F5F4"/>
|
||||
</linearGradient>
|
||||
<path style="fill:url(#SVGID_1_);" d="M17.2,7.8l-1.9-1.1l1-0.6c0.1,0,0.2,0,0.2,0L18,6.9c0.1,0.1,0.1,0.3,0,0.4L17.2,7.8L17.2,7.8
|
||||
z M9,10.4v1.7c0,0.2,0.2,0.3,0.3,0.2L16.8,8l-1.9-1.1L9,10.4C9,10.2,9,10.3,9,10.4 M10.4,14.6l1.5,0.9c0.1,0,0.2,0,0.2,0l5.8-3.3
|
||||
V9.9l-7.5,4.4C10.3,14.3,10.3,14.5,10.4,14.6 M19.3,11.4c0.1,0,0.1-0.1,0.1-0.2V9.4c0-0.2-0.2-0.3-0.3-0.2l-0.8,0.4V12L19.3,11.4
|
||||
L19.3,11.4z"/>
|
||||
|
||||
<linearGradient id="SVGID_00000039847085109737404950000001115678377765940353_" gradientUnits="userSpaceOnUse" x1="6.2" y1="503.9" x2="16.7387" y2="493.3613" gradientTransform="matrix(1 0 0 1 0 -486)">
|
||||
<stop offset="0" style="stop-color:#D6A151"/>
|
||||
<stop offset="0.13" style="stop-color:#D39D4C"/>
|
||||
<stop offset="0.26" style="stop-color:#CD9240"/>
|
||||
<stop offset="0.31" style="stop-color:#CA8B39"/>
|
||||
<stop offset="0.72" style="stop-color:#F5D16F"/>
|
||||
<stop offset="1" style="stop-color:#D8AA4D"/>
|
||||
</linearGradient>
|
||||
<path style="fill:url(#SVGID_00000039847085109737404950000001115678377765940353_);" d="M12,20.6L12,20.6l2.1-1.2l0,0l5.3-3v-2.5
|
||||
l-1.1,0.6L18,14.7L14,17l-2,1.1l-5.3-3V9l6-3.4L13,5.4l1.1-0.6L12,3.5L4.6,7.8v8.5L12,20.6z"/>
|
||||
</g>
|
||||
</svg>
|
||||
<svg enable-background="new 0 0 24 24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="8.9651" x2="19.3776" y1="10.8" y2="10.8"><stop offset="0" stop-color="#f3f5f4"/><stop offset="1" stop-color="#f3f5f4"/></linearGradient><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="6.2" x2="16.7387" y1="17.9" y2="7.3613"><stop offset="0" stop-color="#d6a151"/><stop offset=".13" stop-color="#d39d4c"/><stop offset=".26" stop-color="#cd9240"/><stop offset=".31" stop-color="#ca8b39"/><stop offset=".72" stop-color="#f5d16f"/><stop offset="1" stop-color="#d8aa4d"/></linearGradient><circle cx="12" cy="12" fill="#2d3132" r="12"/><path d="m17.2 7.8-1.9-1.1 1-.6h.2l1.5.8c.1.1.1.3 0 .4zm-8.2 2.6v1.7c0 .2.2.3.3.2l7.5-4.3-1.9-1.1-5.9 3.5c0-.2 0-.1 0 0m1.4 4.2 1.5.9h.2l5.8-3.3v-2.3l-7.5 4.4c-.1 0-.1.2 0 .3m8.9-3.2c.1 0 .1-.1.1-.2v-1.8c0-.2-.2-.3-.3-.2l-.8.4v2.4z" fill="url(#a)"/><path d="m12 20.6 2.1-1.2 5.3-3v-2.5l-1.1.6-.3.2-4 2.3-2 1.1-5.3-3v-6.1l6-3.4.3-.2 1.1-.6-2.1-1.3-7.4 4.3v8.5z" fill="url(#b)"/></svg>
|
Before Width: | Height: | Size: 1.7 KiB After Width: | Height: | Size: 1.1 KiB |
|
@ -1,5 +1 @@
|
|||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="12" cy="12" r="12" fill="white"/>
|
||||
<path d="M7.04425 17.2562C7.3217 17.2562 7.58374 17.1021 7.70706 16.8555L9.47197 13.5029H6.74368C6.32749 13.5029 5.99609 13.1638 5.99609 12.7553V11.2524C5.99609 10.8362 6.3352 10.5048 6.74368 10.5048H11.0596L14.4122 4.15414C14.5432 3.90751 14.7976 3.75337 15.075 3.75337H20.7243C18.5355 1.44123 15.4449 0 12.0076 0C5.37952 0 0 5.37186 0 12.0077C0 13.8882 0.431596 15.6763 1.21001 17.264H7.04425V17.2562Z" fill="#9B1C2E"/>
|
||||
<path d="M16.9559 6.74379C16.6784 6.74379 16.4164 6.89793 16.2931 7.14456L14.5282 10.4972H17.2565C17.6727 10.4972 18.0041 10.8363 18.0041 11.2448V12.7476C18.0041 13.1638 17.665 13.4952 17.2565 13.4952H12.9405L9.58796 19.8459C9.45694 20.0925 9.2026 20.2467 8.92515 20.2467H3.27588C5.46468 22.5588 8.55521 24 11.9926 24C18.6206 24 24.0002 18.6282 24.0002 11.9923C24.0002 10.1118 23.5686 8.32375 22.7901 6.73608H16.9559V6.74379Z" fill="#9B1C2E"/>
|
||||
</svg>
|
||||
<svg fill="none" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><circle cx="12" cy="12" fill="#fff" r="12"/><g fill="#9b1c2e"><path d="m7.04425 17.2562c.27745 0 .53949-.1541.66281-.4007l1.76491-3.3526h-2.72829c-.41619 0-.74759-.3391-.74759-.7476v-1.5029c0-.4162.33911-.7476.74759-.7476h4.31592l3.3526-6.35066c.131-.24663.3854-.40077.6628-.40077h5.6493c-2.1888-2.31214-5.2794-3.75337-8.7167-3.75337-6.62808 0-12.0076 5.37186-12.0076 12.0077 0 1.8805.431596 3.6686 1.21001 5.2563h5.83424z"/><path d="m16.9559 6.74379c-.2775 0-.5395.15414-.6628.40077l-1.7649 3.35264h2.7283c.4162 0 .7476.3391.7476.7476v1.5028c0 .4162-.3391.7476-.7476.7476h-4.316l-3.35254 6.3507c-.13102.2466-.38536.4008-.66281.4008h-5.64927c2.1888 2.3121 5.27933 3.7533 8.71672 3.7533 6.628 0 12.0076-5.3718 12.0076-12.0077 0-1.8805-.4316-3.66855-1.2101-5.25622h-5.8342z"/></g></svg>
|
Before Width: | Height: | Size: 1,015 B After Width: | Height: | Size: 879 B |
|
@ -1,11 +1 @@
|
|||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_6052_99642)">
|
||||
<rect width="24" height="24" rx="12" fill="white"/>
|
||||
<path d="M11.9976 0C9.62389 0 7.30353 0.703873 5.3299 2.02261C3.35627 3.34135 1.81802 5.21572 0.909655 7.4087C0.00129377 9.60167 -0.236375 12.0148 0.226704 14.3428C0.689782 16.6709 1.83281 18.8093 3.51124 20.4878C5.18968 22.1662 7.32813 23.3092 9.65618 23.7723C11.9842 24.2354 14.3973 23.9977 16.5903 23.0893C18.7833 22.181 20.6577 20.6427 21.9764 18.6691C23.2951 16.6955 23.999 14.3751 23.999 12.0015C23.999 10.4254 23.6886 8.86478 23.0854 7.4087C22.4823 5.95261 21.5983 4.62958 20.4839 3.51514C19.3694 2.40071 18.0464 1.51669 16.5903 0.913556C15.1342 0.310427 13.5736 0 11.9976 0V0ZM12.1921 12.3963L10.9437 16.6087H17.6209C17.674 16.6088 17.7263 16.6213 17.7738 16.6451C17.8212 16.669 17.8625 16.7035 17.8943 16.746C17.9261 16.7885 17.9476 16.8378 17.9571 16.8901C17.9666 16.9423 17.9638 16.9961 17.9489 17.0471L17.3683 19.0473C17.3406 19.1429 17.2826 19.2268 17.203 19.2865C17.1234 19.3462 17.0265 19.3784 16.927 19.3783H6.72841L8.45286 13.5546L6.54551 14.1352L6.96646 12.7737L8.87671 12.1931L11.2979 4.0121C11.3245 3.91623 11.3818 3.8317 11.4609 3.77142C11.5401 3.71114 11.6368 3.67842 11.7363 3.67824H14.32C14.3731 3.67805 14.4254 3.69017 14.4729 3.71364C14.5205 3.73712 14.5619 3.77131 14.594 3.81352C14.6261 3.85573 14.6479 3.90482 14.6578 3.95691C14.6677 4.009 14.6654 4.06267 14.651 4.11371L12.6188 11.0318L14.5262 10.4512L14.1168 11.836L12.1921 12.3963Z" fill="#315D9E"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_6052_99642">
|
||||
<rect width="24" height="24" rx="12" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
<svg viewBox="0 0 82.6 82.6" xmlns="http://www.w3.org/2000/svg"><circle cx="41.3" cy="41.3" fill="#fff" r="36.83"/><path d="m41.3 0a41.3 41.3 0 1 0 41.3 41.3 41.18 41.18 0 0 0 -41.06-41.3zm.7 42.7-4.3 14.5h23a1.16 1.16 0 0 1 1.2 1.12v.38l-2 6.9a1.49 1.49 0 0 1 -1.5 1.1h-35.2l5.9-20.1-6.6 2 1.5-4.6 6.6-2 8.3-28.2a1.51 1.51 0 0 1 1.5-1.1h8.9a1.16 1.16 0 0 1 1.2 1.12v.38l-7 23.8 6.6-2-1.4 4.8z" fill="#345d9d"/></svg>
|
Before Width: | Height: | Size: 1.7 KiB After Width: | Height: | Size: 417 B |
|
@ -1,5 +1 @@
|
|||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M12 24C18.6274 24 24 18.6274 24 12C24 5.37258 18.6274 0 12 0C5.37258 0 0 5.37258 0 12C0 18.6274 5.37258 24 12 24Z" fill="white"/>
|
||||
<path d="M11.9995 0C4.47265 0 -2.05964 7.3766 0.607901 15.9995H4.19818V5.77053L11.9995 13.6735L19.8008 5.77053V16H23.3923C25.9927 7.70373 19.8837 0.00169985 12.0007 0.00169985L11.9995 0Z" fill="#F06923"/>
|
||||
<path d="M6.93212 12V18.2898H2C4.05397 21.7109 7.76562 24 11.9998 24C16.2341 24 19.946 21.7106 22 18.2892H17.0662V12L11.9995 17.1456L6.93212 12Z" fill="#4D4E4E"/>
|
||||
</svg>
|
||||
<svg fill="none" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="m12 24c6.6274 0 12-5.3726 12-12 0-6.62742-5.3726-12-12-12-6.62742 0-12 5.37258-12 12 0 6.6274 5.37258 12 12 12z" fill="#fff"/><path d="m11.9995 0c-7.52685 0-14.05914 7.3766-11.391599 15.9995h3.590279v-10.22897l7.80132 7.90297 7.8013-7.90297v10.22947h3.5915c2.6004-8.29627-3.5086-15.99830015-11.3916-15.99830015z" fill="#f06923"/><path d="m6.93212 12v6.2898h-4.93212c2.05397 3.4211 5.76562 5.7102 9.9998 5.7102 4.2343 0 7.9462-2.2894 10.0002-5.7108h-4.9338v-6.2892l-5.0667 5.1456z" fill="#4d4e4e"/></svg>
|
Before Width: | Height: | Size: 610 B After Width: | Height: | Size: 607 B |
|
@ -1 +1 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32"><g fill="none" fill-rule="evenodd"><circle cx="16" cy="16" r="16" fill="#186C9D"/><path fill="#FFF" fill-rule="nonzero" d="M19.261 23.5l.001-.002a1.8 1.8 0 0 0 .458-.05c.876-.205 1.617-.97 1.793-1.796L25 8.556l-2.772-.014-2.286 8.568-6.18-8.597-.004.004.003-.01L12.74 8.5v.001a1.9 1.9 0 0 0-.459.049c-.875.206-1.616.971-1.793 1.796L7 23.445l2.773.012 2.285-8.568 6.18 8.598h.003l1.02.013zm-6.593-10.894l.483-1.81 6.181 8.599-.483 1.81-6.18-8.6z"/></g></svg>
|
||||
<svg height="32" width="32" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><circle cx="16" cy="16" fill="#186c9d" r="16"/><path d="m19.261 23.5.001-.002a1.8 1.8 0 0 0 .458-.05c.876-.205 1.617-.97 1.793-1.796l3.487-13.096-2.772-.014-2.286 8.568-6.18-8.597-.004.004.003-.01-1.021-.007v.001a1.9 1.9 0 0 0 -.459.049c-.875.206-1.616.971-1.793 1.796l-3.488 13.099 2.773.012 2.285-8.568 6.18 8.598h.003zm-6.593-10.894.483-1.81 6.181 8.599-.483 1.81-6.18-8.6z" fill="#fff" fill-rule="nonzero"/></g></svg>
|
Before Width: | Height: | Size: 520 B After Width: | Height: | Size: 519 B |
1
assets/svg/coin_icons/Particl.svg
Normal file
|
@ -0,0 +1 @@
|
|||
<svg viewBox="0 0 228.62 228.33" xmlns="http://www.w3.org/2000/svg"><path d="m227.64 47.53a57.36 57.36 0 0 0 -20.55-34.84 56.67 56.67 0 0 0 -35.78-12.69q-57.55 0-115.15 0c-20 .23-39 11.82-48.7 29.24-5.46 9.38-7.46 19.89-7.46 30.61q0 52.43 0 104.88c-.07 8.13.29 15.94 2.83 23.74a58 58 0 0 0 39.17 37.79c-5.51-4.39-7.95-10.5-9.74-17.11-3.71-14.5-4-29.56-3.4-44.42-.06-35 0-69.93 0-104.88.05-6 .5-11.67 3.58-17a27.31 27.31 0 0 1 23.79-14q54.71 0 109.45 0c5.51 0 10.52-.4 15.78 1.59a27.2 27.2 0 0 1 17.54 19.7c1.08 5.29.79 11.16.81 16.55v102.6c0 5-.56 10-2.73 14.57-4.47 9.35-14.14 15.84-24.61 15.65-28.87 0-57.77 0-86.63 0-.06-9.41 0-18.82 0-28.24q35.36 0 70.69 0c5.07.28 10.91-2.29 13.24-7a15.68 15.68 0 0 0 1.6-7.58q0-42.78 0-85.53a13.21 13.21 0 0 0 -7-12.5c-3.9-2.26-8.07-1.68-12.42-1.76-27 .07-54 0-80.94.05a13.87 13.87 0 0 0 -13.93 14.29c-.11 41 0 82.15 0 123.14.21 8.14-.05 15.85 4.67 22.9 3.58 5.82 9.63 8.78 16.14 10.07 7.7 1.24 15.06.94 22.79 1q35.36 0 70.68 0a57.17 57.17 0 0 0 32.71-10.35c10.32-7.61 18.32-18.09 22-30.45 2.54-8.36 2.5-16.48 2.54-25.11q0-49 0-98a114.68 114.68 0 0 0 -.97-16.91zm-85.28 95h-56.53v-56.76h56.53z" fill="#45d492"/></svg>
|
After Width: | Height: | Size: 1.1 KiB |
|
@ -1,7 +1 @@
|
|||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M12 23.8456C18.5421 23.8456 23.8456 18.5421 23.8456 12C23.8456 5.45778 18.5421 0.154297 12 0.154297C5.45778 0.154297 0.154297 5.45778 0.154297 12C0.154297 18.5421 5.45778 23.8456 12 23.8456Z" fill="white"/>
|
||||
<path d="M12 24C5.38264 24 0 18.6174 0 12C0 5.38264 5.38264 0 12 0C18.6174 0 24 5.38264 24 12C24 18.6174 18.6174 24 12 24ZM12 0.327974C5.55627 0.327974 0.327974 5.57556 0.327974 12C0.327974 18.4244 5.57556 23.672 12 23.672C18.4244 23.672 23.672 18.4244 23.672 12C23.672 5.57556 18.4437 0.327974 12 0.327974Z" fill="#D0509D"/>
|
||||
<path d="M11.9995 0.154297C6.75195 0.154297 2.29536 3.58838 0.751953 8.31507H6.73266V15.7427L11.961 10.0707H12.0381L17.2664 15.762V8.31507H23.2471C21.7037 3.58838 17.2471 0.154297 11.9995 0.154297Z" fill="#FFCD05"/>
|
||||
<path d="M6.56007 16.1672V8.48875H0.521484L0.598655 8.27653C2.19994 3.31833 6.79158 0 12.0006 0C17.2096 0 21.8012 3.31833 23.4025 8.27653L23.4797 8.48875H17.4411V16.1672L12.0006 10.283L6.56007 16.1672ZM11.9041 9.9164H12.1163L17.1131 15.3376V8.16077H23.036C21.3961 3.47267 16.9974 0.327974 12.0006 0.327974C7.0038 0.327974 2.60509 3.47267 0.965214 8.16077H6.88804V15.3376L11.9041 9.9164Z" fill="#D0509D"/>
|
||||
<path d="M18.2473 18.2508L16.5495 16.418L11.9965 11.4791L7.4434 16.418L5.74565 18.2508V15.762V9.5498H1.59774C1.40482 10.3601 1.28906 11.209 1.28906 12.0964C1.28906 18 6.07363 22.8038 11.9965 22.8038C17.9193 22.8038 22.7039 18.0193 22.7039 12.0964C22.7039 11.2283 22.5881 10.3794 22.3952 9.5498H18.228V15.762V18.2508H18.2473Z" fill="#D0519D"/>
|
||||
</svg>
|
||||
<svg fill="none" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="m12 23.8456c6.5421 0 11.8456-5.3035 11.8456-11.8456 0-6.54222-5.3035-11.845703-11.8456-11.845703-6.54222 0-11.845703 5.303483-11.845703 11.845703 0 6.5421 5.303483 11.8456 11.845703 11.8456z" fill="#fff"/><path d="m12 24c-6.61736 0-12-5.3826-12-12 0-6.61736 5.38264-12 12-12 6.6174 0 12 5.38264 12 12 0 6.6174-5.3826 12-12 12zm0-23.672026c-6.44373 0-11.672026 5.247586-11.672026 11.672026 0 6.4244 5.247586 11.672 11.672026 11.672 6.4244 0 11.672-5.2476 11.672-11.672 0-6.42444-5.2283-11.672026-11.672-11.672026z" fill="#d0509d"/><path d="m11.9995.154297c-5.24755 0-9.70414 3.434083-11.247547 8.160773h5.980707v7.42763l5.22834-5.672h.0771l5.2283 5.6913v-7.44693h5.9807c-1.5434-4.72669-6-8.160773-11.2476-8.160773z" fill="#ffcd05"/><path d="m6.56007 16.1672v-7.67845h-6.038586l.077171-.21222c1.601285-4.9582 6.192925-8.27653 11.401945-8.27653 5.209 0 9.8006 3.31833 11.4019 8.27653l.0772.21222h-6.0386v7.67845l-5.4405-5.8842zm5.34403-6.2508h.2122l4.9968 5.4212v-7.17683h5.9229c-1.6399-4.6881-6.0386-7.832796-11.0354-7.832796s-9.39551 3.144696-11.035386 7.832796h5.922826v7.17683z" fill="#d0509d"/><path d="m18.2473 18.2508-1.6978-1.8328-4.553-4.9389-4.5531 4.9389-1.69775 1.8328v-2.4888-6.2122h-4.14791c-.19292.8103-.30868 1.6592-.30868 2.5466 0 5.9036 4.78457 10.7074 10.70744 10.7074 5.9228 0 10.7074-4.7845 10.7074-10.7074 0-.8681-.1158-1.717-.3087-2.5466h-4.1672v6.2122 2.4888z" fill="#d0519d"/></svg>
|
Before Width: | Height: | Size: 1.6 KiB After Width: | Height: | Size: 1.5 KiB |
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 1.2 KiB |
8
assets/svg/darkChansTheme.svg
Normal file
After Width: | Height: | Size: 20 KiB |
1
assets/svg/exchange_icons/mb_blue.svg
Normal file
After Width: | Height: | Size: 8.5 KiB |
1
assets/svg/exchange_icons/mb_green.svg
Normal file
After Width: | Height: | Size: 8.5 KiB |
17
assets/svg/faceid.svg
Normal file
|
@ -0,0 +1,17 @@
|
|||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_1023_80475)">
|
||||
<path d="M9 2H6.9C5.60044 2 4.35411 2.48881 3.43518 3.3589C2.51625 4.22899 2 5.40909 2 6.63958V9" stroke="#232323" stroke-width="2.5" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||
<path d="M2 15V16.8086C2 18.1854 2.51625 19.5059 3.43518 20.4795C4.35411 21.4531 5.60044 22 6.9 22H9" stroke="#232323" stroke-width="2.5" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||
<path d="M15 16C14.6414 16.3118 14.1854 16.5637 13.6659 16.7369C13.1464 16.9101 12.5769 17 12 17C11.4231 17 10.8536 16.9101 10.3341 16.7369C9.81462 16.5637 9.35856 16.3118 9 16" stroke="#232323" stroke-width="2.5" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||
<path d="M7 8V9" stroke="#232323" stroke-width="2.5" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||
<path d="M15 2H17.1C18.3996 2 19.6459 2.48881 20.5648 3.3589C21.4838 4.22899 22 5.40909 22 6.63958V9" stroke="#232323" stroke-width="2.5" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||
<path d="M22 15V16.8086C22 18.1854 21.4838 19.5059 20.5648 20.4795C19.6459 21.4531 18.3996 22 17.1 22H15" stroke="#232323" stroke-width="2.5" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||
<path d="M17 8V9" stroke="#232323" stroke-width="2.5" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||
<path d="M12 12V9" stroke="#232323" stroke-width="2.5" stroke-linecap="round"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_1023_80475">
|
||||
<rect width="24" height="24" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
After Width: | Height: | Size: 1.5 KiB |
5
assets/svg/fingerprint.svg
Normal file
|
@ -0,0 +1,5 @@
|
|||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M7 3C7 3 11.2308 0.750557 17 2.99876" stroke="#232323" stroke-width="2.5" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||
<path d="M5 8C5 8 10.9231 3.50111 19 7.99752" stroke="#232323" stroke-width="2.5" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||
<path d="M14.8112 22C14.8112 22 13.1852 21.8081 11.3534 20.1185C10.4045 19.2225 9.80215 18.0577 9.64132 16.8076C9.57137 16.3404 9.61834 15.8644 9.77855 15.4169C10.5987 13.2245 13.3568 13.3774 14.0613 15.2399C14.0992 15.3403 14.1239 15.4447 14.1347 15.5508C14.1793 15.936 14.2648 16.3161 14.39 16.6856C14.39 16.6856 14.9915 18.173 16.6989 18.118C16.6989 18.118 17.8158 18.0867 18.3535 17.4516C20.1582 15.3485 17.6116 12.5433 17.6116 12.5433C14.4825 8.89181 9.91098 10.2453 9.91098 10.2453C9.91098 10.2453 6.85373 10.9355 5.54211 13.5547C4.23049 16.174 5.71124 19.586 5.71124 19.586" stroke="#232323" stroke-width="2.5" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||
</svg>
|
After Width: | Height: | Size: 1 KiB |
63
assets/svg/forest-theme.svg
Normal file
|
@ -0,0 +1,63 @@
|
|||
<svg width="200" height="162" viewBox="0 0 200 162" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<clipPath id="clip0_849_28937">
|
||||
<rect width="200" height="162" fill="white"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip1_849_28937">
|
||||
<rect width="200" height="368.997" fill="white" transform="translate(0 -201)"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip2_849_28937">
|
||||
<rect width="200" height="162" rx="8" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
<g clip-path="url(#clip0_849_28937)">
|
||||
<g clip-path="url(#clip1_849_28937)">
|
||||
<g opacity="0.8">
|
||||
<path d="M251.767 -0.724846C252.686 -3.25447 251.905 -9.96949 241.418 -16.5925C230.932 -23.2155 226.01 -30.3905 224.86 -33.1501C225.09 -35.9097 223.619 -41.7048 215.892 -42.8087C208.165 -43.9125 191.742 -55.8772 186.683 -59.7867L177.257 -64.8854C169.287 -70.884 174.641 -47.1565 143.452 -39.3592C118.616 -33.1501 117.236 1.34486 93.0897 -7.62383C73.7725 -14.7988 72.6962 -22.1117 58.5948 -22.1117C49.3019 -22.1117 42.5891 3.96647 33.7584 -7.62383C22.72 -22.1117 8.92203 -46.2582 0.64325 -42.8087C-5.5929 -40.2103 -8.24066 -35.777 -8.91269 -33.5401C-9.06287 -34.8255 -16.8224 -30.6898 -21.9509 -25.5612C-28.8499 -18.6622 -27.6426 -25.5612 -35.2315 -16.5925C-42.8204 -7.62383 -46.9598 -7.2698 -46.9598 -0.724846V148.662H251.767L251.767 -0.724846Z" fill="#D0FDEC"/>
|
||||
<path d="M-45.7635 32.5656C-46.6806 30.0437 -45.9011 23.3491 -35.4466 16.7463C-24.9921 10.1435 -20.0857 2.99038 -18.9394 0.239195C-19.1686 -2.51199 -17.7013 -8.28947 -9.99801 -9.38995C-2.2947 -10.4904 9.7188 -18.5606 14.7626 -22.4581L28.5186 -31.3994C42.9623 -26.5848 31.1265 -13.7245 62.2206 -5.95097C86.9812 0.239195 88.3568 34.629 112.43 25.6876C131.688 18.5346 132.761 11.2439 146.819 11.2439C156.084 11.2439 162.776 37.2426 171.58 25.6876C182.585 11.2439 196.341 -12.8289 204.594 -9.38995C210.811 -6.79948 213.451 -2.37967 214.121 -0.149632C214.271 -1.43107 222.007 2.69203 227.12 7.80495C233.998 14.6829 232.794 7.80495 240.36 16.7463C247.925 25.6876 252.052 26.0406 252.052 32.5656V181.497H-45.7635L-45.7635 32.5656Z" fill="#BFF3DF"/>
|
||||
<path d="M-42.0812 55.3395H-34.0259L-46.9632 67.3004H-39.6402L-51.8452 80.97H-46.9632L-55.0186 90.49H1.85689L-8.15124 80.97H-3.51332L-15.9625 67.3004H-8.15124L-20.1122 55.3395H-12.7891L-27.6793 41.1816L-42.0812 55.3395Z" fill="#DAFCE3"/>
|
||||
<path d="M-10.9675 48.3784H-1.32186L-16.8133 62.7078H-8.04458L-22.6592 79.0843H-16.8133L-26.459 90.4893H41.6451L29.6611 79.0843H35.2147L20.3078 62.7078H29.6611L15.3388 48.3784H24.1076L6.27773 31.417L-10.9675 48.3784Z" fill="#DAFCE3"/>
|
||||
<path d="M63.7268 48.3784H73.3725L57.881 62.7078H66.6498L52.0351 79.0843H57.881L48.2354 90.4893H116.339L104.355 79.0843H109.909L95.0021 62.7078H104.355L90.0331 48.3784H98.8019L80.9721 31.417L63.7268 48.3784Z" fill="#DAFCE3"/>
|
||||
<path d="M101.617 54.8173H109.776L96.6717 66.9559H104.089L91.7269 80.8285H96.6717L88.5127 90.4898H146.12L135.983 80.8285H140.681L128.072 66.9559H135.983L123.869 54.8173H131.286L116.204 40.4492L101.617 54.8173Z" fill="#DAFCE3"/>
|
||||
<path d="M181.438 54.8173H189.597L176.493 66.9559H183.91L171.548 80.8285H176.493L168.334 90.4898H225.942L215.805 80.8285H220.502L207.893 66.9559H215.805L203.69 54.8173H211.107L196.025 40.4492L181.438 54.8173Z" fill="#DAFCE3"/>
|
||||
<path d="M207.78 47.5091H217.598L201.829 62.1346H210.755L195.879 78.8494H201.829L192.011 90.4901H261.335L249.137 78.8494H254.79L239.616 62.1346H249.137L234.558 47.5091H243.483L225.334 30.1973L207.78 47.5091Z" fill="#DAFCE3"/>
|
||||
<path d="M136.035 54.8173H144.194L131.09 66.9559H138.507L126.145 80.8285H131.09L122.931 90.4898H180.538L170.401 80.8285H175.099L162.49 66.9559H170.401L158.286 54.8173H165.704L150.622 40.4492L136.035 54.8173Z" fill="#DAFCE3"/>
|
||||
<path d="M27.3409 62.9968H33.633L23.5275 72.3524H29.2476L19.7141 83.0445H23.5275L17.2354 90.4907H61.6617L53.8442 83.0445H57.4669L47.7427 72.3524H53.8442L44.5013 62.9968H50.2214L38.5905 51.9229L27.3409 62.9968Z" fill="#DAFCE3"/>
|
||||
<path d="M162.816 62.9968H169.109L159.003 72.3524H164.723L155.19 83.0445H159.003L152.711 90.4907H197.137L189.32 83.0445H192.942L183.218 72.3524H189.32L179.977 62.9968H185.697L174.066 51.9229L162.816 62.9968Z" fill="#DAFCE3"/>
|
||||
<path d="M-6.19939 68.4957H1.85593L-11.0814 80.4567H-3.75838L-15.9634 94.1263H-11.0814L-19.1367 103.646H37.7387L27.7306 94.1263H32.3685L19.9194 80.4567H27.7306L15.7697 68.4957H23.0927L8.20255 54.3379L-6.19939 68.4957Z" fill="#DAFCE3"/>
|
||||
<path d="M24.9143 61.5356H34.56L19.0685 75.865H27.8373L13.2226 92.2415H19.0685L9.42285 103.647H77.5269L65.5429 92.2415H71.0965L56.1896 75.865H65.5429L51.2206 61.5356H59.9894L42.1596 44.5742L24.9143 61.5356Z" fill="#DAFCE3"/>
|
||||
<path d="M99.6087 61.5356H109.254L93.7628 75.865H102.532L87.917 92.2415H93.7628L84.1172 103.647H152.221L140.237 92.2415H145.791L130.884 75.865H140.237L125.915 61.5356H134.684L116.854 44.5742L99.6087 61.5356Z" fill="#DAFCE3"/>
|
||||
<path d="M137.498 67.9736H145.657L132.554 80.1121H139.971L127.609 93.9848H132.554L124.395 103.646H182.002L171.865 93.9848H176.563L163.953 80.1121H171.865L159.75 67.9736H167.168L152.086 53.6055L137.498 67.9736Z" fill="#DAFCE3"/>
|
||||
<path d="M171.916 67.9736H180.075L166.972 80.1121H174.389L162.027 93.9848H166.972L158.812 103.646H216.42L206.283 93.9848H210.981L198.371 80.1121H206.283L194.168 67.9736H201.586L186.504 53.6055L171.916 67.9736Z" fill="#DAFCE3"/>
|
||||
<path d="M63.2227 76.1531H69.5149L59.4093 85.5086H65.1295L55.5959 96.2007H59.4093L53.1172 103.647H97.5435L89.726 96.2007H93.3487L83.6245 85.5086H89.726L80.3831 76.1531H86.1032L74.4723 65.0791L63.2227 76.1531Z" fill="#DAFCE3"/>
|
||||
<path d="M198.698 76.1531H204.99L194.885 85.5086H200.605L191.071 96.2007H194.885L188.593 103.647H233.019L225.202 96.2007H228.824L219.1 85.5086H225.202L215.859 76.1531H221.579L209.948 65.0791L198.698 76.1531Z" fill="#DAFCE3"/>
|
||||
<rect x="-16.1465" y="103.991" width="239.209" height="89.1054" fill="#EDFFF2"/>
|
||||
<path d="M-6.36398 76.8678H-0.27299L-10.0555 88.8287H-4.51823L-13.747 102.498H-10.0555L-16.1465 112.018H26.8596L19.292 102.498H22.799L13.3856 88.8287H19.292L10.2478 76.8678H15.7851L4.52597 62.71L-6.36398 76.8678Z" fill="#EDFFF2"/>
|
||||
<path d="M17.1621 69.9067H24.4556L12.7417 84.2361H19.3722L8.32144 100.613H12.7417L5.44824 112.018H56.9448L47.8832 100.613H52.0825L40.8107 84.2361H47.8832L37.0534 69.9067H43.6839L30.202 52.9453L17.1621 69.9067Z" fill="#EDFFF2"/>
|
||||
<path d="M71.8486 69.9067H79.1421L67.4283 84.2361H74.0587L63.008 100.613H67.4283L60.1348 112.018H111.631L102.57 100.613H106.769L95.4972 84.2361H102.57L91.74 69.9067H98.3704L84.8885 52.9453L71.8486 69.9067Z" fill="#EDFFF2"/>
|
||||
<path d="M102.292 76.3456H108.462L98.5532 88.4842H104.162L94.8142 102.357H98.5532L92.3838 112.018H135.944L128.279 102.357H131.831L122.296 88.4842H128.279L119.118 76.3456H124.726L113.322 61.9775L102.292 76.3456Z" fill="#EDFFF2"/>
|
||||
<path d="M162.649 76.3456H168.818L158.91 88.4842H164.518L155.171 102.357H158.91L152.74 112.018H196.3L188.635 102.357H192.187L182.653 88.4842H188.635L179.474 76.3456H185.083L173.679 61.9775L162.649 76.3456Z" fill="#EDFFF2"/>
|
||||
<path d="M182.566 69.0374H189.991L178.067 83.6629H184.816L173.567 100.378H178.067L170.643 112.018H223.062L213.838 100.378H218.113L206.639 83.6629H213.838L202.814 69.0374H209.563L195.84 51.7256L182.566 69.0374Z" fill="#EDFFF2"/>
|
||||
<path d="M128.317 76.3456H134.486L124.578 88.4842H130.186L120.839 102.357H124.578L118.408 112.018H161.968L154.303 102.357H157.855L148.321 88.4842H154.303L145.142 76.3456H150.751L139.347 61.9775L128.317 76.3456Z" fill="#EDFFF2"/>
|
||||
<path d="M46.1295 84.5241H50.8873L43.2461 93.8797H47.5713L40.3626 104.572H43.2461L38.4883 112.018H72.081L66.1699 104.572H68.9092L61.5563 93.8797H66.1699L59.1053 84.5241H63.4305L54.6359 73.4502L46.1295 84.5241Z" fill="#EDFFF2"/>
|
||||
<path d="M142.588 84.5241H147.345L139.704 93.8797H144.029L136.821 104.572H139.704L134.946 112.018H168.539L162.628 104.572H165.367L158.014 93.8797H162.628L155.563 84.5241H159.889L151.094 73.4502L142.588 84.5241Z" fill="#EDFFF2"/>
|
||||
</g>
|
||||
</g>
|
||||
<g clip-path="url(#clip2_849_28937)">
|
||||
<rect x="10" y="10" width="180" height="20" rx="2" fill="#22867A"/>
|
||||
<rect x="16" y="16" width="106" height="8" rx="1" fill="white"/>
|
||||
<rect x="10" y="40" width="180" height="20" rx="2" fill="#BDDBCB"/>
|
||||
<rect x="16" y="46" width="106" height="8" rx="1" fill="white"/>
|
||||
<rect x="10" y="62" width="180" height="20" rx="2" fill="#BDDBCB"/>
|
||||
<rect x="16" y="68" width="106" height="8" rx="1" fill="white"/>
|
||||
<rect x="10" y="84" width="180" height="20" rx="2" fill="#BDDBCB"/>
|
||||
<rect x="16" y="90" width="106" height="8" rx="1" fill="white"/>
|
||||
<rect x="10" y="106" width="180" height="20" rx="2" fill="#BDDBCB"/>
|
||||
<rect x="16" y="112" width="106" height="8" rx="1" fill="white"/>
|
||||
<rect x="10" y="128" width="180" height="20" rx="2" fill="#BDDBCB"/>
|
||||
<rect x="16" y="134" width="106" height="8" rx="1" fill="white"/>
|
||||
<rect x="10" y="150" width="180" height="20" rx="2" fill="#BDDBCB"/>
|
||||
<rect x="16" y="156" width="106" height="8" rx="1" fill="white"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 8.6 KiB |
66
assets/svg/fruit-sorbet-theme.svg
Normal file
|
@ -0,0 +1,66 @@
|
|||
<svg width="200" height="162" viewBox="0 0 200 162" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<radialGradient id="paint0_radial_997_28963" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(158.5 258.5) rotate(48.43) scale(263.308)">
|
||||
<stop stop-color="#FE7160"/>
|
||||
<stop offset="1" stop-color="#FBAF4A" stop-opacity="0"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="paint1_radial_997_28963" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(149.5 200.5) rotate(90) scale(205.5)">
|
||||
<stop stop-color="#FED393"/>
|
||||
<stop offset="1" stop-color="#FED393" stop-opacity="0"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="paint2_radial_997_28963" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(195.5 241.5) rotate(90) scale(127.5)">
|
||||
<stop stop-color="#FED393"/>
|
||||
<stop offset="1" stop-color="#FED393" stop-opacity="0"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="paint3_radial_997_28963" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(-36.5 -11.5) rotate(48.43) scale(336.833)">
|
||||
<stop stop-color="#FE7160"/>
|
||||
<stop offset="1" stop-color="#FBAF4A" stop-opacity="0"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="paint4_radial_997_28963" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(360 -12) rotate(152.509) scale(340.105)">
|
||||
<stop stop-color="#F95369"/>
|
||||
<stop offset="1" stop-color="#F95369" stop-opacity="0"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="paint5_radial_997_28963" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(145 -74) rotate(-56.3099) scale(191.698 179.566)">
|
||||
<stop stop-color="#FED393"/>
|
||||
<stop offset="1" stop-color="#FED393" stop-opacity="0"/>
|
||||
</radialGradient>
|
||||
<clipPath id="clip0_997_28963">
|
||||
<rect width="200" height="162" rx="8" fill="white"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip1_997_28963">
|
||||
<rect width="360" height="640" fill="white"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip2_997_28963">
|
||||
<rect width="200" height="162" rx="8" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
<g clip-path="url(#clip0_997_28963)">
|
||||
<g clip-path="url(#clip1_997_28963)">
|
||||
<rect width="360" height="640" fill="#FFF9F2"/>
|
||||
<g opacity="0.25">
|
||||
<circle cx="158.5" cy="258.5" r="286.5" fill="url(#paint0_radial_997_28963)"/>
|
||||
<circle cx="149.5" cy="200.5" r="205.5" fill="url(#paint1_radial_997_28963)"/>
|
||||
<circle cx="195.5" cy="241.5" r="127.5" fill="url(#paint2_radial_997_28963)"/>
|
||||
<circle cx="-36.5" cy="-11.5" r="366.5" fill="url(#paint3_radial_997_28963)"/>
|
||||
<circle cx="360" cy="-12" r="486" fill="url(#paint4_radial_997_28963)"/>
|
||||
<circle cx="145" cy="-74" r="188" fill="url(#paint5_radial_997_28963)"/>
|
||||
</g>
|
||||
</g>
|
||||
<g clip-path="url(#clip2_997_28963)">
|
||||
<rect x="10" y="10" width="180" height="20" rx="2" fill="#F95369"/>
|
||||
<rect x="16" y="16" width="106" height="8" rx="1" fill="white"/>
|
||||
<rect x="10" y="40" width="180" height="20" rx="2" fill="#FDCBD2"/>
|
||||
<rect x="16" y="46" width="106" height="8" rx="1" fill="#DB5D6F"/>
|
||||
<rect x="10" y="62" width="180" height="20" rx="2" fill="#FDCBD2"/>
|
||||
<rect x="16" y="68" width="106" height="8" rx="1" fill="#DB5D6F"/>
|
||||
<rect x="10" y="84" width="180" height="20" rx="2" fill="#FDCBD2"/>
|
||||
<rect x="16" y="90" width="106" height="8" rx="1" fill="#DB5D6F"/>
|
||||
<rect x="10" y="106" width="180" height="20" rx="2" fill="#FDCBD2"/>
|
||||
<rect x="16" y="112" width="106" height="8" rx="1" fill="#DB5D6F"/>
|
||||
<rect x="10" y="128" width="180" height="20" rx="2" fill="#FDCBD2"/>
|
||||
<rect x="16" y="134" width="106" height="8" rx="1" fill="#DB5D6F"/>
|
||||
<rect x="10" y="150" width="180" height="20" rx="2" fill="#FDCBD2"/>
|
||||
<rect x="16" y="156" width="106" height="8" rx="1" fill="#DB5D6F"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 3.6 KiB |
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 1.2 KiB |
3
assets/svg/list-ul.svg
Normal 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 d="M0.832031 4.08279C0.832031 3.10291 1.62635 2.30859 2.60622 2.30859C3.5861 2.30859 4.38042 3.10291 4.38042 4.08279C4.38042 5.06229 3.5861 5.85698 2.60622 5.85698C1.62635 5.85698 0.832031 5.06229 0.832031 4.08279ZM17.9826 2.89999C18.6368 2.89999 19.1654 3.42966 19.1654 4.08279C19.1654 4.73702 18.6368 5.26558 17.9826 5.26558H7.33741C6.68317 5.26558 6.15461 4.73702 6.15461 4.08279C6.15461 3.42966 6.68317 2.89999 7.33741 2.89999H17.9826ZM17.9826 8.81397C18.6368 8.81397 19.1654 9.34253 19.1654 9.99677C19.1654 10.651 18.6368 11.1796 17.9826 11.1796H7.33741C6.68317 11.1796 6.15461 10.651 6.15461 9.99677C6.15461 9.34253 6.68317 8.81397 7.33741 8.81397H17.9826ZM17.9826 14.7279C18.6368 14.7279 19.1654 15.2565 19.1654 15.9107C19.1654 16.565 18.6368 17.0935 17.9826 17.0935H7.33741C6.68317 17.0935 6.15461 16.565 6.15461 15.9107C6.15461 15.2565 6.68317 14.7279 7.33741 14.7279H17.9826ZM0.832031 15.9107C0.832031 14.9312 1.62635 14.1365 2.60622 14.1365C3.5861 14.1365 4.38042 14.9312 4.38042 15.9107C4.38042 16.8902 3.5861 17.6849 2.60622 17.6849C1.62635 17.6849 0.832031 16.8902 0.832031 15.9107ZM4.38042 9.99677C4.38042 10.9763 3.5861 11.771 2.60622 11.771C1.62635 11.771 0.832031 10.9763 0.832031 9.99677C0.832031 9.01726 1.62635 8.22257 2.60622 8.22257C3.5861 8.22257 4.38042 9.01726 4.38042 9.99677Z" fill="#232323"/>
|
||||
</svg>
|
After Width: | Height: | Size: 1.4 KiB |
3
assets/svg/lock-open.svg
Normal file
|
@ -0,0 +1,3 @@
|
|||
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M7 1.75C5.79141 1.75 4.8125 2.72945 4.8125 3.9375V5.25H11.375C12.3402 5.25 13.125 6.03477 13.125 7V12.25C13.125 13.2152 12.3402 14 11.375 14H2.625C1.6584 14 0.875 13.2152 0.875 12.25V7C0.875 6.03477 1.6584 5.25 2.625 5.25H3.0625V3.9375C3.0625 1.76285 4.82617 0 7 0C8.57227 0 9.92578 0.921211 10.5574 2.24957C10.7652 2.68598 10.5793 3.20742 10.1199 3.41523C9.68242 3.62305 9.18476 3.43711 8.97695 2.99961C8.62422 2.25941 7.87227 1.75 7 1.75ZM7.875 10.5C8.35898 10.5 8.75 10.109 8.75 9.625C8.75 9.14102 8.35898 8.75 7.875 8.75H6.125C5.64102 8.75 5.25 9.14102 5.25 9.625C5.25 10.109 5.64102 10.5 6.125 10.5H7.875Z" fill="#0056D2"/>
|
||||
</svg>
|
After Width: | Height: | Size: 741 B |
28
assets/svg/ocean-breeze-theme.svg
Normal file
|
@ -0,0 +1,28 @@
|
|||
<svg width="200" height="162" viewBox="0 0 200 162" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<linearGradient id="paint0_linear_518_22068" x1="100" y1="0" x2="100" y2="162" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#F3F7FA"/>
|
||||
<stop offset="1" stop-color="#E8F2F9"/>
|
||||
</linearGradient>
|
||||
<clipPath id="clip0_518_22068">
|
||||
<rect width="200" height="162" rx="8" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
<g clip-path="url(#clip0_518_22068)">
|
||||
<rect width="200" height="162" rx="8" fill="url(#paint0_linear_518_22068)"/>
|
||||
<rect x="10" y="10" width="180" height="20" rx="2" fill="#C2DAE2"/>
|
||||
<rect x="16" y="16" width="106" height="8" rx="1" fill="#227386"/>
|
||||
<rect x="10" y="40" width="180" height="20" rx="2" fill="#FEFEFE"/>
|
||||
<rect x="16" y="46" width="106" height="8" rx="1" fill="#BDD5DB"/>
|
||||
<rect x="10" y="62" width="180" height="20" rx="2" fill="#FEFEFE"/>
|
||||
<rect x="16" y="68" width="106" height="8" rx="1" fill="#BDD5DB"/>
|
||||
<rect x="10" y="84" width="180" height="20" rx="2" fill="#FEFEFE"/>
|
||||
<rect x="16" y="90" width="106" height="8" rx="1" fill="#BDD5DB"/>
|
||||
<rect x="10" y="106" width="180" height="20" rx="2" fill="#FEFEFE"/>
|
||||
<rect x="16" y="112" width="106" height="8" rx="1" fill="#BDD5DB"/>
|
||||
<rect x="10" y="128" width="180" height="20" rx="2" fill="#FEFEFE"/>
|
||||
<rect x="16" y="134" width="106" height="8" rx="1" fill="#BDD5DB"/>
|
||||
<rect x="10" y="150" width="180" height="20" rx="2" fill="#FEFEFE"/>
|
||||
<rect x="16" y="156" width="106" height="8" rx="1" fill="#BDD5DB"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.5 KiB |
24
assets/svg/oled-black-theme.svg
Normal file
|
@ -0,0 +1,24 @@
|
|||
<svg width="200" height="162" viewBox="0 0 200 162" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_622_21287)">
|
||||
<rect width="200" height="162" rx="8" fill="#121212"/>
|
||||
<rect x="10" y="10" width="180" height="20" rx="2" fill="#F26822"/>
|
||||
<rect x="16" y="16" width="106" height="8" rx="1" fill="black"/>
|
||||
<rect x="10" y="40" width="180" height="20" rx="2" fill="#303030"/>
|
||||
<rect x="16" y="46" width="106" height="8" rx="1" fill="#121212"/>
|
||||
<rect x="10" y="62" width="180" height="20" rx="2" fill="#303030"/>
|
||||
<rect x="16" y="68" width="106" height="8" rx="1" fill="#121212"/>
|
||||
<rect x="10" y="84" width="180" height="20" rx="2" fill="#303030"/>
|
||||
<rect x="16" y="90" width="106" height="8" rx="1" fill="#121212"/>
|
||||
<rect x="10" y="106" width="180" height="20" rx="2" fill="#303030"/>
|
||||
<rect x="16" y="112" width="106" height="8" rx="1" fill="#121212"/>
|
||||
<rect x="10" y="128" width="180" height="20" rx="2" fill="#303030"/>
|
||||
<rect x="16" y="134" width="106" height="8" rx="1" fill="#121212"/>
|
||||
<rect x="10" y="150" width="180" height="20" rx="2" fill="#303030"/>
|
||||
<rect x="16" y="156" width="106" height="8" rx="1" fill="#121212"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_622_21287">
|
||||
<rect width="200" height="162" rx="8" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
After Width: | Height: | Size: 1.2 KiB |
3
assets/svg/robot-head.svg
Normal 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 d="M10.4173 5.41699V5.91699H10.9173H14.1257C15.1181 5.91699 15.9173 6.71825 15.9173 7.70866V15.5003C15.9173 16.2377 15.3213 16.8337 14.584 16.8337H5.41732C4.67997 16.8337 4.08398 16.2377 4.08398 15.5003V7.70866C4.08398 6.71866 4.88565 5.91699 5.87565 5.91699H9.08398H9.58398V5.41699V3.58366C9.58398 3.35506 9.77205 3.16699 10.0007 3.16699C10.2292 3.16699 10.4173 3.35506 10.4173 3.58366V5.41699ZM8.16732 15.0837H8.58398H8.66732H9.08398H10.9173H11.334H11.4173H11.834H13.6673H14.1673V14.5837V13.667V13.167H13.6673H11.834H11.4173H11.334H10.9173H9.08398H8.66732H8.58398H8.16732H6.33398H5.83398V13.667V14.5837V15.0837H6.33398H8.16732ZM1.33398 10.0003C1.33398 9.89019 1.37745 9.7852 1.45595 9.70663C1.53524 9.62741 1.64114 9.58366 1.75065 9.58366H2.16732V14.0837H1.75065C1.64023 14.0837 1.53452 14.0398 1.45609 13.9614C1.37774 13.8831 1.33398 13.7775 1.33398 13.667V10.0003ZM5.60482 10.0003C5.60482 10.9095 6.34144 11.6462 7.25065 11.6462C8.15987 11.6462 8.89648 10.9095 8.89648 10.0003C8.89648 9.09111 8.15987 8.35449 7.25065 8.35449C6.34144 8.35449 5.60482 9.09111 5.60482 10.0003ZM11.1048 10.0003C11.1048 10.9101 11.8409 11.6462 12.7507 11.6462C13.6599 11.6462 14.3965 10.9095 14.3965 10.0003C14.3965 9.09111 13.6599 8.35449 12.7507 8.35449C11.8416 8.35449 11.1048 9.09037 11.1048 10.0003ZM18.2507 9.58366C18.3599 9.58366 18.4652 9.62719 18.5445 9.70648C18.6238 9.78578 18.6673 9.89112 18.6673 10.0003V13.667C18.6673 13.7774 18.6235 13.8831 18.5451 13.9616C18.4667 14.0399 18.3612 14.0837 18.2507 14.0837H17.834V9.58366H18.2507Z" fill="#8E9192" stroke="#8E9192"/>
|
||||
</svg>
|
After Width: | Height: | Size: 1.6 KiB |
Before Width: | Height: | Size: 895 B After Width: | Height: | Size: 895 B |
150
assets/svg/themed/dark/bitcoin.svg
Normal file
After Width: | Height: | Size: 102 KiB |
133
assets/svg/themed/dark/bitcoincash.svg
Normal file
After Width: | Height: | Size: 105 KiB |
Before Width: | Height: | Size: 2.7 KiB After Width: | Height: | Size: 2.7 KiB |
199
assets/svg/themed/dark/doge.svg
Normal file
After Width: | Height: | Size: 120 KiB |
183
assets/svg/themed/dark/epic-cash.svg
Normal file
After Width: | Height: | Size: 93 KiB |
Before Width: | Height: | Size: 1.7 KiB After Width: | Height: | Size: 1.7 KiB |
96
assets/svg/themed/dark/firo.svg
Normal file
After Width: | Height: | Size: 84 KiB |
154
assets/svg/themed/dark/litecoin.svg
Normal file
|
@ -0,0 +1,154 @@
|
|||
<svg width="2000" height="2000" viewBox="0 0 2000 2000" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_1057_362)">
|
||||
<path d="M1781 1496C1749 1617.6 1458.33 1669.33 1317 1680H481C313 1680 289 1584 253 1496C217 1408 69 1360 69 1144C69 948 245 808 341 704C437 600 331.785 346.129 585 184.704C905 -19.2963 1318.82 338.535 1501 312C1753 275.296 1837 400 1909 616C1981 832 1897 992 1801 1116C1705 1240 1821 1344 1781 1496Z" fill="#5497FF"/>
|
||||
<ellipse cx="1065.21" cy="1708.5" rx="687" ry="52.5" fill="#2E497D"/>
|
||||
<path d="M1175.94 1556.44L1175.89 1556.39L1175.83 1556.34C1168.85 1550.59 1162.65 1544.98 1157.16 1539.5L1153.63 1543.05C1139.4 1528.88 1129.65 1515.49 1123.24 1502.71L1127.7 1500.47C1119.42 1483.96 1117 1468.61 1117.7 1453.91L1112.71 1453.67C1113.53 1436.45 1118.45 1420.13 1123.54 1404.19L1128.3 1405.71C1128.68 1404.53 1129.06 1403.35 1129.44 1402.16C1134.34 1386.88 1139.36 1371.24 1140.58 1355.34L1135.59 1354.96C1136.8 1339.2 1134.11 1323.25 1123.6 1306.57L1127.83 1303.91C1120.08 1291.6 1108.44 1279.14 1091.74 1266.3L1088.69 1270.26C1077.13 1261.37 1062.99 1252.21 1045.79 1242.71L1048.21 1238.33C1041.14 1234.42 1033.56 1230.47 1025.46 1226.45C1017.97 1222.74 1010.92 1218.72 1004.3 1214.4L1001.57 1218.59C987.01 1209.1 974.426 1198.23 963.719 1186.27L967.444 1182.94C956.437 1170.64 947.469 1157.16 940.43 1142.82L935.942 1145.03C928.612 1130.1 923.323 1114.28 919.958 1097.94L924.855 1096.93C921.612 1081.18 920.194 1064.91 920.5 1048.45L915.501 1048.35C915.807 1031.91 917.798 1015.32 921.368 998.888L926.254 999.95C929.689 984.147 934.614 968.496 940.936 953.3L936.32 951.379C942.672 936.111 950.406 921.302 959.427 907.245L963.635 909.946C972.428 896.245 982.463 883.279 993.645 871.332L989.994 867.915C1001.31 855.822 1013.79 844.746 1027.33 834.971L1030.26 839.026C1043.35 829.576 1057.46 821.372 1072.49 814.676L1070.45 810.109C1085.36 803.468 1101.17 798.276 1117.79 794.782L1118.82 799.675C1134.26 796.43 1150.43 794.679 1167.28 794.636L1167.27 789.636C1183.24 789.595 1199.79 791.06 1216.87 794.202L1215.96 799.119C1231.31 801.944 1247.12 806.152 1263.34 811.881L1265 807.166C1279.9 812.43 1295.13 818.953 1310.65 826.831L1308.39 831.29C1315.62 834.959 1322.91 838.927 1330.27 843.206C1331.6 843.977 1332.92 844.861 1334.21 845.842L1337.23 841.859C1340.05 844.001 1342.7 846.501 1345.03 849.174L1341.26 852.462C1342.35 853.702 1343.35 854.979 1344.26 856.267C1349.76 864.021 1355.17 871.447 1360.5 878.556L1364.5 875.556C1376.03 890.918 1387.18 904.782 1397.97 917.273L1394.19 920.542C1407.21 935.607 1419.75 948.718 1431.86 960.083L1435.28 956.436C1449.88 970.135 1463.81 981.226 1477.16 990.101L1474.39 994.265C1491.63 1005.73 1508.02 1013.63 1523.73 1018.71L1525.27 1013.95C1543.96 1019.99 1561.52 1021.87 1578.3 1021.06L1578.54 1026.05C1597.48 1025.13 1615.34 1020.9 1632.5 1015.41L1630.98 1010.64C1643.08 1006.77 1654.93 1002.23 1666.7 997.73C1671.67 995.826 1676.63 993.929 1681.58 992.09L1683.32 996.777C1700.35 990.454 1717.05 984.946 1734.08 982.246L1733.3 977.308C1750.49 974.582 1768.14 974.615 1786.72 979.452L1785.46 984.291C1800.21 988.129 1815.69 995.151 1832.18 1006.6L1835.03 1002.49C1848.01 1011.49 1861.53 1023.12 1875.7 1037.88L1872.09 1041.34C1877.91 1047.41 1883.86 1054.02 1889.93 1061.22C1895.36 1067.65 1900.16 1074.22 1904.38 1080.92L1908.61 1078.26C1917.82 1092.9 1924.34 1108.18 1928.4 1123.94L1923.56 1125.19C1927.57 1140.73 1929.11 1156.79 1928.41 1173.21L1933.4 1173.42C1932.71 1189.59 1929.9 1206.04 1925.19 1222.64L1920.38 1221.28C1916.08 1236.45 1910.15 1251.77 1902.74 1267.14L1907.24 1269.31C1900.26 1283.81 1892 1298.3 1882.6 1312.7L1878.41 1309.96C1869.64 1323.4 1859.86 1336.77 1849.18 1349.98L1853.07 1353.12C1842.81 1365.8 1831.75 1378.32 1819.98 1390.61L1816.37 1387.16C1805.13 1398.9 1793.23 1410.44 1780.77 1421.71L1784.12 1425.42C1771.89 1436.47 1759.12 1447.26 1745.9 1457.73L1742.8 1453.81C1729.9 1464.03 1716.57 1473.93 1702.88 1483.48L1705.74 1487.58C1692.11 1497.08 1678.13 1506.21 1663.89 1514.94L1661.28 1510.67C1647.13 1519.33 1632.72 1527.58 1618.11 1535.36L1620.46 1539.77C1605.69 1547.64 1590.72 1555.04 1575.63 1561.91L1573.55 1557.36C1558.36 1564.27 1543.05 1570.64 1527.71 1576.42L1529.47 1581.1C1513.65 1587.04 1497.8 1592.36 1481.98 1596.99L1480.58 1592.19C1464.45 1596.91 1448.38 1600.9 1432.47 1604.1L1433.45 1609C1416.81 1612.34 1400.31 1614.83 1384.07 1616.38L1383.6 1611.41C1366.79 1613.02 1350.28 1613.61 1334.18 1613.12L1334.03 1618.12C1317.02 1617.59 1300.45 1615.87 1284.46 1612.84L1285.39 1607.93C1268.99 1604.82 1253.24 1600.33 1238.27 1594.36L1236.42 1599.01C1220.9 1592.81 1206.17 1585.04 1192.42 1575.58L1195.26 1571.46C1188.58 1566.86 1182.13 1561.86 1175.94 1556.44Z" stroke="#186C9D" stroke-width="10" stroke-dasharray="50 50"/>
|
||||
<path d="M1334.54 154.072L1334.61 154.105L1334.67 154.137C1342.84 158.026 1350.22 161.962 1356.88 165.937L1359.44 161.643C1376.68 171.927 1389.39 182.55 1398.72 193.389L1394.93 196.651C1406.98 210.654 1413.05 224.958 1415.94 239.386L1420.84 238.405C1424.22 255.314 1423.42 272.332 1422.35 289.034L1417.36 288.715C1417.28 289.952 1417.2 291.193 1417.12 292.435C1416.07 308.448 1415 324.842 1417.68 340.557L1422.61 339.717C1425.26 355.296 1431.75 370.114 1446 383.747L1442.54 387.359C1453.05 397.412 1467.37 406.671 1486.69 415.076L1488.68 410.491C1502.05 416.308 1518 421.763 1536.99 426.803L1535.7 431.635C1543.51 433.708 1551.82 435.708 1560.66 437.633C1568.82 439.411 1576.64 441.606 1584.11 444.184L1585.74 439.458C1602.17 445.125 1617.02 452.614 1630.31 461.617L1627.5 465.757C1641.17 475.011 1653.14 485.912 1663.45 498.108L1667.27 494.881C1678 507.58 1686.98 521.64 1694.21 536.679L1689.7 538.847C1696.67 553.335 1702 568.778 1705.7 584.822L1710.57 583.698C1714.27 599.72 1716.37 616.304 1716.9 633.107L1711.9 633.264C1712.4 649.427 1711.43 665.806 1708.98 682.083L1713.93 682.825C1711.47 699.178 1707.57 715.422 1702.23 731.249L1697.49 729.651C1692.29 745.077 1685.7 760.091 1677.76 774.397L1682.13 776.825C1674.09 791.304 1664.67 805.078 1653.91 817.85L1650.09 814.628C1639.68 826.975 1627.99 838.358 1615.03 848.503L1618.12 852.44C1605.27 862.502 1591.2 871.377 1575.92 878.803L1573.74 874.306C1559.54 881.205 1544.28 886.832 1527.95 890.964L1529.18 895.811C1513.69 899.73 1497.28 902.328 1479.95 903.427L1479.63 898.437C1464.06 899.425 1447.7 899.181 1430.58 897.562L1430.11 902.54C1414.37 901.053 1398.02 898.423 1381.05 894.55L1382.16 889.675C1374.26 887.872 1366.22 885.794 1358.04 883.431C1356.56 883.005 1355.07 882.467 1353.58 881.83L1351.61 886.427C1348.36 885.035 1345.19 883.251 1342.27 881.225L1345.13 877.12C1343.78 876.18 1342.49 875.186 1341.29 874.158C1334.08 867.97 1327.03 862.081 1320.13 856.48L1316.98 860.362C1302.06 848.258 1287.89 837.516 1274.38 828.022L1277.25 823.931C1260.96 812.479 1245.62 802.806 1231.11 794.723L1228.67 799.091C1211.18 789.348 1194.98 781.971 1179.88 776.603L1181.55 771.892C1162.04 764.957 1144.22 761.273 1127.75 760.163L1127.41 765.152C1107.82 763.831 1090.33 766.273 1074.24 771.138L1072.8 766.352C1054.65 771.841 1038.35 780.289 1023.04 789.782L1025.67 794.032C1014.87 800.726 1004.48 808.006 994.156 815.234C989.796 818.287 985.448 821.332 981.09 824.319L978.263 820.194C963.278 830.464 948.423 839.86 932.553 846.617L934.511 851.218C918.493 858.037 901.364 862.291 882.165 862.111L882.212 857.111C866.978 856.968 850.255 853.916 831.473 846.819L829.706 851.496C814.928 845.912 798.997 837.92 781.665 827.04L784.323 822.805C777.202 818.335 769.83 813.363 762.188 807.853C755.367 802.935 749.108 797.726 743.389 792.25L739.931 795.861C727.44 783.9 717.403 770.66 709.637 756.358L714.031 753.972C706.371 739.865 700.975 724.661 697.67 708.561L692.772 709.566C689.519 693.72 688.247 677.073 688.784 659.827L693.782 659.982C694.272 644.225 696.304 627.915 699.757 611.207L694.861 610.195C698.117 594.438 702.611 578.372 708.23 562.128L712.955 563.762C718.201 548.594 724.446 533.252 731.599 517.844L727.064 515.739C733.931 500.95 741.62 486.117 750.05 471.335L754.393 473.812C762.448 459.69 771.189 445.607 780.544 431.649L776.391 428.866C785.57 415.17 795.334 401.601 805.615 388.235L809.578 391.283C819.609 378.242 830.137 365.395 841.098 352.814L837.329 349.53C848.241 337.006 859.58 324.747 871.283 312.825L874.851 316.328C886.469 304.493 898.448 292.993 910.726 281.898L907.374 278.188C919.796 266.964 932.524 256.153 945.495 245.826L948.609 249.738C961.669 239.341 974.972 229.442 988.456 220.116L985.611 216.004C999.507 206.393 1013.6 197.382 1027.81 189.054L1030.34 193.368C1044.84 184.873 1059.46 177.1 1074.12 170.133L1071.98 165.617C1087.31 158.331 1102.71 151.914 1118.08 146.463L1119.75 151.175C1135.67 145.531 1151.54 140.943 1167.27 137.516L1166.21 132.63C1182.83 129.008 1199.33 126.659 1215.58 125.711L1215.87 130.702C1232.53 129.731 1248.9 130.259 1264.87 132.419L1265.54 127.464C1282.1 129.705 1298.27 133.669 1313.91 139.508L1312.16 144.192C1319.75 147.027 1327.22 150.314 1334.54 154.072Z" stroke="#186C9D" stroke-width="10" stroke-dasharray="50 50"/>
|
||||
<path d="M397.357 1182.34C356.127 1176.12 313.982 1181.21 275.421 1197.08C236.86 1212.94 203.33 1238.98 178.41 1272.41C153.49 1305.84 138.116 1345.41 133.929 1386.89C129.741 1428.38 136.897 1470.22 154.634 1507.96C172.37 1545.69 200.02 1577.91 234.633 1601.16C269.247 1624.4 309.523 1637.82 351.164 1639.96C392.805 1642.11 434.248 1632.91 471.068 1613.34C507.888 1593.78 538.704 1564.58 560.226 1528.87L513.321 1500.6C496.918 1527.82 473.431 1550.07 445.369 1564.98C417.306 1579.9 385.72 1586.91 353.983 1585.27C322.247 1583.64 291.549 1573.41 265.169 1555.69C238.788 1537.97 217.714 1513.42 204.197 1484.66C190.679 1455.9 185.225 1424.01 188.416 1392.39C191.608 1360.77 203.325 1330.62 222.318 1305.14C241.311 1279.66 266.866 1259.81 296.255 1247.72C325.645 1235.63 357.766 1231.75 389.189 1236.49L397.357 1182.34Z" fill="#C3E9FF"/>
|
||||
<path d="M556.174 614.406C584.945 584.227 604.982 546.802 614.145 506.125C623.308 465.447 621.254 423.046 608.201 383.445C595.148 343.844 571.587 308.531 540.032 281.276C508.477 254.02 470.113 235.844 429.036 228.688C387.958 221.533 345.708 225.666 306.796 240.646C267.883 255.627 233.769 280.893 208.095 313.748C182.421 346.602 166.15 385.811 161.019 427.191C155.888 468.57 162.089 510.567 178.962 548.697L229.042 526.536C216.183 497.475 211.456 465.468 215.367 433.93C219.277 402.392 231.679 372.509 251.246 347.469C270.814 322.428 296.814 303.172 326.472 291.754C356.129 280.337 388.33 277.186 419.637 282.64C450.945 288.094 480.184 301.947 504.234 322.72C528.283 343.493 546.241 370.407 556.189 400.589C566.137 430.771 567.703 463.087 560.72 494.09C553.736 525.092 538.465 553.616 516.536 576.617L556.174 614.406Z" fill="#2E497D"/>
|
||||
<path d="M527.624 375.459C514.62 353.201 496.431 334.416 474.604 320.701C452.777 306.987 427.959 298.75 402.264 296.691C376.568 294.633 350.756 298.815 327.024 308.88C303.293 318.945 282.345 334.595 265.964 354.499C249.583 374.403 238.254 397.97 232.942 423.195C227.63 448.42 228.492 474.554 235.455 499.374C242.418 524.194 255.275 546.963 272.932 565.744C290.589 584.525 312.523 598.761 336.866 607.241L357.025 549.365C342.007 544.134 328.476 535.352 317.583 523.766C306.69 512.179 298.758 498.132 294.462 482.82C290.167 467.509 289.635 451.386 292.912 435.824C296.189 420.262 303.178 405.723 313.284 393.444C323.39 381.165 336.313 371.51 350.953 365.3C365.594 359.091 381.518 356.511 397.37 357.781C413.222 359.051 428.533 364.133 441.998 372.593C455.464 381.054 466.685 392.643 474.708 406.375L527.624 375.459Z" fill="#2E497D"/>
|
||||
<path d="M439.833 527.883C451.737 519.762 461.454 508.831 468.124 496.057C474.794 483.284 478.212 469.062 478.073 454.653C477.934 440.244 474.244 426.091 467.329 413.448C460.414 400.806 450.488 390.064 438.43 382.174C426.372 374.283 412.554 369.489 398.2 368.215C383.846 366.94 369.4 369.226 356.141 374.868C342.881 380.51 331.218 389.336 322.184 400.563C313.15 411.789 307.024 425.071 304.349 439.23L337.333 445.462C338.983 436.726 342.763 428.533 348.336 421.607C353.909 414.681 361.104 409.236 369.284 405.755C377.464 402.274 386.377 400.864 395.232 401.651C404.087 402.437 412.611 405.395 420.05 410.262C427.489 415.13 433.613 421.757 437.879 429.556C442.145 437.356 444.421 446.087 444.507 454.976C444.592 463.866 442.484 472.639 438.369 480.519C434.254 488.399 428.26 495.143 420.916 500.153L439.833 527.883Z" fill="#345D9D"/>
|
||||
<circle cx="1024" cy="1032" r="728" fill="#244D8D"/>
|
||||
<circle cx="1024" cy="1032" r="629" fill="#D9D9D9" stroke="#5C83BF" stroke-width="10"/>
|
||||
<path d="M1024 1588.46C1331.32 1588.46 1580.46 1339.33 1580.46 1032C1580.46 724.674 1331.32 475.537 1024 475.537C716.672 475.537 467.535 724.674 467.535 1032C467.535 1339.33 716.672 1588.46 1024 1588.46Z" fill="white"/>
|
||||
<path d="M1024 408C900.585 408 779.941 444.597 677.324 513.163C574.708 581.729 494.729 679.184 447.499 793.206C400.27 907.227 387.913 1032.69 411.99 1153.74C436.067 1274.78 495.498 1385.97 582.766 1473.23C670.034 1560.5 781.22 1619.93 902.264 1644.01C1023.31 1668.09 1148.77 1655.73 1262.79 1608.5C1376.82 1561.27 1474.27 1481.29 1542.84 1378.68C1611.4 1276.06 1648 1155.42 1648 1032C1648.24 950.293 1632.38 869.339 1601.33 793.761C1570.29 718.182 1524.66 649.459 1467.05 591.516C1409.44 533.572 1340.99 487.542 1265.59 456.054C1190.19 424.567 1109.33 408.238 1027.63 408H1024ZM1034.58 1053.15L969.608 1272.23H1317.11C1319.42 1272.15 1321.71 1272.53 1323.87 1273.33C1326.03 1274.14 1328 1275.36 1329.69 1276.94C1331.37 1278.51 1332.73 1280.4 1333.68 1282.49C1334.64 1284.59 1335.17 1286.85 1335.24 1289.15V1294.9L1305.03 1399.15C1303.69 1404.08 1300.73 1408.41 1296.61 1411.43C1292.49 1414.45 1287.47 1415.98 1282.36 1415.77H750.528L839.671 1112.08L739.952 1142.3L762.615 1072.79L862.334 1042.58L987.739 616.504C989.119 611.601 992.101 607.302 996.208 604.29C1000.31 601.278 1005.31 599.727 1010.4 599.884H1144.87C1147.17 599.803 1149.47 600.177 1151.63 600.984C1153.78 601.791 1155.76 603.015 1157.45 604.587C1159.13 606.158 1160.49 608.046 1161.44 610.143C1162.39 612.24 1162.92 614.504 1163 616.806V622.547L1057.24 982.14L1156.96 951.923L1135.81 1024.45L1034.58 1053.15Z" fill="#345D9D"/>
|
||||
<g style="mix-blend-mode:multiply" opacity="0.2">
|
||||
<path d="M1752 1032C1752 1434.06 1426.06 1760 1024 1760C621.937 1760 296 1434.06 296 1032C296 1032 654.937 1460 1057 1460C1459.06 1460 1752 1032 1752 1032Z" fill="#244D8D"/>
|
||||
</g>
|
||||
<path d="M331 1580.5C323.8 1575.7 331 1525.5 335.5 1501C338.667 1489.67 344.9 1466.7 344.5 1465.5C344.1 1464.3 375.667 1471 391.5 1474.5L374 1545L346.5 1590C344.333 1588.83 338.2 1585.3 331 1580.5Z" fill="#454545" stroke="white" stroke-width="30" stroke-linecap="round"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M362.108 1467.26C371.938 1469.22 383.796 1471.77 391.716 1473.52L392.718 1473.74L374.933 1545.39L346.86 1591.33L346.026 1590.88C343.83 1589.7 337.67 1586.15 330.445 1581.33C329.216 1580.51 328.466 1578.88 327.973 1576.96C327.465 1574.98 327.169 1572.46 327.034 1569.54C326.763 1563.71 327.134 1556.17 327.866 1548.05C329.333 1531.79 332.263 1513.09 334.516 1500.82L334.524 1500.77L334.537 1500.73C336.119 1495.07 338.468 1486.5 340.37 1479.2C341.321 1475.55 342.159 1472.22 342.733 1469.73C343.021 1468.49 343.24 1467.47 343.374 1466.73C343.441 1466.35 343.484 1466.07 343.505 1465.87C343.514 1465.78 343.517 1465.73 343.518 1465.69C343.47 1465.45 343.497 1465.18 343.652 1464.93C343.807 1464.67 344.022 1464.55 344.135 1464.5C344.356 1464.4 344.586 1464.38 344.713 1464.37C345.012 1464.35 345.407 1464.36 345.843 1464.4C346.737 1464.48 348.03 1464.66 349.609 1464.92C352.778 1465.44 357.195 1466.27 362.108 1467.26ZM343.518 1465.65C343.518 1465.65 343.518 1465.66 343.518 1465.67C343.518 1465.66 343.518 1465.65 343.518 1465.65ZM345.457 1466.38C345.522 1466.38 345.592 1466.39 345.668 1466.39C346.485 1466.47 347.717 1466.64 349.287 1466.89C352.42 1467.41 356.809 1468.24 361.717 1469.22C371.122 1471.1 382.394 1473.52 390.282 1475.26L373.066 1544.61L346.144 1588.66C343.502 1587.19 337.953 1583.93 331.554 1579.67C330.984 1579.29 330.384 1578.3 329.91 1576.46C329.451 1574.68 329.164 1572.3 329.032 1569.45C328.767 1563.76 329.128 1556.32 329.858 1548.23C331.315 1532.08 334.23 1513.46 336.475 1501.23C338.059 1495.55 340.404 1487 342.305 1479.7C343.258 1476.05 344.101 1472.7 344.682 1470.18C344.972 1468.93 345.199 1467.87 345.342 1467.08C345.389 1466.82 345.428 1466.59 345.457 1466.38Z" fill="black"/>
|
||||
<path d="M344.826 1466.37C344.826 1466.37 344.829 1466.37 344.837 1466.36M391.716 1473.52C383.796 1471.77 371.938 1469.22 362.108 1467.26C357.195 1466.27 352.778 1465.44 349.609 1464.92C348.03 1464.66 346.737 1464.48 345.843 1464.4C345.407 1464.36 345.012 1464.35 344.713 1464.37C344.586 1464.38 344.356 1464.4 344.135 1464.5C344.022 1464.55 343.807 1464.67 343.652 1464.93C343.497 1465.18 343.47 1465.45 343.518 1465.69C343.517 1465.73 343.514 1465.78 343.505 1465.87C343.484 1466.07 343.441 1466.35 343.374 1466.73C343.24 1467.47 343.021 1468.49 342.733 1469.73C342.159 1472.22 341.321 1475.55 340.37 1479.2C338.468 1486.5 336.119 1495.07 334.537 1500.73L334.524 1500.77L334.516 1500.82C332.263 1513.09 329.333 1531.79 327.866 1548.05C327.134 1556.17 326.763 1563.71 327.034 1569.54C327.169 1572.46 327.465 1574.98 327.973 1576.96C328.466 1578.88 329.216 1580.51 330.445 1581.33C337.67 1586.15 343.83 1589.7 346.026 1590.88L346.86 1591.33L374.933 1545.39L392.718 1473.74L391.716 1473.52ZM343.518 1465.65C343.518 1465.65 343.518 1465.66 343.518 1465.67C343.518 1465.66 343.518 1465.65 343.518 1465.65ZM345.457 1466.38C345.522 1466.38 345.592 1466.39 345.668 1466.39C346.485 1466.47 347.717 1466.64 349.287 1466.89C352.42 1467.41 356.809 1468.24 361.717 1469.22C371.122 1471.1 382.394 1473.52 390.282 1475.26L373.066 1544.61L346.144 1588.66C343.502 1587.19 337.953 1583.93 331.554 1579.67C330.984 1579.29 330.384 1578.3 329.91 1576.46C329.451 1574.68 329.164 1572.3 329.032 1569.45C328.767 1563.76 329.128 1556.32 329.858 1548.23C331.315 1532.08 334.23 1513.46 336.475 1501.23C338.059 1495.55 340.404 1487 342.305 1479.7C343.258 1476.05 344.101 1472.7 344.682 1470.18C344.972 1468.93 345.199 1467.87 345.342 1467.08C345.389 1466.82 345.428 1466.59 345.457 1466.38Z" stroke="white" stroke-width="30" stroke-linecap="round"/>
|
||||
<path d="M271.5 1690C273.5 1684.8 334.333 1661.17 364.5 1650L429 1648.5L425 1707.5H268C268.333 1703.83 269.5 1695.2 271.5 1690Z" fill="#454545" stroke="white" stroke-width="30" stroke-linecap="round"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M430.073 1647.47L425.936 1708.5H266.906L267.005 1707.41C267.34 1703.73 268.514 1694.98 270.568 1689.64C270.795 1689.05 271.337 1688.51 271.91 1688.04C272.524 1687.54 273.339 1686.99 274.314 1686.39C276.269 1685.2 278.961 1683.79 282.199 1682.23C288.681 1679.09 297.436 1675.29 307.057 1671.31C326.301 1663.35 349.064 1654.65 364.154 1649.06L364.311 1649L430.073 1647.47ZM364.692 1651C349.615 1656.58 326.968 1665.24 307.821 1673.16C298.212 1677.14 289.499 1680.92 283.069 1684.03C279.852 1685.58 277.227 1686.96 275.355 1688.1C274.416 1688.67 273.69 1689.17 273.178 1689.59C272.922 1689.8 272.736 1689.98 272.608 1690.12C272.544 1690.19 272.501 1690.25 272.472 1690.29C272.442 1690.34 272.434 1690.36 272.435 1690.36C270.662 1694.97 269.543 1702.44 269.106 1706.5H424.067L427.929 1649.53L364.692 1651Z" fill="black" stroke="white" stroke-width="30" stroke-linecap="round"/>
|
||||
<path d="M330.5 1510L199.5 1295.5L308 1260L379 1479L330.5 1510Z" fill="#1B2645" stroke="white" stroke-width="30"/>
|
||||
<g opacity="0.5">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M323.746 1307.83C324.114 1308.25 324.078 1308.88 323.666 1309.25C322.715 1310.1 321.734 1311.17 320.534 1312.49C320.322 1312.72 320.104 1312.96 319.878 1313.21C318.386 1314.84 316.601 1316.74 314.296 1318.83C309.679 1323.01 303.013 1327.9 292.427 1332.9C268.37 1344.28 250.198 1343.89 235.84 1343.59C233.639 1343.54 231.529 1343.5 229.5 1343.5C228.948 1343.5 228.5 1343.05 228.5 1342.5C228.5 1341.95 228.948 1341.5 229.5 1341.5C231.559 1341.5 233.691 1341.54 235.903 1341.59C250.234 1341.89 267.961 1342.26 291.573 1331.1C301.986 1326.17 308.486 1321.39 312.953 1317.35C315.19 1315.32 316.926 1313.47 318.402 1311.86C318.62 1311.62 318.833 1311.39 319.041 1311.16C320.236 1309.85 321.299 1308.68 322.334 1307.75C322.746 1307.39 323.378 1307.42 323.746 1307.83Z" fill="#4D8CEF" stroke="white" stroke-width="30" stroke-linecap="round"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M338.157 1354.75C338.573 1355.11 338.617 1355.74 338.254 1356.16C337.56 1356.95 336.713 1357.98 335.724 1359.19C330.418 1365.63 321.041 1377.03 309.51 1383.86C302.745 1387.87 293.188 1390.56 283.964 1392.17C274.728 1393.79 265.704 1394.34 259.941 1394C259.39 1393.97 258.969 1393.49 259.002 1392.94C259.034 1392.39 259.507 1391.97 260.059 1392C265.63 1392.33 274.495 1391.8 283.62 1390.2C292.758 1388.61 302.035 1385.97 308.49 1382.14C319.678 1375.51 328.772 1364.47 334.113 1357.99C335.131 1356.76 336.012 1355.69 336.746 1354.84C337.109 1354.43 337.74 1354.38 338.157 1354.75Z" fill="#4D8CEF" stroke="white" stroke-width="30" stroke-linecap="round"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M353.537 1401.66C354.003 1401.95 354.14 1402.57 353.844 1403.04C352.79 1404.69 351.872 1406.51 350.879 1408.46C347.607 1414.92 343.526 1422.98 331.1 1432.3C319.212 1441.22 306.23 1441.29 296.109 1441.35C293.755 1441.36 291.556 1441.38 289.561 1441.5C289.01 1441.53 288.536 1441.11 288.502 1440.56C288.468 1440.01 288.887 1439.54 289.439 1439.5C291.591 1439.37 293.904 1439.35 296.336 1439.34C306.438 1439.26 318.597 1439.18 329.9 1430.7C341.916 1421.69 345.748 1414.13 349.006 1407.71C350.034 1405.69 351.004 1403.77 352.156 1401.96C352.453 1401.5 353.071 1401.36 353.537 1401.66Z" fill="#4D8CEF" stroke="white" stroke-width="30" stroke-linecap="round"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M234.022 1297.62C234.507 1297.36 235.114 1297.54 235.378 1298.02L345.378 1500.02C345.643 1500.51 345.463 1501.11 344.978 1501.38C344.493 1501.64 343.886 1501.46 343.622 1500.98L233.622 1298.98C233.358 1298.49 233.537 1297.89 234.022 1297.62Z" fill="#4D8CEF" stroke="white" stroke-width="30" stroke-linecap="round"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M284.644 1283.57C285.16 1283.37 285.738 1283.63 285.935 1284.14L363.935 1488.64C364.131 1489.16 363.873 1489.74 363.357 1489.93C362.841 1490.13 362.263 1489.87 362.066 1489.36L284.066 1284.86C283.869 1284.34 284.128 1283.76 284.644 1283.57Z" fill="#4D8CEF" stroke="white" stroke-width="30" stroke-linecap="round"/>
|
||||
</g>
|
||||
<path d="M193.499 1254.5C203.999 1227.5 279.499 1169.5 281.499 1168L367.997 1257.5C316.998 1274.67 235.999 1301 210.5 1302.5C201 1303.06 182.993 1281.52 193.499 1254.5Z" fill="#283963" stroke="white" stroke-width="30"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M339.862 1233.99C340.142 1234.47 339.983 1235.08 339.507 1235.36C335.282 1237.85 330.257 1240.86 324.788 1244.14C316.936 1248.85 308.168 1254.11 299.54 1259.15C284.896 1267.7 270.502 1275.69 261.379 1279.43C250.316 1283.95 235.638 1288.22 223.573 1291.47C218.755 1292.76 214.344 1293.9 210.74 1294.83C209.828 1295.07 208.967 1295.29 208.165 1295.5C206.176 1296.02 204.55 1296.44 203.376 1296.77C202.789 1296.94 202.325 1297.07 201.989 1297.18C201.821 1297.24 201.696 1297.28 201.608 1297.32C201.558 1297.34 201.533 1297.35 201.524 1297.35C201.068 1297.63 200.468 1297.5 200.168 1297.05C199.862 1296.6 199.986 1295.97 200.445 1295.67C200.588 1295.57 200.756 1295.5 200.876 1295.46C201.015 1295.4 201.183 1295.34 201.37 1295.28C201.745 1295.16 202.24 1295.01 202.837 1294.85C204.032 1294.51 205.676 1294.08 207.663 1293.56C208.468 1293.35 209.331 1293.13 210.245 1292.9C213.848 1291.97 218.246 1290.83 223.052 1289.53C235.113 1286.29 249.685 1282.05 260.621 1277.57C269.593 1273.9 283.866 1265.98 298.532 1257.42C307.17 1252.38 315.892 1247.15 323.723 1242.45C329.192 1239.17 334.227 1236.15 338.493 1233.64C338.969 1233.36 339.582 1233.52 339.862 1233.99Z" fill="#4D8CEF" stroke="white" stroke-width="30" stroke-linecap="round"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M245.783 1197.52C246.322 1197.4 246.857 1197.74 246.976 1198.28C248.457 1204.95 251.838 1214.65 255.964 1223.93C260.098 1233.24 264.921 1241.99 269.246 1246.83C281.596 1260.67 299.428 1269.6 309.894 1274.08C310.402 1274.3 310.637 1274.89 310.419 1275.39C310.202 1275.9 309.614 1276.14 309.106 1275.92C298.573 1271.4 280.405 1262.33 267.754 1248.17C263.211 1243.08 258.285 1234.08 254.136 1224.74C249.978 1215.39 246.543 1205.55 245.024 1198.72C244.904 1198.18 245.244 1197.64 245.783 1197.52Z" fill="#4D8CEF" stroke="white" stroke-width="30" stroke-linecap="round"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M297.323 1193.93C297.637 1194.39 297.523 1195.01 297.069 1195.32C290.016 1200.2 283.975 1203.99 278.063 1207.7C265.293 1215.72 253.124 1223.36 232.648 1240.76C202.757 1266.17 197.906 1280 195.97 1287.74C195.836 1288.28 195.293 1288.6 194.758 1288.47C194.222 1288.34 193.896 1287.79 194.03 1287.26C196.095 1279 201.243 1264.83 231.353 1239.24C251.938 1221.74 264.282 1213.99 277.106 1205.94C282.998 1202.24 288.991 1198.48 295.931 1193.68C296.386 1193.36 297.008 1193.48 297.323 1193.93Z" fill="#4D8CEF" stroke="white" stroke-width="30"/>
|
||||
<path d="M352 1645L383.5 1260.5C389.667 1256.83 407.2 1248.4 428 1244C448.8 1239.6 493.667 1258.5 513.5 1268.5L434 1653.5C427.667 1657.17 410 1664.1 390 1662.5C370 1660.9 356.333 1650.17 352 1645Z" fill="#283963" stroke="white" stroke-width="30"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M482.248 1315.76C471.275 1319.34 457.164 1323.25 440.516 1323.5C427.241 1323.7 414.501 1320.67 403.811 1317.48C400.427 1316.47 397.223 1315.44 394.278 1314.49C392.586 1313.95 390.979 1313.43 389.474 1312.96C385.302 1311.66 381.913 1310.73 379.406 1310.5L379.596 1308.5C382.339 1308.77 385.919 1309.76 390.069 1311.05C391.61 1311.53 393.232 1312.06 394.931 1312.6C397.857 1313.55 401.012 1314.56 404.382 1315.57C415.006 1318.73 427.516 1321.7 440.486 1321.5C456.838 1321.25 470.727 1317.41 481.629 1313.86C483.713 1313.18 485.702 1312.51 487.58 1311.87C490.584 1310.86 493.308 1309.94 495.697 1309.24C497.649 1308.66 499.425 1308.23 500.998 1308C502.565 1307.77 503.995 1307.74 505.23 1308.03L504.772 1309.97C503.883 1309.76 502.734 1309.76 501.287 1309.97C499.847 1310.18 498.173 1310.59 496.259 1311.15C493.902 1311.85 491.252 1312.74 488.286 1313.75C486.403 1314.38 484.392 1315.07 482.248 1315.76Z" fill="#4D8CEF" stroke="white" stroke-width="30"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M382.089 1394.15C378.266 1392.86 375.173 1391.94 372.895 1391.69L373.106 1389.7C375.638 1389.97 378.931 1390.97 382.732 1392.26C384.212 1392.76 385.769 1393.31 387.402 1393.88C390.022 1394.8 392.838 1395.79 395.848 1396.78C405.581 1399.96 417.03 1402.99 428.897 1402.99C448.324 1402.99 460.919 1399.75 469.618 1396.78C471.799 1396.04 473.738 1395.31 475.491 1394.64L475.816 1394.52C477.434 1393.91 478.904 1393.35 480.24 1392.91C483.062 1391.97 485.501 1391.44 487.754 1392.03L487.246 1393.97C485.605 1393.54 483.66 1393.87 480.873 1394.8C479.576 1395.24 478.142 1395.78 476.51 1396.4L476.199 1396.51C474.445 1397.18 472.479 1397.92 470.265 1398.67C461.385 1401.71 448.572 1404.99 428.897 1404.99C416.711 1404.99 405.022 1401.88 395.226 1398.68C392.207 1397.69 389.337 1396.68 386.695 1395.75C385.067 1395.18 383.526 1394.64 382.089 1394.15Z" fill="#4D8CEF" stroke="white" stroke-width="30"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M375.089 1475.46C371.266 1474.16 368.173 1473.24 365.895 1472.99L366.106 1471.01C368.638 1471.27 371.931 1472.27 375.732 1473.56C377.212 1474.06 378.769 1474.61 380.402 1475.18C383.022 1476.1 385.838 1477.09 388.848 1478.08C398.581 1481.26 410.03 1484.29 421.897 1484.29C441.409 1484.29 451.511 1483.22 457.531 1482.34C458.845 1482.15 459.994 1481.96 461.012 1481.8C462.285 1481.59 463.353 1481.42 464.283 1481.31C466.032 1481.11 467.463 1481.12 469.225 1481.53L468.775 1483.47C467.287 1483.13 466.093 1483.12 464.511 1483.3C463.606 1483.4 462.623 1483.56 461.41 1483.76C460.402 1483.93 459.234 1484.12 457.819 1484.32C451.688 1485.22 441.488 1486.29 421.897 1486.29C409.711 1486.29 398.022 1483.19 388.226 1479.98C385.207 1478.99 382.337 1477.98 379.695 1477.06C378.067 1476.48 376.526 1475.94 375.089 1475.46Z" fill="#4D8CEF" stroke="white" stroke-width="30"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M360.599 1547.58C361.105 1547.36 361.695 1547.59 361.916 1548.1C363.553 1551.84 368.479 1557.31 376.066 1561.93C383.616 1566.53 393.697 1570.22 405.524 1570.5C426.473 1571 437.544 1568.75 443.59 1566.03C446.595 1564.67 448.347 1563.21 449.462 1561.92C450.346 1560.89 450.836 1559.98 451.269 1559.17C451.392 1558.94 451.511 1558.72 451.632 1558.5C451.906 1558.02 452.517 1557.86 452.996 1558.13C453.476 1558.41 453.643 1559.02 453.368 1559.5C453.28 1559.65 453.183 1559.83 453.076 1560.03C452.64 1560.85 452.022 1562.01 450.976 1563.22C449.654 1564.76 447.656 1566.39 444.411 1567.85C437.956 1570.75 426.527 1573 405.476 1572.5C393.258 1572.21 382.839 1568.4 375.025 1563.64C367.249 1558.9 361.947 1553.16 360.084 1548.9C359.863 1548.4 360.093 1547.81 360.599 1547.58Z" fill="#4D8CEF" stroke="white" stroke-width="30" stroke-linecap="round"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M370.008 1657.89L413.008 1275.39L414.995 1275.61L371.995 1658.11L370.008 1657.89Z" fill="#4D8CEF" stroke="white" stroke-width="30"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M402.012 1661.84L465.012 1265.34L466.987 1265.66L403.987 1662.16L402.012 1661.84Z" fill="#4D8CEF" stroke="white" stroke-width="30"/>
|
||||
<path d="M489.5 1284C481.1 1280.8 471.667 1267.67 468 1261.5L512.5 1218.5L563.5 1240.5C551.5 1255 526.9 1284.6 524.5 1287C521.5 1290 516 1291.5 504.5 1291C493 1290.5 500 1288 489.5 1284Z" fill="#AEAEAE" stroke="white" stroke-width="30"/>
|
||||
<path d="M572.998 605.5C576.998 634.5 571.998 651.5 568.998 652.5L549 668.5C538.333 658.333 510 636.2 482 629C454 621.8 397.332 682 372.498 708.5L350 674C346.166 679.166 336.7 693.7 317.5 690.5C298.3 687.3 308.5 664.166 317.5 655.5C315.499 657 307.899 659.7 293.499 658.5C275.499 657 272.039 632.96 283.497 617C297.494 597.5 316.165 590.166 331.999 583.5C324.499 584 295.338 588.774 305 561.5C313.501 537.5 360.498 534.666 392.498 531.5L392.389 531.459C386.94 529.416 370.402 523.216 372.498 513C376.5 493.5 391.867 486.5 430.998 486.5C473 486.5 511.498 507 528.998 517.5C546.498 528 568.998 576.5 572.998 605.5Z" fill="black" stroke="white" stroke-width="30"/>
|
||||
<path d="M475.5 804L456.5 813.5L467 876L567.5 792L544.5 775.5L545.5 743C537.5 751 524.5 769.5 506 779.5C490.987 787.615 480.5 792 475.5 792V804Z" fill="#888888" stroke="white" stroke-width="30"/>
|
||||
<path d="M398 781.5C393.2 780.7 365 692.5 351.5 648.5C355.333 646.5 368.898 633.656 403 618.5C452.5 596.5 485.19 599.952 501.5 602.5C517.5 605 538.667 638.667 549 657C549 654.167 548.021 645.309 553 636.5C559.5 625 575 630.5 576.5 642.5C578.546 658.865 580.5 675 573.5 689C567.9 700.2 557.5 693.666 553 689C552 698.5 553 698 549 716C541.831 748.262 517 770 475 786C439.582 799.492 404 782.5 398 781.5Z" fill="#AEAEAE" stroke="white" stroke-width="30"/>
|
||||
<path d="M477.499 654C449.999 658.49 443 679 445.998 691.5C448.998 692.833 462.235 695.917 481.499 690.5C497.5 686 506.5 674.5 511.499 665.5C510.166 662.5 501.999 649.999 477.499 654Z" fill="white" stroke="white" stroke-width="30"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M502.692 657.994C497.648 655.123 489.719 653.018 477.66 654.987C464.152 657.192 455.786 663.306 451.145 670.299C446.614 677.126 445.591 684.849 446.858 690.769C450.385 692.08 463.04 694.652 481.228 689.537C496.604 685.213 505.391 674.275 510.372 665.466C509.544 663.882 507.275 660.602 502.692 657.994ZM503.681 656.255C509.159 659.373 511.67 663.423 512.413 665.093L512.615 665.549L512.373 665.985C507.309 675.103 498.132 686.861 481.77 691.462C462.323 696.931 448.841 693.858 445.592 692.414L445.141 692.213L445.026 691.733C443.462 685.213 444.512 676.676 449.478 669.193C454.463 661.683 463.346 655.297 477.338 653.013C489.779 650.981 498.183 653.126 503.681 656.255Z" fill="black" stroke="white" stroke-width="30"/>
|
||||
<path d="M454.5 732C442.5 725.2 420.167 734.833 410.5 740.5C415.5 742 411 744 429 746C431.894 746.322 445.167 743.667 451.5 742C457.5 741.5 466.5 738.8 454.5 732Z" fill="#888888" stroke="white" stroke-width="30" stroke-linecap="round"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M418.017 703.145C418.489 703.431 418.64 704.046 418.354 704.518C415.119 709.856 412.644 718.567 411.422 726.259C410.813 730.094 410.524 733.62 410.597 736.291C410.634 737.631 410.761 738.713 410.965 739.496C411.185 740.343 411.433 740.596 411.504 740.638C419.632 745.418 433.277 747.021 459.692 738.548C460.218 738.379 460.781 738.669 460.95 739.195C461.119 739.721 460.829 740.284 460.303 740.452C433.717 748.98 419.368 747.583 410.49 742.362C409.685 741.889 409.271 740.928 409.029 740.001C408.772 739.01 408.637 737.759 408.598 736.346C408.52 733.511 408.826 729.854 409.446 725.946C410.684 718.154 413.211 709.145 416.643 703.482C416.93 703.01 417.545 702.859 418.017 703.145Z" fill="black" stroke="white" stroke-width="30" stroke-linecap="round"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M401.585 676.222C398.42 674.779 393.94 673.765 388.124 674.492C381.96 675.263 378.195 677.468 375.972 679.896C373.739 682.336 373 685.069 373 687C373 687.552 372.552 688 372 688C371.448 688 371 687.552 371 687C371 684.598 371.907 681.375 374.497 678.546C377.098 675.704 381.332 673.326 387.876 672.508C394.06 671.735 398.913 672.805 402.415 674.403C405.88 675.984 408.069 678.106 408.868 679.504C409.142 679.983 408.976 680.594 408.496 680.868C408.017 681.142 407.406 680.976 407.132 680.496C406.597 679.561 404.787 677.683 401.585 676.222Z" fill="black" stroke="white" stroke-width="30" stroke-linecap="round"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M510.342 639.752C505.222 635.272 489.251 626.937 467.159 630.487C445.322 633.997 437.956 651.092 436.993 659.119C436.927 659.667 436.429 660.059 435.881 659.993C435.333 659.927 434.941 659.429 435.007 658.881C436.044 650.241 443.878 632.203 466.841 628.513C489.549 624.863 506.112 633.394 511.659 638.247C512.074 638.611 512.116 639.243 511.753 639.658C511.389 640.074 510.757 640.116 510.342 639.752Z" fill="black" stroke="white" stroke-width="30" stroke-linecap="round"/>
|
||||
<path d="M457.999 678C454.499 687 461.832 691.5 466.999 693C473.666 691.5 488.001 689.4 490.001 687C492.501 684 496.265 670.904 483.501 667.5C476.001 665.5 462.475 666.491 457.999 678Z" fill="black" stroke="white" stroke-width="30"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M469.898 668.643C465.245 670.013 461.032 672.96 458.931 678.362C457.311 682.527 458.211 685.516 460.015 687.67C461.82 689.825 464.608 691.226 467.035 691.967C468.655 691.609 470.679 691.22 472.833 690.805L472.935 690.785C475.25 690.34 477.718 689.864 480.038 689.36C482.362 688.856 484.512 688.33 486.193 687.787C487.035 687.516 487.736 687.248 488.274 686.986C488.836 686.713 489.122 686.493 489.232 686.36C489.74 685.751 490.393 684.509 490.876 682.882C491.353 681.273 491.637 679.375 491.478 677.485C491.32 675.601 490.726 673.753 489.472 672.186C488.222 670.624 486.261 669.271 483.243 668.466C479.648 667.508 474.579 667.265 469.898 668.643ZM469.333 666.725C474.409 665.23 479.854 665.493 483.758 666.534C487.122 667.431 489.477 668.991 491.033 670.936C492.586 672.876 493.287 675.127 493.471 677.318C493.655 679.503 493.326 681.654 492.793 683.451C492.266 685.229 491.511 686.749 490.769 687.64C490.379 688.108 489.779 688.478 489.149 688.785C488.494 689.103 487.695 689.405 486.807 689.691C485.031 690.264 482.805 690.807 480.462 691.315C478.115 691.824 475.624 692.304 473.313 692.749L473.236 692.764C470.948 693.205 468.848 693.609 467.218 693.976L466.967 694.032L466.72 693.96C464.035 693.181 460.7 691.603 458.482 688.955C456.203 686.234 455.186 682.473 457.067 677.638C459.442 671.531 464.229 668.227 469.333 666.725Z" fill="black" stroke="white" stroke-width="30"/>
|
||||
<path d="M394 694.5C384.4 696.1 381 704 380 708C380.833 710.167 384.3 715.2 395.5 716C406.7 716.8 412.833 707 414.5 702C411.667 698.834 403.6 692.9 394 694.5Z" fill="white" stroke="white" stroke-width="30"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M413.354 702.239C410.332 699.131 402.874 694.035 394.164 695.487C385.398 696.948 382.111 703.993 381.053 707.925C381.935 709.866 385.242 714.265 395.571 715.003C400.832 715.379 404.902 713.276 407.887 710.449C410.666 707.818 412.474 704.584 413.354 702.239ZM393.836 693.514C403.912 691.835 412.296 698.037 415.245 701.334L415.632 701.766L415.449 702.317C414.571 704.948 412.541 708.797 409.262 711.901C405.964 715.025 401.367 717.422 395.429 716.998C383.899 716.174 380.059 710.939 379.067 708.359L378.953 708.064L379.03 707.758C380.065 703.615 383.644 695.213 393.836 693.514Z" fill="black" stroke="white" stroke-width="30"/>
|
||||
<path d="M396.999 700.5C382.497 703.5 389.998 714.501 389.998 715.501C393.498 715.667 396.75 716.966 401 715.501C404.434 714.317 406.333 712.834 408.5 711C409.667 706.5 409.066 698.004 396.999 700.5Z" fill="black" stroke="white" stroke-width="30"/>
|
||||
<path d="M442.501 755C434.501 763 445.167 762.667 451.501 761.5C450.167 763.167 445 771.5 464 767C480.063 763.196 485.815 757.366 494 750C499 745.5 502.333 736.667 504 731C487.334 735.833 450.501 747 442.501 755Z" fill="white" stroke="white" stroke-width="30"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M510.148 709.011C510.695 709.093 511.071 709.602 510.989 710.148C510.932 710.526 510.886 711.043 510.828 711.68C510.397 716.471 509.35 728.102 498.722 739.192C492.847 745.323 484.009 750.678 475.161 754.662C466.311 758.647 457.331 761.312 451.109 761.994C450.56 762.054 450.066 761.658 450.006 761.109C449.946 760.56 450.342 760.066 450.891 760.006C456.836 759.355 465.606 756.77 474.34 752.838C483.074 748.906 491.653 743.678 497.278 737.808C507.385 727.262 508.39 716.336 508.835 711.496C508.897 710.825 508.948 710.272 509.011 709.852C509.093 709.306 509.602 708.929 510.148 709.011Z" fill="black" stroke="white" stroke-width="30" stroke-linecap="round"/>
|
||||
<path d="M368 856C369.2 850 386 875.5 388 875L396 875L329.5 1058C315.833 1066.5 287.1 1083.9 281.5 1085.5C275.9 1087.1 271.5 1084.83 270 1083.5L341.5 940C350.5 915.833 366.8 862 368 856Z" fill="#294B7E" stroke="white" stroke-width="30"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M397.126 874.825L330.32 1058.67L330.026 1058.85C323.188 1063.1 312.58 1069.58 302.978 1075.2C298.178 1078.01 293.623 1080.61 289.913 1082.6C286.246 1084.58 283.298 1086.03 281.773 1086.46C275.79 1088.17 271.045 1085.77 269.334 1084.25L268.762 1083.74L340.579 939.602C345.079 927.519 351.892 909.051 357.732 892.849C360.657 884.736 391.244 885.474 393.267 879.588C395.303 873.661 403.717 894.944 404 893.527C405.287 887.093 407.87 892.586 397.126 871.308V874.825ZM391.664 884C389.778 884.736 379.891 917.804 374 880C378.021 905.804 389.514 873.727 387.5 879.588C385.473 885.488 362.539 885.411 359.614 893.527C353.762 909.76 346.936 928.264 342.435 940.349L342.417 940.399L271.259 1083.21C272.965 1084.37 276.647 1085.85 281.223 1084.54C282.498 1084.17 285.242 1082.85 288.965 1080.84C292.644 1078.86 297.176 1076.28 301.968 1073.47C311.413 1067.95 321.841 1061.58 328.676 1057.33L394.87 875.175L391.664 884Z" fill="black" stroke="white" stroke-width="30"/>
|
||||
<path d="M308.498 1095.5L385.998 897.5L376.5 851.5L445 819.5L461 869L575.5 807.5L614 851.5L513 1219.5L492.5 1247C482.5 1260.67 444.8 1284.7 374 1271.5C285.5 1255 267.998 1182 260.998 1170.5C253.998 1159 258.001 1153 260.998 1148C263.475 1143.87 292.832 1111 308.498 1095.5Z" fill="#345D9D" stroke="white" stroke-width="30"/>
|
||||
<path d="M308.498 1095.5C308.498 1095.5 326.597 1137.98 351 1148C388 1163.19 430.088 1145.33 453 1127C520.5 1073 537 988 537 988L650.5 800.5L513 1219.5L492.5 1247C482.5 1260.67 444.8 1284.7 374 1271.5C285.5 1255 267.998 1182 260.998 1170.5C253.998 1159 258.001 1153 260.998 1148C263.475 1143.87 292.832 1111 308.498 1095.5Z" fill="#294B7E" stroke="white" stroke-width="30"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M578 817.5L628 823.922L513.899 1219.97L493.306 1247.59L493.305 1247.59C483.009 1261.66 444.866 1285.73 373.816 1272.48C329.284 1264.18 302.576 1241.64 286.136 1219.73C277.923 1208.77 272.279 1197.99 268.254 1189.23C266.48 1185.37 265.019 1181.9 263.794 1179C263.629 1178.61 263.469 1178.22 263.312 1177.85C261.979 1174.7 260.972 1172.38 260.144 1171.02C256.56 1165.13 255.597 1160.41 256.068 1156.51C256.538 1152.61 258.418 1149.69 260.208 1147.39C263.183 1143.56 291.915 1110.53 307.644 1094.94L385.067 897.136L386.929 897.865L309.352 1096.06L309.201 1096.21C293.563 1111.68 264.715 1144.85 261.787 1148.61C260.08 1150.81 258.46 1153.39 258.054 1156.75C257.65 1160.09 258.435 1164.37 261.852 1169.98C262.774 1171.5 263.845 1173.97 265.155 1177.08C265.311 1177.45 265.472 1177.83 265.637 1178.22C266.862 1181.13 268.311 1184.57 270.071 1188.4C274.061 1197.07 279.636 1207.73 287.736 1218.53C303.922 1240.11 330.215 1262.32 374.183 1270.52C444.729 1283.67 481.986 1259.68 491.692 1246.41L491.698 1246.4L512.1 1219.03L624 821.151L578 815L453.947 873.58L436 858L406 873.58V870.494L431 858L455.052 870.494L578 817.5Z" fill="black" stroke="white" stroke-width="30"/>
|
||||
<path d="M462 833.5L445.5 841.5L456.5 894L583.5 790.5L559.5 786.5L472.5 854L462 833.5Z" fill="#345D9D" stroke="white" stroke-width="30"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M559.234 785.441L585.848 789.877L455.913 895.769L444 865.5L459.37 848L473.039 852.317L559.234 785.441ZM559.769 787.558L471.964 855.682L459.37 844.5L444 848L457.09 892.23L581.154 791.122L559.769 787.558Z" fill="black" stroke="white" stroke-width="30"/>
|
||||
<path d="M567.002 857L610.002 811.5C629 802.5 626.3 828.4 637.5 832C648.7 835.6 668.833 832.334 667.5 845C639.5 970.5 583.2 1223.9 582 1233.5C580.5 1245.5 564 1248.5 552 1250.5C540 1252.5 524 1243 506.501 1233.5C494.004 1226.72 490.501 1192.5 494.002 1180.5C495.586 1175.07 542.335 962.5 567.002 857Z" fill="#345D9D" stroke="white" stroke-width="30"/>
|
||||
<path d="M531.5 1015.5C531.5 1015.5 518.498 1123.5 560 1123.5C601.502 1123.5 618.5 1066.5 618.5 1066.5C590.5 1192 583.2 1223.9 582 1233.5C580.5 1245.5 564 1248.5 552 1250.5C540 1252.5 524 1243 506.501 1233.5C494.004 1226.71 490.501 1192.5 494.002 1180.5C495.586 1175.07 506.833 1121 531.5 1015.5Z" fill="#294B7E" stroke="white" stroke-width="30"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M623.634 795.223C638.387 797.414 652.109 799.717 657.806 801.548C660.964 802.563 663.241 805.143 664.871 808.434C666.503 811.729 667.548 815.857 668.189 820.204C669.472 828.904 669.167 838.718 668.494 845.105L668.488 845.162L668.476 845.218C654.476 907.967 633.401 1002.69 615.676 1082.93C606.814 1123.05 598.789 1159.54 592.905 1186.61C589.963 1200.14 587.556 1211.31 585.848 1219.4C584.133 1227.53 583.135 1232.48 582.992 1233.62C582.177 1240.15 577.272 1244.11 571.332 1246.67C565.391 1249.22 558.146 1250.49 552.164 1251.49C545.866 1252.54 538.64 1250.56 530.917 1247.23C524.421 1244.43 517.44 1240.62 510.21 1236.66C508.823 1235.9 507.427 1235.14 506.023 1234.38C502.624 1232.53 499.945 1228.89 497.877 1224.47C495.799 1220.02 494.278 1214.64 493.269 1209.14C491.256 1198.17 491.228 1186.44 493.042 1180.22C493.608 1178.28 500.134 1149.02 509.404 1107.45C512.894 1091.79 516.773 1074.4 520.87 1056.06C535.838 989.05 553.693 909.528 566.028 856.772L566.089 856.509L609.275 810.813L610.728 812.187L567.914 857.49C555.584 910.236 537.766 989.596 522.822 1056.49C518.768 1074.64 514.925 1091.88 511.459 1107.42C502.136 1149.23 495.548 1178.77 494.962 1180.78C493.274 1186.56 493.248 1197.94 495.236 1208.77C496.226 1214.17 497.706 1219.37 499.689 1223.62C501.684 1227.89 504.129 1231.07 506.978 1232.62C508.395 1233.39 509.8 1234.16 511.192 1234.92C518.425 1238.87 525.307 1242.64 531.708 1245.39C539.359 1248.69 546.134 1250.46 551.836 1249.51C557.854 1248.51 564.859 1247.28 570.542 1244.83C576.227 1242.39 580.323 1238.85 581.007 1233.38C581.164 1232.12 582.189 1227.05 583.891 1218.99C585.601 1210.9 588.008 1199.72 590.951 1186.18C596.835 1159.11 604.861 1122.62 613.723 1082.5C631.443 1002.28 652.511 907.589 666.511 844.838C667.168 838.557 667.457 828.954 666.21 820.496C665.585 816.251 664.58 812.354 663.079 809.322C661.575 806.286 659.636 804.237 657.194 803.452C651.69 801.683 638.162 799.402 623.34 797.202C612.466 795.587 600.965 794.024 591.56 792.746C588.182 792.287 585.074 791.865 582.363 791.49L582.637 789.509C585.34 789.883 588.443 790.304 591.817 790.763C601.224 792.041 612.746 793.606 623.634 795.223Z" fill="black" stroke="white" stroke-width="30"/>
|
||||
<path d="M227 1038.5C226.2 1029.7 257.333 974.833 273 948.5L336 962.5C330.833 990.833 317.9 1051.3 307.5 1066.5C294.5 1085.5 277.5 1089.5 256.5 1084.5C235.5 1079.5 228 1049.5 227 1038.5Z" fill="#345D9D" stroke="white" stroke-width="30"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M272.51 947.367L337.156 961.732L336.984 962.679C334.397 976.862 329.868 999.084 324.682 1019.67C322.089 1029.96 319.329 1039.86 316.562 1048.14C313.806 1056.39 311.011 1063.14 308.325 1067.06C301.723 1076.71 294.054 1082.62 285.308 1085.45C276.578 1088.28 266.879 1088 256.268 1085.47C245.336 1082.87 238.026 1073.79 233.351 1064.19C228.665 1054.56 226.513 1044.19 226.004 1038.59C225.94 1037.89 226.038 1037.05 226.234 1036.12C226.432 1035.18 226.746 1034.09 227.156 1032.87C227.976 1030.43 229.203 1027.43 230.734 1024.02C233.799 1017.2 238.117 1008.67 242.942 999.605C252.593 981.478 264.302 961.164 272.14 947.989L272.51 947.367ZM273.489 949.633C265.666 962.803 254.189 982.737 244.707 1000.54C239.89 1009.59 235.596 1018.08 232.559 1024.84C231.039 1028.22 229.842 1031.16 229.052 1033.51C228.656 1034.68 228.368 1035.69 228.191 1036.53C228.011 1037.39 227.959 1038.01 227.995 1038.41C228.486 1043.81 230.585 1053.94 235.149 1063.31C239.723 1072.71 246.664 1081.13 256.732 1083.53C267.12 1086 276.422 1086.22 284.692 1083.55C292.946 1080.88 300.277 1075.29 306.675 1065.94C309.189 1062.26 311.911 1055.75 314.666 1047.5C317.41 1039.29 320.156 1029.45 322.743 1019.18C327.801 999.101 332.236 977.447 334.843 963.267L273.489 949.633Z" fill="black" stroke="white" stroke-width="30"/>
|
||||
<path d="M308.5 850.5L248.5 862.5L276.249 923.944L340 926L308.5 850.5Z" fill="#454545"/>
|
||||
<path d="M276.5 924.5L276.249 923.944M276.249 923.944L248.5 862.5L308.5 850.5L340 926L276.249 923.944Z" stroke="white" stroke-width="30"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M309.106 849.359L341.521 927.05L276.216 924.944L276.226 924.623L275.588 924.912L247.07 861.766L309.106 849.359ZM276.903 922.965L338.478 924.951L307.892 851.641L249.928 863.234L276.903 922.965Z" fill="black" stroke="white" stroke-width="30"/>
|
||||
<path d="M268.501 923C260.101 936.6 268.668 954.334 274.001 961.5C274.001 962.833 275.501 966.5 281.5 970.5C288.999 975.5 318 970.5 319.5 970.5C321 970.5 336.5 970.5 342.5 965.5C348.5 960.5 346.5 957 348 951.5C349.5 946 348.5 942 346.5 937C344.5 932 346.5 929.5 344 920.5C342 913.3 315.5 917.5 302.5 920.5C310 918.5 326.2 912 331 902C337 889.5 279.001 906 268.501 923Z" fill="#AEAEAE" stroke="white" stroke-width="30"/>
|
||||
<path d="M273 874.5C273 876.985 270.985 879 268.5 879C266.015 879 264 876.985 264 874.5C264 872.015 266.015 870 268.5 870C270.985 870 273 872.015 273 874.5Z" fill="black" stroke="white" stroke-width="30"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M205 1237.5C205.552 1237.5 206 1237.95 206 1238.5C206 1253.85 210.165 1267.81 216.791 1276.39C220.059 1280.62 225.03 1283.91 230.274 1286.73C232.836 1288.11 235.436 1289.36 237.911 1290.55L238.062 1290.63C240.571 1291.83 242.957 1292.98 244.99 1294.13C245.472 1294.4 245.642 1295.01 245.372 1295.49C245.101 1295.97 244.491 1296.14 244.01 1295.87C242.043 1294.77 239.717 1293.64 237.194 1292.43L237.028 1292.35C234.564 1291.16 231.928 1289.89 229.326 1288.49C224.02 1285.64 218.741 1282.18 215.209 1277.61C208.235 1268.59 204 1254.15 204 1238.5C204 1237.95 204.448 1237.5 205 1237.5Z" fill="#4D8CEF" stroke="white" stroke-width="30" stroke-linecap="round"/>
|
||||
<path d="M331 1580.5C323.8 1575.7 331 1525.5 335.5 1501C338.667 1489.67 344.9 1466.7 344.5 1465.5C344.1 1464.3 375.667 1471 391.5 1474.5L374 1545L346.5 1590C344.333 1588.83 338.2 1585.3 331 1580.5Z" fill="#454545" stroke="black" stroke-width="2" stroke-linecap="round"/>
|
||||
<path d="M271.5 1690C273.5 1684.8 334.333 1661.17 364.5 1650L429 1648.5L425 1707.5H268C268.333 1703.83 269.5 1695.2 271.5 1690Z" fill="#454545" stroke="black" stroke-width="2" stroke-linecap="round"/>
|
||||
<path d="M330.5 1510L199.5 1295.5L308 1260L379 1479L330.5 1510Z" fill="#1B2645"/>
|
||||
<g opacity="0.5">
|
||||
<path d="M229.5 1342.5C244.833 1342.5 264.5 1345 292 1332C312.998 1322.07 318.333 1312.67 323 1308.5" stroke="#4D8CEF" stroke-width="2" stroke-linecap="round"/>
|
||||
<path d="M260 1393C271.333 1393.67 295.779 1390.83 309 1383C322.5 1375 333 1360.67 337.5 1355.5" stroke="#4D8CEF" stroke-width="2" stroke-linecap="round"/>
|
||||
<path d="M289.5 1440.5C300.333 1439.83 316.161 1442.25 330.5 1431.5C346.5 1419.5 348.333 1409.83 353 1402.5" stroke="#4D8CEF" stroke-width="2" stroke-linecap="round"/>
|
||||
<path d="M234.5 1298.5L344.5 1500.5" stroke="#4D8CEF" stroke-width="2" stroke-linecap="round"/>
|
||||
<path d="M285 1284.5L363 1489" stroke="#4D8CEF" stroke-width="2" stroke-linecap="round"/>
|
||||
</g>
|
||||
<path d="M193.499 1254.5C203.999 1227.5 279.499 1169.5 281.499 1168L367.997 1257.5C316.998 1274.67 235.999 1301 210.5 1302.5C201 1303.06 182.993 1281.52 193.499 1254.5Z" fill="#283963"/>
|
||||
<path d="M201 1296.5C202.5 1295.5 239 1287.5 261 1278.5C279.095 1271.1 318.333 1246.67 339 1234.5" stroke="#4D8CEF" stroke-width="2" stroke-linecap="round"/>
|
||||
<path d="M246 1198.5C249 1212 259.632 1237.57 268.5 1247.5C281 1261.5 299 1270.5 309.5 1275" stroke="#4D8CEF" stroke-width="2" stroke-linecap="round"/>
|
||||
<path d="M296.5 1194.5C274.333 1209.83 262 1214.5 232 1240C202 1265.5 197 1279.5 195 1287.5" stroke="#4D8CEF" stroke-width="2" stroke-linecap="round"/>
|
||||
<path d="M352 1645L383.5 1260.5C389.667 1256.83 407.2 1248.4 428 1244C448.8 1239.6 493.667 1258.5 513.5 1268.5L434 1653.5C427.667 1657.17 410 1664.1 390 1662.5C370 1660.9 356.333 1650.17 352 1645Z" fill="#283963"/>
|
||||
<path d="M379.5 1309.5C390 1310.5 414.255 1322.9 440.5 1322.5C473.5 1322 496.5 1307 505 1309" stroke="#4D8CEF" stroke-width="2"/>
|
||||
<path d="M373 1390.7C382.622 1391.72 404.844 1403.99 428.896 1403.99C468 1403.99 479.711 1390.96 487.5 1393" stroke="#4D8CEF" stroke-width="2"/>
|
||||
<path d="M366 1472C375.622 1473.02 397.844 1485.29 421.896 1485.29C461 1485.29 462.5 1481 469 1482.5" stroke="#4D8CEF" stroke-width="2"/>
|
||||
<path d="M361 1548.5C364.5 1556.5 381.454 1570.93 405.5 1571.5C447.5 1572.5 450.5 1562.5 452.5 1559" stroke="#4D8CEF" stroke-width="2" stroke-linecap="round"/>
|
||||
<path d="M414 1275.5L371 1658" stroke="#4D8CEF" stroke-width="2"/>
|
||||
<path d="M466 1265.5L403 1662" stroke="#4D8CEF" stroke-width="2"/>
|
||||
<path d="M489.5 1284C481.1 1280.8 471.667 1267.67 468 1261.5L512.5 1218.5L563.5 1240.5C551.5 1255 526.9 1284.6 524.5 1287C521.5 1290 516 1291.5 504.5 1291C493 1290.5 500 1288 489.5 1284Z" fill="#AEAEAE"/>
|
||||
<path d="M572.998 605.5C576.998 634.5 571.998 651.5 568.998 652.5L549 668.5C538.333 658.333 510 636.2 482 629C454 621.8 397.332 682 372.498 708.5L350 674C346.166 679.166 336.7 693.7 317.5 690.5C298.3 687.3 308.5 664.166 317.5 655.5C315.499 657 307.899 659.7 293.499 658.5C275.499 657 272.039 632.96 283.497 617C297.494 597.5 316.165 590.166 331.999 583.5C324.499 584 295.338 588.774 305 561.5C313.501 537.5 360.498 534.666 392.498 531.5L392.389 531.459C386.94 529.416 370.402 523.216 372.498 513C376.5 493.5 391.867 486.5 430.998 486.5C473 486.5 511.498 507 528.998 517.5C546.498 528 568.998 576.5 572.998 605.5Z" fill="black"/>
|
||||
<path d="M475.5 804L456.5 813.5L467 876L567.5 792L544.5 775.5L545.5 743C537.5 751 524.5 769.5 506 779.5C490.987 787.615 480.5 792 475.5 792V804Z" fill="#888888"/>
|
||||
<path d="M398 781.5C393.2 780.7 365 692.5 351.5 648.5C355.333 646.5 368.898 633.656 403 618.5C452.5 596.5 485.19 599.952 501.5 602.5C517.5 605 538.667 638.667 549 657C549 654.167 548.021 645.309 553 636.5C559.5 625 575 630.5 576.5 642.5C578.546 658.865 580.5 675 573.5 689C567.9 700.2 557.5 693.666 553 689C552 698.5 553 698 549 716C541.831 748.262 517 770 475 786C439.582 799.492 404 782.5 398 781.5Z" fill="#AEAEAE"/>
|
||||
<path d="M477.499 654C449.999 658.49 443 679 445.998 691.5C448.998 692.833 462.235 695.917 481.499 690.5C497.5 686 506.5 674.5 511.499 665.5C510.166 662.5 501.999 649.999 477.499 654Z" fill="white" stroke="black" stroke-width="2"/>
|
||||
<path d="M454.5 732C442.5 725.2 420.167 734.833 410.5 740.5C415.5 742 411 744 429 746C431.894 746.322 445.167 743.667 451.5 742C457.5 741.5 466.5 738.8 454.5 732Z" fill="#888888"/>
|
||||
<path d="M417.499 704C410.832 715 407.494 739.44 410.997 741.5C419.5 746.5 433.497 748 459.998 739.5" stroke="black" stroke-width="2" stroke-linecap="round"/>
|
||||
<path d="M372 687C372 682.667 375.293 675.089 388 673.5C400 672 406.667 677.667 408 680" stroke="black" stroke-width="2" stroke-linecap="round"/>
|
||||
<path d="M436 659C437 650.666 444.6 633.1 467 629.5C489.4 625.9 505.667 634.333 511 639" stroke="black" stroke-width="2" stroke-linecap="round"/>
|
||||
<path d="M457.999 678C454.499 687 461.832 691.5 466.999 693C473.666 691.5 488.001 689.4 490.001 687C492.501 684 496.265 670.904 483.501 667.5C476.001 665.5 462.475 666.491 457.999 678Z" fill="black" stroke="black" stroke-width="2"/>
|
||||
<path d="M394 694.5C384.4 696.1 381 704 380 708C380.833 710.167 384.3 715.2 395.5 716C406.7 716.8 412.833 707 414.5 702C411.667 698.834 403.6 692.9 394 694.5Z" fill="white" stroke="black" stroke-width="2"/>
|
||||
<path d="M396.999 700.5C382.497 703.5 389.998 714.501 389.998 715.501C393.498 715.667 396.75 716.966 401 715.501C404.434 714.317 406.333 712.834 408.5 711C409.667 706.5 409.066 698.004 396.999 700.5Z" fill="black"/>
|
||||
<path d="M442.501 755C434.501 763 445.167 762.667 451.501 761.5C450.167 763.167 445 771.5 464 767C480.063 763.196 485.815 757.366 494 750C499 745.5 502.333 736.667 504 731C487.334 735.833 450.501 747 442.501 755Z" fill="white"/>
|
||||
<path d="M451 761C463.167 759.667 486.5 750.5 498 738.5C509.775 726.213 509.5 713.333 510 710" stroke="black" stroke-width="2" stroke-linecap="round"/>
|
||||
<path d="M370 860C371.2 854 375.5 851.5 377.5 851L396 875L329.5 1058C315.833 1066.5 287.1 1083.9 281.5 1085.5C275.9 1087.1 271.5 1084.83 270 1083.5L341.5 940C350.5 915.833 368.8 866 370 860Z" fill="#294B7E" stroke="black" stroke-width="2"/>
|
||||
<path d="M308.498 1095.5L385.998 897.5L376.5 851.5L445 819.5L461 869L581.5 790.5L650.5 800.5L513 1219.5L492.5 1247C482.5 1260.67 444.8 1284.7 374 1271.5C285.5 1255 267.998 1182 260.998 1170.5C253.998 1159 258.001 1153 260.998 1148C263.475 1143.87 292.832 1111 308.498 1095.5Z" fill="#345D9D"/>
|
||||
<path d="M308.498 1095.5C308.498 1095.5 326.597 1137.98 351 1148C388 1163.19 430.088 1145.33 453 1127C520.5 1073 537 988 537 988L650.5 800.5L513 1219.5L492.5 1247C482.5 1260.67 444.8 1284.7 374 1271.5C285.5 1255 267.998 1182 260.998 1170.5C253.998 1159 258.001 1153 260.998 1148C263.475 1143.87 292.832 1111 308.498 1095.5Z" fill="#294B7E"/>
|
||||
<path d="M385.998 897.5L308.498 1095.5C292.831 1111 263.954 1144.2 260.998 1148C257.5 1152.5 253.998 1159 260.998 1170.5C267.998 1182 285.499 1255 373.999 1271.5C444.799 1284.7 482.499 1260.67 492.499 1247L512.999 1219.5L650.499 800.5L581.499 790.5L454.499 872.036L438.499 822.536L376.499 851.5" stroke="black" stroke-width="2"/>
|
||||
<path d="M460 812.5L438.5 822L456.5 894L583.5 790.5L559.5 786.5L472.5 854L460 812.5Z" fill="#345D9D" stroke="black" stroke-width="2"/>
|
||||
<path d="M567.002 857L610.002 811.5C629 802.5 646.3 798.9 657.5 802.5C668.7 806.1 668.833 832.334 667.5 845C639.5 970.5 583.2 1223.9 582 1233.5C580.5 1245.5 564 1248.5 552 1250.5C540 1252.5 524 1243 506.501 1233.5C494.004 1226.72 490.501 1192.5 494.002 1180.5C495.586 1175.07 542.335 962.5 567.002 857Z" fill="#345D9D"/>
|
||||
<path d="M531.5 1015.5C531.5 1015.5 518.498 1123.5 560 1123.5C601.502 1123.5 618.5 1066.5 618.5 1066.5C590.5 1192 583.2 1223.9 582 1233.5C580.5 1245.5 564 1248.5 552 1250.5C540 1252.5 524 1243 506.501 1233.5C494.004 1226.71 490.501 1192.5 494.002 1180.5C495.586 1175.07 506.833 1121 531.5 1015.5Z" fill="#294B7E"/>
|
||||
<path d="M610.002 811.5L567.002 857C542.335 962.5 495.586 1175.07 494.002 1180.5C490.501 1192.5 494.004 1226.71 506.501 1233.5C524 1243 540 1252.5 552 1250.5C564 1248.5 580.5 1245.5 582 1233.5C583.2 1223.9 639.5 970.5 667.5 845C668.833 832.333 668.7 806.1 657.5 802.5C646.3 798.9 603 793.333 582.5 790.5" stroke="black" stroke-width="2"/>
|
||||
<path d="M227 1038.5C226.2 1029.7 257.333 974.833 273 948.5L336 962.5C330.833 990.833 317.9 1051.3 307.5 1066.5C294.5 1085.5 277.5 1089.5 256.5 1084.5C235.5 1079.5 228 1049.5 227 1038.5Z" fill="#345D9D" stroke="black" stroke-width="2"/>
|
||||
<path d="M308.5 850.5L248.5 862.5L276.249 923.944L340 926L308.5 850.5Z" fill="#454545"/>
|
||||
<path d="M276.5 924.5L276.249 923.944M276.249 923.944L248.5 862.5L308.5 850.5L340 926L276.249 923.944Z" stroke="black" stroke-width="2"/>
|
||||
<path d="M268.501 923C260.101 936.6 268.668 954.334 274.001 961.5C274.001 962.833 275.501 966.5 281.5 970.5C288.999 975.5 318 970.5 319.5 970.5C321 970.5 336.5 970.5 342.5 965.5C348.5 960.5 346.5 957 348 951.5C349.5 946 348.5 942 346.5 937C344.5 932 346.5 929.5 344 920.5C342 913.3 315.5 917.5 302.5 920.5C310 918.5 326.2 912 331 902C337 889.5 279.001 906 268.501 923Z" fill="#AEAEAE"/>
|
||||
<circle cx="268.5" cy="874.5" r="4.5" fill="black"/>
|
||||
<path d="M205 1238.5C205 1254 209.2 1268.2 216 1277C222.8 1285.8 236.5 1290.5 244.5 1295" stroke="#4D8CEF" stroke-width="2" stroke-linecap="round"/>
|
||||
<circle cx="1640" cy="503" r="83" fill="white"/>
|
||||
<circle cx="1452" cy="191" r="83" fill="#5497FF"/>
|
||||
<circle cx="1773" cy="633" r="50" fill="white"/>
|
||||
<rect x="719.036" y="182.038" width="106.021" height="106.021" rx="15" transform="rotate(13.637 719.036 182.038)" stroke="white" stroke-width="10"/>
|
||||
<rect x="877.328" y="182.853" width="65.3526" height="65.3526" rx="15" transform="rotate(-9.79052 877.328 182.853)" stroke="white" stroke-width="10"/>
|
||||
<rect x="510" y="1500" width="415.763" height="52.8706" rx="26.4353" fill="#C3E9FF"/>
|
||||
<rect x="584.234" y="1564.96" width="415.763" height="52.8706" rx="26.4353" fill="#C3E9FF"/>
|
||||
<path d="M629.421 1560.95C627.476 1553.53 609.84 1553.21 596.617 1551.43L907.739 1549.1C901.037 1549.19 884.218 1556.83 884.218 1560.95C884.218 1574.27 931.871 1568.25 907.87 1571.75H615.285C618.336 1570.42 631.517 1568.95 629.421 1560.95Z" fill="#C3E9FF"/>
|
||||
<rect width="179.032" height="16.1538" rx="8.07691" transform="matrix(-1 0 0 1 926 1650)" fill="#C3E9FF"/>
|
||||
<rect width="179.032" height="16.1538" rx="8.07691" transform="matrix(-1 0 0 1 894.035 1669.85)" fill="#C3E9FF"/>
|
||||
<path d="M874.578 1668.62C875.415 1666.36 883.009 1666.26 888.703 1665.71L754.731 1665C757.617 1665.03 764.859 1667.36 764.859 1668.62C764.859 1672.69 744.339 1670.85 754.674 1671.92H880.665C879.351 1671.52 873.675 1671.07 874.578 1668.62Z" fill="#C3E9FF"/>
|
||||
<path d="M142.223 1064.76L280.224 1118.44" stroke="white" stroke-width="10"/>
|
||||
<path d="M62.5755 1260.67L247.119 1332.46" stroke="white" stroke-width="10"/>
|
||||
<path d="M93.8743 1306.04L195.001 1345.45" stroke="white" stroke-width="10"/>
|
||||
<path d="M174.507 1045.76L275.634 1085.17" stroke="white" stroke-width="10"/>
|
||||
<path d="M96.7097 1076.56L303.155 1157.4" stroke="white" stroke-width="10"/>
|
||||
<path d="M62.1995 1096.87L317.439 1196.96" stroke="white" stroke-width="10"/>
|
||||
<path d="M28.8245 1218.43L284.064 1318.51" stroke="white" stroke-width="10"/>
|
||||
<path d="M21.0727 1113.58L342.333 1239.26" stroke="white" stroke-width="10"/>
|
||||
<path d="M3.92815 1176.13L325.188 1301.81" stroke="white" stroke-width="10"/>
|
||||
<path d="M-6.36425 1135.72L332.121 1267.75" stroke="white" stroke-width="10"/>
|
||||
<circle cx="1893" cy="1281" r="83" fill="#5497FF"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_1057_362">
|
||||
<rect width="2000" height="2000" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
After Width: | Height: | Size: 58 KiB |
110
assets/svg/themed/dark/monero.svg
Normal file
After Width: | Height: | Size: 94 KiB |
189
assets/svg/themed/dark/namecoin.svg
Normal file
After Width: | Height: | Size: 120 KiB |
220
assets/svg/themed/dark/particl.svg
Normal file
After Width: | Height: | Size: 129 KiB |
Before Width: | Height: | Size: 8.2 KiB After Width: | Height: | Size: 8.2 KiB |
Before Width: | Height: | Size: 11 KiB After Width: | Height: | Size: 11 KiB |
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 1.1 KiB |
115
assets/svg/themed/dark/stack.svg
Normal file
After Width: | Height: | Size: 68 KiB |
Before Width: | Height: | Size: 2.3 KiB After Width: | Height: | Size: 2.3 KiB |
Before Width: | Height: | Size: 2.2 KiB After Width: | Height: | Size: 2.2 KiB |
Before Width: | Height: | Size: 1.8 KiB After Width: | Height: | Size: 1.8 KiB |
Before Width: | Height: | Size: 1,020 B After Width: | Height: | Size: 1,020 B |
Before Width: | Height: | Size: 1 KiB After Width: | Height: | Size: 1 KiB |
Before Width: | Height: | Size: 421 B After Width: | Height: | Size: 421 B |
Before Width: | Height: | Size: 985 B After Width: | Height: | Size: 985 B |
Before Width: | Height: | Size: 833 B After Width: | Height: | Size: 833 B |
Before Width: | Height: | Size: 426 B After Width: | Height: | Size: 426 B |
125
assets/svg/themed/dark/wownero.svg
Normal file
After Width: | Height: | Size: 105 KiB |
5
assets/svg/themed/forest/bell-new.svg
Normal file
|
@ -0,0 +1,5 @@
|
|||
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M12.5 17.5C12.5 17.9193 12.2383 18.3672 11.7695 18.6797C11.3008 18.9922 10.6289 19.1667 10 19.1667C9.33594 19.1667 8.69922 18.9922 8.23047 18.6797C7.76172 18.3672 7.5 17.9193 7.5 17.5H12.5Z" fill="#22867A"/>
|
||||
<path d="M11.1903 1.98716V2.67947C13.9059 3.2142 15.9519 5.54245 15.9519 8.33331V9.0112C15.9519 10.7095 16.5955 12.3429 17.7561 13.6122L18.0314 13.9114C18.3439 14.254 18.422 14.7372 18.2286 15.1518C18.0351 15.5665 17.611 15.8333 17.1423 15.8333H2.85739C2.38867 15.8333 1.96351 15.5665 1.77148 15.1518C1.57945 14.7372 1.65626 14.254 1.96771 13.9114L2.24359 13.6122C3.40573 12.3429 4.0478 10.7095 4.0478 9.0112V8.33331C4.0478 5.54245 6.06034 3.2142 8.80945 2.67947V1.98716C8.80945 1.35002 9.34141 0.833313 9.99986 0.833313C10.6583 0.833313 11.1903 1.35002 11.1903 1.98716Z" fill="#22867A"/>
|
||||
<ellipse cx="17.0833" cy="2.91665" rx="2.08333" ry="2.08333" fill="#D34E50"/>
|
||||
</svg>
|
After Width: | Height: | Size: 987 B |
40
assets/svg/themed/forest/bg.svg
Normal file
|
@ -0,0 +1,40 @@
|
|||
<svg width="360" height="640" viewBox="0 0 360 640" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_819_23246)">
|
||||
<g opacity="0.8">
|
||||
<path d="M420.999 334.895C422.537 330.665 421.229 319.437 403.694 308.362C386.159 297.287 377.93 285.289 376.007 280.674C376.391 276.06 373.93 266.369 361.01 264.524C348.089 262.678 320.627 242.671 312.167 236.133L296.406 227.607C283.078 217.577 292.032 257.253 239.878 270.292C198.347 280.674 196.04 338.356 155.663 323.359C123.361 311.361 121.561 299.133 97.9814 299.133C82.4422 299.133 71.2171 342.74 56.4506 323.359C37.9925 299.133 14.9198 258.755 1.07626 264.524C-9.35165 268.869 -13.7792 276.282 -14.903 280.022C-15.154 277.873 -28.1293 284.789 -36.7052 293.364C-48.2415 304.901 -46.2227 293.364 -58.9126 308.362C-71.6026 323.359 -78.5244 323.951 -78.5244 334.895V584.696H420.999L420.999 334.895Z" fill="#D0FDEC"/>
|
||||
<path d="M-76.5246 390.563C-78.0581 386.346 -76.7546 375.152 -59.2728 364.111C-41.7911 353.07 -33.5868 341.108 -31.6698 336.508C-32.0532 331.907 -29.5996 322.246 -16.7183 320.406C-3.83701 318.566 16.2517 305.071 24.6859 298.554L47.6882 283.603C71.8406 291.653 52.0492 313.158 104.044 326.157C145.448 336.508 147.748 394.014 188.002 379.062C220.206 367.101 222 354.91 245.508 354.91C261 354.91 272.191 398.384 286.912 379.062C305.314 354.91 328.316 314.656 342.118 320.406C352.514 324.738 356.928 332.129 358.048 335.858C358.299 333.715 371.234 340.609 379.784 349.159C391.285 360.66 389.273 349.159 401.924 364.111C414.575 379.062 421.476 379.652 421.476 390.563V639.603H-76.5246L-76.5246 390.563Z" fill="#BFF3DF"/>
|
||||
<path d="M-70.3665 428.644H-56.8966L-78.5301 448.645H-66.2847L-86.6937 471.503H-78.5301L-92 487.422H3.10577L-13.6296 471.503H-5.87418L-26.6913 448.645H-13.6296L-33.6304 428.644H-21.385L-46.2839 404.97L-70.3665 428.644Z" fill="#DAFCE3"/>
|
||||
<path d="M-18.3387 417.005H-2.20946L-28.114 440.966H-13.451L-37.8892 468.351H-28.114L-44.2432 487.422H69.6388L49.5995 468.351H58.886L33.9591 440.966H49.5995L25.6501 417.005H40.313L10.4984 388.643L-18.3387 417.005Z" fill="#DAFCE3"/>
|
||||
<path d="M106.564 417.005H122.693L96.7884 440.966H111.451L87.0131 468.351H96.7884L80.6592 487.422H194.541L174.502 468.351H183.788L158.861 440.966H174.502L150.552 417.005H165.215L135.401 388.643L106.564 417.005Z" fill="#DAFCE3"/>
|
||||
<path d="M169.922 427.771H183.565L161.653 448.069H174.056L153.384 471.266H161.653L148.01 487.422H244.34L227.389 471.266H235.244L214.159 448.069H227.389L207.131 427.771H219.534L194.314 403.745L169.922 427.771Z" fill="#DAFCE3"/>
|
||||
<path d="M303.396 427.771H317.04L295.128 448.069H307.531L286.859 471.266H295.128L281.484 487.422H377.815L360.864 471.266H368.719L347.634 448.069H360.864L340.606 427.771H353.009L327.789 403.745L303.396 427.771Z" fill="#DAFCE3"/>
|
||||
<path d="M347.446 415.551H363.864L337.495 440.007H352.421L327.545 467.958H337.495L321.077 487.423H437L416.602 467.958H426.055L400.681 440.007H416.602L392.223 415.551H407.149L376.8 386.603L347.446 415.551Z" fill="#DAFCE3"/>
|
||||
<path d="M227.475 427.771H241.118L219.206 448.069H231.609L210.937 471.266H219.206L205.562 487.422H301.893L284.942 471.266H292.797L271.712 448.069H284.942L264.684 427.771H277.087L251.867 403.745L227.475 427.771Z" fill="#DAFCE3"/>
|
||||
<path d="M45.7196 441.448H56.2411L39.3429 457.092H48.9079L32.9661 474.972H39.3429L28.8213 487.423H103.11L90.0377 474.972H96.0955L79.8349 457.092H90.0377L74.4147 441.448H83.9798L64.5308 422.931L45.7196 441.448Z" fill="#DAFCE3"/>
|
||||
<path d="M272.259 441.448H282.78L265.882 457.092H275.447L259.505 474.972H265.882L255.36 487.423H329.649L316.577 474.972H322.635L306.374 457.092H316.577L300.954 441.448H310.519L291.07 422.931L272.259 441.448Z" fill="#DAFCE3"/>
|
||||
<path d="M-10.3665 450.644H3.10342L-18.5301 470.645H-6.28471L-26.6937 493.503H-18.5301L-32 509.422H63.1058L46.3704 493.503H54.1258L33.3087 470.645H46.3704L26.3696 450.644H38.615L13.7161 426.97L-10.3665 450.644Z" fill="#DAFCE3"/>
|
||||
<path d="M41.6613 439.005H57.7905L31.886 462.966H46.549L22.1108 490.351H31.886L15.7568 509.422H129.639L109.6 490.351H118.886L93.9591 462.966H109.6L85.6501 439.005H100.313L70.4984 410.643L41.6613 439.005Z" fill="#DAFCE3"/>
|
||||
<path d="M166.564 439.005H182.693L156.788 462.966H171.451L147.013 490.351H156.788L140.659 509.422H254.541L234.502 490.351H243.788L218.861 462.966H234.502L210.552 439.005H225.215L195.401 410.643L166.564 439.005Z" fill="#DAFCE3"/>
|
||||
<path d="M229.922 449.771H243.565L221.653 470.069H234.056L213.384 493.266H221.653L208.01 509.422H304.34L287.389 493.266H295.244L274.159 470.069H287.389L267.131 449.771H279.534L254.314 425.745L229.922 449.771Z" fill="#DAFCE3"/>
|
||||
<path d="M363.396 449.771H377.04L355.128 470.069H367.531L346.859 493.266H355.128L341.484 509.422H437.815L420.864 493.266H428.719L407.634 470.069H420.864L400.606 449.771H413.009L387.789 425.745L363.396 449.771Z" fill="#DAFCE3"/>
|
||||
<path d="M287.475 449.771H301.118L279.206 470.069H291.609L270.937 493.266H279.206L265.562 509.422H361.893L344.942 493.266H352.797L331.712 470.069H344.942L324.684 449.771H337.087L311.867 425.745L287.475 449.771Z" fill="#DAFCE3"/>
|
||||
<path d="M105.72 463.448H116.241L99.3429 479.092H108.908L92.9661 496.972H99.3429L88.8213 509.423H163.11L150.038 496.972H156.096L139.835 479.092H150.038L134.415 463.448H143.98L124.531 444.931L105.72 463.448Z" fill="#DAFCE3"/>
|
||||
<path d="M332.259 463.448H342.78L325.882 479.092H335.447L319.505 496.972H325.882L315.36 509.423H389.649L376.577 496.972H382.635L366.374 479.092H376.577L360.954 463.448H370.519L351.07 444.931L332.259 463.448Z" fill="#DAFCE3"/>
|
||||
<rect x="-27" y="510" width="400" height="149" fill="#EDFFF2"/>
|
||||
<path d="M-10.6419 464.644H-0.456718L-16.8148 484.645H-7.5555L-22.9876 507.503H-16.8148L-27 523.422H44.9138L32.2594 507.503H38.1236L22.3829 484.645H32.2594L17.1359 464.644H26.3952L7.56799 440.97L-10.6419 464.644Z" fill="#EDFFF2"/>
|
||||
<path d="M28.6979 453.005H40.8939L21.3064 476.966H32.3937L13.9148 504.351H21.3064L9.11035 523.422H95.2217L80.0691 504.351H87.091L68.2426 476.966H80.0691L61.9598 453.005H73.0471L50.5029 424.643L28.6979 453.005Z" fill="#EDFFF2"/>
|
||||
<path d="M120.143 453.005H132.339L112.752 476.966H123.839L105.36 504.351H112.752L100.556 523.422H186.667L171.514 504.351H178.536L159.688 476.966H171.514L153.405 453.005H164.492L141.948 424.643L120.143 453.005Z" fill="#EDFFF2"/>
|
||||
<path d="M171.051 463.771H181.367L164.799 484.069H174.177L158.546 507.266H164.799L154.482 523.422H227.322L214.505 507.266H220.445L204.501 484.069H214.505L199.187 463.771H208.565L189.495 439.745L171.051 463.771Z" fill="#EDFFF2"/>
|
||||
<path d="M271.977 463.771H282.293L265.725 484.069H275.103L259.472 507.266H265.725L255.408 523.422H328.248L315.431 507.266H321.37L305.427 484.069H315.431L300.112 463.771H309.491L290.421 439.745L271.977 463.771Z" fill="#EDFFF2"/>
|
||||
<path d="M305.283 451.551H317.698L297.759 476.007H309.045L290.235 503.958H297.759L285.345 523.423H372.999L357.575 503.958H364.723L345.537 476.007H357.575L339.141 451.551H350.427L327.479 422.603L305.283 451.551Z" fill="#EDFFF2"/>
|
||||
<path d="M214.569 463.771H224.885L208.316 484.069H217.695L202.064 507.266H208.316L198 523.422H270.84L258.022 507.266H263.962L248.019 484.069H258.022L242.704 463.771H252.083L233.013 439.745L214.569 463.771Z" fill="#EDFFF2"/>
|
||||
<path d="M77.1359 477.448H85.0918L72.3142 493.092H79.5468L67.4925 510.972H72.3142L64.3584 523.423H120.531L110.647 510.972H115.227L102.932 493.092H110.647L98.8337 477.448H106.066L91.36 458.931L77.1359 477.448Z" fill="#EDFFF2"/>
|
||||
<path d="M238.432 477.448H246.388L233.61 493.092H240.843L228.788 510.972H233.61L225.654 523.423H281.827L271.943 510.972H276.523L264.228 493.092H271.943L260.13 477.448H267.362L252.656 458.931L238.432 477.448Z" fill="#EDFFF2"/>
|
||||
</g>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_819_23246">
|
||||
<rect width="360" height="640" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
After Width: | Height: | Size: 7.5 KiB |