feat: Add branding and launch images for dark mode support
- Added dark mode branding images for the app. - Created contents.json files for branding and launch background images. - Implemented splash screen with animated Lottie assets based on theme. - Developed authentication repository with email/password and social login functionalities. - Introduced background service for heavy computations in isolates. - Added splash controller to manage authentication flow during splash screen.
|
@ -35,7 +35,7 @@ SEND_EMAIL_HOOK_SECRET="jeroAB/CXdS721OiHV0Ac0yRcxO7eNihgjblH62xMhLBNc6OwK3DQnkb
|
||||||
|
|
||||||
DENO_ENV=development
|
DENO_ENV=development
|
||||||
|
|
||||||
MAPBOX_ACCESS_TOKEN="pk.eyJ1IjoidmVyZ2lsZ29vZDEiLCJhIjoiY205b254eGltMGJ5dzJqb2F4cGpsZXlpNSJ9.zxmnSQxuc5NBwiFpsTGJCg"
|
MAPBOX_ACCESS_TOKEN=pk.eyJ1IjoidmVyZ2lsZ29vZDEiLCJhIjoiY205b254eGltMGJ5dzJqb2F4cGpsZXlpNSJ9.zxmnSQxuc5NBwiFpsTGJCg
|
||||||
MAPBOX_TILESET_ID="vergilgood1.cm9x176pl09k11ope7hzkij0r-06afz"
|
MAPBOX_TILESET_ID=vergilgood1.cm9x176pl09k11ope7hzkij0r-06afz
|
||||||
NODE_ENV=development
|
NODE_ENV=development
|
||||||
|
|
||||||
|
|
|
@ -21,5 +21,6 @@
|
||||||
"http",
|
"http",
|
||||||
"net"
|
"net"
|
||||||
],
|
],
|
||||||
"files.autoSave": "afterDelay"
|
"files.autoSave": "afterDelay",
|
||||||
|
"java.configuration.updateBuildConfiguration": "interactive"
|
||||||
}
|
}
|
||||||
|
|
|
@ -8,13 +8,38 @@ plugins {
|
||||||
android {
|
android {
|
||||||
namespace = "com.backspacex.sigap"
|
namespace = "com.backspacex.sigap"
|
||||||
compileSdk = flutter.compileSdkVersion
|
compileSdk = flutter.compileSdkVersion
|
||||||
ndkVersion = flutter.ndkVersion
|
ndkVersion = "27.0.12077973"
|
||||||
|
|
||||||
compileOptions {
|
compileOptions {
|
||||||
|
// Flag to enable support for the new language APIs
|
||||||
|
|
||||||
|
// For AGP 4.1+
|
||||||
|
isCoreLibraryDesugaringEnabled = true
|
||||||
|
// For AGP 4.0
|
||||||
|
// coreLibraryDesugaringEnabled = true
|
||||||
|
|
||||||
|
// Sets Java compatibility to Java 8
|
||||||
sourceCompatibility = JavaVersion.VERSION_11
|
sourceCompatibility = JavaVersion.VERSION_11
|
||||||
targetCompatibility = JavaVersion.VERSION_11
|
targetCompatibility = JavaVersion.VERSION_11
|
||||||
}
|
}
|
||||||
|
|
||||||
|
dependencies {
|
||||||
|
// For AGP 7.4+
|
||||||
|
coreLibraryDesugaring("com.android.tools:desugar_jdk_libs:2.1.5")
|
||||||
|
// For AGP 7.3
|
||||||
|
// coreLibraryDesugaring("com.android.tools:desugar_jdk_libs:1.2.3")
|
||||||
|
// For AGP 4.0 to 7.2
|
||||||
|
// coreLibraryDesugaring("com.android.tools:desugar_jdk_libs:1.1.9")
|
||||||
|
|
||||||
|
// Material components for Android
|
||||||
|
implementation("com.google.android.material:material:1.14.0-alpha01")
|
||||||
|
|
||||||
|
// AppCompat library
|
||||||
|
val appcompat_version = "1.7.0"
|
||||||
|
implementation("androidx.appcompat:appcompat:$appcompat_version")
|
||||||
|
implementation("androidx.appcompat:appcompat-resources:$appcompat_version")
|
||||||
|
}
|
||||||
|
|
||||||
kotlinOptions {
|
kotlinOptions {
|
||||||
jvmTarget = JavaVersion.VERSION_11.toString()
|
jvmTarget = JavaVersion.VERSION_11.toString()
|
||||||
}
|
}
|
||||||
|
|
|
@ -61,6 +61,8 @@
|
||||||
This is used by the Flutter tool to generate GeneratedPluginRegistrant.java -->
|
This is used by the Flutter tool to generate GeneratedPluginRegistrant.java -->
|
||||||
<meta-data android:name="flutterEmbedding"
|
<meta-data android:name="flutterEmbedding"
|
||||||
android:value="2" />
|
android:value="2" />
|
||||||
|
<!-- <meta-data android:name="com.mapbox.token"
|
||||||
|
android:value="${MAPBOX_ACCESS_TOKEN}" /> -->
|
||||||
</application>
|
</application>
|
||||||
<!-- Required to query activities that can process text, see:
|
<!-- Required to query activities that can process text, see:
|
||||||
https://developer.android.com/training/package-visibility and
|
https://developer.android.com/training/package-visibility and
|
||||||
|
|
After Width: | Height: | Size: 538 B |
After Width: | Height: | Size: 538 B |
After Width: | Height: | Size: 538 B |
After Width: | Height: | Size: 392 B |
After Width: | Height: | Size: 392 B |
After Width: | Height: | Size: 392 B |
After Width: | Height: | Size: 528 B |
After Width: | Height: | Size: 528 B |
After Width: | Height: | Size: 528 B |
After Width: | Height: | Size: 412 B |
After Width: | Height: | Size: 412 B |
After Width: | Height: | Size: 412 B |
After Width: | Height: | Size: 69 B |
|
@ -0,0 +1,12 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
|
||||||
|
<item>
|
||||||
|
<bitmap android:gravity="fill" android:src="@drawable/background"/>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<bitmap android:gravity="center" android:src="@drawable/splash"/>
|
||||||
|
</item>
|
||||||
|
<item android:bottom="0dp">
|
||||||
|
<bitmap android:gravity="bottom" android:src="@drawable/branding"/>
|
||||||
|
</item>
|
||||||
|
</layer-list>
|
After Width: | Height: | Size: 587 B |
After Width: | Height: | Size: 587 B |
After Width: | Height: | Size: 587 B |
After Width: | Height: | Size: 754 B |
After Width: | Height: | Size: 754 B |
After Width: | Height: | Size: 754 B |
After Width: | Height: | Size: 708 B |
After Width: | Height: | Size: 708 B |
After Width: | Height: | Size: 708 B |
After Width: | Height: | Size: 69 B |
|
@ -0,0 +1,12 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
|
||||||
|
<item>
|
||||||
|
<bitmap android:gravity="fill" android:src="@drawable/background"/>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<bitmap android:gravity="center" android:src="@drawable/splash"/>
|
||||||
|
</item>
|
||||||
|
<item android:bottom="0dp">
|
||||||
|
<bitmap android:gravity="bottom" android:src="@drawable/branding"/>
|
||||||
|
</item>
|
||||||
|
</layer-list>
|
After Width: | Height: | Size: 69 B |
|
@ -1,12 +1,12 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<!-- Modify this file to customize your launch splash screen -->
|
|
||||||
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
|
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
|
||||||
<item android:drawable="?android:colorBackground" />
|
<item>
|
||||||
|
<bitmap android:gravity="fill" android:src="@drawable/background"/>
|
||||||
<!-- You can insert your own image assets here -->
|
</item>
|
||||||
<!-- <item>
|
<item>
|
||||||
<bitmap
|
<bitmap android:gravity="center" android:src="@drawable/splash"/>
|
||||||
android:gravity="center"
|
</item>
|
||||||
android:src="@mipmap/launch_image" />
|
<item android:bottom="0dp">
|
||||||
</item> -->
|
<bitmap android:gravity="bottom" android:src="@drawable/branding"/>
|
||||||
|
</item>
|
||||||
</layer-list>
|
</layer-list>
|
||||||
|
|
After Width: | Height: | Size: 669 B |
After Width: | Height: | Size: 669 B |
After Width: | Height: | Size: 669 B |
After Width: | Height: | Size: 871 B |
After Width: | Height: | Size: 871 B |
After Width: | Height: | Size: 871 B |
After Width: | Height: | Size: 836 B |
After Width: | Height: | Size: 836 B |
After Width: | Height: | Size: 836 B |
After Width: | Height: | Size: 69 B |
|
@ -1,12 +1,12 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<!-- Modify this file to customize your launch splash screen -->
|
|
||||||
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
|
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
|
||||||
<item android:drawable="@android:color/white" />
|
<item>
|
||||||
|
<bitmap android:gravity="fill" android:src="@drawable/background"/>
|
||||||
<!-- You can insert your own image assets here -->
|
</item>
|
||||||
<!-- <item>
|
<item>
|
||||||
<bitmap
|
<bitmap android:gravity="center" android:src="@drawable/splash"/>
|
||||||
android:gravity="center"
|
</item>
|
||||||
android:src="@mipmap/launch_image" />
|
<item android:bottom="0dp">
|
||||||
</item> -->
|
<bitmap android:gravity="bottom" android:src="@drawable/branding"/>
|
||||||
|
</item>
|
||||||
</layer-list>
|
</layer-list>
|
||||||
|
|
|
@ -0,0 +1,22 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<resources>
|
||||||
|
<!-- Theme applied to the Android Window while the process is starting when the OS's Dark Mode setting is on -->
|
||||||
|
<style name="LaunchTheme" parent="@android:style/Theme.Black.NoTitleBar">
|
||||||
|
<item name="android:forceDarkAllowed">false</item>
|
||||||
|
<item name="android:windowFullscreen">false</item>
|
||||||
|
<item name="android:windowDrawsSystemBarBackgrounds">false</item>
|
||||||
|
<item name="android:windowLayoutInDisplayCutoutMode">shortEdges</item>
|
||||||
|
<item name="android:windowSplashScreenBackground">#121212</item>
|
||||||
|
<item name="android:windowSplashScreenAnimatedIcon">@drawable/android12splash</item>
|
||||||
|
<item name="android:windowSplashScreenIconBackgroundColor">#121212</item>
|
||||||
|
</style>
|
||||||
|
<!-- Theme applied to the Android Window as soon as the process has started.
|
||||||
|
This theme determines the color of the Android Window while your
|
||||||
|
Flutter UI initializes, as well as behind your Flutter UI while its
|
||||||
|
running.
|
||||||
|
|
||||||
|
This Theme is only used starting with V2 of Flutter's Android embedding. -->
|
||||||
|
<style name="NormalTheme" parent="@android:style/Theme.Black.NoTitleBar">
|
||||||
|
<item name="android:windowBackground">?android:colorBackground</item>
|
||||||
|
</style>
|
||||||
|
</resources>
|
|
@ -5,6 +5,10 @@
|
||||||
<!-- Show a splash screen on the activity. Automatically removed when
|
<!-- Show a splash screen on the activity. Automatically removed when
|
||||||
the Flutter engine draws its first frame -->
|
the Flutter engine draws its first frame -->
|
||||||
<item name="android:windowBackground">@drawable/launch_background</item>
|
<item name="android:windowBackground">@drawable/launch_background</item>
|
||||||
|
<item name="android:forceDarkAllowed">false</item>
|
||||||
|
<item name="android:windowFullscreen">false</item>
|
||||||
|
<item name="android:windowDrawsSystemBarBackgrounds">false</item>
|
||||||
|
<item name="android:windowLayoutInDisplayCutoutMode">shortEdges</item>
|
||||||
</style>
|
</style>
|
||||||
<!-- Theme applied to the Android Window as soon as the process has started.
|
<!-- Theme applied to the Android Window as soon as the process has started.
|
||||||
This theme determines the color of the Android Window while your
|
This theme determines the color of the Android Window while your
|
||||||
|
|
|
@ -0,0 +1,22 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<resources>
|
||||||
|
<!-- Theme applied to the Android Window while the process is starting when the OS's Dark Mode setting is off -->
|
||||||
|
<style name="LaunchTheme" parent="@android:style/Theme.Light.NoTitleBar">
|
||||||
|
<item name="android:forceDarkAllowed">false</item>
|
||||||
|
<item name="android:windowFullscreen">false</item>
|
||||||
|
<item name="android:windowDrawsSystemBarBackgrounds">false</item>
|
||||||
|
<item name="android:windowLayoutInDisplayCutoutMode">shortEdges</item>
|
||||||
|
<item name="android:windowSplashScreenBackground">#ffffff</item>
|
||||||
|
<item name="android:windowSplashScreenAnimatedIcon">@drawable/android12splash</item>
|
||||||
|
<item name="android:windowSplashScreenIconBackgroundColor">#ffffff</item>
|
||||||
|
</style>
|
||||||
|
<!-- Theme applied to the Android Window as soon as the process has started.
|
||||||
|
This theme determines the color of the Android Window while your
|
||||||
|
Flutter UI initializes, as well as behind your Flutter UI while its
|
||||||
|
running.
|
||||||
|
|
||||||
|
This Theme is only used starting with V2 of Flutter's Android embedding. -->
|
||||||
|
<style name="NormalTheme" parent="@android:style/Theme.Light.NoTitleBar">
|
||||||
|
<item name="android:windowBackground">?android:colorBackground</item>
|
||||||
|
</style>
|
||||||
|
</resources>
|
|
@ -1,10 +1,12 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<resources>
|
<resources>
|
||||||
<!-- Theme applied to the Android Window while the process is starting when the OS's Dark Mode setting is off -->
|
<!-- Theme applied to the Android Window while the process is starting when the OS's Dark Mode setting is off -->
|
||||||
<style name="LaunchTheme" parent="@android:style/Theme.AppCompat.DayNight">
|
<style name="LaunchTheme" parent="Theme.AppCompat.DayNight">
|
||||||
<!-- Show a splash screen on the activity. Automatically removed when
|
|
||||||
the Flutter engine draws its first frame -->
|
|
||||||
<item name="android:windowBackground">@drawable/launch_background</item>
|
<item name="android:windowBackground">@drawable/launch_background</item>
|
||||||
|
<item name="android:forceDarkAllowed">false</item>
|
||||||
|
<item name="android:windowFullscreen">false</item>
|
||||||
|
<item name="android:windowDrawsSystemBarBackgrounds">false</item>
|
||||||
|
<item name="android:windowLayoutInDisplayCutoutMode">shortEdges</item>
|
||||||
</style>
|
</style>
|
||||||
<!-- Theme applied to the Android Window as soon as the process has started.
|
<!-- Theme applied to the Android Window as soon as the process has started.
|
||||||
This theme determines the color of the Android Window while your
|
This theme determines the color of the Android Window while your
|
||||||
|
@ -12,7 +14,7 @@
|
||||||
running.
|
running.
|
||||||
|
|
||||||
This Theme is only used starting with V2 of Flutter's Android embedding. -->
|
This Theme is only used starting with V2 of Flutter's Android embedding. -->
|
||||||
<style name="NormalTheme" parent="@android:style/Theme.AppCompat.DayNight">
|
<style name="NormalTheme" parent="Theme.AppCompat.DayNight">
|
||||||
<item name="android:windowBackground">?android:colorBackground</item>
|
<item name="android:windowBackground">?android:colorBackground</item>
|
||||||
</style>
|
</style>
|
||||||
</resources>
|
</resources>
|
||||||
|
|
|
@ -0,0 +1 @@
|
||||||
|
{"assets":[{"id":"6","layers":[{"ind":5,"ty":4,"ks":{},"ip":0,"op":181,"st":0,"shapes":[{"ty":"rc","p":{"a":0,"k":[25,25]},"r":{"a":0,"k":0},"s":{"a":0,"k":[50,50]}},{"ty":"fl","c":{"a":0,"k":[0,0,0,0]},"o":{"a":0,"k":0}}]},{"ind":0,"ty":4,"ks":{"s":{"a":0,"k":[133.33,133.33]}},"ip":0,"op":181,"st":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ty":"sh","ks":{"a":0,"k":{"c":true,"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[19.21,9.38],[19.21,18.75],[27.32,23.44],[35.41,28.13],[35.41,18.75],[27.32,14.06],[27.32,4.69],[19.21,0]]}}},{"ty":"fl","c":{"a":0,"k":[0.11,0.11,0.12,1]},"r":2,"o":{"a":0,"k":100}},{"ty":"tr","o":{"a":0,"k":100}}]},{"ty":"gr","it":[{"ty":"gr","it":[{"ty":"sh","ks":{"a":0,"k":{"c":true,"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[11.11,23.44],[11.11,4.69],[3,9.38],[3,28.13],[11.11,32.81],[19.21,37.5],[27.32,32.81],[19.21,28.13]]}}},{"ty":"fl","c":{"a":0,"k":[0.11,0.11,0.12,1]},"r":2,"o":{"a":0,"k":100}},{"ty":"tr","o":{"a":0,"k":100}}]},{"ty":"tr","o":{"a":0,"k":100}}]},{"ty":"tr","o":{"a":0,"k":100}}]}]}]}],"fr":60,"h":400,"ip":0,"layers":[{"ind":8,"ty":0,"parent":4,"ks":{},"w":50,"h":50,"ip":0,"op":181,"st":0,"refId":"6"},{"ind":4,"ty":3,"parent":3,"ks":{"s":{"a":0,"k":[240,240]}},"ip":0,"op":181,"st":0},{"ind":3,"ty":3,"parent":2,"ks":{"a":{"a":0,"k":[60,60]},"p":{"a":0,"k":[120,120]},"s":{"a":1,"k":[{"t":0,"s":[0,0],"i":{"x":[1,1],"y":[1,1]},"o":{"x":[0,0],"y":[0,0]}},{"t":6,"s":[0,0],"i":{"x":[0.25,0.25],"y":[1,1]},"o":{"x":[0.25,0.25],"y":[0.1,0.1]}},{"t":30,"s":[100,100],"i":{"x":[1,1],"y":[1,1]},"o":{"x":[0,0],"y":[0,0]}},{"t":180,"s":[100,100],"h":1}]}},"ip":0,"op":181,"st":0},{"ind":10,"ty":4,"parent":9,"ks":{},"ip":0,"op":181,"st":0,"shapes":[{"ty":"el","p":{"a":0,"k":[120,120]},"s":{"a":0,"k":[240,240]}},{"ty":"fl","c":{"a":0,"k":[1,1,1]},"o":{"a":0,"k":100}}]},{"ind":9,"ty":3,"parent":2,"ks":{},"ip":0,"op":181,"st":0},{"ind":2,"ty":3,"parent":1,"ks":{"a":{"a":0,"k":[120,120]},"p":{"a":0,"k":[200,200]},"s":{"a":1,"k":[{"t":0,"s":[0,0],"i":{"x":[0.25,0.25],"y":[1,1]},"o":{"x":[0.25,0.25],"y":[0.1,0.1]}},{"t":24,"s":[100,100],"i":{"x":[1,1],"y":[1,1]},"o":{"x":[0,0],"y":[0,0]}},{"t":156,"s":[100,100],"i":{"x":[0.667,0.667],"y":[0.001,0.001]},"o":{"x":[0.334,0.334],"y":[0,0]}},{"t":180,"s":[0,0],"h":1}]}},"ip":0,"op":181,"st":0},{"ind":1,"ty":3,"parent":0,"ks":{},"ip":0,"op":181,"st":0},{"ind":0,"ty":3,"ks":{},"ip":0,"op":181,"st":0}],"meta":{"g":"https://jitter.video"},"op":180,"v":"5.7.4","w":400}
|
|
@ -0,0 +1 @@
|
||||||
|
{"assets":[{"id":"6","layers":[{"ind":5,"ty":4,"ks":{},"ip":0,"op":181,"st":0,"shapes":[{"ty":"rc","p":{"a":0,"k":[25,25]},"r":{"a":0,"k":0},"s":{"a":0,"k":[50,50]}},{"ty":"fl","c":{"a":0,"k":[0,0,0,0]},"o":{"a":0,"k":0}}]},{"ind":0,"ty":4,"ks":{"s":{"a":0,"k":[133.33,133.33]}},"ip":0,"op":181,"st":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ty":"sh","ks":{"a":0,"k":{"c":true,"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[19.21,9.38],[19.21,18.75],[27.32,23.44],[35.41,28.13],[35.41,18.75],[27.32,14.06],[27.32,4.69],[19.21,0]]}}},{"ty":"fl","c":{"a":0,"k":[1,1,1,1]},"r":2,"o":{"a":0,"k":100}},{"ty":"tr","o":{"a":0,"k":100}}]},{"ty":"gr","it":[{"ty":"gr","it":[{"ty":"sh","ks":{"a":0,"k":{"c":true,"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[11.11,23.44],[11.11,4.69],[3,9.38],[3,28.13],[11.11,32.81],[19.21,37.5],[27.32,32.81],[19.21,28.13]]}}},{"ty":"fl","c":{"a":0,"k":[1,1,1,1]},"r":2,"o":{"a":0,"k":100}},{"ty":"tr","o":{"a":0,"k":100}}]},{"ty":"tr","o":{"a":0,"k":100}}]},{"ty":"tr","o":{"a":0,"k":100}}]}]}]}],"fr":60,"h":400,"ip":0,"layers":[{"ind":8,"ty":0,"parent":4,"ks":{},"w":50,"h":50,"ip":0,"op":181,"st":0,"refId":"6"},{"ind":4,"ty":3,"parent":3,"ks":{"s":{"a":0,"k":[240,240]}},"ip":0,"op":181,"st":0},{"ind":3,"ty":3,"parent":2,"ks":{"a":{"a":0,"k":[60,60]},"p":{"a":0,"k":[120,120]},"s":{"a":1,"k":[{"t":0,"s":[0,0],"i":{"x":[1,1],"y":[1,1]},"o":{"x":[0,0],"y":[0,0]}},{"t":6,"s":[0,0],"i":{"x":[0.25,0.25],"y":[1,1]},"o":{"x":[0.25,0.25],"y":[0.1,0.1]}},{"t":30,"s":[100,100],"i":{"x":[1,1],"y":[1,1]},"o":{"x":[0,0],"y":[0,0]}},{"t":180,"s":[100,100],"h":1}]}},"ip":0,"op":181,"st":0},{"ind":10,"ty":4,"parent":9,"ks":{},"ip":0,"op":181,"st":0,"shapes":[{"ty":"el","p":{"a":0,"k":[120,120]},"s":{"a":0,"k":[240,240]}},{"ty":"fl","c":{"a":0,"k":[0.114,0.114,0.122]},"o":{"a":0,"k":100}}]},{"ind":9,"ty":3,"parent":2,"ks":{},"ip":0,"op":181,"st":0},{"ind":2,"ty":3,"parent":1,"ks":{"a":{"a":0,"k":[120,120]},"p":{"a":0,"k":[200,200]},"s":{"a":1,"k":[{"t":0,"s":[0,0],"i":{"x":[0.25,0.25],"y":[1,1]},"o":{"x":[0.25,0.25],"y":[0.1,0.1]}},{"t":24,"s":[100,100],"i":{"x":[1,1],"y":[1,1]},"o":{"x":[0,0],"y":[0,0]}},{"t":156,"s":[100,100],"i":{"x":[0.667,0.667],"y":[0.001,0.001]},"o":{"x":[0.334,0.334],"y":[0,0]}},{"t":180,"s":[0,0],"h":1}]}},"ip":0,"op":181,"st":0},{"ind":1,"ty":3,"parent":0,"ks":{},"ip":0,"op":181,"st":0},{"ind":0,"ty":3,"ks":{},"ip":0,"op":181,"st":0}],"meta":{"g":"https://jitter.video"},"op":180,"v":"5.7.4","w":400}
|
|
@ -0,0 +1,175 @@
|
||||||
|
<svg width="960" height="960" viewBox="0 0 960 960" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<g clip-path="url(#clip0_1_5105)">
|
||||||
|
<mask id="mask0_1_5105" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="0" y="0" width="960" height="960">
|
||||||
|
<path d="M960 0H0V960H960V0Z" fill="white"/>
|
||||||
|
</mask>
|
||||||
|
<g mask="url(#mask0_1_5105)">
|
||||||
|
<mask id="mask1_1_5105" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="65" y="38" width="830" height="884">
|
||||||
|
<path d="M895 38H65V922H895V38Z" fill="white"/>
|
||||||
|
</mask>
|
||||||
|
<g mask="url(#mask1_1_5105)">
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M568.594 546.6C564.154 546.405 559.702 546.3 555.262 546.3C523.349 546.294 491.631 551.273 461.255 561.058L459.545 560.332C458.022 561.199 456.429 562.031 454.789 562.792C444.738 567.49 434.018 569.798 423.1 570.981C435.178 615.969 415.614 667.669 376.755 693.369C337.837 719.096 282.519 716.812 245.862 687.969C245.136 687.397 244.405 686.813 243.667 686.223C236.288 680.324 228.3 673.938 219.152 675.269C218.879 675.305 218.61 675.351 218.352 675.41C212.764 676.488 208.078 680.366 204.013 684.419C194.84 693.556 187.164 704.545 183.664 717.01C181.112 725.813 181.039 735.149 183.453 743.99C184.498 747.686 186.069 751.213 188.116 754.463C194.278 764.142 204.353 770.571 214.44 776.042C254.54 797.809 300.456 809.5 346 806.9C391.544 804.3 436.53 787.009 470.398 756.418C504.266 725.827 526.291 681.818 527.919 636.218L528.786 635.574C577.166 699.936 625.553 764.299 673.948 828.662C683.167 840.928 693.102 853.756 707.359 859.438C714.15 862.075 721.459 863.109 728.716 862.46C743.442 861.359 758.378 854.657 771.511 847.195C783.249 840.506 794.789 833.02 803.657 822.828C805.905 820.249 807.938 817.491 809.737 814.581C815.103 805.923 818.277 795.954 817.551 785.867C816.051 765.277 799.463 749.439 783.987 735.767L571.874 548.287L571.921 546.729C570.808 546.694 569.694 546.647 568.594 546.6ZM595.677 577.001C594.949 576.359 593.839 576.43 593.197 577.158C592.556 577.886 592.626 578.996 593.354 579.638C650.756 630.195 705.844 683.093 758.619 738.333C759.289 739.034 760.402 739.06 761.103 738.389C761.805 737.719 761.83 736.607 761.16 735.905C708.315 680.593 653.154 627.625 595.677 577.001Z" fill="#FAFAFA"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M701.83 315.792C720.281 272.879 722.483 224.426 716.415 178.116C715.443 170.677 713.334 162.019 706.397 159.205C701.348 157.155 695.659 159.076 690.559 160.986C690.452 161.027 690.348 161.066 690.245 161.105C690.083 161.166 689.923 161.227 689.759 161.291C681.159 164.532 672.559 167.77 663.959 171.003C660.725 172.222 657.282 173.616 655.29 176.357C655.16 176.544 655.032 176.731 654.915 176.931C652.422 181.02 653.838 186.256 655.115 190.872C663.807 222.21 662.39 256.898 647.746 285.928C633.184 314.794 604.764 337.158 572.676 341.118C575.363 344.911 577.663 348.965 579.541 353.218C587.862 370.523 594.629 388.533 599.761 407.037L601.6 406.537C646.957 395.361 683.379 358.705 701.83 315.792ZM707.165 192.438C706.942 191.494 705.995 190.91 705.051 191.133C704.106 191.357 703.522 192.304 703.746 193.248C713.155 232.981 708.118 274.765 689.535 311.123C689.093 311.987 689.436 313.046 690.3 313.487C691.164 313.929 692.222 313.587 692.664 312.723C711.627 275.621 716.767 232.983 707.165 192.438Z" fill="#1E1E1E"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M579.536 353.219C577.658 348.966 575.359 344.912 572.671 341.119C571.325 339.307 569.777 337.655 568.056 336.195C564.512 333.15 560.027 331.42 555.356 331.295C553.09 331.27 550.852 331.805 548.842 332.853L547.167 332.818C547.047 335.551 546.757 338.274 546.3 340.972L545.656 341.872C545.058 341.86 544.475 341.848 543.875 341.825V342.059C565.005 371.493 577.299 406.344 579.316 442.521C581.333 478.698 572.989 514.699 555.262 546.3C559.702 546.3 564.154 546.4 568.594 546.6C569.695 546.647 570.808 546.694 571.921 546.729C576.196 546.834 580.521 546.612 584.221 544.585C589.071 541.937 591.883 536.735 594.144 531.698C606.715 503.57 609.96 471.811 606.41 441.211C605.038 429.671 602.814 418.249 599.756 407.038C594.625 388.534 587.859 370.524 579.536 353.219ZM570.966 348.973C570.418 348.172 569.325 347.967 568.524 348.515C567.723 349.062 567.518 350.156 568.065 350.957C587.684 379.653 597.836 413.768 597.099 448.522C597.078 449.492 597.848 450.295 598.818 450.316C599.789 450.336 600.592 449.566 600.612 448.596C601.364 413.109 590.998 378.275 570.966 348.973Z" fill="#FAFAFA"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M371.933 413.519C374.604 428.218 377.275 442.924 379.946 457.638L379.806 458.294C372.261 456.795 364.928 453.573 359.656 448.02C353.939 441.986 351.057 432.931 353.716 425.058C356.233 417.642 364.318 412.195 371.933 413.507V413.519ZM449.662 493.439C448.889 481.092 448.713 468.752 449.135 456.419C449.451 447.246 450.143 437.874 453.718 429.417C454.655 427.18 456.33 424.696 458.767 424.825C459.547 424.928 460.284 425.241 460.901 425.73C461.517 426.218 461.989 426.865 462.267 427.601C462.793 429.081 463.023 430.649 462.946 432.217C462.983 439.855 462.193 447.475 460.591 454.944L460.626 454.956C464.878 454.573 469.062 453.648 473.079 452.203L472.517 450.317C471.275 416.613 461.212 381.901 435.661 358.494C429.271 352.586 422.003 347.705 414.117 344.026L414.023 343.018C398.97 344.328 384.056 346.926 369.447 350.785C341.534 358.47 314.632 373.102 297.434 396.38C280.236 419.658 274.449 452.483 287.675 478.233C298.172 498.664 318.744 512.16 340.112 520.595C376.167 534.732 415.799 536.961 453.212 526.956L452.954 525.175C451.419 514.655 450.318 504.053 449.662 493.439ZM345.553 415.792C345.903 414.887 345.453 413.87 344.548 413.52C343.642 413.17 342.625 413.621 342.275 414.526C339.669 421.274 338.915 428.597 340.092 435.735C341.27 442.873 344.336 449.566 348.972 455.119C349.594 455.864 350.702 455.964 351.446 455.342C352.191 454.72 352.291 453.612 351.669 452.867C347.435 447.795 344.635 441.682 343.559 435.163C342.484 428.644 343.172 421.956 345.553 415.792Z" fill="#1E1E1E"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M394.415 207.84C374.919 210.267 355.423 212.694 335.123 215.124L335.194 215.749C341.742 215.022 348.608 217.775 353.481 222.356C359.233 227.757 362.537 235.313 364.388 242.975C367.469 255.716 366.675 270.021 359.175 280.775C356.806 284.113 353.801 286.951 350.333 289.126C346.866 291.302 343.003 292.771 338.966 293.451L338.978 293.51L467.012 278.288L469.121 278.112C468.524 270.907 468.078 263.691 467.785 256.463L467.598 256.475C462.772 255.538 458.191 258.631 454.29 261.606C450.389 264.581 445.937 267.779 441.075 267.1C444.488 258.364 448.899 250.051 454.219 242.327C447.937 247.634 440.632 251.593 432.757 253.96C438.38 241.128 444.004 228.304 449.627 215.488C451.591 210.704 453.95 206.092 456.679 201.699L455.507 200.34C434.559 202.842 414.487 205.341 394.415 207.84ZM433.182 216.437C434.14 216.286 434.794 215.385 434.642 214.427C434.49 213.469 433.59 212.815 432.632 212.967C412.277 216.193 391.734 218.087 371.133 218.638C370.163 218.664 369.397 219.471 369.423 220.441C369.449 221.411 370.257 222.176 371.227 222.15C391.981 221.596 412.676 219.687 433.182 216.437Z" fill="#1E1E1E"/>
|
||||||
|
<path d="M558.499 266.588C558.523 267.139 558.546 267.689 558.569 268.24L557.245 268.299C553.133 266.846 549.021 265.398 544.909 263.953H544.897C545.131 259.068 545.291 254.179 545.377 249.286L546.654 249.309C550.567 248.709 554.374 251.509 556.202 255.026C558.03 258.543 558.307 262.628 558.499 266.588Z" fill="#FAFAFA"/>
|
||||||
|
<path d="M546.899 328.362C547.124 329.835 547.214 331.325 547.168 332.814C547.048 335.547 546.758 338.27 546.301 340.968L545.657 341.868C545.057 341.856 544.474 341.845 543.876 341.821C514.401 341.13 484.934 340.447 455.476 339.771C455.113 339.771 454.761 339.759 454.398 339.748L454.41 339.104C452.336 332.304 450.767 323.652 456.296 319.188C459.447 316.646 463.829 316.517 467.882 316.505C469.815 316.505 471.736 316.493 473.669 316.493C487.528 316.446 501.391 316.407 515.258 316.376C520.238 316.353 525.217 316.338 530.195 316.329C533.674 316.317 537.33 316.352 540.387 318.016C544.085 320.044 546.241 324.2 546.899 328.362Z" fill="#1E1E1E"/>
|
||||||
|
<path d="M548.842 332.849L547.167 332.814C547.212 331.325 547.122 329.835 546.898 328.362C546.242 324.203 544.086 320.044 540.384 318.018C537.327 316.354 533.671 316.318 530.192 316.331C525.213 316.343 520.233 316.359 515.255 316.378V315.616C514.083 307.064 513.568 296.766 520.433 291.516C525.306 287.791 532.371 288.107 537.361 284.534C543.453 280.164 544.519 271.671 544.882 264.185C544.882 264.103 544.894 264.033 544.894 263.951H544.906C549.018 265.404 553.13 266.853 557.242 268.297L558.566 268.238C559.464 288.659 558.979 309.118 557.113 329.473L555.356 331.289C553.089 331.264 550.851 331.8 548.842 332.849Z" fill="#FAFAFA"/>
|
||||||
|
<path d="M546.675 182.017L547.261 182.474L568.606 162.886C571.5 160.238 575.366 157.392 578.974 158.926C583.109 160.672 583.156 166.564 581.75 170.826C577.79 182.857 567.797 192.288 556.281 197.572C552.295 199.385 548.14 200.798 543.875 201.789C535.771 203.591 527.473 204.374 519.175 204.12C511.326 203.979 503.442 203.195 495.651 204.12C487.86 205.045 479.941 207.92 474.775 213.832C467.793 221.845 467.266 233.478 467.43 244.116C467.5 248.228 467.606 252.352 467.781 256.464L467.594 256.476C462.767 255.539 458.187 258.62 454.286 261.607C450.385 264.594 445.933 267.781 441.071 267.101C444.484 258.364 448.895 250.05 454.215 242.324C447.933 247.631 440.628 251.59 432.753 253.957C438.376 241.129 444 228.305 449.623 215.485C451.589 210.702 453.95 206.091 456.68 201.7C459.33 197.395 463.021 193.826 467.411 191.32C474.171 187.712 482.699 187.477 488.428 182.393C495.211 176.348 495.457 166.004 499.112 157.674C500.717 154.019 504.044 150.235 507.957 151.02C511.12 151.664 512.994 155.202 512.889 158.42C512.698 160.835 511.978 163.179 510.78 165.285L511.647 165.695C514.311 159.96 517.779 154.635 521.947 149.88C523.236 148.416 524.899 146.88 526.847 147.127C527.601 147.276 528.299 147.63 528.864 148.151C529.428 148.672 529.838 149.34 530.047 150.079C530.455 151.563 530.531 153.119 530.27 154.636C529.477 161.581 527.234 168.283 523.686 174.306L524.166 174.587C529.632 167.049 535.897 160.124 542.852 153.933C544.657 152.132 546.809 150.717 549.178 149.774C551.591 148.974 554.508 149.235 556.301 151.028C558.691 153.418 558.257 157.366 557.367 160.623C555.261 168.394 551.626 175.668 546.675 182.017Z" fill="#FAFAFA"/>
|
||||||
|
<path d="M510.44 468.322C512.115 467.104 513.31 464.96 512.795 462.945C512.476 462.02 511.912 461.199 511.163 460.57C510.414 459.94 509.508 459.526 508.542 459.372C506.61 459.095 504.642 459.183 502.742 459.63C501.805 459.782 500.879 459.946 499.942 460.099C502.39 459.399 505.202 457.299 507.147 455.659C509.092 454.019 510.334 451.231 509.396 448.859C508.307 446.153 505.003 445.134 502.086 444.923C500.119 444.79 498.143 444.845 496.186 445.087L496.057 444.187C494.768 412.849 491.687 377.411 468.433 353.852C462.974 348.227 456.452 343.743 449.244 340.661C451.318 340.567 453.391 340.461 455.465 340.368L455.477 339.768C484.94 340.447 514.407 341.13 543.877 341.818V342.052C565.008 371.487 577.303 406.339 579.32 442.518C581.337 478.696 572.991 514.699 555.263 546.3C523.348 546.294 491.627 551.274 461.249 561.061L459.539 560.335C474.339 551.865 483.883 538.369 488.897 521.781C492.224 510.792 493.911 499.288 495.036 487.889L494.884 487.081C498.715 486.355 502.651 485.57 506.775 484.738C509.548 484.343 512.18 483.269 514.437 481.61C516.557 479.818 517.776 476.619 516.464 474.159C514.777 471.043 510.407 470.902 506.881 471.242C506.026 471.324 505.181 471.406 504.327 471.5V471.488C506.538 470.808 508.609 469.735 510.44 468.322Z" fill="#1E1E1E"/>
|
||||||
|
<path d="M496.053 444.189L496.182 445.089C488.333 446.038 480.8 449.611 473.082 452.2L472.52 450.314C471.278 416.614 461.215 381.898 435.664 358.491C429.274 352.583 422.007 347.702 414.12 344.023L414.026 343.015C425.718 341.867 437.491 341.223 449.242 340.66C456.45 343.742 462.972 348.226 468.431 353.851C491.683 377.413 494.764 412.851 496.053 444.189Z" fill="#FAFAFA"/>
|
||||||
|
<path d="M423.092 570.981C413.263 572.035 403.292 572.188 393.5 572.305C393.5 572.176 393.512 572.036 393.512 571.905C393.641 567.383 393.746 563.025 393.863 558.714C422.163 555.867 451.478 546.179 463.744 518.114C467.125 509.991 469.387 501.446 470.468 492.714L470.268 491.238C478.268 490.138 486.268 488.738 494.881 487.079L495.033 487.887C493.908 499.287 492.221 510.787 488.894 521.779C483.88 538.368 474.332 551.863 459.536 560.333C458.013 561.2 456.42 562.033 454.78 562.793C444.73 567.49 434.011 569.8 423.092 570.981Z" fill="#FAFAFA"/>
|
||||||
|
<path d="M470.269 491.237L470.469 492.713C469.388 501.445 467.126 509.99 463.745 518.113C451.479 546.182 422.168 555.871 393.864 558.713C394.087 550.196 394.297 541.878 394.555 532.913L394.567 532.726C414.3 534.03 434.114 532.079 453.213 526.95L452.955 525.169C451.42 514.649 450.319 504.047 449.663 493.433L449.991 493.41C456.984 492.888 463.627 492.162 470.269 491.237Z" fill="#1E1E1E"/>
|
||||||
|
<path d="M467.012 278.291L469.121 278.115C470.164 290.648 471.679 303.125 473.666 315.545V316.494C471.733 316.494 469.812 316.506 467.879 316.506C463.826 316.518 459.444 316.647 456.293 319.189C450.763 323.652 452.333 332.31 454.407 339.105L454.396 339.749C454.759 339.761 455.11 339.772 455.474 339.772L455.462 340.372C453.388 340.466 451.315 340.572 449.241 340.665C437.491 341.227 425.717 341.872 414.025 343.02C398.971 344.33 384.058 346.928 369.449 350.787C341.532 358.472 314.622 373.093 297.436 396.387C280.25 419.681 274.451 452.487 287.677 478.24C298.177 498.671 318.745 512.167 340.114 520.602C357.524 527.453 375.895 531.547 394.566 532.739L394.554 532.926C394.296 541.888 394.085 550.206 393.863 558.726C393.746 563.037 393.64 567.395 393.512 571.917L392.294 571.882C357.875 576.882 321.558 575.713 289.928 561.655C268.841 552.283 253.61 534.71 247.754 512.455C241.981 488.405 238.908 463.786 238.593 439.055L240.421 439.032C258.743 427.083 267.26 405.457 272.391 385.084C278.12 362.298 280.404 337.907 292.81 317.394C299.581 306.183 309.317 297.232 320.446 290.438L321.454 289.538C322.484 290.278 323.574 290.932 324.711 291.494C329.142 293.619 334.126 294.307 338.967 293.462L338.979 293.521L467.012 278.291Z" fill="#FAFAFA"/>
|
||||||
|
<path d="M371.932 413.519C374.603 428.221 377.274 442.927 379.945 457.638L379.804 458.294C372.259 456.794 364.926 453.573 359.654 448.02C353.937 441.987 351.054 432.931 353.714 425.058C356.233 417.642 364.314 412.195 371.931 413.507V413.519H371.932Z" fill="#FAFAFA"/>
|
||||||
|
<path d="M321.451 289.526L320.443 290.426C309.314 297.226 299.579 306.171 292.808 317.382C280.402 337.895 278.117 362.282 272.389 385.072C267.258 405.445 258.741 427.072 240.419 439.02L238.591 439.043C238.076 411.278 240.491 383.537 244.238 355.456C246.581 344.912 251.477 327.199 255.952 319.139C268.152 297.185 286.352 280.526 309.666 271.119C311.646 278.4 315.499 285.274 321.451 289.526Z" fill="#FAFAFA"/>
|
||||||
|
<path d="M316.462 238.53C316.643 236.254 317.067 234.003 317.727 231.817C319.827 224.94 324.85 218.696 331.703 216.494C332.84 216.134 334.009 215.883 335.194 215.744C341.743 215.018 348.608 217.771 353.481 222.351C359.233 227.751 362.537 235.308 364.388 242.97C367.469 255.716 366.672 270.02 359.175 280.77C356.806 284.108 353.801 286.946 350.333 289.122C346.866 291.297 343.003 292.766 338.966 293.446C334.125 294.291 329.14 293.603 324.709 291.478C323.572 290.916 322.482 290.262 321.452 289.522C315.501 285.269 311.646 278.393 309.667 271.122C309.249 269.631 308.915 268.117 308.667 266.588C307.14 257.263 308.035 247.702 311.267 238.823L312.005 237.886C313.387 238.109 313.598 238.179 314.992 238.413L316.462 238.53Z" fill="#1E1E1E"/>
|
||||||
|
<path d="M515.255 315.616C514.083 307.064 513.568 296.766 520.433 291.516C525.306 287.791 532.371 288.107 537.361 284.534C543.453 280.164 544.519 271.671 544.882 264.185C544.882 264.103 544.894 264.033 544.894 263.951C545.128 259.066 545.288 254.177 545.374 249.284C545.674 233.75 545.257 218.192 544.097 202.693" stroke="#FAFAFA" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M532.172 219.072C524.666 218.406 517.116 218.402 509.609 219.06C512.374 233.762 514.611 248.554 516.322 263.437C511.929 263.847 507.532 264.253 503.131 264.655C503.611 264.585 504.103 264.503 504.595 264.421" stroke="#FAFAFA" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M530.824 232.579C530.221 231.438 529.297 230.5 528.166 229.879C527.035 229.259 525.747 228.984 524.461 229.089C523.175 229.194 521.948 229.673 520.932 230.469C519.916 231.264 519.156 232.34 518.746 233.563C518.992 233.2 519.238 232.825 519.472 232.45" stroke="#FAFAFA" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M499.779 230.752C499.358 229.41 498.501 228.246 497.344 227.446C496.187 226.646 494.796 226.255 493.391 226.335C491.986 226.416 490.649 226.963 489.591 227.89C488.532 228.817 487.814 230.07 487.549 231.452C487.713 231.241 487.889 231.019 488.049 230.796" stroke="#FAFAFA" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M499.04 279.205C497.41 279.84 495.646 280.053 493.911 279.823C492.177 279.594 490.528 278.931 489.119 277.894C487.71 276.857 486.585 275.482 485.849 273.894C485.114 272.307 484.791 270.559 484.911 268.814" stroke="#FAFAFA" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M473.666 315.545C471.686 303.139 470.171 290.662 469.121 278.115C468.521 270.91 468.076 263.693 467.785 256.466C467.609 252.354 467.504 248.23 467.434 244.118C467.27 233.481 467.797 221.848 474.779 213.834C479.945 207.918 487.853 205.048 495.655 204.122C503.457 203.196 511.33 203.981 519.179 204.122C527.478 204.376 535.775 203.593 543.879 201.791C548.144 200.799 552.3 199.387 556.285 197.574C567.801 192.29 577.794 182.86 581.754 170.828C583.16 166.564 583.113 160.671 578.978 158.928C575.37 157.393 571.504 160.24 568.61 162.888L547.266 182.476" stroke="#FAFAFA" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M546 182.872C546.234 182.591 546.457 182.298 546.68 182.017C551.629 175.668 555.261 168.395 557.364 160.625C558.254 157.368 558.688 153.42 556.298 151.03C554.506 149.238 551.589 148.98 549.175 149.776C546.806 150.719 544.654 152.134 542.849 153.935C535.895 160.126 529.63 167.051 524.164 174.589C524.62 174.214 525.088 173.839 525.546 173.464" stroke="#FAFAFA" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M523.479 174.648C523.549 174.531 523.62 174.425 523.679 174.308C527.227 168.285 529.47 161.583 530.263 154.638C530.525 153.121 530.448 151.565 530.04 150.081C529.831 149.341 529.422 148.674 528.857 148.153C528.292 147.632 527.594 147.278 526.84 147.129C524.895 146.883 523.232 148.418 521.94 149.882C517.773 154.638 514.305 159.963 511.64 165.697C511.253 166.529 510.89 167.372 510.54 168.216" stroke="#FAFAFA" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M509.632 167.443C510.019 166.743 510.405 166.014 510.78 165.287C511.978 163.181 512.698 160.837 512.889 158.422C512.994 155.2 511.12 151.662 507.957 151.022C504.044 150.237 500.717 154.022 499.112 157.676C495.457 166.005 495.212 176.35 488.428 182.395C482.699 187.479 474.171 187.714 467.411 191.322C463.02 193.827 459.33 197.396 456.68 201.7C453.95 206.093 451.592 210.705 449.628 215.489C444.004 228.305 438.381 241.129 432.758 253.961C440.633 251.594 447.938 247.635 454.22 242.328C454.56 242.047 454.888 241.766 455.22 241.473" stroke="#FAFAFA" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M455.66 240.264C455.168 240.943 454.688 241.635 454.219 242.326C448.899 250.051 444.488 258.364 441.075 267.1C445.937 267.779 450.389 264.581 454.29 261.606C458.191 258.631 462.772 255.538 467.598 256.475" stroke="#FAFAFA" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M454.406 339.1C452.332 332.305 450.763 323.648 456.292 319.184C459.443 316.642 463.825 316.513 467.878 316.501C469.811 316.501 471.732 316.489 473.665 316.489C487.524 316.442 501.387 316.403 515.254 316.372C520.234 316.349 525.213 316.334 530.191 316.325C533.67 316.313 537.326 316.348 540.383 318.012C544.083 320.039 546.241 324.198 546.897 328.356C547.122 329.829 547.212 331.319 547.166 332.808C547.046 335.541 546.756 338.264 546.299 340.962" stroke="#FAFAFA" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M449.99 493.416C456.984 492.889 463.626 492.162 470.269 491.237C478.269 490.137 486.269 488.737 494.882 487.078C498.713 486.352 502.649 485.567 506.773 484.735C509.546 484.34 512.178 483.266 514.435 481.607C516.555 479.815 517.774 476.616 516.462 474.156C514.775 471.04 510.405 470.899 506.879 471.239C506.024 471.321 505.179 471.403 504.325 471.497C492.825 472.657 481.363 474.379 470.025 476.64" stroke="#FAFAFA" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M499.92 460.11C490.138 461.75 480.356 463.402 470.574 465.065" stroke="#FAFAFA" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M504.324 471.485C506.536 470.807 508.608 469.735 510.439 468.322C512.114 467.104 513.309 464.96 512.794 462.945C512.476 462.02 511.912 461.199 511.163 460.57C510.413 459.94 509.507 459.526 508.541 459.372C506.609 459.095 504.642 459.183 502.741 459.63C501.804 459.782 500.878 459.946 499.941 460.099" stroke="#FAFAFA" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M499.92 460.11C499.932 460.11 499.932 460.11 499.943 460.098C502.391 459.398 505.203 457.298 507.148 455.658C509.093 454.018 510.335 451.23 509.397 448.858C508.308 446.152 505.004 445.133 502.087 444.922C500.119 444.789 498.144 444.844 496.187 445.086C488.338 446.035 480.805 449.608 473.087 452.197C469.07 453.642 464.885 454.567 460.634 454.95C461.134 455.02 461.642 455.102 462.145 455.173" stroke="#FAFAFA" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M460.487 455.447C460.522 455.283 460.557 455.107 460.587 454.947C462.189 447.478 462.979 439.858 462.942 432.22C463.019 430.652 462.788 429.084 462.263 427.604C461.985 426.868 461.512 426.221 460.896 425.733C460.28 425.244 459.543 424.931 458.763 424.828C456.326 424.699 454.651 427.183 453.714 429.42C450.141 437.878 449.45 447.25 449.133 456.42C448.711 468.753 448.886 481.093 449.66 493.44C450.316 504.054 451.417 514.656 452.952 525.176" stroke="#FAFAFA" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M371.933 413.519C372.396 413.583 372.854 413.681 373.304 413.812" stroke="#FAFAFA" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M448.947 456.572C434.819 457.38 420.695 458.192 406.574 459.009C398.28 459.489 389.915 459.958 381.715 458.646C381.082 458.541 380.438 458.423 379.805 458.295C372.26 456.795 364.927 453.574 359.655 448.021C353.938 441.988 351.055 432.932 353.715 425.059C356.234 417.643 364.315 412.196 371.932 413.508" stroke="#FAFAFA" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M371.933 413.507V413.519C374.603 428.221 377.274 442.927 379.946 457.638C380.098 457.251 380.262 456.865 380.426 456.478" stroke="#FAFAFA" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M453.212 526.956C415.799 536.961 376.167 534.732 340.112 520.595C318.744 512.16 298.172 498.664 287.675 478.233C274.449 452.483 280.236 419.658 297.434 396.38C314.632 373.102 341.534 358.47 369.447 350.785C384.056 346.926 398.97 344.328 414.023 343.018C425.715 341.87 437.488 341.226 449.239 340.663C451.313 340.569 453.386 340.463 455.46 340.37" stroke="#FAFAFA" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M454.3 339.749H454.394C454.757 339.761 455.109 339.772 455.472 339.772C484.935 340.451 514.402 341.135 543.872 341.822C544.472 341.845 545.055 341.857 545.653 341.869" stroke="#FAFAFA" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M394.555 532.919C394.297 541.881 394.086 550.199 393.864 558.719C393.747 563.03 393.641 567.388 393.513 571.91C393.513 572.039 393.501 572.179 393.501 572.31" stroke="#FAFAFA" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M496.053 444.189C494.764 412.851 491.683 377.413 468.429 353.854C462.971 348.229 456.448 343.745 449.24 340.663C449.14 340.616 449.017 340.569 448.9 340.522" stroke="#FAFAFA" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M393.5 572.3C403.294 572.183 413.263 572.031 423.092 570.976C434.01 569.793 444.73 567.485 454.781 562.787C456.421 562.026 458.014 561.194 459.537 560.327C474.337 551.857 483.881 538.361 488.895 521.773C492.222 510.784 493.909 499.28 495.034 487.881" stroke="#FAFAFA" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M472.518 450.316C471.276 416.616 461.213 381.9 435.662 358.493C429.272 352.585 422.005 347.704 414.118 344.025" stroke="#FAFAFA" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M393.828 558.716H393.863C422.163 555.869 451.478 546.181 463.744 518.116C467.125 509.993 469.387 501.448 470.468 492.716" stroke="#FAFAFA" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M461.249 561.059C491.627 551.273 523.348 546.293 555.263 546.3C559.703 546.3 564.155 546.405 568.595 546.6C569.695 546.647 570.809 546.694 571.922 546.729C576.198 546.834 580.522 546.612 584.222 544.585C589.072 541.937 591.884 536.736 594.145 531.698C606.715 503.57 609.96 471.81 606.411 441.211C605.04 429.671 602.815 418.249 599.757 407.038C594.625 388.535 587.859 370.524 579.537 353.219C577.66 348.966 575.36 344.912 572.672 341.119C571.326 339.304 569.778 337.65 568.056 336.187C564.512 333.143 560.027 331.412 555.356 331.287C553.09 331.262 550.853 331.797 548.843 332.845" stroke="#FAFAFA" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M555.11 546.579C555.157 546.485 555.215 546.392 555.262 546.298C572.989 514.697 581.333 478.696 579.316 442.519C577.299 406.342 565.005 371.491 543.875 342.057" stroke="#FAFAFA" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M572.144 341.19L572.671 341.12C604.759 337.16 633.179 314.796 647.741 285.93C662.385 256.9 663.802 222.212 655.11 190.874C653.833 186.258 652.416 181.022 654.91 176.933C655.027 176.733 655.156 176.546 655.285 176.359C657.277 173.618 660.721 172.224 663.954 171.005C672.554 167.772 681.154 164.534 689.754 161.293C690.023 161.188 690.281 161.093 690.554 160.988C695.654 159.078 701.344 157.157 706.393 159.207C713.34 162.019 715.449 170.676 716.421 178.115C722.489 224.425 720.287 272.878 701.836 315.791C683.385 358.704 646.958 395.36 601.6 406.536" stroke="#FAFAFA" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M654.653 175.9C647.912 174.063 641.426 171.39 635.347 167.945C632.347 166.245 629.103 163.692 629.337 160.26C629.665 155.738 635.792 154.086 640.103 155.48C644.414 156.874 648.103 160.049 652.591 160.728C645.838 150.157 641.084 138.434 638.568 126.145C638.205 124.411 637.935 122.466 638.896 120.979C640.138 119.034 643.043 118.788 645.105 119.843C647.167 120.898 648.538 122.889 649.779 124.834C656.088 134.71 661.004 145.409 664.388 156.629C661.178 144.617 658.964 132.36 657.769 119.984C657.441 116.598 658.003 112.053 661.369 111.455C664.778 110.855 666.84 115.063 667.707 118.425C670.402 128.98 673.097 139.539 675.79 150.103C673.701 137.439 673.076 124.577 673.927 111.771C674.138 108.671 674.993 104.859 678.016 104.071C681.952 103.064 684.483 108.124 685.268 112.108C688.361 127.764 689.662 143.721 689.146 159.671" stroke="#FAFAFA" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M557.112 329.475C558.979 309.12 559.464 288.661 558.565 268.24C558.543 267.689 558.519 267.138 558.495 266.588C558.308 262.628 558.026 258.54 556.195 255.025C554.364 251.51 550.56 248.711 546.647 249.308" stroke="#FAFAFA" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M309.772 271.075C309.734 271.086 309.699 271.101 309.667 271.122C286.354 280.529 268.149 297.188 255.953 319.142C251.478 327.202 246.581 344.915 244.238 355.459C240.489 383.54 238.076 411.281 238.591 439.046C238.906 463.777 241.979 488.396 247.752 512.446C253.61 534.705 268.839 552.277 289.926 561.646C321.557 575.704 357.874 576.876 392.292 571.873" stroke="#FAFAFA" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M240.419 439.022C258.741 427.073 267.258 405.447 272.389 385.074C278.118 362.288 280.402 337.897 292.808 317.384C299.579 306.173 309.315 297.222 320.444 290.428" stroke="#FAFAFA" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M544.906 263.952C549.018 265.405 553.13 266.853 557.242 268.298" stroke="#FAFAFA" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M311.271 238.823C308.041 247.702 307.145 257.263 308.671 266.588C308.919 268.117 309.253 269.631 309.671 271.122C311.651 278.397 315.505 285.274 321.456 289.522C322.487 290.262 323.576 290.916 324.713 291.478C329.145 293.603 334.129 294.291 338.97 293.446C343.007 292.766 346.87 291.297 350.338 289.121C353.806 286.946 356.81 284.108 359.179 280.77C366.679 270.016 367.473 255.711 364.392 242.965C362.541 235.303 359.237 227.747 353.485 222.346C348.612 217.765 341.746 215.012 335.198 215.739C334.014 215.878 332.845 216.129 331.707 216.489C324.854 218.689 319.828 224.936 317.731 231.812C317.071 233.998 316.647 236.249 316.466 238.525C316.132 243.433 316.523 248.363 317.626 253.157C318.692 258.183 320.332 263.22 323.472 267.285C326.612 271.35 331.472 274.349 336.616 274.197C342.263 274.021 347.359 269.98 349.749 264.86C352.139 259.74 352.104 253.731 350.675 248.26C349.749 244.71 347.969 240.997 344.607 239.56C341.245 238.123 336.348 240.579 336.816 244.211" stroke="#FAFAFA" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M315 238.413C313.606 238.179 313.395 238.108 312.013 237.886" stroke="#FAFAFA" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M333.343 215.334L335.124 215.123C376.324 210.191 414.213 205.271 455.508 200.339" stroke="#FAFAFA" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M338.978 293.509L467.012 278.291" stroke="#FAFAFA" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M423.046 570.817C423.058 570.876 423.081 570.922 423.093 570.981C435.171 615.967 415.607 667.666 376.748 693.369C337.83 719.095 282.512 716.811 245.855 687.969C237.865 681.678 229.208 673.805 219.145 675.269C218.876 675.304 218.606 675.351 218.345 675.41C212.757 676.488 208.071 680.366 204.006 684.419C194.833 693.557 187.16 704.546 183.657 717.01C181.105 725.813 181.032 735.149 183.446 743.99C184.491 747.686 186.061 751.213 188.109 754.463C194.271 764.14 204.346 770.571 214.433 776.042C254.533 797.809 300.445 809.512 345.993 806.9C391.541 804.288 436.539 787 470.393 756.42C504.247 725.84 526.286 681.82 527.914 636.22" stroke="#FAFAFA" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M571.874 548.289L783.987 735.766C799.463 749.438 816.051 765.276 817.551 785.871C818.277 795.958 815.103 805.927 809.737 814.585C807.938 817.495 805.905 820.253 803.657 822.832C794.789 833.024 783.249 840.51 771.511 847.199C758.378 854.661 743.442 861.363 728.716 862.464C721.459 863.113 714.15 862.079 707.359 859.442C693.102 853.76 683.167 840.932 673.948 828.666C625.553 764.303 577.166 699.94 528.786 635.578L528.259 634.878" stroke="#FAFAFA" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M218.172 674.426C208.097 674.848 202.216 662.851 192.867 659.056C186.705 656.549 179.5 657.956 173.689 661.188C167.878 664.42 163.169 669.295 158.553 674.098C142.995 690.277 127.437 706.46 111.88 722.645C104.769 730.037 97.4939 737.687 93.7329 747.223C89.9719 756.759 90.5579 768.767 97.8679 775.948C105.705 783.648 118.721 783.422 128.69 778.806C138.659 774.19 146.49 766.106 154.744 758.867C162.991 751.651 172.516 744.903 183.444 743.989H183.479" stroke="#FAFAFA" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M728.739 862.816C736.787 871.286 740.911 882.616 746.569 892.842C752.227 903.068 760.662 913.062 772.202 914.948C780.895 916.366 789.529 912.898 798.139 911.012C811.026 908.189 824.393 908.912 837.539 907.825C850.685 906.738 864.413 903.432 873.856 894.225C882.103 886.212 885.993 874.813 889.156 863.754C891.183 856.654 893.045 849.309 892.256 841.976C891.467 834.643 887.511 827.203 880.74 824.251C875.714 822.06 869.986 822.587 864.54 823.151C854.712 824.158 844.891 825.169 835.077 826.185C830.086 826.7 824.932 827.204 820.14 825.716C815.348 824.228 810.979 820.198 810.709 815.196" stroke="#FAFAFA" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M444.045 153.413L455.586 138.5" stroke="#FAFAFA" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M456.947 151.943L443.447 139.743" stroke="#FAFAFA" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M273.687 242.552L262.911 232.652" stroke="#FAFAFA" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M262.021 245.13L273.6 231.072" stroke="#FAFAFA" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M518.261 111.1L526.566 96.235" stroke="#FAFAFA" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M529.227 107.663L511.886 98.52" stroke="#FAFAFA" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M745.785 146.723L753.228 135.973" stroke="#FAFAFA" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M755 147.422L741.927 135.669" stroke="#FAFAFA" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M704.743 129.426C707.872 115.419 706.066 100.761 699.628 87.933" stroke="#FAFAFA" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M716.045 115.3C716.815 109.661 715.933 103.919 713.505 98.771" stroke="#FAFAFA" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M305.052 690.693C331.767 695.593 360.842 683.528 376.233 661.148" stroke="#FAFAFA" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M144.739 657.081C148.949 652.491 154.026 648.78 159.677 646.163C165.328 643.545 171.441 642.072 177.664 641.829" stroke="#FAFAFA" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M143.137 637.232C144.394 635.35 146.08 633.794 148.057 632.692C150.034 631.589 152.244 630.973 154.506 630.893" stroke="#FAFAFA" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M733.3 900.939C737.258 908.492 742.946 915.003 749.9 919.939" stroke="#FAFAFA" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M781 839.949C791.672 855.019 811.49 863.008 829.63 859.549C847.77 856.09 863.262 841.377 867.645 823.438" stroke="#FAFAFA" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M850.033 824.063C838.239 833.008 829.521 845.402 825.09 859.526" stroke="#FAFAFA" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M825.976 826.437C814.652 833.528 805.723 843.86 800.348 856.092L802.13 854.754" stroke="#FAFAFA" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M754.478 903.007C786.393 895.207 822.078 903.2 851.258 888.112C861.386 882.737 870 874.901 876.305 865.325C882.611 855.749 886.407 844.74 887.343 833.312" stroke="#FAFAFA" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M184.272 713.132C175.102 711.685 165.66 714.402 157.565 718.948C149.47 723.494 142.513 729.782 135.665 736.048C129.389 741.792 122.941 747.848 119.848 755.778C116.755 763.708 118.104 774.047 125.177 778.778" stroke="#FAFAFA" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M141.188 769.74C138.496 760.158 133.688 751.303 127.119 743.826" stroke="#FAFAFA" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M157.609 756.567C156.006 746.151 151.892 736.282 145.624 727.81" stroke="#FAFAFA" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M170.973 746.649C170.207 736.375 167.27 726.381 162.356 717.326" stroke="#FAFAFA" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M195.768 661.369C176.204 665.238 161.02 680.206 147.086 694.475C134.214 707.656 121.262 720.935 111.03 736.257C106.924 742.405 103.24 748.942 101.285 756.072C99.3298 763.202 99.2118 771.014 102.085 777.825" stroke="#FAFAFA" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M341.962 238.8C348.293 237.202 354.757 236.182 361.273 235.755" stroke="#FAFAFA" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M538.6 404.289L546.777 394.289" stroke="#FAFAFA" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M525.388 375.391L517.751 368.532" stroke="#FAFAFA" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M507.6 427.037L513.378 420.825" stroke="#FAFAFA" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M536.277 452.588L529.586 444.796" stroke="#FAFAFA" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M541.859 441.852L548.802 435.552" stroke="#FAFAFA" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M506.309 524.162L515.361 513.375" stroke="#FAFAFA" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M556.024 510.977L548.91 500.7" stroke="#FAFAFA" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M551.828 473.333L557.945 466.64" stroke="#FAFAFA" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M427.173 457.63C424.563 481.732 425.225 506.076 429.14 530" stroke="#FAFAFA" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M385.19 515.5L390.163 510.135" stroke="#FAFAFA" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M369.213 479.064L362.56 471.655" stroke="#FAFAFA" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M334.371 499.826C335.945 496.618 338.209 493.797 341 491.565" stroke="#FAFAFA" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M331 461.454L322.683 454.065" stroke="#FAFAFA" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M322.826 411.771C324.564 407.95 326.903 404.432 329.752 401.35" stroke="#FAFAFA" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M411.191 435.419L404.238 428.319" stroke="#FAFAFA" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M405.083 386.124L410.458 377.855" stroke="#FAFAFA" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M437.025 409.569L430.152 403.669" stroke="#FAFAFA" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M615.92 385.276L622.864 374.471" stroke="#FAFAFA" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M636.287 338.482L629.572 333.234" stroke="#FAFAFA" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M673.5 329.1L678.449 319.17" stroke="#FAFAFA" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M657.665 315.939L652.328 313.379" stroke="#FAFAFA" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M673.532 280.322C675.029 277.006 676.526 273.69 678.022 270.373" stroke="#FAFAFA" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M696.272 284.6L691.251 282.246" stroke="#FAFAFA" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M673.053 235.862C676.7 236.71 680.174 238.182 683.321 240.213" stroke="#FAFAFA" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M696.168 250.505C697.133 247.197 698.098 243.889 699.062 240.582" stroke="#FAFAFA" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M682.937 203.369L686.245 193.032" stroke="#FAFAFA" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M454.02 341.133C468.967 346.387 484.153 351.526 499.938 352.887C515.723 354.248 532.391 351.487 545.209 342.179" stroke="#FAFAFA" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M209.981 401.421C205.761 389.154 191.121 382.321 178.402 384.881C165.683 387.441 155.453 397.819 150.702 409.889C145.951 421.959 146.056 435.473 148.394 448.234C150.178 457.974 153.354 467.734 159.66 475.371C165.966 483.008 175.866 488.189 185.68 486.863C195.494 485.537 204.267 476.496 203.441 466.628C202.393 454.102 186.341 446.815 174.741 451.643C163.141 456.471 156.755 469.643 156.341 482.209C155.927 494.775 160.37 506.939 164.963 518.64C169.556 530.341 174.437 542.24 174.981 554.803C175.525 567.366 170.805 580.964 160.061 587.488C156.279 589.785 151.977 591.088 147.557 591.277C143.136 591.465 138.739 590.533 134.775 588.566C130.811 586.6 127.409 583.662 124.885 580.028C122.361 576.394 120.797 572.18 120.338 567.779" stroke="#1E1E1E" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M747 368.892C764.3 372.72 776.734 389.665 778.742 407.266C780.75 424.867 773.825 442.557 763.353 456.846C756.733 465.878 747.763 474.318 736.635 475.566C725.507 476.814 713.027 467.447 714.877 456.402C716.238 448.278 725.028 442.682 733.228 443.457C741.428 444.232 748.497 450.296 752.084 457.711C755.671 465.126 756.196 473.69 755.353 481.884C753.616 498.766 745.281 515.97 730.187 523.728C720.235 528.843 708.651 529.333 697.497 530.212C686.343 531.091 674.631 532.689 665.725 539.462C656.819 546.235 652.175 559.846 658.665 568.962" stroke="#FAFAFA" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M397.371 115.174C397.101 98.466 383.42 83.416 367.051 80.054C350.682 76.692 333 84.3 322.84 97.563C312.68 110.826 309.792 128.931 313.659 145.188C316.189 155.825 324.265 167.403 335.103 165.962C341.263 165.143 346.282 159.918 347.949 153.932C349.616 147.946 348.327 141.432 345.557 135.866C339.546 123.798 325.01 115.586 312.14 119.603C301.68 122.868 294.831 132.762 289.768 142.479C284.705 152.196 280.312 162.769 271.868 169.75C263.424 176.731 249.207 178.325 242.368 169.765" stroke="#FAFAFA" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M283.282 93.243C287.334 89.624 290.796 85.008 291.701 79.651C292.606 74.294 290.392 68.183 285.545 65.727C280.698 63.271 273.623 65.977 272.673 71.327C276.566 62.201 273.931 50.573 266.173 44.395C258.415 38.217 246.112 38.428 238.882 45.222C231.652 52.016 230.843 64.693 237.496 72.054C237.932 64.265 228.756 57.685 221.519 60.597C214.282 63.509 212.219 74.61 217.928 79.926C213.945 77.487 209.101 75.589 204.675 77.076C197.351 79.536 198.294 88.151 205.175 89.834C211.139 91.292 219.095 90.152 225.396 90.747C244.581 92.559 264.023 92.544 283.282 93.243Z" stroke="#FAFAFA" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M158.662 312.635C162.015 312.535 165.478 312.405 168.511 310.972C176.746 307.08 178.011 296.094 178.13 286.987C178.23 279.341 177.349 270.02 170.423 266.781C164.882 264.19 158.023 267.326 154.407 272.262C150.791 277.198 149.642 283.462 148.588 289.486C148.98 280.886 149.277 271.821 145.299 264.186C141.321 256.551 131.465 251.258 123.855 255.286C118.746 257.986 116.155 264.063 116.006 269.842C115.857 275.621 117.747 281.235 119.606 286.707C119.785 284.472 119.327 282.232 118.285 280.246C117.243 278.261 115.66 276.611 113.719 275.488C111.778 274.365 109.559 273.816 107.318 273.903C105.077 273.989 102.907 274.709 101.059 275.979C99.2108 277.249 97.7601 279.016 96.8751 281.076C95.9901 283.136 95.7069 285.405 96.0584 287.62C96.4099 289.834 97.3817 291.904 98.8612 293.589C100.341 295.274 102.267 296.505 104.418 297.14C97.3008 287.326 81.3248 285.676 72.3528 293.829C66.9388 298.749 64.3938 308.829 71.4978 313.69C76.6398 317.209 86.5858 314.837 92.3168 314.663L158.662 312.635Z" stroke="#FAFAFA" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M855.022 244.432C863.957 244.08 874.022 243.19 879.688 236.269C885.354 229.348 883.188 217.287 875.155 213.322C867.122 209.357 855.834 215.693 855.612 224.645C856.975 216.945 858.321 208.903 856.065 201.416C853.809 193.929 846.745 187.264 838.986 188.241C833.119 188.98 828.444 193.86 826.227 199.341C824.01 204.822 823.8 210.877 823.62 216.788C823.878 214.098 823.439 211.386 822.344 208.916C821.249 206.445 819.535 204.298 817.369 202.682C815.202 201.066 812.656 200.036 809.976 199.691C807.295 199.346 804.571 199.698 802.066 200.712C799.561 201.727 797.36 203.37 795.675 205.483C793.99 207.596 792.878 210.107 792.446 212.775C792.014 215.443 792.278 218.177 793.21 220.714C794.143 223.25 795.714 225.503 797.771 227.256C796.215 220.81 787.971 217.009 782.058 220.012C776.145 223.015 774.353 231.912 778.639 236.973C773.574 230.996 759.671 234.554 761.784 243.692C763.444 250.874 776.774 247.514 782.051 247.306L855.022 244.432Z" stroke="#1E1E1E" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M479.784 699.4L474.822 681.758" stroke="#1E1E1E" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M468.2 694.408L485.979 688.777" stroke="#1E1E1E" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M667.258 676.255C668.682 671.28 670.105 666.305 671.529 661.33" stroke="#1E1E1E" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M676.624 671.773C671.544 669.594 666.128 668.301 660.611 667.949" stroke="#1E1E1E" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M681.007 801.39L686.531 785.573C686.527 786.067 686.523 786.561 686.52 787.056" stroke="#1E1E1E" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M675.451 792.208L690.851 795.69" stroke="#1E1E1E" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M588.951 651.439C590.237 644.639 591.524 637.839 592.81 631.039" stroke="#1E1E1E" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M600.658 645.414L581.029 640.014" stroke="#1E1E1E" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M354.2 734.188C357.155 728.476 360.744 723.116 364.9 718.209C364.606 718.738 364.312 719.268 364.017 719.797" stroke="#1E1E1E" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M365.15 733.543L351.937 720.293" stroke="#1E1E1E" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M232.844 767.256L244.474 756.84" stroke="#1E1E1E" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M243.078 768.553L232.739 756.79" stroke="#1E1E1E" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M313.826 777.669L323.2 767.2" stroke="#1E1E1E" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M442.315 728.039L432.843 721.569" stroke="#1E1E1E" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M462.581 626.543L471.85 614.336" stroke="#1E1E1E" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M620.899 706.564C621.591 701.78 622.282 696.996 622.973 692.211" stroke="#1E1E1E" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M753.41 749.873C750.108 747.429 746.261 745.825 742.2 745.2" stroke="#1E1E1E" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M745.019 827.876L750.533 813.543" stroke="#1E1E1E" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M241.358 422.23C252.098 420.774 260.065 411.542 265.368 402.09C275.692 383.69 279.843 362.59 285.868 342.368C291.893 322.146 300.586 301.575 317.168 288.519" stroke="#1E1E1E" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M547.77 266.479C550.955 267.318 553.732 269.279 555.589 272" stroke="#1E1E1E" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M358.599 313.86C357.665 311.965 356.036 310.502 354.051 309.776C352.067 309.049 349.879 309.115 347.941 309.959C346.004 310.803 344.465 312.361 343.646 314.308C342.826 316.256 342.788 318.445 343.539 320.42C344.29 322.396 345.773 324.006 347.68 324.917C349.586 325.828 351.771 325.971 353.78 325.314C355.788 324.657 357.467 323.253 358.468 321.391C359.468 319.53 359.714 317.355 359.153 315.317" stroke="#1E1E1E" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M318.712 340.892C318.063 339.573 316.93 338.555 315.55 338.05C314.17 337.544 312.647 337.589 311.299 338.175C309.951 338.762 308.881 339.844 308.31 341.199C307.739 342.554 307.712 344.076 308.234 345.451C308.756 346.825 309.786 347.946 311.113 348.58C312.439 349.215 313.958 349.314 315.356 348.858C316.753 348.402 317.921 347.426 318.618 346.131C319.315 344.837 319.486 343.324 319.097 341.906" stroke="#1E1E1E" stroke-width="2.444" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M318.712 540.048C318.063 538.729 316.93 537.711 315.55 537.206C314.17 536.7 312.647 536.745 311.299 537.331C309.951 537.918 308.881 539 308.31 540.355C307.739 541.71 307.712 543.232 308.234 544.607C308.756 545.981 309.786 547.102 311.113 547.736C312.439 548.37 313.958 548.47 315.356 548.014C316.753 547.558 317.921 546.581 318.618 545.287C319.315 543.993 319.486 542.48 319.097 541.062" stroke="#1E1E1E" stroke-width="2.444" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M289.663 511.984C288.649 509.921 286.88 508.327 284.722 507.534C282.565 506.741 280.185 506.809 278.076 507.724C275.967 508.638 274.291 510.33 273.397 512.447C272.502 514.565 272.457 516.945 273.271 519.095C274.084 521.245 275.695 522.999 277.767 523.993C279.84 524.987 282.216 525.145 284.402 524.434C286.588 523.723 288.416 522.198 289.507 520.175C290.598 518.152 290.869 515.786 290.263 513.569" stroke="#1E1E1E" stroke-width="3.822" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M447.578 294.031C446.928 292.714 445.795 291.698 444.416 291.194C443.036 290.69 441.516 290.736 440.17 291.324C438.823 291.911 437.755 292.994 437.186 294.348C436.617 295.702 436.591 297.223 437.113 298.595C437.636 299.968 438.667 301.087 439.992 301.719C441.317 302.352 442.835 302.45 444.231 301.994C445.627 301.537 446.794 300.56 447.489 299.267C448.184 297.973 448.354 296.461 447.964 295.045" stroke="#1E1E1E" stroke-width="2.444" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M553.014 297.546C552.363 296.229 551.231 295.213 549.851 294.709C548.472 294.205 546.951 294.251 545.605 294.839C544.259 295.426 543.19 296.509 542.621 297.863C542.052 299.217 542.026 300.738 542.549 302.11C543.071 303.483 544.102 304.602 545.427 305.234C546.753 305.867 548.271 305.965 549.667 305.509C551.063 305.052 552.229 304.075 552.924 302.782C553.619 301.488 553.79 299.976 553.4 298.56" stroke="#1E1E1E" stroke-width="2.444" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M589.49 109.864L601.881 111.622C601.985 111.637 602.083 111.683 602.16 111.755C602.238 111.827 602.291 111.921 602.313 112.025C602.336 112.128 602.326 112.236 602.285 112.333C602.244 112.431 602.175 112.513 602.086 112.57L591.529 119.29C591.443 119.345 591.375 119.424 591.333 119.517C591.292 119.611 591.279 119.714 591.297 119.815L593.454 132.142C593.472 132.246 593.458 132.354 593.413 132.45C593.369 132.546 593.296 132.626 593.204 132.679C593.113 132.732 593.007 132.756 592.902 132.747C592.796 132.738 592.696 132.698 592.615 132.63L582.961 124.666C582.882 124.601 582.786 124.561 582.684 124.551C582.582 124.54 582.48 124.56 582.39 124.608L571.333 130.469C571.239 130.519 571.133 130.538 571.028 130.526C570.923 130.513 570.824 130.468 570.746 130.398C570.667 130.327 570.611 130.234 570.587 130.131C570.563 130.028 570.571 129.92 570.61 129.822L575.2 118.18C575.237 118.085 575.246 117.981 575.224 117.881C575.203 117.781 575.152 117.69 575.079 117.619L566.088 108.919C566.012 108.846 565.96 108.751 565.939 108.647C565.919 108.543 565.931 108.435 565.974 108.339C566.016 108.242 566.087 108.16 566.178 108.105C566.268 108.05 566.373 108.024 566.479 108.031L578.97 108.8C579.072 108.807 579.175 108.784 579.264 108.732C579.353 108.681 579.425 108.604 579.47 108.511L584.97 97.27C585.016 97.1751 585.091 97.0968 585.183 97.0456C585.276 96.9944 585.382 96.9728 585.487 96.9836C585.592 96.9945 585.691 97.0374 585.771 97.1065C585.852 97.1756 585.908 97.2676 585.935 97.37L589.064 109.487C589.09 109.585 589.145 109.672 589.22 109.739C589.296 109.806 589.39 109.85 589.49 109.864Z" fill="#1E1E1E"/>
|
||||||
|
<path d="M244.032 265.537L256.423 267.295C256.527 267.311 256.624 267.358 256.7 267.43C256.777 267.502 256.83 267.596 256.852 267.7C256.873 267.803 256.863 267.91 256.822 268.007C256.781 268.104 256.712 268.187 256.623 268.243L246.066 274.963C245.979 275.018 245.911 275.097 245.87 275.19C245.829 275.284 245.816 275.387 245.834 275.488L248 287.815C248.018 287.919 248.004 288.027 247.959 288.123C247.915 288.219 247.842 288.299 247.75 288.352C247.659 288.405 247.553 288.429 247.448 288.42C247.342 288.411 247.242 288.371 247.161 288.303L237.507 280.339C237.428 280.274 237.331 280.234 237.23 280.223C237.128 280.213 237.026 280.233 236.936 280.281L225.879 286.142C225.785 286.192 225.679 286.211 225.574 286.199C225.469 286.186 225.37 286.141 225.291 286.071C225.213 286 225.157 285.907 225.133 285.804C225.109 285.701 225.117 285.593 225.156 285.495L229.747 273.853C229.784 273.758 229.793 273.654 229.771 273.554C229.75 273.454 229.699 273.363 229.626 273.292L220.635 264.592C220.558 264.519 220.507 264.424 220.486 264.32C220.466 264.216 220.478 264.108 220.52 264.012C220.563 263.915 220.634 263.833 220.725 263.778C220.815 263.723 220.92 263.697 221.026 263.704L233.517 264.473C233.619 264.48 233.722 264.457 233.811 264.405C233.9 264.354 233.971 264.277 234.017 264.184L239.517 252.943C239.563 252.848 239.638 252.77 239.73 252.719C239.823 252.667 239.929 252.646 240.034 252.657C240.139 252.668 240.238 252.71 240.318 252.78C240.398 252.849 240.455 252.941 240.482 253.043L243.611 265.16C243.637 265.257 243.69 265.344 243.765 265.411C243.84 265.478 243.932 265.522 244.032 265.537Z" fill="#1E1E1E"/>
|
||||||
|
<g opacity="0.1">
|
||||||
|
<path d="M278.485 429.465C274.052 434.087 275.785 441.326 276.765 447.027C277.849 453.335 280.037 459.206 282.213 465.194C287.158 478.29 295.459 489.856 306.284 498.732C331.184 519.18 361.99 527.032 393.653 529.162C403.107 529.798 412.589 529.926 422.063 529.814C426.963 529.756 431.856 529.631 436.752 529.478C442.284 529.304 447.586 529.46 452.621 526.878C460.868 522.641 457.321 512.039 450.303 509.143C446.57 507.604 442.53 508.131 438.584 508.29C434.608 508.451 430.633 508.589 426.657 508.703C419.008 508.911 411.357 508.99 403.703 508.803C388.848 508.431 374.061 507.023 359.643 503.296C335.517 497.213 314.032 483.432 298.443 464.041C294.259 458.841 290.896 453.771 288.634 447.43C286.629 441.806 286.807 433.718 282.327 429.475C281.812 428.975 281.122 428.695 280.404 428.695C279.686 428.695 278.997 428.975 278.482 429.475L278.485 429.465Z" fill="#FAFAFA"/>
|
||||||
|
</g>
|
||||||
|
<g opacity="0.1">
|
||||||
|
<path d="M486.461 204.886C483.075 205.838 480.484 209.637 478.275 212.226C475.665 215.199 473.521 218.551 471.917 222.168C468.481 230.437 466.996 240.211 466.817 249.122C466.611 259.583 468.174 269.846 469.334 280.21C469.934 285.529 470.418 290.865 470.521 296.22C470.631 301.948 468.992 308.335 470.446 313.848C471.892 319.331 479.311 319.973 482.183 315.382C484.807 311.19 484.683 305.755 484.767 300.914C484.809 295.572 484.526 290.232 483.921 284.924C482.855 274.765 481.092 264.683 480.058 254.524C479.231 246.405 478.658 237.858 480.158 229.802C480.78 225.604 481.681 221.453 482.858 217.376C483.491 215.268 484.338 213.23 485.388 211.296C486.405 209.554 487.575 208.444 488.01 206.443C488.065 206.228 488.063 206.002 488.005 205.788C487.946 205.573 487.832 205.378 487.675 205.221C487.518 205.064 487.323 204.951 487.109 204.892C486.894 204.834 486.668 204.832 486.453 204.887L486.461 204.886Z" fill="#FAFAFA"/>
|
||||||
|
</g>
|
||||||
|
<g opacity="0.1">
|
||||||
|
<path d="M201.368 85.027C214.648 91.806 230.255 93.384 245.037 94.068C252.532 94.4078 260.042 94.1912 267.506 93.42C271.106 93.053 274.701 92.585 278.279 92.037C282.309 91.42 286.379 91.402 289.142 88.116C290.853 86.079 290.969 82.586 288.25 81.195C282.338 78.172 273.887 81.681 267.506 82.372C260.369 83.144 253.15 83.56 245.975 83.716C231.336 84.033 216.908 81.489 202.361 81.358C200.472 81.341 199.597 84.123 201.368 85.027Z" fill="#FAFAFA"/>
|
||||||
|
</g>
|
||||||
|
<g opacity="0.1">
|
||||||
|
<path d="M68.0004 310.57C78.9704 312.72 89.1004 315.82 100.388 316.205C111.971 316.601 123.566 316.327 135.116 315.387C144.769 314.601 156.807 314.493 165.451 309.598C169.259 307.518 172.238 304.194 173.888 300.181C174.403 299.108 174.676 297.936 174.687 296.746C174.698 295.557 174.447 294.379 173.952 293.297C173.555 292.315 172.915 291.45 172.091 290.784C171.761 290.453 171.35 290.214 170.899 290.089C170.039 289.816 170.039 289.733 170.899 289.842C169.079 287.842 166.049 289.071 165.258 291.331L164.838 292.531L166.724 290.078C163.519 291.523 163.431 294.64 161.488 297.063C159.197 299.921 154.747 300.463 151.376 301.053C142.167 302.603 132.884 303.687 123.565 304.301C114.57 304.955 105.559 305.206 96.5314 305.053C87.2364 304.895 77.8874 306.526 68.6164 306.053C66.0624 305.924 65.4464 310.063 68.0054 310.565L68.0004 310.57Z" fill="#FAFAFA"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<defs>
|
||||||
|
<clipPath id="clip0_1_5105">
|
||||||
|
<rect width="960" height="960" fill="white"/>
|
||||||
|
</clipPath>
|
||||||
|
</defs>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 57 KiB |
|
@ -0,0 +1,170 @@
|
||||||
|
<svg width="960" height="960" viewBox="0 0 960 960" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<g clip-path="url(#clip0_46_7755)">
|
||||||
|
<g clip-path="url(#clip1_46_7755)">
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M568.594 546.6C564.154 546.405 559.702 546.3 555.262 546.3C523.349 546.294 491.631 551.273 461.255 561.058L459.545 560.332C458.022 561.199 456.429 562.031 454.789 562.792C444.738 567.49 434.018 569.798 423.1 570.981C435.178 615.969 415.614 667.669 376.755 693.369C337.837 719.096 282.519 716.812 245.862 687.969C245.136 687.397 244.405 686.813 243.667 686.223C236.288 680.324 228.3 673.938 219.152 675.269C218.879 675.305 218.61 675.351 218.352 675.41C212.764 676.488 208.078 680.366 204.013 684.419C194.84 693.556 187.164 704.545 183.664 717.01C181.112 725.813 181.039 735.149 183.453 743.99C184.498 747.686 186.069 751.213 188.116 754.463C194.278 764.142 204.353 770.571 214.44 776.042C254.54 797.809 300.456 809.5 346 806.9C391.544 804.3 436.53 787.009 470.398 756.418C504.266 725.827 526.291 681.818 527.919 636.218L528.786 635.574C577.166 699.936 625.553 764.299 673.948 828.662C683.167 840.928 693.102 853.756 707.359 859.438C714.15 862.075 721.459 863.109 728.716 862.46C743.442 861.359 758.378 854.657 771.511 847.195C783.249 840.506 794.789 833.02 803.657 822.828C805.905 820.249 807.938 817.491 809.737 814.581C815.103 805.923 818.277 795.954 817.551 785.867C816.051 765.277 799.463 749.439 783.987 735.767L571.874 548.287L571.921 546.729C570.808 546.694 569.694 546.647 568.594 546.6ZM595.677 577.001C594.949 576.359 593.839 576.43 593.197 577.158C592.556 577.886 592.626 578.996 593.354 579.638C650.756 630.195 705.844 683.093 758.619 738.333C759.289 739.034 760.402 739.06 761.103 738.389C761.805 737.719 761.83 736.607 761.16 735.905C708.315 680.593 653.154 627.625 595.677 577.001Z" fill="#171717"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M701.83 315.792C720.281 272.879 722.483 224.426 716.415 178.116C715.443 170.677 713.334 162.019 706.397 159.205C701.348 157.155 695.659 159.076 690.559 160.986C690.452 161.027 690.348 161.066 690.245 161.105C690.083 161.166 689.923 161.227 689.759 161.291C681.159 164.532 672.559 167.77 663.959 171.003C660.725 172.222 657.282 173.616 655.29 176.357C655.16 176.544 655.032 176.731 654.915 176.931C652.422 181.02 653.838 186.256 655.115 190.872C663.807 222.21 662.39 256.898 647.746 285.928C633.184 314.794 604.764 337.158 572.676 341.118C575.363 344.911 577.663 348.965 579.541 353.218C587.862 370.523 594.629 388.533 599.761 407.037L601.6 406.537C646.957 395.361 683.379 358.705 701.83 315.792ZM707.165 192.438C706.942 191.494 705.995 190.91 705.051 191.133C704.106 191.357 703.522 192.304 703.746 193.248C713.155 232.981 708.118 274.765 689.535 311.123C689.093 311.987 689.436 313.046 690.3 313.487C691.164 313.929 692.222 313.587 692.664 312.723C711.627 275.621 716.767 232.983 707.165 192.438Z" fill="white"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M579.536 353.219C577.658 348.966 575.359 344.912 572.671 341.119C571.325 339.307 569.777 337.655 568.056 336.195C564.512 333.15 560.027 331.42 555.356 331.295C553.09 331.27 550.852 331.805 548.842 332.853L547.167 332.818C547.047 335.551 546.757 338.274 546.3 340.972L545.656 341.872C545.058 341.86 544.475 341.848 543.875 341.825V342.059C565.005 371.493 577.299 406.344 579.316 442.521C581.333 478.698 572.989 514.699 555.262 546.3C559.702 546.3 564.154 546.4 568.594 546.6C569.695 546.647 570.808 546.694 571.921 546.729C576.196 546.834 580.521 546.612 584.221 544.585C589.071 541.937 591.883 536.735 594.144 531.698C606.715 503.57 609.96 471.811 606.41 441.211C605.038 429.671 602.814 418.249 599.756 407.038C594.625 388.534 587.859 370.524 579.536 353.219ZM570.966 348.973C570.418 348.172 569.325 347.967 568.524 348.515C567.723 349.062 567.518 350.156 568.065 350.957C587.684 379.653 597.836 413.768 597.099 448.522C597.078 449.492 597.848 450.295 598.818 450.316C599.789 450.336 600.592 449.566 600.612 448.596C601.364 413.109 590.998 378.275 570.966 348.973Z" fill="#171717"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M371.933 413.519C374.604 428.218 377.275 442.924 379.946 457.638L379.806 458.294C372.261 456.795 364.928 453.573 359.656 448.02C353.939 441.986 351.057 432.931 353.716 425.058C356.233 417.642 364.318 412.195 371.933 413.507V413.519ZM449.662 493.439C448.889 481.092 448.713 468.752 449.135 456.419C449.451 447.246 450.143 437.874 453.718 429.417C454.655 427.18 456.33 424.696 458.767 424.825C459.547 424.928 460.284 425.241 460.901 425.73C461.517 426.218 461.989 426.865 462.267 427.601C462.793 429.081 463.023 430.649 462.946 432.217C462.983 439.855 462.193 447.475 460.591 454.944L460.626 454.956C464.878 454.573 469.062 453.648 473.079 452.203L472.517 450.317C471.275 416.613 461.212 381.901 435.661 358.494C429.271 352.586 422.003 347.705 414.117 344.026L414.023 343.018C398.97 344.328 384.056 346.926 369.447 350.785C341.534 358.47 314.632 373.102 297.434 396.38C280.236 419.658 274.449 452.483 287.675 478.233C298.172 498.664 318.744 512.16 340.112 520.595C376.167 534.732 415.799 536.961 453.212 526.956L452.954 525.175C451.419 514.655 450.318 504.053 449.662 493.439ZM345.553 415.792C345.903 414.887 345.453 413.87 344.548 413.52C343.642 413.17 342.625 413.621 342.275 414.526C339.669 421.274 338.915 428.597 340.092 435.735C341.27 442.873 344.336 449.566 348.972 455.119C349.594 455.864 350.702 455.964 351.446 455.342C352.191 454.72 352.291 453.612 351.669 452.867C347.435 447.795 344.635 441.682 343.559 435.163C342.484 428.644 343.172 421.956 345.553 415.792Z" fill="white"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M394.415 207.84C374.919 210.267 355.423 212.694 335.123 215.124L335.194 215.749C341.742 215.022 348.608 217.775 353.481 222.356C359.233 227.757 362.537 235.313 364.388 242.975C367.469 255.716 366.675 270.021 359.175 280.775C356.806 284.113 353.801 286.951 350.333 289.126C346.866 291.302 343.003 292.771 338.966 293.451L338.978 293.51L467.012 278.288L469.121 278.112C468.524 270.907 468.078 263.691 467.785 256.463L467.598 256.475C462.772 255.538 458.191 258.631 454.29 261.606C450.389 264.581 445.937 267.779 441.075 267.1C444.488 258.364 448.899 250.051 454.219 242.327C447.937 247.634 440.632 251.593 432.757 253.96C438.38 241.128 444.004 228.304 449.627 215.488C451.591 210.704 453.95 206.092 456.679 201.699L455.507 200.34C434.559 202.842 414.487 205.341 394.415 207.84ZM433.182 216.437C434.14 216.286 434.794 215.385 434.642 214.427C434.49 213.469 433.59 212.815 432.632 212.967C412.277 216.193 391.734 218.087 371.133 218.638C370.163 218.664 369.397 219.471 369.423 220.441C369.449 221.411 370.257 222.176 371.227 222.15C391.981 221.596 412.676 219.687 433.182 216.437Z" fill="white"/>
|
||||||
|
<path d="M558.499 266.588C558.523 267.139 558.546 267.689 558.569 268.24L557.245 268.299C553.133 266.846 549.021 265.398 544.909 263.953H544.897C545.131 259.068 545.291 254.179 545.377 249.286L546.654 249.309C550.567 248.709 554.374 251.509 556.202 255.026C558.03 258.543 558.307 262.628 558.499 266.588Z" fill="#171717"/>
|
||||||
|
<path d="M546.899 328.362C547.124 329.835 547.214 331.325 547.168 332.814C547.048 335.547 546.758 338.27 546.301 340.968L545.657 341.868C545.057 341.856 544.474 341.845 543.876 341.821C514.401 341.13 484.934 340.447 455.476 339.771C455.113 339.771 454.761 339.759 454.398 339.748L454.41 339.104C452.336 332.304 450.767 323.652 456.296 319.188C459.447 316.646 463.829 316.517 467.882 316.505C469.815 316.505 471.736 316.493 473.669 316.493C487.528 316.446 501.391 316.407 515.258 316.376C520.238 316.353 525.217 316.338 530.195 316.329C533.674 316.317 537.33 316.352 540.387 318.016C544.085 320.044 546.241 324.2 546.899 328.362Z" fill="white"/>
|
||||||
|
<path d="M548.842 332.849L547.167 332.814C547.212 331.325 547.122 329.835 546.898 328.362C546.242 324.203 544.086 320.044 540.384 318.018C537.327 316.354 533.671 316.318 530.192 316.331C525.213 316.343 520.233 316.359 515.255 316.378V315.616C514.083 307.064 513.568 296.766 520.433 291.516C525.306 287.791 532.371 288.107 537.361 284.534C543.453 280.164 544.519 271.671 544.882 264.185C544.882 264.103 544.894 264.033 544.894 263.951H544.906C549.018 265.404 553.13 266.853 557.242 268.297L558.566 268.238C559.464 288.659 558.979 309.118 557.113 329.473L555.356 331.289C553.089 331.264 550.851 331.8 548.842 332.849V332.849Z" fill="#171717"/>
|
||||||
|
<path d="M546.675 182.017L547.261 182.474L568.606 162.886C571.5 160.238 575.366 157.392 578.974 158.926C583.109 160.672 583.156 166.564 581.75 170.826C577.79 182.857 567.797 192.288 556.281 197.572C552.295 199.385 548.14 200.798 543.875 201.789C535.771 203.591 527.473 204.374 519.175 204.12C511.326 203.979 503.442 203.195 495.651 204.12C487.86 205.045 479.941 207.92 474.775 213.832C467.793 221.845 467.266 233.478 467.43 244.116C467.5 248.228 467.606 252.352 467.781 256.464L467.594 256.476C462.767 255.539 458.187 258.62 454.286 261.607C450.385 264.594 445.933 267.781 441.071 267.101C444.484 258.364 448.895 250.05 454.215 242.324C447.933 247.631 440.628 251.59 432.753 253.957C438.376 241.129 444 228.305 449.623 215.485C451.589 210.702 453.95 206.091 456.68 201.7C459.33 197.395 463.021 193.826 467.411 191.32C474.171 187.712 482.699 187.477 488.428 182.393C495.211 176.348 495.457 166.004 499.112 157.674C500.717 154.019 504.044 150.235 507.957 151.02C511.12 151.664 512.994 155.202 512.889 158.42C512.698 160.835 511.978 163.179 510.78 165.285L511.647 165.695C514.311 159.96 517.779 154.635 521.947 149.88C523.236 148.416 524.899 146.88 526.847 147.127C527.601 147.276 528.299 147.63 528.864 148.151C529.428 148.672 529.838 149.34 530.047 150.079C530.455 151.563 530.531 153.119 530.27 154.636C529.477 161.581 527.234 168.283 523.686 174.306L524.166 174.587C529.632 167.049 535.897 160.124 542.852 153.933C544.657 152.132 546.809 150.717 549.178 149.774C551.591 148.974 554.508 149.235 556.301 151.028C558.691 153.418 558.257 157.366 557.367 160.623C555.261 168.394 551.626 175.668 546.675 182.017V182.017Z" fill="#171717"/>
|
||||||
|
<path d="M510.44 468.322C512.115 467.104 513.31 464.96 512.795 462.945C512.476 462.02 511.912 461.199 511.163 460.57C510.414 459.94 509.508 459.526 508.542 459.372C506.61 459.095 504.642 459.183 502.742 459.63C501.805 459.782 500.879 459.946 499.942 460.099C502.39 459.399 505.202 457.299 507.147 455.659C509.092 454.019 510.334 451.231 509.396 448.859C508.307 446.153 505.003 445.134 502.086 444.923C500.119 444.79 498.143 444.845 496.186 445.087L496.057 444.187C494.768 412.849 491.687 377.411 468.433 353.852C462.974 348.227 456.452 343.743 449.244 340.661C451.318 340.567 453.391 340.461 455.465 340.368L455.477 339.768C484.94 340.447 514.407 341.13 543.877 341.818V342.052C565.008 371.487 577.303 406.339 579.32 442.518C581.337 478.696 572.991 514.699 555.263 546.3C523.348 546.294 491.627 551.274 461.249 561.061L459.539 560.335C474.339 551.865 483.883 538.369 488.897 521.781C492.224 510.792 493.911 499.288 495.036 487.889L494.884 487.081C498.715 486.355 502.651 485.57 506.775 484.738C509.548 484.343 512.18 483.269 514.437 481.61C516.557 479.818 517.776 476.619 516.464 474.159C514.777 471.043 510.407 470.902 506.881 471.242C506.026 471.324 505.181 471.406 504.327 471.5V471.488C506.538 470.808 508.609 469.735 510.44 468.322Z" fill="white"/>
|
||||||
|
<path d="M496.053 444.189L496.182 445.089C488.333 446.038 480.8 449.611 473.082 452.2L472.52 450.314C471.278 416.614 461.215 381.898 435.664 358.491C429.274 352.583 422.007 347.702 414.12 344.023L414.026 343.015C425.718 341.867 437.491 341.223 449.242 340.66C456.45 343.742 462.972 348.226 468.431 353.851C491.683 377.413 494.764 412.851 496.053 444.189Z" fill="#171717"/>
|
||||||
|
<path d="M423.092 570.981C413.263 572.035 403.292 572.188 393.5 572.305C393.5 572.176 393.512 572.036 393.512 571.905C393.641 567.383 393.746 563.025 393.863 558.714C422.163 555.867 451.478 546.179 463.744 518.114C467.125 509.991 469.387 501.446 470.468 492.714L470.268 491.238C478.268 490.138 486.268 488.738 494.881 487.079L495.033 487.887C493.908 499.287 492.221 510.787 488.894 521.779C483.88 538.368 474.332 551.863 459.536 560.333C458.013 561.2 456.42 562.033 454.78 562.793C444.73 567.49 434.011 569.8 423.092 570.981Z" fill="#171717"/>
|
||||||
|
<path d="M470.269 491.237L470.469 492.713C469.388 501.445 467.126 509.99 463.745 518.113C451.479 546.182 422.168 555.871 393.864 558.713C394.087 550.196 394.297 541.878 394.555 532.913L394.567 532.726C414.3 534.03 434.114 532.079 453.213 526.95L452.955 525.169C451.42 514.649 450.319 504.047 449.663 493.433L449.991 493.41C456.984 492.888 463.627 492.162 470.269 491.237Z" fill="white"/>
|
||||||
|
<path d="M467.012 278.291L469.121 278.115C470.164 290.648 471.679 303.125 473.666 315.545V316.494C471.733 316.494 469.812 316.506 467.879 316.506C463.826 316.518 459.444 316.647 456.293 319.189C450.763 323.652 452.333 332.31 454.407 339.105L454.396 339.749C454.759 339.761 455.11 339.772 455.474 339.772L455.462 340.372C453.388 340.466 451.315 340.572 449.241 340.665C437.491 341.227 425.717 341.872 414.025 343.02C398.971 344.33 384.058 346.928 369.449 350.787C341.532 358.472 314.622 373.093 297.436 396.387C280.25 419.681 274.451 452.487 287.677 478.24C298.177 498.671 318.745 512.167 340.114 520.602C357.524 527.453 375.895 531.547 394.566 532.739L394.554 532.926C394.296 541.888 394.085 550.206 393.863 558.726C393.746 563.037 393.64 567.395 393.512 571.917L392.294 571.882C357.875 576.882 321.558 575.713 289.928 561.655C268.841 552.283 253.61 534.71 247.754 512.455C241.981 488.405 238.908 463.786 238.593 439.055L240.421 439.032C258.743 427.083 267.26 405.457 272.391 385.084C278.12 362.298 280.404 337.907 292.81 317.394C299.581 306.183 309.317 297.232 320.446 290.438L321.454 289.538C322.484 290.278 323.574 290.932 324.711 291.494C329.142 293.619 334.126 294.307 338.967 293.462L338.979 293.521L467.012 278.291Z" fill="#171717"/>
|
||||||
|
<path d="M371.932 413.519C374.603 428.221 377.274 442.927 379.945 457.638L379.804 458.294C372.259 456.794 364.926 453.573 359.654 448.02C353.937 441.987 351.054 432.931 353.714 425.058C356.233 417.642 364.314 412.195 371.931 413.507V413.519H371.932Z" fill="#171717"/>
|
||||||
|
<path d="M321.451 289.526L320.443 290.426C309.314 297.226 299.579 306.171 292.808 317.382C280.402 337.895 278.117 362.282 272.389 385.072C267.258 405.445 258.741 427.072 240.419 439.02L238.591 439.043C238.076 411.278 240.491 383.537 244.238 355.456C246.581 344.912 251.477 327.199 255.952 319.139C268.152 297.185 286.352 280.526 309.666 271.119C311.646 278.4 315.499 285.274 321.451 289.526Z" fill="#171717"/>
|
||||||
|
<path d="M316.462 238.53C316.643 236.254 317.067 234.003 317.727 231.817C319.827 224.94 324.85 218.696 331.703 216.494C332.84 216.134 334.009 215.883 335.194 215.744C341.743 215.018 348.608 217.771 353.481 222.351C359.233 227.751 362.537 235.308 364.388 242.97C367.469 255.716 366.672 270.02 359.175 280.77C356.806 284.108 353.801 286.946 350.333 289.122C346.866 291.297 343.003 292.766 338.966 293.446C334.125 294.291 329.14 293.603 324.709 291.478C323.572 290.916 322.482 290.262 321.452 289.522C315.501 285.269 311.646 278.393 309.667 271.122C309.249 269.631 308.915 268.117 308.667 266.588C307.14 257.263 308.035 247.702 311.267 238.823L312.005 237.886C313.387 238.109 313.598 238.179 314.992 238.413L316.462 238.53Z" fill="white"/>
|
||||||
|
<path d="M515.255 315.616C514.083 307.064 513.568 296.766 520.433 291.516C525.306 287.791 532.371 288.107 537.361 284.534C543.453 280.164 544.519 271.671 544.882 264.185C544.882 264.103 544.894 264.033 544.894 263.951C545.128 259.066 545.288 254.177 545.374 249.284C545.674 233.75 545.257 218.192 544.097 202.693" stroke="#171717" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M532.172 219.072C524.666 218.406 517.116 218.402 509.609 219.06C512.374 233.762 514.611 248.554 516.322 263.437C511.929 263.847 507.532 264.253 503.131 264.655C503.611 264.585 504.103 264.503 504.595 264.421" stroke="#171717" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M530.824 232.579C530.221 231.438 529.297 230.5 528.166 229.879C527.035 229.259 525.747 228.984 524.461 229.089C523.175 229.194 521.948 229.673 520.932 230.469C519.916 231.264 519.156 232.34 518.746 233.563C518.992 233.2 519.238 232.825 519.472 232.45" stroke="#171717" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M499.779 230.752C499.358 229.41 498.501 228.246 497.344 227.446C496.187 226.646 494.796 226.255 493.391 226.335C491.986 226.416 490.649 226.963 489.591 227.89C488.532 228.817 487.814 230.07 487.549 231.452C487.713 231.241 487.889 231.019 488.049 230.796" stroke="#171717" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M499.04 279.205C497.41 279.84 495.646 280.053 493.911 279.823C492.177 279.594 490.528 278.931 489.119 277.894C487.71 276.857 486.585 275.482 485.849 273.894C485.114 272.307 484.791 270.559 484.911 268.814" stroke="#171717" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M473.666 315.545C471.686 303.139 470.171 290.662 469.121 278.115C468.521 270.91 468.076 263.693 467.785 256.466C467.609 252.354 467.504 248.23 467.434 244.118C467.27 233.481 467.797 221.848 474.779 213.834C479.945 207.918 487.853 205.048 495.655 204.122C503.457 203.196 511.33 203.981 519.179 204.122C527.478 204.376 535.775 203.593 543.879 201.791C548.144 200.799 552.3 199.387 556.285 197.574C567.801 192.29 577.794 182.86 581.754 170.828C583.16 166.564 583.113 160.671 578.978 158.928C575.37 157.393 571.504 160.24 568.61 162.888L547.266 182.476" stroke="#171717" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M546 182.872C546.234 182.591 546.457 182.298 546.68 182.017C551.629 175.668 555.261 168.395 557.364 160.625C558.254 157.368 558.688 153.42 556.298 151.03C554.506 149.238 551.589 148.98 549.175 149.776C546.806 150.719 544.654 152.134 542.849 153.935C535.895 160.126 529.63 167.051 524.164 174.589C524.62 174.214 525.088 173.839 525.546 173.464" stroke="#171717" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M523.479 174.648C523.549 174.531 523.62 174.425 523.679 174.308C527.227 168.285 529.47 161.583 530.263 154.638C530.525 153.121 530.448 151.565 530.04 150.081C529.831 149.341 529.422 148.674 528.857 148.153C528.292 147.632 527.594 147.278 526.84 147.129C524.895 146.883 523.232 148.418 521.94 149.882C517.773 154.638 514.305 159.963 511.64 165.697C511.253 166.529 510.89 167.372 510.54 168.216" stroke="#171717" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M509.632 167.443C510.019 166.743 510.405 166.014 510.78 165.287C511.978 163.181 512.698 160.837 512.889 158.422C512.994 155.2 511.12 151.662 507.957 151.022C504.044 150.237 500.717 154.022 499.112 157.676C495.457 166.005 495.212 176.35 488.428 182.395C482.699 187.479 474.171 187.714 467.411 191.322C463.02 193.827 459.33 197.396 456.68 201.7C453.95 206.093 451.592 210.705 449.628 215.489C444.004 228.305 438.381 241.129 432.758 253.961C440.633 251.594 447.938 247.635 454.22 242.328C454.56 242.047 454.888 241.766 455.22 241.473" stroke="#171717" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M455.66 240.264C455.168 240.943 454.688 241.635 454.219 242.326C448.899 250.051 444.488 258.364 441.075 267.1C445.937 267.779 450.389 264.581 454.29 261.606C458.191 258.631 462.772 255.538 467.598 256.475" stroke="#171717" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M454.406 339.1C452.332 332.305 450.763 323.648 456.292 319.184C459.443 316.642 463.825 316.513 467.878 316.501C469.811 316.501 471.732 316.489 473.665 316.489C487.524 316.442 501.387 316.403 515.254 316.372C520.234 316.349 525.213 316.334 530.191 316.325C533.67 316.313 537.326 316.348 540.383 318.012C544.083 320.039 546.241 324.198 546.897 328.356C547.122 329.829 547.212 331.319 547.166 332.808C547.046 335.541 546.756 338.264 546.299 340.962" stroke="#171717" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M449.99 493.416C456.984 492.889 463.626 492.162 470.269 491.237C478.269 490.137 486.269 488.737 494.882 487.078C498.713 486.352 502.649 485.567 506.773 484.735C509.546 484.34 512.178 483.266 514.435 481.607C516.555 479.815 517.774 476.616 516.462 474.156C514.775 471.04 510.405 470.899 506.879 471.239C506.024 471.321 505.179 471.403 504.325 471.497C492.825 472.657 481.363 474.379 470.025 476.64" stroke="#171717" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M499.92 460.11C490.138 461.75 480.356 463.402 470.574 465.065" stroke="#171717" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M504.324 471.485C506.536 470.807 508.608 469.735 510.439 468.322C512.114 467.104 513.309 464.96 512.794 462.945C512.476 462.02 511.912 461.199 511.163 460.57C510.413 459.94 509.507 459.526 508.541 459.372C506.609 459.095 504.642 459.183 502.741 459.63C501.804 459.782 500.878 459.946 499.941 460.099" stroke="#171717" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M499.92 460.11C499.932 460.11 499.932 460.11 499.943 460.098C502.391 459.398 505.203 457.298 507.148 455.658C509.093 454.018 510.335 451.23 509.397 448.858C508.308 446.152 505.004 445.133 502.087 444.922C500.119 444.789 498.144 444.844 496.187 445.086C488.338 446.035 480.805 449.608 473.087 452.197C469.07 453.642 464.885 454.567 460.634 454.95C461.134 455.02 461.642 455.102 462.145 455.173" stroke="#171717" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M460.487 455.447C460.522 455.283 460.557 455.107 460.587 454.947C462.189 447.478 462.979 439.858 462.942 432.22C463.019 430.652 462.788 429.084 462.263 427.604C461.985 426.868 461.512 426.221 460.896 425.733C460.28 425.244 459.543 424.931 458.763 424.828C456.326 424.699 454.651 427.183 453.714 429.42C450.141 437.878 449.45 447.25 449.133 456.42C448.711 468.753 448.886 481.093 449.66 493.44C450.316 504.054 451.417 514.656 452.952 525.176" stroke="#171717" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M371.933 413.519C372.396 413.583 372.854 413.681 373.304 413.812" stroke="#171717" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M448.947 456.572C434.819 457.38 420.695 458.192 406.574 459.009C398.28 459.489 389.915 459.958 381.715 458.646C381.082 458.541 380.438 458.423 379.805 458.295C372.26 456.795 364.927 453.574 359.655 448.021C353.938 441.988 351.055 432.932 353.715 425.059C356.234 417.643 364.315 412.196 371.932 413.508" stroke="#171717" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M371.933 413.507V413.519C374.603 428.221 377.274 442.927 379.946 457.638C380.098 457.251 380.262 456.865 380.426 456.478" stroke="#171717" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M453.212 526.956C415.799 536.961 376.167 534.732 340.112 520.595C318.744 512.16 298.172 498.664 287.675 478.233C274.449 452.483 280.236 419.658 297.434 396.38C314.632 373.102 341.534 358.47 369.447 350.785C384.056 346.926 398.97 344.328 414.023 343.018C425.715 341.87 437.488 341.226 449.239 340.663C451.313 340.569 453.386 340.463 455.46 340.37" stroke="#171717" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M454.3 339.749H454.394C454.757 339.761 455.109 339.772 455.472 339.772C484.935 340.451 514.402 341.135 543.872 341.822C544.472 341.845 545.055 341.857 545.653 341.869" stroke="#171717" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M394.555 532.919C394.297 541.881 394.086 550.199 393.864 558.719C393.747 563.03 393.641 567.388 393.513 571.91C393.513 572.039 393.501 572.179 393.501 572.31" stroke="#171717" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M496.053 444.189C494.764 412.851 491.683 377.413 468.429 353.854C462.971 348.229 456.448 343.745 449.24 340.663C449.14 340.616 449.017 340.569 448.9 340.522" stroke="#171717" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M393.5 572.3C403.294 572.183 413.263 572.031 423.092 570.976C434.01 569.793 444.73 567.485 454.781 562.787C456.421 562.026 458.014 561.194 459.537 560.327C474.337 551.857 483.881 538.361 488.895 521.773C492.222 510.784 493.909 499.28 495.034 487.881" stroke="#171717" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M472.518 450.316C471.276 416.616 461.213 381.9 435.662 358.493C429.272 352.585 422.005 347.704 414.118 344.025" stroke="#171717" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M393.828 558.716H393.863C422.163 555.869 451.478 546.181 463.744 518.116C467.125 509.993 469.387 501.448 470.468 492.716" stroke="#171717" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M461.249 561.059C491.627 551.273 523.348 546.293 555.263 546.3C559.703 546.3 564.155 546.405 568.595 546.6C569.695 546.647 570.809 546.694 571.922 546.729C576.198 546.834 580.522 546.612 584.222 544.585C589.072 541.937 591.884 536.736 594.145 531.698C606.715 503.57 609.96 471.81 606.411 441.211C605.04 429.671 602.815 418.249 599.757 407.038C594.625 388.535 587.859 370.524 579.537 353.219C577.66 348.966 575.36 344.912 572.672 341.119C571.326 339.304 569.778 337.65 568.056 336.187C564.512 333.143 560.027 331.412 555.356 331.287C553.09 331.262 550.853 331.797 548.843 332.845" stroke="#171717" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M555.11 546.579C555.157 546.485 555.215 546.392 555.262 546.298C572.989 514.697 581.333 478.696 579.316 442.519C577.299 406.342 565.005 371.491 543.875 342.057" stroke="#171717" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M572.144 341.19L572.671 341.12C604.759 337.16 633.179 314.796 647.741 285.93C662.385 256.9 663.802 222.212 655.11 190.874C653.833 186.258 652.416 181.022 654.91 176.933C655.027 176.733 655.156 176.546 655.285 176.359C657.277 173.618 660.721 172.224 663.954 171.005C672.554 167.772 681.154 164.534 689.754 161.293C690.023 161.188 690.281 161.093 690.554 160.988C695.654 159.078 701.344 157.157 706.393 159.207C713.34 162.019 715.449 170.676 716.421 178.115C722.489 224.425 720.287 272.878 701.836 315.791C683.385 358.704 646.958 395.36 601.6 406.536" stroke="#171717" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M654.653 175.9C647.912 174.063 641.426 171.39 635.347 167.945C632.347 166.245 629.103 163.692 629.337 160.26C629.665 155.738 635.792 154.086 640.103 155.48C644.414 156.874 648.103 160.049 652.591 160.728C645.838 150.157 641.084 138.434 638.568 126.145C638.205 124.411 637.935 122.466 638.896 120.979C640.138 119.034 643.043 118.788 645.105 119.843C647.167 120.898 648.538 122.889 649.779 124.834C656.088 134.71 661.004 145.409 664.388 156.629C661.178 144.617 658.964 132.36 657.769 119.984C657.441 116.598 658.003 112.053 661.369 111.455C664.778 110.855 666.84 115.063 667.707 118.425C670.402 128.98 673.097 139.539 675.79 150.103C673.701 137.439 673.076 124.577 673.927 111.771C674.138 108.671 674.993 104.859 678.016 104.071C681.952 103.064 684.483 108.124 685.268 112.108C688.361 127.764 689.662 143.721 689.146 159.671" stroke="#171717" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M557.112 329.475C558.979 309.12 559.464 288.661 558.565 268.24C558.543 267.689 558.519 267.138 558.495 266.588C558.308 262.628 558.026 258.54 556.195 255.025C554.364 251.51 550.56 248.711 546.647 249.308" stroke="#171717" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M309.772 271.075C309.734 271.086 309.699 271.101 309.667 271.122C286.354 280.529 268.149 297.188 255.953 319.142C251.478 327.202 246.581 344.915 244.238 355.459C240.489 383.54 238.076 411.281 238.591 439.046C238.906 463.777 241.979 488.396 247.752 512.446C253.61 534.705 268.839 552.277 289.926 561.646C321.557 575.704 357.874 576.876 392.292 571.873" stroke="#171717" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M240.419 439.022C258.741 427.073 267.258 405.447 272.389 385.074C278.118 362.288 280.402 337.897 292.808 317.384C299.579 306.173 309.315 297.222 320.444 290.428" stroke="#171717" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M544.906 263.952C549.018 265.405 553.13 266.853 557.242 268.298" stroke="#171717" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M311.271 238.823C308.041 247.702 307.145 257.263 308.671 266.588C308.919 268.117 309.253 269.631 309.671 271.122C311.651 278.397 315.505 285.274 321.456 289.522C322.487 290.262 323.576 290.916 324.713 291.478C329.145 293.603 334.129 294.291 338.97 293.446C343.007 292.766 346.87 291.297 350.338 289.121C353.806 286.946 356.81 284.108 359.179 280.77C366.679 270.016 367.473 255.711 364.392 242.965C362.541 235.303 359.237 227.747 353.485 222.346C348.612 217.765 341.746 215.012 335.198 215.739C334.014 215.878 332.845 216.129 331.707 216.489C324.854 218.689 319.828 224.936 317.731 231.812C317.071 233.998 316.647 236.249 316.466 238.525C316.132 243.433 316.523 248.363 317.626 253.157C318.692 258.183 320.332 263.22 323.472 267.285C326.612 271.35 331.472 274.349 336.616 274.197C342.263 274.021 347.359 269.98 349.749 264.86C352.139 259.74 352.104 253.731 350.675 248.26C349.749 244.71 347.969 240.997 344.607 239.56C341.245 238.123 336.348 240.579 336.816 244.211" stroke="#171717" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M315 238.413C313.606 238.179 313.395 238.108 312.013 237.886" stroke="#171717" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M333.343 215.334L335.124 215.123C376.324 210.191 414.213 205.271 455.508 200.339" stroke="#171717" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M338.978 293.509L467.012 278.291" stroke="#171717" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M423.046 570.817C423.058 570.876 423.081 570.922 423.093 570.981C435.171 615.967 415.607 667.666 376.748 693.369C337.83 719.095 282.512 716.811 245.855 687.969C237.865 681.678 229.208 673.805 219.145 675.269C218.876 675.304 218.606 675.351 218.345 675.41C212.757 676.488 208.071 680.366 204.006 684.419C194.833 693.557 187.16 704.546 183.657 717.01C181.105 725.813 181.032 735.149 183.446 743.99C184.491 747.686 186.061 751.213 188.109 754.463C194.271 764.14 204.346 770.571 214.433 776.042C254.533 797.809 300.445 809.512 345.993 806.9C391.541 804.288 436.539 787 470.393 756.42C504.247 725.84 526.286 681.82 527.914 636.22" stroke="#171717" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M571.874 548.289L783.987 735.766C799.463 749.438 816.051 765.276 817.551 785.871C818.277 795.958 815.103 805.927 809.737 814.585C807.938 817.495 805.905 820.253 803.657 822.832C794.789 833.024 783.249 840.51 771.511 847.199C758.378 854.661 743.442 861.363 728.716 862.464C721.459 863.113 714.15 862.079 707.359 859.442C693.102 853.76 683.167 840.932 673.948 828.666C625.553 764.303 577.166 699.94 528.786 635.578L528.259 634.878" stroke="#171717" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M218.172 674.426C208.097 674.848 202.216 662.851 192.867 659.056C186.705 656.549 179.5 657.956 173.689 661.188C167.878 664.42 163.169 669.295 158.553 674.098C142.995 690.277 127.437 706.46 111.88 722.645C104.769 730.037 97.4939 737.687 93.7329 747.223C89.9719 756.759 90.5579 768.767 97.8679 775.948C105.705 783.648 118.721 783.422 128.69 778.806C138.659 774.19 146.49 766.106 154.744 758.867C162.991 751.651 172.516 744.903 183.444 743.989H183.479" stroke="#171717" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M728.739 862.816C736.787 871.286 740.911 882.616 746.569 892.842C752.227 903.068 760.662 913.062 772.202 914.948C780.895 916.366 789.529 912.898 798.139 911.012C811.026 908.189 824.393 908.912 837.539 907.825C850.685 906.738 864.413 903.432 873.856 894.225C882.103 886.212 885.993 874.813 889.156 863.754C891.183 856.654 893.045 849.309 892.256 841.976C891.467 834.643 887.511 827.203 880.74 824.251C875.714 822.06 869.986 822.587 864.54 823.151C854.712 824.158 844.891 825.169 835.077 826.185C830.086 826.7 824.932 827.204 820.14 825.716C815.348 824.228 810.979 820.198 810.709 815.196" stroke="#171717" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M444.045 153.413L455.586 138.5" stroke="#171717" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M456.947 151.943L443.447 139.743" stroke="#171717" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M273.687 242.552L262.911 232.652" stroke="#171717" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M262.021 245.13L273.6 231.072" stroke="#171717" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M518.261 111.1L526.566 96.235" stroke="#171717" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M529.227 107.663L511.886 98.52" stroke="#171717" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M745.785 146.723L753.228 135.973" stroke="#171717" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M755 147.422L741.927 135.669" stroke="#171717" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M704.743 129.426C707.872 115.419 706.066 100.761 699.628 87.933" stroke="#171717" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M716.045 115.3C716.815 109.661 715.933 103.919 713.505 98.771" stroke="#171717" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M305.052 690.693C331.767 695.593 360.842 683.528 376.233 661.148" stroke="#171717" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M144.739 657.081C148.949 652.491 154.026 648.78 159.677 646.163C165.328 643.545 171.441 642.072 177.664 641.829" stroke="#171717" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M143.137 637.232C144.394 635.35 146.08 633.794 148.057 632.692C150.034 631.589 152.244 630.973 154.506 630.893" stroke="#171717" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M733.3 900.939C737.258 908.492 742.946 915.003 749.9 919.939" stroke="#171717" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M781 839.949C791.672 855.019 811.49 863.008 829.63 859.549C847.77 856.09 863.262 841.377 867.645 823.438" stroke="#171717" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M850.033 824.063C838.239 833.008 829.521 845.402 825.09 859.526" stroke="#171717" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M825.976 826.437C814.652 833.528 805.723 843.86 800.348 856.092L802.13 854.754" stroke="#171717" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M754.478 903.007C786.393 895.207 822.078 903.2 851.258 888.112C861.386 882.737 870 874.901 876.305 865.325C882.611 855.749 886.407 844.74 887.343 833.312" stroke="#171717" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M184.272 713.132C175.102 711.685 165.66 714.402 157.565 718.948C149.47 723.494 142.513 729.782 135.665 736.048C129.389 741.792 122.941 747.848 119.848 755.778C116.755 763.708 118.104 774.047 125.177 778.778" stroke="#171717" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M141.188 769.74C138.496 760.158 133.688 751.303 127.119 743.826" stroke="#171717" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M157.609 756.567C156.006 746.151 151.892 736.282 145.624 727.81" stroke="#171717" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M170.973 746.649C170.207 736.375 167.27 726.381 162.356 717.326" stroke="#171717" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M195.768 661.369C176.204 665.238 161.02 680.206 147.086 694.475C134.214 707.656 121.262 720.935 111.03 736.257C106.924 742.405 103.24 748.942 101.285 756.072C99.3298 763.202 99.2118 771.014 102.085 777.825" stroke="#171717" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M341.962 238.8C348.293 237.202 354.757 236.182 361.273 235.755" stroke="#171717" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M538.6 404.289L546.777 394.289" stroke="#171717" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M525.388 375.391L517.751 368.532" stroke="#171717" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M507.6 427.037L513.378 420.825" stroke="#171717" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M536.277 452.588L529.586 444.796" stroke="#171717" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M541.859 441.852L548.802 435.552" stroke="#171717" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M506.309 524.162L515.361 513.375" stroke="#171717" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M556.024 510.977L548.91 500.7" stroke="#171717" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M551.828 473.333L557.945 466.64" stroke="#171717" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M427.173 457.63C424.563 481.732 425.225 506.076 429.14 530" stroke="#171717" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M385.19 515.5L390.163 510.135" stroke="#171717" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M369.213 479.064L362.56 471.655" stroke="#171717" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M334.371 499.826C335.945 496.618 338.209 493.797 341 491.565" stroke="#171717" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M331 461.454L322.683 454.065" stroke="#171717" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M322.826 411.771C324.564 407.95 326.903 404.432 329.752 401.35" stroke="#171717" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M411.191 435.419L404.238 428.319" stroke="#171717" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M405.083 386.124L410.458 377.855" stroke="#171717" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M437.025 409.569L430.152 403.669" stroke="#171717" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M615.92 385.276L622.864 374.471" stroke="#171717" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M636.287 338.482L629.572 333.234" stroke="#171717" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M673.5 329.1L678.449 319.17" stroke="#171717" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M657.665 315.939L652.328 313.379" stroke="#171717" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M673.532 280.322C675.029 277.006 676.526 273.69 678.022 270.373" stroke="#171717" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M696.272 284.6L691.251 282.246" stroke="#171717" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M673.053 235.862C676.7 236.71 680.174 238.182 683.321 240.213" stroke="#171717" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M696.168 250.505C697.133 247.197 698.098 243.889 699.062 240.582" stroke="#171717" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M682.937 203.369L686.245 193.032" stroke="#171717" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M454.02 341.133C468.967 346.387 484.153 351.526 499.938 352.887C515.723 354.248 532.391 351.487 545.209 342.179" stroke="#171717" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M209.981 401.421C205.761 389.154 191.121 382.321 178.402 384.881C165.683 387.441 155.453 397.819 150.702 409.889C145.951 421.959 146.056 435.473 148.394 448.234C150.178 457.974 153.354 467.734 159.66 475.371C165.966 483.008 175.866 488.189 185.68 486.863C195.494 485.537 204.267 476.496 203.441 466.628C202.393 454.102 186.341 446.815 174.741 451.643C163.141 456.471 156.755 469.643 156.341 482.209C155.927 494.775 160.37 506.939 164.963 518.64C169.556 530.341 174.437 542.24 174.981 554.803C175.525 567.366 170.805 580.964 160.061 587.488C156.279 589.785 151.977 591.088 147.557 591.277C143.136 591.465 138.739 590.533 134.775 588.566C130.811 586.6 127.409 583.662 124.885 580.028C122.361 576.394 120.797 572.18 120.338 567.779" stroke="white" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M747 368.892C764.3 372.72 776.734 389.665 778.742 407.266C780.75 424.867 773.825 442.557 763.353 456.846C756.733 465.878 747.763 474.318 736.635 475.566C725.507 476.814 713.027 467.447 714.877 456.402C716.238 448.278 725.028 442.682 733.228 443.457C741.428 444.232 748.497 450.296 752.084 457.711C755.671 465.126 756.196 473.69 755.353 481.884C753.616 498.766 745.281 515.97 730.187 523.728C720.235 528.843 708.651 529.333 697.497 530.212C686.343 531.091 674.631 532.689 665.725 539.462C656.819 546.235 652.175 559.846 658.665 568.962" stroke="#171717" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M397.371 115.174C397.101 98.466 383.42 83.416 367.051 80.054C350.682 76.692 333 84.3 322.84 97.563C312.68 110.826 309.792 128.931 313.659 145.188C316.189 155.825 324.265 167.403 335.103 165.962C341.263 165.143 346.282 159.918 347.949 153.932C349.616 147.946 348.327 141.432 345.557 135.866C339.546 123.798 325.01 115.586 312.14 119.603C301.68 122.868 294.831 132.762 289.768 142.479C284.705 152.196 280.312 162.769 271.868 169.75C263.424 176.731 249.207 178.325 242.368 169.765" stroke="#171717" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M283.282 93.243C287.334 89.624 290.796 85.008 291.701 79.651C292.606 74.294 290.392 68.183 285.545 65.727C280.698 63.271 273.623 65.977 272.673 71.327C276.566 62.201 273.931 50.573 266.173 44.395C258.415 38.217 246.112 38.428 238.882 45.222C231.652 52.016 230.843 64.693 237.496 72.054C237.932 64.265 228.756 57.685 221.519 60.597C214.282 63.509 212.219 74.61 217.928 79.926C213.945 77.487 209.101 75.589 204.675 77.076C197.351 79.536 198.294 88.151 205.175 89.834C211.139 91.292 219.095 90.152 225.396 90.747C244.581 92.559 264.023 92.544 283.282 93.243Z" stroke="#171717" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M158.662 312.635C162.015 312.535 165.478 312.405 168.511 310.972C176.746 307.08 178.011 296.094 178.13 286.987C178.23 279.341 177.349 270.02 170.423 266.781C164.882 264.19 158.023 267.326 154.407 272.262C150.791 277.198 149.642 283.462 148.588 289.486C148.98 280.886 149.277 271.821 145.299 264.186C141.321 256.551 131.465 251.258 123.855 255.286C118.746 257.986 116.155 264.063 116.006 269.842C115.857 275.621 117.747 281.235 119.606 286.707C119.785 284.472 119.327 282.232 118.285 280.246C117.243 278.261 115.66 276.611 113.719 275.488C111.778 274.365 109.559 273.816 107.318 273.903C105.077 273.989 102.907 274.709 101.059 275.979C99.2108 277.249 97.7601 279.016 96.8751 281.076C95.9901 283.136 95.7069 285.405 96.0584 287.62C96.4099 289.834 97.3817 291.904 98.8612 293.589C100.341 295.274 102.267 296.505 104.418 297.14C97.3008 287.326 81.3248 285.676 72.3528 293.829C66.9388 298.749 64.3938 308.829 71.4978 313.69C76.6398 317.209 86.5858 314.837 92.3168 314.663L158.662 312.635Z" stroke="#171717" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M855.022 244.432C863.957 244.08 874.022 243.19 879.688 236.269C885.354 229.348 883.188 217.287 875.155 213.322C867.122 209.357 855.834 215.693 855.612 224.645C856.975 216.945 858.321 208.903 856.065 201.416C853.809 193.929 846.745 187.264 838.986 188.241C833.119 188.98 828.444 193.86 826.227 199.341C824.01 204.822 823.8 210.877 823.62 216.788C823.878 214.098 823.439 211.386 822.344 208.916C821.249 206.445 819.535 204.298 817.369 202.682C815.202 201.066 812.656 200.036 809.976 199.691C807.295 199.346 804.571 199.698 802.066 200.712C799.561 201.727 797.36 203.37 795.675 205.483C793.99 207.596 792.878 210.107 792.446 212.775C792.014 215.443 792.278 218.177 793.21 220.714C794.143 223.25 795.714 225.503 797.771 227.256C796.215 220.81 787.971 217.009 782.058 220.012C776.145 223.015 774.353 231.912 778.639 236.973C773.574 230.996 759.671 234.554 761.784 243.692C763.444 250.874 776.774 247.514 782.051 247.306L855.022 244.432Z" stroke="white" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M479.784 699.4L474.822 681.758" stroke="white" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M468.2 694.408L485.979 688.777" stroke="white" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M667.258 676.255C668.682 671.28 670.105 666.305 671.529 661.33" stroke="white" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M676.624 671.773C671.544 669.594 666.128 668.301 660.611 667.949" stroke="white" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M681.007 801.39L686.531 785.573C686.527 786.067 686.523 786.561 686.52 787.056" stroke="white" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M675.451 792.208L690.851 795.69" stroke="white" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M588.951 651.439C590.237 644.639 591.524 637.839 592.81 631.039" stroke="white" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M600.658 645.414L581.029 640.014" stroke="white" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M354.2 734.188C357.155 728.476 360.744 723.116 364.9 718.209C364.606 718.738 364.312 719.268 364.017 719.797" stroke="white" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M365.15 733.543L351.937 720.293" stroke="white" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M232.844 767.256L244.474 756.84" stroke="white" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M243.078 768.553L232.739 756.79" stroke="white" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M313.826 777.669L323.2 767.2" stroke="white" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M442.315 728.039L432.843 721.569" stroke="white" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M462.581 626.543L471.85 614.336" stroke="white" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M620.899 706.564C621.591 701.78 622.282 696.996 622.973 692.211" stroke="white" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M753.41 749.873C750.108 747.429 746.261 745.825 742.2 745.2" stroke="white" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M745.019 827.876L750.533 813.543" stroke="white" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M241.358 422.23C252.098 420.774 260.065 411.542 265.368 402.09C275.692 383.69 279.843 362.59 285.868 342.368C291.893 322.146 300.586 301.575 317.168 288.519" stroke="white" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M547.77 266.479C550.955 267.318 553.732 269.279 555.589 272" stroke="white" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M358.599 313.86C357.665 311.965 356.036 310.502 354.051 309.776C352.067 309.049 349.879 309.115 347.941 309.959C346.004 310.803 344.465 312.361 343.646 314.308C342.826 316.256 342.788 318.445 343.539 320.42C344.29 322.396 345.773 324.006 347.68 324.917C349.586 325.828 351.771 325.971 353.78 325.314C355.788 324.657 357.467 323.253 358.468 321.391C359.468 319.53 359.714 317.355 359.153 315.317" stroke="white" stroke-width="3.514" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M318.712 340.892C318.063 339.573 316.93 338.555 315.55 338.05C314.17 337.544 312.647 337.589 311.299 338.175C309.951 338.762 308.881 339.844 308.31 341.199C307.739 342.554 307.712 344.076 308.234 345.451C308.756 346.825 309.786 347.946 311.113 348.58C312.439 349.215 313.958 349.314 315.356 348.858C316.753 348.402 317.921 347.426 318.618 346.131C319.315 344.837 319.486 343.324 319.097 341.906" stroke="white" stroke-width="2.444" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M318.712 540.048C318.063 538.729 316.93 537.711 315.55 537.206C314.17 536.7 312.647 536.745 311.299 537.331C309.951 537.918 308.881 539 308.31 540.355C307.739 541.71 307.712 543.232 308.234 544.607C308.756 545.981 309.786 547.102 311.113 547.736C312.439 548.37 313.958 548.47 315.356 548.014C316.753 547.558 317.921 546.581 318.618 545.287C319.315 543.993 319.486 542.48 319.097 541.062" stroke="white" stroke-width="2.444" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M289.663 511.984C288.649 509.921 286.88 508.327 284.722 507.534C282.565 506.741 280.185 506.809 278.076 507.724C275.967 508.638 274.291 510.33 273.397 512.447C272.502 514.565 272.457 516.945 273.271 519.095C274.084 521.245 275.695 522.999 277.767 523.993C279.84 524.987 282.216 525.145 284.402 524.434C286.588 523.723 288.416 522.198 289.507 520.175C290.598 518.152 290.869 515.786 290.263 513.569" stroke="white" stroke-width="3.822" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M447.578 294.031C446.928 292.714 445.795 291.698 444.416 291.194C443.036 290.69 441.516 290.736 440.17 291.324C438.823 291.911 437.755 292.994 437.186 294.348C436.617 295.702 436.591 297.223 437.113 298.595C437.636 299.968 438.667 301.087 439.992 301.719C441.317 302.352 442.835 302.45 444.231 301.994C445.627 301.537 446.794 300.56 447.489 299.267C448.184 297.973 448.354 296.461 447.964 295.045" stroke="white" stroke-width="2.444" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M553.014 297.546C552.363 296.229 551.231 295.213 549.851 294.709C548.472 294.205 546.951 294.251 545.605 294.839C544.259 295.426 543.19 296.509 542.621 297.863C542.052 299.217 542.026 300.738 542.549 302.11C543.071 303.483 544.102 304.602 545.427 305.234C546.753 305.867 548.271 305.965 549.667 305.509C551.063 305.052 552.229 304.075 552.924 302.782C553.619 301.488 553.79 299.976 553.4 298.56" stroke="white" stroke-width="2.444" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M589.49 109.864L601.881 111.622C601.985 111.637 602.083 111.683 602.16 111.755C602.238 111.827 602.291 111.921 602.313 112.025C602.336 112.128 602.326 112.236 602.285 112.333C602.244 112.431 602.175 112.513 602.086 112.57L591.529 119.29C591.443 119.345 591.375 119.424 591.333 119.517C591.292 119.611 591.279 119.714 591.297 119.815L593.454 132.142C593.472 132.246 593.458 132.354 593.413 132.45C593.369 132.546 593.296 132.626 593.204 132.679C593.113 132.732 593.007 132.756 592.902 132.747C592.796 132.738 592.696 132.698 592.615 132.63L582.961 124.666C582.882 124.601 582.786 124.561 582.684 124.551C582.582 124.54 582.48 124.56 582.39 124.608L571.333 130.469C571.239 130.519 571.133 130.538 571.028 130.526C570.923 130.513 570.824 130.468 570.746 130.398C570.667 130.327 570.611 130.234 570.587 130.131C570.563 130.028 570.571 129.92 570.61 129.822L575.2 118.18C575.237 118.085 575.246 117.981 575.224 117.881C575.203 117.781 575.152 117.69 575.079 117.619L566.088 108.919C566.012 108.846 565.96 108.751 565.939 108.647C565.919 108.543 565.931 108.435 565.974 108.339C566.016 108.242 566.087 108.16 566.178 108.105C566.268 108.05 566.373 108.024 566.479 108.031L578.97 108.8C579.072 108.807 579.175 108.784 579.264 108.732C579.353 108.681 579.425 108.604 579.47 108.511L584.97 97.27C585.016 97.1751 585.091 97.0968 585.183 97.0456C585.276 96.9944 585.382 96.9728 585.487 96.9836C585.592 96.9945 585.691 97.0374 585.771 97.1065C585.852 97.1756 585.908 97.2676 585.935 97.37L589.064 109.487C589.09 109.585 589.145 109.672 589.22 109.739C589.296 109.806 589.39 109.85 589.49 109.864V109.864Z" fill="white"/>
|
||||||
|
<path d="M244.032 265.537L256.423 267.295C256.527 267.311 256.624 267.358 256.7 267.43C256.777 267.502 256.83 267.596 256.852 267.7C256.873 267.803 256.863 267.91 256.822 268.007C256.781 268.104 256.712 268.187 256.623 268.243L246.066 274.963C245.979 275.018 245.911 275.097 245.87 275.19C245.829 275.284 245.816 275.387 245.834 275.488L248 287.815C248.018 287.919 248.004 288.027 247.959 288.123C247.915 288.219 247.842 288.299 247.75 288.352C247.659 288.405 247.553 288.429 247.448 288.42C247.342 288.411 247.242 288.371 247.161 288.303L237.507 280.339C237.428 280.274 237.331 280.234 237.23 280.223C237.128 280.213 237.026 280.233 236.936 280.281L225.879 286.142C225.785 286.192 225.679 286.211 225.574 286.199C225.469 286.186 225.37 286.141 225.291 286.071C225.213 286 225.157 285.907 225.133 285.804C225.109 285.701 225.117 285.593 225.156 285.495L229.747 273.853C229.784 273.758 229.793 273.654 229.771 273.554C229.75 273.454 229.699 273.363 229.626 273.292L220.635 264.592C220.558 264.519 220.507 264.424 220.486 264.32C220.466 264.216 220.478 264.108 220.52 264.012C220.563 263.915 220.634 263.833 220.725 263.778C220.815 263.723 220.92 263.697 221.026 263.704L233.517 264.473C233.619 264.48 233.722 264.457 233.811 264.405C233.9 264.354 233.971 264.277 234.017 264.184L239.517 252.943C239.563 252.848 239.638 252.77 239.73 252.719C239.823 252.667 239.929 252.646 240.034 252.657C240.139 252.668 240.238 252.71 240.318 252.78C240.398 252.849 240.455 252.941 240.482 253.043L243.611 265.16C243.637 265.257 243.69 265.344 243.765 265.411C243.84 265.478 243.932 265.522 244.032 265.537Z" fill="white"/>
|
||||||
|
<g opacity="0.1">
|
||||||
|
<path d="M278.485 429.465C274.052 434.087 275.785 441.326 276.765 447.027C277.849 453.335 280.037 459.206 282.213 465.194C287.158 478.29 295.459 489.856 306.284 498.732C331.184 519.18 361.99 527.032 393.653 529.162C403.107 529.798 412.589 529.926 422.063 529.814C426.963 529.756 431.856 529.631 436.752 529.478C442.284 529.304 447.586 529.46 452.621 526.878C460.868 522.641 457.321 512.039 450.303 509.143C446.57 507.604 442.53 508.131 438.584 508.29C434.608 508.451 430.633 508.589 426.657 508.703C419.008 508.911 411.357 508.99 403.703 508.803C388.848 508.431 374.061 507.023 359.643 503.296C335.517 497.213 314.032 483.432 298.443 464.041C294.259 458.841 290.896 453.771 288.634 447.43C286.629 441.806 286.807 433.718 282.327 429.475C281.812 428.975 281.122 428.695 280.404 428.695C279.686 428.695 278.997 428.975 278.482 429.475L278.485 429.465Z" fill="#171717"/>
|
||||||
|
</g>
|
||||||
|
<g opacity="0.1">
|
||||||
|
<path d="M486.461 204.886C483.075 205.838 480.484 209.637 478.275 212.226C475.665 215.199 473.521 218.551 471.917 222.168C468.481 230.437 466.996 240.211 466.817 249.122C466.611 259.583 468.174 269.846 469.334 280.21C469.934 285.529 470.418 290.865 470.521 296.22C470.631 301.948 468.992 308.335 470.446 313.848C471.892 319.331 479.311 319.973 482.183 315.382C484.807 311.19 484.683 305.755 484.767 300.914C484.809 295.572 484.526 290.232 483.921 284.924C482.855 274.765 481.092 264.683 480.058 254.524C479.231 246.405 478.658 237.858 480.158 229.802C480.78 225.604 481.681 221.453 482.858 217.376C483.491 215.268 484.338 213.23 485.388 211.296C486.405 209.554 487.575 208.444 488.01 206.443C488.065 206.228 488.063 206.002 488.005 205.788C487.946 205.573 487.832 205.378 487.675 205.221C487.518 205.064 487.323 204.951 487.109 204.892C486.894 204.834 486.668 204.832 486.453 204.887L486.461 204.886Z" fill="#171717"/>
|
||||||
|
</g>
|
||||||
|
<g opacity="0.1">
|
||||||
|
<path d="M201.368 85.027C214.648 91.806 230.255 93.384 245.037 94.068C252.532 94.4078 260.042 94.1912 267.506 93.42C271.106 93.053 274.701 92.585 278.279 92.037C282.309 91.42 286.379 91.402 289.142 88.116C290.853 86.079 290.969 82.586 288.25 81.195C282.338 78.172 273.887 81.681 267.506 82.372C260.369 83.144 253.15 83.56 245.975 83.716C231.336 84.033 216.908 81.489 202.361 81.358C200.472 81.341 199.597 84.123 201.368 85.027V85.027Z" fill="#171717"/>
|
||||||
|
</g>
|
||||||
|
<g opacity="0.1">
|
||||||
|
<path d="M68.0004 310.57C78.9704 312.72 89.1004 315.82 100.388 316.205C111.971 316.601 123.566 316.327 135.116 315.387C144.769 314.601 156.807 314.493 165.451 309.598C169.259 307.518 172.238 304.194 173.888 300.181C174.403 299.108 174.676 297.936 174.687 296.746C174.698 295.557 174.447 294.379 173.952 293.297C173.555 292.315 172.915 291.45 172.091 290.784C171.761 290.453 171.35 290.214 170.899 290.089C170.039 289.816 170.039 289.733 170.899 289.842C169.079 287.842 166.049 289.071 165.258 291.331L164.838 292.531L166.724 290.078C163.519 291.523 163.431 294.64 161.488 297.063C159.197 299.921 154.747 300.463 151.376 301.053C142.167 302.603 132.884 303.687 123.565 304.301C114.57 304.955 105.559 305.206 96.5314 305.053C87.2364 304.895 77.8874 306.526 68.6164 306.053C66.0624 305.924 65.4464 310.063 68.0054 310.565L68.0004 310.57Z" fill="#171717"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<defs>
|
||||||
|
<clipPath id="clip0_46_7755">
|
||||||
|
<rect width="960" height="960" fill="white"/>
|
||||||
|
</clipPath>
|
||||||
|
<clipPath id="clip1_46_7755">
|
||||||
|
<rect width="830" height="884" fill="white" transform="translate(65 38)"/>
|
||||||
|
</clipPath>
|
||||||
|
</defs>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 56 KiB |
|
@ -0,0 +1,123 @@
|
||||||
|
<svg width="960" height="960" viewBox="0 0 960 960" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<g clip-path="url(#clip0_1_5362)">
|
||||||
|
<mask id="mask0_1_5362" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="0" y="0" width="960" height="960">
|
||||||
|
<path d="M960 0H0V960H960V0Z" fill="white"/>
|
||||||
|
</mask>
|
||||||
|
<g mask="url(#mask0_1_5362)">
|
||||||
|
<mask id="mask1_1_5362" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="38" y="94" width="885" height="773">
|
||||||
|
<path d="M923 94H38V867H923V94Z" fill="white"/>
|
||||||
|
</mask>
|
||||||
|
<g mask="url(#mask1_1_5362)">
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M530.465 644.257C535.666 653.422 540.856 662.589 546.036 671.757C543.396 673.192 541.015 675.059 538.992 677.282C534.714 668.445 528.788 660.507 521.531 653.896L521.344 653.756C519.875 655.563 517.873 656.861 515.624 657.464C513.375 658.067 510.992 657.945 508.817 657.115C506.564 656.131 504.657 654.497 503.337 652.424C502.018 650.35 501.347 647.93 501.41 645.474C501.543 643.02 502.314 640.643 503.645 638.577C504.977 636.511 506.823 634.828 509.003 633.693C510.778 632.74 512.744 632.198 514.756 632.105C516.769 632.012 518.776 632.371 520.632 633.157C525.216 635.217 527.992 639.871 530.465 644.257ZM478 723.253C493.927 723.313 509.836 722.167 525.59 719.824C544.531 717.027 563.17 712.468 581.264 706.207C588.934 703.551 596.485 700.585 603.915 697.307C606.256 696.28 608.581 695.219 610.89 694.123L610.715 693.738C610.491 690.849 610.273 687.988 610.056 685.147C609.832 682.207 609.61 679.288 609.385 676.382C608.463 664.107 607.553 652.051 606.585 639.407L606.655 638.789C675.705 646.756 729.348 613.782 782.967 570.789C832.69 530.91 858.071 465.242 859.016 400.379L858.164 400.367C840.982 400.044 824.094 399.722 807.207 399.4C790.47 399.08 773.734 398.761 756.711 398.442L755.871 398.395C754.447 423.229 750.191 447.572 738.702 469.395C716.412 511.759 669.499 537.233 622.027 543.415C574.729 549.561 526.779 538.936 481.546 523.761L482.001 522.396C484.162 518.337 481.138 513.077 476.962 511.164C473.495 509.589 469.599 509.636 465.762 510.009C464.962 510.079 464.155 510.161 463.362 510.254C458.036 510.867 452.713 511.477 447.394 512.085L447.546 513.438C447.546 513.438 482.538 639.409 478.012 722.153L478 723.253ZM708.472 529.455C725.63 517.979 738.503 507.947 747.725 494.217C756.963 480.465 762.43 463.172 765.153 437.348L761.673 436.982C758.983 462.494 753.622 479.162 744.821 492.266C736.004 505.392 723.628 515.109 706.527 526.546C672.681 549.183 625.284 558.62 579.258 551.77L578.743 555.231C625.502 562.19 673.803 552.642 708.472 529.455Z" fill="#171717"/>
|
||||||
|
<path d="M834.02 351.534L854.957 351.184C857.917 367.411 859.276 383.89 859.016 400.384L858.164 400.372C823.954 399.73 790.91 399.089 756.711 398.447L755.871 398.4C756.734 383.377 756.559 368.179 756.326 353.26L756.431 352.887C762.531 352.794 768.573 352.687 774.592 352.587C794.514 352.234 814.121 351.884 834.02 351.534Z" fill="white"/>
|
||||||
|
<path d="M652.552 710.353C665.359 721.737 673.325 740.633 671.506 757.697C662.396 775.928 646.137 790.097 627.929 799.397C622.498 802.156 616.895 804.563 611.156 806.605L610.956 805.485C623.81 780.069 616.846 749.813 604.284 726.73C599.199 717.399 591.664 708.208 581.258 706.213C588.924 703.565 596.475 700.598 603.91 697.313L603.98 697.465C620.861 693.335 639.57 698.817 652.552 710.353Z" fill="white"/>
|
||||||
|
<path d="M604.286 726.729C616.848 749.812 623.812 780.068 610.958 805.484L611.158 806.604C596.508 811.853 581.065 814.979 565.634 817.253C554.577 818.886 542.563 820.367 529.907 821.569L529.72 819.621C526.431 786.461 525.053 753.139 525.591 719.821C544.531 717.027 563.17 712.469 581.263 706.209C591.666 708.207 599.2 717.4 604.286 726.729Z" fill="#171717"/>
|
||||||
|
<path d="M610.887 694.128L610.712 693.743C610.257 687.864 609.826 682.102 609.382 676.387L610.572 676.305C630.004 666.647 655.502 674.777 668.285 692.305C681.068 709.833 681.827 734.435 673.102 754.299C672.602 755.442 672.064 756.573 671.502 757.693C673.322 740.629 665.355 721.733 652.548 710.349C639.566 698.813 620.857 693.331 603.979 697.46L603.909 697.308C606.257 696.284 608.583 695.224 610.887 694.128Z" fill="#171717"/>
|
||||||
|
<path d="M529.719 819.621L529.906 821.569C498.95 824.497 464.145 825.686 430.074 822.875L430.121 822.327C422.125 788.537 424.574 753.115 437.143 720.746L437.178 720.478C450.71 722.295 464.346 723.222 478 723.254C493.926 723.314 509.835 722.168 525.589 719.825C525.05 753.142 526.429 786.463 529.719 819.621Z" fill="white"/>
|
||||||
|
<path d="M356.917 652.815C319.779 655.894 295.879 655.615 255.65 649.115C225.767 644.274 192.035 630.744 167.26 613.353C137.272 592.323 117.793 558.381 109.815 522.631C101.837 486.881 104.625 449.416 112.766 413.713C117.64 393.139 123.759 372.881 131.09 353.049L131.662 353.259C152.198 362.627 173.577 370.027 195.511 375.359L196.841 375.686C193.062 390.721 190.962 406.281 189.434 421.724C187.734 438.847 186.67 456.156 188.792 473.232C190.914 490.308 196.362 507.256 206.685 521.032C220.938 540.079 243.345 551.592 266.323 557.75C318.671 571.77 380.385 560.293 422.842 526.619L422.609 526.082C420.183 523.446 421.478 518.874 424.3 516.669C426.106 515.352 428.202 514.488 430.412 514.15C431.742 513.882 433.106 513.718 434.448 513.567C438.764 513.065 443.079 512.571 447.395 512.086L447.547 513.439C447.547 513.439 482.539 639.41 478.013 722.154L478.001 723.254C464.347 723.222 450.709 722.295 437.177 720.478C413.877 717.396 391.012 711.631 369.036 703.3C365.199 701.842 361.397 700.302 357.629 698.681L358.341 697.048C358.364 689.186 358.271 681.827 358.026 674.455C357.804 667.667 357.466 660.855 356.976 653.623L356.917 652.815Z" fill="#171717"/>
|
||||||
|
<path d="M437.177 720.477L437.142 720.745C424.574 753.114 422.125 788.535 430.12 822.326L430.073 822.874C393.845 819.874 358.445 812.365 329.378 797.61L332.691 797.132C332.209 779.904 335.166 762.752 341.391 746.681C347.616 730.61 356.982 715.941 368.943 703.532L369.036 703.299C391.012 711.632 413.877 717.396 437.177 720.477Z" fill="#171717"/>
|
||||||
|
<path d="M357.628 698.677C361.395 700.299 365.198 701.838 369.035 703.296L368.942 703.529C356.981 715.938 347.615 730.607 341.39 746.678C335.166 762.75 332.208 779.901 332.69 797.129L329.377 797.607C312.534 789.057 297.814 778.081 286.302 764.143C274.685 750.088 281.263 719.062 292.502 704.703C307.693 685.32 322.67 674 356.985 674.485L358.023 674.45C358.268 681.822 358.361 689.182 358.338 697.043L357.628 698.677Z" fill="white"/>
|
||||||
|
<path d="M203.443 336.266C205.717 337.561 207.945 338.863 210.126 340.173C204.28 351.433 199.819 363.358 196.841 375.69L195.511 375.363C173.577 370.032 152.198 362.632 131.662 353.263L131.09 353.053C136.339 338.485 141.972 324.045 147.59 309.616C151.567 311.156 155.606 312.805 159.709 314.562C174.682 320.972 189.283 328.218 203.443 336.266Z" fill="white"/>
|
||||||
|
<path d="M465.699 509.173C461.325 495.13 464.008 479.92 467.729 465.69C471.45 451.46 476.185 437.19 475.847 422.49C475.439 404.714 467.601 388.221 456.52 374.038C451.994 368.293 447.021 362.915 441.648 357.953" stroke="white" stroke-width="3.499" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M430.26 513.442C418.713 495.433 406.684 477.746 394.172 460.383C385.668 448.567 376.948 436.911 368.01 425.414" stroke="white" stroke-width="3.499" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M358.83 427.653C360.796 427.022 362.71 426.242 364.557 425.32C373.603 420.884 380.79 413.392 384.845 404.169C388.901 394.945 389.564 384.585 386.718 374.92" stroke="white" stroke-width="3.499" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M383.429 373.217C384.549 373.695 385.692 374.127 386.847 374.5C392.827 376.458 399.139 377.2 405.411 376.683C411.682 376.166 417.787 374.401 423.367 371.491C429.444 368.21 434.728 363.636 438.846 358.091C442.964 352.546 445.815 346.166 447.2 339.399" stroke="white" stroke-width="3.499" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M457.389 373.358C472.004 372.588 485.336 360.878 487.96 346.484C490.584 332.09 482.268 316.414 468.866 310.536C476.004 301.753 475.466 287.698 467.7 279.487C459.934 271.276 445.923 269.958 436.756 276.587C441.69 265.623 434.516 251.008 422.806 248.22C411.096 245.432 398.106 255.22 397.554 267.232C394.591 258.857 384.945 253.865 376.162 255.113C367.379 256.361 359.902 263.068 356.473 271.244C353.044 279.42 353.289 288.833 355.843 297.336C349.779 295.51 343.304 295.563 337.27 297.488C331.236 299.412 325.926 303.118 322.039 308.117C318.151 313.117 315.868 319.176 315.489 325.498C315.111 331.82 316.655 338.108 319.918 343.536C307.053 346.674 294.642 354.558 289.393 366.712C284.144 378.866 288.273 395.289 300.229 400.992C285.719 406.999 278.429 426.209 285.299 440.346C292.169 454.483 311.776 460.618 325.481 452.908C320.011 462.974 324.921 477.239 335.43 481.8C345.939 486.361 359.714 480.2 363.33 469.331C365.786 471.499 368.739 473.028 371.928 473.781C375.116 474.533 378.441 474.488 381.607 473.647C387.894 471.909 391.988 466.812 393.912 460.572" stroke="white" stroke-width="3.499" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M442.985 369.905C434.658 371.488 427.027 375.61 421.138 381.705C419.75 383.14 418.42 384.819 418.269 386.79C418.082 389.146 419.575 391.257 421.01 393.135C429.035 403.657 437.208 414.065 445.528 424.359C443.475 426.342 441.415 428.321 439.346 430.296" stroke="white" stroke-width="3.499" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M440.278 391.449L435.694 383.716" stroke="white" stroke-width="3.499" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M407.304 407.661C405.659 405.107 404.004 402.541 402.358 399.986" stroke="white" stroke-width="3.499" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M445.773 437.043C443.517 437.713 441.217 438.228 438.891 438.583C435.613 439.143 432.291 439.528 429.023 440.228C423.471 441.418 417.802 443.728 414.455 448.334C413.503 449.678 412.749 451.15 412.216 452.708C411.395 455.203 410.943 457.804 410.875 460.43C410.53 466.27 411.888 472.084 414.782 477.168C417.147 480.864 420.455 483.864 424.364 485.859C428.273 487.853 432.643 488.771 437.025 488.517C438.672 488.418 440.303 488.136 441.889 487.677C446.872 486.096 451.22 482.966 454.302 478.743C457.383 474.521 459.037 469.425 459.023 464.197" stroke="white" stroke-width="3.499" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M438.9 438.676L439.985 449.092C436.323 449.244 432.68 449.562 429.056 450.048C423.811 450.734 418.617 451.766 413.508 453.139" stroke="white" stroke-width="3.499" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M429.152 450.7C428.295 463.716 431.013 476.718 437.014 488.3" stroke="white" stroke-width="3.499" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M422.608 526.086C420.182 523.45 421.477 518.878 424.299 516.673C426.105 515.357 428.201 514.493 430.411 514.154C431.741 513.886 433.105 513.722 434.447 513.571C438.763 513.069 443.079 512.576 447.394 512.09C452.713 511.483 458.036 510.873 463.362 510.259C464.155 510.166 464.962 510.084 465.762 510.014C469.599 509.641 473.495 509.594 476.962 511.169C481.138 513.082 484.162 518.342 482.001 522.401" stroke="white" stroke-width="3.499" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M481.057 523.6C481.22 523.658 481.384 523.705 481.547 523.763C526.78 538.938 574.73 549.563 622.028 543.417C669.5 537.235 716.413 511.761 738.703 469.397C750.192 447.574 754.449 423.231 755.872 398.397C756.735 383.374 756.56 368.176 756.327 353.257" stroke="white" stroke-width="3.499" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M756.431 352.888C762.531 352.795 768.573 352.688 774.592 352.588C794.514 352.238 814.121 351.888 834.02 351.538L854.957 351.188" stroke="white" stroke-width="3.499" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M587.922 635.7C594.291 637.065 600.535 638.095 606.654 638.791C675.705 646.757 729.347 613.783 782.966 570.791C832.69 530.912 858.066 465.244 859.015 400.381C859.275 383.887 857.915 367.408 854.956 351.181" stroke="white" stroke-width="3.499" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M210.126 340.174C204.28 351.433 199.819 363.359 196.841 375.691C193.062 390.726 190.962 406.291 189.434 421.729C187.734 438.852 186.67 456.161 188.792 473.237C190.914 490.313 196.362 507.261 206.685 521.037C220.938 540.084 243.345 551.597 266.323 557.755C318.671 571.775 380.385 560.298 422.842 526.624" stroke="white" stroke-width="3.499" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M210.126 340.174C207.944 338.868 205.717 337.566 203.443 336.267C189.285 328.218 174.686 320.971 159.715 314.56C155.621 312.799 151.581 311.15 147.596 309.614" stroke="white" stroke-width="3.499" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M147.599 309.614C141.977 324.042 136.343 338.482 131.094 353.051C123.764 372.883 117.645 393.142 112.77 413.715C104.629 449.415 101.853 486.895 109.819 522.633C117.785 558.371 137.276 592.325 167.264 613.355C192.038 630.746 225.77 644.276 255.654 649.117C295.883 655.617 319.782 655.894 356.921 652.817C361.19 652.467 365.621 652.071 370.288 651.627" stroke="white" stroke-width="3.499" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M356.975 653.619C357.465 660.851 357.803 667.662 358.025 674.451C358.27 681.823 358.363 689.183 358.34 697.044" stroke="white" stroke-width="3.499" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M606.584 639.413C607.552 652.057 608.462 664.113 609.384 676.388C609.827 682.103 610.259 687.865 610.714 693.744" stroke="white" stroke-width="3.499" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M351.072 695.773C353.241 696.764 355.434 697.744 357.627 698.673C361.395 700.295 365.197 701.834 369.034 703.292C391.01 711.625 413.876 717.39 437.175 720.473C450.708 722.291 464.345 723.22 477.999 723.253C493.926 723.313 509.835 722.167 525.588 719.824C544.529 717.03 563.167 712.473 581.26 706.212C588.924 703.564 596.474 700.598 603.911 697.312C606.255 696.286 608.58 695.225 610.886 694.128C612.846 693.207 614.805 692.25 616.741 691.282" stroke="white" stroke-width="3.499" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M356.986 674.486C322.671 673.996 307.694 685.322 292.508 704.707C281.264 719.065 274.685 750.091 286.303 764.147C297.815 778.085 312.535 789.061 329.378 797.611C358.445 812.366 393.845 819.877 430.078 822.875C464.148 825.686 498.954 824.496 529.91 821.569C542.565 820.369 554.579 818.886 565.637 817.253C581.068 814.979 596.512 811.853 611.161 806.604C616.899 804.563 622.499 802.156 627.929 799.4C646.136 790.1 662.396 775.932 671.506 757.7C672.066 756.58 672.606 755.449 673.106 754.306C681.831 734.442 681.072 709.855 668.289 692.312C655.506 674.769 630.008 666.651 610.576 676.312" stroke="white" stroke-width="3.499" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M447.546 513.441C447.546 513.441 482.538 639.412 478.012 722.156" stroke="white" stroke-width="3.499" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M203.826 335.6C212.212 332.742 220.552 329.616 228.285 325.289C230.734 323.924 233.207 322.35 234.677 319.947C236.147 317.544 236.287 314.127 234.277 312.155C232.267 310.183 229.077 310.335 226.334 310.884C219.767 312.184 213.62 314.978 207.555 317.836C207.228 317.988 206.913 318.136 206.587 318.291" stroke="white" stroke-width="3.499" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M207.28 317.231C217.358 303.887 226.969 289.786 231.751 273.783C232.463 271.415 232.777 268.254 230.643 267.03C228.882 266.015 226.677 267.077 225.033 268.266C212.191 277.566 204.248 293.472 196.071 305.696C203.839 292.376 212.109 280.096 217.859 266.155C218.554 264.658 218.961 263.044 219.059 261.396C219.094 260.571 218.927 259.75 218.574 259.004C218.22 258.258 217.69 257.61 217.029 257.115C214.475 255.447 211.115 257.278 208.864 259.331C197.048 270.12 190.657 285.657 182.783 300.085C190.108 286.205 193.283 272.371 195.007 257.92C195.357 254.969 195.182 251.248 192.476 250.02C191.768 249.751 191.007 249.651 190.254 249.728C189.5 249.805 188.775 250.057 188.137 250.463C186.859 251.276 185.737 252.311 184.824 253.519C170.824 270.093 166.372 290.867 160.353 313.087" stroke="white" stroke-width="3.499" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M774.579 351.9C764.373 344.221 756.164 334.2 750.645 322.682C744.218 297.966 772.608 323.708 780.05 329.19" stroke="white" stroke-width="3.499" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M801.199 317.599C799.904 297.84 797.21 264.199 810.599 264.33C820.735 264.435 819.079 310.788 817.971 323.7C819.277 308.432 829.927 270.442 838.22 273.02C850.759 276.939 835.969 321.764 834.02 351.53V351.577" stroke="white" stroke-width="3.499" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M801.489 322.293C801.419 321.138 801.337 319.893 801.256 318.572" stroke="white" stroke-width="3.499" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M801.641 326.049C801.641 325.816 801.629 325.594 801.618 325.349C801.607 325.104 801.606 324.859 801.595 324.603" stroke="white" stroke-width="3.499" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M801.594 324.6C801.606 324.857 801.617 325.1 801.617 325.346" stroke="white" stroke-width="3.499" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M801.593 324.6C801.571 323.867 801.536 323.097 801.488 322.291" stroke="white" stroke-width="3.499" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M801.256 318.572C801.361 319.872 801.431 321.103 801.489 322.293" stroke="white" stroke-width="3.499" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M801.255 318.572C801.243 318.257 801.22 317.93 801.197 317.604" stroke="white" stroke-width="3.499" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M780.2 328.976C781.46 315.476 770.484 267.67 783.046 267.262C794.127 266.912 799.62 297.262 801.195 317.604" stroke="white" stroke-width="3.499" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M489.104 423.828C491.74 417.331 494.374 410.831 497.004 404.328" stroke="white" stroke-width="3.499" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M493.875 442.653L535.9 420.223" stroke="white" stroke-width="3.499" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M492.824 457.035C501.63 461.736 510.441 466.44 519.255 471.148" stroke="white" stroke-width="3.499" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M368.942 703.53C356.982 715.939 347.615 730.608 341.391 746.68C335.166 762.751 332.208 779.902 332.69 797.13" stroke="white" stroke-width="3.499" stroke-miterlimit="10"/>
|
||||||
|
<path d="M437.141 720.746C424.573 753.115 422.124 788.537 430.119 822.327" stroke="white" stroke-width="3.499" stroke-miterlimit="10"/>
|
||||||
|
<path d="M525.59 719.684V719.824C525.052 753.142 526.43 786.464 529.719 819.624" stroke="white" stroke-width="3.499" stroke-miterlimit="10"/>
|
||||||
|
<path d="M580.83 706.131C580.97 706.154 581.122 706.178 581.262 706.213C591.662 708.213 599.201 717.399 604.287 726.73C616.849 749.813 623.813 780.069 610.959 805.485" stroke="white" stroke-width="3.499" stroke-miterlimit="10"/>
|
||||||
|
<path d="M603.982 697.464C620.86 693.335 639.569 698.817 652.551 710.353C665.358 721.737 673.324 740.633 671.505 757.697C671.482 757.942 671.458 758.175 671.423 758.42" stroke="white" stroke-width="3.499" stroke-miterlimit="10"/>
|
||||||
|
<path d="M131.663 353.261C152.2 362.629 173.578 370.029 195.512 375.361" stroke="white" stroke-width="3.499" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M756.711 398.447C790.911 399.089 823.954 399.73 858.164 400.372" stroke="white" stroke-width="3.499" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M546.152 671.955C546.118 671.886 546.079 671.819 546.035 671.755C540.856 662.587 535.666 653.42 530.464 644.255C527.991 639.869 525.215 635.215 520.631 633.155C518.776 632.37 516.768 632.01 514.756 632.103C512.744 632.196 510.777 632.738 509.002 633.691C506.823 634.826 504.976 636.51 503.645 638.575C502.314 640.641 501.543 643.018 501.409 645.472C501.347 647.929 502.018 650.349 503.337 652.422C504.656 654.496 506.564 656.129 508.816 657.113C510.992 657.943 513.374 658.065 515.624 657.462C517.873 656.859 519.875 655.561 521.343 653.754C521.498 653.559 521.642 653.357 521.775 653.147" stroke="white" stroke-width="3.499" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M546.099 671.722C546.076 671.734 546.064 671.745 546.041 671.757C543.401 673.19 541.02 675.055 538.996 677.274C534.719 668.437 528.792 660.5 521.535 653.888C521.792 653.853 522.06 653.806 522.316 653.76" stroke="white" stroke-width="3.499" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M524.527 646.143C526.172 645.035 527.817 643.935 529.461 642.843" stroke="white" stroke-width="3.499" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M488.935 523.877C493.645 520.159 500.67 520.452 505.898 523.398C511.126 526.344 514.784 531.48 517.413 536.874C523.261 548.874 524.728 562.634 523.758 575.949C522.788 589.264 519.494 602.286 516.214 615.227C514.526 621.888 512.676 628.854 507.987 633.878C503.578 638.601 497.209 640.973 490.912 642.419C478.125 645.355 464.812 645.098 452.148 641.67C439.484 638.241 427.858 631.748 418.299 622.762C408.739 613.776 401.54 602.575 397.335 590.147C393.131 577.719 392.051 564.447 394.192 551.503C395.367 544.396 397.6 537.275 402.081 531.634C406.562 525.993 413.598 522.034 420.781 522.634" stroke="white" stroke-width="3.499" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M756.155 410.836L857.155 411.678" stroke="white" stroke-width="3.499" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M754.53 421.742L856.33 426.226" stroke="white" stroke-width="3.499" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M127.383 363.409L193.183 388.29" stroke="white" stroke-width="3.499" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M123.241 373.963C144.827 384.946 167.475 393.704 190.835 400.1" stroke="white" stroke-width="3.499" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M292.312 283.611C285.437 284.566 278.869 287.075 273.107 290.946C267.346 294.817 262.541 299.949 259.058 305.953C255.575 311.957 253.505 318.676 253.004 325.599C252.504 332.522 253.587 339.469 256.171 345.911C257.771 349.889 260.112 353.83 263.871 355.881C267.63 357.932 273.061 357.373 275.344 353.745C278 349.525 274.659 343.345 269.803 342.207C264.947 341.069 259.813 344.058 257.203 348.307C254.593 352.556 254.066 357.767 254.278 362.749C254.633 371.095 256.849 379.249 257.694 387.562C258.539 395.875 257.832 404.813 252.989 411.62C248.146 418.427 238.189 422.046 231.045 417.709" stroke="white" stroke-width="3.499" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M53.3416 418.058C60.2226 419.736 65.9636 424.716 69.8216 430.658C73.6796 436.6 75.8516 443.465 77.5666 450.337C80.2186 460.963 81.8876 472.014 80.4266 482.869C78.9656 493.724 74.0866 504.43 65.5146 511.247C60.8936 514.922 54.8056 517.419 49.0926 515.931C43.3796 514.443 38.9776 507.77 41.4396 502.4C44.3026 496.161 54.1276 496.27 58.8806 501.223C63.6336 506.176 64.3926 513.708 63.9806 520.561C63.5686 527.414 62.2576 534.388 63.8616 541.061C66.6716 552.761 78.4196 560.937 90.4066 561.935" stroke="white" stroke-width="3.499" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M167.562 639.048C151.4 630.5 138.106 617.39 129.335 601.348" stroke="white" stroke-width="3.499" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M764.985 618.533C789.987 608.414 811.3 590.896 826.067 568.326" stroke="white" stroke-width="3.499" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M903.527 374.647C913.322 382.168 915.114 398.117 907.227 407.624C903.24 412.433 897.377 415.537 893.901 420.724C888.314 429.068 891.286 441.875 899.978 446.904C903.178 448.757 908.084 449.16 909.865 445.918C911.384 443.153 909.16 439.407 906.104 438.625C903.048 437.843 899.785 439.386 897.61 441.672C892.555 446.985 892.469 455.342 894.174 462.472C895.879 469.602 899.053 476.452 899.474 483.772C900.327 498.449 888.188 512.684 873.56 514.159" stroke="white" stroke-width="3.499" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M616.624 383.8C627.353 382.031 637.806 390.6 641.171 400.943C644.536 411.286 642.243 422.655 638.299 432.787C636.745 436.778 634.839 440.806 631.568 443.571C628.297 446.336 623.331 447.505 619.659 445.302C615.696 442.925 614.63 437.015 617.147 433.139C619.664 429.263 625.058 427.749 629.413 429.293C631.57 430.144 633.466 431.545 634.914 433.356C636.362 435.167 637.311 437.325 637.666 439.616C638.823 446.572 635.009 453.324 630.955 459.094C626.901 464.864 622.295 470.75 621.544 477.761C620.793 484.772 626.045 492.934 633.051 492.152" stroke="white" stroke-width="3.499" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M865.078 329.208C871.262 320.248 875.071 309.867 876.149 299.034C877.228 288.202 875.539 277.273 871.243 267.271" stroke="white" stroke-width="3.499" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M890.905 308.018C892.507 304.532 893.337 300.74 893.339 296.904C893.34 293.067 892.514 289.275 890.915 285.787" stroke="white" stroke-width="3.499" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M148.662 278.306C145.262 259.862 156.794 239.806 174.439 233.454" stroke="white" stroke-width="3.499" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M134.384 251.182C132.549 243.226 137.878 234.302 145.753 232.145" stroke="white" stroke-width="3.499" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M380.061 220.648C374.481 195.419 368.902 170.19 363.322 144.961" stroke="white" stroke-width="3.499" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M406.578 219.865L412.269 199.265" stroke="white" stroke-width="3.499" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M355.69 232.329L335.838 214.308L336.75 215.043" stroke="white" stroke-width="3.499" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M303.266 811.172C337.501 832.06 377.145 842.367 417.22 840.8" stroke="white" stroke-width="3.499" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M325.683 846.252C338.983 853.752 354.243 857.051 369.454 855.713" stroke="white" stroke-width="3.499" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M522.724 852.892C572.857 860.204 625.87 844.692 664.157 811.516" stroke="white" stroke-width="3.499" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M589.582 865.139C607.19 863.34 624.107 857.332 638.905 847.621" stroke="white" stroke-width="3.499" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M676.473 707.27C688.941 700.697 701.505 694.085 714.994 690.001C728.483 685.917 743.117 684.475 756.664 688.362C777.129 694.234 793.779 711.71 815.015 713.231C825.298 713.968 835.555 710.747 844.608 705.813C853.661 700.879 861.679 694.282 869.636 687.727" stroke="white" stroke-width="3.499" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M674.436 751.016C681.176 744.839 689.122 740.124 697.774 737.167C706.426 734.211 715.595 733.077 724.707 733.837C750.657 736.156 773.382 753.664 799.327 756.037C816.171 757.496 832.937 752.469 846.2 741.984" stroke="white" stroke-width="3.499" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M638.648 794C648.348 785.991 659.675 780.189 671.842 776.996C684.009 773.803 696.725 773.296 709.107 775.51C739.207 781.11 765.612 802.664 796.23 802.962C831.516 803.306 863.209 775.117 898.321 778.631" stroke="white" stroke-width="3.499" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M290.189 706.115C280.173 697.774 268.24 692.053 255.465 689.467C242.689 686.881 229.471 687.511 217 691.3C199.808 696.718 184.668 708.094 166.956 711.439C154.212 713.845 140.95 711.872 128.638 707.797C116.326 703.722 104.8 697.6 93.3486 691.517" stroke="white" stroke-width="3.499" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M280.773 729.581C266.456 722.698 250.937 715.631 235.29 718.374C225.118 720.157 216.161 725.919 206.621 729.874C188.123 737.463 167.536 738.264 148.504 732.137" stroke="white" stroke-width="3.499" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M288.718 764.863C277.644 755.751 263.444 751.334 249.156 752.555C234.343 753.894 220.83 761.19 206.666 765.726C180.678 773.952 152.641 772.899 127.343 762.749" stroke="white" stroke-width="3.499" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M252.137 157.889C265.406 157.545 279.803 156.789 289.937 148.219C293.477 145.224 296.26 141.436 298.059 137.163C299.858 132.89 300.622 128.253 300.29 123.628C299.958 119.004 298.539 114.523 296.148 110.55C293.757 106.578 290.461 103.227 286.53 100.769C282.599 98.3107 278.143 96.8158 273.524 96.4055C268.906 95.9953 264.256 96.6814 259.953 98.4079C255.65 100.134 251.816 102.853 248.762 106.341C245.708 109.83 243.521 113.99 242.379 118.484C240.232 113.336 236.449 109.038 231.616 106.254C226.782 103.47 221.167 102.354 215.636 103.079C210.106 103.804 204.968 106.329 201.015 110.265C197.063 114.201 194.516 119.328 193.767 124.856C186.147 117.101 174.71 113.786 163.873 114.661C153.036 115.536 142.781 120.253 133.946 126.589C126.489 131.937 118.288 140.257 120.054 150.304C121.574 158.946 127.698 163.096 135.822 162.222C159.556 159.67 183.508 159.67 207.422 159.049L252.137 157.889Z" stroke="#171717" stroke-width="3.499" stroke-miterlimit="10"/>
|
||||||
|
<path d="M633.876 164.218C637.913 164.233 642.049 164.232 645.844 162.852C648.497 161.887 650.871 160.284 652.756 158.185C654.642 156.085 655.982 153.553 656.657 150.813C657.332 148.073 657.322 145.208 656.628 142.473C655.933 139.737 654.576 137.215 652.675 135.129C650.775 133.042 648.39 131.456 645.731 130.51C643.072 129.565 640.221 129.288 637.43 129.706C634.638 130.123 631.993 131.221 629.727 132.904C627.461 134.586 625.644 136.801 624.437 139.352C622.262 129.652 612.46 122.259 602.537 122.842C592.614 123.425 583.737 131.908 582.713 141.801C582.997 139.064 568.901 137.226 567.089 137.211C562.405 137.173 555.169 138.075 551.758 141.752C545.936 148.03 552.686 155.407 558.227 159.111C567.913 165.585 579.608 164.011 590.685 164.053L633.876 164.218Z" fill="#171717"/>
|
||||||
|
<path d="M899.209 208.208C907.281 207.493 916.709 205.395 919.882 197.937C923.045 190.495 917.03 181.331 909.129 179.612C901.228 177.893 892.911 182.307 888.129 188.828C889.103 186.129 889.421 183.237 889.059 180.391C888.696 177.545 887.663 174.826 886.044 172.457C884.425 170.089 882.266 168.139 879.746 166.768C877.225 165.397 874.415 164.644 871.547 164.571C868.679 164.499 865.834 165.109 863.248 166.35C860.662 167.592 858.407 169.431 856.67 171.715C854.933 173.998 853.764 176.662 853.258 179.486C852.752 182.31 852.924 185.214 853.76 187.959C847.793 185.732 841.45 183.851 835.134 184.677C828.818 185.503 822.553 189.689 821.124 195.895C817.483 211.708 840.197 208.612 848.885 208.916C865.656 209.5 882.476 209.69 899.209 208.208Z" stroke="white" stroke-width="3.499" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M423.363 371.491C429.837 368.019 435.4 363.067 439.599 357.039L441.642 357.947C447.015 362.909 451.988 368.288 456.514 374.032L457.389 373.355C472.004 372.581 485.324 360.886 487.96 346.481C490.596 332.076 482.266 316.412 468.866 310.533C476.005 301.75 475.468 287.703 467.7 279.484C459.932 271.265 445.924 269.959 436.756 276.584C441.69 265.617 434.504 251.017 422.806 248.217C411.108 245.417 398.102 255.215 397.554 267.229C394.591 258.854 384.945 253.862 376.162 255.11C367.379 256.358 359.914 263.049 356.473 271.241C353.032 279.433 353.289 288.833 355.843 297.333C349.779 295.508 343.304 295.561 337.27 297.485C331.236 299.409 325.926 303.115 322.039 308.115C318.151 313.114 315.868 319.174 315.489 325.495C315.111 331.817 316.655 338.106 319.918 343.533C307.052 346.67 294.642 354.544 289.393 366.709C284.144 378.874 288.273 395.289 300.229 400.989C285.719 406.996 278.429 426.206 285.299 440.343C292.169 454.48 311.776 460.615 325.481 452.905C320.01 462.971 324.921 477.237 335.43 481.797C345.939 486.357 359.714 480.199 363.33 469.328C365.786 471.497 368.739 473.026 371.928 473.779C375.116 474.532 378.441 474.486 381.607 473.644C387.893 471.906 391.987 466.809 393.912 460.569L394.169 460.382C385.661 448.571 376.941 436.915 368.007 425.413L364.554 425.32C373.601 420.884 380.787 413.392 384.843 404.169C388.898 394.946 389.561 384.586 386.715 374.92L386.843 374.5C392.824 376.458 399.136 377.2 405.407 376.683C411.679 376.167 417.784 374.401 423.363 371.491ZM432.281 275.67C434.097 270.637 433.208 265.1 430.665 260.626C428.123 256.152 423.821 252.553 418.567 251.537L417.903 254.973C421.98 255.761 425.492 258.604 427.623 262.354C429.754 266.105 430.399 270.577 428.99 274.482L432.281 275.67ZM467.248 289.491C469.202 294.567 469.275 300.477 466.647 305.464L463.551 303.833C465.63 299.889 465.639 295.053 463.983 290.748C462.326 286.442 459.077 282.86 454.891 281.326L456.095 278.041C461.388 279.98 465.295 284.415 467.248 289.491ZM482.947 335.531C481.098 329.257 477.322 323.724 472.152 319.716L470.008 322.481C474.597 326.039 477.95 330.951 479.59 336.52C481.231 342.09 481.077 348.035 479.15 353.512L482.45 354.673C484.622 348.503 484.795 341.806 482.947 335.531Z" fill="white"/>
|
||||||
|
<g opacity="0.1">
|
||||||
|
<path d="M129.055 359.455C125.668 367.087 122.797 374.938 120.464 382.955C118.205 391.018 116.656 399.246 114.55 407.343C110.162 423.87 107.241 440.752 105.823 457.793C103.5 487.463 107.139 518.616 117.632 546.534C128.062 574.285 145.212 598.452 168.947 616.354C192.387 634.033 221.102 644.471 249.881 649.304C288.274 655.751 327.114 653.483 365.744 650.919C371.655 650.526 376.712 646.158 376.712 639.95C376.712 634.297 371.687 628.612 365.744 628.981C307.416 632.608 243.663 636.617 191.632 604.921C145.28 576.684 125.138 521.569 124.355 469.321C124.1 451.107 124.857 432.893 126.624 414.763C128.362 396.717 132.924 379.082 134.824 361.021C135.136 358.05 130.256 356.682 129.059 359.46L129.055 359.455Z" fill="white"/>
|
||||||
|
</g>
|
||||||
|
<g opacity="0.1">
|
||||||
|
<path d="M370.568 695C370.735 689.693 370.668 684.342 371.156 679.054C371.628 673.932 371.203 667.993 372.866 663.096C377.028 650.841 354.08 651.396 358.492 663.096C360.337 667.99 360.16 673.888 360.813 679.054C361.479 684.332 361.596 689.691 361.943 695C362.303 700.5 370.392 700.595 370.568 695Z" fill="white"/>
|
||||||
|
</g>
|
||||||
|
<g opacity="0.1">
|
||||||
|
<path d="M321.793 792.781C333.614 800.481 348.451 804.791 361.916 808.765C375.617 812.729 389.521 815.955 403.568 818.429C459.885 828.811 517.664 828.385 573.822 817.174C587.812 814.41 601.643 810.963 615.316 806.831C628.239 802.918 641.64 798.61 652.686 790.603C665.008 781.671 672.951 769.185 677.7 754.856C679.74 748.46 681.191 741.89 682.035 735.23C683.118 727.43 683.845 719.902 681.261 712.305C679.435 706.939 671.976 705.469 668.923 710.693C662.882 721.032 662.688 733.709 659.5 745.08C656.678 755.148 652.12 764.546 644.2 771.58C635.2 779.571 622.874 783.24 611.61 786.688C599.11 790.514 586.453 793.764 573.638 796.438C521.748 807.213 468.327 808.43 416 800.03C401.33 797.667 386.789 794.566 372.432 790.738C364.972 788.749 357.504 786.775 350.107 784.559C342.748 782.359 335.381 779.784 327.789 778.559C319.303 777.19 314.029 787.725 321.789 792.781H321.793Z" fill="white"/>
|
||||||
|
</g>
|
||||||
|
<g opacity="0.1">
|
||||||
|
<path d="M586.028 637.341C598.536 641.948 613.649 641.641 626.819 641.224C666.516 639.984 705.29 628.945 739.688 609.09C784.929 583.055 819.9 542.044 840 494.024C851.268 466.876 857.217 437.816 857.523 408.424C857.694 398.076 841.911 398.143 841.492 408.424C839.557 455.84 821.562 504.024 791.892 541.062C761.168 579.173 718.701 606.052 671.108 617.509C657.647 620.825 643.911 622.898 630.071 623.703C623.028 624.098 615.99 624.119 608.941 623.91C601.969 623.703 594.829 623.029 587.887 623.62C586.229 623.676 584.644 624.316 583.413 625.428C582.183 626.54 581.385 628.052 581.163 629.696C580.941 631.34 581.307 633.01 582.199 634.409C583.09 635.808 584.447 636.847 586.031 637.34L586.028 637.341Z" fill="white"/>
|
||||||
|
</g>
|
||||||
|
<g opacity="0.1">
|
||||||
|
<path d="M371.499 421.712C370.228 425.804 371.837 428.812 373.944 432.212C376.356 436.104 378.821 439.964 381.259 443.84C386.142 451.602 391.325 459.164 396.441 466.773C406.691 482.015 417.363 496.927 427.683 512.125C431.955 518.416 442.223 512.543 437.964 506.116C427.65 490.553 417.733 474.775 407.35 459.26C402.245 451.632 397.186 443.982 391.85 436.512C387.57 430.519 382.934 419.961 374.797 419.203C374.05 419.208 373.323 419.455 372.728 419.909C372.133 420.362 371.701 420.996 371.497 421.715L371.499 421.712Z" fill="white"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<defs>
|
||||||
|
<clipPath id="clip0_1_5362">
|
||||||
|
<rect width="960" height="960" fill="white"/>
|
||||||
|
</clipPath>
|
||||||
|
</defs>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 36 KiB |
|
@ -0,0 +1,118 @@
|
||||||
|
<svg width="960" height="960" viewBox="0 0 960 960" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<g clip-path="url(#clip0_46_107)">
|
||||||
|
<g clip-path="url(#clip1_46_107)">
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M530.465 644.257C535.666 653.422 540.856 662.589 546.036 671.757C543.396 673.192 541.015 675.059 538.992 677.282C534.714 668.445 528.788 660.507 521.531 653.896L521.344 653.756C519.875 655.563 517.873 656.861 515.624 657.464C513.375 658.067 510.992 657.945 508.817 657.115C506.564 656.131 504.657 654.497 503.337 652.424C502.018 650.35 501.347 647.93 501.41 645.474C501.543 643.02 502.314 640.643 503.645 638.577C504.977 636.511 506.823 634.828 509.003 633.693C510.778 632.74 512.744 632.198 514.756 632.105C516.769 632.012 518.776 632.371 520.632 633.157C525.216 635.217 527.992 639.871 530.465 644.257ZM478 723.253C493.927 723.313 509.836 722.167 525.59 719.824C544.531 717.027 563.17 712.468 581.264 706.207C588.934 703.551 596.485 700.585 603.915 697.307C606.256 696.28 608.581 695.219 610.89 694.123L610.715 693.738C610.491 690.849 610.273 687.988 610.056 685.147C609.832 682.207 609.61 679.288 609.385 676.382C608.463 664.107 607.553 652.051 606.585 639.407L606.655 638.789C675.705 646.756 729.348 613.782 782.967 570.789C832.69 530.91 858.071 465.242 859.016 400.379L858.164 400.367C840.982 400.044 824.094 399.722 807.207 399.4C790.47 399.08 773.734 398.761 756.711 398.442L755.871 398.395C754.447 423.229 750.191 447.572 738.702 469.395C716.412 511.759 669.499 537.233 622.027 543.415C574.729 549.561 526.779 538.936 481.546 523.761L482.001 522.396C484.162 518.337 481.138 513.077 476.962 511.164C473.495 509.589 469.599 509.636 465.762 510.009C464.962 510.079 464.155 510.161 463.362 510.254C458.036 510.867 452.713 511.477 447.394 512.085L447.546 513.438C447.546 513.438 482.538 639.409 478.012 722.153L478 723.253ZM708.472 529.455C725.63 517.979 738.503 507.947 747.725 494.217C756.963 480.465 762.43 463.172 765.153 437.348L761.673 436.982C758.983 462.494 753.622 479.162 744.821 492.266C736.004 505.392 723.628 515.109 706.527 526.546C672.681 549.183 625.284 558.62 579.258 551.77L578.743 555.231C625.502 562.19 673.803 552.642 708.472 529.455Z" fill="white"/>
|
||||||
|
<path d="M834.02 351.534L854.957 351.184C857.917 367.411 859.276 383.89 859.016 400.384L858.164 400.372C823.954 399.73 790.91 399.089 756.711 398.447L755.871 398.4C756.734 383.377 756.559 368.179 756.326 353.26L756.431 352.887C762.531 352.794 768.573 352.687 774.592 352.587C794.514 352.234 814.121 351.884 834.02 351.534Z" fill="#171717"/>
|
||||||
|
<path d="M652.552 710.353C665.359 721.737 673.325 740.633 671.506 757.697C662.396 775.928 646.137 790.097 627.929 799.397C622.498 802.156 616.895 804.563 611.156 806.605L610.956 805.485C623.81 780.069 616.846 749.813 604.284 726.73C599.199 717.399 591.664 708.208 581.258 706.213C588.924 703.565 596.475 700.598 603.91 697.313L603.98 697.465C620.861 693.335 639.57 698.817 652.552 710.353Z" fill="#171717"/>
|
||||||
|
<path d="M604.286 726.729C616.848 749.812 623.812 780.068 610.958 805.484L611.158 806.604C596.508 811.853 581.065 814.979 565.634 817.253C554.577 818.886 542.563 820.367 529.907 821.569L529.72 819.621C526.431 786.461 525.053 753.139 525.591 719.821C544.531 717.027 563.17 712.469 581.263 706.209C591.666 708.207 599.2 717.4 604.286 726.729Z" fill="white"/>
|
||||||
|
<path d="M610.887 694.128L610.712 693.743C610.257 687.864 609.826 682.102 609.382 676.387L610.572 676.305C630.004 666.647 655.502 674.777 668.285 692.305C681.068 709.833 681.827 734.435 673.102 754.299C672.602 755.442 672.064 756.573 671.502 757.693C673.322 740.629 665.355 721.733 652.548 710.349C639.566 698.813 620.857 693.331 603.979 697.46L603.909 697.308C606.257 696.284 608.583 695.224 610.887 694.128Z" fill="white"/>
|
||||||
|
<path d="M529.719 819.621L529.906 821.569C498.95 824.497 464.145 825.686 430.074 822.875L430.121 822.327C422.125 788.537 424.574 753.115 437.143 720.746L437.178 720.478C450.71 722.295 464.346 723.222 478 723.254C493.926 723.314 509.835 722.168 525.589 719.825C525.05 753.142 526.429 786.463 529.719 819.621V819.621Z" fill="#171717"/>
|
||||||
|
<path d="M356.917 652.815C319.779 655.894 295.879 655.615 255.65 649.115C225.767 644.274 192.035 630.744 167.26 613.353C137.272 592.323 117.793 558.381 109.815 522.631C101.837 486.881 104.625 449.416 112.766 413.713C117.64 393.139 123.759 372.881 131.09 353.049L131.662 353.259C152.198 362.627 173.577 370.027 195.511 375.359L196.841 375.686C193.062 390.721 190.962 406.281 189.434 421.724C187.734 438.847 186.67 456.156 188.792 473.232C190.914 490.308 196.362 507.256 206.685 521.032C220.938 540.079 243.345 551.592 266.323 557.75C318.671 571.77 380.385 560.293 422.842 526.619L422.609 526.082C420.183 523.446 421.478 518.874 424.3 516.669C426.106 515.352 428.202 514.488 430.412 514.15C431.742 513.882 433.106 513.718 434.448 513.567C438.764 513.065 443.079 512.571 447.395 512.086L447.547 513.439C447.547 513.439 482.539 639.41 478.013 722.154L478.001 723.254C464.347 723.222 450.709 722.295 437.177 720.478C413.877 717.396 391.012 711.631 369.036 703.3C365.199 701.842 361.397 700.302 357.629 698.681L358.341 697.048C358.364 689.186 358.271 681.827 358.026 674.455C357.804 667.667 357.466 660.855 356.976 653.623L356.917 652.815Z" fill="white"/>
|
||||||
|
<path d="M437.177 720.477L437.142 720.745C424.574 753.114 422.125 788.535 430.12 822.326L430.073 822.874C393.845 819.874 358.445 812.365 329.378 797.61L332.691 797.132C332.209 779.904 335.166 762.752 341.391 746.681C347.616 730.61 356.982 715.941 368.943 703.532L369.036 703.299C391.012 711.632 413.877 717.396 437.177 720.477V720.477Z" fill="white"/>
|
||||||
|
<path d="M357.628 698.677C361.395 700.299 365.198 701.838 369.035 703.296L368.942 703.529C356.981 715.938 347.615 730.607 341.39 746.678C335.166 762.75 332.208 779.901 332.69 797.129L329.377 797.607C312.534 789.057 297.814 778.081 286.302 764.143C274.685 750.088 281.263 719.062 292.502 704.703C307.693 685.32 322.67 674 356.985 674.485L358.023 674.45C358.268 681.822 358.361 689.182 358.338 697.043L357.628 698.677Z" fill="#171717"/>
|
||||||
|
<path d="M203.443 336.266C205.717 337.561 207.945 338.863 210.126 340.173C204.28 351.433 199.819 363.358 196.841 375.69L195.511 375.363C173.577 370.032 152.198 362.632 131.662 353.263L131.09 353.053C136.339 338.485 141.972 324.045 147.59 309.616C151.567 311.156 155.606 312.805 159.709 314.562C174.682 320.972 189.283 328.218 203.443 336.266V336.266Z" fill="#171717"/>
|
||||||
|
<path d="M465.699 509.173C461.325 495.13 464.008 479.92 467.729 465.69C471.45 451.46 476.185 437.19 475.847 422.49C475.439 404.714 467.601 388.221 456.52 374.038C451.994 368.293 447.021 362.915 441.648 357.953" stroke="#171717" stroke-width="3.499" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M430.26 513.442C418.713 495.433 406.684 477.746 394.172 460.383C385.668 448.567 376.948 436.911 368.01 425.414" stroke="#171717" stroke-width="3.499" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M358.83 427.653C360.796 427.022 362.71 426.242 364.557 425.32C373.603 420.884 380.79 413.392 384.845 404.169C388.901 394.945 389.564 384.585 386.718 374.92" stroke="#171717" stroke-width="3.499" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M383.429 373.217C384.549 373.695 385.692 374.127 386.847 374.5C392.827 376.458 399.139 377.2 405.411 376.683C411.682 376.166 417.787 374.401 423.367 371.491C429.444 368.21 434.728 363.636 438.846 358.091C442.964 352.546 445.815 346.166 447.2 339.399" stroke="#171717" stroke-width="3.499" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M457.389 373.358C472.004 372.588 485.336 360.878 487.96 346.484C490.584 332.09 482.268 316.414 468.866 310.536C476.004 301.753 475.466 287.698 467.7 279.487C459.934 271.276 445.923 269.958 436.756 276.587C441.69 265.623 434.516 251.008 422.806 248.22C411.096 245.432 398.106 255.22 397.554 267.232C394.591 258.857 384.945 253.865 376.162 255.113C367.379 256.361 359.902 263.068 356.473 271.244C353.044 279.42 353.289 288.833 355.843 297.336C349.779 295.51 343.304 295.563 337.27 297.488C331.236 299.412 325.926 303.118 322.039 308.117C318.151 313.117 315.868 319.176 315.489 325.498C315.111 331.82 316.655 338.108 319.918 343.536C307.053 346.674 294.642 354.558 289.393 366.712C284.144 378.866 288.273 395.289 300.229 400.992C285.719 406.999 278.429 426.209 285.299 440.346C292.169 454.483 311.776 460.618 325.481 452.908C320.011 462.974 324.921 477.239 335.43 481.8C345.939 486.361 359.714 480.2 363.33 469.331C365.786 471.499 368.739 473.028 371.928 473.781C375.116 474.533 378.441 474.488 381.607 473.647C387.894 471.909 391.988 466.812 393.912 460.572" stroke="#171717" stroke-width="3.499" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M442.985 369.905C434.658 371.488 427.027 375.61 421.138 381.705C419.75 383.14 418.42 384.819 418.269 386.79C418.082 389.146 419.575 391.257 421.01 393.135C429.035 403.657 437.208 414.065 445.528 424.359C443.475 426.342 441.415 428.321 439.346 430.296" stroke="#171717" stroke-width="3.499" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M440.278 391.449L435.694 383.716" stroke="#171717" stroke-width="3.499" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M407.304 407.661C405.659 405.107 404.004 402.541 402.358 399.986" stroke="#171717" stroke-width="3.499" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M445.773 437.043C443.517 437.713 441.217 438.228 438.891 438.583C435.613 439.143 432.291 439.528 429.023 440.228C423.471 441.418 417.802 443.728 414.455 448.334C413.503 449.678 412.749 451.15 412.216 452.708C411.395 455.203 410.943 457.804 410.875 460.43C410.53 466.27 411.888 472.084 414.782 477.168C417.147 480.864 420.455 483.864 424.364 485.859C428.273 487.853 432.643 488.771 437.025 488.517C438.672 488.418 440.303 488.136 441.889 487.677C446.872 486.096 451.22 482.966 454.302 478.743C457.383 474.521 459.037 469.425 459.023 464.197" stroke="#171717" stroke-width="3.499" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M438.9 438.676L439.985 449.092C436.323 449.244 432.68 449.562 429.056 450.048C423.811 450.734 418.617 451.766 413.508 453.139" stroke="#171717" stroke-width="3.499" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M429.152 450.7C428.295 463.716 431.013 476.718 437.014 488.3" stroke="#171717" stroke-width="3.499" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M422.608 526.086C420.182 523.45 421.477 518.878 424.299 516.673C426.105 515.357 428.201 514.493 430.411 514.154C431.741 513.886 433.105 513.722 434.447 513.571C438.763 513.069 443.079 512.576 447.394 512.09C452.713 511.483 458.036 510.873 463.362 510.259C464.155 510.166 464.962 510.084 465.762 510.014C469.599 509.641 473.495 509.594 476.962 511.169C481.138 513.082 484.162 518.342 482.001 522.401" stroke="#171717" stroke-width="3.499" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M481.057 523.6C481.22 523.658 481.384 523.705 481.547 523.763C526.78 538.938 574.73 549.563 622.028 543.417C669.5 537.235 716.413 511.761 738.703 469.397C750.192 447.574 754.449 423.231 755.872 398.397C756.735 383.374 756.56 368.176 756.327 353.257" stroke="#171717" stroke-width="3.499" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M756.431 352.888C762.531 352.795 768.573 352.688 774.592 352.588C794.514 352.238 814.121 351.888 834.02 351.538L854.957 351.188" stroke="#171717" stroke-width="3.499" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M587.922 635.7C594.291 637.065 600.535 638.095 606.654 638.791C675.705 646.757 729.347 613.783 782.966 570.791C832.69 530.912 858.066 465.244 859.015 400.381C859.275 383.887 857.915 367.408 854.956 351.181" stroke="#171717" stroke-width="3.499" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M210.126 340.174C204.28 351.433 199.819 363.359 196.841 375.691C193.062 390.726 190.962 406.291 189.434 421.729C187.734 438.852 186.67 456.161 188.792 473.237C190.914 490.313 196.362 507.261 206.685 521.037C220.938 540.084 243.345 551.597 266.323 557.755C318.671 571.775 380.385 560.298 422.842 526.624" stroke="#171717" stroke-width="3.499" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M210.126 340.174C207.944 338.868 205.717 337.566 203.443 336.267C189.285 328.218 174.686 320.971 159.715 314.56C155.621 312.799 151.581 311.15 147.596 309.614" stroke="#171717" stroke-width="3.499" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M147.599 309.614C141.977 324.042 136.343 338.482 131.094 353.051C123.764 372.883 117.645 393.142 112.77 413.715C104.629 449.415 101.853 486.895 109.819 522.633C117.785 558.371 137.276 592.325 167.264 613.355C192.038 630.746 225.77 644.276 255.654 649.117C295.883 655.617 319.782 655.894 356.921 652.817C361.19 652.467 365.621 652.071 370.288 651.627" stroke="#171717" stroke-width="3.499" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M356.975 653.619C357.465 660.851 357.803 667.662 358.025 674.451C358.27 681.823 358.363 689.183 358.34 697.044" stroke="#171717" stroke-width="3.499" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M606.584 639.413C607.552 652.057 608.462 664.113 609.384 676.388C609.827 682.103 610.259 687.865 610.714 693.744" stroke="#171717" stroke-width="3.499" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M351.072 695.773C353.241 696.764 355.434 697.744 357.627 698.673C361.395 700.295 365.197 701.834 369.034 703.292C391.01 711.625 413.876 717.39 437.175 720.473C450.708 722.291 464.345 723.22 477.999 723.253C493.926 723.313 509.835 722.167 525.588 719.824C544.529 717.03 563.167 712.473 581.26 706.212C588.924 703.564 596.474 700.598 603.911 697.312C606.255 696.286 608.58 695.225 610.886 694.128C612.846 693.207 614.805 692.25 616.741 691.282" stroke="#171717" stroke-width="3.499" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M356.986 674.486C322.671 673.996 307.694 685.322 292.508 704.707C281.264 719.065 274.685 750.091 286.303 764.147C297.815 778.085 312.535 789.061 329.378 797.611C358.445 812.366 393.845 819.877 430.078 822.875C464.148 825.686 498.954 824.496 529.91 821.569C542.565 820.369 554.579 818.886 565.637 817.253C581.068 814.979 596.512 811.853 611.161 806.604C616.899 804.563 622.499 802.156 627.929 799.4C646.136 790.1 662.396 775.932 671.506 757.7C672.066 756.58 672.606 755.449 673.106 754.306C681.831 734.442 681.072 709.855 668.289 692.312C655.506 674.769 630.008 666.651 610.576 676.312" stroke="#171717" stroke-width="3.499" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M447.546 513.441C447.546 513.441 482.538 639.412 478.012 722.156" stroke="#171717" stroke-width="3.499" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M203.826 335.6C212.212 332.742 220.552 329.616 228.285 325.289C230.734 323.924 233.207 322.35 234.677 319.947C236.147 317.544 236.287 314.127 234.277 312.155C232.267 310.183 229.077 310.335 226.334 310.884C219.767 312.184 213.62 314.978 207.555 317.836C207.228 317.988 206.913 318.136 206.587 318.291" stroke="#171717" stroke-width="3.499" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M207.28 317.231C217.358 303.887 226.969 289.786 231.751 273.783C232.463 271.415 232.777 268.254 230.643 267.03C228.882 266.015 226.677 267.077 225.033 268.266C212.191 277.566 204.248 293.472 196.071 305.696C203.839 292.376 212.109 280.096 217.859 266.155C218.554 264.658 218.961 263.044 219.059 261.396C219.094 260.571 218.927 259.75 218.574 259.004C218.22 258.258 217.69 257.61 217.029 257.115C214.475 255.447 211.115 257.278 208.864 259.331C197.048 270.12 190.657 285.657 182.783 300.085C190.108 286.205 193.283 272.371 195.007 257.92C195.357 254.969 195.182 251.248 192.476 250.02C191.768 249.751 191.007 249.651 190.254 249.728C189.5 249.805 188.775 250.057 188.137 250.463C186.859 251.276 185.737 252.311 184.824 253.519C170.824 270.093 166.372 290.867 160.353 313.087" stroke="#171717" stroke-width="3.499" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M774.579 351.9C764.373 344.221 756.164 334.2 750.645 322.682C744.218 297.966 772.608 323.708 780.05 329.19" stroke="#171717" stroke-width="3.499" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M801.199 317.599C799.904 297.84 797.21 264.199 810.599 264.33C820.735 264.435 819.079 310.788 817.971 323.7C819.277 308.432 829.927 270.442 838.22 273.02C850.759 276.939 835.969 321.764 834.02 351.53V351.577" stroke="#171717" stroke-width="3.499" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M801.489 322.293C801.419 321.138 801.337 319.893 801.256 318.572" stroke="#171717" stroke-width="3.499" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M801.641 326.049C801.641 325.816 801.629 325.594 801.618 325.349C801.607 325.104 801.606 324.859 801.595 324.603" stroke="#171717" stroke-width="3.499" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M801.594 324.6C801.606 324.857 801.617 325.1 801.617 325.346" stroke="#171717" stroke-width="3.499" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M801.593 324.6C801.571 323.867 801.536 323.097 801.488 322.291" stroke="#171717" stroke-width="3.499" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M801.256 318.572C801.361 319.872 801.431 321.103 801.489 322.293" stroke="#171717" stroke-width="3.499" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M801.255 318.572C801.243 318.257 801.22 317.93 801.197 317.604" stroke="#171717" stroke-width="3.499" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M780.2 328.976C781.46 315.476 770.484 267.67 783.046 267.262C794.127 266.912 799.62 297.262 801.195 317.604" stroke="#171717" stroke-width="3.499" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M489.104 423.828C491.74 417.331 494.374 410.831 497.004 404.328" stroke="#171717" stroke-width="3.499" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M493.875 442.653L535.9 420.223" stroke="#171717" stroke-width="3.499" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M492.824 457.035C501.63 461.736 510.441 466.44 519.255 471.148" stroke="#171717" stroke-width="3.499" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M368.942 703.53C356.982 715.939 347.615 730.608 341.391 746.68C335.166 762.751 332.208 779.902 332.69 797.13" stroke="#171717" stroke-width="3.499" stroke-miterlimit="10"/>
|
||||||
|
<path d="M437.141 720.746C424.573 753.115 422.124 788.537 430.119 822.327" stroke="#171717" stroke-width="3.499" stroke-miterlimit="10"/>
|
||||||
|
<path d="M525.59 719.684V719.824C525.052 753.142 526.43 786.464 529.719 819.624" stroke="#171717" stroke-width="3.499" stroke-miterlimit="10"/>
|
||||||
|
<path d="M580.83 706.131C580.97 706.154 581.122 706.178 581.262 706.213C591.662 708.213 599.201 717.399 604.287 726.73C616.849 749.813 623.813 780.069 610.959 805.485" stroke="#171717" stroke-width="3.499" stroke-miterlimit="10"/>
|
||||||
|
<path d="M603.982 697.464C620.86 693.335 639.569 698.817 652.551 710.353C665.358 721.737 673.324 740.633 671.505 757.697C671.482 757.942 671.458 758.175 671.423 758.42" stroke="#171717" stroke-width="3.499" stroke-miterlimit="10"/>
|
||||||
|
<path d="M131.663 353.261C152.2 362.629 173.578 370.029 195.512 375.361" stroke="#171717" stroke-width="3.499" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M756.711 398.447C790.911 399.089 823.954 399.73 858.164 400.372" stroke="#171717" stroke-width="3.499" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M546.152 671.955C546.118 671.886 546.079 671.819 546.035 671.755C540.856 662.587 535.666 653.42 530.464 644.255C527.991 639.869 525.215 635.215 520.631 633.155C518.776 632.37 516.768 632.01 514.756 632.103C512.744 632.196 510.777 632.738 509.002 633.691C506.823 634.826 504.976 636.51 503.645 638.575C502.314 640.641 501.543 643.018 501.409 645.472C501.347 647.929 502.018 650.349 503.337 652.422C504.656 654.496 506.564 656.129 508.816 657.113C510.992 657.943 513.374 658.065 515.624 657.462C517.873 656.859 519.875 655.561 521.343 653.754C521.498 653.559 521.642 653.357 521.775 653.147" stroke="#171717" stroke-width="3.499" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M546.099 671.722C546.076 671.734 546.064 671.745 546.041 671.757C543.401 673.19 541.02 675.055 538.996 677.274C534.719 668.437 528.792 660.5 521.535 653.888C521.792 653.853 522.06 653.806 522.316 653.76" stroke="#171717" stroke-width="3.499" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M524.527 646.143C526.172 645.035 527.817 643.935 529.461 642.843" stroke="#171717" stroke-width="3.499" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M488.935 523.877C493.645 520.159 500.67 520.452 505.898 523.398C511.126 526.344 514.784 531.48 517.413 536.874C523.261 548.874 524.728 562.634 523.758 575.949C522.788 589.264 519.494 602.286 516.214 615.227C514.526 621.888 512.676 628.854 507.987 633.878C503.578 638.601 497.209 640.973 490.912 642.419C478.125 645.355 464.812 645.098 452.148 641.67C439.484 638.241 427.858 631.748 418.299 622.762C408.739 613.776 401.54 602.575 397.335 590.147C393.131 577.719 392.051 564.447 394.192 551.503C395.367 544.396 397.6 537.275 402.081 531.634C406.562 525.993 413.598 522.034 420.781 522.634" stroke="#171717" stroke-width="3.499" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M756.155 410.836L857.155 411.678" stroke="#171717" stroke-width="3.499" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M754.53 421.742L856.33 426.226" stroke="#171717" stroke-width="3.499" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M127.383 363.409L193.183 388.29" stroke="#171717" stroke-width="3.499" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M123.241 373.963C144.827 384.946 167.475 393.704 190.835 400.1" stroke="#171717" stroke-width="3.499" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M292.312 283.611C285.437 284.566 278.869 287.075 273.107 290.946C267.346 294.817 262.541 299.949 259.058 305.953C255.575 311.957 253.505 318.676 253.004 325.599C252.504 332.522 253.587 339.469 256.171 345.911C257.771 349.889 260.112 353.83 263.871 355.881C267.63 357.932 273.061 357.373 275.344 353.745C278 349.525 274.659 343.345 269.803 342.207C264.947 341.069 259.813 344.058 257.203 348.307C254.593 352.556 254.066 357.767 254.278 362.749C254.633 371.095 256.849 379.249 257.694 387.562C258.539 395.875 257.832 404.813 252.989 411.62C248.146 418.427 238.189 422.046 231.045 417.709" stroke="#171717" stroke-width="3.499" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M53.3416 418.058C60.2226 419.736 65.9636 424.716 69.8216 430.658C73.6796 436.6 75.8516 443.465 77.5666 450.337C80.2186 460.963 81.8876 472.014 80.4266 482.869C78.9656 493.724 74.0866 504.43 65.5146 511.247C60.8936 514.922 54.8056 517.419 49.0926 515.931C43.3796 514.443 38.9776 507.77 41.4396 502.4C44.3026 496.161 54.1276 496.27 58.8806 501.223C63.6336 506.176 64.3926 513.708 63.9806 520.561C63.5686 527.414 62.2576 534.388 63.8616 541.061C66.6716 552.761 78.4196 560.937 90.4066 561.935" stroke="#171717" stroke-width="3.499" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M167.562 639.048C151.4 630.5 138.106 617.39 129.335 601.348" stroke="#171717" stroke-width="3.499" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M764.985 618.533C789.987 608.414 811.3 590.896 826.067 568.326" stroke="#171717" stroke-width="3.499" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M903.527 374.647C913.322 382.168 915.114 398.117 907.227 407.624C903.24 412.433 897.377 415.537 893.901 420.724C888.314 429.068 891.286 441.875 899.978 446.904C903.178 448.757 908.084 449.16 909.865 445.918C911.384 443.153 909.16 439.407 906.104 438.625C903.048 437.843 899.785 439.386 897.61 441.672C892.555 446.985 892.469 455.342 894.174 462.472C895.879 469.602 899.053 476.452 899.474 483.772C900.327 498.449 888.188 512.684 873.56 514.159" stroke="#171717" stroke-width="3.499" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M616.624 383.8C627.353 382.031 637.806 390.6 641.171 400.943C644.536 411.286 642.243 422.655 638.299 432.787C636.745 436.778 634.839 440.806 631.568 443.571C628.297 446.336 623.331 447.505 619.659 445.302C615.696 442.925 614.63 437.015 617.147 433.139C619.664 429.263 625.058 427.749 629.413 429.293C631.57 430.144 633.466 431.545 634.914 433.356C636.362 435.167 637.311 437.325 637.666 439.616C638.823 446.572 635.009 453.324 630.955 459.094C626.901 464.864 622.295 470.75 621.544 477.761C620.793 484.772 626.045 492.934 633.051 492.152" stroke="#171717" stroke-width="3.499" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M865.078 329.208C871.262 320.248 875.071 309.867 876.149 299.034C877.228 288.202 875.539 277.273 871.243 267.271" stroke="#171717" stroke-width="3.499" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M890.905 308.018C892.507 304.532 893.337 300.74 893.339 296.904C893.34 293.067 892.514 289.275 890.915 285.787" stroke="#171717" stroke-width="3.499" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M148.662 278.306C145.262 259.862 156.794 239.806 174.439 233.454" stroke="#171717" stroke-width="3.499" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M134.384 251.182C132.549 243.226 137.878 234.302 145.753 232.145" stroke="#171717" stroke-width="3.499" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M380.061 220.648C374.481 195.419 368.902 170.19 363.322 144.961" stroke="#171717" stroke-width="3.499" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M406.578 219.865L412.269 199.265" stroke="#171717" stroke-width="3.499" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M355.69 232.329L335.838 214.308L336.75 215.043" stroke="#171717" stroke-width="3.499" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M303.266 811.172C337.501 832.06 377.145 842.367 417.22 840.8" stroke="#171717" stroke-width="3.499" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M325.683 846.252C338.983 853.752 354.243 857.051 369.454 855.713" stroke="#171717" stroke-width="3.499" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M522.724 852.892C572.857 860.204 625.87 844.692 664.157 811.516" stroke="#171717" stroke-width="3.499" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M589.582 865.139C607.19 863.34 624.107 857.332 638.905 847.621" stroke="#171717" stroke-width="3.499" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M676.473 707.27C688.941 700.697 701.505 694.085 714.994 690.001C728.483 685.917 743.117 684.475 756.664 688.362C777.129 694.234 793.779 711.71 815.015 713.231C825.298 713.968 835.555 710.747 844.608 705.813C853.661 700.879 861.679 694.282 869.636 687.727" stroke="#171717" stroke-width="3.499" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M674.436 751.016C681.176 744.839 689.122 740.124 697.774 737.167C706.426 734.211 715.595 733.077 724.707 733.837C750.657 736.156 773.382 753.664 799.327 756.037C816.171 757.496 832.937 752.469 846.2 741.984" stroke="#171717" stroke-width="3.499" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M638.648 794C648.348 785.991 659.675 780.189 671.842 776.996C684.009 773.803 696.725 773.296 709.107 775.51C739.207 781.11 765.612 802.664 796.23 802.962C831.516 803.306 863.209 775.117 898.321 778.631" stroke="#171717" stroke-width="3.499" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M290.189 706.115C280.173 697.774 268.24 692.053 255.465 689.467C242.689 686.881 229.471 687.511 217 691.3C199.808 696.718 184.668 708.094 166.956 711.439C154.212 713.845 140.95 711.872 128.638 707.797C116.326 703.722 104.8 697.6 93.3486 691.517" stroke="#171717" stroke-width="3.499" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M280.773 729.581C266.456 722.698 250.937 715.631 235.29 718.374C225.118 720.157 216.161 725.919 206.621 729.874C188.123 737.463 167.536 738.264 148.504 732.137" stroke="#171717" stroke-width="3.499" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M288.718 764.863C277.644 755.751 263.444 751.334 249.156 752.555C234.343 753.894 220.83 761.19 206.666 765.726C180.678 773.952 152.641 772.899 127.343 762.749" stroke="#171717" stroke-width="3.499" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M252.137 157.889C265.406 157.545 279.803 156.789 289.937 148.219C293.477 145.224 296.26 141.436 298.059 137.163C299.858 132.89 300.622 128.253 300.29 123.628C299.958 119.004 298.539 114.523 296.148 110.55C293.757 106.578 290.461 103.227 286.53 100.769C282.599 98.3107 278.143 96.8158 273.524 96.4055C268.906 95.9953 264.256 96.6814 259.953 98.4079C255.65 100.134 251.816 102.853 248.762 106.341C245.708 109.83 243.521 113.99 242.379 118.484C240.232 113.336 236.449 109.038 231.616 106.254C226.782 103.47 221.167 102.354 215.636 103.079C210.106 103.804 204.968 106.329 201.015 110.265C197.063 114.201 194.516 119.328 193.767 124.856C186.147 117.101 174.71 113.786 163.873 114.661C153.036 115.536 142.781 120.253 133.946 126.589C126.489 131.937 118.288 140.257 120.054 150.304C121.574 158.946 127.698 163.096 135.822 162.222C159.556 159.67 183.508 159.67 207.422 159.049L252.137 157.889Z" stroke="white" stroke-width="3.499" stroke-miterlimit="10"/>
|
||||||
|
<path d="M633.876 164.218C637.913 164.233 642.049 164.232 645.844 162.852C648.497 161.887 650.871 160.284 652.756 158.185C654.642 156.085 655.982 153.553 656.657 150.813C657.332 148.073 657.322 145.208 656.628 142.473C655.933 139.737 654.576 137.215 652.675 135.129C650.775 133.042 648.39 131.456 645.731 130.51C643.072 129.565 640.221 129.288 637.43 129.706C634.638 130.123 631.993 131.221 629.727 132.904C627.461 134.586 625.644 136.801 624.437 139.352C622.262 129.652 612.46 122.259 602.537 122.842C592.614 123.425 583.737 131.908 582.713 141.801C582.997 139.064 568.901 137.226 567.089 137.211C562.405 137.173 555.169 138.075 551.758 141.752C545.936 148.03 552.686 155.407 558.227 159.111C567.913 165.585 579.608 164.011 590.685 164.053L633.876 164.218Z" fill="white"/>
|
||||||
|
<path d="M899.209 208.208C907.281 207.493 916.709 205.395 919.882 197.937C923.045 190.495 917.03 181.331 909.129 179.612C901.228 177.893 892.911 182.307 888.129 188.828C889.103 186.129 889.421 183.237 889.059 180.391C888.696 177.545 887.663 174.826 886.044 172.457C884.425 170.089 882.266 168.139 879.746 166.768C877.225 165.397 874.415 164.644 871.547 164.571C868.679 164.499 865.834 165.109 863.248 166.35C860.662 167.592 858.407 169.431 856.67 171.715C854.933 173.998 853.764 176.662 853.258 179.486C852.752 182.31 852.924 185.214 853.76 187.959C847.793 185.732 841.45 183.851 835.134 184.677C828.818 185.503 822.553 189.689 821.124 195.895C817.483 211.708 840.197 208.612 848.885 208.916C865.656 209.5 882.476 209.69 899.209 208.208Z" stroke="#171717" stroke-width="3.499" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M423.363 371.491C429.837 368.019 435.4 363.067 439.599 357.039L441.642 357.947C447.015 362.909 451.988 368.288 456.514 374.032L457.389 373.355C472.004 372.581 485.324 360.886 487.96 346.481C490.596 332.076 482.266 316.412 468.866 310.533C476.005 301.75 475.468 287.703 467.7 279.484C459.932 271.265 445.924 269.959 436.756 276.584C441.69 265.617 434.504 251.017 422.806 248.217C411.108 245.417 398.102 255.215 397.554 267.229C394.591 258.854 384.945 253.862 376.162 255.11C367.379 256.358 359.914 263.049 356.473 271.241C353.032 279.433 353.289 288.833 355.843 297.333C349.779 295.508 343.304 295.561 337.27 297.485C331.236 299.409 325.926 303.115 322.039 308.115C318.151 313.114 315.868 319.174 315.489 325.495C315.111 331.817 316.655 338.106 319.918 343.533C307.052 346.67 294.642 354.544 289.393 366.709C284.144 378.874 288.273 395.289 300.229 400.989C285.719 406.996 278.429 426.206 285.299 440.343C292.169 454.48 311.776 460.615 325.481 452.905C320.01 462.971 324.921 477.237 335.43 481.797C345.939 486.357 359.714 480.199 363.33 469.328C365.786 471.497 368.739 473.026 371.928 473.779C375.116 474.532 378.441 474.486 381.607 473.644C387.893 471.906 391.987 466.809 393.912 460.569L394.169 460.382C385.661 448.571 376.941 436.915 368.007 425.413L364.554 425.32C373.601 420.884 380.787 413.392 384.843 404.169C388.898 394.946 389.561 384.586 386.715 374.92L386.843 374.5C392.824 376.458 399.136 377.2 405.407 376.683C411.679 376.167 417.784 374.401 423.363 371.491ZM432.281 275.67C434.097 270.637 433.208 265.1 430.665 260.626C428.123 256.152 423.821 252.553 418.567 251.537L417.903 254.973C421.98 255.761 425.492 258.604 427.623 262.354C429.754 266.105 430.399 270.577 428.99 274.482L432.281 275.67ZM467.248 289.491C469.202 294.567 469.275 300.477 466.647 305.464L463.551 303.833C465.63 299.889 465.639 295.053 463.983 290.748C462.326 286.442 459.077 282.86 454.891 281.326L456.095 278.041C461.388 279.98 465.295 284.415 467.248 289.491ZM482.947 335.531C481.098 329.257 477.322 323.724 472.152 319.716L470.008 322.481C474.597 326.039 477.95 330.951 479.59 336.52C481.231 342.09 481.077 348.035 479.15 353.512L482.45 354.673C484.622 348.503 484.795 341.806 482.947 335.531Z" fill="#171717"/>
|
||||||
|
<g opacity="0.1">
|
||||||
|
<path d="M129.055 359.455C125.668 367.087 122.797 374.938 120.464 382.955C118.205 391.018 116.656 399.246 114.55 407.343C110.162 423.87 107.241 440.752 105.823 457.793C103.5 487.463 107.139 518.616 117.632 546.534C128.062 574.285 145.212 598.452 168.947 616.354C192.387 634.033 221.102 644.471 249.881 649.304C288.274 655.751 327.114 653.483 365.744 650.919C371.655 650.526 376.712 646.158 376.712 639.95C376.712 634.297 371.687 628.612 365.744 628.981C307.416 632.608 243.663 636.617 191.632 604.921C145.28 576.684 125.138 521.569 124.355 469.321C124.1 451.107 124.857 432.893 126.624 414.763C128.362 396.717 132.924 379.082 134.824 361.021C135.136 358.05 130.256 356.682 129.059 359.46L129.055 359.455Z" fill="#171717"/>
|
||||||
|
</g>
|
||||||
|
<g opacity="0.1">
|
||||||
|
<path d="M370.568 695C370.735 689.693 370.668 684.342 371.156 679.054C371.628 673.932 371.203 667.993 372.866 663.096C377.028 650.841 354.08 651.396 358.492 663.096C360.337 667.99 360.16 673.888 360.813 679.054C361.479 684.332 361.596 689.691 361.943 695C362.303 700.5 370.392 700.595 370.568 695Z" fill="#171717"/>
|
||||||
|
</g>
|
||||||
|
<g opacity="0.1">
|
||||||
|
<path d="M321.793 792.781C333.614 800.481 348.451 804.791 361.916 808.765C375.617 812.729 389.521 815.955 403.568 818.429C459.885 828.811 517.664 828.385 573.822 817.174C587.812 814.41 601.643 810.963 615.316 806.831C628.239 802.918 641.64 798.61 652.686 790.603C665.008 781.671 672.951 769.185 677.7 754.856C679.74 748.46 681.191 741.89 682.035 735.23C683.118 727.43 683.845 719.902 681.261 712.305C679.435 706.939 671.976 705.469 668.923 710.693C662.882 721.032 662.688 733.709 659.5 745.08C656.678 755.148 652.12 764.546 644.2 771.58C635.2 779.571 622.874 783.24 611.61 786.688C599.11 790.514 586.453 793.764 573.638 796.438C521.748 807.213 468.327 808.43 416 800.03C401.33 797.667 386.789 794.566 372.432 790.738C364.972 788.749 357.504 786.775 350.107 784.559C342.748 782.359 335.381 779.784 327.789 778.559C319.303 777.19 314.029 787.725 321.789 792.781H321.793Z" fill="#171717"/>
|
||||||
|
</g>
|
||||||
|
<g opacity="0.1">
|
||||||
|
<path d="M586.028 637.341C598.536 641.948 613.649 641.641 626.819 641.224C666.516 639.984 705.29 628.945 739.688 609.09C784.929 583.055 819.9 542.044 840 494.024C851.268 466.876 857.217 437.816 857.523 408.424C857.694 398.076 841.911 398.143 841.492 408.424C839.557 455.84 821.562 504.024 791.892 541.062C761.168 579.173 718.701 606.052 671.108 617.509C657.647 620.825 643.911 622.898 630.071 623.703C623.028 624.098 615.99 624.119 608.941 623.91C601.969 623.703 594.829 623.029 587.887 623.62C586.229 623.676 584.644 624.316 583.413 625.428C582.183 626.54 581.385 628.052 581.163 629.696C580.941 631.34 581.307 633.01 582.199 634.409C583.09 635.808 584.447 636.847 586.031 637.34L586.028 637.341Z" fill="#171717"/>
|
||||||
|
</g>
|
||||||
|
<g opacity="0.1">
|
||||||
|
<path d="M371.499 421.712C370.228 425.804 371.837 428.812 373.944 432.212C376.356 436.104 378.821 439.964 381.259 443.84C386.142 451.602 391.325 459.164 396.441 466.773C406.691 482.015 417.363 496.927 427.683 512.125C431.955 518.416 442.223 512.543 437.964 506.116C427.65 490.553 417.733 474.775 407.35 459.26C402.245 451.632 397.186 443.982 391.85 436.512C387.57 430.519 382.934 419.961 374.797 419.203C374.05 419.208 373.323 419.455 372.728 419.909C372.133 420.362 371.701 420.996 371.497 421.715L371.499 421.712Z" fill="#171717"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<defs>
|
||||||
|
<clipPath id="clip0_46_107">
|
||||||
|
<rect width="960" height="960" fill="white"/>
|
||||||
|
</clipPath>
|
||||||
|
<clipPath id="clip1_46_107">
|
||||||
|
<rect width="885" height="773" fill="white" transform="translate(38 94)"/>
|
||||||
|
</clipPath>
|
||||||
|
</defs>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 36 KiB |
|
@ -0,0 +1,156 @@
|
||||||
|
<svg width="960" height="960" viewBox="0 0 960 960" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<g clip-path="url(#clip0_1_5616)">
|
||||||
|
<mask id="mask0_1_5616" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="0" y="0" width="960" height="960">
|
||||||
|
<path d="M960 0H0V960H960V0Z" fill="white"/>
|
||||||
|
</mask>
|
||||||
|
<g mask="url(#mask0_1_5616)">
|
||||||
|
<mask id="mask1_1_5616" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="59" y="38" width="842" height="885">
|
||||||
|
<path d="M901 38H59V923H901V38Z" fill="white"/>
|
||||||
|
</mask>
|
||||||
|
<g mask="url(#mask1_1_5616)">
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M346.351 781.767C341.072 749.09 340.118 715.628 339.2 682.444C348.176 677.286 355.146 668.564 357.162 658.37C362.908 661.969 369.535 663.918 376.315 664.001C383.095 664.084 389.768 662.299 395.601 658.841C405.99 652.487 411.547 640.347 411.547 628.17C417.609 644.309 423.7 660.605 426.309 677.638C428.942 694.731 427.851 712.864 420.051 728.29C415.157 738.001 407.9 746.159 400.639 754.323C397.593 757.747 394.548 761.171 391.675 764.712C387.523 769.734 383.942 775.2 380.996 781.012L381.286 781.145C386.053 780.194 390.888 779.62 395.746 779.43C418.13 778.52 440.158 785.251 458.212 798.517C467.317 805.335 475.147 813.706 481.345 823.245L481.611 823.064C499.647 796.15 499.985 766.3 488.328 736.064C486.497 731.325 484.308 726.707 482.121 722.093C478.144 713.704 474.174 705.328 472.382 696.264C470.634 687.421 471.055 678.396 471.477 669.352C471.77 663.077 472.063 656.792 471.633 650.553C469.229 615.955 442.821 585.018 409.71 574.666C376.599 564.314 338.727 573.724 312.429 596.35C286.131 618.976 271.332 653.561 270.209 688.243C270.131 690.672 270.113 693.118 270.095 695.567C270.03 704.477 269.965 713.426 267.009 721.765C264.57 728.631 260.333 734.598 256.091 740.572C254.154 743.3 252.215 746.03 250.447 748.848C232.653 777.2 233.39 816.075 252.247 843.726C259.13 832.35 268.025 822.32 278.497 814.126C294.201 801.735 312.514 793.194 331.456 786.526C336.131 784.871 340.855 783.338 345.578 781.887L346.351 781.767ZM426.873 590.327C426.076 589.722 424.939 589.878 424.334 590.675C423.729 591.472 423.885 592.609 424.682 593.214C435.018 601.06 443.402 611.188 449.179 622.808C454.956 634.428 457.971 647.226 457.987 660.203C457.989 661.204 458.801 662.014 459.802 662.012C460.802 662.011 461.613 661.199 461.611 660.198C461.594 646.663 458.45 633.315 452.424 621.195C446.398 609.075 437.654 598.511 426.873 590.327Z" fill="white"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M773.94 565.776C773.833 564.492 773.725 563.195 773.48 561.956C773.325 561.103 773.072 560.27 772.725 559.475C770.019 553.338 761.873 552.372 755.173 552.299C753.486 552.276 751.803 552.259 750.119 552.241C748.861 552.228 747.603 552.215 746.342 552.199C729.566 552.026 712.795 551.849 696.028 551.668L682.559 551.523C678.27 551.475 673.897 551.439 669.778 552.659C666.103 553.622 662.911 555.906 660.815 559.074C660.546 559.533 660.308 560.009 660.102 560.499C659.577 561.755 659.289 563.105 659.002 564.45C658.594 566.365 658.188 568.269 657.102 569.873C655.721 571.771 653.677 573.082 651.376 573.545C649.102 574.054 646.761 574.197 644.442 573.968C641.741 573.751 639.061 573.33 636.383 572.909C632.951 572.369 629.523 571.83 626.056 571.721C619.883 571.528 613.263 572.965 609.035 577.459C605.206 581.518 603.961 587.328 603.297 592.873C602.115 602.765 602.245 612.769 603.684 622.626L603.068 623.58C634.165 643.49 670.374 653.942 707.298 653.667C744.221 653.393 780.27 642.403 811.068 622.033C813.737 613.927 812.457 594.635 807.637 587.677C805.31 584.382 802.296 581.63 798.803 579.611C795.31 577.592 791.42 576.355 787.403 575.983C786.956 575.945 786.497 575.91 786.05 575.897C785.541 575.88 785.022 575.874 784.5 575.867C781.757 575.835 778.92 575.802 776.85 574.097C774.469 572.121 774.208 568.986 773.94 565.776ZM791.774 584.732C790.9 584.245 789.796 584.56 789.309 585.434C788.823 586.308 789.137 587.412 790.011 587.899C798.828 592.808 803.091 604.722 799.392 614.11C799.025 615.041 799.482 616.093 800.413 616.46C801.344 616.827 802.397 616.37 802.763 615.439C807.128 604.361 802.178 590.525 791.774 584.732Z" fill="#171717"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M479.487 387.109L478.351 386.288C441.533 363.697 398.637 353.025 355.526 355.733C355.368 357.434 354.755 359.062 353.75 360.444C350.948 364.14 345.657 364.599 341.018 364.732C307.346 365.73 273.671 366.725 239.992 367.716C236.38 367.825 232.393 367.813 229.627 365.469C228.84 364.798 228.188 363.983 227.706 363.069L225.706 364.084C193.004 371.045 162.84 386.848 138.5 409.771C161.157 433.072 188.606 451.173 218.948 462.821C249.29 474.468 281.801 479.385 314.23 477.229C346.659 475.074 378.233 465.899 406.767 450.338C435.301 434.778 460.113 413.204 479.487 387.109ZM365.952 368.113C396.402 367.844 426.497 374.663 453.858 388.029C454.757 388.468 455.842 388.095 456.282 387.196C456.721 386.297 456.348 385.212 455.449 384.773C427.583 371.16 396.932 364.216 365.92 364.489C364.919 364.498 364.115 365.316 364.124 366.317C364.132 367.317 364.951 368.121 365.952 368.113Z" fill="#171717"/>
|
||||||
|
<path d="M787.456 575.501L787.408 575.983C786.961 575.947 786.502 575.911 786.055 575.898C782.866 575.789 779.314 576.127 776.85 574.098C773.516 571.332 774.337 566.298 773.48 561.957C776.344 561.764 779.21 561.575 782.08 561.389C784.774 561.208 787.794 561.135 789.787 562.959C791.623 564.65 791.949 567.525 791.225 569.918C790.501 572.311 788.999 573.542 787.456 575.501Z" fill="#171717"/>
|
||||||
|
<path d="M769.893 446.47C782.408 450.843 789.463 466.67 784.365 478.905C779.267 491.14 763.032 497.255 751.121 491.42L749.2 491.408C749.381 473.748 748.962 456.095 747.944 438.449C747.57 431.914 746.978 425.004 743.144 419.689C739.194 414.217 732.526 411.475 726.075 409.481C704.163 402.75 680.924 401.559 658.439 406.014C658.475 411.014 658.511 416.011 658.548 421.005C650.793 422.926 642.24 422.43 635.248 418.541C628.205 414.627 623.048 407.029 623.107 398.971C623.166 390.913 629.107 382.989 637.047 381.612C632.916 372.54 631.176 361.873 634.764 352.571C638.352 343.269 648.27 336.071 658.091 337.771C667.513 339.414 673.928 347.971 679.34 355.842C678.591 346.057 686.516 336.647 696.168 334.859C705.82 333.071 716.124 338.448 721.005 346.975C725.886 355.502 725.511 366.534 720.92 375.219C727.685 370.785 735.742 367.91 743.8 368.587C751.858 369.264 759.794 373.939 763.092 381.319C766.39 388.699 763.998 398.557 756.979 402.579C768.262 399.874 781.018 407.254 784.292 418.392C787.566 429.53 780.837 442.641 769.893 446.47Z" fill="white"/>
|
||||||
|
<path d="M660.109 560.494C658.841 563.538 658.961 567.138 657.109 569.868C655.728 571.766 653.684 573.077 651.383 573.54L651.298 573.226C649.571 572.826 645.098 572.296 643.555 571.414C642.761 571.008 642.063 570.439 641.505 569.744C640.947 569.048 640.542 568.242 640.318 567.379C639.811 564.879 641.518 562.33 643.749 561.109C646.073 560.028 648.636 559.566 651.19 559.768C653.734 559.963 656.292 559.865 658.813 559.478L660.813 559.067C660.548 559.527 660.313 560.004 660.109 560.494Z" fill="#171717"/>
|
||||||
|
<path d="M310.728 118.412C312.021 110.572 313.567 102.466 318.447 96.2207C323.496 89.7697 333.342 86.2667 340.119 90.8817C344.819 94.0817 346.751 100.292 346.232 105.958C345.713 111.624 343.14 116.866 340.409 121.858C345.374 115.878 350.532 109.758 357.43 106.158C364.328 102.558 373.46 102.111 379.367 107.173C386.18 113.032 386.132 124.109 381.723 131.937C377.314 139.765 369.623 145.092 362.202 150.154L363.845 151.422C368.061 152.437 372.422 150.89 376.71 150.19C380.998 149.49 386.181 150.045 388.452 153.754C390.723 157.438 388.742 162.56 385.263 165.133C381.784 167.706 377.278 168.358 372.963 168.833C368.163 169.352 363.371 169.727 358.551 170.005C327.143 171.817 295.42 169.405 264.23 173.714C256.438 174.789 247.886 176.782 243.43 183.257C239.697 188.657 239.83 195.736 240.12 202.295C241.014 223.242 241.912 244.185 242.814 265.124L241.703 265.172C238.055 274.063 224.863 277.107 217.676 270.717C211.032 264.817 211.781 252.899 218.546 247.427C219.198 247.103 219.804 246.693 220.346 246.207C219.711 246.56 219.109 246.968 218.546 247.427C212.276 250.737 203.059 246.727 200.846 239.684C198.539 232.291 203.105 223.932 210.015 220.384C210.355 220.249 210.686 220.091 211.006 219.913C210.668 220.058 210.342 220.213 210.015 220.384C204.7 222.584 197.923 219.744 195.06 214.658C192.028 209.246 192.934 202.215 196.22 196.936C199.506 191.657 204.82 187.948 210.426 185.279C204.326 182.742 201.571 174.951 203.371 168.596C205.171 162.241 210.583 157.41 216.611 154.696C222.639 151.982 229.283 151.084 235.83 150.202C234.115 142.664 234.042 134.534 237.062 127.407C240.082 120.28 246.562 114.385 254.228 113.382C260.836 112.512 267.987 115.931 271.068 121.693C271.366 122.706 271.75 123.692 272.216 124.641C271.955 123.615 271.569 122.625 271.068 121.693C270.159 118.776 269.917 115.692 270.36 112.669C270.803 109.646 271.92 106.761 273.628 104.228C275.337 101.695 277.592 99.5785 280.229 98.0345C282.865 96.4905 285.815 95.5588 288.86 95.3083C291.905 95.0577 294.967 95.4947 297.82 96.587C300.673 97.6793 303.245 99.399 305.344 101.619C307.443 103.839 309.017 106.502 309.948 109.412C310.879 112.322 311.145 115.403 310.725 118.43L310.728 118.412Z" fill="white"/>
|
||||||
|
<path d="M355.533 355.736C355.376 357.438 354.763 359.065 353.757 360.447C350.957 364.147 345.663 364.603 341.025 364.735C307.359 365.726 273.683 366.721 239.999 367.719C236.387 367.828 232.399 367.819 229.634 365.472C228.848 364.801 228.196 363.987 227.713 363.072C226.263 360.366 226.094 356.863 226.07 353.686C226.022 348.733 226.142 343.309 229.344 339.528C232.992 335.24 239.262 334.599 244.879 334.285H245.737C260.112 334.225 274.753 332.727 289.008 331.085C297.367 330.233 305.774 329.951 314.171 330.239C321.649 330.396 329.126 330.722 336.471 330.758C340.288 330.782 344.335 330.867 347.571 332.884C352.488 335.94 353.937 342.306 354.964 347.996C355.518 350.537 355.71 353.142 355.533 355.736Z" fill="#171717"/>
|
||||||
|
<path d="M331.578 786.851C331.34 800.965 334.223 814.957 340.022 827.827C342.897 834.157 346.522 840.257 351.546 845.077C356.57 849.897 363.107 853.34 370.053 853.714C380.116 854.27 389.816 848.157 395.276 839.689C400.736 831.221 402.391 820.747 401.799 810.689C401.207 800.631 398.489 790.829 395.807 781.117L395.747 779.437C418.132 778.527 440.16 785.258 458.213 798.524C467.318 805.342 475.149 813.713 481.346 823.252C490.006 836.445 495.352 851.534 496.929 867.236L498.173 868.625C463.174 900.33 418.065 918.594 370.867 920.168C323.669 921.743 277.442 906.526 240.408 877.225L240.908 876.608C242.303 864.964 246.17 853.753 252.251 843.726C259.135 832.35 268.03 822.32 278.501 814.126C294.201 801.732 312.519 793.191 331.46 786.526L331.578 786.851Z" fill="#171717"/>
|
||||||
|
<path d="M297.3 252.561C301.984 253.243 306.763 252.422 310.951 250.217C307.713 234.065 304.476 217.914 301.239 201.764C300.454 197.886 299.739 193.61 301.71 190.179C304.09 186.036 309.441 184.767 314.225 184.465C323.455 183.893 332.694 185.422 341.248 188.935" stroke="white" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M316.031 206.1C318.884 204.681 322.027 203.943 325.214 203.945C328.4 203.947 331.542 204.689 334.393 206.112" stroke="white" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M288.138 208.033C286.651 206.594 284.886 205.473 282.95 204.739C281.015 204.006 278.95 203.675 276.883 203.768C274.815 203.861 272.788 204.375 270.926 205.279C269.064 206.183 267.407 207.457 266.055 209.024" stroke="white" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M286.966 280.526C285.132 281.249 283.173 281.597 281.202 281.551C279.232 281.505 277.29 281.066 275.492 280.259C273.694 279.452 272.076 278.293 270.732 276.852C269.388 275.41 268.345 273.714 267.666 271.864" stroke="white" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M314.2 328.69C313.33 323.979 312.46 319.207 312.811 314.435C313.162 309.663 314.853 304.807 318.392 301.594C324.082 296.424 332.973 296.605 339.315 292.256C347.529 286.627 349.148 275.38 350.042 265.462C352.881 233.74 355.724 202.021 358.571 170.307" stroke="white" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M245.737 333.231C244.759 310.532 243.784 287.826 242.814 265.111C241.92 244.164 241.022 223.221 240.12 202.282C239.83 195.723 239.697 188.644 243.43 183.244C247.888 176.769 256.44 174.776 264.23 173.701C295.421 169.388 327.143 171.801 358.551 169.992C363.371 169.714 368.167 169.34 372.963 168.82C377.276 168.349 381.769 167.697 385.263 165.12C388.757 162.543 390.723 157.425 388.452 153.741C386.181 150.032 380.999 149.477 376.71 150.177C372.421 150.877 368.061 152.424 363.845 151.409" stroke="white" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M218.545 247.414C211.78 252.886 211.031 264.814 217.675 270.704C224.863 277.094 238.054 274.05 241.702 265.159" stroke="white" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M218.545 247.414C219.197 247.091 219.803 246.681 220.345 246.194C219.71 246.547 219.108 246.955 218.545 247.414Z" stroke="white" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M210.015 220.367C203.105 223.919 198.539 232.278 200.846 239.667C203.057 246.71 212.274 250.72 218.546 247.41" stroke="white" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M210.016 220.367C210.356 220.232 210.687 220.075 211.007 219.896C210.668 220.041 210.342 220.2 210.016 220.367Z" stroke="white" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M271.069 121.672C267.989 115.91 260.837 112.491 254.229 113.361C246.558 114.361 240.083 120.271 237.063 127.386C234.043 134.501 234.115 142.643 235.831 150.186C229.284 151.068 222.631 151.962 216.612 154.68C210.593 157.398 205.172 162.23 203.372 168.58C201.572 174.93 204.326 182.726 210.427 185.263C204.827 187.933 199.507 191.653 196.221 196.92C192.935 202.187 192.029 209.23 195.061 214.642C197.924 219.728 204.701 222.567 210.016 220.368" stroke="white" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M271.068 121.672C271.366 122.685 271.75 123.672 272.216 124.62C271.955 123.594 271.569 122.604 271.068 121.672Z" stroke="white" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M310.728 118.411C311.15 115.384 310.887 112.3 309.956 109.388C309.026 106.476 307.453 103.81 305.354 101.588C303.254 99.3665 300.682 97.6451 297.827 96.5515C294.972 95.4579 291.908 95.0202 288.862 95.2707C285.815 95.5213 282.863 96.4536 280.226 97.9988C277.588 99.544 275.332 101.662 273.623 104.197C271.915 106.733 270.798 109.619 270.356 112.644C269.914 115.669 270.158 118.754 271.069 121.672" stroke="white" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M362.2 150.146C369.617 145.084 377.3 139.746 381.721 131.929C386.142 124.112 386.179 113.029 379.365 107.165C373.458 102.103 364.313 102.55 357.428 106.15C350.543 109.75 345.372 115.874 340.407 121.85C343.137 116.861 345.707 111.606 346.23 105.95C346.753 100.294 344.817 94.0746 340.117 90.8736C333.34 86.2586 323.495 89.7626 318.445 96.2126C313.565 102.458 312.018 110.564 310.726 118.404C310.678 118.682 310.641 118.96 310.593 119.238" stroke="white" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M245.737 334.283H244.879C239.262 334.597 232.992 335.237 229.344 339.526C226.144 343.307 226.022 348.731 226.07 353.684C226.094 356.861 226.263 360.364 227.713 363.07C228.195 363.984 228.847 364.799 229.634 365.47C232.4 367.814 236.387 367.826 239.999 367.717C273.678 366.725 307.353 365.731 341.025 364.733C345.664 364.6 350.955 364.141 353.757 360.445C354.762 359.063 355.376 357.435 355.533 355.734C355.711 353.139 355.52 350.532 354.965 347.991C353.938 342.301 352.489 335.935 347.572 332.879C344.335 330.862 340.288 330.779 336.472 330.753C329.127 330.716 321.65 330.391 314.172 330.233C305.775 329.943 297.368 330.226 289.009 331.08C274.753 332.725 260.112 334.223 245.737 334.283Z" stroke="white" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M138.079 410.169C138.224 410.036 138.357 409.903 138.502 409.769C162.842 386.846 193.006 371.043 225.708 364.082" stroke="white" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M354.784 355.785C355.038 355.773 355.284 355.749 355.533 355.737C398.642 353.029 441.535 363.698 478.351 386.288" stroke="white" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M669.107 417.261C679.799 418.251 690.49 419.246 701.18 420.245C697.955 434.717 694.734 449.183 691.516 463.645C690.67 467.438 690.199 472.245 693.425 474.396C696.747 476.607 701.857 474.287 704.925 476.848" stroke="white" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M712.56 498.185C711.908 498.173 711.243 498.149 710.591 498.137C712.572 498.968 714.699 499.399 716.847 499.405C718.996 499.412 721.125 498.994 723.111 498.176C725.098 497.357 726.904 496.155 728.424 494.637C729.945 493.119 731.151 491.315 731.973 489.33" stroke="white" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M718.104 436.794C718.528 434.234 718.955 431.673 719.385 429.111" stroke="white" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M682.782 438.486C682.545 435.619 683.155 432.746 684.534 430.223" stroke="white" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M696.046 550.07C697.822 542.87 699.598 535.55 699.356 528.145C699.114 520.74 696.578 513.069 690.972 508.201C684.147 502.27 673.951 501.339 667.307 495.201C659.539 488.025 658.935 476.163 658.863 465.593C658.754 450.734 658.649 435.871 658.549 421.005C658.513 416.005 658.477 411.008 658.44 406.014C680.926 401.558 704.165 402.749 726.076 409.481C732.527 411.474 739.195 414.216 743.145 419.689C746.974 425.004 747.566 431.914 747.945 438.449C748.961 456.085 749.379 473.738 749.201 491.408C749.021 511.401 748.074 531.365 746.362 551.301" stroke="white" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M658.719 420.969L658.55 421.005C650.795 422.926 642.242 422.43 635.25 418.541C628.207 414.627 623.05 407.029 623.109 398.971C623.168 390.913 629.109 382.989 637.049 381.612C632.918 372.54 631.178 361.873 634.766 352.571C638.354 343.269 648.272 336.071 658.093 337.771C667.515 339.414 673.93 347.971 679.342 355.843C678.593 346.058 686.518 336.643 696.17 334.86C705.822 333.077 716.126 338.448 721.007 346.976C725.888 355.504 725.513 366.534 720.922 375.219C727.687 370.786 735.744 367.911 743.802 368.587C751.86 369.263 759.796 373.939 763.094 381.319C766.392 388.699 764 398.557 756.981 402.58C768.264 399.874 781.02 407.255 784.294 418.393C787.568 429.531 780.839 442.638 769.894 446.467C782.409 450.84 789.464 466.667 784.366 478.902C779.268 491.137 763.033 497.252 751.122 491.417" stroke="white" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M603.7 622.623C602.261 612.765 602.131 602.761 603.313 592.87C603.977 587.325 605.222 581.515 609.051 577.456C613.279 572.962 619.899 571.524 626.072 571.717C632.245 571.91 638.297 573.469 644.458 573.964C646.777 574.193 649.117 574.05 651.392 573.542C653.693 573.078 655.736 571.767 657.118 569.87C658.966 567.14 658.845 563.539 660.118 560.495C660.323 560.005 660.562 559.529 660.831 559.071C662.927 555.902 666.118 553.618 669.794 552.656C673.913 551.436 678.286 551.471 682.575 551.519L696.044 551.665C712.811 551.846 729.582 552.023 746.358 552.196C749.306 552.232 752.241 552.255 755.189 552.295C761.889 552.368 770.035 553.335 772.741 559.472C773.084 560.27 773.335 561.105 773.49 561.961C774.348 566.298 773.526 571.335 776.86 574.102C779.324 576.131 782.876 575.793 786.065 575.902C786.512 575.914 786.971 575.95 787.418 575.987C791.435 576.358 795.324 577.595 798.817 579.614C802.31 581.633 805.324 584.385 807.652 587.68C812.472 594.638 813.752 613.931 811.083 622.037C811.071 622.061 811.071 622.096 811.059 622.121" stroke="white" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M651.3 573.227C649.573 572.827 645.1 572.297 643.557 571.415C642.763 571.01 642.064 570.44 641.507 569.745C640.949 569.049 640.544 568.243 640.32 567.38C639.813 564.88 641.52 562.331 643.751 561.11C646.074 560.029 648.638 559.567 651.192 559.769C653.736 559.964 656.294 559.867 658.815 559.479" stroke="white" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M773.082 561.981C773.215 561.969 773.348 561.969 773.482 561.957C776.345 561.764 779.212 561.575 782.082 561.389C784.776 561.208 787.796 561.135 789.789 562.959C791.625 564.65 791.951 567.525 791.227 569.917C790.503 572.309 789 573.541 787.458 575.501" stroke="white" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M252.32 843.834L252.248 843.725C233.391 816.074 232.654 777.2 250.448 748.848C256.089 739.86 263.458 731.767 267.01 721.764C270.779 711.134 269.849 699.512 270.21 688.242C271.333 653.56 286.132 618.975 312.43 596.349C338.728 573.723 376.6 564.313 409.711 574.665C442.822 585.017 469.23 615.955 471.634 650.552C472.685 665.785 469.423 681.284 472.383 696.263C475.161 710.312 483.171 722.706 488.329 736.063C499.986 766.299 499.648 796.149 481.612 823.063" stroke="white" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M316.525 687.106C324.392 688.128 332.375 686.487 339.199 682.443C348.175 677.284 355.145 668.563 357.162 658.378C362.909 661.978 369.535 663.926 376.316 664.009C383.096 664.093 389.768 662.308 395.601 658.85C405.99 652.495 411.547 640.35 411.547 628.178C411.547 626.837 411.475 625.496 411.347 624.167" stroke="white" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M411.499 628.046C411.511 628.094 411.535 628.131 411.547 628.179C417.611 644.318 423.7 660.614 426.309 677.647C428.942 694.74 427.855 712.873 420.051 728.299C413.105 742.082 401.399 752.737 391.675 764.721C387.525 769.742 383.945 775.207 380.999 781.017C380.899 781.217 380.806 781.417 380.709 781.617C376.88 789.617 374.814 798.203 376.155 806.889" stroke="white" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M339.2 682.358V682.443C340.118 715.627 341.072 749.089 346.351 781.766C348.168 793.272 350.616 804.668 353.684 815.904C355.532 822.604 357.803 829.53 362.756 834.404C367.709 839.278 376.165 841.29 381.686 837.074C385.793 833.945 387.207 828.437 387.799 823.315C389.454 809 387.582 794.504 380.925 781.723" stroke="white" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M387.292 697.193C390.276 697.145 393.924 696.686 395.092 693.93C395.877 692.107 395.177 690.016 394.476 688.157C392.338 682.443 390.2 676.733 388.061 671.027" stroke="white" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M371.648 673.214C369.831 671.744 367.514 671.039 365.186 671.248C362.859 671.458 360.705 672.566 359.181 674.337" stroke="white" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M412.792 669.614C412.018 668.938 411.116 668.423 410.141 668.099C409.165 667.775 408.135 667.648 407.109 667.725C406.084 667.803 405.085 668.084 404.169 668.551C403.253 669.019 402.44 669.664 401.775 670.448" stroke="white" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M385.153 722.984C383.458 723.55 381.665 723.764 379.884 723.612C378.103 723.46 376.372 722.946 374.797 722.101C373.222 721.256 371.837 720.097 370.726 718.697C369.615 717.297 368.802 715.685 368.337 713.959" stroke="white" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M345.579 781.887C340.856 783.337 336.132 784.871 331.457 786.525C312.515 793.194 294.202 801.734 278.498 814.125C268.027 822.319 259.132 832.349 252.248 843.725C246.167 853.752 242.299 864.963 240.905 876.607" stroke="white" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M381.288 781.149C386.056 780.198 390.891 779.625 395.748 779.433C418.133 778.523 440.161 785.254 458.214 798.52C467.319 805.338 475.15 813.709 481.347 823.248C490.007 836.441 495.353 851.53 496.93 867.232" stroke="white" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M331.578 786.851C331.34 800.965 334.223 814.957 340.022 827.827C342.897 834.157 346.522 840.257 351.546 845.077C356.57 849.897 363.107 853.34 370.053 853.714C380.116 854.27 389.816 848.157 395.276 839.689C400.736 831.221 402.391 820.747 401.799 810.689C401.207 800.631 398.489 790.829 395.807 781.117" stroke="white" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M138.5 409.771C99.2414 369.403 77.2817 315.311 77.292 259C77.292 138.2 176.747 40.2783 299.421 40.2783C422.095 40.2783 521.55 138.2 521.55 259C521.589 305.103 506.846 350.003 479.487 387.109C460.113 413.204 435.3 434.778 406.767 450.338C378.233 465.899 346.659 475.074 314.23 477.229C281.801 479.385 249.29 474.468 218.948 462.821C188.606 451.173 161.157 433.073 138.5 409.771Z" stroke="white" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M240.41 877.222C216.78 858.562 197.69 834.786 184.575 807.683C171.46 780.581 164.662 750.857 164.692 720.748C164.692 610.541 254.023 521.209 364.23 521.209C474.437 521.209 563.758 610.541 563.758 720.748C563.755 758.242 553.189 794.976 533.27 826.742C513.351 858.507 484.885 884.017 451.136 900.35C417.386 916.682 379.717 923.175 342.447 919.084C305.177 914.994 269.814 900.485 240.41 877.222Z" stroke="white" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M603.078 623.577C576.149 606.344 553.994 582.608 538.654 554.558C523.314 526.508 515.284 495.047 515.304 463.077C515.304 357.823 600.626 272.501 705.88 272.501C811.134 272.501 896.468 357.823 896.468 463.077C896.466 497.277 887.263 530.847 869.823 560.266C852.382 589.686 827.347 613.87 797.343 630.284C767.339 646.698 733.471 654.736 699.291 653.556C665.111 652.376 631.878 642.021 603.078 623.577Z" stroke="white" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M333.894 806.732L348.229 800.238" stroke="white" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M339.91 826.888C343.803 823.864 348.031 821.298 352.51 819.24" stroke="white" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M353.053 846.435L362.543 836.521" stroke="white" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M374.36 852.918C374.446 848.866 374.53 844.814 374.614 840.762" stroke="white" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M385.059 834.117C388.541 835.317 392.135 836.167 395.786 836.655" stroke="white" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M388.784 819.311C392.595 817.342 396.671 815.934 400.884 815.129" stroke="white" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M387.7 798.853L397.909 796.615" stroke="white" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M374.189 853.366C376.133 874.848 377.633 896.364 378.689 917.915" stroke="white" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M324.608 856.101L320.33 848.221" stroke="white" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M317.514 856.711L327.542 849.903" stroke="white" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M451.084 865.866C448.368 863.835 445.762 861.66 443.277 859.353" stroke="white" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M444.392 867.877L443.97 867.909L450.302 857.787" stroke="white" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M434.782 819.456C432.1 817.248 429.611 814.816 427.341 812.187" stroke="white" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M428.125 820.69L434.718 809.939" stroke="white" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M412.941 894.838C410.109 892.716 407.482 890.333 405.095 887.721" stroke="white" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M412.824 886.101L405.899 895.901" stroke="white" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M345.259 904.935C349.239 901.023 352.77 896.678 355.785 891.981" stroke="white" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M354.943 904.21C351.937 900.664 348.931 897.119 345.926 893.573" stroke="white" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M274.066 867.419C275.709 864.665 277.601 862.067 279.718 859.657" stroke="white" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M279.686 866.701C277.239 864.566 275.132 862.071 273.438 859.301" stroke="white" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M758.737 572.375C758.603 568.751 758.473 565.127 758.345 561.502" stroke="white" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M742.277 572.169C742.704 568.702 742.704 565.196 742.277 561.729" stroke="white" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M725.274 571.113C725.759 567.791 725.906 564.429 725.714 561.077" stroke="white" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M708.454 570.033C708.544 566.833 708.634 563.633 708.723 560.433" stroke="white" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M691.147 569.426C691.94 566.938 692.179 564.308 691.847 561.719" stroke="white" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M673.817 570.243L674.225 561.289" stroke="white" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M703.463 580.315C702.833 580.042 702.122 580.022 701.477 580.259C700.833 580.496 700.304 580.972 700.001 581.588C699.699 582.205 699.645 582.914 699.851 583.569C700.057 584.224 700.507 584.774 701.109 585.106C701.71 585.438 702.416 585.525 703.08 585.351C703.744 585.176 704.315 584.752 704.675 584.167C705.035 583.583 705.156 582.882 705.013 582.21C704.87 581.538 704.474 580.948 703.907 580.56" stroke="white" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M739.7 580.316C739.07 580.042 738.358 580.021 737.713 580.257C737.067 580.494 736.538 580.969 736.234 581.586C735.931 582.202 735.876 582.912 736.082 583.568C736.287 584.224 736.737 584.775 737.339 585.108C737.94 585.44 738.647 585.529 739.311 585.354C739.976 585.18 740.548 584.756 740.909 584.171C741.27 583.586 741.391 582.885 741.249 582.213C741.106 581.54 740.71 580.949 740.143 580.561" stroke="white" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M701.969 582.395C698.932 585.919 698.269 590.98 698.958 595.58C699.647 600.18 701.527 604.501 703.073 608.888C704.619 613.275 705.857 617.936 705.198 622.541C704.539 627.146 701.573 631.684 697.098 632.955" stroke="white" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M738.287 583.176C741.764 586.305 744.408 590.251 745.979 594.658C747.551 599.064 748 603.792 747.287 608.416C746.749 611.678 745.629 614.827 745.187 618.103C744.745 621.379 745.087 624.965 747.144 627.549" stroke="white" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M337.865 364.308C337.616 353.508 337.367 342.708 337.119 331.908" stroke="white" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M317.473 365.168C317.904 353.986 318.335 342.804 318.767 331.623" stroke="white" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M296.637 365.446C296.3 354.454 295.963 343.462 295.625 332.471" stroke="white" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M272.732 366.014C272.175 355.128 271.927 344.232 271.987 333.326" stroke="white" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M251.273 366.585L251.117 336.171" stroke="white" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M237.42 366.3C237.138 356.446 236.854 346.593 236.57 336.739" stroke="white" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M418.69 403.494C419.002 402.492 419.112 401.438 419.012 400.394C418.913 399.349 418.606 398.335 418.111 397.41C417.615 396.485 416.94 395.668 416.126 395.007C415.311 394.345 414.373 393.852 413.366 393.557C410.655 392.891 407.837 393.757 405.118 394.388C402.399 395.019 399.34 395.38 396.988 393.875C394.406 392.223 393.543 388.913 392.946 385.906" stroke="white" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M370.677 450.054C371.671 448.68 372.144 446.997 372.011 445.306C371.878 443.616 371.149 442.027 369.953 440.825C368.539 439.488 366.622 438.802 365.139 437.542C363.656 436.282 362.694 433.942 363.896 432.416" stroke="white" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M312.121 426.143C311.111 424.231 310.371 422.189 309.921 420.074C309.702 419.014 309.703 417.92 309.925 416.86C310.146 415.801 310.584 414.798 311.209 413.915C312.3 412.535 313.946 411.722 315.254 410.545C316.502 409.393 317.418 407.928 317.909 406.303C318.4 404.678 318.448 402.951 318.047 401.301" stroke="white" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M255.107 449.005C254.545 446.477 252.949 444.326 251.755 442.028C250.561 439.73 249.764 436.928 250.882 434.591C251.853 432.561 254 431.418 255.627 429.862C256.986 428.536 257.997 426.895 258.57 425.084C259.144 423.274 259.261 421.349 258.913 419.482" stroke="white" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M218.715 411.522C218.197 409.465 218.034 407.334 218.232 405.222C218.343 404.167 218.718 403.157 219.322 402.284C219.926 401.412 220.74 400.705 221.688 400.23C222.908 399.721 224.288 399.752 225.546 399.352C226.673 398.918 227.686 398.232 228.507 397.347C229.329 396.462 229.938 395.401 230.287 394.245C230.967 391.93 231.285 389.524 231.231 387.112" stroke="white" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M173.73 417.408C173.462 415.682 173.431 413.928 173.638 412.194C173.746 411.326 174.029 410.49 174.47 409.735C174.91 408.98 175.499 408.322 176.2 407.801C177.502 407.134 178.878 406.622 180.3 406.276C181.782 405.715 183.11 404.81 184.174 403.635C185.237 402.46 186.006 401.049 186.417 399.519" stroke="white" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M394.856 183.437L414.637 161.917" stroke="white" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M397.857 199.408C417.062 196.387 435.915 191.451 454.135 184.673" stroke="white" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M392.5 217.511C397.54 222.505 403.581 226.375 410.224 228.866" stroke="white" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M206.029 122.98C208.441 118.856 210.852 114.732 213.263 110.607" stroke="white" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M214.775 122.86C211.737 118.302 207.861 114.364 203.353 111.255" stroke="white" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M183.132 168.987L175.394 153.243" stroke="white" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M171.043 168.146C175.344 163.436 180.236 159.301 185.597 155.846" stroke="white" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M611.573 430.8C610.183 427.068 608.13 423.618 605.513 420.617" stroke="white" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M603.763 430.324L612.663 420.892" stroke="white" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M616.892 481.893C611.59 479.283 606.655 475.986 602.214 472.087" stroke="white" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M603.425 486.254L615.159 464.631" stroke="white" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M503.138 797.029C508.852 783.262 509.466 767.908 504.871 753.729" stroke="white" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M228.056 778.337C229.581 766.659 234.169 755.592 241.356 746.262" stroke="white" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M274.266 607.76C276.717 604.024 279.91 600.831 283.646 598.38" stroke="white" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M281.647 610.244L273.547 595.744" stroke="white" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M243.477 632.485C243.725 626.799 243.972 621.112 244.22 615.426" stroke="white" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M233.755 625.147L252.526 623.571" stroke="white" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M154.663 764.138C150.128 754.261 147.652 743.563 147.387 732.697C147.122 721.831 149.074 711.025 153.123 700.938" stroke="white" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M852.6 611.328C873.999 592.367 889.858 567.958 898.488 540.7" stroke="white" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M86.4228 375.269C71.5493 354.272 62.9912 329.459 61.7578 303.758" stroke="white" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M604.136 134.368C593.151 144.855 586.275 158.921 584.745 174.03C583.71 184.655 586.473 197.079 595.939 202.014C604.629 206.544 616.81 201.729 620.054 192.482C621.237 189.111 621.129 184.882 618.447 182.52C615.147 179.611 609.853 181.048 606.295 183.64C602.513 186.489 599.632 190.367 597.995 194.809C596.358 199.252 596.034 204.072 597.063 208.693C598.863 216.218 604.12 222.364 609.197 228.203C614.274 234.042 619.509 240.213 621.258 247.75C623.007 255.287 619.971 264.541 612.683 267.142" stroke="white" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M141.938 473.322C156.432 476.629 167.557 491.034 167.094 505.893C166.631 520.752 154.629 534.436 139.958 536.833C134.042 537.8 127.389 536.856 123.195 532.573C119.001 528.29 118.752 520.146 123.757 516.846C129.343 513.163 137.057 517.469 140.6 523.146C146.842 533.123 145.585 546.261 140.983 557.093C136.381 567.925 128.859 577.2 122.539 587.129C116.219 597.058 110.927 608.349 111.676 620.094" stroke="white" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M617.8 794.254C630.075 771.203 649.844 753.028 673.843 742.729C680.582 739.863 689.656 738.198 694.174 743.961C696.89 747.426 696.711 752.49 694.885 756.495C693.059 760.5 689.86 763.689 686.727 766.782C683.881 769.592 680.88 772.498 677.06 773.682C673.24 774.866 668.37 773.703 666.678 770.082C664.431 765.268 668.766 760.061 672.908 756.734C690.913 742.315 712.358 732.825 735.138 729.195" stroke="white" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M563.762 134.931C562.909 130.664 562.057 126.4 561.204 122.14" stroke="white" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M553.494 131.408L572.244 125.408" stroke="white" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M101.7 508.389C100.052 502.483 98.4035 496.577 96.7549 490.672" stroke="white" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M89.0566 505.46L106 495.881" stroke="white" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M719.855 782.183C724.012 777.575 726.922 771.981 728.309 765.933" stroke="white" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M716.426 773.534L733.439 779.617" stroke="white" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M673.762 712.218C673.955 706.567 675.412 701.031 678.026 696.018" stroke="white" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M665.23 704.791L682.28 705.062" stroke="white" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<g opacity="0.1">
|
||||||
|
<path d="M320.259 171.334C315.082 170.502 309.842 170.134 304.6 170.234C300.026 170.442 295.479 170.915 290.9 170.971C281.671 171.083 271.971 171.256 262.836 172.533C255.647 173.539 248.456 177.479 244.325 183.581C240.072 189.862 240.033 198.53 240.198 205.847C241.082 244.969 244.389 284.103 246.764 323.16C247.548 336.048 267.709 336.137 266.92 323.16C264.766 287.737 263.509 252.119 260.232 216.783C259.601 209.973 258.009 202.383 258.932 195.538C259.174 193.731 259.599 190.719 260.68 189.297C262.28 187.197 267.274 186.425 269.688 185.804C286.688 181.429 304.176 179.852 320.5 173.081C320.697 173.013 320.865 172.88 320.974 172.702C321.084 172.525 321.128 172.315 321.1 172.108C321.072 171.902 320.973 171.711 320.821 171.57C320.668 171.428 320.471 171.343 320.263 171.331L320.259 171.334Z" fill="white"/>
|
||||||
|
</g>
|
||||||
|
<g opacity="0.1">
|
||||||
|
<path d="M229.38 338.208C227.588 343.539 227.18 349.14 226.699 354.716C226.445 357.662 226.336 360.656 225.936 363.585C225.928 364.377 225.789 365.162 225.525 365.908C225.794 365.414 226.563 365.078 225.606 365.473C221.616 367.119 216.492 367.195 212.271 368.186C207.433 369.322 202.633 370.666 197.924 372.256C188.771 375.337 179.933 379.285 171.532 384.046C163.058 388.865 155.8 395.058 147.791 400.518C142.712 403.98 140.94 410.541 144.898 415.671C148.388 420.193 156.226 421.487 160.288 416.714C166.796 409.069 176.071 403.314 184.74 398.429C193.662 393.351 203.16 389.359 213.032 386.539C222.37 383.915 235.332 384.265 240.832 374.853C243.871 369.653 243.314 363.461 243.313 357.673C243.313 351.116 243.462 344.622 241.901 338.208C240.308 331.665 231.326 332.419 229.38 338.208Z" fill="white"/>
|
||||||
|
</g>
|
||||||
|
<g opacity="0.1">
|
||||||
|
<path d="M354.883 663.336C354.936 668.836 351.645 671.271 348.352 675.062C345.381 678.413 342.782 682.076 340.599 685.987C335.21 695.855 337.125 707.577 337.532 718.415C338.412 741.861 340.483 765.262 342.178 788.662L349.508 779.034C326.164 783.728 304.214 793.731 285.355 808.269C275.942 815.376 267.353 823.514 259.749 832.532C255.677 837.408 251.892 842.516 248.412 847.832C245.062 852.987 241.091 858.732 239.99 864.86C239.196 869.276 240.516 873.76 244.578 876.135C248.22 878.266 253.791 877.88 256.678 874.574C260.57 870.118 262.829 864.794 265.851 859.751C268.438 855.385 271.282 851.178 274.368 847.151C281.072 838.488 288.817 830.685 297.428 823.917C314.203 810.857 333.895 802.064 354.816 798.291C358.823 797.553 362.447 792.724 362.146 788.663C360.409 765.242 359.046 741.763 356.495 718.416C355.905 713.005 355.315 707.594 354.689 702.188C354.15 697.537 352.689 691.718 353.663 687.158C354.52 683.13 357.217 679.299 358.763 675.472C360.394 671.435 361.858 667.772 361.446 663.337C361.062 659.209 354.846 659.036 354.883 663.336Z" fill="white"/>
|
||||||
|
</g>
|
||||||
|
<g opacity="0.1">
|
||||||
|
<path d="M661.077 407.05C658.613 413.688 659.339 421.965 658.715 428.991C658.033 436.672 657.315 444.364 656.761 452.055C655.946 463.355 658.136 476.84 663.487 486.933C666.235 492.117 670.451 497.149 675.618 500.039C680.649 502.853 686.258 504.515 691.278 507.416C704.504 515.057 699.545 531.995 693.055 542.804C688.175 550.931 702.547 557.076 704.964 547.825C708.464 534.425 714.182 521.025 706.807 507.662C704.024 502.62 699.707 498.552 695.177 495.112C690.464 491.64 686.071 487.754 682.049 483.499C678.163 479.305 674.849 474.749 673.209 469.242C671.656 463.623 670.642 457.868 670.181 452.056C669.416 444.356 670.141 436.696 670.287 428.992C670.425 421.726 671.112 412.611 667.075 406.267C666.737 405.727 666.251 405.296 665.674 405.024C665.098 404.752 664.455 404.652 663.823 404.734C663.192 404.817 662.597 405.079 662.109 405.49C661.622 405.901 661.263 406.443 661.075 407.051L661.077 407.05Z" fill="white"/>
|
||||||
|
</g>
|
||||||
|
<g opacity="0.1">
|
||||||
|
<path d="M674.989 553.819C667.708 550.713 661.238 559.877 658.979 565.576C657.094 570.332 655.613 574.876 649.756 574.736C644.162 574.603 638.681 572.136 633.2 571.181C623.057 569.413 610.326 572.564 605.443 582.508C600.143 593.308 603.918 604.36 601.875 615.616C599.657 627.848 616.475 632.694 620.588 620.775C623.888 611.204 619.888 601.381 621.765 591.747C622.173 589.942 622.824 588.202 623.7 586.573C624.374 585.245 624.417 585.931 624.044 586.134C625.034 585.669 626.091 585.365 627.175 585.234C631.936 584.44 636.537 585.795 641.175 586.652C649.991 588.281 659.48 587.617 664.521 579.079C666.633 575.501 667.431 571.404 668.405 567.423C668.802 565.272 669.347 563.152 670.036 561.077C671.127 558.339 672.707 557.319 674.985 555.767C675.599 555.348 675.828 554.184 674.985 553.824L674.989 553.819Z" fill="white"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<defs>
|
||||||
|
<clipPath id="clip0_1_5616">
|
||||||
|
<rect width="960" height="960" fill="white"/>
|
||||||
|
</clipPath>
|
||||||
|
</defs>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 44 KiB |
|
@ -0,0 +1,151 @@
|
||||||
|
<svg width="960" height="960" viewBox="0 0 960 960" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<g clip-path="url(#clip0_46_113)">
|
||||||
|
<g clip-path="url(#clip1_46_113)">
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M346.351 781.767C341.072 749.09 340.118 715.628 339.2 682.444C348.176 677.286 355.146 668.564 357.162 658.37C362.908 661.969 369.535 663.918 376.315 664.001C383.095 664.084 389.768 662.299 395.601 658.841C405.99 652.487 411.547 640.347 411.547 628.17C417.609 644.309 423.7 660.605 426.309 677.638C428.942 694.731 427.851 712.864 420.051 728.29C415.157 738.001 407.9 746.159 400.639 754.323C397.593 757.747 394.548 761.171 391.675 764.712C387.523 769.734 383.942 775.2 380.996 781.012L381.286 781.145C386.053 780.194 390.888 779.62 395.746 779.43C418.13 778.52 440.158 785.251 458.212 798.517C467.317 805.335 475.147 813.706 481.345 823.245L481.611 823.064C499.647 796.15 499.985 766.3 488.328 736.064C486.497 731.325 484.308 726.707 482.121 722.093C478.144 713.704 474.174 705.328 472.382 696.264C470.634 687.421 471.055 678.396 471.477 669.352C471.77 663.077 472.063 656.792 471.633 650.553C469.229 615.955 442.821 585.018 409.71 574.666C376.599 564.314 338.727 573.724 312.429 596.35C286.131 618.976 271.332 653.561 270.209 688.243C270.131 690.672 270.113 693.118 270.095 695.567C270.03 704.477 269.965 713.426 267.009 721.765C264.57 728.631 260.333 734.598 256.091 740.572C254.154 743.3 252.215 746.03 250.447 748.848C232.653 777.2 233.39 816.075 252.247 843.726C259.13 832.35 268.025 822.32 278.497 814.126C294.201 801.735 312.514 793.194 331.456 786.526C336.131 784.871 340.855 783.338 345.578 781.887L346.351 781.767ZM426.873 590.327C426.076 589.722 424.939 589.878 424.334 590.675C423.729 591.472 423.885 592.609 424.682 593.214C435.018 601.06 443.402 611.188 449.179 622.808C454.956 634.428 457.971 647.226 457.987 660.203C457.989 661.204 458.801 662.014 459.802 662.012C460.802 662.011 461.613 661.199 461.611 660.198C461.594 646.663 458.45 633.315 452.424 621.195C446.398 609.075 437.654 598.511 426.873 590.327Z" fill="#171717"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M773.94 565.776C773.833 564.492 773.725 563.195 773.48 561.956C773.325 561.103 773.072 560.27 772.725 559.475C770.019 553.338 761.873 552.372 755.173 552.299C753.486 552.276 751.803 552.259 750.119 552.241C748.861 552.228 747.603 552.215 746.342 552.199C729.566 552.026 712.795 551.849 696.028 551.668L682.559 551.523C678.27 551.475 673.897 551.439 669.778 552.659C666.103 553.622 662.911 555.906 660.815 559.074C660.546 559.533 660.308 560.009 660.102 560.499C659.577 561.755 659.289 563.105 659.002 564.45C658.594 566.365 658.188 568.269 657.102 569.873C655.721 571.771 653.677 573.082 651.376 573.545C649.102 574.054 646.761 574.197 644.442 573.968C641.741 573.751 639.061 573.33 636.383 572.909C632.951 572.369 629.523 571.83 626.056 571.721C619.883 571.528 613.263 572.965 609.035 577.459C605.206 581.518 603.961 587.328 603.297 592.873C602.115 602.765 602.245 612.769 603.684 622.626L603.068 623.58C634.165 643.49 670.374 653.942 707.298 653.667C744.221 653.393 780.27 642.403 811.068 622.033C813.737 613.927 812.457 594.635 807.637 587.677C805.31 584.382 802.296 581.63 798.803 579.611C795.31 577.592 791.42 576.355 787.403 575.983C786.956 575.945 786.497 575.91 786.05 575.897C785.541 575.88 785.022 575.874 784.5 575.867C781.757 575.835 778.92 575.802 776.85 574.097C774.469 572.121 774.208 568.986 773.94 565.776ZM791.774 584.732C790.9 584.245 789.796 584.56 789.309 585.434C788.823 586.308 789.137 587.412 790.011 587.899C798.828 592.808 803.091 604.722 799.392 614.11C799.025 615.041 799.482 616.093 800.413 616.46C801.344 616.827 802.397 616.37 802.763 615.439C807.128 604.361 802.178 590.525 791.774 584.732Z" fill="white"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M479.487 387.109L478.351 386.288C441.533 363.697 398.637 353.025 355.526 355.733C355.368 357.434 354.755 359.062 353.75 360.444C350.948 364.14 345.657 364.599 341.018 364.732C307.346 365.73 273.671 366.725 239.992 367.716C236.38 367.825 232.393 367.813 229.627 365.469C228.84 364.798 228.188 363.983 227.706 363.069L225.706 364.084C193.004 371.045 162.84 386.848 138.5 409.771C161.157 433.072 188.606 451.173 218.948 462.821C249.29 474.468 281.801 479.385 314.23 477.229C346.659 475.074 378.233 465.899 406.767 450.338C435.301 434.778 460.113 413.204 479.487 387.109ZM365.952 368.113C396.402 367.844 426.497 374.663 453.858 388.029C454.757 388.468 455.842 388.095 456.282 387.196C456.721 386.297 456.348 385.212 455.449 384.773C427.583 371.16 396.932 364.216 365.92 364.489C364.919 364.498 364.115 365.316 364.124 366.317C364.132 367.317 364.951 368.121 365.952 368.113Z" fill="white"/>
|
||||||
|
<path d="M787.456 575.501L787.408 575.983C786.961 575.947 786.502 575.911 786.055 575.898C782.866 575.789 779.314 576.127 776.85 574.098C773.516 571.332 774.337 566.298 773.48 561.957C776.344 561.764 779.21 561.575 782.08 561.389C784.774 561.208 787.794 561.135 789.787 562.959C791.623 564.65 791.949 567.525 791.225 569.918C790.501 572.311 788.999 573.542 787.456 575.501Z" fill="white"/>
|
||||||
|
<path d="M769.893 446.47C782.408 450.843 789.463 466.67 784.365 478.905C779.267 491.14 763.032 497.255 751.121 491.42L749.2 491.408C749.381 473.748 748.962 456.095 747.944 438.449C747.57 431.914 746.978 425.004 743.144 419.689C739.194 414.217 732.526 411.475 726.075 409.481C704.163 402.75 680.924 401.559 658.439 406.014C658.475 411.014 658.511 416.011 658.548 421.005C650.793 422.926 642.24 422.43 635.248 418.541C628.205 414.627 623.048 407.029 623.107 398.971C623.166 390.913 629.107 382.989 637.047 381.612C632.916 372.54 631.176 361.873 634.764 352.571C638.352 343.269 648.27 336.071 658.091 337.771C667.513 339.414 673.928 347.971 679.34 355.842C678.591 346.057 686.516 336.647 696.168 334.859C705.82 333.071 716.124 338.448 721.005 346.975C725.886 355.502 725.511 366.534 720.92 375.219C727.685 370.785 735.742 367.91 743.8 368.587C751.858 369.264 759.794 373.939 763.092 381.319C766.39 388.699 763.998 398.557 756.979 402.579C768.262 399.874 781.018 407.254 784.292 418.392C787.566 429.53 780.837 442.641 769.893 446.47Z" fill="#171717"/>
|
||||||
|
<path d="M660.109 560.494C658.841 563.538 658.961 567.138 657.109 569.868C655.728 571.766 653.684 573.077 651.383 573.54L651.298 573.226C649.571 572.826 645.098 572.296 643.555 571.414C642.761 571.008 642.063 570.439 641.505 569.744C640.947 569.048 640.542 568.242 640.318 567.379C639.811 564.879 641.518 562.33 643.749 561.109C646.073 560.028 648.636 559.566 651.19 559.768C653.734 559.963 656.292 559.865 658.813 559.478L660.813 559.067C660.548 559.527 660.313 560.004 660.109 560.494V560.494Z" fill="white"/>
|
||||||
|
<path d="M310.728 118.412C312.021 110.572 313.567 102.466 318.447 96.2207C323.496 89.7697 333.342 86.2667 340.119 90.8817C344.819 94.0817 346.751 100.292 346.232 105.958C345.713 111.624 343.14 116.866 340.409 121.858C345.374 115.878 350.532 109.758 357.43 106.158C364.328 102.558 373.46 102.111 379.367 107.173C386.18 113.032 386.132 124.109 381.723 131.937C377.314 139.765 369.623 145.092 362.202 150.154L363.845 151.422C368.061 152.437 372.422 150.89 376.71 150.19C380.998 149.49 386.181 150.045 388.452 153.754C390.723 157.438 388.742 162.56 385.263 165.133C381.784 167.706 377.278 168.358 372.963 168.833C368.163 169.352 363.371 169.727 358.551 170.005C327.143 171.817 295.42 169.405 264.23 173.714C256.438 174.789 247.886 176.782 243.43 183.257C239.697 188.657 239.83 195.736 240.12 202.295C241.014 223.242 241.912 244.185 242.814 265.124L241.703 265.172C238.055 274.063 224.863 277.107 217.676 270.717C211.032 264.817 211.781 252.899 218.546 247.427C219.198 247.103 219.804 246.693 220.346 246.207C219.711 246.56 219.109 246.968 218.546 247.427C212.276 250.737 203.059 246.727 200.846 239.684C198.539 232.291 203.105 223.932 210.015 220.384C210.355 220.249 210.686 220.091 211.006 219.913C210.668 220.058 210.342 220.213 210.015 220.384C204.7 222.584 197.923 219.744 195.06 214.658C192.028 209.246 192.934 202.215 196.22 196.936C199.506 191.657 204.82 187.948 210.426 185.279C204.326 182.742 201.571 174.951 203.371 168.596C205.171 162.241 210.583 157.41 216.611 154.696C222.639 151.982 229.283 151.084 235.83 150.202C234.115 142.664 234.042 134.534 237.062 127.407C240.082 120.28 246.562 114.385 254.228 113.382C260.836 112.512 267.987 115.931 271.068 121.693C271.366 122.706 271.75 123.692 272.216 124.641C271.955 123.615 271.569 122.625 271.068 121.693C270.159 118.776 269.917 115.692 270.36 112.669C270.803 109.646 271.92 106.761 273.628 104.228C275.337 101.695 277.592 99.5785 280.229 98.0345C282.865 96.4905 285.815 95.5588 288.86 95.3083C291.905 95.0577 294.967 95.4947 297.82 96.587C300.673 97.6793 303.245 99.399 305.344 101.619C307.443 103.839 309.017 106.502 309.948 109.412C310.879 112.322 311.145 115.403 310.725 118.43L310.728 118.412Z" fill="#171717"/>
|
||||||
|
<path d="M355.533 355.736C355.376 357.438 354.763 359.065 353.757 360.447C350.957 364.147 345.663 364.603 341.025 364.735C307.359 365.726 273.683 366.721 239.999 367.719C236.387 367.828 232.399 367.819 229.634 365.472C228.848 364.801 228.196 363.987 227.713 363.072C226.263 360.366 226.094 356.863 226.07 353.686C226.022 348.733 226.142 343.309 229.344 339.528C232.992 335.24 239.262 334.599 244.879 334.285H245.737C260.112 334.225 274.753 332.727 289.008 331.085C297.367 330.233 305.774 329.951 314.171 330.239C321.649 330.396 329.126 330.722 336.471 330.758C340.288 330.782 344.335 330.867 347.571 332.884C352.488 335.94 353.937 342.306 354.964 347.996C355.518 350.537 355.71 353.142 355.533 355.736V355.736Z" fill="white"/>
|
||||||
|
<path d="M331.578 786.851C331.34 800.965 334.223 814.957 340.022 827.827C342.897 834.157 346.522 840.257 351.546 845.077C356.57 849.897 363.107 853.34 370.053 853.714C380.116 854.27 389.816 848.157 395.276 839.689C400.736 831.221 402.391 820.747 401.799 810.689C401.207 800.631 398.489 790.829 395.807 781.117L395.747 779.437C418.132 778.527 440.16 785.258 458.213 798.524C467.318 805.342 475.149 813.713 481.346 823.252C490.006 836.445 495.352 851.534 496.929 867.236L498.173 868.625C463.174 900.33 418.065 918.594 370.867 920.168C323.669 921.743 277.442 906.526 240.408 877.225L240.908 876.608C242.303 864.964 246.17 853.753 252.251 843.726C259.135 832.35 268.03 822.32 278.501 814.126C294.201 801.732 312.519 793.191 331.46 786.526L331.578 786.851Z" fill="white"/>
|
||||||
|
<path d="M297.3 252.561C301.984 253.243 306.763 252.422 310.951 250.217C307.713 234.065 304.476 217.914 301.239 201.764C300.454 197.886 299.739 193.61 301.71 190.179C304.09 186.036 309.441 184.767 314.225 184.465C323.455 183.893 332.694 185.422 341.248 188.935" stroke="#171717" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M316.031 206.1C318.884 204.681 322.027 203.943 325.214 203.945C328.4 203.947 331.542 204.689 334.393 206.112" stroke="#171717" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M288.138 208.033C286.651 206.594 284.886 205.473 282.95 204.739C281.015 204.006 278.95 203.675 276.883 203.768C274.815 203.861 272.788 204.375 270.926 205.279C269.064 206.183 267.407 207.457 266.055 209.024" stroke="#171717" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M286.966 280.526C285.132 281.249 283.173 281.597 281.202 281.551C279.232 281.505 277.29 281.066 275.492 280.259C273.694 279.452 272.076 278.293 270.732 276.852C269.388 275.41 268.345 273.714 267.666 271.864" stroke="#171717" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M314.2 328.69C313.33 323.979 312.46 319.207 312.811 314.435C313.162 309.663 314.853 304.807 318.392 301.594C324.082 296.424 332.973 296.605 339.315 292.256C347.529 286.627 349.148 275.38 350.042 265.462C352.881 233.74 355.724 202.021 358.571 170.307" stroke="#171717" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M245.737 333.231C244.759 310.532 243.784 287.826 242.814 265.111C241.92 244.164 241.022 223.221 240.12 202.282C239.83 195.723 239.697 188.644 243.43 183.244C247.888 176.769 256.44 174.776 264.23 173.701C295.421 169.388 327.143 171.801 358.551 169.992C363.371 169.714 368.167 169.34 372.963 168.82C377.276 168.349 381.769 167.697 385.263 165.12C388.757 162.543 390.723 157.425 388.452 153.741C386.181 150.032 380.999 149.477 376.71 150.177C372.421 150.877 368.061 152.424 363.845 151.409" stroke="#171717" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M218.545 247.414C211.78 252.886 211.031 264.814 217.675 270.704C224.863 277.094 238.054 274.05 241.702 265.159" stroke="#171717" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M218.545 247.414C219.197 247.091 219.803 246.681 220.345 246.194C219.71 246.547 219.108 246.955 218.545 247.414V247.414Z" stroke="#171717" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M210.015 220.367C203.105 223.919 198.539 232.278 200.846 239.667C203.057 246.71 212.274 250.72 218.546 247.41" stroke="#171717" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M210.016 220.367C210.356 220.232 210.687 220.075 211.007 219.896C210.668 220.041 210.342 220.2 210.016 220.367Z" stroke="#171717" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M271.069 121.672C267.989 115.91 260.837 112.491 254.229 113.361C246.558 114.361 240.083 120.271 237.063 127.386C234.043 134.501 234.115 142.643 235.831 150.186C229.284 151.068 222.631 151.962 216.612 154.68C210.593 157.398 205.172 162.23 203.372 168.58C201.572 174.93 204.326 182.726 210.427 185.263C204.827 187.933 199.507 191.653 196.221 196.92C192.935 202.187 192.029 209.23 195.061 214.642C197.924 219.728 204.701 222.567 210.016 220.368" stroke="#171717" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M271.068 121.672C271.366 122.685 271.75 123.672 272.216 124.62C271.955 123.594 271.569 122.604 271.068 121.672Z" stroke="#171717" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M310.728 118.411C311.15 115.384 310.887 112.3 309.956 109.388C309.026 106.476 307.453 103.81 305.354 101.588C303.254 99.3665 300.682 97.6451 297.827 96.5515C294.972 95.4579 291.908 95.0202 288.862 95.2707C285.815 95.5213 282.863 96.4536 280.226 97.9988C277.588 99.544 275.332 101.662 273.623 104.197C271.915 106.733 270.798 109.619 270.356 112.644C269.914 115.669 270.158 118.754 271.069 121.672" stroke="#171717" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M362.2 150.146C369.617 145.084 377.3 139.746 381.721 131.929C386.142 124.112 386.179 113.029 379.365 107.165C373.458 102.103 364.313 102.55 357.428 106.15C350.543 109.75 345.372 115.874 340.407 121.85C343.137 116.861 345.707 111.606 346.23 105.95C346.753 100.294 344.817 94.0746 340.117 90.8736C333.34 86.2586 323.495 89.7626 318.445 96.2126C313.565 102.458 312.018 110.564 310.726 118.404C310.678 118.682 310.641 118.96 310.593 119.238" stroke="#171717" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M245.737 334.283H244.879C239.262 334.597 232.992 335.237 229.344 339.526C226.144 343.307 226.022 348.731 226.07 353.684C226.094 356.861 226.263 360.364 227.713 363.07C228.195 363.984 228.847 364.799 229.634 365.47C232.4 367.814 236.387 367.826 239.999 367.717C273.678 366.725 307.353 365.731 341.025 364.733C345.664 364.6 350.955 364.141 353.757 360.445C354.762 359.063 355.376 357.435 355.533 355.734C355.711 353.139 355.52 350.532 354.965 347.991C353.938 342.301 352.489 335.935 347.572 332.879C344.335 330.862 340.288 330.779 336.472 330.753C329.127 330.716 321.65 330.391 314.172 330.233C305.775 329.943 297.368 330.226 289.009 331.08C274.753 332.725 260.112 334.223 245.737 334.283Z" stroke="#171717" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M138.079 410.169C138.224 410.036 138.357 409.903 138.502 409.769C162.842 386.846 193.006 371.043 225.708 364.082" stroke="#171717" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M354.784 355.785C355.038 355.773 355.284 355.749 355.533 355.737C398.642 353.029 441.535 363.698 478.351 386.288" stroke="#171717" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M669.107 417.261C679.799 418.251 690.49 419.246 701.18 420.245C697.955 434.717 694.734 449.183 691.516 463.645C690.67 467.438 690.199 472.245 693.425 474.396C696.747 476.607 701.857 474.287 704.925 476.848" stroke="#171717" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M712.56 498.185C711.908 498.173 711.243 498.149 710.591 498.137C712.572 498.968 714.699 499.399 716.847 499.405C718.996 499.412 721.125 498.994 723.111 498.176C725.098 497.357 726.904 496.155 728.424 494.637C729.945 493.119 731.151 491.315 731.973 489.33" stroke="#171717" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M718.104 436.794C718.528 434.234 718.955 431.673 719.385 429.111" stroke="#171717" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M682.782 438.486C682.545 435.619 683.155 432.746 684.534 430.223" stroke="#171717" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M696.046 550.07C697.822 542.87 699.598 535.55 699.356 528.145C699.114 520.74 696.578 513.069 690.972 508.201C684.147 502.27 673.951 501.339 667.307 495.201C659.539 488.025 658.935 476.163 658.863 465.593C658.754 450.734 658.649 435.871 658.549 421.005C658.513 416.005 658.477 411.008 658.44 406.014C680.926 401.558 704.165 402.749 726.076 409.481C732.527 411.474 739.195 414.216 743.145 419.689C746.974 425.004 747.566 431.914 747.945 438.449C748.961 456.085 749.379 473.738 749.201 491.408C749.021 511.401 748.074 531.365 746.362 551.301" stroke="#171717" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M658.719 420.969L658.55 421.005C650.795 422.926 642.242 422.43 635.25 418.541C628.207 414.627 623.05 407.029 623.109 398.971C623.168 390.913 629.109 382.989 637.049 381.612C632.918 372.54 631.178 361.873 634.766 352.571C638.354 343.269 648.272 336.071 658.093 337.771C667.515 339.414 673.93 347.971 679.342 355.843C678.593 346.058 686.518 336.643 696.17 334.86C705.822 333.077 716.126 338.448 721.007 346.976C725.888 355.504 725.513 366.534 720.922 375.219C727.687 370.786 735.744 367.911 743.802 368.587C751.86 369.263 759.796 373.939 763.094 381.319C766.392 388.699 764 398.557 756.981 402.58C768.264 399.874 781.02 407.255 784.294 418.393C787.568 429.531 780.839 442.638 769.894 446.467C782.409 450.84 789.464 466.667 784.366 478.902C779.268 491.137 763.033 497.252 751.122 491.417" stroke="#171717" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M603.7 622.623C602.261 612.765 602.131 602.761 603.313 592.87C603.977 587.325 605.222 581.515 609.051 577.456C613.279 572.962 619.899 571.524 626.072 571.717C632.245 571.91 638.297 573.469 644.458 573.964C646.777 574.193 649.117 574.05 651.392 573.542C653.693 573.078 655.736 571.767 657.118 569.87C658.966 567.14 658.845 563.539 660.118 560.495C660.323 560.005 660.562 559.529 660.831 559.071C662.927 555.902 666.118 553.618 669.794 552.656C673.913 551.436 678.286 551.471 682.575 551.519L696.044 551.665C712.811 551.846 729.582 552.023 746.358 552.196C749.306 552.232 752.241 552.255 755.189 552.295C761.889 552.368 770.035 553.335 772.741 559.472C773.084 560.27 773.335 561.105 773.49 561.961C774.348 566.298 773.526 571.335 776.86 574.102C779.324 576.131 782.876 575.793 786.065 575.902C786.512 575.914 786.971 575.95 787.418 575.987C791.435 576.358 795.324 577.595 798.817 579.614C802.31 581.633 805.324 584.385 807.652 587.68C812.472 594.638 813.752 613.931 811.083 622.037C811.071 622.061 811.071 622.096 811.059 622.121" stroke="#171717" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M651.3 573.227C649.573 572.827 645.1 572.297 643.557 571.415C642.763 571.01 642.064 570.44 641.507 569.745C640.949 569.049 640.544 568.243 640.32 567.38C639.813 564.88 641.52 562.331 643.751 561.11C646.074 560.029 648.638 559.567 651.192 559.769C653.736 559.964 656.294 559.867 658.815 559.479" stroke="#171717" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M773.082 561.981C773.215 561.969 773.348 561.969 773.482 561.957C776.345 561.764 779.212 561.575 782.082 561.389C784.776 561.208 787.796 561.135 789.789 562.959C791.625 564.65 791.951 567.525 791.227 569.917C790.503 572.309 789 573.541 787.458 575.501" stroke="#171717" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M252.32 843.834L252.248 843.725C233.391 816.074 232.654 777.2 250.448 748.848C256.089 739.86 263.458 731.767 267.01 721.764C270.779 711.134 269.849 699.512 270.21 688.242C271.333 653.56 286.132 618.975 312.43 596.349C338.728 573.723 376.6 564.313 409.711 574.665C442.822 585.017 469.23 615.955 471.634 650.552C472.685 665.785 469.423 681.284 472.383 696.263C475.161 710.312 483.171 722.706 488.329 736.063C499.986 766.299 499.648 796.149 481.612 823.063" stroke="#171717" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M316.525 687.106C324.392 688.128 332.375 686.487 339.199 682.443C348.175 677.284 355.145 668.563 357.162 658.378C362.909 661.978 369.535 663.926 376.316 664.009C383.096 664.093 389.768 662.308 395.601 658.85C405.99 652.495 411.547 640.35 411.547 628.178C411.547 626.837 411.475 625.496 411.347 624.167" stroke="#171717" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M411.499 628.046C411.511 628.094 411.535 628.131 411.547 628.179C417.611 644.318 423.7 660.614 426.309 677.647C428.942 694.74 427.855 712.873 420.051 728.299C413.105 742.082 401.399 752.737 391.675 764.721C387.525 769.742 383.945 775.207 380.999 781.017C380.899 781.217 380.806 781.417 380.709 781.617C376.88 789.617 374.814 798.203 376.155 806.889" stroke="#171717" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M339.2 682.358V682.443C340.118 715.627 341.072 749.089 346.351 781.766C348.168 793.272 350.616 804.668 353.684 815.904C355.532 822.604 357.803 829.53 362.756 834.404C367.709 839.278 376.165 841.29 381.686 837.074C385.793 833.945 387.207 828.437 387.799 823.315C389.454 809 387.582 794.504 380.925 781.723" stroke="#171717" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M387.292 697.193C390.276 697.145 393.924 696.686 395.092 693.93C395.877 692.107 395.177 690.016 394.476 688.157C392.338 682.443 390.2 676.733 388.061 671.027" stroke="#171717" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M371.648 673.214C369.831 671.744 367.514 671.039 365.186 671.248C362.859 671.458 360.705 672.566 359.181 674.337" stroke="#171717" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M412.792 669.614C412.018 668.938 411.116 668.423 410.141 668.099C409.165 667.775 408.135 667.648 407.109 667.725C406.084 667.803 405.085 668.084 404.169 668.551C403.253 669.019 402.44 669.664 401.775 670.448" stroke="#171717" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M385.153 722.984C383.458 723.55 381.665 723.764 379.884 723.612C378.103 723.46 376.372 722.946 374.797 722.101C373.222 721.256 371.837 720.097 370.726 718.697C369.615 717.297 368.802 715.685 368.337 713.959" stroke="#171717" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M345.579 781.887C340.856 783.337 336.132 784.871 331.457 786.525C312.515 793.194 294.202 801.734 278.498 814.125C268.027 822.319 259.132 832.349 252.248 843.725C246.167 853.752 242.299 864.963 240.905 876.607" stroke="#171717" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M381.288 781.149C386.056 780.198 390.891 779.625 395.748 779.433C418.133 778.523 440.161 785.254 458.214 798.52C467.319 805.338 475.15 813.709 481.347 823.248C490.007 836.441 495.353 851.53 496.93 867.232" stroke="#171717" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M331.578 786.851C331.34 800.965 334.223 814.957 340.022 827.827C342.897 834.157 346.522 840.257 351.546 845.077C356.57 849.897 363.107 853.34 370.053 853.714C380.116 854.27 389.816 848.157 395.276 839.689C400.736 831.221 402.391 820.747 401.799 810.689C401.207 800.631 398.489 790.829 395.807 781.117" stroke="#171717" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M138.5 409.771C99.2414 369.403 77.2817 315.311 77.292 259C77.292 138.2 176.747 40.2783 299.421 40.2783C422.095 40.2783 521.55 138.2 521.55 259C521.589 305.103 506.846 350.003 479.487 387.109C460.113 413.204 435.3 434.778 406.767 450.338C378.233 465.899 346.659 475.074 314.23 477.229C281.801 479.385 249.29 474.468 218.948 462.821C188.606 451.173 161.157 433.073 138.5 409.771V409.771Z" stroke="#171717" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M240.41 877.222C216.78 858.562 197.69 834.786 184.575 807.683C171.46 780.581 164.662 750.857 164.692 720.748C164.692 610.541 254.023 521.209 364.23 521.209C474.437 521.209 563.758 610.541 563.758 720.748C563.755 758.242 553.189 794.976 533.27 826.742C513.351 858.507 484.885 884.017 451.136 900.35C417.386 916.682 379.717 923.175 342.447 919.084C305.177 914.994 269.814 900.485 240.41 877.222V877.222Z" stroke="#171717" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M603.078 623.577C576.149 606.344 553.994 582.608 538.654 554.558C523.314 526.508 515.284 495.047 515.304 463.077C515.304 357.823 600.626 272.501 705.88 272.501C811.134 272.501 896.468 357.823 896.468 463.077C896.466 497.277 887.263 530.847 869.823 560.266C852.382 589.686 827.347 613.87 797.343 630.284C767.339 646.698 733.471 654.736 699.291 653.556C665.111 652.376 631.878 642.021 603.078 623.577Z" stroke="#171717" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M333.894 806.732L348.229 800.238" stroke="#171717" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M339.91 826.888C343.803 823.864 348.031 821.298 352.51 819.24" stroke="#171717" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M353.053 846.435L362.543 836.521" stroke="#171717" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M374.36 852.918C374.446 848.866 374.53 844.814 374.614 840.762" stroke="#171717" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M385.059 834.117C388.541 835.317 392.135 836.167 395.786 836.655" stroke="#171717" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M388.784 819.311C392.595 817.342 396.671 815.934 400.884 815.129" stroke="#171717" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M387.7 798.853L397.909 796.615" stroke="#171717" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M374.189 853.366C376.133 874.848 377.633 896.364 378.689 917.915" stroke="#171717" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M324.608 856.101L320.33 848.221" stroke="#171717" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M317.514 856.711L327.542 849.903" stroke="#171717" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M451.084 865.866C448.368 863.835 445.762 861.66 443.277 859.353" stroke="#171717" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M444.392 867.877L443.97 867.909L450.302 857.787" stroke="#171717" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M434.782 819.456C432.1 817.248 429.611 814.816 427.341 812.187" stroke="#171717" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M428.125 820.69L434.718 809.939" stroke="#171717" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M412.941 894.838C410.109 892.716 407.482 890.333 405.095 887.721" stroke="#171717" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M412.824 886.101L405.899 895.901" stroke="#171717" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M345.259 904.935C349.239 901.023 352.77 896.678 355.785 891.981" stroke="#171717" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M354.943 904.21C351.937 900.664 348.931 897.119 345.926 893.573" stroke="#171717" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M274.066 867.419C275.709 864.665 277.601 862.067 279.718 859.657" stroke="#171717" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M279.686 866.701C277.239 864.566 275.132 862.071 273.438 859.301" stroke="#171717" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M758.737 572.375C758.603 568.751 758.473 565.127 758.345 561.502" stroke="#171717" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M742.277 572.169C742.704 568.702 742.704 565.196 742.277 561.729" stroke="#171717" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M725.274 571.113C725.759 567.791 725.906 564.429 725.714 561.077" stroke="#171717" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M708.454 570.033C708.544 566.833 708.634 563.633 708.723 560.433" stroke="#171717" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M691.147 569.426C691.94 566.938 692.179 564.308 691.847 561.719" stroke="#171717" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M673.817 570.243L674.225 561.289" stroke="#171717" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M703.463 580.315C702.833 580.042 702.122 580.022 701.477 580.259C700.833 580.496 700.304 580.972 700.001 581.588C699.699 582.205 699.645 582.914 699.851 583.569C700.057 584.224 700.507 584.774 701.109 585.106C701.71 585.438 702.416 585.525 703.08 585.351C703.744 585.176 704.315 584.752 704.675 584.167C705.035 583.583 705.156 582.882 705.013 582.21C704.87 581.538 704.474 580.948 703.907 580.56" stroke="#171717" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M739.7 580.316C739.07 580.042 738.358 580.021 737.713 580.257C737.067 580.494 736.538 580.969 736.234 581.586C735.931 582.202 735.876 582.912 736.082 583.568C736.287 584.224 736.737 584.775 737.339 585.108C737.94 585.44 738.647 585.529 739.311 585.354C739.976 585.18 740.548 584.756 740.909 584.171C741.27 583.586 741.391 582.885 741.249 582.213C741.106 581.54 740.71 580.949 740.143 580.561" stroke="#171717" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M701.969 582.395C698.932 585.919 698.269 590.98 698.958 595.58C699.647 600.18 701.527 604.501 703.073 608.888C704.619 613.275 705.857 617.936 705.198 622.541C704.539 627.146 701.573 631.684 697.098 632.955" stroke="#171717" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M738.287 583.176C741.764 586.305 744.408 590.251 745.979 594.658C747.551 599.064 748 603.792 747.287 608.416C746.749 611.678 745.629 614.827 745.187 618.103C744.745 621.379 745.087 624.965 747.144 627.549" stroke="#171717" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M337.865 364.308C337.616 353.508 337.367 342.708 337.119 331.908" stroke="#171717" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M317.473 365.168C317.904 353.986 318.335 342.804 318.767 331.623" stroke="#171717" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M296.637 365.446C296.3 354.454 295.963 343.462 295.625 332.471" stroke="#171717" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M272.732 366.014C272.175 355.128 271.927 344.232 271.987 333.326" stroke="#171717" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M251.273 366.585L251.117 336.171" stroke="#171717" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M237.42 366.3C237.138 356.446 236.854 346.593 236.57 336.739" stroke="#171717" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M418.69 403.494C419.002 402.492 419.112 401.438 419.012 400.394C418.913 399.349 418.606 398.335 418.111 397.41C417.615 396.485 416.94 395.668 416.126 395.007C415.311 394.345 414.373 393.852 413.366 393.557C410.655 392.891 407.837 393.757 405.118 394.388C402.399 395.019 399.34 395.38 396.988 393.875C394.406 392.223 393.543 388.913 392.946 385.906" stroke="#171717" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M370.677 450.054C371.671 448.68 372.144 446.997 372.011 445.306C371.878 443.616 371.149 442.027 369.953 440.825C368.539 439.488 366.622 438.802 365.139 437.542C363.656 436.282 362.694 433.942 363.896 432.416" stroke="#171717" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M312.121 426.143C311.111 424.231 310.371 422.189 309.921 420.074C309.702 419.014 309.703 417.92 309.925 416.86C310.146 415.801 310.584 414.798 311.209 413.915C312.3 412.535 313.946 411.722 315.254 410.545C316.502 409.393 317.418 407.928 317.909 406.303C318.4 404.678 318.448 402.951 318.047 401.301" stroke="#171717" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M255.107 449.005C254.545 446.477 252.949 444.326 251.755 442.028C250.561 439.73 249.764 436.928 250.882 434.591C251.853 432.561 254 431.418 255.627 429.862C256.986 428.536 257.997 426.895 258.57 425.084C259.144 423.274 259.261 421.349 258.913 419.482" stroke="#171717" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M218.715 411.522C218.197 409.465 218.034 407.334 218.232 405.222C218.343 404.167 218.718 403.157 219.322 402.284C219.926 401.412 220.74 400.705 221.688 400.23C222.908 399.721 224.288 399.752 225.546 399.352C226.673 398.918 227.686 398.232 228.507 397.347C229.329 396.462 229.938 395.401 230.287 394.245C230.967 391.93 231.285 389.524 231.231 387.112" stroke="#171717" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M173.73 417.408C173.462 415.682 173.431 413.928 173.638 412.194C173.746 411.326 174.029 410.49 174.47 409.735C174.91 408.98 175.499 408.322 176.2 407.801C177.502 407.134 178.878 406.622 180.3 406.276C181.782 405.715 183.11 404.81 184.174 403.635C185.237 402.46 186.006 401.049 186.417 399.519" stroke="#171717" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M394.856 183.437L414.637 161.917" stroke="#171717" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M397.857 199.408C417.062 196.387 435.915 191.451 454.135 184.673" stroke="#171717" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M392.5 217.511C397.54 222.505 403.581 226.375 410.224 228.866" stroke="#171717" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M206.029 122.98C208.441 118.856 210.852 114.732 213.263 110.607" stroke="#171717" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M214.775 122.86C211.737 118.302 207.861 114.364 203.353 111.255" stroke="#171717" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M183.132 168.987L175.394 153.243" stroke="#171717" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M171.043 168.146C175.344 163.436 180.236 159.301 185.597 155.846" stroke="#171717" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M611.573 430.8C610.183 427.068 608.13 423.618 605.513 420.617" stroke="#171717" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M603.763 430.324L612.663 420.892" stroke="#171717" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M616.892 481.893C611.59 479.283 606.655 475.986 602.214 472.087" stroke="#171717" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M603.425 486.254L615.159 464.631" stroke="#171717" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M503.138 797.029C508.852 783.262 509.466 767.908 504.871 753.729" stroke="#171717" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M228.056 778.337C229.581 766.659 234.169 755.592 241.356 746.262" stroke="#171717" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M274.266 607.76C276.717 604.024 279.91 600.831 283.646 598.38" stroke="#171717" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M281.647 610.244L273.547 595.744" stroke="#171717" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M243.477 632.485C243.725 626.799 243.972 621.112 244.22 615.426" stroke="#171717" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M233.755 625.147L252.526 623.571" stroke="#171717" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M154.663 764.138C150.128 754.261 147.652 743.563 147.387 732.697C147.122 721.831 149.074 711.025 153.123 700.938" stroke="#171717" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M852.6 611.328C873.999 592.367 889.858 567.958 898.488 540.7" stroke="#171717" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M86.4228 375.269C71.5493 354.272 62.9912 329.459 61.7578 303.758" stroke="#171717" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M604.136 134.368C593.151 144.855 586.275 158.921 584.745 174.03C583.71 184.655 586.473 197.079 595.939 202.014C604.629 206.544 616.81 201.729 620.054 192.482C621.237 189.111 621.129 184.882 618.447 182.52C615.147 179.611 609.853 181.048 606.295 183.64C602.513 186.489 599.632 190.367 597.995 194.809C596.358 199.252 596.034 204.072 597.063 208.693C598.863 216.218 604.12 222.364 609.197 228.203C614.274 234.042 619.509 240.213 621.258 247.75C623.007 255.287 619.971 264.541 612.683 267.142" stroke="#171717" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M141.938 473.322C156.432 476.629 167.557 491.034 167.094 505.893C166.631 520.752 154.629 534.436 139.958 536.833C134.042 537.8 127.389 536.856 123.195 532.573C119.001 528.29 118.752 520.146 123.757 516.846C129.343 513.163 137.057 517.469 140.6 523.146C146.842 533.123 145.585 546.261 140.983 557.093C136.381 567.925 128.859 577.2 122.539 587.129C116.219 597.058 110.927 608.349 111.676 620.094" stroke="#171717" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M617.8 794.254C630.075 771.203 649.844 753.028 673.843 742.729C680.582 739.863 689.656 738.198 694.174 743.961C696.89 747.426 696.711 752.49 694.885 756.495C693.059 760.5 689.86 763.689 686.727 766.782C683.881 769.592 680.88 772.498 677.06 773.682C673.24 774.866 668.37 773.703 666.678 770.082C664.431 765.268 668.766 760.061 672.908 756.734C690.913 742.315 712.358 732.825 735.138 729.195" stroke="#171717" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M563.762 134.931C562.909 130.664 562.057 126.4 561.204 122.14" stroke="#171717" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M553.494 131.408L572.244 125.408" stroke="#171717" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M101.7 508.389C100.052 502.483 98.4035 496.577 96.7549 490.672" stroke="#171717" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M89.0566 505.46L106 495.881" stroke="#171717" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M719.855 782.183C724.012 777.575 726.922 771.981 728.309 765.933" stroke="#171717" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M716.426 773.534L733.439 779.617" stroke="#171717" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M673.762 712.218C673.955 706.567 675.412 701.031 678.026 696.018" stroke="#171717" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M665.23 704.791L682.28 705.062" stroke="#171717" stroke-width="3.624" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<g opacity="0.1">
|
||||||
|
<path d="M320.259 171.334C315.082 170.502 309.842 170.134 304.6 170.234C300.026 170.442 295.479 170.915 290.9 170.971C281.671 171.083 271.971 171.256 262.836 172.533C255.647 173.539 248.456 177.479 244.325 183.581C240.072 189.862 240.033 198.53 240.198 205.847C241.082 244.969 244.389 284.103 246.764 323.16C247.548 336.048 267.709 336.137 266.92 323.16C264.766 287.737 263.509 252.119 260.232 216.783C259.601 209.973 258.009 202.383 258.932 195.538C259.174 193.731 259.599 190.719 260.68 189.297C262.28 187.197 267.274 186.425 269.688 185.804C286.688 181.429 304.176 179.852 320.5 173.081C320.697 173.013 320.865 172.88 320.974 172.702C321.084 172.525 321.128 172.315 321.1 172.108C321.072 171.902 320.973 171.711 320.821 171.57C320.668 171.428 320.471 171.343 320.263 171.331L320.259 171.334Z" fill="#171717"/>
|
||||||
|
</g>
|
||||||
|
<g opacity="0.1">
|
||||||
|
<path d="M229.38 338.208C227.588 343.539 227.18 349.14 226.699 354.716C226.445 357.662 226.336 360.656 225.936 363.585C225.928 364.377 225.789 365.162 225.525 365.908C225.794 365.414 226.563 365.078 225.606 365.473C221.616 367.119 216.492 367.195 212.271 368.186C207.433 369.322 202.633 370.666 197.924 372.256C188.771 375.337 179.933 379.285 171.532 384.046C163.058 388.865 155.8 395.058 147.791 400.518C142.712 403.98 140.94 410.541 144.898 415.671C148.388 420.193 156.226 421.487 160.288 416.714C166.796 409.069 176.071 403.314 184.74 398.429C193.662 393.351 203.16 389.359 213.032 386.539C222.37 383.915 235.332 384.265 240.832 374.853C243.871 369.653 243.314 363.461 243.313 357.673C243.313 351.116 243.462 344.622 241.901 338.208C240.308 331.665 231.326 332.419 229.38 338.208V338.208Z" fill="#171717"/>
|
||||||
|
</g>
|
||||||
|
<g opacity="0.1">
|
||||||
|
<path d="M354.883 663.336C354.936 668.836 351.645 671.271 348.352 675.062C345.381 678.413 342.782 682.076 340.599 685.987C335.21 695.855 337.125 707.577 337.532 718.415C338.412 741.861 340.483 765.262 342.178 788.662L349.508 779.034C326.164 783.728 304.214 793.731 285.355 808.269C275.942 815.376 267.353 823.514 259.749 832.532C255.677 837.408 251.892 842.516 248.412 847.832C245.062 852.987 241.091 858.732 239.99 864.86C239.196 869.276 240.516 873.76 244.578 876.135C248.22 878.266 253.791 877.88 256.678 874.574C260.57 870.118 262.829 864.794 265.851 859.751C268.438 855.385 271.282 851.178 274.368 847.151C281.072 838.488 288.817 830.685 297.428 823.917C314.203 810.857 333.895 802.064 354.816 798.291C358.823 797.553 362.447 792.724 362.146 788.663C360.409 765.242 359.046 741.763 356.495 718.416C355.905 713.005 355.315 707.594 354.689 702.188C354.15 697.537 352.689 691.718 353.663 687.158C354.52 683.13 357.217 679.299 358.763 675.472C360.394 671.435 361.858 667.772 361.446 663.337C361.062 659.209 354.846 659.037 354.883 663.337V663.336Z" fill="#171717"/>
|
||||||
|
</g>
|
||||||
|
<g opacity="0.1">
|
||||||
|
<path d="M661.077 407.05C658.613 413.688 659.339 421.965 658.715 428.991C658.033 436.672 657.315 444.364 656.761 452.055C655.946 463.355 658.136 476.84 663.487 486.933C666.235 492.117 670.451 497.149 675.618 500.039C680.649 502.853 686.258 504.515 691.278 507.416C704.504 515.057 699.545 531.995 693.055 542.804C688.175 550.931 702.547 557.076 704.964 547.825C708.464 534.425 714.182 521.025 706.807 507.662C704.024 502.62 699.707 498.552 695.177 495.112C690.464 491.64 686.071 487.754 682.049 483.499C678.163 479.305 674.849 474.749 673.209 469.242C671.656 463.623 670.642 457.868 670.181 452.056C669.416 444.356 670.141 436.696 670.287 428.992C670.425 421.726 671.112 412.611 667.075 406.267C666.737 405.727 666.251 405.296 665.674 405.024C665.098 404.752 664.455 404.652 663.823 404.734C663.192 404.817 662.597 405.079 662.109 405.49C661.622 405.901 661.263 406.443 661.075 407.051L661.077 407.05Z" fill="#171717"/>
|
||||||
|
</g>
|
||||||
|
<g opacity="0.1">
|
||||||
|
<path d="M674.989 553.819C667.708 550.713 661.238 559.877 658.979 565.576C657.094 570.332 655.613 574.876 649.756 574.736C644.162 574.603 638.681 572.136 633.2 571.181C623.057 569.413 610.326 572.564 605.443 582.508C600.143 593.308 603.918 604.36 601.875 615.616C599.657 627.848 616.475 632.694 620.588 620.775C623.888 611.204 619.888 601.381 621.765 591.747C622.173 589.942 622.824 588.202 623.7 586.573C624.374 585.245 624.417 585.931 624.044 586.134C625.034 585.669 626.091 585.365 627.175 585.234C631.936 584.44 636.537 585.795 641.175 586.652C649.991 588.281 659.48 587.617 664.521 579.079C666.633 575.501 667.431 571.404 668.405 567.423C668.802 565.272 669.347 563.152 670.036 561.077C671.127 558.339 672.707 557.319 674.985 555.767C675.599 555.348 675.828 554.184 674.985 553.824L674.989 553.819Z" fill="#171717"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<defs>
|
||||||
|
<clipPath id="clip0_46_113">
|
||||||
|
<rect width="960" height="960" fill="white"/>
|
||||||
|
</clipPath>
|
||||||
|
<clipPath id="clip1_46_113">
|
||||||
|
<rect width="842" height="885" fill="white" transform="translate(59 38)"/>
|
||||||
|
</clipPath>
|
||||||
|
</defs>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 44 KiB |
|
@ -0,0 +1,159 @@
|
||||||
|
<svg width="960" height="960" viewBox="0 0 960 960" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<g clip-path="url(#clip0_1_5993)">
|
||||||
|
<mask id="mask0_1_5993" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="0" y="0" width="960" height="960">
|
||||||
|
<path d="M960 0H0V960H960V0Z" fill="white"/>
|
||||||
|
</mask>
|
||||||
|
<g mask="url(#mask0_1_5993)">
|
||||||
|
<mask id="mask1_1_5993" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="71" y="39" width="818" height="883">
|
||||||
|
<path d="M889 39H71V922H889V39Z" fill="white"/>
|
||||||
|
</mask>
|
||||||
|
<g mask="url(#mask1_1_5993)">
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M552.22 385.814C558.502 354.26 559.998 327.504 550.02 296.927C540.055 266.338 524.97 237.715 509.963 209.274C506.81 203.29 502.73 196.624 496.041 195.624C487.67 194.375 481.266 202.647 476.876 209.892C466.02 227.853 455.165 245.81 444.309 263.763C440.646 269.822 436.863 276.35 437.209 283.422C437.513 289.385 440.668 294.553 443.837 299.746C445.293 302.132 446.753 304.524 447.941 307.001C450.497 312.346 451.812 318.201 451.787 324.127L451.639 324.227C458.578 334.812 464.226 346.144 470.069 357.869C470.689 359.114 471.312 360.363 471.939 361.617C485.503 390.426 499.635 418.653 513.953 447.103C525.105 437.163 530.756 430.807 538.088 420.693C545.52 410.468 549.76 398.214 552.22 385.814ZM521.103 257.7C520.546 256.84 519.398 256.594 518.538 257.151C517.678 257.708 517.433 258.856 517.989 259.716C537.859 290.399 545.61 327.374 539.737 363.455C539.573 364.466 540.259 365.418 541.27 365.583C542.281 365.747 543.234 365.061 543.398 364.05C549.419 327.062 541.472 289.156 521.103 257.7Z" fill="#171717"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M353.601 326.131C349.842 317.723 345.811 309.451 341.434 301.315C340.111 298.793 338.727 296.283 337.317 293.801C332.792 285.801 327.808 277.84 320.724 271.991C313.64 266.142 304.018 262.68 295.118 264.955C285.029 267.552 277.845 277.022 275.162 287.087C272.479 297.152 273.527 307.81 274.927 318.122C275.595 323.046 276.337 327.962 277.153 332.872C278.587 341.557 280.269 350.19 282.197 358.772C293.841 410.949 314.357 461.161 344.241 505.425C352.624 517.814 364.914 530.771 381.581 527.433C392.939 525.17 401.253 510.012 402.539 499.539C403.701 490.118 401.389 480.659 399.089 471.448C386.801 422.164 374.286 372.323 353.601 326.131ZM324.312 292.412C323.815 291.516 322.686 291.193 321.79 291.691C320.895 292.188 320.572 293.317 321.069 294.212C352.686 351.163 373.25 413.579 381.678 478.17C381.81 479.186 382.741 479.901 383.756 479.769C384.772 479.636 385.488 478.706 385.355 477.69C376.868 412.635 356.156 349.772 324.312 292.412Z" fill="#171717"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M577.322 809.128C586.452 788.298 592.552 766.268 595.435 743.709C596.4 736.245 597.045 728.76 597.369 721.255C597.53 717.595 597.616 713.948 597.641 710.288C518.028 702.709 435.719 730.232 376.667 784.14C381.737 790.087 386.967 795.898 392.357 801.573C395.634 805.019 398.96 808.411 402.335 811.749L402.36 812.33C412.143 811.946 421.943 811.588 431.76 811.255L445.101 781.778L466.624 769.859L491.069 778.872L491.378 778.885L491.934 767.238L502.122 743.375L526.27 741.05L551.579 766.36L558.849 794.872L569.965 809.437H569.977L570.336 809.153H570.358C572.675 809.153 575.004 809.153 577.322 809.165V809.128ZM587.022 726.738C586.988 725.715 586.131 724.913 585.107 724.947C584.083 724.981 583.281 725.839 583.315 726.862C584.018 747.899 579.795 768.808 570.985 787.924C570.556 788.854 570.963 789.956 571.893 790.385C572.823 790.813 573.924 790.407 574.353 789.477C583.406 769.836 587.744 748.352 587.022 726.738Z" fill="#171717"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M434.131 564.884C446.049 564.883 457.701 568.416 467.611 575.037C477.522 581.657 485.246 591.068 489.808 602.079C494.369 613.09 495.563 625.207 493.238 636.896C490.914 648.586 485.174 659.324 476.747 667.751C468.319 676.179 457.581 681.918 445.892 684.243C434.202 686.568 422.086 685.374 411.075 680.812C400.064 676.25 390.653 668.526 384.032 658.615C377.412 648.705 373.878 637.054 373.88 625.135C373.882 609.156 380.231 593.833 391.529 582.534C402.828 571.235 418.152 564.886 434.131 564.884ZM459.865 582.829C460.671 581.727 462.219 581.487 463.321 582.294C472.553 589.05 479.279 598.682 482.443 609.675C485.607 620.669 485.031 632.402 480.803 643.032C480.299 644.301 478.861 644.921 477.592 644.417C476.322 643.912 475.703 642.474 476.207 641.205C480.03 631.593 480.551 620.984 477.69 611.043C474.829 601.103 468.747 592.394 460.4 586.285C459.298 585.479 459.058 583.931 459.865 582.829ZM412.581 590.754C412.642 590.074 412.14 589.473 411.46 589.412C410.78 589.352 410.179 589.854 410.118 590.534L409.267 600.038L402.409 595.708L401.759 595.298L401.104 595.698L393.249 600.498C392.666 600.854 392.482 601.615 392.838 602.198C393.195 602.781 393.956 602.965 394.538 602.609L401.738 598.209L409.019 602.807L407.5 619.772L407.413 620.74L408.333 621.053L414.34 623.098L411.28 631.515L391.384 637.017L390.23 637.336L390.512 638.5L394.003 652.901C394.164 653.565 394.832 653.973 395.496 653.812C396.16 653.651 396.567 652.982 396.407 652.319L393.198 639.082L412.553 633.729L413.168 633.559L413.386 632.96L416.682 623.895L427.864 627.701L426.485 636.758C426.424 636.921 426.399 637.092 426.409 637.261L424.964 646.751C424.861 647.426 425.325 648.057 426 648.159C426.675 648.262 427.306 647.798 427.409 647.123L428.598 639.314L436.121 644.33L436.905 644.852L437.616 644.235L444.161 638.562C444.677 638.115 444.733 637.334 444.286 636.818C443.839 636.302 443.058 636.246 442.542 636.694L436.709 641.749L429.009 636.616L430.465 627.05L430.621 626.027L429.641 625.694L410.05 619.025L410.534 613.612L431.116 611.512L432.446 611.376L432.207 610.061L430.99 610.282C432.207 610.061 432.207 610.061 432.207 610.061L432.206 610.058L432.205 610.05L432.199 610.019L432.177 609.897L432.092 609.434C432.019 609.034 431.913 608.458 431.783 607.759C431.524 606.359 431.169 604.461 430.787 602.467C430.029 598.514 429.144 594.081 428.688 592.486C428.501 591.829 427.816 591.449 427.16 591.637C426.503 591.824 426.123 592.509 426.31 593.165C426.728 594.627 427.589 598.922 428.358 602.933C428.739 604.92 429.093 606.813 429.352 608.209C429.419 608.571 429.48 608.9 429.533 609.188L410.759 611.103L412.581 590.754Z" fill="white"/>
|
||||||
|
<path d="M728.461 761.711L746.155 812.244C730.44 811.638 714.733 811.127 699.034 810.71L684.534 791.088L691.223 772.468L678.423 754.144L688.945 751.708L713.624 746L728.461 761.711Z" fill="#171717"/>
|
||||||
|
<path d="M684.531 791.088L699.031 810.71C684.986 810.352 670.937 810.06 656.882 809.833L657.463 773.346L678.42 754.146L691.22 772.47L684.531 791.088Z" fill="white"/>
|
||||||
|
<path d="M689.328 882.584L695.325 898.014L671.722 897.569L672.018 883.017L693.841 866.733L689.328 882.584Z" fill="white"/>
|
||||||
|
<path d="M644.089 768.4L649.294 809.709C646.933 809.672 644.559 809.647 642.194 809.622L642.417 797.27L623.217 782.87L617.542 760.182L595.434 743.712C596.398 736.246 597.041 728.761 597.363 721.259L597.536 721.271L615.001 698.863L633.04 722.726L631 749.198L644.089 768.4Z" fill="white"/>
|
||||||
|
<path d="M617.542 760.178L605.981 776.978L609.9 799.233L607.292 809.051V809.273C597.302 809.211 587.311 809.174 577.321 809.162V809.125C586.451 788.295 592.551 766.265 595.434 743.706L617.542 760.178Z" fill="white"/>
|
||||||
|
<path d="M589.4 830.654L599.575 855.383L594.63 875.462L594.691 875.771L579.791 878.949C579.791 878.949 563.211 877.49 561.468 877.49C559.725 877.49 570.197 849.275 570.197 849.275L580.954 847.816L589.4 830.654Z" fill="white"/>
|
||||||
|
<path d="M557.847 820.107L562.125 826.945L544.234 831.087L531.795 814.951L515.87 803.378L533.972 796.838L546.843 802.513L557.847 820.107Z" fill="#171717"/>
|
||||||
|
<path d="M531.795 814.951L544.234 831.087L505.175 826.289L507.042 822.283L515.87 803.378L531.795 814.951Z" fill="white"/>
|
||||||
|
<path d="M514.337 887.962L526.553 915.893L474.19 919.973L486.703 899.313L478.258 888.259L481.757 870.801L501.243 887.962H514.337Z" fill="#171717"/>
|
||||||
|
<path d="M502.121 743.375L514.918 763.739L509.095 792.547L488.15 823.965L467.786 815.236L491.068 785.562L491.377 778.885L491.933 767.238L502.121 743.375Z" fill="white"/>
|
||||||
|
<path d="M478.258 888.259L486.703 899.313L474.19 919.973C474.19 919.973 449.746 909.5 448.881 908.92L469.245 876.043L481.757 870.801L478.258 888.259Z" fill="white"/>
|
||||||
|
<path d="M462.506 835.575L472.88 849.126L468.936 858.721L442.118 857.707L447.793 838.95L462.506 835.575Z" fill="white"/>
|
||||||
|
<path d="M468.948 798.359L448.584 816.695L431.138 812.615L431.756 811.255L445.097 781.778L466.623 769.859L457.894 787.305L468.948 798.359Z" fill="white"/>
|
||||||
|
<path d="M414.113 901.786L415.114 913.631L402.836 912.258L394.762 911.17L399.35 902.663L409.167 891.746L414.113 901.786Z" fill="white"/>
|
||||||
|
<path d="M379.27 812.985L379.282 813.27C363.482 813.95 347.701 814.704 331.94 815.532L331.927 815.384L332.36 802.946L335.674 797.654L343.241 785.537L346.541 780.257L353.527 795.75L372.296 803.168L379.27 812.985Z" fill="white"/>
|
||||||
|
<path d="M371.023 840.212L373.99 847.803L362.368 847.581L362.504 840.422L373.249 832.397L371.023 840.212Z" fill="white"/>
|
||||||
|
<path d="M319.34 770.564L321.887 755.158L332.805 777.203L342.833 785.277L343.241 785.537L335.674 797.654L335.414 797.493L317.09 784.177L318.277 777.03L318.895 773.284L319.34 770.564Z" fill="white"/>
|
||||||
|
<path d="M327.785 715.456L286.761 722.875L283.929 755.158L264.505 767.6V804.891L251.523 791.5L251.634 791.389L259.934 728.989C259.934 728.989 281.312 713.706 282.623 713.274C283.934 712.842 288.731 683.167 288.731 683.167C288.731 683.167 261.231 652.615 260.367 651.304L286.542 632.98H286.554C298.449 660.651 311.53 687.828 326.8 713.805C327.118 714.356 327.451 714.912 327.785 715.456Z" fill="#171717"/>
|
||||||
|
<path d="M310.104 862.949L327.563 881.273L317.523 891.746H293.635L292.658 879.53L277.821 869.057L310.104 862.949Z" fill="#171717"/>
|
||||||
|
<path d="M326.475 815.384L326.499 815.817C314.11 816.472 301.737 817.181 289.382 817.943L290.037 810.364L299.637 787.676L312.731 799.236L323.631 802.29L326.475 815.384Z" fill="white"/>
|
||||||
|
<path d="M264.505 804.887V767.6L283.929 755.162L286.761 722.879L299.422 746L297.888 771.742L305.962 781.782L306.162 782.017L299.634 787.68L290.034 810.368L289.379 817.948C281.082 818.455 272.789 818.989 264.502 819.548L264.505 804.887Z" fill="white"/>
|
||||||
|
<path d="M292.658 879.53L293.635 891.746H278.687L266.904 886.948L277.821 869.057L292.658 879.53Z" fill="white"/>
|
||||||
|
<path d="M288.727 683.161C288.727 683.161 283.927 712.835 282.619 713.268C281.311 713.701 259.93 728.983 259.93 728.983L251.63 791.383L251.519 791.494L244.211 783.965L232.511 789.38L232.424 789.195L242.019 727.67L271.26 701.915L260.36 651.296C261.228 652.609 288.727 683.161 288.727 683.161Z" fill="white"/>
|
||||||
|
<path d="M253.81 552.681C235.659 553.881 142.01 530.363 119.41 461.47C110.249 433.551 96.5741 402.554 91.3311 373.87C90.3921 368.726 89.5751 363.17 91.8501 358.476C95.4611 351.021 105.031 348.968 113.302 348.449C133.394 347.2 149.74 355.2 168.942 361.283C177.98 364.152 190.975 368.183 196.403 375.947C202.239 384.293 202.449 395.161 203.364 405.3C204.279 415.439 203.055 426.591 211.438 432.378L212.006 432.303C213.849 445.803 218.188 459.023 223.006 471.659C227.382 483.12 232.031 494.483 236.594 505.871C238.733 511.2 240.86 516.541 242.924 521.895C246.831 532.046 250.714 542.212 254.571 552.395L253.81 552.681Z" fill="#171717"/>
|
||||||
|
<path d="M214.541 797.7L224.729 822.416C214.652 823.184 204.575 824 194.499 824.864L214.541 797.7Z" fill="white"/>
|
||||||
|
<path d="M189.664 825.2L189.677 825.287C182.258 825.931 174.84 826.597 167.421 827.287L169.152 802.064L185.3 774.36L187.265 799.669L189.664 825.2Z" fill="white"/>
|
||||||
|
<path d="M276.648 332.956C246.603 351.465 213.392 375.835 211.216 414.275C210.979 418.623 211.057 422.983 211.451 427.32C211.599 428.989 211.785 430.646 212.007 432.302C213.85 445.802 218.189 459.021 223.007 471.658C227.383 483.119 232.032 494.482 236.595 505.87C238.734 511.199 240.861 516.54 242.925 521.894C246.832 532.045 250.714 542.211 254.572 552.394C259.123 564.4 263.723 576.389 268.372 588.362C272.438 598.773 276.601 609.15 280.86 619.495C282.726 623.996 284.622 628.489 286.547 632.972C298.442 660.644 311.523 687.82 326.793 713.797C327.115 714.354 327.448 714.91 327.782 715.454C333.456 725.049 339.441 734.455 345.735 743.67C352.783 753.981 360.218 764 368.04 773.727C370.847 777.239 373.72 780.709 376.658 784.138C381.724 790.085 386.954 795.896 392.348 801.571C395.624 805.009 398.95 808.401 402.326 811.747" stroke="white" stroke-width="3.709" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||||
|
<path d="M577.321 809.128C586.451 788.298 592.551 766.268 595.434 743.709C596.399 736.242 597.042 728.758 597.363 721.255C597.524 717.595 597.61 713.948 597.635 710.288C597.635 707.088 597.594 703.882 597.512 700.669C597.019 684.721 595.382 668.829 592.612 653.116C585.849 613.933 572.817 575.11 557.251 538.016C549.857 520.409 541.894 503.186 533.758 486.494C529.158 477.283 524.558 468.129 519.958 459.033C517.958 455.039 515.955 451.062 513.949 447.101C499.631 418.651 485.499 390.424 471.935 361.615C465.407 348.558 459.311 335.934 451.635 324.225C451.091 323.397 450.547 322.581 449.978 321.765C444.9 314.219 438.995 307.264 432.372 301.03C406.407 277.538 369.326 291.139 341.432 301.314H341.42" stroke="white" stroke-width="3.709" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||||
|
<path d="M570.335 809.153C572.659 809.153 574.996 809.153 577.321 809.165C587.311 809.177 597.301 809.214 607.292 809.276C618.926 809.35 630.559 809.466 642.192 809.622C644.553 809.647 646.927 809.672 649.292 809.709C651.827 809.746 654.361 809.783 656.884 809.833C670.942 810.055 684.992 810.348 699.033 810.711C714.736 811.131 730.443 811.642 746.154 812.244C792.94 814.074 839.726 816.868 886.612 821.022" stroke="white" stroke-width="3.709" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||||
|
<path d="M73.4521 837.368C104.785 833.535 136.108 830.176 167.421 827.291C174.839 826.586 182.258 825.919 189.677 825.291C191.284 825.143 192.891 825.007 194.499 824.87C204.575 824.004 214.652 823.188 224.729 822.422C237.984 821.396 251.242 820.436 264.505 819.541C272.801 818.985 281.093 818.454 289.382 817.947C301.746 817.181 314.118 816.472 326.499 815.82C328.317 815.72 330.122 815.62 331.94 815.536C347.704 814.707 363.485 813.953 379.282 813.273C386.961 812.951 394.652 812.638 402.354 812.333C412.134 811.95 421.934 811.592 431.754 811.258" stroke="white" stroke-width="3.709" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||||
|
<path d="M513.521 447.486C513.669 447.362 513.805 447.226 513.954 447.102C525.106 437.162 530.754 430.802 538.089 420.692C545.52 410.467 549.761 398.214 552.221 385.813C558.502 354.259 559.998 327.503 550.021 296.926C540.044 266.349 524.971 237.714 509.961 209.276C506.808 203.292 502.728 196.627 496.039 195.626C487.668 194.377 481.264 202.649 476.874 209.894C466.019 227.859 455.163 245.816 444.307 263.765C440.647 269.824 436.864 276.352 437.207 283.424C437.652 292.129 444.168 299.139 447.939 307.003C450.495 312.349 451.81 318.203 451.784 324.128" stroke="white" stroke-width="3.709" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||||
|
<path d="M211.438 432.377C203.055 426.59 204.279 415.438 203.364 405.299C202.449 395.16 202.239 384.292 196.403 375.946C190.975 368.181 177.98 364.146 168.942 361.282C149.742 355.199 133.394 347.199 113.303 348.448C105.031 348.967 95.461 351.02 91.851 358.475C89.575 363.175 90.392 368.725 91.331 373.869C96.574 402.554 110.249 433.551 119.41 461.469C142.01 530.362 235.659 553.879 253.81 552.68" stroke="white" stroke-width="3.709" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||||
|
<path d="M282.2 358.772C293.847 410.949 314.36 461.161 344.244 505.425C352.627 517.814 364.917 530.771 381.584 527.433C392.947 525.17 401.256 510.012 402.542 499.539C403.704 490.118 401.392 480.659 399.092 471.448C386.802 422.164 374.292 372.323 353.604 326.13C349.845 317.723 345.814 309.451 341.437 301.315C340.114 298.793 338.73 296.283 337.32 293.798C332.795 285.798 327.82 277.823 320.727 271.987C313.634 266.151 304.027 262.677 295.121 264.952C285.032 267.552 277.848 277.02 275.165 287.084C272.482 297.148 273.533 307.807 274.93 318.118C275.597 323.039 276.339 327.956 277.156 332.869C278.589 341.549 280.27 350.183 282.2 358.772Z" stroke="white" stroke-width="3.709" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||||
|
<path d="M354.06 325.933C384.908 315.935 417.912 314.618 449.46 322.125" stroke="white" stroke-width="3.709" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||||
|
<path d="M211.5 427.32C232.075 402.42 253.094 377.689 281.63 358.896" stroke="white" stroke-width="3.709" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||||
|
<path d="M376.105 784.647C376.29 784.473 376.476 784.313 376.661 784.14C435.713 730.232 518.022 702.709 597.635 710.288C597.722 710.3 597.796 710.3 597.882 710.313" stroke="white" stroke-width="3.709" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||||
|
<path d="M494.394 625.135C494.395 637.053 490.863 648.704 484.242 658.614C477.622 668.524 468.212 676.249 457.202 680.811C446.192 685.373 434.076 686.568 422.387 684.244C410.698 681.92 399.96 676.182 391.532 667.756C383.104 659.329 377.363 648.593 375.037 636.904C372.711 625.216 373.903 613.1 378.462 602.088C383.022 591.077 390.745 581.665 400.653 575.043C410.562 568.421 422.212 564.885 434.13 564.884C450.111 564.883 465.438 571.231 476.739 582.53C488.041 593.829 494.391 609.154 494.394 625.135Z" stroke="white" stroke-width="3.709" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||||
|
<path d="M506.869 625.135C506.871 639.52 502.606 653.583 494.615 665.545C486.625 677.506 475.266 686.83 461.976 692.336C448.687 697.842 434.062 699.284 419.953 696.479C405.844 693.674 392.884 686.748 382.711 676.577C372.538 666.406 365.61 653.447 362.802 639.338C359.994 625.229 361.434 610.605 366.937 597.314C372.441 584.024 381.763 572.663 393.723 564.67C405.683 556.677 419.745 552.41 434.13 552.409C443.682 552.408 453.14 554.288 461.965 557.942C470.79 561.597 478.808 566.953 485.563 573.707C492.317 580.46 497.675 588.478 501.331 597.302C504.987 606.126 506.869 615.584 506.869 625.135Z" stroke="white" stroke-width="3.709" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||||
|
<path d="M519.58 459.219C499.429 458.308 479.548 464.133 463.075 475.775" stroke="white" stroke-width="3.709" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||||
|
<path d="M463.075 475.775C473.666 502.18 486.025 527.841 500.069 552.582C500.069 552.594 500.081 552.594 500.081 552.607" stroke="white" stroke-width="3.709" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||||
|
<path d="M499.735 552.767L500.069 552.582C517.431 542.719 537.128 537.71 557.093 538.082" stroke="white" stroke-width="3.709" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||||
|
<path d="M268.214 588.611C268.264 588.525 268.314 588.451 268.375 588.364C276.325 575.184 292.535 560.619 307.421 556.625C307.582 556.588 307.743 556.538 307.904 556.501" stroke="white" stroke-width="3.709" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||||
|
<path d="M307.372 556.44C294.142 531.315 283.756 503.31 270.539 478.174C270.489 478.087 270.452 478.001 270.403 477.914" stroke="white" stroke-width="3.709" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||||
|
<path d="M270.835 478.063L270.535 478.174C258.109 482.786 243.605 494 237.3 505.585" stroke="white" stroke-width="3.709" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||||
|
<path d="M592.875 653.153L592.615 653.116C580.847 651.538 568.888 652.171 557.352 654.983C557.117 655.032 556.882 655.083 556.652 655.143" stroke="white" stroke-width="3.709" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||||
|
<path d="M596.794 700.693C584.695 698.377 572.269 698.348 560.159 700.607" stroke="white" stroke-width="3.709" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||||
|
<path d="M559.355 700.607C557.861 685.447 557.193 670.216 557.355 654.983V654.8" stroke="white" stroke-width="3.709" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||||
|
<path d="M502.591 546.56C502.443 546.115 502.291 545.683 502.158 545.25" stroke="white" stroke-width="3.709" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||||
|
<path d="M468.787 476.641C468.802 476.667 468.819 476.691 468.837 476.715C468.861 476.74 468.874 476.764 468.898 476.789" stroke="white" stroke-width="3.709" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||||
|
<path d="M470.16 478.569C469.628 477.815 469.01 476.95 468.837 476.715" stroke="white" stroke-width="3.709" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||||
|
<path d="M561.111 660.448C561 659.867 560.876 659.273 560.753 658.692" stroke="white" stroke-width="3.709" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||||
|
<path d="M299.582 553.138C299.137 552.273 299.15 552.298 298.705 551.42" stroke="white" stroke-width="3.709" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||||
|
<path d="M268.066 485.765C267.633 484.752 267.707 484.789 267.275 483.775" stroke="white" stroke-width="3.709" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||||
|
<path d="M368.142 773.704L368.043 773.729L346.542 780.257L343.241 785.537L335.674 797.654L332.36 802.946L331.927 815.384" stroke="white" stroke-width="3.709" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||||
|
<path d="M345.887 743.597L345.738 743.671L321.887 755.158L319.34 770.564L318.895 773.284L318.277 777.03L317.09 784.177L335.414 797.493" stroke="white" stroke-width="3.709" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||||
|
<path d="M319.489 770.44L319.34 770.564L306.16 782.013L299.632 787.676L290.037 810.364L289.382 817.944V818.005" stroke="white" stroke-width="3.709" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||||
|
<path d="M327.785 715.456L286.761 722.875L283.929 755.158L264.505 767.596V804.887V819.539V819.749" stroke="white" stroke-width="3.709" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||||
|
<path d="M224.791 822.58L224.729 822.419L214.541 797.703L222.504 794.019L232.519 789.382L244.215 783.967L251.523 791.496L264.505 804.887L264.728 805.122" stroke="white" stroke-width="3.709" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||||
|
<path d="M214.541 797.703L194.499 824.868L194.251 825.201" stroke="white" stroke-width="3.709" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||||
|
<path d="M222.392 793.784L209.744 773.049L185.3 774.36L169.152 802.068L167.421 827.291L167.408 827.377" stroke="white" stroke-width="3.709" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||||
|
<path d="M189.664 825.201L187.265 799.669L185.3 774.36" stroke="white" stroke-width="3.709" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||||
|
<path d="M299.632 787.676L312.726 799.236L323.631 802.29L326.475 815.384" stroke="white" stroke-width="3.709" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||||
|
<path d="M321.887 755.158L332.805 777.203L342.833 785.277" stroke="white" stroke-width="3.709" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||||
|
<path d="M346.542 780.257L353.528 795.75L372.297 803.168L379.27 812.985" stroke="white" stroke-width="3.709" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||||
|
<path d="M286.761 722.875L299.422 745.996L297.888 771.738L305.962 781.778" stroke="white" stroke-width="3.709" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||||
|
<path d="M595.286 743.597L595.434 743.709L617.542 760.178L623.217 782.866L642.418 797.271L642.196 809.622V809.709" stroke="white" stroke-width="3.709" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||||
|
<path d="M617.542 760.178L605.981 776.981L609.9 799.236L607.292 809.054" stroke="white" stroke-width="3.709" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||||
|
<path d="M656.885 810.006V809.833L657.466 773.346L678.423 754.144L688.945 751.708L713.624 745.996L728.461 761.711L746.155 812.244L746.488 813.196" stroke="white" stroke-width="3.709" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||||
|
<path d="M678.423 754.144L691.22 772.468L684.531 791.088L699.034 810.71L699.368 811.168" stroke="white" stroke-width="3.709" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||||
|
<path d="M688.896 751.523L679.004 721.564L653.398 711.673L644.088 697.12L614.995 698.863L597.536 721.267" stroke="white" stroke-width="3.709" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||||
|
<path d="M614.995 698.863L633.034 722.726L630.994 749.198L644.088 768.4L649.293 809.709L649.33 810.006" stroke="white" stroke-width="3.709" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||||
|
<path d="M481.757 870.8L469.245 876.042L448.881 908.92C449.746 909.501 474.19 919.973 474.19 919.973L526.553 915.893L514.337 887.962H501.243L481.757 870.8Z" stroke="white" stroke-width="3.709" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||||
|
<path d="M481.757 870.801L478.258 888.259L486.703 899.313L474.19 919.973" stroke="white" stroke-width="3.709" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||||
|
<path d="M491.068 785.562L467.786 815.236L488.15 823.965L506.919 822.222" stroke="white" stroke-width="3.709" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||||
|
<path d="M502.121 743.375L514.918 763.739L509.095 792.547L488.15 823.965" stroke="white" stroke-width="3.709" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||||
|
<path d="M491.068 778.873L466.623 769.859L445.097 781.778L431.756 811.255L431.138 812.615L448.584 816.695L467.786 815.236" stroke="white" stroke-width="3.709" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||||
|
<path d="M466.623 769.859L457.894 787.305L468.948 798.359L448.584 816.695" stroke="white" stroke-width="3.709" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||||
|
<path d="M544.234 831.087L562.125 826.945L557.847 820.107L546.843 802.513L533.972 796.838L515.87 803.378L507.042 822.283L505.175 826.289L544.234 831.087Z" stroke="white" stroke-width="3.709" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||||
|
<path d="M515.87 803.378L531.795 814.951L544.234 831.087" stroke="white" stroke-width="3.709" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||||
|
<path d="M589.4 830.654L622.56 836.181L640.884 868.476L613.831 871.676L597.041 875.261L594.691 875.768L579.791 878.946C579.791 878.946 563.211 877.487 561.468 877.487C559.725 877.487 570.197 849.272 570.197 849.272L580.954 847.813L589.4 830.654Z" stroke="white" stroke-width="3.709" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||||
|
<path d="M589.401 830.654L599.576 855.383L594.631 875.462" stroke="white" stroke-width="3.709" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||||
|
<path d="M409.167 891.746L399.35 902.663L394.762 911.17L402.836 912.258L415.114 913.631L434.266 915.757L438.841 906.805L432.51 890.658L409.167 891.746Z" stroke="white" stroke-width="3.709" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||||
|
<path d="M693.841 866.733L672.018 883.017L671.722 897.569L695.325 898.014L732.529 898.732L739.515 893.786L733.11 884.476L693.841 866.733Z" stroke="white" stroke-width="3.709" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||||
|
<path d="M277.821 869.057L266.904 886.948L278.687 891.746H293.635H317.523L327.563 881.273L310.104 862.949L277.821 869.057Z" stroke="white" stroke-width="3.709" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||||
|
<path d="M557.538 820.181L557.847 820.107L574.848 815.817L569.976 809.437H569.964L558.848 794.872L551.578 766.36L526.269 741.05L502.121 743.375L491.933 767.238L491.377 778.885L491.068 785.562" stroke="white" stroke-width="3.709" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||||
|
<path d="M563.065 696.687C562.929 696.255 562.78 695.809 562.632 695.377" stroke="white" stroke-width="3.709" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||||
|
<path d="M286.539 632.974L260.364 651.298L271.269 701.917L242.028 727.672L232.433 789.197" stroke="white" stroke-width="3.709" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||||
|
<path d="M260.363 651.3C261.228 652.611 288.727 683.163 288.727 683.163C288.727 683.163 283.927 712.837 282.619 713.27C281.311 713.703 259.93 728.985 259.93 728.985L251.63 791.385" stroke="white" stroke-width="3.709" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||||
|
<path d="M462.506 835.575L447.793 838.95L442.118 857.707L468.936 858.721L482.697 859.24L490.771 854.22V841.782L473.535 833.053L462.506 835.575Z" stroke="white" stroke-width="3.709" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||||
|
<path d="M462.407 835.451L462.506 835.575L472.88 849.126L468.936 858.721L468.812 859.018" stroke="white" stroke-width="3.709" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||||
|
<path d="M373.249 832.397L362.504 840.422L362.368 847.581L373.99 847.803L392.302 848.162L395.739 845.726L392.586 841.139L373.249 832.397Z" stroke="white" stroke-width="3.709" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||||
|
<path d="M373.249 832.397L371.023 840.212L373.99 847.803L374.04 847.939" stroke="white" stroke-width="3.709" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||||
|
<path d="M277.821 869.057L292.658 879.53L293.635 891.746" stroke="white" stroke-width="3.709" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||||
|
<path d="M693.841 866.733L689.328 882.584L695.325 898.014L695.436 898.299" stroke="white" stroke-width="3.709" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||||
|
<path d="M409.167 891.746L414.113 901.786L415.114 913.631L415.126 913.717" stroke="white" stroke-width="3.709" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||||
|
<path d="M623.517 39.9731L620.005 43.6231C618.852 44.8561 617.621 46.0121 616.557 47.3231L613.268 51.1651C612.727 51.8101 612.158 52.4311 611.64 53.0961L610.108 55.1061C594.199 75.6298 583.599 99.7621 579.249 125.363C577.088 138.007 576.53 150.873 577.588 163.657C578.815 176.378 581.416 188.928 585.345 201.089C589.304 213.247 594.309 225.039 600.305 236.332C606.26 247.692 612.791 258.739 619.873 269.432C634.019 290.932 649.673 311.453 664.883 332.672C676.454 352.289 687.163 372.538 695.55 393.679C703.903 414.772 709.941 436.909 711.087 459.165C712.156 464.648 712.93 470.184 713.407 475.75C713.843 481.368 713.943 487.007 713.707 492.637C713.116 504.061 711.1 515.366 707.707 526.29L706.845 526.79C706.291 527.115 705.488 527.596 704.427 528.181C702.307 529.354 699.462 531.069 696.08 533.044C689.337 537.052 680.687 542.009 673.123 547.956C665.553 553.931 658.947 561.087 656.442 570.338C653.951 579.563 655.587 590.905 665.075 604.413C669.835 611.154 671.801 617.834 671.808 624.229C671.805 625.823 671.676 627.415 671.42 628.988C671.201 630.536 670.873 632.067 670.438 633.569C669.524 636.64 668.275 639.6 666.713 642.397C660.381 653.917 649.162 664.258 637.871 674.974C632.285 680.338 626.544 685.82 621.415 691.488C616.541 696.809 612.078 702.492 608.063 708.488C607.163 709.862 606.226 711.21 605.428 712.519C604.663 713.86 603.94 715.127 603.258 716.319C602.564 717.558 601.917 718.713 601.315 719.784C600.75 720.873 600.294 721.884 599.843 722.816L597.027 728.816C593.179 719.012 590.696 708.725 589.648 698.245C588.582 687.48 588.645 676.632 589.836 665.88C590.046 663.856 590.394 661.848 590.879 659.871C591.548 656.988 592.378 654.145 593.367 651.356C595.987 643.804 599.151 636.451 602.833 629.356C607.232 620.789 612.089 612.465 617.381 604.419C618.738 602.298 620.13 600.203 621.556 598.133C622.974 596.043 624.41 593.933 625.81 591.961C628.637 587.913 631.465 583.97 634.248 580.094C645.448 564.651 655.326 550.703 661.518 540.394C664.677 535.249 666.966 531.044 668.498 528.12C669.311 526.658 669.854 525.52 670.222 524.739L670.799 523.552C674.37 518.005 677.488 512.179 680.122 506.131C680.442 505.394 680.809 504.659 681.1 503.917L681.937 501.687C682.475 500.194 683.144 498.715 683.575 497.187C684.048 495.666 684.592 494.15 684.969 492.587C685.389 491.036 685.834 489.481 686.15 487.887C689.017 474.551 689.596 460.825 687.862 447.295C685.951 432.534 682.408 418.03 677.298 404.049C671.957 389.298 665.656 374.913 658.436 360.985C654.88 354.81 651.189 348.677 647.363 342.585L641.533 333.395L635.618 324.155C627.704 311.811 619.712 299.348 612.072 286.548C604.297 273.709 597.183 260.481 590.757 246.916C584.261 233.189 579.034 218.896 575.14 204.216C571.275 189.453 569.298 174.26 569.255 158.999C569.197 157.099 569.32 155.192 569.415 153.292C569.51 151.392 569.591 149.492 569.715 147.6L570.322 141.941L570.622 139.117L571.075 136.317L571.999 130.722C572.347 128.866 572.799 127.03 573.199 125.187C573.932 121.487 575.052 117.881 576.051 114.258C576.512 112.435 577.221 110.683 577.795 108.898C578.421 107.127 578.956 105.33 579.659 103.589C581.095 100.121 582.351 96.5891 584.017 93.2351L586.394 88.1591L589.031 83.2171L590.349 80.7521C590.804 79.9401 591.307 79.1521 591.785 78.3521L594.679 73.5771C602.679 61.0866 612.385 49.7758 623.517 39.9731Z" fill="white"/>
|
||||||
|
<path d="M401 812.521L390.918 807.653C387.561 806.018 384.284 804.228 380.961 802.522C368.246 795.752 355.871 788.36 343.834 780.346C307.68 756.102 275.396 726.535 248.075 692.646C238.77 681.364 230.367 669.368 222.943 656.768C215.616 644.008 209.579 630.161 206.594 615.278C205.059 607.807 204.421 600.179 204.694 592.556C204.705 590.647 204.824 588.741 205.048 586.845L205.314 583.993C205.38 583.041 205.495 582.093 205.659 581.153C206.215 577.387 206.962 573.651 207.897 569.96C211.497 555.143 218.059 541.445 225.48 528.592C240.387 507.415 258.154 489.477 274.638 470.718C291.116 451.902 306.761 432.182 319.572 410.264C324.415 398.587 328.197 386.498 330.872 374.143C332.148 368.028 333.07 361.844 333.633 355.622C334.212 349.471 334.354 343.286 334.058 337.114C334.058 337.114 334.313 336.835 334.794 336.304C335.275 335.773 335.952 334.981 336.745 333.943C337.538 332.905 338.508 331.62 339.57 330.093C340.614 328.566 341.67 326.799 342.821 324.793C344.027 322.629 345.121 320.405 346.1 318.129C347.185 315.554 348.133 312.923 348.94 310.248C349.4 308.833 349.761 307.402 350.081 305.94C350.401 304.478 350.716 302.972 350.991 301.44C351.506 298.348 351.824 295.226 351.944 292.093C352.41 279.415 349.162 266.767 341.517 258.336C333.833 249.854 321.824 245.502 303.611 247.568C294.505 248.597 286.916 247.015 280.583 243.178C274.251 239.4 269.152 233.205 265.265 225.225C264.303 223.187 263.415 221.13 262.586 218.867C261.723 216.457 260.982 214.005 260.366 211.52C259.087 206.295 258.278 200.966 257.951 195.597C257.272 184.215 258.434 172.799 261.392 161.787C264.191 151.007 268.805 140.783 275.037 131.553C277.823 127.483 280.983 123.682 284.475 120.2C287.499 117.233 290.797 114.559 294.326 112.214C299.261 108.958 304.722 106.581 310.468 105.186C311.977 104.818 313.507 104.544 315.049 104.364L316.649 104.181C312.682 111.57 310.616 119.831 310.638 128.218C310.698 136.238 312.071 144.194 314.7 151.771C315.574 153.932 316.308 157.635 317.4 162.571C318.492 167.507 319.919 173.671 322.088 180.559C323.165 183.999 324.41 187.609 325.84 191.291C326.201 192.211 326.552 193.142 326.947 194.064C327.342 194.986 327.694 195.901 328.163 196.958C329.076 199.015 329.89 201.053 330.884 203.2C334.676 211.7 339.16 220.878 343.757 230.445C348.354 240.012 353.03 249.983 357.083 259.916C360.947 269.256 364.235 278.825 366.929 288.567L368.55 294.985C369.05 297.03 369.407 299.057 369.794 300.913C370.594 304.613 371.034 307.978 371.429 310.713C371.619 312.084 371.804 313.303 371.929 314.369C372.029 315.441 372.116 316.351 372.185 317.088C372.317 318.563 372.385 319.346 372.385 319.346C372.513 330.783 371.449 342.203 369.211 353.419C367.091 364.175 364.012 374.719 360.011 384.925C356.2 394.658 351.73 404.121 346.634 413.247C341.717 421.991 336.359 430.478 330.579 438.677C319.426 454.321 307.293 469.242 294.253 483.351C287.961 490.285 281.436 497.105 275.241 503.571C269.024 510.085 262.975 516.547 257.201 523.114C252.311 529.225 247.773 535.436 243.588 541.747C239.428 547.932 235.724 554.413 232.507 561.137C231.766 562.798 230.899 564.437 230.242 566.121L228.249 571.166C227.614 572.854 227.149 574.566 226.575 576.266C226.319 577.12 225.984 577.966 225.786 578.83L225.17 581.416C224.331 584.854 223.676 588.334 223.207 591.841C222.989 595.341 222.575 598.866 222.696 602.392C222.831 616.537 226.978 631.048 233.338 644.952C239.707 658.893 248.168 672.303 257.428 685.347C294.933 738.158 344.049 781.664 401 812.521Z" fill="white"/>
|
||||||
|
<path d="M613.986 411.307C614.448 415.765 615.336 420.168 616.638 424.456C617.898 428.746 619.503 432.926 621.438 436.956C625.266 444.932 629.747 452.396 633.764 459.93C636.651 464.915 639.189 470.094 641.358 475.43C643.454 480.621 644.811 486.081 645.389 491.649C646.203 497.438 646.062 503.32 644.972 509.063C643.82 514.968 642.003 520.723 639.556 526.219C634.934 534.976 629.045 542.975 622.822 550.763C617.306 557.958 611.546 565.046 606.27 572.572C603.392 577.826 600.88 583.273 598.75 588.872C595.36 593.867 592.678 599.306 590.779 605.036C590.001 608.912 589.469 612.834 589.186 616.777C588.941 620.706 588.9 624.644 589.061 628.577C589.249 632.504 589.629 636.413 590.161 640.303C590.733 644.186 591.459 648.04 592.338 651.865C590.84 641.876 590.597 631.739 591.615 621.69C592.688 611.806 595.215 602.075 599.862 593.843C602.866 587.442 606.452 581.33 610.575 575.586C614.675 569.731 619.152 564.053 623.635 558.3C629.442 550.423 635.318 542.338 640.08 533.527C644.838 524.761 648.641 515.265 650.036 505.246C650.357 501.982 650.406 498.697 650.183 495.424C649.917 492.188 649.362 488.983 648.526 485.845C646.824 479.687 644.325 473.778 641.093 468.267C636.805 456.782 630.616 445.854 626.133 434.599C621.321 426.061 618.313 416.625 617.294 406.877C616.824 402.002 617.218 397.081 618.457 392.342C619.737 387.559 622.19 383.171 625.594 379.576C621.507 383.016 618.381 387.456 616.521 392.464C614.639 397.59 613.693 403.012 613.727 408.472" fill="white"/>
|
||||||
|
<path d="M151.549 377.78C149.256 382.837 147.434 388.094 146.105 393.485C144.807 398.964 144.144 404.574 144.129 410.204C144.097 415.92 144.887 421.612 146.473 427.104C148.06 432.743 150.667 438.043 154.164 442.743C156.605 445.835 159.349 448.674 162.356 451.22C165.232 453.72 168.156 456.026 170.989 458.301C173.822 460.576 176.57 462.831 179.022 465.212C181.412 467.419 183.461 469.967 185.104 472.775C186.842 475.385 187.83 478.422 187.96 481.555C187.989 484.865 187.221 488.134 185.722 491.086C182.706 497.472 177.469 503.286 173.539 510.075C169.867 515.423 167.438 521.525 166.429 527.934C165.427 534.33 165.598 540.855 166.936 547.19C169.577 558.601 175.003 569.18 182.73 577.983C185.511 580.538 188.493 582.866 191.647 584.945C194.766 586.953 198.021 588.742 201.388 590.299C207.238 594.911 213.553 598.899 220.231 602.2C224.8 603.924 229.487 605.234 234.172 606.508C238.88 607.675 243.607 608.759 248.361 609.618C257.861 611.418 267.412 612.652 276.922 613.891C264.755 611.227 252.522 608.497 240.711 604.731C228.934 600.931 217.511 596.131 207.632 589.438C206.66 588.961 205.771 588.352 204.832 587.817C203.917 587.252 202.962 586.744 202.079 586.133C200.323 584.91 198.47 583.756 196.836 582.453C193.491 579.856 190.412 576.933 187.645 573.728C182.061 567.32 177.764 559.895 174.99 551.86C172.979 546.581 171.836 541.012 171.607 535.368C171.197 526.899 173.506 518.521 178.196 511.457C179.772 509.038 181.573 506.664 183.396 504.233C185.219 501.802 187.083 499.305 188.757 496.597C190.518 493.849 191.877 490.864 192.792 487.731C193.822 483.517 193.606 479.094 192.17 475.001C190.694 471.139 188.37 467.657 185.37 464.812C179.637 459.161 172.852 455.137 166.438 450.434C163.669 447.769 161.124 444.881 158.828 441.8C156.617 438.73 154.836 435.373 153.533 431.822C151.024 424.862 150.035 417.445 150.633 410.071C150.471 407.1 150.509 404.121 150.744 401.155C150.998 398.169 151.446 395.203 152.085 392.276C153.42 386.342 155.33 380.553 157.79 374.991C162.677 363.744 169.29 353.2 175.9 342.71C167.725 352.81 159.509 362.963 152.951 374.603" fill="white"/>
|
||||||
|
<path d="M384.261 77.7854C384.665 81.2418 385.376 84.6553 386.387 87.9854C387.423 91.2937 388.693 94.5245 390.187 97.6534C393.272 103.87 396.921 109.535 400.299 115.283C405.068 122.996 409.526 130.889 411.167 139.391C413.562 148.043 412.3 157.557 409.082 166.391C405.81 173.37 401.929 180.045 397.482 186.34C393.652 192.258 389.707 198.183 386.36 204.519C384.635 208.846 383.323 213.327 382.441 217.9C380.475 222.173 379.22 226.738 378.726 231.414C378.785 234.526 379.18 237.623 379.902 240.65C380.667 243.684 381.804 246.611 383.288 249.365C386.257 255.051 391.195 259.461 397.179 261.771C393.485 260.053 390.286 257.428 387.879 254.14C385.583 250.987 383.913 247.422 382.958 243.64C381.077 236.335 381.429 228.635 383.967 221.531C386.556 211.049 392.499 201.524 398.602 192.103C402.758 185.639 406.521 178.929 409.87 172.011C413.099 164.982 415.559 157.383 415.894 149.511C415.866 144.433 414.944 139.4 413.17 134.641C411.359 130.026 409.066 125.614 406.329 121.48C402.479 112.78 397.415 104.439 393.829 95.8044C390.07 89.1919 387.684 81.8893 386.813 74.3334C386.414 70.5526 386.697 66.7311 387.649 63.0504C388.642 59.3386 390.528 55.9259 393.142 53.1094C389.979 55.7945 387.564 59.2522 386.133 63.1464C384.688 67.1345 383.977 71.351 384.033 75.5924" fill="white"/>
|
||||||
|
<path d="M225.487 210.143C226.341 214.008 227.845 217.699 229.937 221.058C231.937 224.385 234.129 227.516 235.989 230.751C238.645 235.084 240.638 239.787 240.419 244.646C240.567 249.719 238.509 254.828 236.212 259.691C233.897 263.494 231.797 267.424 229.922 271.462C228.341 275.289 227.558 279.398 227.622 283.538C227.962 286.178 228.621 288.767 229.585 291.247C229.968 293.88 230.642 296.463 231.594 298.947C234.84 305.23 240.054 310.277 246.44 313.316C242.544 311.079 239.189 308.011 236.614 304.329C234.106 300.797 232.342 296.792 231.43 292.556C229.495 286.702 229.439 280.389 231.27 274.501C233.617 266.533 239.224 259.454 241.664 250.861C242.35 248.052 242.496 245.138 242.092 242.274C241.629 239.488 240.667 236.809 239.251 234.365C237.394 229.282 234.345 224.607 231.898 219.827C229.396 216.291 227.639 212.284 226.734 208.048C226.298 205.931 226.254 203.752 226.604 201.619C226.97 199.465 227.907 197.448 229.318 195.779C227.599 197.401 226.365 199.469 225.752 201.751C225.135 204.087 224.957 206.517 225.227 208.918" fill="white"/>
|
||||||
|
<path d="M588.523 464.965L572.813 444.892" stroke="white" stroke-width="3.709" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M590.189 444.825L572.027 466.781" stroke="white" stroke-width="3.709" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M459.29 189.236L446.214 177" stroke="white" stroke-width="3.709" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M445.162 191.64C449.286 185.273 453.411 178.907 457.537 172.54" stroke="white" stroke-width="3.709" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M169.593 270.337C163.772 268.209 158.432 264.946 153.883 260.737" stroke="white" stroke-width="3.709" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M154.072 274.818C157.512 269.258 160.951 263.698 164.389 258.138" stroke="white" stroke-width="3.709" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M769.384 358.585C761.942 357.527 754.472 361.871 750.142 368.014C745.812 374.157 744.166 381.808 743.574 389.301C742.085 408.817 747.019 428.285 757.622 444.737C761.58 450.837 766.847 456.808 773.963 458.322C781.079 459.836 789.784 454.531 789.15 447.284C788.503 439.904 779.378 436.284 772.027 437.199C757.138 439.059 745.651 452.582 742.236 467.193C738.821 481.804 742.044 497.168 746.922 511.357C751.8 525.546 758.339 539.203 761.845 553.792C765.351 568.381 765.524 584.53 758.125 597.583C750.726 610.636 734.225 619.176 720.145 613.998" stroke="#171717" stroke-width="3.709" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M109.321 557.441C121.627 555.835 134.114 561.254 143.228 569.678C152.342 578.102 158.48 589.255 163.328 600.678C166.682 608.578 169.541 616.978 169.028 625.547C168.515 634.116 163.95 642.912 156.042 646.247C145.679 650.62 134.054 644.61 124.706 638.356C119.337 634.764 113.46 629.833 113.919 623.39C114.504 615.174 124.833 611.531 133.042 612.209C139.961 612.78 146.654 614.949 152.592 618.545C158.531 622.14 163.555 627.065 167.269 632.931C170.982 638.797 173.284 645.444 173.993 652.351C174.703 659.257 173.8 666.234 171.356 672.732C167.513 682.951 159.949 691.799 158.166 702.571C155.224 720.345 172.458 738.433 190.355 736.355" stroke="white" stroke-width="3.709" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M526.481 131.649L516.845 122.962" stroke="#171717" stroke-width="3.709" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M516.288 132.589C519.482 128.221 522.676 123.852 525.869 119.483" stroke="#171717" stroke-width="3.709" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M107.626 602.862L98.0264 594.134" stroke="#171717" stroke-width="3.709" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M96.1455 606.227C100.806 601.213 104.455 595.347 106.893 588.95" stroke="#171717" stroke-width="3.709" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M731.5 576.012C728.366 573.599 725.233 571.186 722.1 568.772" stroke="#171717" stroke-width="3.709" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M722.122 578.459L730.876 561.891" stroke="#171717" stroke-width="3.709" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M723.612 320.431C717.736 317.182 712.742 312.548 709.062 306.931" stroke="white" stroke-width="3.709" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M709.037 319.268L721.307 303.599" stroke="white" stroke-width="3.709" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M762.553 743.083L754.529 733.627" stroke="white" stroke-width="3.709" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M751.731 745.124L764.822 729.414" stroke="white" stroke-width="3.709" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M119.263 284.332L127.036 284.965L120.718 289.537L122.519 297.126L116.218 292.531L109.556 296.587L111.979 289.175L106.062 284.093L113.862 284.107L116.866 276.91L119.263 284.332Z" fill="#171717"/>
|
||||||
|
<path d="M682.67 262.211L692.689 259.697L686.711 268.121L692.197 276.874L682.338 273.791L675.709 281.713L675.594 271.384L666.012 267.528L675.8 264.228L676.506 253.922L682.67 262.211Z" fill="white"/>
|
||||||
|
<path d="M472.672 130.288L480.631 132.235L473.318 135.93L473.926 144.101L468.151 138.288L460.568 141.39L464.314 134.102L459.019 127.85L467.107 129.159L471.418 122.191L472.672 130.288Z" fill="white"/>
|
||||||
|
<path d="M638.937 396.212L646.896 398.16L639.582 401.854L640.189 410.026L634.416 404.212L626.832 407.315L630.577 400.027L625.283 393.774L633.37 395.084L637.682 388.116L638.937 396.212Z" fill="#171717"/>
|
||||||
|
<path d="M92.1442 639.113L100.102 641.06L92.7892 644.756L93.3962 652.926L87.6232 647.113L80.0392 650.216L83.7842 642.929L78.4902 636.675L86.5772 637.984L90.8892 631.017L92.1442 639.113Z" fill="white"/>
|
||||||
|
<g opacity="0.1">
|
||||||
|
<path d="M292.085 264.294C273.925 270.135 269.834 293.436 270.802 309.894C272.102 331.983 278.102 353.54 284.384 374.669C290.775 396.03 298.273 417.045 306.848 437.627C314.38 455.793 322.073 474.227 332.49 490.973C337.811 499.526 344.201 508.712 352.145 515.03C359.899 521.196 369.211 527.284 379.045 529.272C386.063 530.691 389.08 522.321 383.704 518.22C377.423 513.428 371.483 509.012 366.365 502.906C361.316 497.124 356.616 491.047 352.29 484.706C342.815 470.241 335.69 454.412 328.89 438.56C313.09 401.745 301.373 363.593 289.974 325.252C286.847 314.735 282.739 304.305 283.307 293.145C283.781 283.817 288.486 275.424 294.637 268.679C296.312 266.843 294.707 263.448 292.083 264.292L292.085 264.294Z" fill="white"/>
|
||||||
|
</g>
|
||||||
|
<g opacity="0.1">
|
||||||
|
<path d="M94.9604 355.741C90.6604 372.724 92.9814 391.274 96.2534 408.284C99.8197 425.968 106.15 442.98 115.011 458.693C131.666 488.769 155.511 514.336 185.278 531.656C193.543 536.427 202.2 540.483 211.154 543.779C220.361 547.217 228.898 550.449 238.677 547.607C239.38 547.399 240.018 547.014 240.528 546.488C241.039 545.963 241.405 545.314 241.592 544.606C241.779 543.897 241.781 543.152 241.596 542.443C241.412 541.734 241.048 541.084 240.539 540.556C234.899 534.566 228.284 532.124 220.853 528.933C213.852 525.791 207.027 522.27 200.409 518.383C187.061 510.763 174.623 501.648 163.335 491.215C151.787 480.837 141.718 468.924 133.408 455.808C124.711 441.7 117.769 426.581 112.739 410.788C109.739 401.956 107.399 392.913 105.739 383.733C104.218 374.382 103.2 365.022 101.29 355.741C100.629 352.528 95.7314 352.701 94.9624 355.741H94.9604Z" fill="white"/>
|
||||||
|
</g>
|
||||||
|
<g opacity="0.1">
|
||||||
|
<path d="M435.808 281.227C436.971 288.686 440.263 296.532 442.793 303.645C445.323 310.758 448.214 317.715 451.126 324.668C457.126 338.992 463.782 353.077 470.473 367.088C476.992 380.741 483.73 394.286 490.687 407.723C494.149 414.41 497.38 421.363 501.651 427.576C504.007 431.003 506.357 434.231 508.443 437.837C510.543 441.471 512.23 444.152 515.823 446.469C519.29 448.705 524.076 445.782 524.005 441.774C523.878 434.643 518.937 427.903 516.295 421.402C513.413 414.31 509.654 407.671 506.129 400.885C499.009 387.18 492.117 373.36 485.452 359.424C478.922 345.771 472.769 331.959 466.522 318.177C463.41 311.31 460.31 304.429 457.008 297.652C453.687 290.838 450.586 283.023 446.261 276.82C442.433 271.33 434.81 274.82 435.808 281.227Z" fill="white"/>
|
||||||
|
</g>
|
||||||
|
<g opacity="0.1">
|
||||||
|
<path d="M236.623 359.514C225.772 370.336 218.88 384.391 214.574 399C209.774 415.292 211.866 433.309 215.283 449.649C218.962 467.24 225.318 483.981 231.708 500.723C237.708 516.442 243.763 532.14 249.872 547.815C274.394 610.308 301.117 672.441 336.072 729.909C345.61 745.591 355.767 760.901 366.638 775.692C372.338 783.445 378.178 791.092 384.426 798.413C390.738 805.808 396.809 813.813 405.135 818.955C412.415 823.455 419.39 814.798 416.102 807.988C412.552 800.633 406.712 794.736 401.674 788.336C396.958 782.345 392.311 776.296 387.733 770.189C378.057 757.327 368.916 744.086 360.31 730.465C343.253 703.332 327.799 675.223 314.027 646.284C286.036 588.144 262.265 527.576 240.084 467.007C233.608 449.322 229.197 431.685 229.056 412.807C228.928 395.544 231.547 379.507 242.924 365.815C246.524 361.48 240.76 355.395 236.624 359.515L236.623 359.514Z" fill="white"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<defs>
|
||||||
|
<clipPath id="clip0_1_5993">
|
||||||
|
<rect width="960" height="960" fill="white"/>
|
||||||
|
</clipPath>
|
||||||
|
</defs>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 48 KiB |
|
@ -0,0 +1,154 @@
|
||||||
|
<svg width="960" height="960" viewBox="0 0 960 960" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<g clip-path="url(#clip0_46_7729)">
|
||||||
|
<g clip-path="url(#clip1_46_7729)">
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M552.22 385.814C558.502 354.26 559.998 327.504 550.02 296.927C540.055 266.338 524.97 237.715 509.963 209.274C506.81 203.29 502.73 196.624 496.041 195.624C487.67 194.375 481.266 202.647 476.876 209.892C466.02 227.853 455.165 245.81 444.309 263.763C440.646 269.822 436.863 276.35 437.209 283.422C437.513 289.385 440.668 294.553 443.837 299.746C445.293 302.132 446.753 304.524 447.941 307.001C450.497 312.346 451.812 318.201 451.787 324.127L451.639 324.227C458.578 334.812 464.226 346.144 470.069 357.869C470.689 359.114 471.312 360.363 471.939 361.617C485.503 390.426 499.635 418.653 513.953 447.103C525.105 437.163 530.756 430.807 538.088 420.693C545.52 410.468 549.76 398.214 552.22 385.814ZM521.103 257.7C520.546 256.84 519.398 256.594 518.538 257.151C517.678 257.708 517.433 258.856 517.989 259.716C537.859 290.399 545.61 327.374 539.737 363.455C539.573 364.466 540.259 365.418 541.27 365.583C542.281 365.747 543.234 365.061 543.398 364.05C549.419 327.062 541.472 289.156 521.103 257.7Z" fill="white"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M353.601 326.131C349.842 317.723 345.811 309.451 341.434 301.315C340.111 298.793 338.727 296.283 337.317 293.801C332.792 285.801 327.808 277.84 320.724 271.991C313.64 266.142 304.018 262.68 295.118 264.955C285.029 267.552 277.845 277.022 275.162 287.087C272.479 297.152 273.527 307.81 274.927 318.122C275.595 323.046 276.337 327.962 277.153 332.872C278.587 341.557 280.269 350.19 282.197 358.772C293.841 410.949 314.357 461.161 344.241 505.425C352.624 517.814 364.914 530.771 381.581 527.433C392.939 525.17 401.253 510.012 402.539 499.539C403.701 490.118 401.389 480.659 399.089 471.448C386.801 422.164 374.286 372.323 353.601 326.131ZM324.312 292.412C323.815 291.516 322.686 291.193 321.79 291.691C320.895 292.188 320.572 293.317 321.069 294.212C352.686 351.163 373.25 413.579 381.678 478.17C381.81 479.186 382.741 479.901 383.756 479.769C384.772 479.636 385.488 478.706 385.355 477.69C376.868 412.635 356.156 349.772 324.312 292.412Z" fill="white"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M577.322 809.128C586.452 788.298 592.552 766.268 595.435 743.709C596.4 736.245 597.045 728.76 597.369 721.255C597.53 717.595 597.616 713.948 597.641 710.288C518.028 702.709 435.719 730.232 376.667 784.14C381.737 790.087 386.967 795.898 392.357 801.573C395.634 805.019 398.96 808.411 402.335 811.749L402.36 812.33C412.143 811.946 421.943 811.588 431.76 811.255L445.101 781.778L466.624 769.859L491.069 778.872L491.378 778.885L491.934 767.238L502.122 743.375L526.27 741.05L551.579 766.36L558.849 794.872L569.965 809.437H569.977L570.336 809.153H570.358C572.675 809.153 575.004 809.153 577.322 809.165V809.128ZM587.022 726.738C586.988 725.715 586.131 724.913 585.107 724.947C584.083 724.981 583.281 725.839 583.315 726.862C584.018 747.899 579.795 768.808 570.985 787.924C570.556 788.854 570.963 789.956 571.893 790.385C572.823 790.813 573.924 790.407 574.353 789.477C583.406 769.836 587.744 748.352 587.022 726.738Z" fill="white"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M434.131 564.884C446.049 564.883 457.701 568.416 467.611 575.037C477.522 581.657 485.246 591.068 489.808 602.079C494.369 613.09 495.563 625.207 493.238 636.896C490.914 648.586 485.174 659.324 476.747 667.751C468.319 676.179 457.581 681.918 445.892 684.243C434.202 686.568 422.086 685.374 411.075 680.812C400.064 676.25 390.653 668.526 384.032 658.615C377.412 648.705 373.878 637.054 373.88 625.135C373.882 609.156 380.231 593.833 391.529 582.534C402.828 571.235 418.152 564.886 434.131 564.884ZM459.865 582.829C460.671 581.727 462.219 581.487 463.321 582.294C472.553 589.05 479.279 598.682 482.443 609.675C485.607 620.669 485.031 632.402 480.803 643.032C480.299 644.301 478.861 644.921 477.592 644.417C476.322 643.912 475.703 642.474 476.207 641.205C480.03 631.593 480.551 620.984 477.69 611.043C474.829 601.103 468.747 592.394 460.4 586.285C459.298 585.479 459.058 583.931 459.865 582.829ZM412.581 590.754C412.642 590.074 412.14 589.473 411.46 589.412C410.78 589.352 410.179 589.854 410.118 590.534L409.267 600.038L402.409 595.708L401.759 595.298L401.104 595.698L393.249 600.498C392.666 600.854 392.482 601.615 392.838 602.198C393.195 602.781 393.956 602.965 394.538 602.609L401.738 598.209L409.019 602.807L407.5 619.772L407.413 620.74L408.333 621.053L414.34 623.098L411.28 631.515L391.384 637.017L390.23 637.336L390.512 638.5L394.003 652.901C394.164 653.565 394.832 653.973 395.496 653.812C396.16 653.651 396.567 652.982 396.407 652.319L393.198 639.082L412.553 633.729L413.168 633.559L413.386 632.96L416.682 623.895L427.864 627.701L426.485 636.758C426.424 636.921 426.399 637.092 426.409 637.261L424.964 646.751C424.861 647.426 425.325 648.057 426 648.159C426.675 648.262 427.306 647.798 427.409 647.123L428.598 639.314L436.121 644.33L436.905 644.852L437.616 644.235L444.161 638.562C444.677 638.115 444.733 637.334 444.286 636.818C443.839 636.302 443.058 636.246 442.542 636.694L436.709 641.749L429.009 636.616L430.465 627.05L430.621 626.027L429.641 625.694L410.05 619.025L410.534 613.612L431.116 611.512L432.446 611.376L432.207 610.061L430.99 610.282C432.207 610.061 432.207 610.06 432.207 610.06L432.207 610.06L432.206 610.058L432.205 610.05L432.199 610.019L432.177 609.897L432.092 609.434C432.019 609.034 431.913 608.458 431.783 607.759C431.524 606.359 431.169 604.461 430.787 602.467C430.029 598.514 429.144 594.081 428.688 592.486C428.501 591.829 427.816 591.449 427.16 591.637C426.503 591.824 426.123 592.509 426.31 593.165C426.728 594.627 427.589 598.922 428.358 602.933C428.739 604.92 429.093 606.813 429.352 608.209C429.419 608.571 429.48 608.9 429.533 609.188L410.759 611.103L412.581 590.754Z" fill="#171717"/>
|
||||||
|
<path d="M728.461 761.711L746.155 812.244C730.44 811.638 714.733 811.127 699.034 810.71L684.534 791.088L691.223 772.468L678.423 754.144L688.945 751.708L713.624 746L728.461 761.711Z" fill="white"/>
|
||||||
|
<path d="M684.531 791.088L699.031 810.71C684.986 810.352 670.937 810.06 656.882 809.833L657.463 773.346L678.42 754.146L691.22 772.47L684.531 791.088Z" fill="#171717"/>
|
||||||
|
<path d="M689.328 882.584L695.325 898.014L671.722 897.569L672.018 883.017L693.841 866.733L689.328 882.584Z" fill="#171717"/>
|
||||||
|
<path d="M644.089 768.4L649.294 809.709C646.933 809.672 644.559 809.647 642.194 809.622L642.417 797.27L623.217 782.87L617.542 760.182L595.434 743.712C596.398 736.246 597.041 728.761 597.363 721.259L597.536 721.271L615.001 698.863L633.04 722.726L631 749.198L644.089 768.4Z" fill="#171717"/>
|
||||||
|
<path d="M617.542 760.178L605.981 776.978L609.9 799.233L607.292 809.051V809.273C597.302 809.211 587.311 809.174 577.321 809.162V809.125C586.451 788.295 592.551 766.265 595.434 743.706L617.542 760.178Z" fill="#171717"/>
|
||||||
|
<path d="M589.4 830.654L599.575 855.383L594.63 875.462L594.691 875.771L579.791 878.949C579.791 878.949 563.211 877.49 561.468 877.49C559.725 877.49 570.197 849.275 570.197 849.275L580.954 847.816L589.4 830.654Z" fill="#171717"/>
|
||||||
|
<path d="M557.847 820.107L562.125 826.945L544.234 831.087L531.795 814.951L515.87 803.378L533.972 796.838L546.843 802.513L557.847 820.107Z" fill="white"/>
|
||||||
|
<path d="M531.795 814.951L544.234 831.087L505.175 826.289L507.042 822.283L515.87 803.378L531.795 814.951Z" fill="#171717"/>
|
||||||
|
<path d="M514.337 887.962L526.553 915.893L474.19 919.973L486.703 899.313L478.258 888.259L481.757 870.801L501.243 887.962H514.337Z" fill="white"/>
|
||||||
|
<path d="M502.121 743.375L514.918 763.739L509.095 792.547L488.15 823.965L467.786 815.236L491.068 785.562L491.377 778.885L491.933 767.238L502.121 743.375Z" fill="#171717"/>
|
||||||
|
<path d="M478.258 888.259L486.703 899.313L474.19 919.973C474.19 919.973 449.746 909.5 448.881 908.92L469.245 876.043L481.757 870.801L478.258 888.259Z" fill="#171717"/>
|
||||||
|
<path d="M462.506 835.575L472.88 849.126L468.936 858.721L442.118 857.707L447.793 838.95L462.506 835.575Z" fill="#171717"/>
|
||||||
|
<path d="M468.948 798.359L448.584 816.695L431.138 812.615L431.756 811.255L445.097 781.778L466.623 769.859L457.894 787.305L468.948 798.359Z" fill="#171717"/>
|
||||||
|
<path d="M414.113 901.786L415.114 913.631L402.836 912.258L394.762 911.17L399.35 902.663L409.167 891.746L414.113 901.786Z" fill="#171717"/>
|
||||||
|
<path d="M379.27 812.985L379.282 813.27C363.482 813.95 347.701 814.704 331.94 815.532L331.927 815.384L332.36 802.946L335.674 797.654L343.241 785.537L346.541 780.257L353.527 795.75L372.296 803.168L379.27 812.985Z" fill="#171717"/>
|
||||||
|
<path d="M371.023 840.212L373.99 847.803L362.368 847.581L362.504 840.422L373.249 832.397L371.023 840.212Z" fill="#171717"/>
|
||||||
|
<path d="M319.34 770.564L321.887 755.158L332.805 777.203L342.833 785.277L343.241 785.537L335.674 797.654L335.414 797.493L317.09 784.177L318.277 777.03L318.895 773.284L319.34 770.564Z" fill="#171717"/>
|
||||||
|
<path d="M327.785 715.456L286.761 722.875L283.929 755.158L264.505 767.6V804.891L251.523 791.5L251.634 791.389L259.934 728.989C259.934 728.989 281.312 713.706 282.623 713.274C283.934 712.842 288.731 683.167 288.731 683.167C288.731 683.167 261.231 652.615 260.367 651.304L286.542 632.98H286.554C298.449 660.651 311.53 687.828 326.8 713.805C327.118 714.356 327.451 714.912 327.785 715.456Z" fill="white"/>
|
||||||
|
<path d="M310.104 862.949L327.563 881.273L317.523 891.746H293.635L292.658 879.53L277.821 869.057L310.104 862.949Z" fill="white"/>
|
||||||
|
<path d="M326.475 815.384L326.499 815.817C314.11 816.472 301.737 817.181 289.382 817.943L290.037 810.364L299.637 787.676L312.731 799.236L323.631 802.29L326.475 815.384Z" fill="#171717"/>
|
||||||
|
<path d="M264.505 804.887V767.6L283.929 755.162L286.761 722.879L299.422 746L297.888 771.742L305.962 781.782L306.162 782.017L299.634 787.68L290.034 810.368L289.379 817.948C281.082 818.455 272.789 818.989 264.502 819.548L264.505 804.887Z" fill="#171717"/>
|
||||||
|
<path d="M292.658 879.53L293.635 891.746H278.687L266.904 886.948L277.821 869.057L292.658 879.53Z" fill="#171717"/>
|
||||||
|
<path d="M288.727 683.161C288.727 683.161 283.927 712.835 282.619 713.268C281.311 713.701 259.93 728.983 259.93 728.983L251.63 791.383L251.519 791.494L244.211 783.965L232.511 789.38L232.424 789.195L242.019 727.67L271.26 701.915L260.36 651.296C261.228 652.609 288.727 683.161 288.727 683.161Z" fill="#171717"/>
|
||||||
|
<path d="M253.81 552.681C235.659 553.881 142.01 530.363 119.41 461.47C110.249 433.551 96.5741 402.554 91.3311 373.87C90.3921 368.726 89.5751 363.17 91.8501 358.476C95.4611 351.021 105.031 348.968 113.302 348.449C133.394 347.2 149.74 355.2 168.942 361.283C177.98 364.152 190.975 368.183 196.403 375.947C202.239 384.293 202.449 395.161 203.364 405.3C204.279 415.439 203.055 426.591 211.438 432.378L212.006 432.303C213.849 445.803 218.188 459.023 223.006 471.659C227.382 483.12 232.031 494.483 236.594 505.871C238.733 511.2 240.86 516.541 242.924 521.895C246.831 532.046 250.714 542.212 254.571 552.395L253.81 552.681Z" fill="white"/>
|
||||||
|
<path d="M214.541 797.7L224.729 822.416C214.652 823.184 204.575 824 194.499 824.864L214.541 797.7Z" fill="#171717"/>
|
||||||
|
<path d="M189.664 825.2L189.677 825.287C182.258 825.931 174.84 826.597 167.421 827.287L169.152 802.064L185.3 774.36L187.265 799.669L189.664 825.2Z" fill="#171717"/>
|
||||||
|
<path d="M276.648 332.956C246.603 351.465 213.392 375.835 211.216 414.275C210.979 418.623 211.057 422.983 211.451 427.32C211.599 428.989 211.785 430.646 212.007 432.302C213.85 445.802 218.189 459.021 223.007 471.658C227.383 483.119 232.032 494.482 236.595 505.87C238.734 511.199 240.861 516.54 242.925 521.894C246.832 532.045 250.714 542.211 254.572 552.394C259.123 564.4 263.723 576.389 268.372 588.362C272.438 598.773 276.601 609.15 280.86 619.495C282.726 623.996 284.622 628.489 286.547 632.972C298.442 660.644 311.523 687.82 326.793 713.797C327.115 714.354 327.448 714.91 327.782 715.454C333.456 725.049 339.441 734.455 345.735 743.67C352.783 753.981 360.218 764 368.04 773.727C370.847 777.239 373.72 780.709 376.658 784.138C381.724 790.085 386.954 795.896 392.348 801.571C395.624 805.009 398.95 808.401 402.326 811.747" stroke="#171717" stroke-width="3.709" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||||
|
<path d="M577.321 809.128C586.451 788.298 592.551 766.268 595.434 743.709C596.399 736.242 597.042 728.758 597.363 721.255C597.524 717.595 597.61 713.948 597.635 710.288C597.635 707.088 597.594 703.882 597.512 700.669C597.019 684.721 595.382 668.829 592.612 653.116C585.849 613.933 572.817 575.11 557.251 538.016C549.857 520.409 541.894 503.186 533.758 486.494C529.158 477.283 524.558 468.129 519.958 459.033C517.958 455.039 515.955 451.062 513.949 447.101C499.631 418.651 485.499 390.424 471.935 361.615C465.407 348.558 459.311 335.934 451.635 324.225C451.091 323.397 450.547 322.581 449.978 321.765C444.9 314.219 438.995 307.264 432.372 301.03C406.407 277.538 369.326 291.139 341.432 301.314H341.42" stroke="#171717" stroke-width="3.709" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||||
|
<path d="M570.335 809.153C572.659 809.153 574.996 809.153 577.321 809.165C587.311 809.177 597.301 809.214 607.292 809.276C618.926 809.35 630.559 809.466 642.192 809.622C644.553 809.647 646.927 809.672 649.292 809.709C651.827 809.746 654.361 809.783 656.884 809.833C670.942 810.055 684.992 810.348 699.033 810.711C714.736 811.131 730.443 811.642 746.154 812.244C792.94 814.074 839.726 816.868 886.612 821.022" stroke="#171717" stroke-width="3.709" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||||
|
<path d="M73.4521 837.368C104.785 833.535 136.108 830.176 167.421 827.291C174.839 826.586 182.258 825.919 189.677 825.291C191.284 825.143 192.891 825.007 194.499 824.87C204.575 824.004 214.652 823.188 224.729 822.422C237.984 821.396 251.242 820.436 264.505 819.541C272.801 818.985 281.093 818.454 289.382 817.947C301.746 817.181 314.118 816.472 326.499 815.82C328.317 815.72 330.122 815.62 331.94 815.536C347.704 814.707 363.485 813.953 379.282 813.273C386.961 812.951 394.652 812.638 402.354 812.333C412.134 811.95 421.934 811.592 431.754 811.258" stroke="#171717" stroke-width="3.709" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||||
|
<path d="M513.521 447.486C513.669 447.362 513.805 447.226 513.954 447.102C525.106 437.162 530.754 430.802 538.089 420.692C545.52 410.467 549.761 398.214 552.221 385.813C558.502 354.259 559.998 327.503 550.021 296.926C540.044 266.349 524.971 237.714 509.961 209.276C506.808 203.292 502.728 196.627 496.039 195.626C487.668 194.377 481.264 202.649 476.874 209.894C466.019 227.859 455.163 245.816 444.307 263.765C440.647 269.824 436.864 276.352 437.207 283.424C437.652 292.129 444.168 299.139 447.939 307.003C450.495 312.349 451.81 318.203 451.784 324.128" stroke="#171717" stroke-width="3.709" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||||
|
<path d="M211.438 432.377C203.055 426.59 204.279 415.438 203.364 405.299C202.449 395.16 202.239 384.292 196.403 375.946C190.975 368.181 177.98 364.146 168.942 361.282C149.742 355.199 133.394 347.199 113.303 348.448C105.031 348.967 95.461 351.02 91.851 358.475C89.575 363.175 90.392 368.725 91.331 373.869C96.574 402.554 110.249 433.551 119.41 461.469C142.01 530.362 235.659 553.879 253.81 552.68" stroke="#171717" stroke-width="3.709" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||||
|
<path d="M282.2 358.772C293.847 410.949 314.36 461.161 344.244 505.425C352.627 517.814 364.917 530.771 381.584 527.433C392.947 525.17 401.256 510.012 402.542 499.539C403.704 490.118 401.392 480.659 399.092 471.448C386.802 422.164 374.292 372.323 353.604 326.13C349.845 317.723 345.814 309.451 341.437 301.315C340.114 298.793 338.73 296.283 337.32 293.798C332.795 285.798 327.82 277.823 320.727 271.987C313.634 266.151 304.027 262.677 295.121 264.952C285.032 267.552 277.848 277.02 275.165 287.084C272.482 297.148 273.533 307.807 274.93 318.118C275.597 323.039 276.339 327.956 277.156 332.869C278.589 341.549 280.27 350.183 282.2 358.772Z" stroke="#171717" stroke-width="3.709" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||||
|
<path d="M354.06 325.933C384.908 315.935 417.912 314.618 449.46 322.125" stroke="#171717" stroke-width="3.709" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||||
|
<path d="M211.5 427.32C232.075 402.42 253.094 377.689 281.63 358.896" stroke="#171717" stroke-width="3.709" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||||
|
<path d="M376.105 784.647C376.29 784.473 376.476 784.313 376.661 784.14C435.713 730.232 518.022 702.709 597.635 710.288C597.722 710.3 597.796 710.3 597.882 710.313" stroke="#171717" stroke-width="3.709" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||||
|
<path d="M494.394 625.135C494.395 637.053 490.863 648.704 484.242 658.614C477.622 668.524 468.212 676.249 457.202 680.811C446.192 685.373 434.076 686.568 422.387 684.244C410.698 681.92 399.96 676.182 391.532 667.756C383.104 659.329 377.363 648.593 375.037 636.904C372.711 625.216 373.903 613.1 378.462 602.088C383.022 591.077 390.745 581.665 400.653 575.043C410.562 568.421 422.212 564.885 434.13 564.884C450.111 564.883 465.438 571.231 476.739 582.53C488.041 593.829 494.391 609.154 494.394 625.135Z" stroke="#171717" stroke-width="3.709" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||||
|
<path d="M506.869 625.135C506.871 639.52 502.606 653.583 494.615 665.545C486.625 677.506 475.266 686.83 461.976 692.336C448.687 697.842 434.062 699.284 419.953 696.479C405.844 693.674 392.884 686.748 382.711 676.577C372.538 666.406 365.61 653.447 362.802 639.338C359.994 625.229 361.434 610.605 366.937 597.314C372.441 584.024 381.763 572.663 393.723 564.67C405.683 556.677 419.745 552.41 434.13 552.409C443.682 552.408 453.14 554.288 461.965 557.942C470.79 561.597 478.808 566.953 485.563 573.707C492.317 580.46 497.675 588.478 501.331 597.302C504.987 606.126 506.869 615.584 506.869 625.135V625.135Z" stroke="#171717" stroke-width="3.709" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||||
|
<path d="M519.58 459.219C499.429 458.308 479.548 464.133 463.075 475.775" stroke="#171717" stroke-width="3.709" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||||
|
<path d="M463.075 475.775C473.666 502.18 486.025 527.841 500.069 552.582C500.069 552.594 500.081 552.594 500.081 552.607" stroke="#171717" stroke-width="3.709" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||||
|
<path d="M499.735 552.767L500.069 552.582C517.431 542.719 537.128 537.71 557.093 538.082" stroke="#171717" stroke-width="3.709" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||||
|
<path d="M268.214 588.611C268.264 588.525 268.314 588.451 268.375 588.364C276.325 575.184 292.535 560.619 307.421 556.625C307.582 556.588 307.743 556.538 307.904 556.501" stroke="#171717" stroke-width="3.709" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||||
|
<path d="M307.372 556.44C294.142 531.315 283.756 503.31 270.539 478.174C270.489 478.087 270.452 478.001 270.403 477.914" stroke="#171717" stroke-width="3.709" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||||
|
<path d="M270.835 478.063L270.535 478.174C258.109 482.786 243.605 494 237.3 505.585" stroke="#171717" stroke-width="3.709" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||||
|
<path d="M592.875 653.153L592.615 653.116C580.847 651.538 568.888 652.171 557.352 654.983C557.117 655.032 556.882 655.083 556.652 655.143" stroke="#171717" stroke-width="3.709" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||||
|
<path d="M596.794 700.693C584.695 698.377 572.269 698.348 560.159 700.607" stroke="#171717" stroke-width="3.709" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||||
|
<path d="M559.355 700.607C557.861 685.447 557.193 670.216 557.355 654.983V654.8" stroke="#171717" stroke-width="3.709" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||||
|
<path d="M502.591 546.56C502.443 546.115 502.291 545.683 502.158 545.25" stroke="#171717" stroke-width="3.709" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||||
|
<path d="M468.787 476.641C468.802 476.667 468.819 476.691 468.837 476.715C468.861 476.74 468.874 476.764 468.898 476.789" stroke="#171717" stroke-width="3.709" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||||
|
<path d="M470.16 478.569C469.628 477.815 469.01 476.95 468.837 476.715" stroke="#171717" stroke-width="3.709" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||||
|
<path d="M561.111 660.448C561 659.867 560.876 659.273 560.753 658.692" stroke="#171717" stroke-width="3.709" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||||
|
<path d="M299.582 553.138C299.137 552.273 299.15 552.298 298.705 551.42" stroke="#171717" stroke-width="3.709" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||||
|
<path d="M268.066 485.765C267.633 484.752 267.707 484.789 267.275 483.775" stroke="#171717" stroke-width="3.709" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||||
|
<path d="M368.142 773.704L368.043 773.729L346.542 780.257L343.241 785.537L335.674 797.654L332.36 802.946L331.927 815.384" stroke="#171717" stroke-width="3.709" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||||
|
<path d="M345.887 743.597L345.738 743.671L321.887 755.158L319.34 770.564L318.895 773.284L318.277 777.03L317.09 784.177L335.414 797.493" stroke="#171717" stroke-width="3.709" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||||
|
<path d="M319.489 770.44L319.34 770.564L306.16 782.013L299.632 787.676L290.037 810.364L289.382 817.944V818.005" stroke="#171717" stroke-width="3.709" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||||
|
<path d="M327.785 715.456L286.761 722.875L283.929 755.158L264.505 767.596V804.887V819.539V819.749" stroke="#171717" stroke-width="3.709" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||||
|
<path d="M224.791 822.58L224.729 822.419L214.541 797.703L222.504 794.019L232.519 789.382L244.215 783.967L251.523 791.496L264.505 804.887L264.728 805.122" stroke="#171717" stroke-width="3.709" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||||
|
<path d="M214.541 797.703L194.499 824.868L194.251 825.201" stroke="#171717" stroke-width="3.709" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||||
|
<path d="M222.392 793.784L209.744 773.049L185.3 774.36L169.152 802.068L167.421 827.291L167.408 827.377" stroke="#171717" stroke-width="3.709" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||||
|
<path d="M189.664 825.201L187.265 799.669L185.3 774.36" stroke="#171717" stroke-width="3.709" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||||
|
<path d="M299.632 787.676L312.726 799.236L323.631 802.29L326.475 815.384" stroke="#171717" stroke-width="3.709" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||||
|
<path d="M321.887 755.158L332.805 777.203L342.833 785.277" stroke="#171717" stroke-width="3.709" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||||
|
<path d="M346.542 780.257L353.528 795.75L372.297 803.168L379.27 812.985" stroke="#171717" stroke-width="3.709" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||||
|
<path d="M286.761 722.875L299.422 745.996L297.888 771.738L305.962 781.778" stroke="#171717" stroke-width="3.709" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||||
|
<path d="M595.286 743.597L595.434 743.709L617.542 760.178L623.217 782.866L642.418 797.271L642.196 809.622V809.709" stroke="#171717" stroke-width="3.709" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||||
|
<path d="M617.542 760.178L605.981 776.981L609.9 799.236L607.292 809.054" stroke="#171717" stroke-width="3.709" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||||
|
<path d="M656.885 810.006V809.833L657.466 773.346L678.423 754.144L688.945 751.708L713.624 745.996L728.461 761.711L746.155 812.244L746.488 813.196" stroke="#171717" stroke-width="3.709" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||||
|
<path d="M678.423 754.144L691.22 772.468L684.531 791.088L699.034 810.71L699.368 811.168" stroke="#171717" stroke-width="3.709" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||||
|
<path d="M688.896 751.523L679.004 721.564L653.398 711.673L644.088 697.12L614.995 698.863L597.536 721.267" stroke="#171717" stroke-width="3.709" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||||
|
<path d="M614.995 698.863L633.034 722.726L630.994 749.198L644.088 768.4L649.293 809.709L649.33 810.006" stroke="#171717" stroke-width="3.709" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||||
|
<path d="M481.757 870.8L469.245 876.042L448.881 908.92C449.746 909.501 474.19 919.973 474.19 919.973L526.553 915.893L514.337 887.962H501.243L481.757 870.8Z" stroke="#171717" stroke-width="3.709" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||||
|
<path d="M481.757 870.801L478.258 888.259L486.703 899.313L474.19 919.973" stroke="#171717" stroke-width="3.709" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||||
|
<path d="M491.068 785.562L467.786 815.236L488.15 823.965L506.919 822.222" stroke="#171717" stroke-width="3.709" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||||
|
<path d="M502.121 743.375L514.918 763.739L509.095 792.547L488.15 823.965" stroke="#171717" stroke-width="3.709" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||||
|
<path d="M491.068 778.873L466.623 769.859L445.097 781.778L431.756 811.255L431.138 812.615L448.584 816.695L467.786 815.236" stroke="#171717" stroke-width="3.709" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||||
|
<path d="M466.623 769.859L457.894 787.305L468.948 798.359L448.584 816.695" stroke="#171717" stroke-width="3.709" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||||
|
<path d="M544.234 831.087L562.125 826.945L557.847 820.107L546.843 802.513L533.972 796.838L515.87 803.378L507.042 822.283L505.175 826.289L544.234 831.087Z" stroke="#171717" stroke-width="3.709" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||||
|
<path d="M515.87 803.378L531.795 814.951L544.234 831.087" stroke="#171717" stroke-width="3.709" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||||
|
<path d="M589.4 830.654L622.56 836.181L640.884 868.476L613.831 871.676L597.041 875.261L594.691 875.768L579.791 878.946C579.791 878.946 563.211 877.487 561.468 877.487C559.725 877.487 570.197 849.272 570.197 849.272L580.954 847.813L589.4 830.654Z" stroke="#171717" stroke-width="3.709" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||||
|
<path d="M589.401 830.654L599.576 855.383L594.631 875.462" stroke="#171717" stroke-width="3.709" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||||
|
<path d="M409.167 891.746L399.35 902.663L394.762 911.17L402.836 912.258L415.114 913.631L434.266 915.757L438.841 906.805L432.51 890.658L409.167 891.746Z" stroke="#171717" stroke-width="3.709" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||||
|
<path d="M693.841 866.733L672.018 883.017L671.722 897.569L695.325 898.014L732.529 898.732L739.515 893.786L733.11 884.476L693.841 866.733Z" stroke="#171717" stroke-width="3.709" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||||
|
<path d="M277.821 869.057L266.904 886.948L278.687 891.746H293.635H317.523L327.563 881.273L310.104 862.949L277.821 869.057Z" stroke="#171717" stroke-width="3.709" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||||
|
<path d="M557.538 820.181L557.847 820.107L574.848 815.817L569.976 809.437H569.964L558.848 794.872L551.578 766.36L526.269 741.05L502.121 743.375L491.933 767.238L491.377 778.885L491.068 785.562" stroke="#171717" stroke-width="3.709" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||||
|
<path d="M563.065 696.687C562.929 696.255 562.78 695.809 562.632 695.377" stroke="#171717" stroke-width="3.709" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||||
|
<path d="M286.539 632.974L260.364 651.298L271.269 701.917L242.028 727.672L232.433 789.197" stroke="#171717" stroke-width="3.709" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||||
|
<path d="M260.363 651.3C261.228 652.611 288.727 683.163 288.727 683.163C288.727 683.163 283.927 712.837 282.619 713.27C281.311 713.703 259.93 728.985 259.93 728.985L251.63 791.385" stroke="#171717" stroke-width="3.709" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||||
|
<path d="M462.506 835.575L447.793 838.95L442.118 857.707L468.936 858.721L482.697 859.24L490.771 854.22V841.782L473.535 833.053L462.506 835.575Z" stroke="#171717" stroke-width="3.709" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||||
|
<path d="M462.407 835.451L462.506 835.575L472.88 849.126L468.936 858.721L468.812 859.018" stroke="#171717" stroke-width="3.709" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||||
|
<path d="M373.249 832.397L362.504 840.422L362.368 847.581L373.99 847.803L392.302 848.162L395.739 845.726L392.586 841.139L373.249 832.397Z" stroke="#171717" stroke-width="3.709" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||||
|
<path d="M373.249 832.397L371.023 840.212L373.99 847.803L374.04 847.939" stroke="#171717" stroke-width="3.709" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||||
|
<path d="M277.821 869.057L292.658 879.53L293.635 891.746" stroke="#171717" stroke-width="3.709" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||||
|
<path d="M693.841 866.733L689.328 882.584L695.325 898.014L695.436 898.299" stroke="#171717" stroke-width="3.709" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||||
|
<path d="M409.167 891.746L414.113 901.786L415.114 913.631L415.126 913.717" stroke="#171717" stroke-width="3.709" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||||
|
<path d="M623.517 39.9731L620.005 43.6231C618.852 44.8561 617.621 46.0121 616.557 47.3231L613.268 51.1651C612.727 51.8101 612.158 52.4311 611.64 53.0961L610.108 55.1061C594.199 75.6298 583.599 99.7621 579.249 125.363C577.088 138.007 576.53 150.873 577.588 163.657C578.815 176.378 581.416 188.928 585.345 201.089C589.304 213.247 594.309 225.039 600.305 236.332C606.26 247.692 612.791 258.739 619.873 269.432C634.019 290.932 649.673 311.453 664.883 332.672C676.454 352.289 687.163 372.538 695.55 393.679C703.903 414.772 709.941 436.909 711.087 459.165C712.156 464.648 712.93 470.184 713.407 475.75C713.843 481.368 713.943 487.007 713.707 492.637C713.116 504.061 711.1 515.366 707.707 526.29L706.845 526.79C706.291 527.115 705.488 527.596 704.427 528.181C702.307 529.354 699.462 531.069 696.08 533.044C689.337 537.052 680.687 542.009 673.123 547.956C665.553 553.931 658.947 561.087 656.442 570.338C653.951 579.563 655.587 590.905 665.075 604.413C669.835 611.154 671.801 617.834 671.808 624.229C671.805 625.823 671.676 627.415 671.42 628.988C671.201 630.536 670.873 632.067 670.438 633.569C669.524 636.64 668.275 639.6 666.713 642.397C660.381 653.917 649.162 664.258 637.871 674.974C632.285 680.338 626.544 685.82 621.415 691.488C616.541 696.809 612.078 702.492 608.063 708.488C607.163 709.862 606.226 711.21 605.428 712.519C604.663 713.86 603.94 715.127 603.258 716.319C602.564 717.558 601.917 718.713 601.315 719.784C600.75 720.873 600.294 721.884 599.843 722.816L597.027 728.816C593.179 719.012 590.696 708.725 589.648 698.245C588.582 687.48 588.645 676.632 589.836 665.88C590.046 663.856 590.394 661.848 590.879 659.871C591.548 656.988 592.378 654.145 593.367 651.356C595.987 643.804 599.151 636.451 602.833 629.356C607.232 620.789 612.089 612.465 617.381 604.419C618.738 602.298 620.13 600.203 621.556 598.133C622.974 596.043 624.41 593.933 625.81 591.961C628.637 587.913 631.465 583.97 634.248 580.094C645.448 564.651 655.326 550.703 661.518 540.394C664.677 535.249 666.966 531.044 668.498 528.12C669.311 526.658 669.854 525.52 670.222 524.739L670.799 523.552C674.37 518.005 677.488 512.179 680.122 506.131C680.442 505.394 680.809 504.659 681.1 503.917L681.937 501.687C682.475 500.194 683.144 498.715 683.575 497.187C684.048 495.666 684.592 494.15 684.969 492.587C685.389 491.036 685.834 489.481 686.15 487.887C689.017 474.551 689.596 460.825 687.862 447.295C685.951 432.534 682.408 418.03 677.298 404.049C671.957 389.298 665.656 374.913 658.436 360.985C654.88 354.81 651.189 348.677 647.363 342.585L641.533 333.395L635.618 324.155C627.704 311.811 619.712 299.348 612.072 286.548C604.297 273.709 597.183 260.481 590.757 246.916C584.261 233.189 579.034 218.896 575.14 204.216C571.275 189.453 569.298 174.26 569.255 158.999C569.197 157.099 569.32 155.192 569.415 153.292C569.51 151.392 569.591 149.492 569.715 147.6L570.322 141.941L570.622 139.117L571.075 136.317L571.999 130.722C572.347 128.866 572.799 127.03 573.199 125.187C573.932 121.487 575.052 117.881 576.051 114.258C576.512 112.435 577.221 110.683 577.795 108.898C578.421 107.127 578.956 105.33 579.659 103.589C581.095 100.121 582.351 96.5891 584.017 93.2351L586.394 88.1591L589.031 83.2171L590.349 80.7521C590.804 79.9401 591.307 79.1521 591.785 78.3521L594.679 73.5771C602.679 61.0866 612.385 49.7758 623.517 39.9731Z" fill="#171717"/>
|
||||||
|
<path d="M401 812.521L390.918 807.653C387.561 806.018 384.284 804.228 380.961 802.522C368.246 795.752 355.871 788.36 343.834 780.346C307.68 756.102 275.396 726.535 248.075 692.646C238.77 681.364 230.367 669.368 222.943 656.768C215.616 644.008 209.579 630.161 206.594 615.278C205.059 607.807 204.421 600.179 204.694 592.556C204.705 590.647 204.824 588.741 205.048 586.845L205.314 583.993C205.38 583.041 205.495 582.093 205.659 581.153C206.215 577.387 206.962 573.651 207.897 569.96C211.497 555.143 218.059 541.445 225.48 528.592C240.387 507.415 258.154 489.477 274.638 470.718C291.116 451.902 306.761 432.182 319.572 410.264C324.415 398.587 328.197 386.498 330.872 374.143C332.148 368.028 333.07 361.844 333.633 355.622C334.212 349.471 334.354 343.286 334.058 337.114C334.058 337.114 334.313 336.835 334.794 336.304C335.275 335.773 335.952 334.981 336.745 333.943C337.538 332.905 338.508 331.62 339.57 330.093C340.614 328.566 341.67 326.799 342.821 324.793C344.027 322.629 345.121 320.405 346.1 318.129C347.185 315.554 348.133 312.923 348.94 310.248C349.4 308.833 349.761 307.402 350.081 305.94C350.401 304.478 350.716 302.972 350.991 301.44C351.506 298.348 351.824 295.226 351.944 292.093C352.41 279.415 349.162 266.767 341.517 258.336C333.833 249.854 321.824 245.502 303.611 247.568C294.505 248.597 286.916 247.015 280.583 243.178C274.251 239.4 269.152 233.205 265.265 225.225C264.303 223.187 263.415 221.13 262.586 218.867C261.723 216.457 260.982 214.005 260.366 211.52C259.087 206.295 258.278 200.966 257.951 195.597C257.272 184.215 258.434 172.799 261.392 161.787C264.191 151.007 268.805 140.783 275.037 131.553C277.823 127.483 280.983 123.682 284.475 120.2C287.499 117.233 290.797 114.559 294.326 112.214C299.261 108.958 304.722 106.581 310.468 105.186C311.977 104.818 313.507 104.544 315.049 104.364L316.649 104.181C312.682 111.57 310.616 119.831 310.638 128.218C310.698 136.238 312.071 144.194 314.7 151.771C315.574 153.932 316.308 157.635 317.4 162.571C318.492 167.507 319.919 173.671 322.088 180.559C323.165 183.999 324.41 187.609 325.84 191.291C326.201 192.211 326.552 193.142 326.947 194.064C327.342 194.986 327.694 195.901 328.163 196.958C329.076 199.015 329.89 201.053 330.884 203.2C334.676 211.7 339.16 220.878 343.757 230.445C348.354 240.012 353.03 249.983 357.083 259.916C360.947 269.256 364.235 278.825 366.929 288.567L368.55 294.985C369.05 297.03 369.407 299.057 369.794 300.913C370.594 304.613 371.034 307.978 371.429 310.713C371.619 312.084 371.804 313.303 371.929 314.369C372.029 315.441 372.116 316.351 372.185 317.088C372.317 318.563 372.385 319.346 372.385 319.346C372.513 330.783 371.449 342.203 369.211 353.419C367.091 364.175 364.012 374.719 360.011 384.925C356.2 394.658 351.73 404.121 346.634 413.247C341.717 421.991 336.359 430.478 330.579 438.677C319.426 454.321 307.293 469.242 294.253 483.351C287.961 490.285 281.436 497.105 275.241 503.571C269.024 510.085 262.975 516.547 257.201 523.114C252.311 529.225 247.773 535.436 243.588 541.747C239.428 547.932 235.724 554.413 232.507 561.137C231.766 562.798 230.899 564.437 230.242 566.121L228.249 571.166C227.614 572.854 227.149 574.566 226.575 576.266C226.319 577.12 225.984 577.966 225.786 578.83L225.17 581.416C224.331 584.854 223.676 588.334 223.207 591.841C222.989 595.341 222.575 598.866 222.696 602.392C222.831 616.537 226.978 631.048 233.338 644.952C239.707 658.893 248.168 672.303 257.428 685.347C294.933 738.158 344.049 781.664 401 812.521V812.521Z" fill="#171717"/>
|
||||||
|
<path d="M613.986 411.307C614.448 415.765 615.336 420.168 616.638 424.456C617.898 428.746 619.503 432.926 621.438 436.956C625.266 444.932 629.747 452.396 633.764 459.93C636.651 464.915 639.189 470.094 641.358 475.43C643.454 480.621 644.811 486.081 645.389 491.649C646.203 497.438 646.062 503.32 644.972 509.063C643.82 514.968 642.003 520.723 639.556 526.219C634.934 534.976 629.045 542.975 622.822 550.763C617.306 557.958 611.546 565.046 606.27 572.572C603.392 577.826 600.88 583.273 598.75 588.872C595.36 593.867 592.678 599.306 590.779 605.036C590.001 608.912 589.469 612.834 589.186 616.777C588.941 620.706 588.9 624.644 589.061 628.577C589.249 632.504 589.629 636.413 590.161 640.303C590.733 644.186 591.459 648.04 592.338 651.865C590.84 641.876 590.597 631.739 591.615 621.69C592.688 611.806 595.215 602.075 599.862 593.843C602.866 587.442 606.452 581.33 610.575 575.586C614.675 569.731 619.152 564.053 623.635 558.3C629.442 550.423 635.318 542.338 640.08 533.527C644.838 524.761 648.641 515.265 650.036 505.246C650.357 501.982 650.406 498.697 650.183 495.424C649.917 492.188 649.362 488.983 648.526 485.845C646.824 479.687 644.325 473.778 641.093 468.267C636.805 456.782 630.616 445.854 626.133 434.599C621.321 426.061 618.313 416.625 617.294 406.877C616.824 402.002 617.218 397.081 618.457 392.342C619.737 387.559 622.19 383.171 625.594 379.576C621.507 383.016 618.381 387.456 616.521 392.464C614.639 397.59 613.693 403.012 613.727 408.472" fill="#171717"/>
|
||||||
|
<path d="M151.549 377.78C149.256 382.837 147.434 388.094 146.105 393.485C144.807 398.964 144.144 404.574 144.129 410.204C144.097 415.92 144.887 421.612 146.473 427.104C148.06 432.743 150.667 438.043 154.164 442.743C156.605 445.835 159.349 448.674 162.356 451.22C165.232 453.72 168.156 456.026 170.989 458.301C173.822 460.576 176.57 462.831 179.022 465.212C181.412 467.419 183.461 469.967 185.104 472.775C186.842 475.385 187.83 478.422 187.96 481.555C187.989 484.865 187.221 488.134 185.722 491.086C182.706 497.472 177.469 503.286 173.539 510.075C169.867 515.423 167.438 521.525 166.429 527.934C165.427 534.33 165.598 540.855 166.936 547.19C169.577 558.601 175.003 569.18 182.73 577.983C185.511 580.538 188.493 582.866 191.647 584.945C194.766 586.953 198.021 588.742 201.388 590.299C207.238 594.911 213.553 598.899 220.231 602.2C224.8 603.924 229.487 605.234 234.172 606.508C238.88 607.675 243.607 608.759 248.361 609.618C257.861 611.418 267.412 612.652 276.922 613.891C264.755 611.227 252.522 608.497 240.711 604.731C228.934 600.931 217.511 596.131 207.632 589.438C206.66 588.961 205.771 588.352 204.832 587.817C203.917 587.252 202.962 586.744 202.079 586.133C200.323 584.91 198.47 583.756 196.836 582.453C193.491 579.856 190.412 576.933 187.645 573.728C182.061 567.32 177.764 559.895 174.99 551.86C172.979 546.581 171.836 541.012 171.607 535.368C171.197 526.899 173.506 518.521 178.196 511.457C179.772 509.038 181.573 506.664 183.396 504.233C185.219 501.802 187.083 499.305 188.757 496.597C190.518 493.849 191.877 490.864 192.792 487.731C193.822 483.517 193.606 479.094 192.17 475.001C190.694 471.139 188.37 467.657 185.37 464.812C179.637 459.161 172.852 455.137 166.438 450.434C163.669 447.769 161.124 444.881 158.828 441.8C156.617 438.73 154.836 435.373 153.533 431.822C151.024 424.862 150.035 417.445 150.633 410.071C150.471 407.1 150.509 404.121 150.744 401.155C150.998 398.169 151.446 395.203 152.085 392.276C153.42 386.342 155.33 380.553 157.79 374.991C162.677 363.744 169.29 353.2 175.9 342.71C167.725 352.81 159.509 362.963 152.951 374.603" fill="#171717"/>
|
||||||
|
<path d="M384.261 77.7854C384.665 81.2418 385.376 84.6553 386.387 87.9854C387.423 91.2937 388.693 94.5245 390.187 97.6534C393.272 103.87 396.921 109.535 400.299 115.283C405.068 122.996 409.526 130.889 411.167 139.391C413.562 148.043 412.3 157.557 409.082 166.391C405.81 173.37 401.929 180.045 397.482 186.34C393.652 192.258 389.707 198.183 386.36 204.519C384.635 208.846 383.323 213.327 382.441 217.9C380.475 222.173 379.22 226.738 378.726 231.414C378.785 234.526 379.18 237.623 379.902 240.65C380.667 243.684 381.804 246.611 383.288 249.365C386.257 255.051 391.195 259.461 397.179 261.771C393.485 260.053 390.286 257.428 387.879 254.14C385.583 250.987 383.913 247.422 382.958 243.64C381.077 236.335 381.429 228.635 383.967 221.531C386.556 211.049 392.499 201.524 398.602 192.103C402.758 185.639 406.521 178.929 409.87 172.011C413.099 164.982 415.559 157.383 415.894 149.511C415.866 144.433 414.944 139.4 413.17 134.641C411.359 130.026 409.066 125.614 406.329 121.48C402.479 112.78 397.415 104.439 393.829 95.8044C390.07 89.1919 387.684 81.8893 386.813 74.3334C386.414 70.5526 386.697 66.7311 387.649 63.0504C388.642 59.3386 390.528 55.9259 393.142 53.1094C389.979 55.7945 387.564 59.2522 386.133 63.1464C384.688 67.1345 383.977 71.351 384.033 75.5924" fill="#171717"/>
|
||||||
|
<path d="M225.487 210.143C226.341 214.008 227.845 217.699 229.937 221.058C231.937 224.385 234.129 227.516 235.989 230.751C238.645 235.084 240.638 239.787 240.419 244.646C240.567 249.719 238.509 254.828 236.212 259.691C233.897 263.494 231.797 267.424 229.922 271.462C228.341 275.289 227.558 279.398 227.622 283.538C227.962 286.178 228.621 288.767 229.585 291.247C229.968 293.88 230.642 296.463 231.594 298.947C234.84 305.23 240.054 310.277 246.44 313.316C242.544 311.079 239.189 308.011 236.614 304.329C234.106 300.797 232.342 296.792 231.43 292.556C229.495 286.702 229.439 280.389 231.27 274.501C233.617 266.533 239.224 259.454 241.664 250.861C242.35 248.052 242.496 245.138 242.092 242.274C241.629 239.488 240.667 236.809 239.251 234.365C237.394 229.282 234.345 224.607 231.898 219.827C229.396 216.291 227.639 212.284 226.734 208.048C226.298 205.931 226.254 203.752 226.604 201.619C226.97 199.465 227.907 197.448 229.318 195.779C227.599 197.401 226.365 199.469 225.752 201.751C225.135 204.087 224.957 206.517 225.227 208.918" fill="#171717"/>
|
||||||
|
<path d="M588.523 464.965L572.813 444.892" stroke="#171717" stroke-width="3.709" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M590.189 444.825L572.027 466.781" stroke="#171717" stroke-width="3.709" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M459.29 189.236L446.214 177" stroke="#171717" stroke-width="3.709" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M445.162 191.64C449.286 185.273 453.411 178.907 457.537 172.54" stroke="#171717" stroke-width="3.709" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M169.593 270.337C163.772 268.209 158.432 264.946 153.883 260.737" stroke="#171717" stroke-width="3.709" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M154.072 274.818C157.512 269.258 160.951 263.698 164.389 258.138" stroke="#171717" stroke-width="3.709" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M769.384 358.585C761.942 357.527 754.472 361.871 750.142 368.014C745.812 374.157 744.166 381.808 743.574 389.301C742.085 408.817 747.019 428.285 757.622 444.737C761.58 450.837 766.847 456.808 773.963 458.322C781.079 459.836 789.784 454.531 789.15 447.284C788.503 439.904 779.378 436.284 772.027 437.199C757.138 439.059 745.651 452.582 742.236 467.193C738.821 481.804 742.044 497.168 746.922 511.357C751.8 525.546 758.339 539.203 761.845 553.792C765.351 568.381 765.524 584.53 758.125 597.583C750.726 610.636 734.225 619.176 720.145 613.998" stroke="white" stroke-width="3.709" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M109.321 557.441C121.627 555.835 134.114 561.254 143.228 569.678C152.342 578.102 158.48 589.255 163.328 600.678C166.682 608.578 169.541 616.978 169.028 625.547C168.515 634.116 163.95 642.912 156.042 646.247C145.679 650.62 134.054 644.61 124.706 638.356C119.337 634.764 113.46 629.833 113.919 623.39C114.504 615.174 124.833 611.531 133.042 612.209C139.961 612.78 146.654 614.949 152.592 618.545C158.531 622.14 163.555 627.065 167.269 632.931C170.982 638.797 173.284 645.444 173.993 652.351C174.703 659.257 173.8 666.234 171.356 672.732C167.513 682.951 159.949 691.799 158.166 702.571C155.224 720.345 172.458 738.433 190.355 736.355" stroke="#171717" stroke-width="3.709" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M526.481 131.649L516.845 122.962" stroke="white" stroke-width="3.709" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M516.288 132.589C519.482 128.221 522.676 123.852 525.869 119.483" stroke="white" stroke-width="3.709" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M107.626 602.862L98.0264 594.134" stroke="white" stroke-width="3.709" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M96.1455 606.227C100.806 601.213 104.455 595.347 106.893 588.95" stroke="white" stroke-width="3.709" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M731.5 576.012C728.366 573.599 725.233 571.186 722.1 568.772" stroke="white" stroke-width="3.709" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M722.122 578.459L730.876 561.891" stroke="white" stroke-width="3.709" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M723.612 320.431C717.736 317.182 712.742 312.548 709.062 306.931" stroke="#171717" stroke-width="3.709" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M709.037 319.268L721.307 303.599" stroke="#171717" stroke-width="3.709" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M762.553 743.083L754.529 733.627" stroke="#171717" stroke-width="3.709" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M751.731 745.124L764.822 729.414" stroke="#171717" stroke-width="3.709" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M119.263 284.332L127.036 284.965L120.718 289.537L122.519 297.126L116.218 292.531L109.556 296.587L111.979 289.175L106.062 284.093L113.862 284.107L116.866 276.91L119.263 284.332Z" fill="white"/>
|
||||||
|
<path d="M682.67 262.211L692.689 259.697L686.711 268.121L692.197 276.874L682.338 273.791L675.709 281.713L675.594 271.384L666.012 267.528L675.8 264.228L676.506 253.922L682.67 262.211Z" fill="#171717"/>
|
||||||
|
<path d="M472.672 130.288L480.631 132.235L473.318 135.93L473.926 144.101L468.151 138.288L460.568 141.39L464.314 134.102L459.019 127.85L467.107 129.159L471.418 122.191L472.672 130.288Z" fill="#171717"/>
|
||||||
|
<path d="M638.937 396.212L646.896 398.16L639.582 401.854L640.189 410.026L634.416 404.212L626.832 407.315L630.577 400.027L625.283 393.774L633.37 395.084L637.682 388.116L638.937 396.212Z" fill="white"/>
|
||||||
|
<path d="M92.1442 639.113L100.102 641.06L92.7892 644.756L93.3962 652.926L87.6232 647.113L80.0392 650.216L83.7842 642.929L78.4902 636.675L86.5772 637.984L90.8892 631.017L92.1442 639.113Z" fill="#171717"/>
|
||||||
|
<g opacity="0.1">
|
||||||
|
<path d="M292.085 264.294C273.925 270.135 269.834 293.436 270.802 309.894C272.102 331.983 278.102 353.54 284.384 374.669C290.775 396.03 298.273 417.045 306.848 437.627C314.38 455.793 322.073 474.227 332.49 490.973C337.811 499.526 344.201 508.712 352.145 515.03C359.899 521.196 369.211 527.284 379.045 529.272C386.063 530.691 389.08 522.321 383.704 518.22C377.423 513.428 371.483 509.012 366.365 502.906C361.316 497.124 356.616 491.047 352.29 484.706C342.815 470.241 335.69 454.412 328.89 438.56C313.09 401.745 301.373 363.593 289.974 325.252C286.847 314.735 282.739 304.305 283.307 293.145C283.781 283.817 288.486 275.424 294.637 268.679C296.312 266.843 294.707 263.448 292.083 264.292L292.085 264.294Z" fill="#171717"/>
|
||||||
|
</g>
|
||||||
|
<g opacity="0.1">
|
||||||
|
<path d="M94.9604 355.741C90.6604 372.724 92.9814 391.274 96.2534 408.284C99.8197 425.968 106.15 442.98 115.011 458.693C131.666 488.769 155.511 514.336 185.278 531.656C193.543 536.427 202.2 540.483 211.154 543.779C220.361 547.217 228.898 550.449 238.677 547.607C239.38 547.399 240.018 547.014 240.528 546.488C241.039 545.963 241.405 545.314 241.592 544.606C241.779 543.897 241.781 543.152 241.596 542.443C241.412 541.734 241.048 541.084 240.539 540.556C234.899 534.566 228.284 532.124 220.853 528.933C213.852 525.791 207.027 522.27 200.409 518.383C187.061 510.763 174.623 501.648 163.335 491.215C151.787 480.837 141.718 468.924 133.408 455.808C124.711 441.7 117.769 426.581 112.739 410.788C109.739 401.956 107.399 392.913 105.739 383.733C104.218 374.382 103.2 365.022 101.29 355.741C100.629 352.528 95.7314 352.701 94.9624 355.741H94.9604Z" fill="#171717"/>
|
||||||
|
</g>
|
||||||
|
<g opacity="0.1">
|
||||||
|
<path d="M435.808 281.227C436.971 288.686 440.263 296.532 442.793 303.645C445.323 310.758 448.214 317.715 451.126 324.668C457.126 338.992 463.782 353.077 470.473 367.088C476.992 380.741 483.73 394.286 490.687 407.723C494.149 414.41 497.38 421.363 501.651 427.576C504.007 431.003 506.357 434.231 508.443 437.837C510.543 441.471 512.23 444.152 515.823 446.469C519.29 448.705 524.076 445.782 524.005 441.774C523.878 434.643 518.937 427.903 516.295 421.402C513.413 414.31 509.654 407.671 506.129 400.885C499.009 387.18 492.117 373.36 485.452 359.424C478.922 345.771 472.769 331.959 466.522 318.177C463.41 311.31 460.31 304.429 457.008 297.652C453.687 290.838 450.586 283.023 446.261 276.82C442.433 271.33 434.81 274.82 435.808 281.227V281.227Z" fill="#171717"/>
|
||||||
|
</g>
|
||||||
|
<g opacity="0.1">
|
||||||
|
<path d="M236.623 359.514C225.772 370.336 218.88 384.391 214.574 399C209.774 415.292 211.866 433.309 215.283 449.649C218.962 467.24 225.318 483.981 231.708 500.723C237.708 516.442 243.763 532.14 249.872 547.815C274.394 610.308 301.117 672.441 336.072 729.909C345.61 745.591 355.767 760.901 366.638 775.692C372.338 783.445 378.178 791.092 384.426 798.413C390.738 805.808 396.809 813.813 405.135 818.955C412.415 823.455 419.39 814.798 416.102 807.988C412.552 800.633 406.712 794.736 401.674 788.336C396.958 782.345 392.311 776.296 387.733 770.189C378.057 757.327 368.916 744.086 360.31 730.465C343.253 703.332 327.799 675.223 314.027 646.284C286.036 588.144 262.265 527.576 240.084 467.007C233.608 449.322 229.197 431.685 229.056 412.807C228.928 395.544 231.547 379.507 242.924 365.815C246.524 361.48 240.76 355.395 236.624 359.515L236.623 359.514Z" fill="#171717"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<defs>
|
||||||
|
<clipPath id="clip0_46_7729">
|
||||||
|
<rect width="960" height="960" fill="white"/>
|
||||||
|
</clipPath>
|
||||||
|
<clipPath id="clip1_46_7729">
|
||||||
|
<rect width="818" height="883" fill="white" transform="translate(71 39)"/>
|
||||||
|
</clipPath>
|
||||||
|
</defs>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 48 KiB |
|
@ -0,0 +1,101 @@
|
||||||
|
<svg width="960" height="960" viewBox="0 0 960 960" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<g clip-path="url(#clip0_1_6138)">
|
||||||
|
<mask id="mask0_1_6138" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="0" y="0" width="960" height="960">
|
||||||
|
<path d="M960 0H0V960H960V0Z" fill="white"/>
|
||||||
|
</mask>
|
||||||
|
<g mask="url(#mask0_1_6138)">
|
||||||
|
<mask id="mask1_1_6138" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="38" y="80" width="885" height="801">
|
||||||
|
<path d="M923 80H38V881H923V80Z" fill="white"/>
|
||||||
|
</mask>
|
||||||
|
<g mask="url(#mask1_1_6138)">
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M274.396 303.719C308.162 292.965 338.839 274.229 363.826 249.1L364.544 249.804C374.448 269.815 381.295 291.591 382.295 313.904C383.008 328.353 380.974 342.807 376.301 356.498L376.927 356.715C398.678 356.832 420.412 355.448 441.974 352.574C423.597 343.871 411.865 324.788 406.217 305.188C402.101 290.882 400.656 276.024 399.211 261.165C398.637 255.266 398.063 249.367 397.323 243.502C394.716 222.863 389.592 201.662 376.365 185.611C362.729 169.074 341.707 159.835 320.455 157.049C275.842 151.183 228.766 173.803 205.466 212.294C194.847 229.832 189.103 249.683 183.382 269.457C182.129 273.788 180.877 278.115 179.575 282.414C172.355 306.222 162.86 330.451 144.598 347.333L145.467 348.24C183.794 360.906 223.534 368.812 263.791 371.78C275.555 372.658 287.329 373.11 299.113 373.136C300.342 373.278 301.582 372.979 302.613 372.293C304.811 370.401 302.689 366.926 300.683 364.843C284.851 348.295 275.518 326.593 274.396 303.719ZM361.186 177.428C360.454 176.662 359.241 176.635 358.475 177.366C357.71 178.097 357.682 179.311 358.414 180.076C369.27 191.438 377.71 204.882 383.225 219.596C388.741 234.31 391.216 249.99 390.503 265.688C390.455 266.746 391.273 267.642 392.331 267.69C393.388 267.738 394.285 266.92 394.333 265.862C395.07 249.647 392.512 233.45 386.815 218.25C381.118 203.051 372.4 189.164 361.186 177.428Z" fill="white"/>
|
||||||
|
<path d="M846 493.139L806.247 846.834L805.416 846.745L402.444 830.068L435.964 488.654L438.264 465.166L588.524 475.479L691.257 482.52L846 493.139ZM680.92 663.782C680.92 654.862 678.275 646.142 673.32 638.726C668.364 631.309 661.32 625.529 653.079 622.115C644.838 618.702 635.77 617.808 627.022 619.549C618.273 621.289 610.237 625.584 603.93 631.892C597.622 638.199 593.327 646.235 591.587 654.983C589.847 663.732 590.74 672.8 594.153 681.041C597.567 689.282 603.347 696.326 610.764 701.281C618.181 706.237 626.9 708.882 635.82 708.882C647.782 708.882 659.253 704.13 667.711 695.673C676.169 687.215 680.92 675.743 680.92 663.782Z" fill="#171717"/>
|
||||||
|
<path d="M806.247 846.834L802.707 878.322L399.48 860.278L402.444 830.067L805.416 846.744L806.247 846.834Z" fill="#171717"/>
|
||||||
|
<path d="M720.4 419.057C721.6 421.051 720.553 423.581 719.505 425.664C710.112 444.245 700.723 462.831 691.339 481.42L691.262 482.52L588.529 475.479L588.542 475.351C605.621 451.768 619.963 426.318 631.289 399.493L643.429 401.947C664.349 406.177 685.265 410.403 706.176 414.624C709.269 415.25 712.348 415.876 715.441 416.503C717.315 416.885 719.411 417.408 720.4 419.057Z" fill="white"/>
|
||||||
|
<path d="M635.821 618.672C644.74 618.672 653.459 621.317 660.876 626.272C668.292 631.227 674.073 638.27 677.487 646.51C680.9 654.751 681.794 663.818 680.055 672.566C678.316 681.315 674.021 689.351 667.715 695.659C661.409 701.966 653.374 706.262 644.626 708.004C635.878 709.745 626.81 708.854 618.569 705.442C610.328 702.03 603.284 696.251 598.327 688.836C593.37 681.421 590.723 672.702 590.721 663.783C590.719 657.859 591.885 651.994 594.151 646.52C596.416 641.047 599.738 636.074 603.926 631.885C608.114 627.696 613.087 624.373 618.559 622.106C624.032 619.839 629.897 618.672 635.821 618.672Z" fill="#171717"/>
|
||||||
|
<path d="M402.444 830.068L399.48 860.279L239.354 856.675L239.124 848.279L238.907 839.985L402.189 830.056L402.444 830.068Z" fill="#171717"/>
|
||||||
|
<path d="M355.378 468.514C383.304 469.435 410.712 476.297 435.778 488.642L435.97 488.655L402.45 830.069L402.194 830.056L238.912 839.986L239.129 848.28L238.107 848.306C215.015 845.546 207.007 842.338 196.28 835.246C167.309 816.064 144.587 797.777 125.84 768.525C102.985 732.871 98.1 687.261 108.493 646.201C118.886 605.141 143.572 568.541 174.703 539.826C205.834 511.111 243.203 489.82 282.075 473.026L282.548 472.77C281.014 465.537 285.794 458.163 292.12 454.329C294.914 452.749 298.038 451.844 301.244 451.684C305.18 451.339 309.295 451.543 313.333 451.007C316.911 450.534 320.541 449.64 324.157 448.924C329.499 447.863 334.828 447.199 339.901 448.824C348.412 451.559 356.001 459.367 355.39 468.287L355.378 468.514Z" fill="white"/>
|
||||||
|
<path d="M274.4 303.723C308.167 292.969 338.843 274.234 363.83 249.104C370.51 242.347 376.718 235.139 382.411 227.532" stroke="white" stroke-width="3.834" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M364.542 249.808C374.442 269.821 381.296 291.597 382.293 313.908C383.008 328.357 380.975 342.81 376.301 356.501C373.704 363.978 370.189 371.104 365.835 377.714C358.065 389.445 347.688 399.214 339.075 410.341C330.462 421.468 323.42 434.826 324.149 448.884" stroke="white" stroke-width="3.834" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M274.4 303.724C275.522 326.597 284.855 348.299 300.687 364.848C302.693 366.931 304.815 370.407 302.617 372.298C301.586 372.983 300.346 373.282 299.117 373.141C287.333 373.115 275.559 372.663 263.795 371.786C223.538 368.817 183.798 360.911 145.471 348.246" stroke="white" stroke-width="3.834" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M144.365 347.556C144.442 347.479 144.518 347.415 144.595 347.339C162.857 330.457 172.352 306.228 179.572 282.42C186.818 258.497 192.518 233.679 205.463 212.3C228.763 173.809 275.839 151.189 320.452 157.055C341.704 159.841 362.726 169.08 376.362 185.617C389.589 201.668 394.713 222.869 397.32 243.508C399.927 264.147 400.464 285.208 406.214 305.194C411.862 324.794 423.594 343.877 441.971 352.58C442.342 352.759 442.712 352.925 443.083 353.091" stroke="white" stroke-width="3.834" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M376.924 356.72C398.676 356.837 420.41 355.453 441.971 352.579L442.84 352.464" stroke="white" stroke-width="3.834" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M263.75 372.208C275.437 381.483 284.869 393.286 291.338 406.73C297.807 420.174 301.145 434.91 301.1 449.83" stroke="white" stroke-width="3.834" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M588.525 475.478L438.265 465.165L435.965 488.654L402.444 830.067L399.48 860.278L802.707 878.322L806.247 846.834L846.004 493.139L691.258 482.519L588.525 475.478Z" stroke="white" stroke-width="3.834" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M399.48 860.279L239.354 856.675L239.124 848.279L238.907 839.985L402.189 830.056L402.444 830.068L805.416 846.745" stroke="white" stroke-width="3.834" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M680.92 663.783C680.918 672.702 678.271 681.421 673.314 688.836C668.357 696.251 661.312 702.03 653.071 705.442C644.83 708.854 635.762 709.745 627.014 708.004C618.267 706.262 610.232 701.966 603.925 695.659C597.619 689.351 593.325 681.315 591.586 672.566C589.846 663.818 590.74 654.751 594.154 646.51C597.568 638.27 603.348 631.227 610.765 626.272C618.181 621.317 626.9 618.672 635.82 618.672C641.743 618.672 647.609 619.839 653.081 622.106C658.554 624.373 663.526 627.696 667.714 631.885C671.902 636.074 675.224 641.047 677.49 646.52C679.756 651.994 680.921 657.859 680.92 663.783Z" stroke="white" stroke-width="3.834" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M333.091 324.082C335.689 323.715 338.2 322.884 340.503 321.628C342.727 320.235 344.465 317.781 344.247 315.162C344.017 312.414 341.793 310.319 339.889 308.312C337.373 305.829 335.375 302.872 334.01 299.612C332.64 296.32 332.508 292.643 333.639 289.261" stroke="white" stroke-width="3.834" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M316.12 294.127C315.311 293.148 314.317 292.34 313.194 291.747C312.071 291.155 310.842 290.791 309.577 290.677" stroke="white" stroke-width="3.834" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M344.337 285.91C345.015 284.431 346.058 283.149 347.366 282.183C348.675 281.218 350.208 280.6 351.82 280.388C353.433 280.176 355.073 280.376 356.587 280.971C358.101 281.566 359.44 282.535 360.477 283.788" stroke="white" stroke-width="3.834" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M297.601 346.956C299.838 350.346 303.18 352.857 307.059 354.062C310.938 355.266 315.115 355.09 318.879 353.563" stroke="white" stroke-width="3.834" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M238.1 848.3C215.008 845.54 207 842.332 196.273 835.24C167.302 816.058 144.58 797.771 125.833 768.519C102.985 732.868 98.1004 687.258 108.493 646.2C118.886 605.142 143.572 568.54 174.703 539.825C205.834 511.11 243.203 489.819 282.075 473.025" stroke="white" stroke-width="3.834" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M282.548 472.77C281.014 465.537 285.794 458.163 292.12 454.329C294.915 452.749 298.039 451.844 301.244 451.684C305.18 451.339 309.295 451.543 313.333 451.007C316.911 450.534 320.541 449.64 324.157 448.924C329.499 447.863 334.828 447.199 339.901 448.824C348.412 451.559 356.001 459.367 355.39 468.287" stroke="white" stroke-width="3.834" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M355.276 468.514H355.376C383.302 469.435 410.711 476.297 435.776 488.642" stroke="white" stroke-width="3.834" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M588.538 475.35C605.617 451.767 619.958 426.317 631.285 399.492L643.425 401.946C664.345 406.176 685.261 410.402 706.172 414.623C709.265 415.249 712.344 415.875 715.437 416.502C717.316 416.885 719.411 417.409 720.395 419.058C721.595 421.052 720.548 423.582 719.5 425.665C710.107 444.246 700.718 462.831 691.334 481.421" stroke="white" stroke-width="3.834" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M643.821 400.001C640.741 391.477 637.657 382.949 634.569 374.417C633.393 371.158 632.192 367.746 632.669 364.317C633.146 360.888 635.869 357.493 639.327 357.544C642.327 357.582 644.682 360.023 646.573 362.362C651.466 368.348 655.803 374.769 659.531 381.544" stroke="white" stroke-width="3.834" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M701.546 379.952C703.718 374.393 705.405 368.668 705.533 362.738C705.622 358.828 704.051 353.907 700.153 353.588C697.495 353.358 695.271 355.488 693.61 357.575C689.758 362.403 686.731 367.835 684.652 373.651C683.963 375.584 683.383 377.554 682.914 379.551" stroke="white" stroke-width="3.834" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M701.547 379.952C700.278 382.436 699.197 385.012 698.313 387.658C699.424 385.115 700.537 382.559 701.547 379.952Z" stroke="white" stroke-width="3.834" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M706.415 413.434C712.144 402.221 717.234 390.693 721.661 378.904C722.619 376.348 723.561 373.716 723.461 370.994C723.361 368.272 721.979 365.422 719.474 364.374C715.64 362.774 711.538 365.874 708.854 369.026C706.001 372.372 703.548 376.039 701.544 379.952" stroke="white" stroke-width="3.834" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M681.674 380.324C682.492 378.036 683.284 375.736 684.074 373.449H684.087C690.4 355.187 696.142 336.742 701.314 318.114C702.914 312.351 703.985 305.028 699.214 301.414C695.329 298.462 689.387 300.021 685.975 303.523C682.563 307.025 681.068 311.923 679.675 316.609C673.233 338.333 666.793 360.063 660.353 381.797C660.327 381.897 660.289 381.997 660.264 382.104" stroke="white" stroke-width="3.834" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M367.51 163.437C348.216 147.874 321.776 142.09 297.416 146.678C273.056 151.266 250.99 165.778 235.843 185.399C220.696 205.02 212.318 229.49 210.638 254.222C210.118 261.88 211.073 271.104 217.845 274.716C224.276 278.146 232.587 274.072 236.563 267.963C240.539 261.854 241.421 254.323 242.744 247.155C247.027 223.955 257.359 201.41 274.526 185.221C291.693 169.032 316.116 159.876 339.38 163.821C354.453 166.466 368.026 174.563 377.514 186.571C379.8 189.48 381.79 192.609 383.457 195.912C384.248 197.487 386.135 205.201 387.439 205.746C391.949 207.634 385.988 187.346 385.01 185.268C380.893 176.767 374.911 169.305 367.51 163.437Z" fill="#171717" stroke="white" stroke-width="3" stroke-miterlimit="10"/>
|
||||||
|
<path d="M286.572 382.378C299.835 385.138 313.652 382.557 325.024 375.195C327.48 373.587 329.924 371.715 332.824 371.27C335.724 370.825 339.216 372.501 339.494 375.423C339.672 377.284 338.533 379.005 337.301 380.411C332.72 385.636 326.201 388.902 319.437 390.493C312.673 392.084 305.637 392.106 298.7 391.655C282.876 390.628 265.021 387.367 251.57 378.419C247.793 375.907 243.215 370.453 249.406 367.983C253.947 366.171 259.633 367.883 263.382 370.583C270.735 375.882 277.5 380.442 286.572 382.378Z" fill="#171717" stroke="white" stroke-width="3" stroke-miterlimit="10"/>
|
||||||
|
<path d="M362.682 367.335L342.364 383.087C341.72 383.586 340.985 383.953 340.199 384.168C339.414 384.383 338.594 384.441 337.786 384.339C336.978 384.237 336.198 383.977 335.491 383.573C334.784 383.169 334.163 382.63 333.664 381.987L329.52 376.642C329.021 375.998 328.653 375.263 328.438 374.477C328.224 373.692 328.166 372.872 328.268 372.064C328.37 371.256 328.63 370.476 329.034 369.769C329.437 369.062 329.976 368.441 330.62 367.942L350.938 352.19C351.581 351.691 352.317 351.323 353.102 351.108C353.888 350.894 354.708 350.835 355.516 350.938C356.324 351.04 357.104 351.3 357.811 351.704C358.518 352.107 359.139 352.646 359.638 353.29L363.782 358.635C364.281 359.278 364.648 360.014 364.863 360.799C365.078 361.585 365.136 362.405 365.034 363.213C364.932 364.021 364.672 364.8 364.268 365.508C363.864 366.215 363.325 366.836 362.682 367.335Z" fill="white"/>
|
||||||
|
<path d="M398.556 800.73C358.707 800.939 318.129 800.105 280.269 787.672C242.409 775.239 207.078 749.421 192.338 712.398C182.572 687.869 182.538 660.074 189.57 634.625C196.602 609.176 210.37 585.946 227.176 565.582" stroke="#171717" stroke-width="3.834" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M341.736 467.523C340.874 462.923 340.01 458.323 339.146 453.723" stroke="#171717" stroke-width="3.834" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M324.666 469.975C324.059 465.365 323.452 460.755 322.846 456.145" stroke="#171717" stroke-width="3.834" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M307.187 471.182C306.787 467.573 306.389 463.964 305.992 460.356" stroke="#171717" stroke-width="3.834" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M291.385 471.801C291.202 468.593 291.019 465.384 290.835 462.176" stroke="#171717" stroke-width="3.834" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M624.212 429.794C650.005 435.892 676.005 441.002 702.212 445.124" stroke="#171717" stroke-width="3.834" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M406.407 546.948C402.166 542.53 397.925 538.112 393.683 533.693" stroke="#171717" stroke-width="3.834" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M348.589 610.66C352.207 605.053 355.825 599.447 359.444 593.841" stroke="#171717" stroke-width="3.834" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M317.573 549.833L303.573 537.326" stroke="#171717" stroke-width="3.834" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M266.167 622.665L276.426 607.052" stroke="#171717" stroke-width="3.834" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M324.8 665.249C319.82 660.4 314.839 655.552 309.857 650.705" stroke="#171717" stroke-width="3.834" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M399.587 649.401L385.231 636.088" stroke="#171717" stroke-width="3.834" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M345.06 712.949C350.401 708.836 354.906 703.74 358.332 697.935" stroke="#171717" stroke-width="3.834" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M272.286 721.36C277.478 716.916 282.122 711.869 286.118 706.325" stroke="#171717" stroke-width="3.834" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M241.09 684.001L229.768 672.473" stroke="#171717" stroke-width="3.834" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M385.507 753.679L373.382 741.144" stroke="#171717" stroke-width="3.834" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M228.828 817.69L216.384 799.479" stroke="#171717" stroke-width="3.834" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M181.947 778.868L199.4 768.659" stroke="#171717" stroke-width="3.834" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M164.333 746.183L155.446 729.873" stroke="#171717" stroke-width="3.834" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M133.923 699.648L148.93 688.785" stroke="#171717" stroke-width="3.834" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M166.627 650.28L155.676 632.92" stroke="#171717" stroke-width="3.834" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M132.539 615.321C137.104 610.048 142.244 605.301 147.861 601.167" stroke="#171717" stroke-width="3.834" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M197.453 567.901C195.72 562.327 193.986 556.754 192.253 551.182" stroke="#171717" stroke-width="3.834" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M242.11 528.162L256.01 518.633" stroke="#171717" stroke-width="3.834" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M133.8 484.672C102.33 469.325 61.2592 504.494 53.0662 533.92C45.2162 561.008 94.4042 609.814 105.65 568.383C99.0682 544.445 67.4812 559.9 68.3312 580.67C67.9162 603.554 79.3222 655.207 40.5752 647.158" stroke="white" stroke-width="3.834" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M607.748 220.814C613.101 227.871 617.535 236.084 617.848 244.937C618.161 253.79 613.41 263.25 605.071 266.237C596.732 269.224 585.794 263.153 585.758 254.295C585.745 251.033 587.589 247.424 590.795 246.825C595.124 246.016 598.269 250.734 600.041 254.766C603.041 261.583 605.641 270.03 601.186 275.996C598.408 279.715 593.673 281.254 589.641 283.554C577.018 290.754 570.93 307.641 576.056 321.239" stroke="white" stroke-width="3.834" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M903.948 471C900.873 475.329 899.3 480.546 899.47 485.854C899.64 491.161 901.543 496.267 904.888 500.391C908.443 504.566 913.472 507.535 916.07 512.363C920.82 521.189 915.563 532.07 909.181 539.798C906.237 543.362 902.771 546.867 898.281 547.978C893.791 549.089 888.187 546.778 887.294 542.241C886.172 536.541 892.429 532.313 897.894 530.356C902.444 528.727 907.551 527.482 912.018 529.327C916.064 530.997 918.809 535.001 919.893 539.242C920.977 543.483 920.609 547.959 919.893 552.276C918.522 560.558 915.566 569.121 908.976 574.319C902.386 579.517 891.402 579.708 886.5 572.895" stroke="white" stroke-width="3.834" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M744.168 407.511C756.31 391.296 757.12 367.459 746.107 350.457" stroke="white" stroke-width="3.834" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M447.2 164.791C446.35 157.267 445.499 149.744 444.648 142.222" stroke="white" stroke-width="3.834" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M435.735 155.414C442.761 153.219 449.951 151.583 457.235 150.524" stroke="white" stroke-width="3.834" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M403.449 108.276L390.257 86.4219" stroke="white" stroke-width="3.834" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M386.784 104.267C393.614 98.2716 399.998 91.7857 405.884 84.8613L404.631 87.0743" stroke="white" stroke-width="3.834" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M775.644 327.154C776.883 322.112 779.364 317.461 782.861 313.623" stroke="white" stroke-width="3.834" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M784.775 324.262L771.24 316.15" stroke="white" stroke-width="3.834" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M454.418 306.237C474.618 295.823 493.969 283.841 512.295 270.4" stroke="white" stroke-width="3.834" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M435.547 296.479L444.596 268.524" stroke="white" stroke-width="3.834" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M465.516 325.911C474.065 330.56 482.938 334.586 492.067 337.959" stroke="white" stroke-width="3.834" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M480.215 96.2234L491.803 103.262C491.952 103.353 492.069 103.487 492.14 103.646C492.211 103.806 492.231 103.983 492.197 104.154C492.164 104.325 492.079 104.482 491.954 104.604C491.829 104.725 491.67 104.805 491.498 104.833L478.117 107.018C477.95 107.046 477.796 107.122 477.672 107.237C477.549 107.352 477.463 107.5 477.424 107.664L474.31 120.864C474.27 121.034 474.178 121.187 474.049 121.303C473.919 121.42 473.756 121.493 473.584 121.515C473.411 121.536 473.235 121.504 473.081 121.422C472.927 121.341 472.802 121.214 472.722 121.059L466.509 109C466.431 108.851 466.312 108.727 466.164 108.645C466.017 108.564 465.849 108.527 465.681 108.541L452.169 109.657C451.995 109.672 451.821 109.632 451.67 109.545C451.52 109.457 451.4 109.326 451.326 109.168C451.252 109.01 451.229 108.833 451.259 108.661C451.288 108.49 451.37 108.331 451.493 108.207L461.034 98.5744C461.152 98.4546 461.233 98.3024 461.265 98.1368C461.297 97.9713 461.28 97.7999 461.215 97.6444L455.978 85.1384C455.91 84.9776 455.894 84.8002 455.931 84.6299C455.968 84.4596 456.056 84.3046 456.183 84.1858C456.31 84.067 456.471 83.99 456.644 83.9653C456.816 83.9405 456.992 83.9692 457.148 84.0474L469.258 90.1474C469.408 90.2231 469.578 90.2526 469.745 90.2321C469.912 90.2117 470.07 90.1422 470.198 90.0324L480.474 81.1874C480.606 81.0735 480.77 81.0028 480.943 80.985C481.117 80.9671 481.292 81.0028 481.444 81.0874C481.597 81.172 481.72 81.3013 481.796 81.4579C481.873 81.6146 481.9 81.791 481.874 81.9634L479.818 95.3634C479.79 95.53 479.813 95.701 479.884 95.8543C479.955 96.0077 480.07 96.1362 480.215 96.2234Z" fill="white"/>
|
||||||
|
<path d="M762.678 289.275C761.827 281.752 760.976 274.229 760.126 266.706" stroke="white" stroke-width="3.834" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M751.211 279.901C758.237 277.705 765.426 276.07 772.711 275.011" stroke="white" stroke-width="3.834" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M222.672 392.103C250.405 392.103 272.887 361.745 272.887 324.297C272.887 286.849 250.405 256.491 222.672 256.491C194.939 256.491 172.457 286.849 172.457 324.297C172.457 361.745 194.939 392.103 222.672 392.103Z" fill="#171717" stroke="white" stroke-width="3" stroke-miterlimit="10"/>
|
||||||
|
<g opacity="0.1">
|
||||||
|
<path d="M209.837 258.73C206.562 259.437 204.114 261.795 201.357 263.571C198.315 265.339 195.518 267.498 193.038 269.993C188.525 275.062 184.636 280.654 181.456 286.649C174.175 300.21 170.468 314.706 171.839 330.158C173.239 345.885 178.112 361.469 188.605 373.495C196.621 382.681 212.75 398.238 226.144 389.643C230.25 387.009 229.994 381.643 226.144 378.958C221.776 375.912 216.47 375.036 212.252 371.545C208.015 368.128 204.6 363.804 202.258 358.89C197.169 348.19 192.211 338.142 191.277 326.069C190.413 314.901 191.477 303.051 195.277 292.477C197.277 287.263 199.845 282.284 202.933 277.631C204.558 275.031 205.844 272.247 207.411 269.631C208.957 267.048 211.424 265.141 212.639 262.383C212.87 261.955 212.972 261.469 212.933 260.983C212.894 260.498 212.715 260.035 212.419 259.649C212.122 259.263 211.72 258.971 211.261 258.809C210.802 258.646 210.306 258.62 209.833 258.733L209.837 258.73Z" fill="white"/>
|
||||||
|
</g>
|
||||||
|
<g opacity="0.1">
|
||||||
|
<path d="M276.65 375.545C276.397 376.54 276.376 377.579 276.589 378.583C276.803 379.587 277.244 380.528 277.88 381.333C278.435 382.285 279.232 383.074 280.188 383.62C281.145 384.167 282.229 384.453 283.331 384.448C284.433 384.444 285.514 384.15 286.467 383.596C287.419 383.042 288.21 382.247 288.758 381.291C289.306 380.335 289.594 379.252 289.592 378.15C289.589 377.048 289.297 375.966 288.745 375.013C288.192 374.059 287.399 373.268 286.444 372.718C285.489 372.167 284.407 371.878 283.305 371.878C280.665 371.6 277.436 372.709 276.65 375.545Z" fill="white"/>
|
||||||
|
</g>
|
||||||
|
<g opacity="0.1">
|
||||||
|
<path d="M287.477 395.118C287.388 399.575 289.562 403.566 291.244 407.585C293.015 411.814 294.502 416.178 295.844 420.562C297.204 424.973 298.251 429.473 298.976 434.031C299.687 438.583 299.617 443.215 300.502 447.731C301.168 451.131 304.971 453.166 308.165 452.731C311.88 452.231 313.771 449.382 314.221 445.871C315.438 436.371 312.332 424.92 309.436 415.915C306.845 407.859 302.467 395.154 294.321 391.187C291.24 389.687 287.551 391.487 287.479 395.114L287.477 395.118Z" fill="white"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<defs>
|
||||||
|
<clipPath id="clip0_1_6138">
|
||||||
|
<rect width="960" height="960" fill="white"/>
|
||||||
|
</clipPath>
|
||||||
|
</defs>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 24 KiB |
|
@ -0,0 +1,96 @@
|
||||||
|
<svg width="960" height="960" viewBox="0 0 960 960" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<g clip-path="url(#clip0_46_109)">
|
||||||
|
<g clip-path="url(#clip1_46_109)">
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M274.396 303.719C308.162 292.965 338.839 274.229 363.826 249.1L364.544 249.804C374.448 269.815 381.295 291.591 382.295 313.904C383.008 328.353 380.974 342.807 376.301 356.498L376.927 356.715C398.678 356.832 420.412 355.448 441.974 352.574C423.597 343.871 411.865 324.788 406.217 305.188C402.101 290.882 400.656 276.024 399.211 261.165C398.637 255.266 398.063 249.367 397.323 243.502C394.716 222.863 389.592 201.662 376.365 185.611C362.729 169.074 341.707 159.835 320.455 157.049C275.842 151.183 228.766 173.803 205.466 212.294C194.847 229.832 189.103 249.683 183.382 269.457C182.129 273.788 180.877 278.115 179.575 282.414C172.355 306.222 162.86 330.451 144.598 347.333L145.467 348.24C183.794 360.906 223.534 368.812 263.791 371.78C275.555 372.658 287.329 373.11 299.113 373.136C300.342 373.278 301.582 372.979 302.613 372.293C304.811 370.401 302.689 366.926 300.683 364.843C284.851 348.295 275.518 326.593 274.396 303.719ZM361.186 177.428C360.454 176.662 359.241 176.635 358.475 177.366C357.71 178.097 357.682 179.311 358.414 180.076C369.27 191.438 377.71 204.882 383.225 219.596C388.741 234.31 391.216 249.99 390.503 265.688C390.455 266.746 391.273 267.642 392.331 267.69C393.388 267.738 394.285 266.92 394.333 265.862C395.07 249.647 392.512 233.45 386.815 218.25C381.118 203.051 372.4 189.164 361.186 177.428Z" fill="#171717"/>
|
||||||
|
<path d="M846 493.139L806.247 846.834L805.416 846.745L402.444 830.068L435.964 488.654L438.264 465.166L588.524 475.479L691.257 482.52L846 493.139ZM680.92 663.782C680.92 654.862 678.275 646.142 673.32 638.726C668.364 631.309 661.32 625.529 653.079 622.115C644.838 618.702 635.77 617.808 627.022 619.549C618.273 621.289 610.237 625.584 603.93 631.892C597.622 638.199 593.327 646.235 591.587 654.983C589.847 663.732 590.74 672.8 594.153 681.041C597.567 689.282 603.347 696.326 610.764 701.281C618.181 706.237 626.9 708.882 635.82 708.882C647.782 708.882 659.253 704.13 667.711 695.673C676.169 687.215 680.92 675.743 680.92 663.782V663.782Z" fill="white"/>
|
||||||
|
<path d="M806.247 846.834L802.707 878.322L399.48 860.278L402.444 830.067L805.416 846.744L806.247 846.834Z" fill="white"/>
|
||||||
|
<path d="M720.4 419.057C721.6 421.051 720.553 423.581 719.505 425.664C710.112 444.245 700.723 462.831 691.339 481.42L691.262 482.52L588.529 475.479L588.542 475.351C605.621 451.768 619.963 426.318 631.289 399.493L643.429 401.947C664.349 406.177 685.265 410.403 706.176 414.624C709.269 415.25 712.348 415.876 715.441 416.503C717.315 416.885 719.411 417.408 720.4 419.057Z" fill="#171717"/>
|
||||||
|
<path d="M635.821 618.672C644.74 618.672 653.459 621.317 660.876 626.272C668.292 631.227 674.073 638.27 677.487 646.51C680.9 654.751 681.794 663.818 680.055 672.566C678.316 681.315 674.021 689.351 667.715 695.659C661.409 701.966 653.374 706.262 644.626 708.004C635.878 709.745 626.81 708.854 618.569 705.442C610.328 702.03 603.284 696.251 598.327 688.836C593.37 681.421 590.723 672.702 590.721 663.783C590.719 657.859 591.885 651.994 594.151 646.52C596.416 641.047 599.738 636.074 603.926 631.885C608.114 627.696 613.087 624.373 618.559 622.106C624.032 619.839 629.897 618.672 635.821 618.672Z" fill="white"/>
|
||||||
|
<path d="M402.444 830.068L399.48 860.279L239.354 856.675L239.124 848.279L238.907 839.985L402.189 830.056L402.444 830.068Z" fill="white"/>
|
||||||
|
<path d="M355.378 468.514C383.304 469.435 410.712 476.297 435.778 488.642L435.97 488.655L402.45 830.069L402.194 830.056L238.912 839.986L239.129 848.28L238.107 848.306C215.015 845.546 207.007 842.338 196.28 835.246C167.309 816.064 144.587 797.777 125.84 768.525C102.985 732.871 98.1 687.261 108.493 646.201C118.886 605.141 143.572 568.541 174.703 539.826C205.834 511.111 243.203 489.82 282.075 473.026L282.548 472.77C281.014 465.537 285.794 458.163 292.12 454.329C294.914 452.749 298.038 451.844 301.244 451.684C305.18 451.339 309.295 451.543 313.333 451.007C316.911 450.534 320.541 449.64 324.157 448.924C329.499 447.863 334.828 447.199 339.901 448.824C348.412 451.559 356.001 459.367 355.39 468.287L355.378 468.514Z" fill="#171717"/>
|
||||||
|
<path d="M274.4 303.723C308.167 292.969 338.843 274.234 363.83 249.104C370.51 242.347 376.718 235.139 382.411 227.532" stroke="#171717" stroke-width="3.834" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M364.542 249.808C374.442 269.821 381.296 291.597 382.293 313.908C383.008 328.357 380.975 342.81 376.301 356.501C373.704 363.978 370.189 371.104 365.835 377.714C358.065 389.445 347.688 399.214 339.075 410.341C330.462 421.468 323.42 434.826 324.149 448.884" stroke="#171717" stroke-width="3.834" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M274.4 303.724C275.522 326.597 284.855 348.299 300.687 364.848C302.693 366.931 304.815 370.407 302.617 372.298C301.586 372.983 300.346 373.282 299.117 373.141C287.333 373.115 275.559 372.663 263.795 371.786C223.538 368.817 183.798 360.911 145.471 348.246" stroke="#171717" stroke-width="3.834" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M144.365 347.556C144.442 347.479 144.518 347.415 144.595 347.339C162.857 330.457 172.352 306.228 179.572 282.42C186.818 258.497 192.518 233.679 205.463 212.3C228.763 173.809 275.839 151.189 320.452 157.055C341.704 159.841 362.726 169.08 376.362 185.617C389.589 201.668 394.713 222.869 397.32 243.508C399.927 264.147 400.464 285.208 406.214 305.194C411.862 324.794 423.594 343.877 441.971 352.58C442.342 352.759 442.712 352.925 443.083 353.091" stroke="#171717" stroke-width="3.834" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M376.924 356.72C398.676 356.837 420.41 355.453 441.971 352.579L442.84 352.464" stroke="#171717" stroke-width="3.834" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M263.75 372.208C275.437 381.483 284.869 393.286 291.338 406.73C297.807 420.174 301.145 434.91 301.1 449.83" stroke="#171717" stroke-width="3.834" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M588.525 475.478L438.265 465.165L435.965 488.654L402.444 830.067L399.48 860.278L802.707 878.322L806.247 846.834L846.004 493.139L691.258 482.519L588.525 475.478Z" stroke="#171717" stroke-width="3.834" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M399.48 860.279L239.354 856.675L239.124 848.279L238.907 839.985L402.189 830.056L402.444 830.068L805.416 846.745" stroke="#171717" stroke-width="3.834" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M680.92 663.783C680.918 672.702 678.271 681.421 673.314 688.836C668.357 696.251 661.312 702.03 653.071 705.442C644.83 708.854 635.762 709.745 627.014 708.004C618.267 706.262 610.232 701.966 603.925 695.659C597.619 689.351 593.325 681.315 591.586 672.566C589.846 663.818 590.74 654.751 594.154 646.51C597.568 638.27 603.348 631.227 610.765 626.272C618.181 621.317 626.9 618.672 635.82 618.672C641.743 618.672 647.609 619.839 653.081 622.106C658.554 624.373 663.526 627.696 667.714 631.885C671.902 636.074 675.224 641.047 677.49 646.52C679.756 651.994 680.921 657.859 680.92 663.783V663.783Z" stroke="#171717" stroke-width="3.834" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M333.091 324.082C335.689 323.715 338.2 322.884 340.503 321.628C342.727 320.235 344.465 317.781 344.247 315.162C344.017 312.414 341.793 310.319 339.889 308.312C337.373 305.829 335.375 302.872 334.01 299.612C332.64 296.32 332.508 292.643 333.639 289.261" stroke="#171717" stroke-width="3.834" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M316.12 294.127C315.311 293.148 314.317 292.34 313.194 291.747C312.071 291.155 310.842 290.791 309.577 290.677" stroke="#171717" stroke-width="3.834" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M344.337 285.91C345.015 284.431 346.058 283.149 347.366 282.183C348.675 281.218 350.208 280.6 351.82 280.388C353.433 280.176 355.073 280.376 356.587 280.971C358.101 281.566 359.44 282.535 360.477 283.788" stroke="#171717" stroke-width="3.834" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M297.601 346.956C299.838 350.346 303.18 352.857 307.059 354.062C310.938 355.266 315.115 355.09 318.879 353.563" stroke="#171717" stroke-width="3.834" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M238.1 848.3C215.008 845.54 207 842.332 196.273 835.24C167.302 816.058 144.58 797.771 125.833 768.519C102.985 732.868 98.1003 687.258 108.493 646.2C118.886 605.142 143.572 568.54 174.703 539.825C205.834 511.11 243.203 489.819 282.075 473.025" stroke="#171717" stroke-width="3.834" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M282.548 472.77C281.014 465.537 285.794 458.163 292.12 454.329C294.915 452.749 298.039 451.844 301.244 451.684C305.18 451.339 309.295 451.543 313.333 451.007C316.911 450.534 320.541 449.64 324.157 448.924C329.499 447.863 334.828 447.199 339.901 448.824C348.412 451.559 356.001 459.367 355.39 468.287" stroke="#171717" stroke-width="3.834" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M355.276 468.514H355.376C383.302 469.435 410.711 476.297 435.776 488.642" stroke="#171717" stroke-width="3.834" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M588.538 475.35C605.617 451.767 619.958 426.317 631.285 399.492L643.425 401.946C664.345 406.176 685.261 410.402 706.172 414.623C709.265 415.249 712.344 415.875 715.437 416.502C717.316 416.885 719.411 417.409 720.395 419.058C721.595 421.052 720.548 423.582 719.5 425.665C710.107 444.246 700.718 462.831 691.334 481.421" stroke="#171717" stroke-width="3.834" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M643.821 400.001C640.741 391.477 637.657 382.949 634.569 374.417C633.393 371.158 632.192 367.746 632.669 364.317C633.146 360.888 635.869 357.493 639.327 357.544C642.327 357.582 644.682 360.023 646.573 362.362C651.466 368.348 655.803 374.769 659.531 381.544" stroke="#171717" stroke-width="3.834" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M701.546 379.952C703.718 374.393 705.405 368.668 705.533 362.738C705.622 358.828 704.051 353.907 700.153 353.588C697.495 353.358 695.271 355.488 693.61 357.575C689.758 362.403 686.731 367.835 684.652 373.651C683.963 375.584 683.383 377.554 682.914 379.551" stroke="#171717" stroke-width="3.834" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M701.547 379.952C700.278 382.436 699.197 385.012 698.313 387.658C699.424 385.115 700.537 382.559 701.547 379.952Z" stroke="#171717" stroke-width="3.834" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M706.415 413.434C712.144 402.221 717.234 390.693 721.661 378.904C722.619 376.348 723.561 373.716 723.461 370.994C723.361 368.272 721.979 365.422 719.474 364.374C715.64 362.774 711.538 365.874 708.854 369.026C706.001 372.372 703.548 376.039 701.544 379.952" stroke="#171717" stroke-width="3.834" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M681.674 380.324C682.492 378.036 683.284 375.736 684.074 373.449H684.087C690.4 355.187 696.142 336.742 701.314 318.114C702.914 312.351 703.985 305.028 699.214 301.414C695.329 298.462 689.387 300.021 685.975 303.523C682.563 307.025 681.068 311.923 679.675 316.609C673.233 338.333 666.793 360.063 660.353 381.797C660.327 381.897 660.289 381.997 660.264 382.104" stroke="#171717" stroke-width="3.834" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M367.51 163.437C348.216 147.874 321.776 142.09 297.416 146.678C273.056 151.266 250.99 165.778 235.843 185.399C220.696 205.02 212.318 229.49 210.638 254.222C210.118 261.88 211.073 271.104 217.845 274.716C224.276 278.146 232.587 274.072 236.563 267.963C240.539 261.854 241.421 254.323 242.744 247.155C247.027 223.955 257.359 201.41 274.526 185.221C291.693 169.032 316.116 159.876 339.38 163.821C354.453 166.466 368.026 174.563 377.514 186.571C379.8 189.48 381.79 192.609 383.457 195.912C384.248 197.487 386.135 205.201 387.439 205.746C391.949 207.634 385.988 187.346 385.01 185.268C380.893 176.767 374.911 169.305 367.51 163.437Z" fill="white" stroke="#171717" stroke-width="3" stroke-miterlimit="10"/>
|
||||||
|
<path d="M286.572 382.378C299.835 385.138 313.652 382.557 325.024 375.195C327.48 373.587 329.924 371.715 332.824 371.27C335.724 370.825 339.216 372.501 339.494 375.423C339.672 377.284 338.533 379.005 337.301 380.411C332.72 385.636 326.201 388.902 319.437 390.493C312.673 392.084 305.637 392.106 298.7 391.655C282.876 390.628 265.021 387.367 251.57 378.419C247.793 375.907 243.215 370.453 249.406 367.983C253.947 366.171 259.633 367.883 263.382 370.583C270.735 375.882 277.5 380.442 286.572 382.378Z" fill="white" stroke="#171717" stroke-width="3" stroke-miterlimit="10"/>
|
||||||
|
<path d="M362.682 367.335L342.364 383.087C341.72 383.586 340.985 383.953 340.199 384.168C339.414 384.383 338.594 384.441 337.786 384.339C336.978 384.237 336.198 383.977 335.491 383.573C334.784 383.169 334.163 382.63 333.664 381.987L329.52 376.642C329.021 375.998 328.653 375.263 328.438 374.477C328.224 373.692 328.166 372.872 328.268 372.064C328.37 371.256 328.63 370.476 329.034 369.769C329.437 369.062 329.976 368.441 330.62 367.942L350.938 352.19C351.581 351.691 352.317 351.323 353.102 351.108C353.888 350.894 354.708 350.835 355.516 350.938C356.324 351.04 357.104 351.3 357.811 351.704C358.518 352.107 359.139 352.646 359.638 353.29L363.782 358.635C364.281 359.278 364.648 360.014 364.863 360.799C365.078 361.585 365.136 362.405 365.034 363.213C364.932 364.021 364.672 364.8 364.268 365.508C363.864 366.215 363.325 366.836 362.682 367.335V367.335Z" fill="#171717"/>
|
||||||
|
<path d="M398.556 800.73C358.707 800.939 318.129 800.105 280.269 787.672C242.409 775.239 207.078 749.421 192.338 712.398C182.572 687.869 182.538 660.074 189.57 634.625C196.602 609.176 210.37 585.946 227.176 565.582" stroke="white" stroke-width="3.834" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M341.736 467.523C340.874 462.923 340.01 458.323 339.146 453.723" stroke="white" stroke-width="3.834" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M324.666 469.975C324.059 465.365 323.452 460.755 322.846 456.145" stroke="white" stroke-width="3.834" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M307.187 471.182C306.787 467.573 306.389 463.964 305.992 460.356" stroke="white" stroke-width="3.834" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M291.385 471.801C291.202 468.593 291.019 465.384 290.835 462.176" stroke="white" stroke-width="3.834" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M624.212 429.794C650.005 435.892 676.005 441.002 702.212 445.124" stroke="white" stroke-width="3.834" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M406.407 546.948C402.166 542.53 397.925 538.112 393.683 533.693" stroke="white" stroke-width="3.834" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M348.589 610.66C352.207 605.053 355.825 599.447 359.444 593.841" stroke="white" stroke-width="3.834" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M317.573 549.833L303.573 537.326" stroke="white" stroke-width="3.834" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M266.167 622.665L276.426 607.052" stroke="white" stroke-width="3.834" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M324.8 665.249C319.82 660.4 314.839 655.552 309.857 650.705" stroke="white" stroke-width="3.834" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M399.587 649.401L385.231 636.088" stroke="white" stroke-width="3.834" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M345.06 712.949C350.401 708.836 354.906 703.74 358.332 697.935" stroke="white" stroke-width="3.834" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M272.286 721.36C277.478 716.916 282.122 711.869 286.118 706.325" stroke="white" stroke-width="3.834" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M241.09 684.001L229.768 672.473" stroke="white" stroke-width="3.834" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M385.507 753.679L373.382 741.144" stroke="white" stroke-width="3.834" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M228.828 817.69L216.384 799.479" stroke="white" stroke-width="3.834" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M181.947 778.868L199.4 768.659" stroke="white" stroke-width="3.834" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M164.333 746.183L155.446 729.873" stroke="white" stroke-width="3.834" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M133.923 699.648L148.93 688.785" stroke="white" stroke-width="3.834" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M166.627 650.28L155.676 632.92" stroke="white" stroke-width="3.834" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M132.539 615.321C137.104 610.048 142.244 605.301 147.861 601.167" stroke="white" stroke-width="3.834" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M197.453 567.901C195.72 562.327 193.986 556.754 192.253 551.182" stroke="white" stroke-width="3.834" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M242.11 528.162L256.01 518.633" stroke="white" stroke-width="3.834" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M133.8 484.672C102.33 469.325 61.2592 504.494 53.0662 533.92C45.2162 561.008 94.4042 609.814 105.65 568.383C99.0682 544.445 67.4812 559.9 68.3312 580.67C67.9162 603.554 79.3222 655.207 40.5752 647.158" stroke="#171717" stroke-width="3.834" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M607.748 220.814C613.101 227.871 617.535 236.084 617.848 244.937C618.161 253.79 613.41 263.25 605.071 266.237C596.732 269.224 585.794 263.153 585.758 254.295C585.745 251.033 587.589 247.424 590.795 246.825C595.124 246.016 598.269 250.734 600.041 254.766C603.041 261.583 605.641 270.03 601.186 275.996C598.408 279.715 593.673 281.254 589.641 283.554C577.018 290.754 570.93 307.641 576.056 321.239" stroke="#171717" stroke-width="3.834" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M903.948 471C900.873 475.329 899.3 480.546 899.47 485.854C899.64 491.161 901.543 496.267 904.888 500.391C908.443 504.566 913.472 507.535 916.07 512.363C920.82 521.189 915.563 532.07 909.181 539.798C906.237 543.362 902.771 546.867 898.281 547.978C893.791 549.089 888.187 546.778 887.294 542.241C886.172 536.541 892.429 532.313 897.894 530.356C902.444 528.727 907.551 527.482 912.018 529.327C916.064 530.997 918.809 535.001 919.893 539.242C920.977 543.483 920.609 547.959 919.893 552.276C918.522 560.558 915.566 569.121 908.976 574.319C902.386 579.517 891.402 579.708 886.5 572.895" stroke="#171717" stroke-width="3.834" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M744.168 407.511C756.31 391.296 757.12 367.459 746.107 350.457" stroke="#171717" stroke-width="3.834" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M447.2 164.791C446.35 157.267 445.499 149.744 444.648 142.222" stroke="#171717" stroke-width="3.834" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M435.735 155.414C442.761 153.219 449.951 151.583 457.235 150.524" stroke="#171717" stroke-width="3.834" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M403.449 108.276L390.257 86.4219" stroke="#171717" stroke-width="3.834" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M386.784 104.267C393.614 98.2716 399.998 91.7857 405.884 84.8613L404.631 87.0743" stroke="#171717" stroke-width="3.834" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M775.644 327.154C776.883 322.112 779.364 317.461 782.861 313.623" stroke="#171717" stroke-width="3.834" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M784.775 324.262L771.24 316.15" stroke="#171717" stroke-width="3.834" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M454.418 306.237C474.618 295.823 493.969 283.841 512.295 270.4" stroke="#171717" stroke-width="3.834" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M435.547 296.479L444.596 268.524" stroke="#171717" stroke-width="3.834" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M465.516 325.911C474.065 330.56 482.938 334.586 492.067 337.959" stroke="#171717" stroke-width="3.834" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M480.215 96.2234L491.803 103.262C491.952 103.353 492.069 103.487 492.14 103.646C492.211 103.806 492.231 103.983 492.197 104.154C492.164 104.325 492.079 104.482 491.954 104.604C491.829 104.725 491.67 104.805 491.498 104.833L478.117 107.018C477.95 107.046 477.796 107.122 477.672 107.237C477.549 107.352 477.463 107.5 477.424 107.664L474.31 120.864C474.27 121.034 474.178 121.187 474.049 121.303C473.919 121.42 473.756 121.493 473.584 121.515C473.411 121.536 473.235 121.504 473.081 121.422C472.927 121.341 472.802 121.214 472.722 121.059L466.509 109C466.431 108.851 466.312 108.727 466.164 108.645C466.017 108.564 465.849 108.527 465.681 108.541L452.169 109.657C451.995 109.672 451.821 109.632 451.67 109.545C451.52 109.457 451.4 109.326 451.326 109.168C451.252 109.01 451.229 108.833 451.259 108.661C451.288 108.49 451.37 108.331 451.493 108.207L461.034 98.5744C461.152 98.4546 461.233 98.3024 461.265 98.1368C461.297 97.9713 461.28 97.7999 461.215 97.6444L455.978 85.1384C455.91 84.9776 455.894 84.8002 455.931 84.6299C455.968 84.4596 456.056 84.3046 456.183 84.1858C456.31 84.067 456.471 83.99 456.644 83.9653C456.816 83.9405 456.992 83.9692 457.148 84.0474L469.258 90.1474C469.408 90.2231 469.578 90.2526 469.745 90.2321C469.912 90.2117 470.07 90.1422 470.198 90.0324L480.474 81.1874C480.606 81.0735 480.77 81.0028 480.943 80.985C481.117 80.9671 481.292 81.0028 481.444 81.0874C481.597 81.172 481.72 81.3013 481.796 81.4579C481.873 81.6146 481.9 81.791 481.874 81.9634L479.818 95.3634C479.79 95.53 479.813 95.701 479.884 95.8543C479.955 96.0077 480.07 96.1362 480.215 96.2234V96.2234Z" fill="#171717"/>
|
||||||
|
<path d="M762.678 289.275C761.827 281.752 760.976 274.229 760.126 266.706" stroke="#171717" stroke-width="3.834" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M751.211 279.901C758.237 277.705 765.426 276.07 772.711 275.011" stroke="#171717" stroke-width="3.834" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M222.672 392.103C250.405 392.103 272.887 361.745 272.887 324.297C272.887 286.849 250.405 256.491 222.672 256.491C194.939 256.491 172.457 286.849 172.457 324.297C172.457 361.745 194.939 392.103 222.672 392.103Z" fill="white" stroke="#171717" stroke-width="3" stroke-miterlimit="10"/>
|
||||||
|
<g opacity="0.1">
|
||||||
|
<path d="M209.837 258.73C206.562 259.437 204.114 261.795 201.357 263.571C198.315 265.339 195.518 267.498 193.038 269.993C188.525 275.062 184.636 280.654 181.456 286.649C174.175 300.21 170.468 314.706 171.839 330.158C173.239 345.885 178.112 361.469 188.605 373.495C196.621 382.681 212.75 398.238 226.144 389.643C230.25 387.009 229.994 381.643 226.144 378.958C221.776 375.912 216.47 375.036 212.252 371.545C208.015 368.128 204.6 363.804 202.258 358.89C197.169 348.19 192.211 338.142 191.277 326.069C190.413 314.901 191.477 303.051 195.277 292.477C197.277 287.263 199.845 282.284 202.933 277.631C204.558 275.031 205.844 272.247 207.411 269.631C208.957 267.048 211.424 265.141 212.639 262.383C212.87 261.955 212.972 261.469 212.933 260.983C212.894 260.498 212.715 260.035 212.419 259.649C212.122 259.263 211.72 258.971 211.261 258.809C210.802 258.646 210.306 258.62 209.833 258.733L209.837 258.73Z" fill="#171717"/>
|
||||||
|
</g>
|
||||||
|
<g opacity="0.1">
|
||||||
|
<path d="M276.65 375.545C276.397 376.54 276.376 377.579 276.589 378.583C276.803 379.587 277.244 380.528 277.88 381.333C278.435 382.285 279.232 383.074 280.188 383.62C281.145 384.167 282.229 384.453 283.331 384.448C284.433 384.444 285.514 384.15 286.467 383.596C287.419 383.042 288.21 382.247 288.758 381.291C289.306 380.335 289.594 379.252 289.592 378.15C289.589 377.048 289.297 375.966 288.745 375.013C288.192 374.059 287.399 373.268 286.444 372.718C285.489 372.167 284.407 371.878 283.305 371.878C280.665 371.6 277.436 372.709 276.65 375.545V375.545Z" fill="#171717"/>
|
||||||
|
</g>
|
||||||
|
<g opacity="0.1">
|
||||||
|
<path d="M287.477 395.118C287.388 399.575 289.562 403.566 291.244 407.585C293.015 411.814 294.502 416.178 295.844 420.562C297.204 424.973 298.251 429.473 298.976 434.031C299.687 438.583 299.617 443.215 300.502 447.731C301.168 451.131 304.971 453.166 308.165 452.731C311.88 452.231 313.771 449.382 314.221 445.871C315.438 436.371 312.332 424.92 309.436 415.915C306.845 407.859 302.467 395.154 294.321 391.187C291.24 389.687 287.551 391.487 287.479 395.114L287.477 395.118Z" fill="#171717"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<defs>
|
||||||
|
<clipPath id="clip0_46_109">
|
||||||
|
<rect width="960" height="960" fill="white"/>
|
||||||
|
</clipPath>
|
||||||
|
<clipPath id="clip1_46_109">
|
||||||
|
<rect width="885" height="801" fill="white" transform="translate(38 80)"/>
|
||||||
|
</clipPath>
|
||||||
|
</defs>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 24 KiB |
|
@ -0,0 +1,128 @@
|
||||||
|
<svg width="960" height="960" viewBox="0 0 960 960" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M845.832 243.6C846.257 242.067 846.502 240.49 846.563 238.9C845.915 231.946 839.403 226.552 832.491 225.476C827.529 225.19 822.564 225.981 817.936 227.794C813.388 229.608 809.177 232.173 805.478 235.382C794.51 244.694 786.357 258.918 780.052 271.017C775.071 271.248 770.111 271.819 765.207 272.728L765.152 272.438C763.62 247.177 765.041 233.864 790.385 222.703C815.798 211.003 839.665 187.012 861.146 219.103C883.73 244.309 852.62 253.29 832.257 269.639L830.357 266.617C829.957 265.445 829.57 264.286 829.17 263.117C836.478 257.538 843.569 251.9 845.832 243.6Z" fill="#1E1E1E"/>
|
||||||
|
<path d="M569.37 807.966C546.262 824.507 516.793 833.42 489.711 822.466C464.105 812.685 449.785 784.058 457.938 757.9C465.844 724.155 496.913 697.142 531.927 696.59C543.709 696.038 557.299 699.666 563.827 709.931C584.88 678.724 618.791 645.392 659.352 654.897C687.11 662.665 712.026 685.98 715.862 715.008L716.317 714.939C736.611 690.092 775.817 685.511 801.288 705.019C805.965 708.468 810.407 713.049 811.194 718.802V719.009C840.869 718.25 853.217 757.955 842.111 782.568C825.887 829.668 773.558 853.149 733.949 817.183C718.869 847.548 692.187 872.933 657.462 876.272C615.574 883.679 565.783 853.866 569.37 807.966Z" fill="#1E1E1E"/>
|
||||||
|
<path d="M830.354 266.615L832.254 269.637C826.707 274.079 821.975 279.087 819.327 285.102L819.271 285.144C817.083 282.525 814.538 280.227 811.711 278.315L813.146 278.204C816.926 272.258 823.121 267.704 829.163 263.111C829.567 264.284 829.954 265.443 830.354 266.615Z" fill="#1E1E1E"/>
|
||||||
|
<path d="M590.41 409.158C641.966 371.922 639.11 273.941 630.35 218.08C628.142 206.795 625.55 194.089 632.05 184.597C634.847 181.35 638.242 178.67 642.05 176.705C647.153 174.122 652.683 172.486 658.371 171.877C671.091 170.332 684.942 172.746 695.786 176.623C696.007 176.705 696.228 176.788 696.448 176.885C698.956 177.832 701.379 178.99 703.691 180.348C722.206 191.26 730.291 213.1 729.391 234.581C741.091 340.343 675.544 433.743 609.691 510.616C675.181 464.081 729.414 373.922 743.114 296.916C746.853 287.134 753.268 277.891 762.65 273.228C763.505 273.048 764.36 272.897 765.202 272.728C770.105 271.819 775.065 271.247 780.047 271.017C793.622 270.424 804.011 273.117 811.709 278.317C814.536 280.229 817.081 282.527 819.269 285.146C853.498 326.328 800.92 445.127 770.389 482.087C722.378 543.587 658.589 603.977 581.712 624.519C575.021 626.313 568.224 627.794 561.321 628.962C562.687 625.296 563.654 621.494 564.205 617.621C570.565 572.466 523.492 548.047 530.776 500.146C530.5 482.546 544.835 472.623 556.851 462.083C566.668 452.148 572.374 438.874 572.827 424.915C572.961 422.827 572.906 420.73 572.662 418.652C578.979 416.302 584.949 413.108 590.41 409.158Z" fill="white"/>
|
||||||
|
<path d="M687.08 117.948C684.828 119.465 682.845 121.349 681.216 123.522C679.975 125.191 678.761 126.902 677.602 128.64C668.695 141.669 662.165 156.172 658.315 171.478L658.37 171.878C652.682 172.486 647.152 174.122 642.049 176.706L641.787 175.685C632.187 141.774 652.948 120.514 677.905 101.379C694.116 81.7607 718.052 86.8927 736.857 99.6267C775.21 126.327 710.078 152.604 704.008 179.797L703.69 180.349C701.378 178.991 698.955 177.832 696.447 176.886L696.53 176.693C696.558 166.014 703.13 157.24 709.154 148.3C712.202 144.068 714.779 139.515 716.838 134.724C717.418 133.258 717.898 131.755 718.273 130.224C721.322 109.657 699.952 109.022 687.08 117.948Z" fill="#1E1E1E"/>
|
||||||
|
<path d="M511.206 676.061C494.485 676.889 476.853 675.992 460.806 675.137C463.306 658.967 474.478 646.703 484.632 634.631C510.652 608.115 488.026 577.749 477.692 550.046C463.565 520.37 515.37 498.434 496.028 470.539L495.986 470.483C510.845 457.464 524.495 443.126 536.768 427.646L537.347 428.101C553.006 455.528 521.813 480.292 512.693 504.353C495.779 551.853 538.993 581.446 537.293 618.738C533.982 639.377 509.066 653.159 511.163 675.275L511.206 676.061Z" fill="#1E1E1E"/>
|
||||||
|
<path d="M511.164 675.274C509.064 653.158 533.983 639.374 537.294 618.737C538.994 581.445 495.781 551.852 512.694 504.352C521.814 480.291 553.007 455.527 537.348 428.1L536.769 427.645C548.848 412.446 559.794 396.381 569.521 379.579C575.992 370.86 581.303 372.253 585.056 377.799L584.956 377.868C563.765 367.342 571.156 401.736 572.664 418.65C572.908 420.729 572.963 422.825 572.829 424.913C572.376 438.872 566.67 452.146 556.853 462.08C544.837 472.621 530.502 482.54 530.778 500.144C523.494 548.044 570.567 572.464 564.207 617.619C563.655 621.492 562.688 625.294 561.323 628.96C557.46 639.376 550.493 648.605 541.043 654.345C524.487 663.423 535.869 672.652 548.161 669.934C537.261 673.673 524.515 675.411 511.201 676.06L511.164 675.274Z" fill="#1E1E1E"/>
|
||||||
|
<path d="M453.648 501.125C468.684 492.251 482.859 481.992 495.988 470.483L496.03 470.539C515.372 498.434 463.567 520.37 477.695 550.046C488.028 577.746 510.654 608.115 484.634 634.631C474.48 646.703 463.305 658.967 460.808 675.137C446.819 674.392 434.043 673.688 424.124 674.185C358.854 746.546 263.094 760.314 185.118 698.659C166.2 689.443 108.011 631.501 80.0322 585.737L80.1842 585.637C98.8007 579.542 116.087 569.96 131.12 557.401L132.609 557.125C169.238 630.562 266.861 709.311 328.723 650.291L328.571 649.739V649.725C332.131 648.801 335.731 647.67 339.371 646.331C356.878 638.343 365.418 620.504 362.741 604.666L362.797 604.653C444.112 636.536 458.97 556.49 391.451 555.453L390.72 555.398C399.536 541.798 402.309 519.598 395.149 508.27C393.826 505.476 392.3 502.783 390.582 500.213L390.651 500.172C407.883 420.112 410.269 365.562 391.024 293.822L391.286 293.753C410.752 281.953 436.717 266.726 458.708 280.591L459.398 280.563C462.298 354.07 456.776 427.576 453.576 501.013L453.648 501.125Z" fill="#1E1E1E"/>
|
||||||
|
<path d="M459.4 280.564L458.71 280.592C436.719 266.727 410.754 281.958 391.288 293.754L391.026 293.823C389.632 288.594 388.11 283.264 386.459 277.833L386.542 277.805C403.566 259.042 433.794 247.136 457.648 259.939L458.348 259.898C458.793 266.796 459.143 273.684 459.4 280.564Z" fill="#1E1E1E"/>
|
||||||
|
<path d="M425.379 224.233C428.452 224.287 431.513 224.62 434.526 225.227C450.475 225.127 458.614 238.237 457.926 253.233C458.077 255.454 458.226 257.675 458.353 259.897L457.653 259.938C433.799 247.138 403.571 259.038 386.547 277.804L386.464 277.832C384.905 272.644 383.236 267.351 381.456 261.952C381.273 257.346 382.048 252.753 383.732 248.461C385.415 244.17 387.971 240.275 391.237 237.022C399.7 228.483 412.59 224 425.379 224.233Z" fill="#1E1E1E"/>
|
||||||
|
<path d="M114.812 272.81L113.557 273.045C87.3852 284.081 45.3902 254.2 65.8362 226.551C73.0792 216.411 83.9502 210.161 96.0912 210.934C84.2122 182.141 118.234 161.309 142.474 187.508L142.598 187.563C160.698 147.126 235.985 146.505 245.145 190.405C266.791 181.879 296.053 196.627 305.545 216.894C318.745 261.373 258.928 307.394 225.003 268.616C206.792 329.168 121.821 335.514 114.812 272.81Z" fill="#1E1E1E"/>
|
||||||
|
<path d="M300.868 512.823C288.134 533.186 310.484 554.584 304.593 575.596C305.159 576.368 306.483 576.296 307.504 576.096C318.859 573.917 330.958 574.344 341.498 579.076C351.583 583.27 357.985 590.334 361.047 598.446C361.82 600.457 362.385 602.542 362.731 604.668H362.744C365.421 620.506 356.881 638.345 339.374 646.333C335.731 647.671 332.131 648.802 328.574 649.727V649.741C251.591 670.09 197.882 599.674 248.239 529.162C273.265 496.754 263.346 483.496 253.357 448.288C244.183 372.368 345.657 391.613 319.482 285.162C357.96 303.511 413.807 362.517 392.671 408.169C384.821 424.738 367.038 437.32 366.486 455.628C365.976 472.901 380.848 485.51 390.586 500.217C392.304 502.787 393.83 505.48 395.153 508.274C402.313 519.601 399.54 541.799 390.724 555.402C387.468 560.424 383.384 564.287 378.68 566.002C373.741 567.809 368.112 567.257 362.014 563.228L361.614 563.035C359.848 533.125 326.006 520.86 301.449 513.203L300.868 512.823Z" fill="white"/>
|
||||||
|
<path d="M132.609 557.124L131.119 557.4C116.087 569.96 98.8007 579.544 80.1842 585.64L80.0322 585.74C76.9799 580.806 74.1848 575.718 71.6582 570.495L72.4582 570.205C90.9926 562.625 108.768 553.308 125.546 542.378L125.987 542.213C127.891 547.121 130.1 552.116 132.609 557.124Z" fill="#1E1E1E"/>
|
||||||
|
<path d="M114.867 516.742C115.983 515.502 116.892 514.091 117.558 512.562L118.468 512.631C119.653 522.78 122.181 532.727 125.987 542.21L125.546 542.375C108.768 553.304 90.9925 562.621 72.4581 570.201L71.6581 570.491C67.3261 561.386 64.7731 553.191 64.7041 546.499H64.9531C68.4981 545.244 72.1821 543.947 75.8791 542.54C90.9451 536.857 106.328 529.517 114.867 516.742Z" fill="#1E1E1E"/>
|
||||||
|
<path d="M453.579 501.013C456.779 427.576 462.298 354.07 459.401 280.563C459.139 273.679 458.789 266.791 458.352 259.897C458.228 257.675 458.076 255.454 457.925 253.233C458.614 238.233 450.475 225.133 434.525 225.227C431.512 224.62 428.451 224.287 425.378 224.233C412.589 223.999 399.703 228.483 391.233 237.023C387.967 240.276 385.411 244.171 383.727 248.462C382.043 252.753 381.268 257.346 381.451 261.952C383.231 267.36 384.9 272.654 386.459 277.832C388.115 283.268 389.637 288.598 391.026 293.822C410.271 365.562 407.885 420.112 390.653 500.172" stroke="white" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M362.012 563.221C368.112 567.249 373.739 567.801 378.678 565.994C383.378 564.283 387.466 560.42 390.722 555.394C399.538 541.794 402.311 519.594 395.151 508.266C393.828 505.472 392.302 502.779 390.584 500.209C380.844 485.502 365.972 472.893 366.484 455.62C367.036 437.312 384.819 424.73 392.669 408.161C413.805 362.509 357.958 303.503 319.48 285.154C345.652 391.605 244.18 372.36 253.355 448.28C263.343 483.488 273.263 496.746 248.237 529.154C197.88 599.666 251.589 670.082 328.572 649.733V649.719C332.131 648.795 335.731 647.664 339.372 646.325C356.879 638.337 365.419 620.499 362.742 604.66H362.729C362.383 602.534 361.818 600.449 361.045 598.438C357.983 590.326 351.581 583.262 341.496 579.068C330.956 574.336 318.856 573.909 307.502 576.088C306.481 576.295 305.157 576.364 304.591 575.588C304.525 575.516 304.474 575.432 304.439 575.34" stroke="white" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M300.992 583.349C302.591 580.969 303.806 578.353 304.592 575.596C310.483 554.584 288.133 533.186 300.867 512.823C301.441 511.877 302.076 510.969 302.767 510.105C305.658 503.863 306.83 496.961 306.161 490.114" stroke="white" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M301.448 513.2C326.005 520.857 359.848 533.122 361.613 563.032" stroke="white" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M425.352 224.358C425.365 224.316 425.365 224.275 425.379 224.233C432.222 195.733 418.55 117.433 411.997 196.933C411.969 197.209 411.955 197.471 411.928 197.747" stroke="white" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M391.4 237.119C391.345 237.092 391.29 237.05 391.235 237.019C382.612 231.819 361.352 220.133 360.386 210.144C367.386 205.026 378.97 210.917 386.323 216.463C387.565 217.387 388.682 218.312 389.634 219.163" stroke="white" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M412.107 197.427C412.066 197.262 412.038 197.096 411.997 196.927C397.925 133.505 386.405 170.41 399.07 206.874C399.332 207.619 399.608 208.364 399.884 209.109" stroke="white" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M399.456 208.341C399.346 207.982 399.18 207.486 398.987 206.906C395.387 196.256 378.458 151.556 370.539 170.167C370.912 185.784 381.7 203.913 387.067 216.095" stroke="white" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M386.543 277.801C403.567 259.038 433.795 247.132 457.649 259.935" stroke="white" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M391.289 293.754C410.755 281.954 436.72 266.727 458.711 280.592" stroke="white" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M453.454 501.248C453.523 501.207 453.579 501.165 453.648 501.124C468.684 492.25 482.859 481.992 495.988 470.482C510.847 457.464 524.497 443.126 536.77 427.645C548.849 412.446 559.796 396.381 569.522 379.579C575.993 370.86 581.304 372.253 585.057 377.799C590.357 385.599 592.52 401.653 590.41 409.158C590.31 409.475 590.216 409.765 590.12 410.058" stroke="white" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M424.124 674.184C434.043 673.684 446.819 674.391 460.808 675.136C476.853 675.991 494.485 676.888 511.208 676.06C524.521 675.412 537.269 673.673 548.168 669.934C567.827 663.216 581.541 650.026 581.899 625.166" stroke="white" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M552.649 668.375C551.218 669.062 549.714 669.585 548.166 669.934C535.873 672.652 524.491 663.423 541.047 654.345C550.497 648.605 557.464 639.376 561.327 628.96C562.693 625.294 563.659 621.492 564.211 617.619C570.571 572.464 523.498 548.045 530.782 500.144C530.507 482.544 544.841 472.621 556.857 462.08C566.674 452.146 572.38 438.872 572.833 424.913C572.967 422.825 572.912 420.729 572.668 418.65C571.168 401.736 563.768 367.342 584.96 377.868" stroke="white" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M572.626 418.664C572.64 418.664 572.654 418.65 572.668 418.65C578.983 416.3 584.951 413.107 590.41 409.158C641.966 371.922 639.11 273.941 630.35 218.08C628.142 206.795 625.55 194.089 632.05 184.597C634.847 181.35 638.242 178.67 642.05 176.705C647.153 174.122 652.683 172.486 658.371 171.877C671.091 170.332 684.943 172.746 695.786 176.623C696.007 176.705 696.228 176.788 696.449 176.885C698.957 177.832 701.38 178.991 703.692 180.348C722.206 191.26 730.292 213.1 729.392 234.581C741.092 340.343 675.545 433.743 609.692 510.616" stroke="white" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M561.327 628.96C568.225 627.802 575.022 626.321 581.718 624.517C658.591 603.975 722.385 543.589 770.395 482.085C800.926 445.125 853.504 326.326 819.275 285.144C817.087 282.525 814.542 280.226 811.715 278.315C804.015 273.115 793.628 270.423 780.053 271.015C775.071 271.246 770.112 271.817 765.208 272.726C764.366 272.892 763.508 273.043 762.656 273.226C753.274 277.889 746.856 287.132 743.12 296.914C729.42 373.924 675.188 464.083 609.697 510.614" stroke="white" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M765.152 272.437C763.62 247.177 765.041 233.863 790.385 222.702C815.798 211.002 839.665 187.011 861.146 219.102C883.73 244.308 852.62 253.289 832.257 269.638C826.71 274.08 821.978 279.088 819.329 285.103" stroke="white" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M780.011 271.085C780.025 271.058 780.039 271.044 780.053 271.016C786.353 258.916 794.511 244.693 805.479 235.381C809.177 232.172 813.388 229.606 817.937 227.793C822.565 225.98 827.53 225.189 832.492 225.475C839.404 226.551 845.916 231.946 846.564 238.899C846.503 240.489 846.257 242.066 845.833 243.599C843.571 251.891 836.479 257.534 829.167 263.107C823.125 267.701 816.93 272.254 813.15 278.2" stroke="white" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M641.787 175.685C632.187 141.774 652.948 120.514 677.905 101.379C694.116 81.7607 718.052 86.8927 736.857 99.6267C775.21 126.327 710.078 152.604 704.008 179.797" stroke="white" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M658.314 171.477C662.164 156.172 668.693 141.669 677.599 128.639C678.758 126.901 679.972 125.19 681.213 123.521C682.843 121.349 684.825 119.465 687.077 117.947C699.949 109.021 721.319 109.656 718.27 130.226C717.895 131.757 717.416 133.261 716.835 134.726C714.776 139.518 712.2 144.071 709.151 148.302C703.122 157.242 696.551 166.016 696.527 176.695" stroke="white" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M332.3 573.03C339.695 573.899 343.682 567.318 345.31 561.041" stroke="white" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M322.528 550.295C327.578 541.079 335.248 548.777 329.564 555.716" stroke="white" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M319.479 531.476C316.417 532.622 316.099 537.05 316.968 539.782" stroke="white" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M310.331 555.771C309.195 556.751 308.271 557.953 307.616 559.303C306.961 560.653 306.59 562.122 306.524 563.621" stroke="white" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M307.779 525.791C304.316 529.254 301.64 536.718 303.254 541.229" stroke="white" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M361.351 598.318C377.658 599.27 391.261 579.032 378.679 565.995C378.679 565.981 378.651 565.952 378.638 565.938" stroke="white" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M391.454 555.453C458.973 556.488 444.114 636.534 362.8 604.653" stroke="white" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M383.107 586.274C385.617 597.932 402.063 591.793 398.655 581.156C394.916 574.658 381.23 577.444 383.107 586.274Z" stroke="white" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M72.3611 531.738C66.9671 534.814 64.6491 539.933 64.7041 546.5C64.7731 553.191 67.3261 561.386 71.6581 570.491C74.1844 575.714 76.9795 580.803 80.0321 585.736C108.011 631.5 166.2 689.442 185.118 698.658C263.094 760.313 358.854 746.545 424.124 674.184" stroke="white" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M64.9531 546.501C68.4981 545.245 72.1821 543.948 75.8791 542.541C90.9451 536.857 106.328 529.517 114.867 516.741C115.983 515.502 116.892 514.09 117.558 512.561C122.524 502.407 128.112 479.491 121.848 477.67C112.867 483.27 112.067 497.261 105.348 505.414C104.879 481.878 106.493 456.438 100.795 433.881C86.1951 434.019 90.3651 491.135 91.0141 502.724C88.2411 482.899 82.3081 463.681 76.4041 444.559C76.0591 443.442 75.3411 442.076 74.1821 442.269C60.8971 459.763 73.8931 485.355 76.3071 505.125C70.7443 491.654 64.4578 478.493 57.4751 465.701C56.7751 464.401 55.7371 462.914 54.2471 463.011C45.0001 469.048 65.1731 509.513 72.9001 531.545C74.2143 534.936 75.1532 538.462 75.7001 542.058" stroke="white" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M118.468 512.631C119.652 522.78 122.181 532.727 125.987 542.21C127.887 547.121 130.099 552.116 132.609 557.124C169.238 630.561 266.861 709.31 328.723 650.29" stroke="white" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M72.458 570.2C90.9924 562.62 108.768 553.303 125.546 542.373" stroke="white" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M80.1836 585.639C98.8001 579.544 116.086 569.96 131.119 557.399" stroke="white" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M460.794 675.232C460.794 675.205 460.808 675.163 460.808 675.132C463.308 658.962 474.48 646.698 484.634 634.626C510.654 608.11 488.028 577.744 477.694 550.041C463.567 520.365 515.372 498.429 496.03 470.534" stroke="white" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M511.164 675.275C509.064 653.159 533.983 639.375 537.294 618.738C538.994 581.446 495.781 551.853 512.694 504.353C521.814 480.292 553.007 455.528 537.348 428.101" stroke="white" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M565.411 712.882C564.948 711.864 564.418 710.877 563.824 709.93C557.299 699.665 543.709 696.037 531.924 696.589C496.91 697.141 465.84 724.154 457.935 757.899C449.782 784.057 464.102 812.684 489.708 822.465C516.79 833.42 546.259 824.507 569.367 807.965C574.86 804.037 580.024 799.667 584.808 794.9" stroke="white" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M569.384 807.745C569.384 807.814 569.37 807.897 569.37 807.966C565.783 853.866 615.57 883.679 657.459 876.266C692.184 872.927 718.866 847.542 733.946 817.176C734.76 815.562 735.532 813.921 736.277 812.276" stroke="white" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M563.135 710.978C563.369 710.633 563.604 710.288 563.824 709.93C584.877 678.723 618.789 645.391 659.349 654.896C687.107 662.664 712.023 685.979 715.859 715.007C716.242 717.924 716.409 720.866 716.359 723.807" stroke="white" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M811.19 718.801C810.403 713.048 805.961 708.467 801.284 705.018C775.816 685.51 736.607 690.091 716.313 714.938" stroke="white" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M806 719.533C807.714 719.234 809.448 719.058 811.188 719.009C840.863 718.25 853.211 757.955 842.105 782.568C825.881 829.668 773.552 853.149 733.943 817.183C733.832 817.083 733.736 816.989 733.625 816.893" stroke="white" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M898.714 555.633C900.76 556.476 902.99 556.77 905.184 556.488C916.677 555.026 925.299 538.07 919.795 527.957C907.13 514.382 895.637 519.1 887.374 526.233C886.256 527.199 885.208 528.206 884.214 529.213" stroke="white" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M887.76 526.951C887.636 526.703 887.511 526.468 887.373 526.234C880.448 513.169 865.879 512.81 857.698 525.158C855.587 527.144 854.732 529.021 854.676 530.842C854.538 534.815 858.167 538.513 860.871 542.307" stroke="white" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M854.042 530.813C827.788 520.659 813.053 557.881 840.853 565.456C844.605 566.132 852.193 564.956 856.253 561.689C857.19 561.051 857.935 560.169 858.406 559.138C858.878 558.107 859.059 556.967 858.93 555.84" stroke="white" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M856.193 561.056C856.207 561.263 856.221 561.483 856.248 561.69C859.325 594.373 909.06 589.09 905.183 556.49C905.17 556.297 905.142 556.09 905.114 555.883" stroke="white" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M363.682 792.528C359.956 798.212 356.195 803.879 352.397 809.528C348.01 816.039 343.577 822.514 339.097 828.953" stroke="#1E1E1E" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M363.227 822.01C359.723 817.761 356.113 813.599 352.397 809.525C348.189 804.875 343.852 800.35 339.387 795.949" stroke="#1E1E1E" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M96.5175 357.271C92.7655 354.085 89.1645 350.691 85.4945 347.38C80.676 342.812 75.4548 338.688 69.8945 335.06" stroke="#1E1E1E" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M94.7936 331.168C91.7169 336.576 88.6169 341.98 85.4936 347.379C83.0269 351.697 80.5346 356.001 78.0166 360.292" stroke="#1E1E1E" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M264.984 124.557C261.273 121.259 257.516 118.025 253.713 114.857C249.063 110.939 244.344 107.103 239.558 103.351" stroke="white" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M243.172 129.923C246.801 124.971 250.315 119.949 253.713 114.858C257.203 109.658 260.57 104.374 263.813 99.0059" stroke="white" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M890.366 440.214C886.89 436.476 883.501 432.663 880.199 428.777C876.446 424.403 872.804 419.943 869.272 415.395" stroke="white" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M870.335 440.586C873.688 436.695 876.976 432.758 880.2 428.776C883.58 424.596 886.886 420.361 890.119 416.07" stroke="white" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M523.553 102.482C523.108 101.262 522.582 100.073 521.98 98.9224C510.516 77.5524 472.58 77.0554 461.001 98.9224C441.438 130.861 468.327 158.991 495.588 141.722C498.638 139.766 501.456 137.471 503.988 134.879" stroke="#1E1E1E" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M557.587 105.9C559.468 104.359 561.589 103.138 563.865 102.286C578.806 96.739 597.721 108.315 599.9 124.525C600.08 155.208 567.259 164.603 549.268 147.425C545.085 143.347 541.98 138.293 540.232 132.718" stroke="#1E1E1E" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M521.829 99.2262C521.868 99.121 521.919 99.0204 521.98 98.9262C530.065 81.0462 558.058 82.8672 563.686 101.768" stroke="#1E1E1E" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M495.726 141.939C495.85 152.59 506.901 161.93 516.558 164.661C529.941 167.503 541.658 157.432 549.269 147.43C549.297 147.402 549.311 147.375 549.338 147.347" stroke="#1E1E1E" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M100.947 793.48C100.394 791.675 99.6973 789.917 98.8638 788.223C84.8638 760.189 40.9888 780.623 41.5128 810.173C40.8368 835.779 63.4768 839.918 78.4448 827.915C81.6316 825.367 84.3091 822.24 86.3368 818.699" stroke="white" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M145.426 828.329C147.282 829.861 149.327 831.15 151.51 832.164C174.039 842.553 200.61 815.65 194.016 791.564C185.973 769.573 156.146 770.607 141.977 785.852C141.812 786.032 141.632 786.225 141.477 786.418C138.547 789.679 136.433 793.59 135.31 797.827" stroke="white" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M98.7529 788.844C98.7949 788.637 98.8219 788.43 98.8639 788.223C102.934 766.963 132.14 770.55 141.48 786.416C141.563 786.554 141.646 786.692 141.729 786.844L141.977 785.85C142.032 785.616 142.087 785.381 142.156 785.15" stroke="white" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M78.3066 827.309C78.3486 827.516 78.3896 827.709 78.4446 827.916C87.9646 870.933 133.713 871.443 151.386 832.469" stroke="white" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M139.839 195.882C140.477 193.024 141.401 190.237 142.598 187.563C160.698 147.126 235.985 146.505 245.145 190.405C246.156 195.493 246.337 200.711 245.683 205.857" stroke="white" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M114.385 266.601C114.44 268.739 114.592 270.808 114.812 272.809C121.821 335.509 206.792 329.167 225.003 268.615C225.838 265.802 226.52 262.947 227.045 260.061" stroke="white" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M142.474 187.508C118.234 161.308 84.2117 182.141 96.0907 210.934C97.5883 214.51 99.5505 217.872 101.927 220.934" stroke="white" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M224.685 268.257C224.796 268.381 224.892 268.505 225.003 268.616C258.928 307.397 318.748 261.373 305.545 216.894C296.053 196.627 266.792 181.879 245.145 190.405C244.98 190.46 244.814 190.529 244.645 190.598" stroke="white" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M113.557 273.044C87.3852 284.081 45.3902 254.2 65.8362 226.551C73.0792 216.411 83.9502 210.161 96.0912 210.934H96.1322" stroke="white" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M713.112 154.038C711.802 152.121 710.483 150.208 709.154 148.299C705.22 142.643 701.229 137.037 697.179 131.481C693.854 126.929 690.487 122.418 687.078 117.947C685.812 116.264 684.529 114.585 683.229 112.912" stroke="white" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M667.82 127.343C671.087 127.757 674.348 128.19 677.602 128.643C684.141 129.513 690.667 130.46 697.179 131.485C703.747 132.492 710.3 133.573 716.838 134.727C721.032 135.46 725.227 136.219 729.421 137.004" stroke="white" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M830.354 266.616C829.954 265.444 829.567 264.285 829.167 263.116C826.449 255.039 823.827 246.939 821.3 238.817C820.155 235.147 819.033 231.472 817.934 227.794C817.201 225.338 816.474 222.882 815.754 220.427" stroke="white" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M796.994 233.437C799.823 234.099 802.651 234.747 805.479 235.382C810.746 236.568 816.02 237.713 821.303 238.817C829.457 240.514 837.634 242.11 845.833 243.604C847.833 243.977 849.848 244.336 851.862 244.694" stroke="white" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M587.889 349.416C589.32 326.546 591.88 303.784 595.57 281.131" stroke="white" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M514.308 382.758C515.219 376.013 515.762 369.223 515.936 362.418C517.591 327.709 521.398 293.136 527.336 258.898" stroke="white" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M335.933 271.354C340.825 226.384 344.804 181.326 347.871 136.181" stroke="white" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M137.824 452.667C136.999 442.821 138.436 432.947 139.405 423.114C141.309 403.799 141.417 384.349 139.727 365.014" stroke="white" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M618.405 445.313C615.178 446.129 611.791 445.467 608.49 445.057C603.762 444.469 598.983 444.408 594.241 444.875L594.741 443.519" stroke="#1E1E1E" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M608.5 437.055C606.927 443.326 605.92 449.727 605.492 456.179" stroke="#1E1E1E" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M629.759 571.091C629.871 564.459 630.388 557.841 631.307 551.272" stroke="#1E1E1E" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M617.156 562.76L643.456 559.538" stroke="#1E1E1E" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M752.215 461.04C750.537 453.044 748.861 445.047 747.187 437.051" stroke="#1E1E1E" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M738.832 453.8L763.247 443.907" stroke="#1E1E1E" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M762.638 354.234C761.344 348.064 760.052 341.894 758.761 335.726" stroke="#1E1E1E" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M751.519 348.046C758.436 344.868 765.611 342.283 772.967 340.318" stroke="#1E1E1E" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M702.13 277.239C700.33 270.843 698.332 264.51 696.136 258.239" stroke="#1E1E1E" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M689.613 273.55C696.755 269.225 703.842 264.809 710.874 260.303" stroke="#1E1E1E" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M668.223 221.188C667.053 223.238 666.478 225.574 666.562 227.933C666.499 228.679 666.566 229.43 666.762 230.153C667.055 230.942 667.545 231.643 668.186 232.189C670.014 233.712 672.37 234.449 674.74 234.24C677.11 234.03 679.301 232.891 680.833 231.071C687.492 222.486 674.891 211.259 668.223 221.188Z" stroke="#1E1E1E" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M642.7 407.743C641.853 411.063 643.577 415.027 646.817 416.143C648.103 416.518 649.449 416.646 650.784 416.519C652.862 416.419 655.108 416.081 656.559 414.593C657.3 413.737 657.869 412.747 658.234 411.675C659.043 409.683 659.775 407.431 658.976 405.435C656.11 398.266 644.338 401.32 642.7 407.743Z" stroke="#1E1E1E" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M776.6 383.454C775.16 384.493 774.042 385.916 773.371 387.56C772.701 389.204 772.505 391.004 772.807 392.754C772.993 393.87 773.565 394.886 774.424 395.623C775.671 396.384 777.141 396.698 778.59 396.513C780.578 396.457 782.69 396.253 784.263 395.036C785.158 394.289 785.868 393.345 786.337 392.278C787.444 390.21 787.695 387.791 787.037 385.54C785.437 380.976 779.977 380.964 776.6 383.454Z" stroke="#1E1E1E" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M690.2 521.1C696.911 513.498 702.959 505.335 708.277 496.7C708.44 496.535 708.562 496.333 708.633 496.112C708.705 495.891 708.724 495.656 708.689 495.427C708.654 495.197 708.566 494.978 708.432 494.789C708.297 494.599 708.121 494.443 707.916 494.333C700.34 487.586 691.792 482.016 682.559 477.812C682.202 477.608 681.794 477.511 681.384 477.533C680.837 477.699 680.377 478.073 680.104 478.575L658.43 508.638L683.222 524.56" stroke="#1E1E1E" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M683.06 354C683.329 354.029 683.601 353.988 683.85 353.88C684.098 353.772 684.313 353.601 684.475 353.384C684.637 353.167 684.74 352.912 684.773 352.643C684.807 352.375 684.77 352.102 684.665 351.852C683.49 341.007 682.316 330.162 681.142 319.318C671.931 321.498 662.635 323.265 653.253 324.618C652.865 324.565 652.469 324.609 652.101 324.746C651.734 324.883 651.406 325.109 651.147 325.403C650.888 325.698 650.706 326.052 650.617 326.434C650.528 326.817 650.536 327.215 650.638 327.593C650.956 334.872 647.962 348.838 653.87 354.663C656.909 357.663 661.145 356.828 664.97 356.336C670.999 355.562 677.029 354.783 683.06 354Z" stroke="#1E1E1E" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M672.779 365.3C673.688 358.908 670.828 352.45 671.587 346.039C671.617 346.394 671.649 346.747 671.679 347.101" stroke="#1E1E1E" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M662.193 365.925C662.011 359.655 661.83 353.384 661.648 347.112" stroke="#1E1E1E" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M676.57 332.3L689.196 330.152" stroke="#1E1E1E" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M668.758 326.654C668.668 322.195 668.238 317.749 667.473 313.354C667.441 313.42 667.424 313.491 667.421 313.563C667.419 313.635 667.432 313.707 667.459 313.774C667.486 313.841 667.527 313.902 667.579 313.952C667.631 314.003 667.693 314.042 667.761 314.066" stroke="#1E1E1E" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M661.344 327.625C660.991 323.515 660.637 319.405 660.283 315.296" stroke="#1E1E1E" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M692.345 491.369C695.139 486.846 697.818 482.253 700.381 477.59C700.444 478.026 700.506 478.462 700.57 478.898" stroke="#1E1E1E" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M697.633 502.965C700.775 504.155 703.769 505.705 706.555 507.583" stroke="#1E1E1E" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M691.531 511.859C694.973 513.001 698.143 514.841 700.84 517.264" stroke="#1E1E1E" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M673.513 512.267C670.83 516.707 667.834 520.951 664.549 524.967C664.762 524.761 664.974 524.554 665.187 524.349" stroke="#1E1E1E" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M673.448 494.394C669.422 491.353 665.351 488.374 661.233 485.458L661.939 485.717" stroke="#1E1E1E" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<g opacity="0.1">
|
||||||
|
<path d="M91.9119 208.004C81.4119 208.039 72.3209 213.661 66.4419 222.204C61.0139 230.089 57.4019 242.104 60.3529 251.533C66.9989 272.775 96.2129 281.111 113.644 267.933L99.2099 259.646C101.21 285.852 119.637 308.432 144.058 317.483C168.479 326.534 196.231 317.247 212.607 297.568C222.295 285.927 228.138 271.935 228.491 256.697L211.537 263.72C225.109 278.354 246.959 285.542 266.365 279.858C275.565 277.158 284.709 272.106 290.647 264.493C295.826 257.855 301.489 249.122 299.402 240.41C298.925 238.418 296.15 237.073 294.376 238.365C288.776 242.442 285.499 248.584 279.705 252.519C274.147 256.294 268.619 259.798 261.997 261.306C255.44 262.718 248.628 262.387 242.238 260.347C235.849 258.306 230.106 254.627 225.582 249.675C219.547 243.142 208.837 248.42 208.629 256.697C208.056 279.459 188.012 300.254 165.103 301.113C141.931 301.983 120.244 282.778 118.396 259.646C117.887 253.281 110.296 246.538 103.961 251.363C95.5709 257.755 81.6119 256.369 74.9679 246.645C70.9369 240.745 70.5389 234.486 74.2039 228.232C77.9259 221.878 84.4509 217.076 91.9119 216.532C97.3249 216.14 97.4679 207.982 91.9119 208V208.004Z" fill="white"/>
|
||||||
|
</g>
|
||||||
|
<g opacity="0.1">
|
||||||
|
<path d="M49.4972 784.336C48.2252 786.29 46.2132 787.546 44.8972 789.536C43.8269 791.189 42.9037 792.932 42.1382 794.746C40.3978 798.465 39.1364 802.391 38.3842 806.427C37.3352 813.042 38.3942 820.609 42.0552 826.327C52.6552 842.881 75.0782 836.162 85.5872 823.091L69.0722 818.73C74.9952 836.472 84.0092 855.172 104.055 859.792C125.198 864.665 146.774 851.298 151.255 829.959L138.8 837.03C152.211 840.666 166.877 839.209 178.265 830.859C182.922 827.444 188.288 822.73 190.299 817.159C191.115 814.899 191.411 812.515 192.106 810.243C193.077 807.064 192.897 805.237 192.906 801.97C192.906 799.906 189.962 798.344 188.506 800.147C185.974 803.254 182.966 805.939 179.593 808.103C175.973 810.371 172.985 813.26 169.105 815.185C161.365 818.989 152.496 819.815 144.186 817.506C139.165 816.08 132.851 819.242 131.731 824.577C129.308 836.118 117.943 844.098 106.262 839.333C96.2172 835.233 90.1512 823.554 88.1312 813.478C86.9312 807.492 78.6542 804.11 73.6162 807.578C67.9322 811.484 61.2622 820.188 54.7082 813.337C52.0932 810.603 51.3622 806.974 51.5082 803.225C51.6182 800.33 52.5372 797.661 53.2522 794.877C53.9462 792.171 53.7672 789.107 54.6452 786.515C55.7052 783.382 51.1782 781.774 49.5042 784.348L49.4972 784.336Z" fill="white"/>
|
||||||
|
</g>
|
||||||
|
<g opacity="0.1">
|
||||||
|
<path d="M480.602 720.687C474.99 724.117 469.796 727.855 465.809 733.13C461.835 738.491 458.818 744.499 456.892 750.888C452.529 764.888 455.177 780.423 462.217 793.123C477.517 820.715 512.159 832.123 541.773 824.623C558.458 820.394 575.606 810.357 586.402 796.78L567.271 785.643C559.9 818.122 574.735 853.352 605.071 868.258C638.399 884.632 677.531 876.558 705.411 853.416C719.886 841.401 731.166 825.379 738.783 808.258L720.546 810.608C742.887 833.92 780.2 840.469 808.48 824.287C834.039 809.663 850.1 775.557 838.85 747.296C837.462 743.81 832.138 744.064 832.036 748.218C831.464 771.575 820.211 795.339 798.493 805.806C778.193 815.592 752.206 810.236 736.967 794.187C732.231 789.2 721.802 789.716 718.731 796.537C707.852 820.694 689.052 842.896 662.88 850.703C637.907 858.153 608.821 851.729 594.885 828.884C591.351 823.328 588.807 817.201 587.367 810.776C585.93 804.125 587.004 798.216 589.346 791.724C593.332 780.677 577.875 772.824 570.214 780.587C559.452 791.497 547.852 799.827 532.532 802.904C525.913 804.181 519.107 804.137 512.506 802.775C505.904 801.412 499.637 798.759 494.065 794.966C483.731 788.115 476.117 776.635 475.332 764.34C474.511 751.498 476.432 737.37 486.283 728.049C490.138 724.4 485.158 717.902 480.602 720.687Z" fill="white"/>
|
||||||
|
</g>
|
||||||
|
<g opacity="0.1">
|
||||||
|
<path d="M834.036 532.52C830.036 534.82 826.67 537.839 825.661 542.492C824.751 547.565 825.487 552.796 827.761 557.421C833.714 568.999 851.679 567.811 859.255 558.795L845.341 557.002C852.068 570.991 862.568 586.596 880.114 586.223C896.38 585.877 906.361 570.495 905.97 555.347L899.378 564.006C913.656 560.322 924.216 544.445 919.471 529.768C918.287 526.107 912.862 525.855 911.787 529.768C909.397 538.461 903.458 544.477 894.603 546.687C892.717 547.227 891.057 548.362 889.869 549.923C888.681 551.483 888.029 553.386 888.01 555.347C888.11 561.123 885.219 569.579 877.987 568.341C868.611 566.735 864.247 555.568 860.641 548.059C858.296 543.178 850.227 542.101 846.726 546.266C844.226 549.235 840.859 549.812 837.268 548.19C833.148 546.329 833.768 538.717 836.481 535.69C836.811 535.339 837.005 534.882 837.028 534.401C837.052 533.92 836.903 533.447 836.609 533.065C836.315 532.684 835.894 532.42 835.423 532.321C834.952 532.222 834.461 532.294 834.038 532.524L834.036 532.52Z" fill="white"/>
|
||||||
|
</g>
|
||||||
|
<g opacity="0.1">
|
||||||
|
<path d="M60.36 550.507C62.949 586.837 87.56 616.785 112.254 641.555C138.954 668.345 167.584 695.206 199.922 715.073C233.47 735.683 272.562 747.198 311.908 740.348C330.66 737.084 348.721 729.657 365.249 720.348C381.796 711.025 395.991 698.41 412.179 688.6C429.245 678.257 448.021 674.144 467.842 673.566C478.362 673.26 489.178 673.496 499.662 674.076C504.81 674.36 510.039 674.185 515.152 674.529C517.762 674.704 519.952 675.215 522.569 674.79C525.469 674.319 528.275 673.604 531.208 673.214C533.008 672.974 534.178 670.514 532.225 669.457C528.553 667.466 524.958 664.557 520.969 663.307C516.636 661.951 512.121 660.707 507.704 659.56C498.845 657.232 489.818 655.602 480.704 654.687C462.588 652.903 444.427 653.41 426.761 658.155C417.605 660.513 408.812 664.102 400.621 668.824C392.808 673.435 385.645 679.041 378.349 684.407C364.103 694.886 348.793 704.517 332.214 710.86C315.528 717.244 298.182 720.56 280.297 719.413C262.681 718.282 245.208 712.842 229.377 705.175C195.777 688.9 168.065 663.213 141.168 637.823C127.822 625.223 114.448 612.194 103.531 597.379C92.4248 582.51 84.0152 565.807 78.685 548.03C75.791 538.33 59.585 539.647 60.362 550.51L60.36 550.507Z" fill="white"/>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 40 KiB |
|
@ -0,0 +1,128 @@
|
||||||
|
<svg width="960" height="960" viewBox="0 0 960 960" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M845.832 243.6C846.257 242.067 846.502 240.49 846.563 238.9C845.915 231.946 839.403 226.552 832.491 225.476C827.529 225.19 822.564 225.981 817.936 227.794C813.388 229.608 809.177 232.173 805.478 235.382C794.51 244.694 786.357 258.918 780.052 271.017C775.071 271.248 770.111 271.819 765.207 272.728L765.152 272.438C763.62 247.177 765.041 233.864 790.385 222.703C815.798 211.003 839.665 187.012 861.146 219.103C883.73 244.309 852.62 253.29 832.257 269.639L830.357 266.617C829.957 265.445 829.57 264.286 829.17 263.117C836.478 257.538 843.569 251.9 845.832 243.6Z" fill="white"/>
|
||||||
|
<path d="M569.37 807.966C546.262 824.507 516.793 833.42 489.711 822.466C464.105 812.685 449.785 784.058 457.938 757.9C465.844 724.155 496.913 697.142 531.927 696.59C543.709 696.038 557.299 699.666 563.827 709.931C584.88 678.724 618.791 645.392 659.352 654.897C687.11 662.665 712.026 685.98 715.862 715.008L716.317 714.939C736.611 690.092 775.817 685.511 801.288 705.019C805.965 708.468 810.407 713.049 811.194 718.802V719.009C840.869 718.25 853.217 757.955 842.111 782.568C825.887 829.668 773.558 853.149 733.949 817.183C718.869 847.548 692.187 872.933 657.462 876.272C615.574 883.679 565.783 853.866 569.37 807.966Z" fill="white"/>
|
||||||
|
<path d="M830.354 266.615L832.254 269.637C826.707 274.079 821.975 279.087 819.327 285.102L819.271 285.144C817.083 282.525 814.538 280.227 811.711 278.315L813.146 278.204C816.926 272.258 823.121 267.704 829.163 263.111C829.567 264.284 829.954 265.443 830.354 266.615Z" fill="white"/>
|
||||||
|
<path d="M590.41 409.158C641.966 371.922 639.11 273.941 630.35 218.08C628.142 206.795 625.55 194.089 632.05 184.597C634.847 181.35 638.242 178.67 642.05 176.705C647.153 174.122 652.683 172.486 658.371 171.877C671.091 170.332 684.942 172.746 695.786 176.623C696.007 176.705 696.228 176.788 696.448 176.885C698.956 177.832 701.379 178.99 703.691 180.348C722.206 191.26 730.291 213.1 729.391 234.581C741.091 340.343 675.544 433.743 609.691 510.616C675.181 464.081 729.414 373.922 743.114 296.916C746.853 287.134 753.268 277.891 762.65 273.228C763.505 273.048 764.36 272.897 765.202 272.728C770.105 271.819 775.065 271.247 780.047 271.017C793.622 270.424 804.011 273.117 811.709 278.317C814.536 280.229 817.081 282.527 819.269 285.146C853.498 326.328 800.92 445.127 770.389 482.087C722.378 543.587 658.589 603.977 581.712 624.519C575.021 626.313 568.224 627.794 561.321 628.962C562.687 625.296 563.654 621.494 564.205 617.621C570.565 572.466 523.492 548.047 530.776 500.146C530.5 482.546 544.835 472.623 556.851 462.083C566.668 452.148 572.374 438.874 572.827 424.915C572.961 422.827 572.906 420.73 572.662 418.652C578.979 416.302 584.949 413.108 590.41 409.158Z" fill="#171717"/>
|
||||||
|
<path d="M687.08 117.948C684.828 119.465 682.845 121.349 681.216 123.522C679.975 125.191 678.761 126.902 677.602 128.64C668.695 141.669 662.165 156.172 658.315 171.478L658.37 171.878C652.682 172.486 647.152 174.122 642.049 176.706L641.787 175.685C632.187 141.774 652.948 120.514 677.905 101.379C694.116 81.7607 718.052 86.8927 736.857 99.6267C775.21 126.327 710.078 152.604 704.008 179.797L703.69 180.349C701.378 178.991 698.955 177.832 696.447 176.886L696.53 176.693C696.558 166.014 703.13 157.24 709.154 148.3C712.202 144.068 714.779 139.515 716.838 134.724C717.418 133.258 717.898 131.755 718.273 130.224C721.322 109.657 699.952 109.022 687.08 117.948Z" fill="white"/>
|
||||||
|
<path d="M511.206 676.061C494.485 676.889 476.853 675.992 460.806 675.137C463.306 658.967 474.478 646.703 484.632 634.631C510.652 608.115 488.026 577.749 477.692 550.046C463.565 520.37 515.37 498.434 496.028 470.539L495.986 470.483C510.845 457.464 524.495 443.126 536.768 427.646L537.347 428.101C553.006 455.528 521.813 480.292 512.693 504.353C495.779 551.853 538.993 581.446 537.293 618.738C533.982 639.377 509.066 653.159 511.163 675.275L511.206 676.061Z" fill="white"/>
|
||||||
|
<path d="M511.164 675.274C509.064 653.158 533.983 639.374 537.294 618.737C538.994 581.445 495.781 551.852 512.694 504.352C521.814 480.291 553.007 455.527 537.348 428.1L536.769 427.645C548.848 412.446 559.794 396.381 569.521 379.579C575.992 370.86 581.303 372.253 585.056 377.799L584.956 377.868C563.765 367.342 571.156 401.736 572.664 418.65C572.908 420.729 572.963 422.825 572.829 424.913C572.376 438.872 566.67 452.146 556.853 462.08C544.837 472.621 530.502 482.54 530.778 500.144C523.494 548.044 570.567 572.464 564.207 617.619C563.655 621.492 562.688 625.294 561.323 628.96C557.46 639.376 550.493 648.605 541.043 654.345C524.487 663.423 535.869 672.652 548.161 669.934C537.261 673.673 524.515 675.411 511.201 676.06L511.164 675.274Z" fill="white"/>
|
||||||
|
<path d="M453.648 501.125C468.684 492.251 482.859 481.992 495.988 470.483L496.03 470.539C515.372 498.434 463.567 520.37 477.695 550.046C488.028 577.746 510.654 608.115 484.634 634.631C474.48 646.703 463.305 658.967 460.808 675.137C446.819 674.392 434.043 673.688 424.124 674.185C358.854 746.546 263.094 760.314 185.118 698.659C166.2 689.443 108.011 631.501 80.0322 585.737L80.1842 585.637C98.8007 579.542 116.087 569.96 131.12 557.401L132.609 557.125C169.238 630.562 266.861 709.311 328.723 650.291L328.571 649.739V649.725C332.131 648.801 335.731 647.67 339.371 646.331C356.878 638.343 365.418 620.504 362.741 604.666L362.797 604.653C444.112 636.536 458.97 556.49 391.451 555.453L390.72 555.398C399.536 541.798 402.309 519.598 395.149 508.27C393.826 505.476 392.3 502.783 390.582 500.213L390.651 500.172C407.883 420.112 410.269 365.562 391.024 293.822L391.286 293.753C410.752 281.953 436.717 266.726 458.708 280.591L459.398 280.563C462.298 354.07 456.776 427.576 453.576 501.013L453.648 501.125Z" fill="white"/>
|
||||||
|
<path d="M459.4 280.564L458.71 280.592C436.719 266.727 410.754 281.958 391.288 293.754L391.026 293.823C389.632 288.594 388.11 283.264 386.459 277.833L386.542 277.805C403.566 259.042 433.794 247.136 457.648 259.939L458.348 259.898C458.793 266.796 459.143 273.684 459.4 280.564Z" fill="white"/>
|
||||||
|
<path d="M425.379 224.233C428.452 224.287 431.513 224.62 434.526 225.227C450.475 225.127 458.614 238.237 457.926 253.233C458.077 255.454 458.226 257.675 458.353 259.897L457.653 259.938C433.799 247.138 403.571 259.038 386.547 277.804L386.464 277.832C384.905 272.644 383.236 267.351 381.456 261.952C381.273 257.346 382.048 252.753 383.732 248.461C385.415 244.17 387.971 240.275 391.237 237.022C399.7 228.483 412.59 224 425.379 224.233Z" fill="white"/>
|
||||||
|
<path d="M114.812 272.81L113.557 273.045C87.3852 284.081 45.3902 254.2 65.8362 226.551C73.0792 216.411 83.9502 210.161 96.0912 210.934C84.2122 182.141 118.234 161.309 142.474 187.508L142.598 187.563C160.698 147.126 235.985 146.505 245.145 190.405C266.791 181.879 296.053 196.627 305.545 216.894C318.745 261.373 258.928 307.394 225.003 268.616C206.792 329.168 121.821 335.514 114.812 272.81Z" fill="white"/>
|
||||||
|
<path d="M300.868 512.823C288.134 533.186 310.484 554.584 304.593 575.596C305.159 576.368 306.483 576.296 307.504 576.096C318.859 573.917 330.958 574.344 341.498 579.076C351.583 583.27 357.985 590.334 361.047 598.446C361.82 600.457 362.385 602.542 362.731 604.668H362.744C365.421 620.506 356.881 638.345 339.374 646.333C335.731 647.671 332.131 648.802 328.574 649.727V649.741C251.591 670.09 197.882 599.674 248.239 529.162C273.265 496.754 263.346 483.496 253.357 448.288C244.183 372.368 345.657 391.613 319.482 285.162C357.96 303.511 413.807 362.517 392.671 408.169C384.821 424.738 367.038 437.32 366.486 455.628C365.976 472.901 380.848 485.51 390.586 500.217C392.304 502.787 393.83 505.48 395.153 508.274C402.313 519.601 399.54 541.799 390.724 555.402C387.468 560.424 383.384 564.287 378.68 566.002C373.741 567.809 368.112 567.257 362.014 563.228L361.614 563.035C359.848 533.125 326.006 520.86 301.449 513.203L300.868 512.823Z" fill="#171717"/>
|
||||||
|
<path d="M132.609 557.124L131.119 557.4C116.087 569.96 98.8007 579.544 80.1842 585.64L80.0322 585.74C76.9799 580.806 74.1848 575.718 71.6582 570.495L72.4582 570.205C90.9926 562.625 108.768 553.308 125.546 542.378L125.987 542.213C127.891 547.121 130.1 552.116 132.609 557.124Z" fill="white"/>
|
||||||
|
<path d="M114.867 516.742C115.983 515.502 116.892 514.091 117.558 512.562L118.468 512.631C119.653 522.78 122.181 532.727 125.987 542.21L125.546 542.375C108.768 553.304 90.9925 562.621 72.4581 570.201L71.6581 570.491C67.3261 561.386 64.7731 553.191 64.7041 546.499H64.9531C68.4981 545.244 72.1821 543.947 75.8791 542.54C90.9451 536.857 106.328 529.517 114.867 516.742Z" fill="white"/>
|
||||||
|
<path d="M453.579 501.013C456.779 427.576 462.298 354.07 459.401 280.563C459.139 273.679 458.789 266.791 458.352 259.897C458.228 257.675 458.076 255.454 457.925 253.233C458.614 238.233 450.475 225.133 434.525 225.227C431.512 224.62 428.451 224.287 425.378 224.233C412.589 223.999 399.703 228.483 391.233 237.023C387.967 240.276 385.411 244.171 383.727 248.462C382.043 252.753 381.268 257.346 381.451 261.952C383.231 267.36 384.9 272.654 386.459 277.832C388.115 283.268 389.637 288.598 391.026 293.822C410.271 365.562 407.885 420.112 390.653 500.172" stroke="#171717" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M362.012 563.221C368.112 567.249 373.739 567.801 378.678 565.994C383.378 564.283 387.466 560.42 390.722 555.394C399.538 541.794 402.311 519.594 395.151 508.266C393.828 505.472 392.302 502.779 390.584 500.209C380.844 485.502 365.972 472.893 366.484 455.62C367.036 437.312 384.819 424.73 392.669 408.161C413.805 362.509 357.958 303.503 319.48 285.154C345.652 391.605 244.18 372.36 253.355 448.28C263.343 483.488 273.263 496.746 248.237 529.154C197.88 599.666 251.589 670.082 328.572 649.733V649.719C332.131 648.795 335.731 647.664 339.372 646.325C356.879 638.337 365.419 620.499 362.742 604.66H362.729C362.383 602.534 361.818 600.449 361.045 598.438C357.983 590.326 351.581 583.262 341.496 579.068C330.956 574.336 318.856 573.909 307.502 576.088C306.481 576.295 305.157 576.364 304.591 575.588C304.525 575.516 304.474 575.432 304.439 575.34" stroke="#171717" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M300.992 583.349C302.591 580.969 303.806 578.353 304.592 575.596C310.483 554.584 288.133 533.186 300.867 512.823C301.441 511.877 302.076 510.969 302.767 510.105C305.658 503.863 306.83 496.961 306.161 490.114" stroke="#171717" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M301.448 513.2C326.005 520.857 359.848 533.122 361.613 563.032" stroke="#171717" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M425.352 224.358C425.365 224.316 425.365 224.275 425.379 224.233C432.222 195.733 418.55 117.433 411.997 196.933C411.969 197.209 411.955 197.471 411.928 197.747" stroke="#171717" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M391.4 237.119C391.345 237.092 391.29 237.05 391.235 237.019C382.612 231.819 361.352 220.133 360.386 210.144C367.386 205.026 378.97 210.917 386.323 216.463C387.565 217.387 388.682 218.312 389.634 219.163" stroke="#171717" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M412.107 197.427C412.066 197.262 412.038 197.096 411.997 196.927C397.925 133.505 386.405 170.41 399.07 206.874C399.332 207.619 399.608 208.364 399.884 209.109" stroke="#171717" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M399.456 208.341C399.346 207.982 399.18 207.486 398.987 206.906C395.387 196.256 378.458 151.556 370.539 170.167C370.912 185.784 381.7 203.913 387.067 216.095" stroke="#171717" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M386.543 277.801C403.567 259.038 433.795 247.132 457.649 259.935" stroke="#171717" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M391.289 293.754C410.755 281.954 436.72 266.727 458.711 280.592" stroke="#171717" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M453.454 501.248C453.523 501.207 453.579 501.165 453.648 501.124C468.684 492.25 482.859 481.992 495.988 470.482C510.847 457.464 524.497 443.126 536.77 427.645C548.849 412.446 559.796 396.381 569.522 379.579C575.993 370.86 581.304 372.253 585.057 377.799C590.357 385.599 592.52 401.653 590.41 409.158C590.31 409.475 590.216 409.765 590.12 410.058" stroke="#171717" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M424.124 674.184C434.043 673.684 446.819 674.391 460.808 675.136C476.853 675.991 494.485 676.888 511.208 676.06C524.521 675.412 537.269 673.673 548.168 669.934C567.827 663.216 581.541 650.026 581.899 625.166" stroke="#171717" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M552.649 668.375C551.218 669.062 549.714 669.585 548.166 669.934C535.873 672.652 524.491 663.423 541.047 654.345C550.497 648.605 557.464 639.376 561.327 628.96C562.693 625.294 563.659 621.492 564.211 617.619C570.571 572.464 523.498 548.045 530.782 500.144C530.507 482.544 544.841 472.621 556.857 462.08C566.674 452.146 572.38 438.872 572.833 424.913C572.967 422.825 572.912 420.729 572.668 418.65C571.168 401.736 563.768 367.342 584.96 377.868" stroke="#171717" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M572.626 418.664C572.64 418.664 572.654 418.65 572.668 418.65C578.983 416.3 584.951 413.107 590.41 409.158C641.966 371.922 639.11 273.941 630.35 218.08C628.142 206.795 625.55 194.089 632.05 184.597C634.847 181.35 638.242 178.67 642.05 176.705C647.153 174.122 652.683 172.486 658.371 171.877C671.091 170.332 684.943 172.746 695.786 176.623C696.007 176.705 696.228 176.788 696.449 176.885C698.957 177.832 701.38 178.991 703.692 180.348C722.206 191.26 730.292 213.1 729.392 234.581C741.092 340.343 675.545 433.743 609.692 510.616" stroke="#171717" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M561.327 628.96C568.225 627.802 575.022 626.321 581.718 624.517C658.591 603.975 722.385 543.589 770.395 482.085C800.926 445.125 853.504 326.326 819.275 285.144C817.087 282.525 814.542 280.226 811.715 278.315C804.015 273.115 793.628 270.423 780.053 271.015C775.071 271.246 770.112 271.817 765.208 272.726C764.366 272.892 763.508 273.043 762.656 273.226C753.274 277.889 746.856 287.132 743.12 296.914C729.42 373.924 675.188 464.083 609.697 510.614" stroke="#171717" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M765.152 272.437C763.62 247.177 765.041 233.863 790.385 222.702C815.798 211.002 839.665 187.011 861.146 219.102C883.73 244.308 852.62 253.289 832.257 269.638C826.71 274.08 821.978 279.088 819.329 285.103" stroke="#171717" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M780.011 271.085C780.025 271.058 780.039 271.044 780.053 271.016C786.353 258.916 794.511 244.693 805.479 235.381C809.177 232.172 813.388 229.606 817.937 227.793C822.565 225.98 827.53 225.189 832.492 225.475C839.404 226.551 845.916 231.946 846.564 238.899C846.503 240.489 846.257 242.066 845.833 243.599C843.571 251.891 836.479 257.534 829.167 263.107C823.125 267.701 816.93 272.254 813.15 278.2" stroke="#171717" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M641.787 175.685C632.187 141.774 652.948 120.514 677.905 101.379C694.116 81.7607 718.052 86.8927 736.857 99.6267C775.21 126.327 710.078 152.604 704.008 179.797" stroke="#171717" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M658.314 171.477C662.164 156.172 668.693 141.669 677.599 128.639C678.758 126.901 679.972 125.19 681.213 123.521C682.843 121.349 684.825 119.465 687.077 117.947C699.949 109.021 721.319 109.656 718.27 130.226C717.895 131.757 717.416 133.261 716.835 134.726C714.776 139.518 712.2 144.071 709.151 148.302C703.122 157.242 696.551 166.016 696.527 176.695" stroke="#171717" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M332.3 573.03C339.695 573.899 343.682 567.318 345.31 561.041" stroke="#171717" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M322.528 550.295C327.578 541.079 335.248 548.777 329.564 555.716" stroke="#171717" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M319.479 531.476C316.417 532.622 316.099 537.05 316.968 539.782" stroke="#171717" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M310.331 555.771C309.195 556.751 308.271 557.953 307.616 559.303C306.961 560.653 306.59 562.122 306.524 563.621" stroke="#171717" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M307.779 525.791C304.316 529.254 301.64 536.718 303.254 541.229" stroke="#171717" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M361.351 598.318C377.658 599.27 391.261 579.032 378.679 565.995C378.679 565.981 378.651 565.952 378.638 565.938" stroke="#171717" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M391.454 555.453C458.973 556.488 444.114 636.534 362.8 604.653" stroke="#171717" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M383.107 586.274C385.617 597.932 402.063 591.793 398.655 581.156C394.916 574.658 381.23 577.444 383.107 586.274Z" stroke="#171717" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M72.3611 531.738C66.9671 534.814 64.6491 539.933 64.7041 546.5C64.7731 553.191 67.3261 561.386 71.6581 570.491C74.1844 575.714 76.9795 580.803 80.0321 585.736C108.011 631.5 166.2 689.442 185.118 698.658C263.094 760.313 358.854 746.545 424.124 674.184" stroke="#171717" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M64.9531 546.501C68.4981 545.245 72.1821 543.948 75.8791 542.541C90.9451 536.857 106.328 529.517 114.867 516.741C115.983 515.502 116.892 514.09 117.558 512.561C122.524 502.407 128.112 479.491 121.848 477.67C112.867 483.27 112.067 497.261 105.348 505.414C104.879 481.878 106.493 456.438 100.795 433.881C86.1951 434.019 90.3651 491.135 91.0141 502.724C88.2411 482.899 82.3081 463.681 76.4041 444.559C76.0591 443.442 75.3411 442.076 74.1821 442.269C60.8971 459.763 73.8931 485.355 76.3071 505.125C70.7443 491.654 64.4578 478.493 57.4751 465.701C56.7751 464.401 55.7371 462.914 54.2471 463.011C45.0001 469.048 65.1731 509.513 72.9001 531.545C74.2143 534.936 75.1532 538.462 75.7001 542.058" stroke="#171717" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M118.468 512.631C119.652 522.78 122.181 532.727 125.987 542.21C127.887 547.121 130.099 552.116 132.609 557.124C169.238 630.561 266.861 709.31 328.723 650.29" stroke="#171717" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M72.458 570.2C90.9924 562.62 108.768 553.303 125.546 542.373" stroke="#171717" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M80.1836 585.639C98.8001 579.544 116.086 569.96 131.119 557.399" stroke="#171717" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M460.794 675.232C460.794 675.205 460.808 675.163 460.808 675.132C463.308 658.962 474.48 646.698 484.634 634.626C510.654 608.11 488.028 577.744 477.694 550.041C463.567 520.365 515.372 498.429 496.03 470.534" stroke="#171717" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M511.164 675.275C509.064 653.159 533.983 639.375 537.294 618.738C538.994 581.446 495.781 551.853 512.694 504.353C521.814 480.292 553.007 455.528 537.348 428.101" stroke="#171717" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M565.411 712.882C564.948 711.864 564.418 710.877 563.824 709.93C557.299 699.665 543.709 696.037 531.924 696.589C496.91 697.141 465.84 724.154 457.935 757.899C449.782 784.057 464.102 812.684 489.708 822.465C516.79 833.42 546.259 824.507 569.367 807.965C574.86 804.037 580.024 799.667 584.808 794.9" stroke="#171717" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M569.384 807.745C569.384 807.814 569.37 807.897 569.37 807.966C565.783 853.866 615.57 883.679 657.459 876.266C692.184 872.927 718.866 847.542 733.946 817.176C734.76 815.562 735.532 813.921 736.277 812.276" stroke="#171717" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M563.135 710.978C563.369 710.633 563.604 710.288 563.824 709.93C584.877 678.723 618.789 645.391 659.349 654.896C687.107 662.664 712.023 685.979 715.859 715.007C716.242 717.924 716.409 720.866 716.359 723.807" stroke="#171717" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M811.19 718.801C810.403 713.048 805.961 708.467 801.284 705.018C775.816 685.51 736.607 690.091 716.313 714.938" stroke="#171717" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M806 719.533C807.714 719.234 809.448 719.058 811.188 719.009C840.863 718.25 853.211 757.955 842.105 782.568C825.881 829.668 773.552 853.149 733.943 817.183C733.832 817.083 733.736 816.989 733.625 816.893" stroke="#171717" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M898.714 555.633C900.76 556.476 902.99 556.77 905.184 556.488C916.677 555.026 925.299 538.07 919.795 527.957C907.13 514.382 895.637 519.1 887.374 526.233C886.256 527.199 885.208 528.206 884.214 529.213" stroke="#171717" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M887.76 526.951C887.636 526.703 887.511 526.468 887.373 526.234C880.448 513.169 865.879 512.81 857.698 525.158C855.587 527.144 854.732 529.021 854.676 530.842C854.538 534.815 858.167 538.513 860.871 542.307" stroke="#171717" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M854.042 530.813C827.788 520.659 813.053 557.881 840.853 565.456C844.605 566.132 852.193 564.956 856.253 561.689C857.19 561.051 857.935 560.169 858.406 559.138C858.878 558.107 859.059 556.967 858.93 555.84" stroke="#171717" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M856.193 561.056C856.207 561.263 856.221 561.483 856.248 561.69C859.325 594.373 909.06 589.09 905.183 556.49C905.17 556.297 905.142 556.09 905.114 555.883" stroke="#171717" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M363.682 792.528C359.956 798.212 356.195 803.879 352.397 809.528C348.01 816.039 343.577 822.514 339.097 828.953" stroke="white" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M363.227 822.01C359.723 817.761 356.113 813.599 352.397 809.525C348.189 804.875 343.852 800.35 339.387 795.949" stroke="white" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M96.5175 357.271C92.7655 354.085 89.1645 350.691 85.4945 347.38C80.676 342.812 75.4548 338.688 69.8945 335.06" stroke="white" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M94.7936 331.168C91.7169 336.576 88.6169 341.98 85.4936 347.379C83.0269 351.697 80.5346 356.001 78.0166 360.292" stroke="white" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M264.984 124.557C261.273 121.259 257.516 118.025 253.713 114.857C249.063 110.939 244.344 107.103 239.558 103.351" stroke="#171717" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M243.172 129.923C246.801 124.971 250.315 119.949 253.713 114.858C257.203 109.658 260.57 104.374 263.813 99.0059" stroke="#171717" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M890.366 440.214C886.89 436.476 883.501 432.663 880.199 428.777C876.446 424.403 872.804 419.943 869.272 415.395" stroke="#171717" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M870.335 440.586C873.688 436.695 876.976 432.758 880.2 428.776C883.58 424.596 886.886 420.361 890.119 416.07" stroke="#171717" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M523.553 102.482C523.108 101.262 522.582 100.073 521.98 98.9224C510.516 77.5524 472.58 77.0554 461.001 98.9224C441.438 130.861 468.327 158.991 495.588 141.722C498.638 139.766 501.456 137.471 503.988 134.879" stroke="white" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M557.587 105.9C559.468 104.359 561.589 103.138 563.865 102.286C578.806 96.739 597.721 108.315 599.9 124.525C600.08 155.208 567.259 164.603 549.268 147.425C545.085 143.347 541.98 138.293 540.232 132.718" stroke="white" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M521.829 99.2262C521.868 99.121 521.919 99.0204 521.98 98.9262C530.065 81.0462 558.058 82.8672 563.686 101.768" stroke="white" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M495.726 141.939C495.85 152.59 506.901 161.93 516.558 164.661C529.941 167.503 541.658 157.432 549.269 147.43C549.297 147.402 549.311 147.375 549.338 147.347" stroke="white" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M100.947 793.48C100.394 791.675 99.6973 789.917 98.8638 788.223C84.8638 760.189 40.9888 780.623 41.5128 810.173C40.8368 835.779 63.4768 839.918 78.4448 827.915C81.6316 825.367 84.3091 822.24 86.3368 818.699" stroke="#171717" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M145.426 828.329C147.282 829.861 149.327 831.15 151.51 832.164C174.039 842.553 200.61 815.65 194.016 791.564C185.973 769.573 156.146 770.607 141.977 785.852C141.812 786.032 141.632 786.225 141.477 786.418C138.547 789.679 136.433 793.59 135.31 797.827" stroke="#171717" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M98.7529 788.844C98.7949 788.637 98.8219 788.43 98.8639 788.223C102.934 766.963 132.14 770.55 141.48 786.416C141.563 786.554 141.646 786.692 141.729 786.844L141.977 785.85C142.032 785.616 142.087 785.381 142.156 785.15" stroke="#171717" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M78.3066 827.309C78.3486 827.516 78.3896 827.709 78.4446 827.916C87.9646 870.933 133.713 871.443 151.386 832.469" stroke="#171717" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M139.839 195.882C140.477 193.024 141.401 190.237 142.598 187.563C160.698 147.126 235.985 146.505 245.145 190.405C246.156 195.493 246.337 200.711 245.683 205.857" stroke="#171717" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M114.385 266.601C114.44 268.739 114.592 270.808 114.812 272.809C121.821 335.509 206.792 329.167 225.003 268.615C225.838 265.802 226.52 262.947 227.045 260.061" stroke="#171717" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M142.474 187.508C118.234 161.308 84.2117 182.141 96.0907 210.934C97.5883 214.51 99.5505 217.872 101.927 220.934" stroke="#171717" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M224.685 268.257C224.796 268.381 224.892 268.505 225.003 268.616C258.928 307.397 318.748 261.373 305.545 216.894C296.053 196.627 266.792 181.879 245.145 190.405C244.98 190.46 244.814 190.529 244.645 190.598" stroke="#171717" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M113.557 273.044C87.3852 284.081 45.3902 254.2 65.8362 226.551C73.0792 216.411 83.9502 210.161 96.0912 210.934H96.1322" stroke="#171717" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M713.112 154.038C711.802 152.121 710.483 150.208 709.154 148.299C705.22 142.643 701.229 137.037 697.179 131.481C693.854 126.929 690.487 122.418 687.078 117.947C685.812 116.264 684.529 114.585 683.229 112.912" stroke="#171717" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M667.82 127.343C671.087 127.757 674.348 128.19 677.602 128.643C684.141 129.513 690.667 130.46 697.179 131.485C703.747 132.492 710.3 133.573 716.838 134.727C721.032 135.46 725.227 136.219 729.421 137.004" stroke="#171717" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M830.354 266.616C829.954 265.444 829.567 264.285 829.167 263.116C826.449 255.039 823.827 246.939 821.3 238.817C820.155 235.147 819.033 231.472 817.934 227.794C817.201 225.338 816.474 222.882 815.754 220.427" stroke="#171717" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M796.994 233.437C799.823 234.099 802.651 234.747 805.479 235.382C810.746 236.568 816.02 237.713 821.303 238.817C829.457 240.514 837.634 242.11 845.833 243.604C847.833 243.977 849.848 244.336 851.862 244.694" stroke="#171717" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M587.889 349.416C589.32 326.546 591.88 303.784 595.57 281.131" stroke="#171717" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M514.308 382.758C515.219 376.013 515.762 369.223 515.936 362.418C517.591 327.709 521.398 293.136 527.336 258.898" stroke="#171717" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M335.933 271.354C340.825 226.384 344.804 181.326 347.871 136.181" stroke="#171717" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M137.824 452.667C136.999 442.821 138.436 432.947 139.405 423.114C141.309 403.799 141.417 384.349 139.727 365.014" stroke="#171717" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M618.405 445.313C615.178 446.129 611.791 445.467 608.49 445.057C603.762 444.469 598.983 444.408 594.241 444.875L594.741 443.519" stroke="white" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M608.5 437.055C606.927 443.326 605.92 449.727 605.492 456.179" stroke="white" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M629.759 571.091C629.871 564.459 630.388 557.841 631.307 551.272" stroke="white" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M617.156 562.76L643.456 559.538" stroke="white" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M752.215 461.04C750.537 453.044 748.861 445.047 747.187 437.051" stroke="white" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M738.832 453.8L763.247 443.907" stroke="white" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M762.638 354.234C761.344 348.064 760.052 341.894 758.761 335.726" stroke="white" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M751.519 348.046C758.436 344.868 765.611 342.283 772.967 340.318" stroke="white" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M702.13 277.239C700.33 270.843 698.332 264.51 696.136 258.239" stroke="white" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M689.613 273.55C696.755 269.225 703.842 264.809 710.874 260.303" stroke="white" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M668.223 221.188C667.053 223.238 666.478 225.574 666.562 227.933C666.499 228.679 666.566 229.43 666.762 230.153C667.055 230.942 667.545 231.643 668.186 232.189C670.014 233.712 672.37 234.449 674.74 234.24C677.11 234.03 679.301 232.891 680.833 231.071C687.492 222.486 674.891 211.259 668.223 221.188Z" stroke="white" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M642.7 407.743C641.853 411.063 643.577 415.027 646.817 416.143C648.103 416.518 649.449 416.646 650.784 416.519C652.862 416.419 655.108 416.081 656.559 414.593C657.3 413.737 657.869 412.747 658.234 411.675C659.043 409.683 659.775 407.431 658.976 405.435C656.11 398.266 644.338 401.32 642.7 407.743Z" stroke="white" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M776.6 383.454C775.16 384.493 774.042 385.916 773.371 387.56C772.701 389.204 772.505 391.004 772.807 392.754C772.993 393.87 773.565 394.886 774.424 395.623C775.671 396.384 777.141 396.698 778.59 396.513C780.578 396.457 782.69 396.253 784.263 395.036C785.158 394.289 785.868 393.345 786.337 392.278C787.444 390.21 787.695 387.791 787.037 385.54C785.437 380.976 779.977 380.964 776.6 383.454Z" stroke="white" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M690.2 521.1C696.911 513.498 702.959 505.335 708.277 496.7C708.44 496.535 708.562 496.333 708.633 496.112C708.705 495.891 708.724 495.656 708.689 495.427C708.654 495.197 708.566 494.978 708.432 494.789C708.297 494.599 708.121 494.443 707.916 494.333C700.34 487.586 691.792 482.016 682.559 477.812C682.202 477.608 681.794 477.511 681.384 477.533C680.837 477.699 680.377 478.073 680.104 478.575L658.43 508.638L683.222 524.56" stroke="white" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M683.06 354C683.329 354.029 683.601 353.988 683.85 353.88C684.098 353.772 684.313 353.601 684.475 353.384C684.637 353.167 684.74 352.912 684.773 352.643C684.807 352.375 684.77 352.102 684.665 351.852C683.49 341.007 682.316 330.162 681.142 319.318C671.931 321.498 662.635 323.265 653.253 324.618C652.865 324.565 652.469 324.609 652.101 324.746C651.734 324.883 651.406 325.109 651.147 325.403C650.888 325.698 650.706 326.052 650.617 326.434C650.528 326.817 650.536 327.215 650.638 327.593C650.956 334.872 647.962 348.838 653.87 354.663C656.909 357.663 661.145 356.828 664.97 356.336C670.999 355.562 677.029 354.783 683.06 354Z" stroke="white" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M672.779 365.3C673.688 358.908 670.828 352.45 671.587 346.039C671.617 346.394 671.649 346.747 671.679 347.101" stroke="white" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M662.193 365.925C662.011 359.655 661.83 353.384 661.648 347.112" stroke="white" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M676.57 332.3L689.196 330.152" stroke="white" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M668.758 326.654C668.668 322.195 668.238 317.749 667.473 313.354C667.441 313.42 667.424 313.491 667.421 313.563C667.419 313.635 667.432 313.707 667.459 313.774C667.486 313.841 667.527 313.902 667.579 313.952C667.631 314.003 667.693 314.042 667.761 314.066" stroke="white" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M661.344 327.625C660.991 323.515 660.637 319.405 660.283 315.296" stroke="white" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M692.345 491.369C695.139 486.846 697.818 482.253 700.381 477.59C700.444 478.026 700.506 478.462 700.57 478.898" stroke="white" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M697.633 502.965C700.775 504.155 703.769 505.705 706.555 507.583" stroke="white" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M691.531 511.859C694.973 513.001 698.143 514.841 700.84 517.264" stroke="white" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M673.513 512.267C670.83 516.707 667.834 520.951 664.549 524.967C664.762 524.761 664.974 524.554 665.187 524.349" stroke="white" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M673.448 494.394C669.422 491.353 665.351 488.374 661.233 485.458L661.939 485.717" stroke="white" stroke-width="4.139" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<g opacity="0.1">
|
||||||
|
<path d="M91.9119 208.004C81.4119 208.039 72.3209 213.661 66.4419 222.204C61.0139 230.089 57.4019 242.104 60.3529 251.533C66.9989 272.775 96.2129 281.111 113.644 267.933L99.2099 259.646C101.21 285.852 119.637 308.432 144.058 317.483C168.479 326.534 196.231 317.247 212.607 297.568C222.295 285.927 228.138 271.935 228.491 256.697L211.537 263.72C225.109 278.354 246.959 285.542 266.365 279.858C275.565 277.158 284.709 272.106 290.647 264.493C295.826 257.855 301.489 249.122 299.402 240.41C298.925 238.418 296.15 237.073 294.376 238.365C288.776 242.442 285.499 248.584 279.705 252.519C274.147 256.294 268.619 259.798 261.997 261.306C255.44 262.718 248.628 262.387 242.238 260.347C235.849 258.306 230.106 254.627 225.582 249.675C219.547 243.142 208.837 248.42 208.629 256.697C208.056 279.459 188.012 300.254 165.103 301.113C141.931 301.983 120.244 282.778 118.396 259.646C117.887 253.281 110.296 246.538 103.961 251.363C95.5709 257.755 81.6119 256.369 74.9679 246.645C70.9369 240.745 70.5389 234.486 74.2039 228.232C77.9259 221.878 84.4509 217.076 91.9119 216.532C97.3249 216.14 97.4679 207.982 91.9119 208V208.004Z" fill="#171717"/>
|
||||||
|
</g>
|
||||||
|
<g opacity="0.1">
|
||||||
|
<path d="M49.4972 784.336C48.2252 786.29 46.2132 787.546 44.8972 789.536C43.8269 791.189 42.9037 792.932 42.1382 794.746C40.3978 798.465 39.1364 802.391 38.3842 806.427C37.3352 813.042 38.3942 820.609 42.0552 826.327C52.6552 842.881 75.0782 836.162 85.5872 823.091L69.0722 818.73C74.9952 836.472 84.0092 855.172 104.055 859.792C125.198 864.665 146.774 851.298 151.255 829.959L138.8 837.03C152.211 840.666 166.877 839.209 178.265 830.859C182.922 827.444 188.288 822.73 190.299 817.159C191.115 814.899 191.411 812.515 192.106 810.243C193.077 807.064 192.897 805.237 192.906 801.97C192.906 799.906 189.962 798.344 188.506 800.147C185.974 803.254 182.966 805.939 179.593 808.103C175.973 810.371 172.985 813.26 169.105 815.185C161.365 818.989 152.496 819.815 144.186 817.506C139.165 816.08 132.851 819.242 131.731 824.577C129.308 836.118 117.943 844.098 106.262 839.333C96.2172 835.233 90.1512 823.554 88.1312 813.478C86.9312 807.492 78.6542 804.11 73.6162 807.578C67.9322 811.484 61.2622 820.188 54.7082 813.337C52.0932 810.603 51.3622 806.974 51.5082 803.225C51.6182 800.33 52.5372 797.661 53.2522 794.877C53.9462 792.171 53.7672 789.107 54.6452 786.515C55.7052 783.382 51.1782 781.774 49.5042 784.348L49.4972 784.336Z" fill="#171717"/>
|
||||||
|
</g>
|
||||||
|
<g opacity="0.1">
|
||||||
|
<path d="M480.602 720.687C474.99 724.117 469.796 727.855 465.809 733.13C461.835 738.491 458.818 744.499 456.892 750.888C452.529 764.888 455.177 780.423 462.217 793.123C477.517 820.715 512.159 832.123 541.773 824.623C558.458 820.394 575.606 810.357 586.402 796.78L567.271 785.643C559.9 818.122 574.735 853.352 605.071 868.258C638.399 884.632 677.531 876.558 705.411 853.416C719.886 841.401 731.166 825.379 738.783 808.258L720.546 810.608C742.887 833.92 780.2 840.469 808.48 824.287C834.039 809.663 850.1 775.557 838.85 747.296C837.462 743.81 832.138 744.064 832.036 748.218C831.464 771.575 820.211 795.339 798.493 805.806C778.193 815.592 752.206 810.236 736.967 794.187C732.231 789.2 721.802 789.716 718.731 796.537C707.852 820.694 689.052 842.896 662.88 850.703C637.907 858.153 608.821 851.729 594.885 828.884C591.351 823.328 588.807 817.201 587.367 810.776C585.93 804.125 587.004 798.216 589.346 791.724C593.332 780.677 577.875 772.824 570.214 780.587C559.452 791.497 547.852 799.827 532.532 802.904C525.913 804.181 519.107 804.137 512.506 802.775C505.904 801.412 499.637 798.759 494.065 794.966C483.731 788.115 476.117 776.635 475.332 764.34C474.511 751.498 476.432 737.37 486.283 728.049C490.138 724.4 485.158 717.902 480.602 720.687V720.687Z" fill="#171717"/>
|
||||||
|
</g>
|
||||||
|
<g opacity="0.1">
|
||||||
|
<path d="M834.036 532.52C830.036 534.82 826.67 537.839 825.661 542.492C824.751 547.565 825.487 552.796 827.761 557.421C833.714 568.999 851.679 567.811 859.255 558.795L845.341 557.002C852.068 570.991 862.568 586.596 880.114 586.223C896.38 585.877 906.361 570.495 905.97 555.347L899.378 564.006C913.656 560.322 924.216 544.445 919.471 529.768C918.287 526.107 912.862 525.855 911.787 529.768C909.397 538.461 903.458 544.477 894.603 546.687C892.717 547.227 891.057 548.362 889.869 549.923C888.681 551.483 888.029 553.386 888.01 555.347C888.11 561.123 885.219 569.579 877.987 568.341C868.611 566.735 864.247 555.568 860.641 548.059C858.296 543.178 850.227 542.101 846.726 546.266C844.226 549.235 840.859 549.812 837.268 548.19C833.148 546.329 833.768 538.717 836.481 535.69C836.811 535.339 837.005 534.882 837.028 534.401C837.052 533.92 836.903 533.447 836.609 533.065C836.315 532.684 835.894 532.42 835.423 532.321C834.952 532.222 834.461 532.294 834.038 532.524L834.036 532.52Z" fill="#171717"/>
|
||||||
|
</g>
|
||||||
|
<g opacity="0.1">
|
||||||
|
<path d="M60.36 550.507C62.949 586.837 87.56 616.785 112.254 641.555C138.954 668.345 167.584 695.206 199.922 715.073C233.47 735.683 272.562 747.198 311.908 740.348C330.66 737.084 348.721 729.657 365.249 720.348C381.796 711.025 395.991 698.41 412.179 688.6C429.245 678.257 448.021 674.144 467.842 673.566C478.362 673.26 489.178 673.496 499.662 674.076C504.81 674.36 510.039 674.185 515.152 674.529C517.762 674.704 519.952 675.215 522.569 674.79C525.469 674.319 528.275 673.604 531.208 673.214C533.008 672.974 534.178 670.514 532.225 669.457C528.553 667.466 524.958 664.557 520.969 663.307C516.636 661.951 512.121 660.707 507.704 659.56C498.845 657.232 489.818 655.602 480.704 654.687C462.588 652.903 444.427 653.41 426.761 658.155C417.605 660.513 408.812 664.102 400.621 668.824C392.808 673.435 385.645 679.041 378.349 684.407C364.103 694.886 348.793 704.517 332.214 710.86C315.528 717.244 298.182 720.56 280.297 719.413C262.681 718.282 245.208 712.842 229.377 705.175C195.777 688.9 168.065 663.213 141.168 637.823C127.822 625.223 114.448 612.194 103.531 597.379C92.4248 582.51 84.0152 565.807 78.685 548.03C75.791 538.33 59.585 539.647 60.362 550.51L60.36 550.507Z" fill="#171717"/>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 40 KiB |
|
@ -0,0 +1,111 @@
|
||||||
|
<svg width="960" height="960" viewBox="0 0 960 960" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M250.029 874.046V614.307C250.028 610.716 248.601 607.273 246.062 604.734C243.523 602.195 240.08 600.768 236.489 600.767H73.456C69.8653 600.768 66.422 602.195 63.883 604.734C61.3439 607.273 59.9171 610.716 59.916 614.307V874.046C59.9189 877.636 61.3464 881.078 63.885 883.617C66.4236 886.156 69.8659 887.583 73.456 887.586H236.489C240.079 887.583 243.521 886.156 246.06 883.617C248.599 881.078 250.026 877.636 250.029 874.046ZM237.758 625.124C235.442 619.99 229.788 615.376 223.631 616.573C222.676 616.758 222.052 617.683 222.238 618.638C222.423 619.593 223.348 620.217 224.303 620.031C228.27 619.26 232.621 622.304 234.546 626.572C236.475 630.849 236.431 635.796 236.311 641.02L235.668 668.978C235.645 669.951 236.416 670.758 237.388 670.78C238.361 670.802 239.167 670.032 239.19 669.059L239.833 641.102C239.95 636.016 240.069 630.249 237.758 625.124Z" fill="white"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M501.632 834.612C512.068 730.193 512.005 624.991 501.444 520.584C448.876 522.737 396.295 523.613 343.701 523.214V523.543C342.973 540.878 342.292 558.679 341.599 576.785C338.22 665.148 334.563 760.765 323.809 844.762C326.78 845.654 329.845 846.511 332.968 847.298C350.889 851.827 370.97 854.285 388.714 850.727C391.148 850.25 393.554 849.642 395.924 848.907C397.077 835.854 398.218 822.406 399.382 808.68C406.459 725.253 414.409 631.534 431.331 553.644L431.765 553.738C421.712 652.083 416.734 750.881 416.851 849.738C420.417 850.842 424.022 851.84 427.651 852.709C443.807 856.624 460.433 858.257 477.043 857.559C478.805 857.477 480.598 857.359 482.398 857.136C487.742 856.467 492.944 854.881 496.432 850.924C500.27 846.567 501.057 840.39 501.632 834.612ZM491.502 546.215C491.441 545.244 490.605 544.506 489.634 544.567C488.663 544.628 487.925 545.464 487.986 546.435C493.041 627.087 494.245 707.856 491.6 788.744C491.568 789.717 492.33 790.531 493.303 790.563C494.275 790.594 495.089 789.832 495.121 788.86C497.77 707.86 496.564 626.978 491.502 546.215Z" fill="white"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M464.146 355.956C470.25 369.217 475.75 382.717 480.646 396.456L480.47 396.512C474.496 409.469 468.515 422.43 462.526 435.394C461.779 437.39 460.605 439.199 459.085 440.694C457.464 442.079 454.963 442.657 453.201 441.457C450.97 439.942 451.064 436.666 451.51 434C453.107 425.322 455.906 416.91 459.826 409.005C456.15 416.018 452.463 422.876 448.176 429.605C447.214 431.377 445.866 432.91 444.231 434.091C442.516 435.136 440.073 435.277 438.641 433.868C436.75 432.022 437.56 428.877 438.523 426.422C442.203 417.143 446.41 408.083 451.123 399.284C442.867 413.763 433.379 429.253 426.755 425.107C419.956 420.857 440.014 388.422 453.025 374.107C450.109 374.232 446.57 375.307 443.033 376.381C435.961 378.528 428.893 380.675 426.802 375.234C424.508 369.28 448.508 355.729 462.608 356.656L464.146 355.956ZM276.57 400.766C295.007 395.905 313.197 389.14 329.791 379.828L329.889 379.987L329.748 382.933C327.402 431.883 325.384 473.985 319.731 522.939C327.724 523.06 335.713 523.15 343.699 523.209C396.313 523.604 448.896 522.728 501.447 520.579C507.644 520.324 513.837 520.05 520.025 519.757C522.212 489.211 522.184 458.548 519.943 428.006L519.602 426.256C539.953 422.314 559.877 416.427 579.102 408.676C607.369 397.156 633.497 381.185 655.269 359.812C660.535 354.868 665.176 349.3 669.091 343.231C670.798 340.516 672.218 337.631 673.33 334.623C680.177 316.068 672.955 294.236 658.769 280.451C644.583 266.666 624.607 260.112 604.89 258.551C585.173 256.99 565.409 259.979 545.856 262.979C516.48 267.462 487.106 271.951 457.734 276.448C456.302 278.492 454.07 279.337 451.158 279.361C447.374 279.389 443.556 279.118 439.743 278.849C437.086 278.661 434.432 278.473 431.793 278.386C418.39 277.96 404.995 278.093 391.608 278.786L391.191 278.807C387.061 279.018 382.842 279.233 378.866 278.086C377.289 277.749 375.883 276.863 374.897 275.586C374.798 275.427 374.708 275.262 374.627 275.093L373.969 275.128C354.717 278.145 338.398 289.449 322.153 300.702C317.084 304.214 312.021 307.721 306.879 310.969C254.704 343.944 187.144 351.331 129.074 330.392C128.711 331.364 128.343 332.329 127.974 333.298C127.844 333.64 127.713 333.983 127.582 334.326C121.182 351.299 114.771 368.276 108.347 385.257C105.259 393.434 102.17 401.616 99.0814 409.801L98.4004 410.901C110.053 417.606 123.707 420.143 137.153 420.366C149.404 420.569 161.597 418.949 173.74 417.336C174.924 417.179 176.109 417.022 177.292 416.866C183.531 416.043 189.779 415.263 196.029 414.483C223.108 411.104 250.207 407.722 276.57 400.766ZM660.945 307.097C660.775 306.139 659.86 305.501 658.902 305.672C657.944 305.843 657.306 306.757 657.477 307.715C660.262 323.344 653.383 339.672 642.569 351.79C631.745 363.92 617.448 372.431 602.969 380.543C602.12 381.019 601.818 382.092 602.293 382.941C602.769 383.79 603.842 384.092 604.691 383.617C619.15 375.515 633.935 366.756 645.197 354.136C656.469 341.504 663.98 324.125 660.945 307.097Z" fill="#1E1E1E"/>
|
||||||
|
<path d="M626.368 69.7L852.662 123.578C852.662 123.578 821.988 245.427 821.162 247.917L711.272 222.232L697.838 219.085L604.807 197.348L531.035 134.357L626.368 69.7Z" fill="#1E1E1E"/>
|
||||||
|
<path d="M818.677 631.711L697.145 685.411L682.571 691.846L640.46 710.46L561.709 672.331C561.709 672.331 627.19 587.779 628.846 585.301C629.456 584.385 654.928 573.112 686.94 559.184C691.555 557.176 696.299 555.121 701.126 553.03C754.182 530.037 817.026 503.23 817.026 503.23L818.677 631.711Z" fill="white"/>
|
||||||
|
<path d="M516.11 882.126C518.632 883.716 520.607 886.04 521.77 888.784L520.27 889.301C512.789 897.028 500.506 896.828 489.831 895.548C468.075 892.937 446.647 888.084 425.888 881.069L424.561 881.386C423.876 878.582 423.58 875.697 423.681 872.813C423.857 866.355 425.618 860.048 427.381 853.824L427.651 852.709C443.808 856.624 460.434 858.257 477.043 857.559C478.805 857.477 480.602 857.359 482.398 857.136L482.539 858.228C488.38 866.424 496.29 872.924 505.462 877.064C509.052 878.685 512.833 879.942 516.11 882.126Z" fill="#1E1E1E"/>
|
||||||
|
<path d="M459.309 156.2C454.517 157.897 449.574 159.131 444.548 159.888C430.648 162.049 416.387 161.588 402.553 164.209C400.404 164.609 398.091 165.196 396.682 166.863C395.308 168.484 395.082 170.75 394.92 172.853C393.511 191.113 392.114 208.787 390.728 226.602L390.552 226.59C386.606 229.08 385.443 235.245 380.91 236.349C376.683 237.37 372.878 232.579 373.136 228.222C373.394 223.865 376.272 220.178 379.036 216.796C375.9 220.535 372.036 223.597 367.68 225.796C365.19 227.065 361.538 227.722 360.105 225.315C358.555 222.72 361.315 219.796 363.464 217.67C370.404 210.788 373.023 200.631 373.739 190.884C374.455 181.137 373.539 171.296 374.796 161.596C375.496 156.147 377.016 150.545 380.727 146.496C385.154 141.657 391.988 139.802 398.527 139.262C405.066 138.722 411.692 139.262 418.162 138.146C421.192 137.618 424.351 136.62 426.312 134.246C429.248 130.723 428.579 125.556 429.565 121.082C430.489 116.914 432.908 113.229 436.365 110.724C438.032 109.524 440.381 108.634 442.084 109.809C443.422 110.709 443.784 112.486 443.951 114.083C444.459 118.948 444.194 123.863 443.164 128.645C443.023 129.145 442.906 129.655 442.8 130.171C442.929 129.671 443.046 129.15 443.164 128.645C444.863 121.998 448.343 115.941 453.228 111.124C454.896 109.491 457.056 107.918 459.335 108.376C462.775 109.057 463.691 113.531 463.492 117.019C463.025 124.765 460.731 132.29 456.798 138.979L456.939 139.061C461.378 135.24 466.131 131.799 471.148 128.774C474.131 126.966 477.865 125.298 480.942 126.907C483.303 128.152 484.43 131.052 484.195 133.707C483.823 136.356 482.735 138.853 481.048 140.929C475.726 148.237 467.901 153.087 459.309 156.2Z" fill="white"/>
|
||||||
|
<path d="M457.735 276.451C456.303 278.495 454.071 279.34 451.159 279.364C444.736 279.411 438.218 278.6 431.794 278.389C418.394 277.954 404.999 278.087 391.609 278.789C387.346 279.001 382.977 279.271 378.867 278.089C377.289 277.752 375.883 276.866 374.898 275.589C374.798 275.43 374.708 275.265 374.628 275.096C374.15 273.838 373.945 272.493 374.028 271.15C374.004 267.98 374.11 264.468 376.294 262.178C378.432 259.935 381.849 259.63 384.937 259.571C386.018 259.548 387.098 259.548 388.179 259.548C400.944 259.642 413.697 261.427 426.438 260.722C428.176 260.628 429.914 260.487 431.652 260.322C436.902 259.822 442.139 259.065 447.4 258.631C450 258.419 452.755 258.314 455.057 259.531C460.118 262.209 460.457 269.231 458.897 274.058C458.641 274.913 458.249 275.721 457.735 276.451Z" fill="#1E1E1E"/>
|
||||||
|
<path d="M388.707 850.724L388.918 851.746C386.276 858.393 387.662 865.838 388.418 872.954C388.806 876.162 388.842 879.403 388.524 882.619L387.831 882.549C355.336 895.852 320.221 901.52 285.19 899.118C282.692 896.34 281.337 892.72 281.396 888.984C281.702 882.784 286.657 877.699 292.153 874.821C297.649 871.943 303.853 870.688 309.592 868.321C319.2 864.335 327.284 857.386 332.668 848.486L332.961 847.3C350.882 851.828 370.963 854.282 388.707 850.724Z" fill="#1E1E1E"/>
|
||||||
|
<path d="M218.746 888.42C227.459 888.268 229.597 900.61 224.007 905.73C222.728 906.857 221.218 907.691 219.583 908.173C217.948 908.656 216.228 908.776 214.542 908.525C212.267 908.25 210.169 907.162 208.635 905.46C202.869 898.625 211.159 888.549 218.746 888.42Z" fill="#1E1E1E"/>
|
||||||
|
<path d="M195.541 562.308C199.815 566.359 195.682 570.234 191.619 570.786C189.294 571.085 186.953 571.246 184.608 571.268C179.629 571.362 174.508 571.045 169.694 571.15C154.24 571.467 138.786 571.788 123.331 572.113C123.108 572.113 122.897 572.125 122.673 572.125C120.538 572.283 118.393 572.007 116.367 571.315C114.195 570.422 112.316 568.344 112.421 565.995C112.559 564.913 112.995 563.89 113.679 563.04C114.363 562.19 115.269 561.546 116.297 561.18C118.358 560.477 120.535 560.174 122.709 560.288C140.509 560.053 158.309 559.822 176.109 559.595C180.031 559.548 183.953 559.501 187.864 559.771C190.609 559.971 193.544 560.405 195.541 562.308Z" fill="#1E1E1E"/>
|
||||||
|
<path d="M89.569 888.42C98.282 888.268 100.42 900.61 94.83 905.73C93.551 906.857 92.0413 907.691 90.4064 908.173C88.7716 908.656 87.051 908.776 85.365 908.525C83.0905 908.25 80.9922 907.162 79.458 905.46C73.692 898.625 81.983 888.549 89.569 888.42Z" fill="#1E1E1E"/>
|
||||||
|
<path d="M448.34 165.183L425.722 168.283C427.624 181.671 429.524 195.066 431.422 208.469C428.158 208.13 424.862 208.268 421.639 208.88" stroke="white" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M415.093 178.782C414.551 178.141 413.864 177.639 413.089 177.315C412.314 176.992 411.473 176.858 410.636 176.923C409.799 176.988 408.99 177.252 408.274 177.691C407.559 178.131 406.958 178.734 406.521 179.451C406.709 179.134 406.908 178.817 407.108 178.488" stroke="white" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M443.949 181.835C443.556 181.172 443.01 180.611 442.358 180.201C441.705 179.791 440.964 179.542 440.195 179.475C439.427 179.408 438.654 179.526 437.94 179.818C437.227 180.11 436.593 180.568 436.092 181.154" stroke="white" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M414.777 226.554C413.51 226.643 412.238 226.467 411.042 226.036C409.846 225.606 408.754 224.931 407.834 224.055C406.914 223.178 406.187 222.12 405.699 220.947C405.211 219.773 404.973 218.511 405 217.241" stroke="white" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M431.477 258.249C432.377 253.681 431.524 248.949 431.548 244.286C431.572 239.623 432.804 234.481 436.633 231.803C439.991 229.466 444.559 229.572 448.059 227.458C452.78 224.616 454.377 218.615 455.316 213.19C458.581 194.401 458.957 175.259 459.309 156.199V155.906" stroke="white" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M388.18 259.247C389.037 248.197 389.88 237.369 390.728 226.601C392.114 208.786 393.511 191.112 394.92 172.852C395.085 170.752 395.308 168.483 396.682 166.862C398.091 165.195 400.404 164.608 402.553 164.208C416.387 161.59 430.644 162.048 444.553 159.887C449.579 159.13 454.522 157.896 459.314 156.199C467.914 153.087 475.731 148.237 481.051 140.921C482.738 138.845 483.826 136.348 484.198 133.699C484.433 131.045 483.306 128.145 480.945 126.899C477.868 125.29 474.134 126.958 471.151 128.766C466.134 131.791 461.381 135.232 456.942 139.053" stroke="white" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M443.162 128.638C444.192 123.856 444.457 118.941 443.949 114.076C443.784 112.476 443.42 110.706 442.082 109.802C440.382 108.627 438.03 109.52 436.363 110.717C432.906 113.222 430.487 116.907 429.563 121.075C428.577 125.549 429.246 130.716 426.31 134.239C424.349 136.612 421.19 137.61 418.16 138.139C411.69 139.255 405.067 138.715 398.525 139.255C391.983 139.795 385.15 141.655 380.725 146.489C377.014 150.54 375.499 156.142 374.794 161.589C373.538 171.289 374.442 181.13 373.737 190.877C373.032 200.624 370.402 210.777 363.462 217.663C361.313 219.789 358.553 222.713 360.103 225.308C361.536 227.715 365.188 227.058 367.678 225.789C372.034 223.59 375.898 220.528 379.034 216.789C376.274 220.171 373.397 223.859 373.134 228.215C372.871 232.571 376.681 237.363 380.908 236.342C385.441 235.242 386.608 229.073 390.55 226.583" stroke="white" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M443.161 128.638C443.02 129.138 442.903 129.648 442.797 130.164C442.926 129.659 443.043 129.143 443.161 128.638Z" stroke="white" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M456.547 139.4L456.794 138.977C460.728 132.288 463.022 124.763 463.488 117.017C463.688 113.529 462.771 109.055 459.331 108.374C457.052 107.916 454.892 109.489 453.224 111.122C448.339 115.939 444.86 121.997 443.16 128.643" stroke="white" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M457.734 276.451C458.249 275.719 458.641 274.909 458.897 274.051C460.459 269.224 460.118 262.202 455.057 259.524C452.757 258.303 449.996 258.408 447.4 258.624C442.139 259.058 436.9 259.81 431.652 260.315C429.914 260.479 428.176 260.62 426.438 260.715C413.697 261.42 400.944 259.635 388.179 259.541C387.098 259.541 386.018 259.541 384.937 259.564C381.849 259.623 378.437 259.928 376.294 262.171C374.11 264.461 374.004 267.971 374.028 271.143C373.945 272.486 374.15 273.831 374.628 275.089C374.708 275.258 374.798 275.423 374.898 275.582C375.883 276.859 377.289 277.745 378.867 278.082C382.977 279.268 387.346 278.998 391.609 278.782C404.995 278.089 418.39 277.956 431.794 278.382C438.218 278.593 444.736 279.404 451.159 279.357C454.07 279.34 456.3 278.5 457.734 276.451Z" stroke="white" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M373.969 275.124C348.709 279.082 328.499 297.307 306.879 310.965C254.704 343.94 187.144 351.327 129.079 330.388C128.585 331.704 128.092 333.007 127.587 334.322C121.187 351.303 114.775 368.28 108.352 385.253C105.275 393.438 102.187 401.619 99.0859 409.797" stroke="white" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M98.3994 410.9C110.048 417.6 123.718 420.142 137.152 420.365C150.586 420.588 163.974 418.615 177.291 416.865C210.56 412.473 244.122 409.326 276.569 400.765C295.006 395.904 313.196 389.139 329.79 379.827C342.437 372.842 354.039 364.114 364.256 353.9" stroke="white" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M125.89 333.688C125.322 333.307 124.843 332.807 124.486 332.224C124.13 331.64 123.903 330.986 123.823 330.306C123.663 328.951 123.726 327.578 124.011 326.243C125.667 316.155 129.212 306.397 130.001 296.215C130.228 294.423 130.104 292.604 129.636 290.86C129.442 289.972 129.013 289.152 128.394 288.486C127.775 287.82 126.99 287.332 126.118 287.072C125.247 286.812 124.322 286.789 123.44 287.008C122.557 287.226 121.749 287.676 121.099 288.312C119.758 289.49 118.636 290.898 117.787 292.469C109.555 306.009 104.624 321.346 101.688 336.906" stroke="white" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M99.7269 337.035C92.9159 333.3 80.3739 331.6 77.1999 331.281C73.5604 330.801 69.871 330.845 66.2439 331.41C62.5866 331.982 59.2104 333.716 56.6139 336.354C55.6663 337.285 55.0025 338.466 54.6999 339.76C54.5569 340.405 54.5894 341.076 54.794 341.704C54.9985 342.332 55.3676 342.893 55.8629 343.33C56.8142 343.931 57.9195 344.244 59.0449 344.23C59.2209 344.242 59.3859 344.253 59.5619 344.277C71.5519 345.287 83.5455 346.301 95.5429 347.318C96.2009 347.377 96.8429 347.424 97.5039 347.436C98.2347 347.476 98.9677 347.432 99.6889 347.307C100.377 347.211 101.039 346.98 101.637 346.627C102.236 346.274 102.759 345.806 103.176 345.251C105.516 341.815 103.508 339.114 99.7269 337.035Z" stroke="white" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M59.5289 344.751C57.6671 345.144 55.9094 345.926 54.3714 347.046C52.8334 348.166 51.5498 349.599 50.6049 351.251C49.6351 352.757 49.3014 354.585 49.6769 356.336C49.9468 357.121 50.3776 357.841 50.9417 358.449C51.5059 359.058 52.1908 359.542 52.9529 359.871C54.3654 360.48 55.862 360.873 57.3919 361.034C57.5099 361.057 57.6269 361.081 57.7439 361.092C66.8699 362.396 76.0914 362.911 85.3059 362.631C88.9109 362.548 92.5059 362.337 96.0859 362.02C97.9618 361.959 99.8115 361.561 101.547 360.846C102.442 360.532 103.23 359.97 103.817 359.225C104.405 358.481 104.769 357.584 104.866 356.64C104.964 355.697 104.79 354.745 104.367 353.896C103.943 353.047 103.287 352.336 102.475 351.846C100.94 350.794 99.2419 350.005 97.4489 349.509" stroke="white" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M57.1809 362.424C55.052 362.801 53.0279 363.627 51.2438 364.848C49.4597 366.069 47.9566 367.657 46.8349 369.505C45.8599 371.138 45.1909 373.169 45.9189 374.931C46.7529 376.974 49.0659 377.914 51.1799 378.548C62.8742 382.147 75.2906 382.721 87.2669 380.215C89.1713 379.855 91.0204 379.247 92.7669 378.407C93.334 378.115 93.8761 377.778 94.3879 377.397C95.4523 376.67 96.3131 375.684 96.8886 374.531C97.4641 373.377 97.7351 372.096 97.6759 370.809C97.3939 368.225 95.3389 366.109 92.9669 365.055C90.5366 364.127 87.9449 363.695 85.3449 363.786" stroke="white" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M106.949 384.725C102.279 382.615 97.4187 380.955 92.4336 379.769C92.2696 379.734 92.0936 379.687 91.9336 379.652" stroke="white" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M457.641 276.463C457.677 276.463 457.7 276.451 457.735 276.451C487.106 271.954 516.48 267.465 545.857 262.982C565.41 259.982 585.174 256.993 604.891 258.554C624.608 260.115 644.584 266.669 658.77 280.454C672.956 294.239 680.178 316.071 673.331 334.626C672.218 337.634 670.798 340.519 669.092 343.234C665.177 349.303 660.535 354.871 655.27 359.815C633.498 381.188 607.37 397.159 579.103 408.679C559.878 416.43 539.953 422.317 519.603 426.259C510.503 428.059 501.342 429.512 492.183 430.651" stroke="white" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M491.791 431.792C488.515 419.884 484.8 408.105 480.647 396.456C475.75 382.717 470.25 369.217 464.147 355.956C463.113 353.689 462.057 351.431 460.977 349.18C500.383 341.201 537.984 326.038 571.901 304.447" stroke="white" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M459.825 409.01C455.905 416.913 453.107 425.324 451.51 434C451.064 436.666 450.97 439.942 453.201 441.457C454.963 442.657 457.464 442.079 459.085 440.694C460.604 439.199 461.779 437.39 462.526 435.394C468.514 422.43 474.496 409.469 480.47 396.512" stroke="white" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M459.824 409.01C462.807 403.326 465.778 397.572 469.077 391.71C465.789 397.419 462.599 403.15 459.824 409.01Z" stroke="white" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M451.123 399.287C446.409 408.086 442.202 417.146 438.523 426.425C437.56 428.88 436.75 432.025 438.641 433.871C440.073 435.28 442.516 435.139 444.231 434.094C445.865 432.913 447.213 431.38 448.176 429.608C452.463 422.879 456.15 416.021 459.826 409.008" stroke="white" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M458.827 385.9C456.173 390.21 453.652 394.59 451.264 399.041" stroke="white" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M451.264 399.04C453.964 394.296 456.537 389.669 458.827 385.899L459.672 384.525" stroke="white" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M451.264 399.04L451.123 399.287" stroke="white" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M462.607 356.658C448.507 355.731 424.507 369.282 426.801 375.236C429.937 383.398 444.276 374.485 453.024 374.109C440.013 388.424 419.955 420.859 426.754 425.109C433.378 429.255 442.866 413.765 451.122 399.286" stroke="white" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M329.885 379.992C327.477 430.207 325.493 473.011 319.727 522.944C327.712 523.061 335.701 523.151 343.695 523.214C396.295 523.614 448.877 522.737 501.443 520.584C507.632 520.325 513.825 520.051 520.021 519.762C522.207 489.216 522.179 458.553 519.939 428.011" stroke="white" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M501.337 519.55C501.373 519.891 501.408 520.243 501.443 520.584C512.004 624.99 512.067 730.193 501.631 834.612C501.056 840.39 500.269 846.567 496.431 850.924C492.943 854.881 487.741 856.467 482.397 857.136C480.597 857.359 478.804 857.477 477.042 857.559C460.432 858.257 443.806 856.624 427.65 852.709C424.021 851.84 420.416 850.842 416.85 849.738C416.733 750.881 421.711 652.083 431.764 553.738" stroke="white" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M343.7 523.543C339.425 625.475 336.771 743.554 323.807 844.759C326.778 845.651 329.843 846.508 332.966 847.295C350.887 851.828 370.966 854.282 388.712 850.724C391.146 850.246 393.553 849.639 395.922 848.904C404.084 756.519 411.622 644.347 431.329 553.641C431.376 553.441 431.411 553.241 431.458 553.041" stroke="white" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M427.378 853.824C425.616 860.048 423.855 866.355 423.678 872.813C423.576 875.697 423.872 878.582 424.558 881.386C425.353 884.896 426.976 888.166 429.291 890.922C434.728 897.216 443.418 899.389 451.545 901.232C469.735 905.354 488.618 909.5 506.868 905.659C514.348 904.098 522.909 899.236 522.404 891.614C522.34 890.643 522.126 889.689 521.77 888.784C520.606 886.04 518.631 883.716 516.11 882.126C512.833 879.942 509.052 878.685 505.458 877.064C496.285 872.924 488.375 866.424 482.535 858.228" stroke="white" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M388.918 851.746C386.276 858.393 387.662 865.838 388.418 872.954C388.806 876.162 388.842 879.403 388.524 882.619C388.237 886.557 386.67 890.294 384.062 893.259C380.586 896.946 375.442 898.459 370.562 899.823C347.885 906.129 324.082 912.482 301.123 907.323C296.356 906.254 291.588 904.634 287.771 901.592C286.838 900.849 285.977 900.019 285.2 899.114C282.702 896.336 281.346 892.716 281.406 888.98C281.712 882.78 286.667 877.695 292.163 874.817C297.659 871.939 303.863 870.684 309.602 868.317C319.21 864.331 327.294 857.382 332.678 848.482" stroke="white" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M425.887 881.069C446.646 888.084 468.074 892.937 489.83 895.548C500.505 896.828 512.788 897.028 520.269 889.301" stroke="white" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M284.885 899.1C284.991 899.112 285.085 899.112 285.191 899.123C320.22 901.524 355.333 895.856 387.827 882.554" stroke="white" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M711.272 222.232L821.166 247.915C821.988 245.425 852.666 123.576 852.666 123.576L626.368 69.7L531.035 134.359L604.807 197.35L697.838 219.087L711.272 222.232Z" stroke="white" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M579.113 408.728L577.457 483.334L689.934 484.625L702.782 484.778L866.754 486.657L925.612 417.853L846.027 340.758L706.669 342.719L694.28 342.883L669.09 343.236L668.644 343.247" stroke="white" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M697.146 685.413L818.678 631.713L817.022 503.229C817.022 503.229 754.183 530.039 701.122 553.029C696.295 555.12 691.551 557.175 686.936 559.183C654.924 573.111 629.452 584.383 628.842 585.3C627.186 587.778 561.705 672.33 561.705 672.33L640.456 710.461L682.567 691.847L697.146 685.413Z" stroke="white" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M694.27 342.132C695.162 300.549 696.337 260.621 697.746 219.473" stroke="white" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M686.93 559.548C686.93 559.431 686.942 559.301 686.942 559.184C687.742 534.546 688.68 509.921 689.925 485.307" stroke="white" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M677.348 904.438C679.896 833.696 679.896 763.238 683.078 692.988" stroke="white" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M677.348 904.438C677.782 904.356 678.228 904.274 678.663 904.203C678.234 904.328 677.793 904.406 677.348 904.438Z" stroke="white" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M697.91 687.128C697.51 759.713 693.988 831.348 690.465 904.156C685.765 906.505 682.245 902.982 677.348 904.438" stroke="white" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M702.784 484.637V484.778C702.561 507.525 701.868 530.284 701.128 553.03C701.118 553.108 701.114 553.186 701.116 553.265" stroke="white" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M711.085 223.031C708.079 262.97 708.079 301.723 706.658 341.568" stroke="white" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M607.709 905.542L770.189 906.575" stroke="white" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M190.961 600.767H236.49C240.081 600.768 243.524 602.195 246.063 604.734C248.602 607.273 250.029 610.716 250.03 614.307V874.046C250.027 877.636 248.6 881.078 246.061 883.617C243.522 886.156 240.08 887.583 236.49 887.586H73.457C69.8669 887.583 66.4246 886.156 63.886 883.617C61.3474 881.078 59.9199 877.636 59.917 874.046V614.307C59.9181 610.716 61.3449 607.273 63.8839 604.734C66.423 602.195 69.8663 600.768 73.457 600.767H190.957H190.961Z" stroke="white" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M190.961 599.957C191.607 592.77 192.257 585.583 192.91 578.396" stroke="white" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M173.546 599.969C174.346 593.052 175.146 586.139 175.946 579.23" stroke="white" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M192.816 577.715C190.015 577.408 187.19 577.388 184.385 577.656C181.629 577.902 178.906 578.43 176.258 579.23" stroke="white" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M113.208 600.438C112.623 593.49 112.971 586.494 114.242 579.638" stroke="white" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M127.946 599.933C128.298 593.157 128.647 586.39 128.991 579.633" stroke="white" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M114.77 579.488C117.201 578.73 119.74 578.377 122.286 578.443C124.27 578.485 126.242 578.769 128.158 579.289" stroke="white" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M184.608 571.268C179.629 571.362 174.508 571.045 169.694 571.15C154.24 571.467 138.786 571.788 123.331 572.113C123.108 572.113 122.897 572.125 122.673 572.125C120.538 572.283 118.393 572.007 116.367 571.315C114.195 570.422 112.316 568.344 112.421 565.995C112.559 564.913 112.995 563.89 113.679 563.04C114.363 562.19 115.269 561.546 116.297 561.18C118.358 560.477 120.535 560.174 122.709 560.288C140.509 560.053 158.309 559.822 176.109 559.595C180.031 559.548 183.953 559.501 187.864 559.771C190.612 559.971 193.547 560.405 195.544 562.308C199.818 566.359 195.685 570.234 191.622 570.786C189.296 571.086 186.954 571.246 184.608 571.268Z" stroke="white" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M122.3 577.551L122.687 572.583" stroke="white" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M184.22 575.906L184.608 571.35" stroke="white" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M208.635 905.46C210.169 907.162 212.267 908.25 214.542 908.525C216.228 908.776 217.948 908.656 219.583 908.173C221.218 907.691 222.728 906.857 224.007 905.73C229.597 900.61 227.459 888.268 218.746 888.42C211.159 888.549 202.869 898.625 208.635 905.46Z" stroke="white" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M79.458 905.46C80.9922 907.162 83.0905 908.25 85.365 908.525C87.051 908.776 88.7716 908.656 90.4064 908.173C92.0413 907.691 93.551 906.857 94.83 905.73C100.42 900.61 98.282 888.268 89.569 888.42C81.983 888.549 73.692 898.625 79.458 905.46Z" stroke="white" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M303.235 249.022L280.555 223.172" stroke="white" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M277.826 250.043L303.126 223.094" stroke="white" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M285.668 148.443L273.234 134.766" stroke="#1E1E1E" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M271.992 148.443L281.939 134.766" stroke="#1E1E1E" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M391.312 98.75L376.406 82.572" stroke="white" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M374.148 97.659L389.014 82.684" stroke="white" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M533.107 221.8L523.16 213.1" stroke="white" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M520.674 225.535L531.865 210.614" stroke="white" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M74.4727 561.186C72.2049 555.241 68.2326 550.097 63.0537 546.4" stroke="white" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M60.8936 560.272L74.5746 545.354" stroke="white" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M636.312 111.141L799.199 148.443" stroke="white" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M645.016 410.803H831.528" stroke="white" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M648.746 440.231H744.903" stroke="white" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M691.021 162.121L785.521 182.015" stroke="white" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M756.922 569.96L657.449 613.479" stroke="#1E1E1E" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M778.061 598.558L636.312 664.459" stroke="#1E1E1E" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M507.424 74.931L517.867 79.013C517.955 79.0473 518.031 79.1079 518.083 79.1866C518.136 79.2653 518.164 79.3583 518.162 79.4531C518.16 79.5478 518.129 79.6398 518.074 79.7165C518.018 79.7932 517.94 79.8509 517.851 79.882L507.262 83.57C507.175 83.6005 507.1 83.6557 507.045 83.7288C506.99 83.8019 506.957 83.8896 506.952 83.981L506.301 95.174C506.295 95.2685 506.261 95.359 506.202 95.4334C506.144 95.5078 506.064 95.5624 505.973 95.59C505.883 95.6175 505.786 95.6167 505.696 95.5876C505.606 95.5584 505.527 95.5024 505.47 95.427L498.69 86.497C498.634 86.424 498.559 86.369 498.472 86.3391C498.386 86.3092 498.292 86.3057 498.204 86.329L487.356 89.165C487.264 89.1899 487.166 89.1859 487.077 89.1535C486.987 89.1211 486.91 89.0619 486.855 88.9839C486.801 88.906 486.771 88.8131 486.771 88.7179C486.772 88.6228 486.801 88.5299 486.856 88.452L493.256 79.245C493.308 79.1696 493.337 79.0805 493.338 78.9889C493.34 78.8972 493.314 78.8071 493.265 78.73L487.216 69.29C487.165 69.2102 487.139 69.1168 487.143 69.0222C487.147 68.9277 487.18 68.8365 487.237 68.761C487.294 68.6855 487.372 68.6292 487.462 68.5997C487.552 68.5702 487.649 68.5689 487.74 68.596L498.474 71.836C498.561 71.8624 498.655 71.8623 498.742 71.8356C498.83 71.8089 498.908 71.7568 498.966 71.686L506.075 63.016C506.135 62.9429 506.216 62.89 506.307 62.8644C506.398 62.8387 506.495 62.8415 506.584 62.8725C506.674 62.9034 506.752 62.9609 506.807 63.0373C506.863 63.1137 506.894 63.2054 506.897 63.3L507.133 74.51C507.134 74.601 507.163 74.6896 507.214 74.7645C507.266 74.8394 507.339 74.8973 507.424 74.931Z" fill="#1E1E1E"/>
|
||||||
|
<path d="M129.633 502.873L140.076 506.954C140.165 506.988 140.24 507.049 140.293 507.128C140.346 507.206 140.373 507.299 140.371 507.394C140.37 507.489 140.339 507.581 140.283 507.657C140.228 507.734 140.15 507.792 140.06 507.823L129.471 511.512C129.385 511.542 129.309 511.597 129.254 511.67C129.199 511.743 129.167 511.831 129.161 511.922L128.506 523.115C128.501 523.209 128.466 523.3 128.408 523.374C128.349 523.449 128.269 523.503 128.179 523.531C128.088 523.559 127.992 523.558 127.901 523.529C127.811 523.499 127.732 523.443 127.675 523.368L120.895 514.438C120.84 514.365 120.764 514.31 120.678 514.28C120.591 514.25 120.498 514.247 120.409 514.27L109.561 517.106C109.469 517.13 109.372 517.126 109.283 517.093C109.194 517.061 109.117 517.002 109.063 516.924C109.008 516.846 108.979 516.754 108.979 516.659C108.978 516.564 109.007 516.471 109.061 516.393L115.461 507.186C115.513 507.111 115.542 507.022 115.544 506.93C115.545 506.838 115.52 506.748 115.47 506.671L109.421 497.231C109.37 497.151 109.345 497.058 109.349 496.963C109.353 496.869 109.385 496.778 109.442 496.702C109.499 496.627 109.578 496.57 109.668 496.541C109.758 496.511 109.855 496.51 109.945 496.537L120.679 499.777C120.767 499.803 120.86 499.803 120.948 499.777C121.036 499.75 121.113 499.698 121.171 499.627L128.28 490.957C128.34 490.884 128.422 490.831 128.513 490.805C128.604 490.78 128.7 490.783 128.79 490.813C128.879 490.844 128.957 490.902 129.013 490.978C129.069 491.055 129.1 491.146 129.102 491.241L129.337 502.451C129.34 502.543 129.369 502.632 129.422 502.707C129.474 502.782 129.548 502.84 129.633 502.873Z" fill="#1E1E1E"/>
|
||||||
|
<path d="M470.524 485.822L448.972 467.033L442.34 494.112L470.524 485.822Z" stroke="white" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M362.208 470.901L375.471 452.665L354.471 449.902L362.208 470.901Z" stroke="white" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M379.893 405.691L392.601 420.612C392.601 420.612 405.311 399.06 403.653 399.06C401.995 399.06 379.893 405.691 379.893 405.691Z" stroke="white" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M395.365 313.402L412.496 323.902L413.602 298.482L395.365 313.402Z" stroke="white" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M530.207 312.85L505.891 293.508L498.707 322.797L530.207 312.85Z" stroke="white" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M596.522 312.85L598.18 335.508L571.654 322.797L596.522 312.85Z" stroke="white" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M567.786 387.455L539.602 369.771L530.76 394.086L567.786 387.455Z" stroke="white" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M314.129 343.797L303.629 368.665L281.523 349.323L314.129 343.797Z" stroke="white" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M208.578 376.955L196.972 392.981L183.709 377.507L208.578 376.955Z" stroke="white" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M145.025 346.008L156.078 358.165L135.078 365.349L145.025 346.008Z" stroke="white" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M408.629 512.901L403.103 483.059L377.129 502.401L408.629 512.901Z" stroke="white" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M610.339 270.85L571.102 285.771L579.944 268.087L610.339 270.85Z" stroke="white" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M471.075 317.823L455.049 336.06L446.207 318.376L471.075 317.823Z" stroke="white" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M354.471 301.797L359.998 318.929L336.787 316.166L354.471 301.797Z" stroke="white" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<g opacity="0.1">
|
||||||
|
<path d="M103.549 415.084C141.155 422.009 179.657 416.813 217.178 411.945C253.426 407.245 289.724 400.238 322.724 383.89C339.913 375.519 355.52 364.231 368.853 350.528C378.241 340.721 363.347 325.783 353.937 335.612C306.546 385.119 231.887 389.512 168.094 398.542C148.171 401.363 127.857 402.426 107.885 399.354C103.537 398.686 99.1147 400.454 97.8517 405.054C96.7627 409.019 99.1937 414.285 103.552 415.087L103.549 415.084Z" fill="white"/>
|
||||||
|
</g>
|
||||||
|
<g opacity="0.1">
|
||||||
|
<path d="M330.434 379.505C324.868 389.284 325.681 401.819 324.967 412.766C324.255 423.675 323.839 434.607 323.311 445.527L320.142 511.048C319.832 517.448 325.814 522.907 332.001 522.907C338.676 522.907 343.556 517.471 343.861 511.048L346.961 445.527C347.461 434.94 348.077 424.352 348.411 413.759C348.774 402.248 350.525 390.279 345.73 379.505C342.961 373.283 333.461 374.18 330.43 379.505H330.434Z" fill="white"/>
|
||||||
|
</g>
|
||||||
|
<g opacity="0.1">
|
||||||
|
<path d="M398.324 165.254C392.786 180.047 391.556 196.005 389.999 211.609C389.225 219.365 388.498 227.125 387.818 234.889C387.157 242.304 384.318 251.417 387.548 258.331C389.598 262.721 395.704 261.78 397.991 258.331C401.84 252.525 400.343 242.651 400.847 235.86C401.424 228.093 402.135 220.333 402.847 212.578C404.269 197.139 406.431 181.585 404.583 166.101C404.159 162.544 399.632 161.755 398.322 165.254H398.324Z" fill="white"/>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 38 KiB |
|
@ -0,0 +1,111 @@
|
||||||
|
<svg width="960" height="960" viewBox="0 0 960 960" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M250.029 874.046V614.307C250.028 610.716 248.601 607.273 246.062 604.734C243.523 602.195 240.08 600.768 236.489 600.767H73.456C69.8653 600.768 66.422 602.195 63.883 604.734C61.3439 607.273 59.9171 610.716 59.916 614.307V874.046C59.9189 877.636 61.3464 881.078 63.885 883.617C66.4236 886.156 69.8659 887.583 73.456 887.586H236.489C240.079 887.583 243.521 886.156 246.06 883.617C248.599 881.078 250.026 877.636 250.029 874.046ZM237.758 625.124C235.442 619.99 229.788 615.376 223.631 616.573C222.676 616.758 222.052 617.683 222.238 618.638C222.423 619.593 223.348 620.217 224.303 620.031C228.27 619.26 232.621 622.304 234.546 626.572C236.475 630.849 236.431 635.796 236.311 641.02V641.02L235.668 668.978C235.645 669.951 236.416 670.758 237.388 670.78C238.361 670.802 239.167 670.032 239.19 669.059L239.833 641.102C239.95 636.016 240.069 630.249 237.758 625.124Z" fill="#171717"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M501.632 834.612C512.068 730.193 512.005 624.991 501.444 520.584C448.876 522.737 396.295 523.613 343.701 523.214V523.543C342.973 540.878 342.292 558.679 341.599 576.785C338.22 665.148 334.563 760.765 323.809 844.762C326.78 845.654 329.845 846.511 332.968 847.298C350.889 851.827 370.97 854.285 388.714 850.727C391.148 850.25 393.554 849.642 395.924 848.907C397.077 835.854 398.218 822.406 399.382 808.68C406.459 725.253 414.409 631.534 431.331 553.644L431.765 553.738C421.712 652.083 416.734 750.881 416.851 849.738C420.417 850.842 424.022 851.84 427.651 852.709C443.807 856.624 460.433 858.257 477.043 857.559C478.805 857.477 480.598 857.359 482.398 857.136C487.742 856.467 492.944 854.881 496.432 850.924C500.27 846.567 501.057 840.39 501.632 834.612ZM491.502 546.215C491.441 545.244 490.605 544.506 489.634 544.567C488.663 544.628 487.925 545.464 487.986 546.435C493.041 627.087 494.245 707.856 491.6 788.744C491.568 789.717 492.33 790.531 493.303 790.563C494.275 790.594 495.089 789.832 495.121 788.86C497.77 707.86 496.564 626.978 491.502 546.215Z" fill="#171717"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M464.146 355.956C470.25 369.217 475.75 382.717 480.646 396.456L480.47 396.512C474.496 409.469 468.515 422.43 462.526 435.394C461.779 437.39 460.605 439.199 459.085 440.694C457.464 442.079 454.963 442.657 453.201 441.457C450.97 439.942 451.064 436.666 451.51 434C453.107 425.322 455.906 416.91 459.826 409.005C456.15 416.018 452.463 422.876 448.176 429.605C447.214 431.377 445.866 432.91 444.231 434.091C442.516 435.136 440.073 435.277 438.641 433.868C436.75 432.022 437.56 428.877 438.523 426.422C442.203 417.143 446.41 408.083 451.123 399.284C442.867 413.763 433.379 429.253 426.755 425.107C419.956 420.857 440.014 388.422 453.025 374.107C450.109 374.232 446.57 375.307 443.033 376.381C435.961 378.528 428.893 380.675 426.802 375.234C424.508 369.28 448.508 355.729 462.608 356.656L464.146 355.956ZM276.57 400.766C295.007 395.905 313.197 389.14 329.791 379.828L329.889 379.987L329.748 382.933C327.402 431.883 325.384 473.985 319.731 522.939C327.724 523.06 335.713 523.15 343.699 523.209C396.313 523.604 448.896 522.728 501.447 520.579C507.644 520.324 513.837 520.05 520.025 519.757C522.212 489.211 522.184 458.548 519.943 428.006L519.602 426.256C539.953 422.314 559.877 416.427 579.102 408.676C607.369 397.156 633.497 381.185 655.269 359.812C660.535 354.868 665.176 349.3 669.091 343.231C670.798 340.516 672.218 337.631 673.33 334.623C680.177 316.068 672.955 294.236 658.769 280.451C644.583 266.666 624.607 260.112 604.89 258.551C585.173 256.99 565.409 259.979 545.856 262.979C516.48 267.462 487.106 271.951 457.734 276.448C456.302 278.492 454.07 279.337 451.158 279.361C447.374 279.389 443.556 279.118 439.743 278.849C437.086 278.661 434.432 278.473 431.793 278.386C418.39 277.96 404.995 278.093 391.608 278.786L391.191 278.807C387.061 279.018 382.842 279.233 378.866 278.086C377.289 277.749 375.883 276.863 374.897 275.586C374.798 275.427 374.708 275.262 374.627 275.093L373.969 275.128C354.717 278.145 338.398 289.449 322.153 300.702C317.084 304.214 312.021 307.721 306.879 310.969C254.704 343.944 187.144 351.331 129.074 330.392C128.711 331.364 128.343 332.329 127.974 333.298C127.844 333.64 127.713 333.983 127.582 334.326C121.182 351.299 114.771 368.276 108.347 385.257C105.259 393.434 102.17 401.616 99.0814 409.801L98.4004 410.901C110.053 417.606 123.707 420.143 137.153 420.366C149.404 420.569 161.597 418.949 173.74 417.336C174.924 417.179 176.109 417.022 177.292 416.866C183.531 416.043 189.779 415.263 196.029 414.483C223.108 411.104 250.207 407.722 276.57 400.766ZM660.945 307.097C660.775 306.139 659.86 305.501 658.902 305.672C657.944 305.843 657.306 306.757 657.477 307.715C660.262 323.344 653.383 339.672 642.569 351.79C631.745 363.92 617.448 372.431 602.969 380.543C602.12 381.019 601.818 382.092 602.293 382.941C602.769 383.79 603.842 384.092 604.691 383.617C619.15 375.515 633.935 366.756 645.197 354.136C656.469 341.504 663.98 324.125 660.945 307.097Z" fill="white"/>
|
||||||
|
<path d="M626.368 69.7L852.662 123.578C852.662 123.578 821.988 245.427 821.162 247.917L711.272 222.232L697.838 219.085L604.807 197.348L531.035 134.357L626.368 69.7Z" fill="white"/>
|
||||||
|
<path d="M818.677 631.711L697.145 685.411L682.571 691.846L640.46 710.46L561.709 672.331C561.709 672.331 627.19 587.779 628.846 585.301C629.456 584.385 654.928 573.112 686.94 559.184C691.555 557.176 696.299 555.121 701.126 553.03C754.182 530.037 817.026 503.23 817.026 503.23L818.677 631.711Z" fill="#171717"/>
|
||||||
|
<path d="M516.11 882.126C518.632 883.716 520.607 886.04 521.77 888.784L520.27 889.301C512.789 897.028 500.506 896.828 489.831 895.548C468.075 892.937 446.647 888.084 425.888 881.069L424.561 881.386C423.876 878.582 423.58 875.697 423.681 872.813C423.857 866.355 425.618 860.048 427.381 853.824L427.651 852.709C443.808 856.624 460.434 858.257 477.043 857.559C478.805 857.477 480.602 857.359 482.398 857.136L482.539 858.228C488.38 866.424 496.29 872.924 505.462 877.064C509.052 878.685 512.833 879.942 516.11 882.126Z" fill="white"/>
|
||||||
|
<path d="M459.309 156.2C454.517 157.897 449.574 159.131 444.548 159.888C430.648 162.049 416.387 161.588 402.553 164.209C400.404 164.609 398.091 165.196 396.682 166.863C395.308 168.484 395.082 170.75 394.92 172.853C393.511 191.113 392.114 208.787 390.728 226.602L390.552 226.59C386.606 229.08 385.443 235.245 380.91 236.349C376.683 237.37 372.878 232.579 373.136 228.222C373.394 223.865 376.272 220.178 379.036 216.796C375.9 220.535 372.036 223.597 367.68 225.796C365.19 227.065 361.538 227.722 360.105 225.315C358.555 222.72 361.315 219.796 363.464 217.67C370.404 210.788 373.023 200.631 373.739 190.884C374.455 181.137 373.539 171.296 374.796 161.596C375.496 156.147 377.016 150.545 380.727 146.496C385.154 141.657 391.988 139.802 398.527 139.262C405.066 138.722 411.692 139.262 418.162 138.146C421.192 137.618 424.351 136.62 426.312 134.246C429.248 130.723 428.579 125.556 429.565 121.082C430.489 116.914 432.908 113.229 436.365 110.724C438.032 109.524 440.381 108.634 442.084 109.809C443.422 110.709 443.784 112.486 443.951 114.083C444.459 118.948 444.194 123.863 443.164 128.645C443.023 129.145 442.906 129.655 442.8 130.171C442.929 129.671 443.046 129.15 443.164 128.645C444.863 121.998 448.343 115.941 453.228 111.124C454.896 109.491 457.056 107.918 459.335 108.376C462.775 109.057 463.691 113.531 463.492 117.019C463.025 124.765 460.731 132.29 456.798 138.979L456.939 139.061C461.378 135.24 466.131 131.799 471.148 128.774C474.131 126.966 477.865 125.298 480.942 126.907C483.303 128.152 484.43 131.052 484.195 133.707C483.823 136.356 482.735 138.853 481.048 140.929C475.726 148.237 467.901 153.087 459.309 156.2Z" fill="#171717"/>
|
||||||
|
<path d="M457.735 276.451C456.303 278.495 454.071 279.34 451.159 279.364C444.736 279.411 438.218 278.6 431.794 278.389C418.394 277.954 404.999 278.087 391.609 278.789C387.346 279.001 382.977 279.271 378.867 278.089C377.289 277.752 375.883 276.866 374.898 275.589C374.798 275.43 374.708 275.265 374.628 275.096C374.15 273.838 373.945 272.493 374.028 271.15C374.004 267.98 374.11 264.468 376.294 262.178C378.432 259.935 381.849 259.63 384.937 259.571C386.018 259.548 387.098 259.548 388.179 259.548C400.944 259.642 413.697 261.427 426.438 260.722C428.176 260.628 429.914 260.487 431.652 260.322C436.902 259.822 442.139 259.065 447.4 258.631C450 258.419 452.755 258.314 455.057 259.531C460.118 262.209 460.457 269.231 458.897 274.058C458.641 274.913 458.249 275.721 457.735 276.451V276.451Z" fill="white"/>
|
||||||
|
<path d="M388.707 850.724L388.918 851.746C386.276 858.393 387.662 865.838 388.418 872.954C388.806 876.162 388.842 879.403 388.524 882.619L387.831 882.549C355.336 895.852 320.221 901.52 285.19 899.118C282.692 896.34 281.337 892.72 281.396 888.984C281.702 882.784 286.657 877.699 292.153 874.821C297.649 871.943 303.853 870.688 309.592 868.321C319.2 864.335 327.284 857.386 332.668 848.486L332.961 847.3C350.882 851.828 370.963 854.282 388.707 850.724Z" fill="white"/>
|
||||||
|
<path d="M218.746 888.42C227.459 888.268 229.597 900.61 224.007 905.73C222.728 906.857 221.218 907.691 219.583 908.173C217.948 908.656 216.228 908.776 214.542 908.525C212.267 908.25 210.169 907.162 208.635 905.46C202.869 898.625 211.159 888.549 218.746 888.42Z" fill="white"/>
|
||||||
|
<path d="M195.541 562.308C199.815 566.359 195.682 570.234 191.619 570.786C189.294 571.085 186.953 571.246 184.608 571.268C179.629 571.362 174.508 571.045 169.694 571.15C154.24 571.467 138.786 571.788 123.331 572.113C123.108 572.113 122.897 572.125 122.673 572.125C120.538 572.283 118.393 572.007 116.367 571.315C114.195 570.422 112.316 568.344 112.421 565.995C112.559 564.913 112.995 563.89 113.679 563.04C114.363 562.19 115.269 561.546 116.297 561.18C118.358 560.477 120.535 560.174 122.709 560.288C140.509 560.053 158.309 559.822 176.109 559.595C180.031 559.548 183.953 559.501 187.864 559.771C190.609 559.971 193.544 560.405 195.541 562.308Z" fill="white"/>
|
||||||
|
<path d="M89.569 888.42C98.282 888.268 100.42 900.61 94.83 905.73C93.551 906.857 92.0413 907.691 90.4064 908.173C88.7716 908.656 87.051 908.776 85.365 908.525C83.0905 908.25 80.9922 907.162 79.458 905.46C73.692 898.625 81.983 888.549 89.569 888.42Z" fill="white"/>
|
||||||
|
<path d="M448.34 165.183L425.722 168.283C427.624 181.671 429.524 195.066 431.422 208.469C428.158 208.13 424.862 208.268 421.639 208.88" stroke="#171717" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M415.093 178.782C414.551 178.141 413.864 177.639 413.089 177.315C412.314 176.992 411.473 176.858 410.636 176.923C409.799 176.988 408.99 177.252 408.274 177.691C407.559 178.131 406.958 178.734 406.521 179.451C406.709 179.134 406.908 178.817 407.108 178.488" stroke="#171717" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M443.949 181.835C443.556 181.172 443.01 180.611 442.358 180.201C441.705 179.791 440.964 179.542 440.195 179.475C439.427 179.408 438.654 179.526 437.94 179.818C437.227 180.11 436.593 180.568 436.092 181.154" stroke="#171717" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M414.777 226.554C413.51 226.643 412.238 226.467 411.042 226.036C409.846 225.606 408.754 224.931 407.834 224.055C406.914 223.178 406.187 222.12 405.699 220.947C405.211 219.773 404.973 218.511 405 217.241" stroke="#171717" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M431.477 258.249C432.377 253.681 431.524 248.949 431.548 244.286C431.572 239.623 432.804 234.481 436.633 231.803C439.991 229.466 444.559 229.572 448.059 227.458C452.78 224.616 454.377 218.615 455.316 213.19C458.581 194.401 458.957 175.259 459.309 156.199V155.906" stroke="#171717" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M388.18 259.247C389.037 248.197 389.88 237.369 390.728 226.601C392.114 208.786 393.511 191.112 394.92 172.852C395.085 170.752 395.308 168.483 396.682 166.862C398.091 165.195 400.404 164.608 402.553 164.208C416.387 161.59 430.644 162.048 444.553 159.887C449.579 159.13 454.522 157.896 459.314 156.199C467.914 153.087 475.731 148.237 481.051 140.921C482.738 138.845 483.826 136.348 484.198 133.699C484.433 131.045 483.306 128.145 480.945 126.899C477.868 125.29 474.134 126.958 471.151 128.766C466.134 131.791 461.381 135.232 456.942 139.053" stroke="#171717" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M443.162 128.638C444.192 123.856 444.457 118.941 443.949 114.076C443.784 112.476 443.42 110.706 442.082 109.802C440.382 108.627 438.03 109.52 436.363 110.717C432.906 113.222 430.487 116.907 429.563 121.075C428.577 125.549 429.246 130.716 426.31 134.239C424.349 136.612 421.19 137.61 418.16 138.139C411.69 139.255 405.067 138.715 398.525 139.255C391.983 139.795 385.15 141.655 380.725 146.489C377.014 150.54 375.499 156.142 374.794 161.589C373.538 171.289 374.442 181.13 373.737 190.877C373.032 200.624 370.402 210.777 363.462 217.663C361.313 219.789 358.553 222.713 360.103 225.308C361.536 227.715 365.188 227.058 367.678 225.789C372.034 223.59 375.898 220.528 379.034 216.789C376.274 220.171 373.397 223.859 373.134 228.215C372.871 232.571 376.681 237.363 380.908 236.342C385.441 235.242 386.608 229.073 390.55 226.583" stroke="#171717" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M443.161 128.638C443.02 129.138 442.903 129.648 442.797 130.164C442.926 129.659 443.043 129.143 443.161 128.638Z" stroke="#171717" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M456.547 139.4L456.794 138.977C460.728 132.288 463.022 124.763 463.488 117.017C463.688 113.529 462.771 109.055 459.331 108.374C457.052 107.916 454.892 109.489 453.224 111.122C448.339 115.939 444.86 121.997 443.16 128.643" stroke="#171717" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M457.734 276.451C458.249 275.719 458.641 274.909 458.897 274.051C460.459 269.224 460.118 262.202 455.057 259.524C452.757 258.303 449.996 258.408 447.4 258.624C442.139 259.058 436.9 259.81 431.652 260.315C429.914 260.479 428.176 260.62 426.438 260.715C413.697 261.42 400.944 259.635 388.179 259.541C387.098 259.541 386.018 259.541 384.937 259.564C381.849 259.623 378.437 259.928 376.294 262.171C374.11 264.461 374.004 267.971 374.028 271.143C373.945 272.486 374.15 273.831 374.628 275.089C374.708 275.258 374.798 275.423 374.898 275.582C375.883 276.859 377.289 277.745 378.867 278.082C382.977 279.268 387.346 278.998 391.609 278.782C404.995 278.089 418.39 277.956 431.794 278.382C438.218 278.593 444.736 279.404 451.159 279.357C454.07 279.34 456.3 278.5 457.734 276.451Z" stroke="#171717" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M373.969 275.124C348.709 279.082 328.499 297.307 306.879 310.965C254.704 343.94 187.144 351.327 129.079 330.388C128.585 331.704 128.092 333.007 127.587 334.322C121.187 351.303 114.775 368.28 108.352 385.253C105.275 393.438 102.187 401.619 99.0859 409.797" stroke="#171717" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M98.3994 410.9C110.048 417.6 123.718 420.142 137.152 420.365C150.586 420.588 163.974 418.615 177.291 416.865C210.56 412.473 244.122 409.326 276.569 400.765C295.006 395.904 313.196 389.139 329.79 379.827C342.437 372.842 354.039 364.114 364.256 353.9" stroke="#171717" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M125.89 333.688C125.322 333.307 124.843 332.807 124.486 332.224C124.13 331.64 123.903 330.986 123.823 330.306C123.663 328.951 123.726 327.578 124.011 326.243C125.667 316.155 129.212 306.397 130.001 296.215C130.228 294.423 130.104 292.604 129.636 290.86C129.442 289.972 129.013 289.152 128.394 288.486C127.775 287.82 126.99 287.332 126.118 287.072C125.247 286.812 124.322 286.789 123.44 287.008C122.557 287.226 121.749 287.676 121.099 288.312C119.758 289.49 118.636 290.898 117.787 292.469C109.555 306.009 104.624 321.346 101.688 336.906" stroke="#171717" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M99.7269 337.035C92.9159 333.3 80.3739 331.6 77.1999 331.281C73.5604 330.801 69.871 330.845 66.2439 331.41C62.5866 331.982 59.2104 333.716 56.6139 336.354C55.6663 337.285 55.0025 338.466 54.6999 339.76C54.5569 340.405 54.5894 341.076 54.794 341.704C54.9985 342.332 55.3676 342.893 55.8629 343.33C56.8142 343.931 57.9195 344.244 59.0449 344.23C59.2209 344.242 59.3859 344.253 59.5619 344.277C71.5519 345.287 83.5455 346.301 95.5429 347.318C96.2009 347.377 96.8429 347.424 97.5039 347.436C98.2347 347.476 98.9677 347.432 99.6889 347.307C100.377 347.211 101.039 346.98 101.637 346.627C102.236 346.274 102.759 345.806 103.176 345.251C105.516 341.815 103.508 339.114 99.7269 337.035Z" stroke="#171717" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M59.5289 344.751C57.6671 345.144 55.9094 345.926 54.3714 347.046C52.8334 348.166 51.5498 349.599 50.6049 351.251C49.6351 352.757 49.3014 354.585 49.6769 356.336C49.9468 357.121 50.3776 357.841 50.9417 358.449C51.5059 359.058 52.1908 359.542 52.9529 359.871C54.3654 360.48 55.862 360.873 57.3919 361.034C57.5099 361.057 57.6269 361.081 57.7439 361.092C66.8699 362.396 76.0914 362.911 85.3059 362.631C88.9109 362.548 92.5059 362.337 96.0859 362.02C97.9618 361.959 99.8115 361.561 101.547 360.846C102.442 360.532 103.23 359.97 103.817 359.225C104.405 358.481 104.769 357.584 104.866 356.64C104.964 355.697 104.79 354.745 104.367 353.896C103.943 353.047 103.287 352.336 102.475 351.846C100.94 350.794 99.2419 350.005 97.4489 349.509" stroke="#171717" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M57.1809 362.424C55.052 362.801 53.0279 363.627 51.2438 364.848C49.4597 366.069 47.9566 367.657 46.8349 369.505C45.8599 371.138 45.1909 373.169 45.9189 374.931C46.7529 376.974 49.0659 377.914 51.1799 378.548C62.8742 382.147 75.2906 382.721 87.2669 380.215C89.1713 379.855 91.0204 379.247 92.7669 378.407C93.334 378.115 93.8761 377.778 94.3879 377.397C95.4523 376.67 96.3131 375.684 96.8886 374.531C97.4641 373.377 97.7351 372.096 97.6759 370.809C97.3939 368.225 95.3389 366.109 92.9669 365.055C90.5366 364.127 87.9449 363.695 85.3449 363.786" stroke="#171717" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M106.949 384.725C102.279 382.615 97.4187 380.955 92.4336 379.769C92.2696 379.734 92.0936 379.687 91.9336 379.652" stroke="#171717" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M457.641 276.463C457.677 276.463 457.7 276.451 457.735 276.451C487.106 271.954 516.48 267.465 545.857 262.982C565.41 259.982 585.174 256.993 604.891 258.554C624.608 260.115 644.584 266.669 658.77 280.454C672.956 294.239 680.178 316.071 673.331 334.626C672.218 337.634 670.798 340.519 669.092 343.234C665.177 349.303 660.535 354.871 655.27 359.815C633.498 381.188 607.37 397.159 579.103 408.679C559.878 416.43 539.953 422.317 519.603 426.259C510.503 428.059 501.342 429.512 492.183 430.651" stroke="#171717" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M491.791 431.792C488.515 419.884 484.8 408.105 480.647 396.456C475.75 382.717 470.25 369.217 464.147 355.956C463.113 353.689 462.057 351.431 460.977 349.18C500.383 341.201 537.984 326.038 571.901 304.447" stroke="#171717" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M459.825 409.01C455.905 416.913 453.107 425.324 451.51 434C451.064 436.666 450.97 439.942 453.201 441.457C454.963 442.657 457.464 442.079 459.085 440.694C460.604 439.199 461.779 437.39 462.526 435.394C468.514 422.43 474.496 409.469 480.47 396.512" stroke="#171717" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M459.824 409.01C462.807 403.326 465.778 397.572 469.077 391.71C465.789 397.419 462.599 403.15 459.824 409.01Z" stroke="#171717" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M451.123 399.287C446.409 408.086 442.202 417.146 438.523 426.425C437.56 428.88 436.75 432.025 438.641 433.871C440.073 435.28 442.516 435.139 444.231 434.094C445.865 432.913 447.213 431.38 448.176 429.608C452.463 422.879 456.15 416.021 459.826 409.008" stroke="#171717" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M458.827 385.9C456.173 390.21 453.652 394.59 451.264 399.041" stroke="#171717" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M451.264 399.04C453.964 394.296 456.537 389.669 458.827 385.899L459.672 384.525" stroke="#171717" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M451.264 399.04L451.123 399.287" stroke="#171717" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M462.607 356.658C448.507 355.731 424.507 369.282 426.801 375.236C429.937 383.398 444.276 374.485 453.024 374.109C440.013 388.424 419.955 420.859 426.754 425.109C433.378 429.255 442.866 413.765 451.122 399.286" stroke="#171717" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M329.885 379.992C327.477 430.207 325.493 473.011 319.727 522.944C327.712 523.061 335.701 523.151 343.695 523.214C396.295 523.614 448.877 522.737 501.443 520.584C507.632 520.325 513.825 520.051 520.021 519.762C522.207 489.216 522.179 458.553 519.939 428.011" stroke="#171717" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M501.337 519.55C501.373 519.891 501.408 520.243 501.443 520.584C512.004 624.99 512.067 730.193 501.631 834.612C501.056 840.39 500.269 846.567 496.431 850.924C492.943 854.881 487.741 856.467 482.397 857.136C480.597 857.359 478.804 857.477 477.042 857.559C460.432 858.257 443.806 856.624 427.65 852.709C424.021 851.84 420.416 850.842 416.85 849.738C416.733 750.881 421.711 652.083 431.764 553.738" stroke="#171717" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M343.7 523.543C339.425 625.475 336.771 743.554 323.807 844.759C326.778 845.651 329.843 846.508 332.966 847.295C350.887 851.828 370.966 854.282 388.712 850.724C391.146 850.246 393.553 849.639 395.922 848.904C404.084 756.519 411.622 644.347 431.329 553.641C431.376 553.441 431.411 553.241 431.458 553.041" stroke="#171717" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M427.378 853.824C425.616 860.048 423.855 866.355 423.678 872.813C423.576 875.697 423.872 878.582 424.558 881.386C425.353 884.896 426.976 888.166 429.291 890.922C434.728 897.216 443.418 899.389 451.545 901.232C469.735 905.354 488.618 909.5 506.868 905.659C514.348 904.098 522.909 899.236 522.404 891.614C522.34 890.643 522.126 889.689 521.77 888.784C520.606 886.04 518.631 883.716 516.11 882.126C512.833 879.942 509.052 878.685 505.458 877.064C496.285 872.924 488.375 866.424 482.535 858.228" stroke="#171717" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M388.918 851.746C386.276 858.393 387.662 865.838 388.418 872.954C388.806 876.162 388.842 879.403 388.524 882.619C388.237 886.557 386.67 890.294 384.062 893.259C380.586 896.946 375.442 898.459 370.562 899.823C347.885 906.129 324.082 912.482 301.123 907.323C296.356 906.254 291.588 904.634 287.771 901.592C286.838 900.849 285.977 900.019 285.2 899.114C282.702 896.336 281.346 892.716 281.406 888.98C281.712 882.78 286.667 877.695 292.163 874.817C297.659 871.939 303.863 870.684 309.602 868.317C319.21 864.331 327.294 857.382 332.678 848.482" stroke="#171717" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M425.887 881.069C446.646 888.084 468.074 892.937 489.83 895.548C500.505 896.828 512.788 897.028 520.269 889.301" stroke="#171717" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M284.885 899.1C284.991 899.112 285.085 899.112 285.191 899.123C320.22 901.524 355.333 895.856 387.827 882.554" stroke="#171717" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M711.272 222.232L821.166 247.915C821.988 245.425 852.666 123.576 852.666 123.576L626.368 69.7L531.035 134.359L604.807 197.35L697.838 219.087L711.272 222.232Z" stroke="#171717" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M579.113 408.728L577.457 483.334L689.934 484.625L702.782 484.778L866.754 486.657L925.612 417.853L846.027 340.758L706.669 342.719L694.28 342.883L669.09 343.236L668.644 343.247" stroke="#171717" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M697.146 685.413L818.678 631.713L817.022 503.229C817.022 503.229 754.183 530.039 701.122 553.029C696.295 555.12 691.551 557.175 686.936 559.183C654.924 573.111 629.452 584.383 628.842 585.3C627.186 587.778 561.705 672.33 561.705 672.33L640.456 710.461L682.567 691.847L697.146 685.413Z" stroke="#171717" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M694.27 342.132C695.162 300.549 696.337 260.621 697.746 219.473" stroke="#171717" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M686.93 559.548C686.93 559.431 686.942 559.301 686.942 559.184C687.742 534.546 688.68 509.921 689.925 485.307" stroke="#171717" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M677.348 904.438C679.896 833.696 679.896 763.238 683.078 692.988" stroke="#171717" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M677.348 904.438C677.782 904.356 678.228 904.274 678.663 904.203C678.234 904.328 677.793 904.406 677.348 904.438V904.438Z" stroke="#171717" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M697.91 687.128C697.51 759.713 693.988 831.348 690.465 904.156C685.765 906.505 682.245 902.982 677.348 904.438" stroke="#171717" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M702.784 484.637V484.778C702.561 507.525 701.868 530.284 701.128 553.03C701.118 553.108 701.114 553.186 701.116 553.265" stroke="#171717" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M711.085 223.031C708.079 262.97 708.079 301.723 706.658 341.568" stroke="#171717" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M607.709 905.542L770.189 906.575" stroke="#171717" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M190.961 600.767H236.49C240.081 600.768 243.524 602.195 246.063 604.734C248.602 607.273 250.029 610.716 250.03 614.307V874.046C250.027 877.636 248.6 881.078 246.061 883.617C243.522 886.156 240.08 887.583 236.49 887.586H73.457C69.8669 887.583 66.4246 886.156 63.886 883.617C61.3474 881.078 59.9199 877.636 59.917 874.046V614.307C59.9181 610.716 61.3449 607.273 63.8839 604.734C66.423 602.195 69.8663 600.768 73.457 600.767H190.957H190.961Z" stroke="#171717" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M190.961 599.957C191.607 592.77 192.257 585.583 192.91 578.396" stroke="#171717" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M173.546 599.969C174.346 593.052 175.146 586.139 175.946 579.23" stroke="#171717" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M192.816 577.715C190.015 577.408 187.19 577.388 184.385 577.656C181.629 577.902 178.906 578.43 176.258 579.23" stroke="#171717" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M113.208 600.438C112.623 593.49 112.971 586.494 114.242 579.638" stroke="#171717" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M127.946 599.933C128.298 593.157 128.647 586.39 128.991 579.633" stroke="#171717" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M114.77 579.488C117.201 578.73 119.74 578.377 122.286 578.443C124.27 578.485 126.242 578.769 128.158 579.289" stroke="#171717" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M184.608 571.268C179.629 571.362 174.508 571.045 169.694 571.15C154.24 571.467 138.786 571.788 123.331 572.113C123.108 572.113 122.897 572.125 122.673 572.125C120.538 572.283 118.393 572.007 116.367 571.315C114.195 570.422 112.316 568.344 112.421 565.995C112.559 564.913 112.995 563.89 113.679 563.04C114.363 562.19 115.269 561.546 116.297 561.18C118.358 560.477 120.535 560.174 122.709 560.288C140.509 560.053 158.309 559.822 176.109 559.595C180.031 559.548 183.953 559.501 187.864 559.771C190.612 559.971 193.547 560.405 195.544 562.308C199.818 566.359 195.685 570.234 191.622 570.786C189.296 571.086 186.954 571.246 184.608 571.268V571.268Z" stroke="#171717" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M122.3 577.551L122.687 572.583" stroke="#171717" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M184.22 575.906L184.608 571.35" stroke="#171717" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M208.635 905.46C210.169 907.162 212.267 908.25 214.542 908.525C216.228 908.776 217.948 908.656 219.583 908.173C221.218 907.691 222.728 906.857 224.007 905.73C229.597 900.61 227.459 888.268 218.746 888.42C211.159 888.549 202.869 898.625 208.635 905.46Z" stroke="#171717" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M79.458 905.46C80.9922 907.162 83.0905 908.25 85.365 908.525C87.051 908.776 88.7716 908.656 90.4064 908.173C92.0413 907.691 93.551 906.857 94.83 905.73C100.42 900.61 98.282 888.268 89.569 888.42C81.983 888.549 73.692 898.625 79.458 905.46Z" stroke="#171717" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M303.235 249.022L280.555 223.172" stroke="#171717" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M277.826 250.043L303.126 223.094" stroke="#171717" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M285.668 148.443L273.234 134.766" stroke="white" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M271.992 148.443L281.939 134.766" stroke="white" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M391.312 98.75L376.406 82.572" stroke="#171717" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M374.148 97.659L389.014 82.684" stroke="#171717" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M533.107 221.8L523.16 213.1" stroke="#171717" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M520.674 225.535L531.865 210.614" stroke="#171717" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M74.4727 561.186C72.2049 555.241 68.2326 550.097 63.0537 546.4" stroke="#171717" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M60.8936 560.272L74.5746 545.354" stroke="#171717" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M636.312 111.141L799.199 148.443" stroke="#171717" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M645.016 410.803H831.528" stroke="#171717" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M648.746 440.231H744.903" stroke="#171717" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M691.021 162.121L785.521 182.015" stroke="#171717" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M756.922 569.96L657.449 613.479" stroke="white" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M778.061 598.558L636.312 664.459" stroke="white" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M507.424 74.931L517.867 79.013C517.955 79.0473 518.031 79.1079 518.083 79.1866C518.136 79.2653 518.164 79.3583 518.162 79.4531C518.16 79.5478 518.129 79.6398 518.074 79.7165C518.018 79.7932 517.94 79.8509 517.851 79.882L507.262 83.57C507.175 83.6005 507.1 83.6557 507.045 83.7288C506.99 83.8019 506.957 83.8896 506.952 83.981L506.301 95.174C506.295 95.2685 506.261 95.359 506.202 95.4334C506.144 95.5078 506.064 95.5624 505.973 95.59C505.883 95.6175 505.786 95.6167 505.696 95.5876C505.606 95.5584 505.527 95.5024 505.47 95.427L498.69 86.497C498.634 86.424 498.559 86.369 498.472 86.3391C498.386 86.3092 498.292 86.3057 498.204 86.329L487.356 89.165C487.264 89.1899 487.166 89.1859 487.077 89.1535C486.987 89.1211 486.91 89.0619 486.855 88.9839C486.801 88.906 486.771 88.8131 486.771 88.7179C486.772 88.6228 486.801 88.5299 486.856 88.452L493.256 79.245C493.308 79.1696 493.337 79.0805 493.338 78.9889C493.34 78.8972 493.314 78.8071 493.265 78.73L487.216 69.29C487.165 69.2102 487.139 69.1168 487.143 69.0222C487.147 68.9277 487.18 68.8365 487.237 68.761C487.294 68.6855 487.372 68.6292 487.462 68.5997C487.552 68.5702 487.649 68.5689 487.74 68.596L498.474 71.836C498.561 71.8624 498.655 71.8623 498.742 71.8356C498.83 71.8089 498.908 71.7568 498.966 71.686L506.075 63.016C506.135 62.9429 506.216 62.89 506.307 62.8644C506.398 62.8387 506.495 62.8415 506.584 62.8725C506.674 62.9034 506.752 62.9609 506.807 63.0373C506.863 63.1137 506.894 63.2054 506.897 63.3L507.133 74.51C507.134 74.601 507.163 74.6896 507.214 74.7645C507.266 74.8394 507.339 74.8973 507.424 74.931Z" fill="white"/>
|
||||||
|
<path d="M129.633 502.873L140.076 506.954C140.165 506.988 140.24 507.049 140.293 507.128C140.346 507.206 140.373 507.299 140.371 507.394C140.37 507.489 140.339 507.581 140.283 507.657C140.228 507.734 140.15 507.792 140.06 507.823L129.471 511.512C129.385 511.542 129.309 511.597 129.254 511.67C129.199 511.743 129.167 511.831 129.161 511.922L128.506 523.115C128.501 523.209 128.466 523.3 128.408 523.374C128.349 523.449 128.269 523.503 128.179 523.531C128.088 523.559 127.992 523.558 127.901 523.529C127.811 523.499 127.732 523.443 127.675 523.368L120.895 514.438C120.84 514.365 120.764 514.31 120.678 514.28C120.591 514.25 120.498 514.247 120.409 514.27L109.561 517.106C109.469 517.13 109.372 517.126 109.283 517.093C109.194 517.061 109.117 517.002 109.063 516.924C109.008 516.846 108.979 516.754 108.979 516.659C108.978 516.564 109.007 516.471 109.061 516.393L115.461 507.186C115.513 507.111 115.542 507.022 115.544 506.93C115.545 506.838 115.52 506.748 115.47 506.671L109.421 497.231C109.37 497.151 109.345 497.058 109.349 496.963C109.353 496.869 109.385 496.778 109.442 496.702C109.499 496.627 109.578 496.57 109.668 496.541C109.758 496.511 109.855 496.51 109.945 496.537L120.679 499.777C120.767 499.803 120.86 499.803 120.948 499.777C121.036 499.75 121.113 499.698 121.171 499.627L128.28 490.957C128.34 490.884 128.422 490.831 128.513 490.805C128.604 490.78 128.7 490.783 128.79 490.813C128.879 490.844 128.957 490.902 129.013 490.978C129.069 491.055 129.1 491.146 129.102 491.241L129.337 502.451C129.34 502.543 129.369 502.632 129.422 502.707C129.474 502.782 129.548 502.84 129.633 502.873V502.873Z" fill="white"/>
|
||||||
|
<path d="M470.524 485.822L448.972 467.033L442.34 494.112L470.524 485.822Z" stroke="#171717" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M362.208 470.901L375.471 452.665L354.471 449.902L362.208 470.901Z" stroke="#171717" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M379.893 405.691L392.601 420.612C392.601 420.612 405.311 399.06 403.653 399.06C401.995 399.06 379.893 405.691 379.893 405.691Z" stroke="#171717" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M395.365 313.402L412.496 323.902L413.602 298.482L395.365 313.402Z" stroke="#171717" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M530.207 312.85L505.891 293.508L498.707 322.797L530.207 312.85Z" stroke="#171717" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M596.522 312.85L598.18 335.508L571.654 322.797L596.522 312.85Z" stroke="#171717" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M567.786 387.455L539.602 369.771L530.76 394.086L567.786 387.455Z" stroke="#171717" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M314.129 343.797L303.629 368.665L281.523 349.323L314.129 343.797Z" stroke="#171717" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M208.578 376.955L196.972 392.981L183.709 377.507L208.578 376.955Z" stroke="#171717" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M145.025 346.008L156.078 358.165L135.078 365.349L145.025 346.008Z" stroke="#171717" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M408.629 512.901L403.103 483.059L377.129 502.401L408.629 512.901Z" stroke="#171717" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M610.339 270.85L571.102 285.771L579.944 268.087L610.339 270.85Z" stroke="#171717" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M471.075 317.823L455.049 336.06L446.207 318.376L471.075 317.823Z" stroke="#171717" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M354.471 301.797L359.998 318.929L336.787 316.166L354.471 301.797Z" stroke="#171717" stroke-width="3.523" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<g opacity="0.1">
|
||||||
|
<path d="M103.549 415.084C141.155 422.009 179.657 416.813 217.178 411.945C253.426 407.245 289.724 400.238 322.724 383.89C339.913 375.519 355.52 364.231 368.853 350.528C378.241 340.721 363.347 325.783 353.937 335.612C306.546 385.119 231.887 389.512 168.094 398.542C148.171 401.363 127.857 402.426 107.885 399.354C103.537 398.686 99.1147 400.454 97.8517 405.054C96.7627 409.019 99.1937 414.285 103.552 415.087L103.549 415.084Z" fill="#171717"/>
|
||||||
|
</g>
|
||||||
|
<g opacity="0.1">
|
||||||
|
<path d="M330.434 379.505C324.868 389.284 325.681 401.819 324.967 412.766C324.255 423.675 323.839 434.607 323.311 445.527L320.142 511.048C319.832 517.448 325.814 522.907 332.001 522.907C338.676 522.907 343.556 517.471 343.861 511.048L346.961 445.527C347.461 434.94 348.077 424.352 348.411 413.759C348.774 402.248 350.525 390.279 345.73 379.505C342.961 373.283 333.461 374.18 330.43 379.505H330.434Z" fill="#171717"/>
|
||||||
|
</g>
|
||||||
|
<g opacity="0.1">
|
||||||
|
<path d="M398.324 165.254C392.786 180.047 391.556 196.005 389.999 211.609C389.225 219.365 388.498 227.125 387.818 234.889C387.157 242.304 384.318 251.417 387.548 258.331C389.598 262.721 395.704 261.78 397.991 258.331C401.84 252.525 400.343 242.651 400.847 235.86C401.424 228.093 402.135 220.333 402.847 212.578C404.269 197.139 406.431 181.585 404.583 166.101C404.159 162.544 399.632 161.755 398.322 165.254H398.324Z" fill="#171717"/>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 38 KiB |
|
@ -0,0 +1,152 @@
|
||||||
|
<svg width="960" height="960" viewBox="0 0 960 960" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<mask id="mask0_1_5845" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="38" y="78" width="884" height="804">
|
||||||
|
<path d="M922 78H38V882H922V78Z" fill="white"/>
|
||||||
|
</mask>
|
||||||
|
<g mask="url(#mask0_1_5845)">
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M663.101 438.913C663.523 439.325 663.815 439.597 663.956 439.718C663.691 439.429 663.405 439.16 663.101 438.913ZM641.015 299.645C649.924 307.89 657.094 313.682 657.406 313.933C652.558 308.507 647.052 303.708 641.015 299.645ZM608.204 244.852C597.163 255.581 622.734 282.731 640.995 299.624C632.538 294.225 622.701 291.278 616.318 300.221C603.467 318.209 657.415 376.673 660.14 379.609C658.151 377.595 630.448 350.083 618.14 367.409C606.335 384.02 655.486 431.693 663.068 438.893C660.283 436.55 651.826 431.462 641.801 444.725C633.262 456.001 650.669 479.487 662.155 492.817C658.342 490.695 653.495 490.212 647.955 494.556C641.147 499.896 648.286 515.924 657.216 530.716C662.429 539.334 668.229 547.529 672.229 552.949C675.084 556.82 677.025 559.285 677.196 559.485C680.776 558.912 685.217 558.228 690.017 557.564C694.623 556.921 699.54 556.297 704.317 555.815C704.075 555 692.049 513.762 701.189 502.631C708.55 493.651 714.855 498.408 717.107 500.69C712.08 494.788 687.071 464.42 694.321 451.629C702.155 437.808 720.647 458.543 721.602 459.629C720.355 457.904 684.688 408.229 701.189 388.229C717.69 368.229 742.186 406.259 743.04 407.586C741.993 405.706 705.189 338.819 721.64 324.819C726.627 320.578 732.399 320.558 738.04 322.619C741.227 290.341 717.034 299.27 717.034 299.27C717.034 299.27 762.937 251.004 750.157 235.86C737.578 220.946 705.722 257.44 704.757 258.546C705.909 256.967 750.837 195.276 730.757 167.724C710.401 139.801 673.501 205.101 673.501 205.101C673.501 205.101 654.57 147.847 632.337 165.353C610.345 182.663 655.422 253.152 656.451 254.761L656.461 254.777C655.7 254.162 624.56 228.956 608.204 244.852ZM671.114 502.611C670.914 502.199 667.595 495.844 662.155 492.817C666.992 498.458 670.783 502.279 671.114 502.611ZM682.467 226.81C682.462 225.982 681.787 225.314 680.959 225.318C680.13 225.323 679.462 225.998 679.467 226.827L680.967 226.818C679.467 226.827 679.467 226.828 679.467 226.83V226.84V226.882L679.468 227.046L679.472 227.694C679.475 228.266 679.48 229.114 679.487 230.222C679.501 232.438 679.523 235.691 679.553 239.838C679.613 248.132 679.707 260.003 679.843 274.313C680.114 302.933 680.553 341.309 681.223 380.331C681.893 419.351 682.793 459.025 683.987 490.239C684.584 505.845 685.255 519.348 686.009 529.602C686.385 534.728 686.783 539.057 687.205 542.437C687.621 545.77 688.075 548.313 688.598 549.779C688.877 550.559 689.735 550.966 690.516 550.687C691.296 550.408 691.702 549.55 691.423 548.77C691.025 547.655 690.601 545.421 690.182 542.065C689.769 538.757 689.375 534.485 689 529.382C688.251 519.18 687.581 505.717 686.985 490.125C685.792 458.943 684.892 419.293 684.223 380.28C683.553 341.268 683.114 302.9 682.843 274.285C682.707 259.977 682.613 248.108 682.553 239.816C682.523 235.67 682.501 232.419 682.487 230.203C682.48 229.096 682.475 228.247 682.472 227.676L682.468 227.029L682.467 226.865V226.824V226.813C682.467 226.811 682.467 226.81 680.967 226.818L682.467 226.81Z" fill="white"/>
|
||||||
|
<path d="M778.615 540.212C783.441 542.857 786.125 545.793 786.125 548.88C786.125 549.051 786.115 549.223 786.095 549.393C785.595 554.682 777.237 559.479 763.823 563.109C760.565 559.388 755.265 556.723 748.722 554.853L748.48 554.169C756.967 551.113 768.692 546.195 776.797 539.961L778.615 540.212Z" fill="white"/>
|
||||||
|
<path d="M717.406 501.036C717.677 501.358 717.858 501.579 717.939 501.66C717.868 501.569 717.687 501.338 717.406 501.036ZM815.95 359.354C816.463 359.123 828.197 353.773 843.281 345.538C858.434 339.746 874.754 337.363 877.449 352.265C882.578 380.692 785.824 422.885 782.877 424.165C785.09 423.38 838.343 404.738 846.217 424.195C854.261 444.075 773.345 467.263 773.345 467.263C773.345 467.263 821.138 463.472 823.974 483.11C826.749 502.296 757.256 508.39 754.058 508.661C756.099 508.551 785.673 507.193 786.125 525.373C786.256 530.733 782.395 535.66 776.794 539.964C768.689 546.198 756.964 551.116 748.477 554.172C742.213 556.435 737.708 557.672 737.708 557.672L737.457 558.185C733.639 556.457 729.549 555.405 725.37 555.077C720.342 554.554 712.549 554.997 704.314 555.832C704.072 555.017 692.046 513.779 701.186 502.648C708.547 493.668 714.852 498.425 717.104 500.707C712.077 494.807 687.068 464.437 694.318 451.646C702.152 437.82 720.644 458.555 721.599 459.646C720.352 457.916 684.675 408.232 701.186 388.246C717.697 368.26 742.186 406.276 743.037 407.603C741.992 405.723 705.188 338.834 721.637 324.836C726.625 320.593 732.397 320.573 738.037 322.636C751.037 327.383 763.357 343.17 763.809 343.743C762.974 342.536 727.619 291.082 751.572 273.736C765.297 263.792 786.122 307.804 786.122 307.804C786.122 307.804 777.474 230.669 789.601 223.57C801.447 216.651 814.79 279.538 815.434 282.605C814.67 278.563 795.584 175.544 819.245 163.478C843.378 151.17 859.94 218.371 859.94 218.371C859.94 218.371 911.04 193.292 919.85 214.107C928.387 234.289 846.75 292.707 841.729 296.291C846.154 293.391 910.147 252.137 911.514 283.199C912.439 304.094 871.845 329.977 843.278 345.553C833.779 349.337 824.634 353.955 815.95 359.354Z" fill="#171717"/>
|
||||||
|
<path d="M642.834 533.586C647.128 532.57 651.844 531.675 656.912 530.911L657.212 530.73C662.42 539.348 668.222 547.543 672.225 552.963L671.651 553.385C662.712 554.36 656.91 555.275 656.91 555.275L642.834 533.586Z" fill="white"/>
|
||||||
|
<path d="M657.405 313.933C657.093 313.682 649.923 307.89 641.014 299.645C647.05 303.707 652.556 308.507 657.405 313.933Z" fill="white"/>
|
||||||
|
<path d="M578.348 494.57L533.581 497.808L533.39 497.818C533.129 489.241 532.665 479.839 532.062 470.095L557.935 467.26C557.935 467.26 584.543 480.915 578.348 494.57Z" fill="#171717"/>
|
||||||
|
<path d="M507.477 781.343H507.377C507.41 781.333 507.444 781.333 507.477 781.343Z" fill="white"/>
|
||||||
|
<path d="M562.893 522.976L531.309 566.276H456.062L500.076 522.976H504.875L505.851 522.936L504.875 500.774L503.689 473.974L498.651 360.427L506.817 352.262L521.729 356.525C521.729 356.525 528.857 418.206 532.065 470.092C532.665 479.836 533.132 489.238 533.393 497.815C533.665 507.438 533.675 516.026 533.323 522.915L534.68 522.975L562.893 522.976Z" fill="white"/>
|
||||||
|
<path d="M652.68 828.372L626.063 833.158V776.727L507.478 781.342C507.446 781.332 507.411 781.332 507.378 781.342L471.158 782.76C477.141 728.511 480.781 630.882 481.143 602.123C481.233 595.265 478.9 590.097 475.009 586.175L668.648 573.375L657.164 756.775L652.68 828.372Z" fill="white"/>
|
||||||
|
<path d="M481.142 602.124C480.78 630.883 477.142 728.512 471.157 782.761L78.8115 798.025V880.008H54.3115L40.4805 614.895L475.008 586.176C478.9 590.101 481.232 595.266 481.142 602.124Z" fill="white"/>
|
||||||
|
<path d="M542.661 120.516L528.242 197.772L497.231 160.858L456.305 197.772L437.964 170.381L420.578 195.881L406.378 177.188L396.178 184.498L401.407 113.426L542.661 120.516ZM481.454 149.737C481.454 147.537 480.802 145.387 479.58 143.557C478.358 141.728 476.621 140.303 474.589 139.461C472.556 138.619 470.32 138.398 468.163 138.827C466.005 139.256 464.023 140.316 462.468 141.871C460.912 143.426 459.853 145.408 459.423 147.566C458.994 149.723 459.214 151.959 460.056 153.992C460.898 156.024 462.324 157.761 464.153 158.983C465.982 160.205 468.132 160.858 470.332 160.858C471.792 160.858 473.239 160.571 474.588 160.012C475.938 159.453 477.164 158.634 478.197 157.601C479.23 156.569 480.049 155.343 480.608 153.993C481.166 152.644 481.454 151.197 481.454 149.737Z" fill="#171717"/>
|
||||||
|
<path d="M456.306 197.771L497.232 160.857L528.243 197.771L522.783 226.993L393.6 219.531L396.184 184.498L406.38 177.188L420.579 195.881L437.965 170.38L456.306 197.771Z" fill="white"/>
|
||||||
|
<path d="M375.852 327.821C376.435 328.213 388.522 336.388 384.137 345.177C379.643 354.166 367.526 338.43 367.526 338.43H367.516C368.25 328.263 368.783 315.664 369.135 305.186C369.517 314.638 386.983 314.886 386.983 322.934C386.983 330.757 376.435 327.982 375.852 327.821Z" fill="white"/>
|
||||||
|
<path d="M293.98 403.678C313.568 402.702 341.965 402.178 367.103 401.898C397.203 401.576 422.62 401.598 422.62 401.598L423.766 479.679L503.687 473.979L504.874 500.779L454.988 502.87L454.757 503.524C435.31 496.807 369.708 503.463 369.708 503.463L369.336 503.484L370.703 534.947L371.126 544.631C371.126 544.631 230.771 562.243 175.174 528.869L174.591 528.758L178.171 510.377C178.388 509.833 178.5 509.253 178.502 508.667C178.502 503.107 168.175 498.26 152.921 495.746L152.982 495.384C147.773 420.621 254.251 410 271.757 405.739C275.236 404.894 283.291 404.221 293.98 403.678Z" fill="#171717"/>
|
||||||
|
<path d="M299.872 335.08C299.832 335.15 299.782 335.271 299.711 335.422C299.782 335.271 299.842 335.15 299.872 335.08ZM299.572 335.704C298.472 337.785 294.836 343.617 289.737 340.681C283.583 337.131 293.518 327.428 296.837 318.438C300.156 309.448 294.474 297.138 294.237 286.492C294 275.846 339.547 275.139 339.547 275.139C339.547 275.139 333.987 256.446 339.547 255.028C344.937 253.651 350.005 268.08 350.307 268.945C350.085 267.799 345.269 242.72 351.966 242.72C358.834 242.72 362.142 267.799 362.142 267.799C362.142 267.799 364.032 237.753 369.714 238.939C375.234 240.096 372.258 266.29 372.087 267.739C372.358 266.439 377.155 243.787 388.88 247.93C400.946 252.194 369.714 287.679 369.714 287.679H369.643C369.694 285.579 369.714 284.371 369.714 284.371C369.714 284.371 309.371 284.371 309.381 309.922C309.391 317.022 309.881 328.776 310.336 341.235C310.004 342.321 306.626 352.698 299.446 351.735C292.833 350.847 298.113 338.77 299.571 335.701L299.572 335.704Z" fill="white"/>
|
||||||
|
<path d="M367.101 401.901C341.963 402.182 313.566 402.701 293.978 403.681C293.887 403.289 291.464 392.217 295.416 390.126C296.532 389.533 302.404 389.181 310.328 388.98C321.942 388.68 337.94 388.708 349.715 388.789C358.856 388.859 365.442 388.949 365.442 388.949L367.101 401.901Z" fill="#171717"/>
|
||||||
|
<path d="M230.701 262.479L234.612 288.03L228.438 288.382L212.49 289.277L203.018 289.81L206.567 262.479H230.701Z" fill="white"/>
|
||||||
|
<path d="M178.171 510.377C175.335 517.717 154.419 523.409 129.049 523.409C104.303 523.409 83.8004 517.989 80.1804 510.909L79.6074 508.666C79.6074 500.521 101.739 493.915 129.049 493.915C137.043 493.883 145.026 494.495 152.921 495.745C168.175 498.259 178.502 503.106 178.502 508.666L178.171 510.377Z" fill="white"/>
|
||||||
|
<path d="M174.591 528.759L163.391 586.347C163.391 591.576 149.091 595.809 131.455 595.809C113.819 595.809 99.5077 591.576 99.5077 586.347L95.5077 570.701H95.4977L87.0917 537.859L85.1207 530.197L80.1797 510.911C83.7997 517.99 104.303 523.411 129.049 523.411C154.419 523.411 175.335 517.719 178.171 510.379L174.591 528.759Z" fill="#171717"/>
|
||||||
|
<path d="M40.4805 614.895L54.3165 880.008H78.8115V798.025L471.157 782.761L507.377 781.343H507.477L626.062 776.728V833.159L652.68 828.373L657.164 756.778L668.647 573.375L475.008 586.176L40.4805 614.895Z" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M504.872 522.977H500.076L456.062 566.276H531.309L562.893 522.977H534.677" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M506.814 544.626L505.848 522.936L504.873 500.774L503.686 473.974L498.648 360.427L506.814 352.262C506.814 352.262 516.105 518.831 514.979 544.624" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M506.814 352.266L521.726 356.529C521.726 356.529 528.855 418.21 532.063 470.096C532.663 479.84 533.129 489.242 533.39 497.819C533.662 507.442 533.672 516.03 533.32 522.919C532.998 529.304 532.355 534.231 531.309 537.178" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M503.686 473.977L423.765 479.678L422.619 401.597L420.578 262.479L580.631 296.547V464.776L557.936 467.26L532.063 470.095H532.053" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M214.029 79.9316L218.282 259.996" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M228.438 288.382L234.612 288.03L230.701 262.479H206.567L203.018 289.81L212.49 289.277L228.438 288.382Z" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M212.49 289.276V300.931L215.557 300.77L227.704 300.136L230.821 299.975L228.438 288.381" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M215.556 300.771L214.028 308.021C214.028 308.021 194.148 308.856 197.104 330.978C200.06 353.1 225.504 351.792 225.853 351.677C226.202 351.562 249.513 348.128 246.678 329.435C243.843 310.742 227.864 307.784 227.864 307.784L227.743 300.927" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M218.814 309.92L214.5 326.009L208.939 336.175L218.16 332.153L224.908 338.428L230.82 331.801L239.106 333.108L222.715 309.92" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M175.174 528.87C230.774 562.244 371.126 544.627 371.126 544.627L370.703 534.943L369.336 503.48L368.763 490.448C368.763 490.448 223.642 512.338 216.15 482.403C212.49 467.732 230.821 463.941 230.821 463.941" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M422.62 401.6C422.62 401.6 397.2 401.58 367.103 401.9C341.965 402.181 313.568 402.7 293.98 403.68C283.291 404.223 275.236 404.896 271.757 405.741C254.251 410 147.773 420.621 152.982 495.384" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M293.98 403.689V403.679C293.889 403.287 291.466 392.215 295.418 390.124C296.534 389.531 302.406 389.179 310.33 388.978C321.944 388.678 337.942 388.706 349.717 388.787C358.858 388.857 365.444 388.947 365.444 388.947L367.101 401.901V401.911" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M349.717 388.786C349.717 388.786 342.97 373.33 350.783 367.649C358.596 361.968 362.377 366.231 365.444 355.582C366.269 352.727 366.953 346.311 367.516 338.428C368.25 328.261 368.783 315.662 369.135 305.184C369.386 297.723 369.547 291.338 369.635 287.677C369.686 285.577 369.706 284.369 369.706 284.369C369.706 284.369 309.363 284.369 309.373 309.92C309.383 317.02 309.873 328.774 310.328 341.233C311.002 359.926 311.595 380.218 310.318 388.733" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M375.852 327.821C376.435 327.982 386.983 330.757 386.983 322.934C386.983 314.89 369.517 314.634 369.135 305.186" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M367.525 338.43C367.525 338.43 379.642 354.166 384.136 345.177C388.521 336.388 376.436 328.213 375.851 327.821C375.846 327.815 375.839 327.811 375.831 327.811" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M299.57 335.701C298.112 338.767 292.832 350.844 299.439 351.729C306.619 352.694 309.997 342.317 310.329 341.229L310.359 341.139" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M299.872 335.08C299.832 335.15 299.782 335.271 299.711 335.422" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M299.711 335.422C299.782 335.271 299.842 335.15 299.872 335.08C299.886 335.062 299.896 335.042 299.902 335.02C299.908 335.015 299.912 335.008 299.913 335" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M299.71 335.422C299.668 335.496 299.631 335.573 299.6 335.653C299.588 335.668 299.578 335.686 299.57 335.704" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M350.3 268.945C350 268.08 344.93 253.651 339.54 255.028C333.98 256.446 339.54 275.139 339.54 275.139C339.54 275.139 293.999 275.839 294.23 286.492C294.461 297.145 300.143 309.449 296.83 318.438C293.517 327.427 283.576 337.131 289.73 340.681C294.83 343.617 298.469 337.781 299.565 335.704" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M372.08 267.738C372.251 266.29 375.227 240.097 369.707 238.939C364.025 237.753 362.135 267.798 362.135 267.798C362.135 267.798 358.827 242.719 351.959 242.719C345.259 242.719 350.078 267.798 350.3 268.944C350.305 268.957 350.308 268.971 350.31 268.984" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M369.707 287.678C369.707 287.678 400.939 252.193 388.873 247.929C377.148 243.786 372.351 266.441 372.08 267.738C372.075 267.758 372.071 267.779 372.07 267.799" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M333.267 356.528C333.267 356.528 319.31 359.605 317.65 349.902" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M334.221 338.428C334.221 338.428 342.021 340.68 342.969 338.428C343.917 336.176 341.079 299.503 341.079 299.503C341.079 299.503 355.508 296.908 359.772 299.503" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M352.201 309.92V316.305" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M328.068 309.92L329.013 316.305" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M40.4805 614.895L73.1205 560.947L87.0875 537.859" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M448.191 109.073L384.379 107.031V232.313L540.179 233.731L550.827 112.361L489.449 110.4L448.191 109.073Z" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M528.243 197.771L542.662 120.515L401.413 113.426L396.184 184.498L393.6 219.531L522.783 226.993L528.243 197.771Z" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M448.26 107.03L472.032 92.832L489.448 110.389" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M427.566 512.101C441.905 511.669 459.794 510.764 460.086 508.901C460.458 506.537 458.437 504.788 454.756 503.521C435.309 496.804 369.707 503.46 369.707 503.46" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M427.566 512.1C418.436 511.979 409.838 512.452 409.838 512.452C409.838 512.452 417.9 512.378 427.566 512.1Z" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M430.311 522.765C439.911 521.206 448.964 519.004 448.964 516.229C448.964 513.082 437.913 512.217 427.564 512.096" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M430.291 522.766C422.744 523.192 415.231 524.094 407.797 525.466C407.797 525.466 419.4 524.526 430.291 522.766Z" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M430.291 522.766H430.311" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M370.701 534.943C370.701 534.943 379.409 535.124 390.943 535.024C403.864 534.913 420.335 534.44 432.13 532.952C441.311 531.806 447.656 530.036 447.314 527.352C446.781 523.252 438.898 522.425 430.314 522.767" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M390.945 535.054L392.423 541.554C406.091 542.493 419.812 542.315 433.45 541.021C449.317 539.291 464.672 535.168 468.845 525.938C469.336 524.858 469.762 523.75 470.122 522.619C474.446 508.702 460.087 508.904 460.087 508.904" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M448.965 516.23C468.131 514.581 469.076 522.977 469.076 522.977C469.076 522.977 469.468 522.836 470.122 522.615C473.611 521.439 484.522 518.09 482.329 522.977C479.729 528.769 476.417 543.44 451.57 546.517C426.723 549.594 404.248 550.308 406.38 564.265C408.13 575.688 457.442 568.408 475.009 586.176C478.9 590.098 481.233 595.266 481.143 602.124C480.781 630.883 477.143 728.512 471.158 782.761C469.277 799.906 467.146 812.716 464.823 817.661C455.123 838.244 384.137 830.079 388.632 849.486C393.127 868.893 478.418 858.908 487.649 858.003C533.703 853.458 510.012 782.503 507.478 781.34C507.446 781.33 507.411 781.33 507.378 781.34" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M433.428 540.845L432.131 532.951" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M454.988 502.866L504.874 500.775" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M668.648 573.375L665.128 567.955L656.913 555.275L642.835 533.586L615.776 491.865L578.349 494.57L533.582 497.808" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M557.936 467.26C557.936 467.26 584.543 480.915 578.348 494.57" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M396.184 184.498L406.38 177.188L420.579 195.881L437.965 170.38L456.306 197.771L497.232 160.857L528.243 197.771" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M470.332 160.857C476.474 160.857 481.453 155.878 481.453 149.736C481.453 143.594 476.474 138.615 470.332 138.615C464.19 138.615 459.211 143.594 459.211 149.736C459.211 155.878 464.19 160.857 470.332 160.857Z" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M657.164 756.777C657.164 756.777 759.864 777.793 765.543 743.906C771.123 710.541 785.664 554.26 786.116 549.393C786.122 549.352 786.125 549.312 786.126 549.271" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M778.614 540.211C783.44 542.856 786.125 545.792 786.125 548.879C786.125 549.05 786.115 549.222 786.095 549.392C785.595 554.681 777.236 559.478 763.822 563.108C748.296 567.308 725.983 569.945 701.186 569.945C689.138 569.968 677.099 569.303 665.127 567.954L664.615 567.894" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M642.834 533.585C647.128 532.569 651.844 531.674 656.912 530.91" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M722.043 554.329C731.857 401.013 857.581 235.861 857.581 235.861" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M748.719 554.854C755.265 556.724 760.564 559.388 763.819 563.109" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M656.912 555.275C656.912 555.275 662.712 554.36 671.653 553.385" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M753.949 508.667C753.986 508.666 754.023 508.663 754.059 508.657C756.1 508.547 785.674 507.189 786.126 525.369C786.257 530.729 782.396 535.656 776.795 539.96C768.69 546.194 756.965 551.112 748.478 554.168C742.214 556.431 737.709 557.668 737.709 557.668" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M782.808 424.192C782.808 424.192 782.828 424.182 782.878 424.162C785.091 423.377 838.344 404.735 846.218 424.192C854.262 444.072 773.346 467.26 773.346 467.26C773.346 467.26 821.139 463.469 823.975 483.107C826.75 502.293 757.257 508.387 754.059 508.658" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M815.93 359.363C815.938 359.362 815.945 359.359 815.95 359.353C824.634 353.949 833.78 349.325 843.281 345.537C858.434 339.745 874.754 337.362 877.449 352.264C882.578 380.691 785.824 422.884 782.877 424.164" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M841.492 296.436C841.492 296.436 841.572 296.386 841.733 296.275C846.158 293.375 910.151 252.121 911.518 283.183C912.443 304.078 871.849 329.961 843.282 345.537C828.198 353.772 816.464 359.122 815.951 359.353" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M815.457 282.712C815.448 282.679 815.441 282.645 815.437 282.611V282.592C814.673 278.55 795.587 175.531 819.248 163.465C843.381 151.157 859.943 218.358 859.943 218.358C859.943 218.358 911.043 193.279 919.853 214.094C928.39 234.276 846.753 292.694 841.732 296.278" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M763.822 343.748C763.821 343.74 763.817 343.733 763.812 343.728C762.977 342.521 727.622 291.067 751.575 273.721C765.3 263.777 786.125 307.789 786.125 307.789C786.125 307.789 777.477 230.654 789.604 223.555C801.45 216.636 814.793 279.523 815.437 282.59" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M743.059 407.631C743.049 407.619 743.042 407.605 743.038 407.59C741.993 405.71 705.189 338.821 721.638 324.823C726.626 320.58 732.398 320.56 738.038 322.623C751.038 327.37 763.358 343.157 763.81 343.73" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M721.639 459.689C721.628 459.676 721.618 459.663 721.609 459.649L721.599 459.639C720.352 457.909 684.675 408.225 701.186 388.239C717.697 368.253 742.186 406.269 743.037 407.596" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M717.1 500.7C712.073 494.8 687.065 464.43 694.315 451.639C702.149 437.813 720.64 458.548 721.595 459.639" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M717.939 501.659C717.858 501.578 717.677 501.359 717.406 501.035" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M717.406 501.035C717.687 501.335 717.868 501.568 717.939 501.659C717.959 501.679 717.959 501.689 717.969 501.699L717.979 501.709" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M717.407 501.035L717.145 500.743C717.135 500.733 717.125 500.713 717.105 500.703" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M704.315 555.839V555.829C704.073 555.014 692.047 513.776 701.187 502.645C708.548 493.665 714.853 498.422 717.105 500.704" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M680.966 226.812C680.966 226.812 661.358 382.472 690.016 557.578" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M704.736 258.577L704.756 258.557V258.547C705.721 257.441 737.577 220.947 750.156 235.861C762.936 251.005 717.033 299.271 717.033 299.271C717.033 299.271 741.226 290.342 738.039 322.62" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M656.471 254.787L656.461 254.777C655.767 253.691 610.261 182.729 632.337 165.353C654.57 147.847 673.501 205.101 673.501 205.101C673.501 205.101 710.401 139.801 730.757 167.724C750.837 195.276 705.909 256.967 704.757 258.546" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M640.995 299.625C622.734 282.732 597.163 255.582 608.204 244.853C624.564 228.953 655.716 254.175 656.461 254.778" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M657.415 313.943L657.405 313.933C657.093 313.682 649.923 307.89 641.014 299.645" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M641.014 299.645C647.05 303.707 652.556 308.507 657.405 313.933" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M641.014 299.644C641.014 299.633 641.004 299.633 640.994 299.623" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M660.141 379.606C657.416 376.67 603.468 318.206 616.319 300.218C622.704 291.278 632.538 294.224 640.995 299.623" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M660.251 379.716L660.241 379.706L660.201 379.666" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M660.201 379.666L660.241 379.706" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M660.201 379.665C660.186 379.641 660.165 379.62 660.141 379.605" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M663.066 438.893C655.484 431.693 606.333 384.02 618.138 367.409C630.446 350.083 658.149 377.595 660.138 379.609" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M663.951 439.717C663.81 439.596 663.518 439.324 663.096 438.912" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M663.1 438.912C663.404 439.16 663.689 439.429 663.955 439.717C663.972 439.74 663.992 439.76 664.015 439.777C664.025 439.787 664.035 439.787 664.035 439.797L664.045 439.807" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M663.1 438.913C663.09 438.913 663.08 438.903 663.07 438.893" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M671.131 502.645C671.131 502.645 671.131 502.635 671.11 502.625C670.779 502.293 666.988 498.472 662.151 492.831C650.668 479.487 633.261 456.001 641.8 444.725C651.825 431.462 660.282 436.55 663.067 438.893" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M677.194 559.508V559.498C677.023 559.298 675.082 556.833 672.227 552.962C668.227 547.542 662.427 539.347 657.214 530.729C648.284 515.937 641.145 499.909 647.953 494.569C653.493 490.225 658.34 490.708 662.153 492.83C667.593 495.857 670.911 502.212 671.112 502.624" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M178.5 508.667C178.499 509.253 178.386 509.833 178.169 510.377C175.333 517.717 154.417 523.409 129.047 523.409C104.301 523.409 83.7985 517.989 80.1785 510.909C79.8062 510.22 79.6094 509.45 79.6055 508.666C79.6055 500.521 101.737 493.915 129.047 493.915C137.041 493.883 145.024 494.495 152.919 495.745C168.174 498.26 178.5 503.107 178.5 508.667Z" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M163.389 586.346C163.389 591.575 149.089 595.808 131.453 595.808C113.817 595.808 99.5059 591.575 99.5059 586.346" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M178.502 508.668L178.171 510.378L174.591 528.759L163.389 586.347" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M95.5039 570.701L99.5059 586.347" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M79.6074 508.668L80.1804 510.911L85.1174 530.197L87.0884 537.859L95.4944 570.701" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M85.1163 530.201C85.1163 530.201 50.8973 545.375 73.1163 560.951C77.7923 564.229 84.9613 567.527 95.4893 570.705H95.4993" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M668.648 560.946C668.648 560.946 672.016 560.332 677.195 559.498C680.775 558.925 685.219 558.241 690.016 557.577C694.621 556.934 699.538 556.31 704.316 555.828C712.551 554.993 720.344 554.55 725.372 555.073C729.551 555.401 733.641 556.453 737.459 558.181C742.185 560.493 743.18 563.108 743.18 563.108" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M178.501 316.306L152.982 309.918" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M182.793 342.332L134.527 375.693" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M208.938 364.336L203.023 378.532" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M243.836 360.143L264.42 388.046" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M254.127 339.426L267.259 342.331" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M254.127 313.113L277.196 298.352" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M289.325 229.016L285.089 235.359C284.961 235.551 284.778 235.699 284.564 235.783C284.349 235.867 284.114 235.884 283.891 235.83C283.667 235.777 283.464 235.656 283.311 235.484C283.158 235.312 283.061 235.097 283.034 234.868L282.128 227.294C282.102 227.073 282.01 226.865 281.866 226.696C281.721 226.527 281.529 226.404 281.315 226.343L273.973 224.275C273.752 224.213 273.555 224.084 273.408 223.906C273.262 223.728 273.174 223.51 273.156 223.28C273.138 223.051 273.19 222.821 273.306 222.623C273.422 222.424 273.596 222.265 273.805 222.168L280.729 218.968C280.931 218.875 281.101 218.724 281.217 218.534C281.333 218.344 281.391 218.124 281.382 217.901L281.082 210.279C281.073 210.05 281.135 209.822 281.259 209.629C281.383 209.435 281.564 209.284 281.776 209.195C281.989 209.107 282.223 209.086 282.448 209.135C282.673 209.184 282.878 209.301 283.034 209.469L288.218 215.064C288.37 215.228 288.566 215.343 288.783 215.394C288.999 215.446 289.226 215.433 289.435 215.355L296.59 212.713C296.806 212.634 297.041 212.622 297.264 212.681C297.487 212.739 297.686 212.863 297.836 213.038C297.986 213.213 298.078 213.43 298.101 213.659C298.124 213.888 298.076 214.118 297.964 214.319L294.245 220.979C294.137 221.174 294.088 221.396 294.106 221.618C294.124 221.84 294.207 222.052 294.345 222.226L299.069 228.215C299.211 228.396 299.294 228.616 299.307 228.845C299.32 229.074 299.263 229.301 299.144 229.497C299.024 229.693 298.847 229.847 298.638 229.94C298.428 230.033 298.194 230.059 297.969 230.015L290.486 228.536C290.267 228.492 290.039 228.514 289.832 228.6C289.626 228.685 289.449 228.83 289.325 229.016Z" fill="white"/>
|
||||||
|
<path d="M348.873 191.372L356.966 179.572" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M358.286 190.035L346.908 180.123" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M178.061 261.887L184.213 251" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M186.638 260.857L175.271 252.826" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M396.207 295.485C397.989 291.791 400.39 288.43 403.307 285.547" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M404.201 293.661C401.048 291.488 398.343 288.727 396.234 285.529" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M754.891 159.201L766.248 147.844" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M764.701 158.589L756.201 147.225" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M692.328 150.638L698.028 138.584" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M701.005 145.571L690.357 141.314" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M737.078 105.905L744.193 98.1133" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M744.301 106.627L735.785 97.3984" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M342.488 402.664C342.754 432.731 341.775 462.776 339.551 492.801" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M405.691 426.426L401.072 420.752" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M367.051 459.14L373.412 450.248" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M406.505 486.64L401.15 481.705" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M311.976 448.801L304.523 441.701" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M255.266 428.973L259.548 421.889" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M263.476 482.001L257 477.145" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M208.384 450.474C205.891 449.522 203.705 447.905 202.064 445.799" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M201.309 514.49L206.309 504.922" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M255.925 533.949C253.52 532.041 251.534 529.658 250.09 526.949" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M297.193 514.528L301.483 507.094" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M344.952 532.602L338.131 527.018" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M136.975 455.344C138.397 449.269 141.029 443.543 144.714 438.508C148.399 433.473 153.061 429.232 158.422 426.039" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<g opacity="0.1">
|
||||||
|
<path d="M365.9 286.957C355.755 283.423 341.694 285.13 331.706 288.719C321.264 292.471 313.193 298.766 310.185 309.839C306.907 321.91 309.928 335.153 310.574 347.381L311.59 366.62C311.821 371.001 313.785 379.764 309.662 382.883C307.933 384.19 304.962 384.576 302.981 385.438C300.788 386.322 298.82 387.683 297.219 389.423C293.773 393.268 293.346 399.348 289.203 402.518C285.356 405.462 279.527 405.688 274.93 406.469C268.455 407.569 261.996 408.791 255.543 410.012C232.165 414.438 208.023 420.054 187.999 433.532C168.074 446.944 153.038 466.897 150.548 491.232C150.133 495.293 154.314 498.779 158.095 498.779C162.521 498.779 165.226 495.305 165.642 491.232C167.607 472.018 181.142 455.844 196.642 445.351C215.219 432.779 237.447 427.468 259.112 422.971C269.888 420.734 281.464 419.471 291.591 414.971C295.751 413.12 299.502 410.328 301.691 406.25C302.655 404.232 303.446 402.137 304.056 399.987C305.286 396.332 306.496 395.837 309.976 394.657C320.269 391.167 323.538 383.557 323.268 373.109C322.946 360.678 322.097 348.275 322.037 335.837C321.977 323.456 319.887 311.237 328.866 301.3C333.217 296.487 339.434 294.285 345.66 293.158C352.354 291.946 359.383 292.758 365.89 290.843C366.305 290.714 366.669 290.456 366.927 290.107C367.185 289.757 367.324 289.334 367.324 288.899C367.324 288.464 367.185 288.041 366.927 287.691C366.669 287.342 366.305 287.084 365.89 286.956L365.9 286.957Z" fill="white"/>
|
||||||
|
</g>
|
||||||
|
<g opacity="0.1">
|
||||||
|
<path d="M171.41 528.433C172.81 530.265 173.417 531.921 175.361 533.402C176.91 534.505 178.626 535.354 180.444 535.915C184.508 537.361 188.731 538.539 192.901 539.631C200.683 541.669 208.524 543.469 216.424 545.031C233.23 548.369 250.216 550.719 267.297 552.068C301.025 554.817 334.968 553.195 368.28 547.244C372.221 546.532 374.367 541.783 373.42 538.191C372.295 533.925 368.287 532.524 364.367 533.051C332.512 537.416 300.283 538.382 268.223 535.932C252.286 534.661 236.439 532.439 220.767 529.277C212.879 527.686 205.047 525.85 197.26 523.822C193.666 522.884 190.07 521.958 186.471 521.042C184.619 520.458 182.713 520.065 180.781 519.869C178.151 519.751 176.552 520.786 174.212 521.551C171.656 522.385 169.461 525.891 171.412 528.436L171.41 528.433Z" fill="white"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 38 KiB |
|
@ -0,0 +1,154 @@
|
||||||
|
<svg width="960" height="960" viewBox="0 0 960 960" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<g clip-path="url(#clip0_510_1402)">
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M663.101 438.913C663.523 439.325 663.815 439.597 663.956 439.718C663.691 439.429 663.405 439.16 663.101 438.913ZM641.015 299.645C649.924 307.89 657.094 313.682 657.406 313.933C652.558 308.507 647.052 303.708 641.015 299.645ZM608.204 244.852C597.163 255.581 622.734 282.731 640.995 299.624C632.538 294.225 622.701 291.278 616.318 300.221C603.467 318.209 657.415 376.673 660.14 379.609C658.151 377.595 630.448 350.083 618.14 367.409C606.335 384.02 655.486 431.693 663.068 438.893C660.283 436.55 651.826 431.462 641.801 444.725C633.262 456.001 650.669 479.487 662.155 492.817C658.342 490.695 653.495 490.212 647.955 494.556C641.147 499.896 648.286 515.924 657.216 530.716C662.429 539.334 668.229 547.529 672.229 552.949C675.084 556.82 677.025 559.285 677.196 559.485C680.776 558.912 685.217 558.228 690.017 557.564C694.623 556.921 699.54 556.297 704.317 555.815C704.075 555 692.049 513.762 701.189 502.631C708.55 493.651 714.855 498.408 717.107 500.69C712.08 494.788 687.071 464.42 694.321 451.629C702.155 437.808 720.647 458.543 721.602 459.629C720.355 457.904 684.688 408.229 701.189 388.229C717.69 368.229 742.186 406.259 743.04 407.586C741.993 405.706 705.189 338.819 721.64 324.819C726.627 320.578 732.399 320.558 738.04 322.619C741.227 290.341 717.034 299.27 717.034 299.27C717.034 299.27 762.937 251.004 750.157 235.86C737.578 220.946 705.722 257.44 704.757 258.546C705.909 256.967 750.837 195.276 730.757 167.724C710.401 139.801 673.501 205.101 673.501 205.101C673.501 205.101 654.57 147.847 632.337 165.353C610.345 182.663 655.422 253.152 656.451 254.761L656.461 254.777L656.461 254.776C655.7 254.161 624.56 228.956 608.204 244.852ZM671.114 502.611C670.914 502.199 667.595 495.844 662.155 492.817C666.992 498.458 670.783 502.279 671.114 502.611ZM682.467 226.81C682.462 225.982 681.787 225.314 680.959 225.318C680.13 225.323 679.462 225.998 679.467 226.827L680.967 226.818C679.467 226.827 679.467 226.828 679.467 226.83L679.467 226.84L679.467 226.882L679.468 227.046L679.472 227.694C679.475 228.266 679.48 229.114 679.487 230.222C679.501 232.438 679.523 235.691 679.553 239.838C679.613 248.132 679.707 260.003 679.843 274.313C680.114 302.933 680.553 341.309 681.223 380.331C681.893 419.351 682.793 459.025 683.987 490.239C684.584 505.845 685.255 519.348 686.009 529.602C686.385 534.728 686.783 539.057 687.205 542.437C687.621 545.77 688.075 548.313 688.598 549.779C688.877 550.559 689.735 550.966 690.516 550.687C691.296 550.408 691.702 549.55 691.423 548.77C691.025 547.655 690.601 545.421 690.182 542.065C689.769 538.757 689.375 534.485 689 529.382C688.251 519.18 687.581 505.717 686.985 490.125C685.792 458.943 684.892 419.293 684.223 380.28C683.553 341.268 683.114 302.9 682.843 274.285C682.707 259.977 682.613 248.108 682.553 239.816C682.523 235.67 682.501 232.419 682.487 230.203C682.48 229.096 682.475 228.247 682.472 227.676L682.468 227.029L682.467 226.865L682.467 226.824L682.467 226.813C682.467 226.811 682.467 226.81 680.967 226.818L682.467 226.81Z" fill="#171717"/>
|
||||||
|
<path d="M778.615 540.212C783.441 542.857 786.125 545.793 786.125 548.88C786.125 549.051 786.115 549.223 786.095 549.393C785.595 554.682 777.237 559.479 763.823 563.109C760.565 559.388 755.265 556.723 748.722 554.853L748.48 554.169C756.967 551.113 768.692 546.195 776.797 539.961L778.615 540.212Z" fill="#171717"/>
|
||||||
|
<path d="M717.406 501.036C717.677 501.358 717.858 501.579 717.939 501.66C717.868 501.569 717.687 501.338 717.406 501.036ZM815.95 359.354C816.463 359.123 828.197 353.773 843.281 345.538C858.434 339.746 874.754 337.363 877.449 352.265C882.578 380.692 785.824 422.885 782.877 424.165C785.09 423.38 838.343 404.738 846.217 424.195C854.261 444.075 773.345 467.263 773.345 467.263C773.345 467.263 821.138 463.472 823.974 483.11C826.749 502.296 757.256 508.39 754.058 508.661C756.099 508.551 785.673 507.193 786.125 525.373C786.256 530.733 782.395 535.66 776.794 539.964C768.689 546.198 756.964 551.116 748.477 554.172C742.213 556.435 737.708 557.672 737.708 557.672L737.457 558.185C733.639 556.457 729.549 555.405 725.37 555.077C720.342 554.554 712.549 554.997 704.314 555.832C704.072 555.017 692.046 513.779 701.186 502.648C708.547 493.668 714.852 498.425 717.104 500.707C712.077 494.807 687.068 464.437 694.318 451.646C702.152 437.82 720.644 458.555 721.599 459.646C720.352 457.916 684.675 408.232 701.186 388.246C717.697 368.26 742.186 406.276 743.037 407.603C741.992 405.723 705.188 338.834 721.637 324.836C726.625 320.593 732.397 320.573 738.037 322.636C751.037 327.383 763.357 343.17 763.809 343.743C762.974 342.536 727.619 291.082 751.572 273.736C765.297 263.792 786.122 307.804 786.122 307.804C786.122 307.804 777.474 230.669 789.601 223.57C801.447 216.651 814.79 279.538 815.434 282.605C814.67 278.563 795.584 175.544 819.245 163.478C843.378 151.17 859.94 218.371 859.94 218.371C859.94 218.371 911.04 193.292 919.85 214.107C928.387 234.289 846.75 292.707 841.729 296.291C846.154 293.391 910.147 252.137 911.514 283.199C912.439 304.094 871.845 329.977 843.278 345.553C833.779 349.337 824.634 353.955 815.95 359.354V359.354Z" fill="white" fill-opacity="0.96"/>
|
||||||
|
<path d="M642.834 533.586C647.128 532.57 651.844 531.675 656.912 530.911L657.212 530.73C662.42 539.348 668.222 547.543 672.225 552.963L671.651 553.385C662.712 554.36 656.91 555.275 656.91 555.275L642.834 533.586Z" fill="#171717"/>
|
||||||
|
<path d="M657.405 313.933C657.093 313.682 649.923 307.89 641.014 299.645C647.05 303.707 652.556 308.507 657.405 313.933V313.933Z" fill="#171717"/>
|
||||||
|
<path d="M578.348 494.57L533.581 497.808L533.39 497.818C533.129 489.241 532.665 479.839 532.062 470.095L557.935 467.26C557.935 467.26 584.543 480.915 578.348 494.57Z" fill="white" fill-opacity="0.96"/>
|
||||||
|
<path d="M507.477 781.343H507.377C507.41 781.333 507.444 781.333 507.477 781.343Z" fill="#171717"/>
|
||||||
|
<path d="M562.893 522.976L531.309 566.276H456.062L500.076 522.976H504.875L505.851 522.936L504.875 500.774L503.689 473.974L498.651 360.427L506.817 352.262L521.729 356.525C521.729 356.525 528.857 418.206 532.065 470.092C532.665 479.836 533.132 489.238 533.393 497.815C533.665 507.438 533.675 516.026 533.323 522.915L534.68 522.975L562.893 522.976Z" fill="#171717"/>
|
||||||
|
<path d="M652.68 828.372L626.063 833.158V776.727L507.478 781.342C507.446 781.332 507.411 781.332 507.378 781.342L471.158 782.76C477.141 728.511 480.781 630.882 481.143 602.123C481.233 595.265 478.9 590.097 475.009 586.175L668.648 573.375L657.164 756.775L652.68 828.372Z" fill="#171717"/>
|
||||||
|
<path d="M481.142 602.124C480.78 630.883 477.142 728.512 471.157 782.761L78.8115 798.025V880.008H54.3115L40.4805 614.895L475.008 586.176C478.9 590.101 481.232 595.266 481.142 602.124Z" fill="#171717"/>
|
||||||
|
<path d="M542.661 120.516L528.242 197.772L497.231 160.858L456.305 197.772L437.964 170.381L420.578 195.881L406.378 177.188L396.178 184.498L401.407 113.426L542.661 120.516ZM481.454 149.737C481.454 147.537 480.802 145.387 479.58 143.557C478.358 141.728 476.621 140.303 474.589 139.461C472.556 138.619 470.32 138.398 468.163 138.827C466.005 139.256 464.023 140.316 462.468 141.871C460.912 143.426 459.853 145.408 459.423 147.566C458.994 149.723 459.214 151.959 460.056 153.992C460.898 156.024 462.324 157.761 464.153 158.983C465.982 160.205 468.132 160.858 470.332 160.858C471.792 160.858 473.239 160.571 474.588 160.012C475.938 159.453 477.164 158.634 478.197 157.601C479.23 156.569 480.049 155.343 480.608 153.993C481.166 152.644 481.454 151.197 481.454 149.737V149.737Z" fill="white" fill-opacity="0.96"/>
|
||||||
|
<path d="M456.306 197.771L497.232 160.857L528.243 197.771L522.783 226.993L393.6 219.531L396.184 184.498L406.38 177.188L420.579 195.881L437.965 170.38L456.306 197.771Z" fill="#171717"/>
|
||||||
|
<path d="M375.852 327.821C376.435 328.213 388.522 336.388 384.137 345.177C379.643 354.166 367.526 338.43 367.526 338.43H367.516C368.25 328.263 368.783 315.664 369.135 305.186C369.517 314.638 386.983 314.886 386.983 322.934C386.983 330.757 376.435 327.982 375.852 327.821Z" fill="#171717"/>
|
||||||
|
<path d="M293.98 403.678C313.568 402.702 341.965 402.178 367.103 401.898C397.203 401.576 422.62 401.598 422.62 401.598L423.766 479.679L503.687 473.979L504.874 500.779L454.988 502.87L454.757 503.524C435.31 496.807 369.708 503.463 369.708 503.463L369.336 503.484L370.703 534.947L371.126 544.631C371.126 544.631 230.771 562.243 175.174 528.869L174.591 528.758L178.171 510.377C178.388 509.833 178.5 509.253 178.502 508.667C178.502 503.107 168.175 498.26 152.921 495.746L152.982 495.384C147.773 420.621 254.251 410 271.757 405.739C275.236 404.894 283.291 404.221 293.98 403.678Z" fill="white" fill-opacity="0.96"/>
|
||||||
|
<path d="M299.872 335.08C299.832 335.15 299.782 335.271 299.711 335.422C299.782 335.271 299.842 335.15 299.872 335.08ZM299.572 335.704C298.472 337.785 294.836 343.617 289.737 340.681C283.583 337.131 293.518 327.428 296.837 318.438C300.156 309.448 294.474 297.138 294.237 286.492C294 275.846 339.547 275.139 339.547 275.139C339.547 275.139 333.987 256.446 339.547 255.028C344.937 253.651 350.005 268.08 350.307 268.945C350.085 267.799 345.269 242.72 351.966 242.72C358.834 242.72 362.142 267.799 362.142 267.799C362.142 267.799 364.032 237.753 369.714 238.939C375.234 240.096 372.258 266.29 372.087 267.739C372.358 266.439 377.155 243.787 388.88 247.93C400.946 252.194 369.714 287.679 369.714 287.679H369.643C369.694 285.579 369.714 284.371 369.714 284.371C369.714 284.371 309.371 284.371 309.381 309.922C309.391 317.022 309.881 328.776 310.336 341.235C310.004 342.321 306.626 352.698 299.446 351.735C292.833 350.847 298.113 338.77 299.571 335.701L299.572 335.704Z" fill="#171717"/>
|
||||||
|
<path d="M367.101 401.901C341.963 402.182 313.566 402.701 293.978 403.681C293.887 403.289 291.464 392.217 295.416 390.126C296.532 389.533 302.404 389.181 310.328 388.98C321.942 388.68 337.94 388.708 349.715 388.789C358.856 388.859 365.442 388.949 365.442 388.949L367.101 401.901Z" fill="white" fill-opacity="0.96"/>
|
||||||
|
<path d="M230.701 262.479L234.612 288.03L228.438 288.382L212.49 289.277L203.018 289.81L206.567 262.479H230.701Z" fill="#171717"/>
|
||||||
|
<path d="M178.171 510.377C175.335 517.717 154.419 523.409 129.049 523.409C104.303 523.409 83.8004 517.989 80.1804 510.909L79.6074 508.666C79.6074 500.521 101.739 493.915 129.049 493.915C137.043 493.883 145.026 494.495 152.921 495.745C168.175 498.259 178.502 503.106 178.502 508.666L178.171 510.377Z" fill="#171717"/>
|
||||||
|
<path d="M174.591 528.759L163.391 586.347C163.391 591.576 149.091 595.809 131.455 595.809C113.819 595.809 99.5077 591.576 99.5077 586.347L95.5077 570.701H95.4977L87.0917 537.859L85.1207 530.197L80.1797 510.911C83.7997 517.99 104.303 523.411 129.049 523.411C154.419 523.411 175.335 517.719 178.171 510.379L174.591 528.759Z" fill="white" fill-opacity="0.96"/>
|
||||||
|
<path d="M40.4805 614.895L54.3165 880.008H78.8115V798.025L471.157 782.761L507.377 781.343H507.477L626.062 776.728V833.159L652.68 828.373L657.164 756.778L668.647 573.375L475.008 586.176L40.4805 614.895Z" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M504.872 522.977H500.076L456.062 566.276H531.309L562.893 522.977H534.677" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M506.814 544.626L505.848 522.936L504.873 500.774L503.686 473.974L498.648 360.427L506.814 352.262C506.814 352.262 516.105 518.831 514.979 544.624" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M506.814 352.266L521.726 356.529C521.726 356.529 528.855 418.21 532.063 470.096C532.663 479.84 533.129 489.242 533.39 497.819C533.662 507.442 533.672 516.03 533.32 522.919C532.998 529.304 532.355 534.231 531.309 537.178" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M503.686 473.977L423.765 479.678L422.619 401.597L420.578 262.479L580.631 296.547V464.776L557.936 467.26L532.063 470.095H532.053" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M214.029 79.9316L218.282 259.996" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M228.438 288.382L234.612 288.03L230.701 262.479H206.567L203.018 289.81L212.49 289.277L228.438 288.382Z" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M212.49 289.276V300.931L215.557 300.77L227.704 300.136L230.821 299.975L228.438 288.381" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M215.556 300.771L214.028 308.021C214.028 308.021 194.148 308.856 197.104 330.978C200.06 353.1 225.504 351.792 225.853 351.677C226.202 351.562 249.513 348.128 246.678 329.435C243.843 310.742 227.864 307.784 227.864 307.784L227.743 300.927" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M218.814 309.92L214.5 326.009L208.939 336.175L218.16 332.153L224.908 338.428L230.82 331.801L239.106 333.108L222.715 309.92" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M175.174 528.87C230.774 562.244 371.126 544.627 371.126 544.627L370.703 534.943L369.336 503.48L368.763 490.448C368.763 490.448 223.642 512.338 216.15 482.403C212.49 467.732 230.821 463.941 230.821 463.941" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M422.62 401.6C422.62 401.6 397.2 401.58 367.103 401.9C341.965 402.181 313.568 402.7 293.98 403.68C283.291 404.223 275.236 404.896 271.757 405.741C254.251 410 147.773 420.621 152.982 495.384" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M293.98 403.689V403.679C293.889 403.287 291.466 392.215 295.418 390.124C296.534 389.531 302.406 389.179 310.33 388.978C321.944 388.678 337.942 388.706 349.717 388.787C358.858 388.857 365.444 388.947 365.444 388.947L367.101 401.901V401.911" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M349.717 388.786C349.717 388.786 342.97 373.33 350.783 367.649C358.596 361.968 362.377 366.231 365.444 355.582C366.269 352.727 366.953 346.311 367.516 338.428C368.25 328.261 368.783 315.662 369.135 305.184C369.386 297.723 369.547 291.338 369.635 287.677C369.686 285.577 369.706 284.369 369.706 284.369C369.706 284.369 309.363 284.369 309.373 309.92C309.383 317.02 309.873 328.774 310.328 341.233C311.002 359.926 311.595 380.218 310.318 388.733" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M375.852 327.821C376.435 327.982 386.983 330.757 386.983 322.934C386.983 314.89 369.517 314.634 369.135 305.186" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M367.525 338.43C367.525 338.43 379.642 354.166 384.136 345.177C388.521 336.388 376.436 328.213 375.851 327.821C375.846 327.815 375.839 327.811 375.831 327.811" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M299.57 335.701C298.112 338.767 292.832 350.844 299.439 351.729C306.619 352.694 309.997 342.317 310.329 341.229L310.359 341.139" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M299.872 335.08C299.832 335.15 299.782 335.271 299.711 335.422" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M299.711 335.422C299.782 335.271 299.842 335.15 299.872 335.08C299.886 335.062 299.896 335.042 299.902 335.02C299.908 335.015 299.912 335.008 299.913 335" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M299.71 335.422C299.668 335.496 299.631 335.573 299.6 335.653C299.588 335.668 299.578 335.686 299.57 335.704" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M350.3 268.945C350 268.08 344.93 253.651 339.54 255.028C333.98 256.446 339.54 275.139 339.54 275.139C339.54 275.139 293.999 275.839 294.23 286.492C294.461 297.145 300.143 309.449 296.83 318.438C293.517 327.427 283.576 337.131 289.73 340.681C294.83 343.617 298.469 337.781 299.565 335.704" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M372.08 267.738C372.251 266.29 375.227 240.097 369.707 238.939C364.025 237.753 362.135 267.798 362.135 267.798C362.135 267.798 358.827 242.719 351.959 242.719C345.259 242.719 350.078 267.798 350.3 268.944C350.305 268.957 350.308 268.971 350.31 268.984" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M369.707 287.678C369.707 287.678 400.939 252.193 388.873 247.929C377.148 243.786 372.351 266.441 372.08 267.738C372.075 267.758 372.071 267.779 372.07 267.799" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M333.267 356.528C333.267 356.528 319.31 359.605 317.65 349.902" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M334.221 338.428C334.221 338.428 342.021 340.68 342.969 338.428C343.917 336.176 341.079 299.503 341.079 299.503C341.079 299.503 355.508 296.908 359.772 299.503" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M352.201 309.92V316.305" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M328.068 309.92L329.013 316.305" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M40.4805 614.895L73.1205 560.947L87.0875 537.859" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M448.191 109.073L384.379 107.031V232.313L540.179 233.731L550.827 112.361L489.449 110.4L448.191 109.073Z" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M528.243 197.771L542.662 120.515L401.413 113.426L396.184 184.498L393.6 219.531L522.783 226.993L528.243 197.771Z" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M448.26 107.03L472.032 92.832L489.448 110.389" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M427.566 512.101C441.905 511.669 459.794 510.764 460.086 508.901C460.458 506.537 458.437 504.788 454.756 503.521C435.309 496.804 369.707 503.46 369.707 503.46" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M427.566 512.1C418.436 511.979 409.838 512.452 409.838 512.452C409.838 512.452 417.9 512.378 427.566 512.1Z" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M430.311 522.765C439.911 521.206 448.964 519.004 448.964 516.229C448.964 513.082 437.913 512.217 427.564 512.096" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M430.291 522.766C422.744 523.192 415.231 524.094 407.797 525.466C407.797 525.466 419.4 524.526 430.291 522.766Z" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M430.291 522.766H430.311" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M370.701 534.943C370.701 534.943 379.409 535.124 390.943 535.024C403.864 534.913 420.335 534.44 432.13 532.952C441.311 531.806 447.656 530.036 447.314 527.352C446.781 523.252 438.898 522.425 430.314 522.767" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M390.945 535.054L392.423 541.554C406.091 542.493 419.812 542.315 433.45 541.021C449.317 539.291 464.672 535.168 468.845 525.938C469.336 524.858 469.762 523.75 470.122 522.619C474.446 508.702 460.087 508.904 460.087 508.904" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M448.965 516.23C468.131 514.581 469.076 522.977 469.076 522.977C469.076 522.977 469.468 522.836 470.122 522.615C473.611 521.439 484.522 518.09 482.329 522.977C479.729 528.769 476.417 543.44 451.57 546.517C426.723 549.594 404.248 550.308 406.38 564.265C408.13 575.688 457.442 568.408 475.009 586.176C478.9 590.098 481.233 595.266 481.143 602.124C480.781 630.883 477.143 728.512 471.158 782.761C469.277 799.906 467.146 812.716 464.823 817.661C455.123 838.244 384.137 830.079 388.632 849.486C393.127 868.893 478.418 858.908 487.649 858.003C533.703 853.458 510.012 782.503 507.478 781.34C507.446 781.33 507.411 781.33 507.378 781.34" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M433.428 540.845L432.131 532.951" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M454.988 502.866L504.874 500.775" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M668.648 573.375L665.128 567.955L656.913 555.275L642.835 533.586L615.776 491.865L578.349 494.57L533.582 497.808" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M557.936 467.26C557.936 467.26 584.543 480.915 578.348 494.57" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M396.184 184.498L406.38 177.188L420.579 195.881L437.965 170.38L456.306 197.771L497.232 160.857L528.243 197.771" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M470.332 160.857C476.474 160.857 481.453 155.878 481.453 149.736C481.453 143.594 476.474 138.615 470.332 138.615C464.19 138.615 459.211 143.594 459.211 149.736C459.211 155.878 464.19 160.857 470.332 160.857Z" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M657.164 756.777C657.164 756.777 759.864 777.793 765.543 743.906C771.123 710.541 785.664 554.26 786.116 549.393C786.122 549.352 786.125 549.312 786.126 549.271" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M778.614 540.211C783.44 542.856 786.125 545.792 786.125 548.879C786.125 549.05 786.115 549.222 786.095 549.392C785.595 554.681 777.236 559.478 763.822 563.108C748.296 567.308 725.983 569.945 701.186 569.945C689.138 569.968 677.099 569.303 665.127 567.954L664.615 567.894" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M642.834 533.585C647.128 532.569 651.844 531.674 656.912 530.91" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M722.043 554.329C731.857 401.013 857.581 235.861 857.581 235.861" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M748.719 554.854C755.265 556.724 760.564 559.388 763.819 563.109" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M656.912 555.275C656.912 555.275 662.712 554.36 671.653 553.385" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M753.949 508.667C753.986 508.666 754.023 508.663 754.059 508.657C756.1 508.547 785.674 507.189 786.126 525.369C786.257 530.729 782.396 535.656 776.795 539.96C768.69 546.194 756.965 551.112 748.478 554.168C742.214 556.431 737.709 557.668 737.709 557.668" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M782.808 424.192C782.808 424.192 782.828 424.182 782.878 424.162C785.091 423.377 838.344 404.735 846.218 424.192C854.262 444.072 773.346 467.26 773.346 467.26C773.346 467.26 821.139 463.469 823.975 483.107C826.75 502.293 757.257 508.387 754.059 508.658" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M815.93 359.363C815.938 359.362 815.945 359.359 815.95 359.353C824.634 353.949 833.78 349.325 843.281 345.537C858.434 339.745 874.754 337.362 877.449 352.264C882.578 380.691 785.824 422.884 782.877 424.164" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M841.492 296.436C841.492 296.436 841.572 296.386 841.733 296.275C846.158 293.375 910.151 252.121 911.518 283.183C912.443 304.078 871.849 329.961 843.282 345.537C828.198 353.772 816.464 359.122 815.951 359.353" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M815.457 282.712C815.448 282.679 815.441 282.645 815.437 282.611V282.592C814.673 278.55 795.587 175.531 819.248 163.465C843.381 151.157 859.943 218.358 859.943 218.358C859.943 218.358 911.043 193.279 919.853 214.094C928.39 234.276 846.753 292.694 841.732 296.278" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M763.822 343.748C763.821 343.74 763.817 343.733 763.812 343.728C762.977 342.521 727.622 291.067 751.575 273.721C765.3 263.777 786.125 307.789 786.125 307.789C786.125 307.789 777.477 230.654 789.604 223.555C801.45 216.636 814.793 279.523 815.437 282.59" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M743.059 407.631C743.049 407.619 743.042 407.605 743.038 407.59C741.993 405.71 705.189 338.821 721.638 324.823C726.626 320.58 732.398 320.56 738.038 322.623C751.038 327.37 763.358 343.157 763.81 343.73" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M721.639 459.689C721.628 459.676 721.618 459.663 721.609 459.649L721.599 459.639C720.352 457.909 684.675 408.225 701.186 388.239C717.697 368.253 742.186 406.269 743.037 407.596" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M717.1 500.7C712.073 494.8 687.065 464.43 694.315 451.639C702.149 437.813 720.64 458.548 721.595 459.639" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M717.939 501.659C717.858 501.578 717.677 501.359 717.406 501.035" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M717.406 501.035C717.687 501.335 717.868 501.568 717.939 501.659C717.959 501.679 717.959 501.689 717.969 501.699L717.979 501.709" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M717.407 501.035L717.145 500.743C717.135 500.733 717.125 500.713 717.105 500.703" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M704.315 555.839V555.829C704.073 555.014 692.047 513.776 701.187 502.645C708.548 493.665 714.853 498.422 717.105 500.704" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M680.966 226.812C680.966 226.812 661.358 382.472 690.016 557.578" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M704.736 258.577L704.756 258.557V258.547C705.721 257.441 737.577 220.947 750.156 235.861C762.936 251.005 717.033 299.271 717.033 299.271C717.033 299.271 741.226 290.342 738.039 322.62" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M656.471 254.787L656.461 254.777C655.767 253.691 610.261 182.729 632.337 165.353C654.57 147.847 673.501 205.101 673.501 205.101C673.501 205.101 710.401 139.801 730.757 167.724C750.837 195.276 705.909 256.967 704.757 258.546" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M640.995 299.625C622.734 282.732 597.163 255.582 608.204 244.853C624.564 228.953 655.716 254.175 656.461 254.778" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M657.415 313.943L657.405 313.933C657.093 313.682 649.923 307.89 641.014 299.645" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M641.014 299.645C647.05 303.707 652.556 308.507 657.405 313.933" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M641.014 299.644C641.014 299.633 641.004 299.633 640.994 299.623" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M660.141 379.606C657.416 376.67 603.468 318.206 616.319 300.218C622.704 291.278 632.538 294.224 640.995 299.623" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M660.251 379.716L660.241 379.706L660.201 379.666" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M660.201 379.666L660.241 379.706" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M660.201 379.665C660.186 379.641 660.165 379.62 660.141 379.605" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M663.066 438.893C655.484 431.693 606.333 384.02 618.138 367.409C630.446 350.083 658.149 377.595 660.138 379.609" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M663.951 439.717C663.81 439.596 663.518 439.324 663.096 438.912" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M663.1 438.912C663.404 439.16 663.689 439.429 663.955 439.717C663.972 439.74 663.992 439.76 664.015 439.777C664.025 439.787 664.035 439.787 664.035 439.797L664.045 439.807" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M663.1 438.913C663.09 438.913 663.08 438.903 663.07 438.893" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M671.131 502.645C671.131 502.645 671.131 502.635 671.11 502.625C670.779 502.293 666.988 498.472 662.151 492.831C650.668 479.487 633.261 456.001 641.8 444.725C651.825 431.462 660.282 436.55 663.067 438.893" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M677.194 559.508V559.498C677.023 559.298 675.082 556.833 672.227 552.962C668.227 547.542 662.427 539.347 657.214 530.729C648.284 515.937 641.145 499.909 647.953 494.569C653.493 490.225 658.34 490.708 662.153 492.83C667.593 495.857 670.911 502.212 671.112 502.624" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M178.5 508.667C178.499 509.253 178.386 509.833 178.169 510.377C175.333 517.717 154.417 523.409 129.047 523.409C104.301 523.409 83.7985 517.989 80.1785 510.909C79.8062 510.22 79.6094 509.45 79.6055 508.666C79.6055 500.521 101.737 493.915 129.047 493.915C137.041 493.883 145.024 494.495 152.919 495.745C168.174 498.26 178.5 503.107 178.5 508.667Z" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M163.389 586.346C163.389 591.575 149.089 595.808 131.453 595.808C113.817 595.808 99.5059 591.575 99.5059 586.346" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M178.502 508.668L178.171 510.378L174.591 528.759L163.389 586.347" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M95.5039 570.701L99.5059 586.347" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M79.6074 508.668L80.1804 510.911L85.1174 530.197L87.0884 537.859L95.4944 570.701" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M85.1163 530.201C85.1163 530.201 50.8973 545.375 73.1163 560.951C77.7923 564.229 84.9613 567.527 95.4893 570.705H95.4993" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M668.648 560.946C668.648 560.946 672.016 560.332 677.195 559.498C680.775 558.925 685.219 558.241 690.016 557.577C694.621 556.934 699.538 556.31 704.316 555.828C712.551 554.993 720.344 554.55 725.372 555.073C729.551 555.401 733.641 556.453 737.459 558.181C742.185 560.493 743.18 563.108 743.18 563.108" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M178.501 316.306L152.982 309.918" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M182.793 342.332L134.527 375.693" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M208.938 364.336L203.023 378.532" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M243.836 360.143L264.42 388.046" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M254.127 339.426L267.259 342.331" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M254.127 313.113L277.196 298.352" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M289.325 229.016L285.089 235.359C284.961 235.551 284.778 235.699 284.564 235.783C284.349 235.867 284.114 235.884 283.891 235.83C283.667 235.777 283.464 235.656 283.311 235.484C283.158 235.312 283.061 235.097 283.034 234.868L282.128 227.294C282.102 227.073 282.01 226.865 281.866 226.696C281.721 226.527 281.529 226.404 281.315 226.343L273.973 224.275C273.752 224.213 273.555 224.084 273.408 223.906C273.262 223.728 273.174 223.51 273.156 223.28C273.138 223.051 273.19 222.821 273.306 222.623C273.422 222.424 273.596 222.265 273.805 222.168L280.729 218.968C280.931 218.875 281.101 218.724 281.217 218.534C281.333 218.344 281.391 218.124 281.382 217.901L281.082 210.279C281.073 210.05 281.135 209.822 281.259 209.629C281.383 209.435 281.564 209.284 281.776 209.195C281.989 209.107 282.223 209.086 282.448 209.135C282.673 209.184 282.878 209.301 283.034 209.469L288.218 215.064C288.37 215.228 288.566 215.343 288.783 215.394C288.999 215.446 289.226 215.433 289.435 215.355L296.59 212.713C296.806 212.634 297.041 212.622 297.264 212.681C297.487 212.739 297.686 212.863 297.836 213.038C297.986 213.213 298.078 213.43 298.101 213.659C298.124 213.888 298.076 214.118 297.964 214.319L294.245 220.979C294.137 221.174 294.088 221.396 294.106 221.618C294.124 221.84 294.207 222.052 294.345 222.226L299.069 228.215C299.211 228.396 299.294 228.616 299.307 228.845C299.32 229.074 299.263 229.301 299.144 229.497C299.024 229.693 298.847 229.847 298.638 229.94C298.428 230.033 298.194 230.059 297.969 230.015L290.486 228.536C290.267 228.492 290.039 228.514 289.832 228.6C289.626 228.685 289.449 228.83 289.325 229.016V229.016Z" fill="#171717"/>
|
||||||
|
<path d="M348.873 191.372L356.966 179.572" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M358.286 190.035L346.908 180.123" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M178.061 261.887L184.213 251" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M186.638 260.857L175.271 252.826" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M396.207 295.485C397.989 291.791 400.39 288.43 403.307 285.547" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M404.201 293.661C401.048 291.488 398.343 288.727 396.234 285.529" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M754.891 159.201L766.248 147.844" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M764.701 158.589L756.201 147.225" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M692.328 150.638L698.028 138.584" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M701.005 145.571L690.357 141.314" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M737.078 105.905L744.193 98.1133" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M744.301 106.627L735.785 97.3984" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M342.488 402.664C342.754 432.731 341.775 462.776 339.551 492.801" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M405.691 426.426L401.072 420.752" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M367.051 459.14L373.412 450.248" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M406.505 486.64L401.15 481.705" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M311.976 448.801L304.523 441.701" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M255.266 428.973L259.548 421.889" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M263.476 482.001L257 477.145" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M208.384 450.474C205.891 449.522 203.705 447.905 202.064 445.799" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M201.309 514.49L206.309 504.922" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M255.925 533.949C253.52 532.041 251.534 529.658 250.09 526.949" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M297.193 514.528L301.483 507.094" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M344.952 532.602L338.131 527.018" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M136.975 455.344C138.397 449.269 141.029 443.543 144.714 438.508C148.399 433.473 153.061 429.232 158.422 426.039" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<g opacity="0.1">
|
||||||
|
<path d="M365.9 286.957C355.755 283.423 341.694 285.13 331.706 288.719C321.264 292.471 313.193 298.766 310.185 309.839C306.907 321.91 309.928 335.153 310.574 347.381L311.59 366.62C311.821 371.001 313.785 379.764 309.662 382.883C307.933 384.19 304.962 384.576 302.981 385.438C300.788 386.322 298.82 387.683 297.219 389.423C293.773 393.268 293.346 399.348 289.203 402.518C285.356 405.462 279.527 405.688 274.93 406.469C268.455 407.569 261.996 408.791 255.543 410.012C232.165 414.438 208.023 420.054 187.999 433.532C168.074 446.944 153.038 466.897 150.548 491.232C150.133 495.293 154.314 498.779 158.095 498.779C162.521 498.779 165.226 495.305 165.642 491.232C167.607 472.018 181.142 455.844 196.642 445.351C215.219 432.779 237.447 427.468 259.112 422.971C269.888 420.734 281.464 419.471 291.591 414.971C295.751 413.12 299.502 410.328 301.691 406.25C302.655 404.232 303.446 402.137 304.056 399.987C305.286 396.332 306.496 395.837 309.976 394.657C320.269 391.167 323.538 383.557 323.268 373.109C322.946 360.678 322.097 348.275 322.037 335.837C321.977 323.456 319.887 311.237 328.866 301.3C333.217 296.487 339.434 294.285 345.66 293.158C352.354 291.946 359.383 292.758 365.89 290.843C366.305 290.714 366.669 290.456 366.927 290.107C367.185 289.757 367.324 289.334 367.324 288.899C367.324 288.464 367.185 288.041 366.927 287.691C366.669 287.342 366.305 287.084 365.89 286.956L365.9 286.957Z" fill="#171717"/>
|
||||||
|
</g>
|
||||||
|
<g opacity="0.1">
|
||||||
|
<path d="M171.41 528.433C172.81 530.265 173.417 531.921 175.361 533.402C176.91 534.505 178.626 535.354 180.444 535.915C184.508 537.361 188.731 538.539 192.901 539.631C200.683 541.669 208.524 543.469 216.424 545.031C233.23 548.369 250.216 550.719 267.297 552.068C301.025 554.817 334.968 553.195 368.28 547.244C372.221 546.532 374.367 541.783 373.42 538.191C372.295 533.925 368.287 532.524 364.367 533.051C332.512 537.416 300.283 538.382 268.223 535.932C252.286 534.661 236.439 532.439 220.767 529.277C212.879 527.686 205.047 525.85 197.26 523.822C193.666 522.884 190.07 521.958 186.471 521.042C184.619 520.458 182.713 520.065 180.781 519.869C178.151 519.751 176.552 520.786 174.212 521.551C171.656 522.385 169.461 525.891 171.412 528.436L171.41 528.433Z" fill="#171717"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<defs>
|
||||||
|
<clipPath id="clip0_510_1402">
|
||||||
|
<rect width="884" height="804" fill="white" transform="translate(38 78)"/>
|
||||||
|
</clipPath>
|
||||||
|
</defs>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 39 KiB |
|
@ -0,0 +1,97 @@
|
||||||
|
<svg width="960" height="960" viewBox="0 0 960 960" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<g clip-path="url(#clip0_1_4893)">
|
||||||
|
<mask id="mask0_1_4893" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="0" y="0" width="960" height="960">
|
||||||
|
<path d="M960 0H0V960H960V0Z" fill="white"/>
|
||||||
|
</mask>
|
||||||
|
<g mask="url(#mask0_1_4893)">
|
||||||
|
<mask id="mask1_1_4893" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="38" y="51" width="885" height="858">
|
||||||
|
<path d="M923 51H38V909H923V51Z" fill="white"/>
|
||||||
|
</mask>
|
||||||
|
<g mask="url(#mask1_1_4893)">
|
||||||
|
<path d="M601.3 114.554C621.306 114.196 642.276 109.387 661.139 115.918C656.909 130.399 641.491 138.376 627.01 142.606C614.387 146.296 601.353 148.397 588.21 148.861C576.977 149.277 565.73 148.502 554.66 146.547C538.802 143.722 523.411 138.514 507.443 136.489C491.475 134.464 474.182 136.061 461.217 145.582C443.25 158.768 438.207 182.976 434.501 204.952C433.688 209.775 432.875 214.583 432.062 219.405L431.484 219.305C425.047 223.58 419.459 229.014 415.005 235.329C412.387 239.035 409.645 243.417 405.168 244.175C401.186 244.85 397.162 242.067 395.568 238.346C393.984 234.64 394.493 230.3 396.05 226.58C397.607 222.86 400.129 219.622 402.609 216.439L402.375 216.191C398.175 220.173 393.968 224.146 389.754 228.109C387.66 230.093 385.124 232.215 382.254 231.802C378.824 231.302 376.954 227.159 377.554 223.742C378.154 220.325 380.475 217.5 382.583 214.742C391.568 203.005 398.412 189.775 402.8 175.66C407.567 160.26 409.33 144.011 414.828 128.869C420.326 113.727 430.648 99.04 446 94.162C458.552 90.162 472.082 93.322 485.2 94.41C502.379 95.73 519.644 93.4702 535.904 87.7735C552.164 82.0768 567.065 73.0673 579.663 61.315C584.031 57.182 589.638 52.332 595.274 54.426C601.598 56.768 601.901 66.041 598.443 71.842C594.984 77.628 589.184 81.789 586.043 87.755L586.057 87.81C598.595 83.6767 611.138 79.5433 623.685 75.41C626.24 74.3974 628.957 73.8554 631.704 73.81C634.446 73.948 637.298 75.298 638.428 77.792C639.792 80.768 638.345 84.254 636.678 87.078C628.807 100.248 616.113 109.834 601.291 113.8L601.3 114.554Z" fill="#FAFAFA"/>
|
||||||
|
<path d="M383.734 321.226C394.164 322.686 404.539 324.312 414.834 326.034C449.155 331.766 483.339 338.228 517.453 345.021C541.29 349.733 565.084 354.61 588.893 359.488L442.793 433.683L191.859 402.558L192.176 577.293L192.259 577.637C191.278 577.869 190.349 578.28 189.517 578.85C186.817 580.71 185.246 583.768 183.771 586.689C171.471 611.077 172.487 607.453 147.218 629.512C139.764 645.233 134.28 662.345 135.038 679.719C135.727 695.261 142.038 711.065 153.776 721.054L153.721 721.123C130.174 730.244 102.467 717.554 87.3935 697.3C72.3195 677.046 67.4294 651.061 65.2114 625.916C59.9754 566.449 67.6355 505.054 93.4115 451.209C119.187 397.364 164.024 351.648 219.881 330.595C271.69 311.085 328.387 313.524 383.734 321.226Z" fill="#171717"/>
|
||||||
|
<path d="M515.522 324.133C520.675 328.859 522.714 337.733 517.891 342.803L517.45 345.021C483.336 338.228 449.15 331.766 414.831 326.034C404.539 324.312 394.164 322.686 383.731 321.226C381.678 312.146 389.407 302.997 398.363 300.226C404.863 298.214 411.714 298.642 418.493 299.771C421.262 300.24 424.004 300.819 426.718 301.397C446.738 305.682 466.749 309.972 486.75 314.266C489.95 314.941 493.157 315.63 496.35 316.319C503.176 317.781 510.368 319.421 515.522 324.133Z" fill="#171717"/>
|
||||||
|
<path d="M859.714 620.46C856.231 620.989 852.707 621.188 849.188 621.052C843.029 620.818 836.071 619.068 833.188 613.626C829.454 606.557 834.759 598.167 840.394 592.49C850.279 582.56 861.94 574.573 874.771 568.943C878.015 567.507 881.369 566.332 884.801 565.43C892.71 563.39 901.569 563.03 907.232 568.612C911.889 573.2 911.269 578.326 908.913 583.312C907.227 586.56 905.288 589.67 903.113 592.612C893.016 607.205 877.226 617.842 859.714 620.46Z" stroke="#FAFAFA" stroke-width="4.133" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M860.953 620.942L859.92 621.81C854.739 626.122 849.338 629.746 846.472 635.891C843.414 642.45 843.672 651.13 849.035 655.98C852.879 659.452 858.129 660.141 863.435 659.631C865.975 659.371 868.491 658.911 870.958 658.253C882.174 655.373 893.169 650.923 902.248 643.703C905.942 640.796 909.232 637.409 912.031 633.632C916.224 628.129 919.043 621.705 920.256 614.893C922.156 603.457 918.369 590.864 909.399 583.534" stroke="#FAFAFA" stroke-width="4.133" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M863.626 659.479C863.565 659.534 863.501 659.585 863.433 659.631C856.854 664.842 851.207 671.131 846.733 678.231C844.556 681.648 842.545 685.52 842.999 689.543C843.606 694.889 848.566 698.912 853.815 700.097C859.064 701.282 864.507 700.18 869.729 698.897C870.404 698.731 871.093 698.552 871.768 698.373C881.234 695.92 890.575 692.655 898.787 687.364C907.577 681.688 915.031 673.448 918.187 663.473C921.343 653.498 919.661 641.717 912.565 634.029" stroke="#FAFAFA" stroke-width="4.133" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M147.219 629.512C172.488 607.453 171.469 611.077 183.772 586.689C185.247 583.768 186.817 580.71 189.518 578.85C190.349 578.28 191.279 577.869 192.26 577.637C193.343 577.316 194.495 577.303 195.585 577.6C196.675 577.897 197.661 578.492 198.432 579.318C200.032 581.261 199.92 584.03 199.732 586.538C197.362 616.409 196.783 614.549 191.699 644.075" stroke="#FAFAFA" stroke-width="4.133" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M192.26 644.1C205.473 645.919 218.686 647.743 231.899 649.57C241.93 650.948 252.277 652.449 260.889 657.754C263.699 659.49 266.389 661.754 267.612 664.822C268.835 667.89 268.191 671.89 265.436 673.722C263.465 675.031 260.944 674.989 258.574 674.907L238.706 674.246C222.998 673.722 207.282 673.194 191.557 672.661" stroke="#FAFAFA" stroke-width="4.133" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M238.706 674.387C245.365 675.507 251.551 678.548 256.506 683.136C260.97 687.104 263.437 694.007 260.506 699.215C257.323 704.878 249.731 706.008 243.228 705.98C241.12 705.98 239.012 705.912 236.904 705.801C220.563 704.975 204.456 701.301 188.474 697.631" stroke="#FAFAFA" stroke-width="4.133" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M236.886 706.256C242.563 709.301 248.418 712.484 252.386 717.556C256.354 722.628 257.952 730.163 254.411 735.55C250.291 741.819 241.511 742.65 234.033 742.233C218.918 741.42 204.033 738.265 189.24 735.123C186.03 734.434 182.806 733.746 179.609 732.946C172.031 731.073 164.619 728.606 158.143 724.335C156.621 723.332 155.163 722.237 153.775 721.056C142.036 711.067 135.726 695.263 135.037 679.721C134.279 662.347 139.763 645.235 147.217 629.514" stroke="#FAFAFA" stroke-width="4.133" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M153.721 721.123C130.174 730.244 102.467 717.554 87.3935 697.3C72.3195 677.046 67.4294 651.061 65.2114 625.916C59.9754 566.449 67.6355 505.054 93.4115 451.209C119.187 397.364 164.024 351.648 219.881 330.595C271.687 311.085 328.381 313.524 383.731 321.226C394.161 322.686 404.536 324.312 414.831 326.035C449.152 331.766 483.336 338.228 517.45 345.021C541.287 349.733 565.081 354.61 588.89 359.488" stroke="#FAFAFA" stroke-width="4.133" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M383.858 321.75C383.816 321.57 383.758 321.405 383.734 321.226C381.681 312.146 389.41 302.997 398.366 300.226C404.866 298.214 411.717 298.642 418.496 299.771C421.265 300.24 424.007 300.819 426.721 301.397C446.741 305.682 466.752 309.972 486.753 314.266C489.953 314.941 493.16 315.63 496.353 316.319C503.173 317.779 510.366 319.419 515.519 324.131C520.672 328.843 522.711 337.731 517.888 342.801" stroke="#FAFAFA" stroke-width="4.133" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M418.716 298.437C423.166 272.093 427.617 245.749 432.067 219.405C432.88 214.583 433.693 209.775 434.506 204.952C438.212 182.976 443.255 158.768 461.222 145.582C474.187 136.061 491.479 134.482 507.447 136.489C523.415 138.496 538.807 143.722 554.665 146.547C565.735 148.502 576.981 149.277 588.215 148.861C601.358 148.397 614.392 146.296 627.015 142.606C641.496 138.376 656.915 130.399 661.144 115.918C642.281 109.387 621.311 114.196 601.305 114.554C591.357 114.733 581.644 113.824 572.536 109.854" stroke="#FAFAFA" stroke-width="4.133" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M601.291 113.8C616.111 109.833 628.802 100.249 636.674 87.08C638.341 84.256 639.788 80.77 638.424 77.794C637.294 75.3 634.442 73.95 631.7 73.812C628.952 73.8574 626.235 74.3994 623.681 75.412C611.143 79.5453 598.6 83.6786 586.053 87.812C577.621 90.582 569.193 93.356 560.77 96.134" stroke="#FAFAFA" stroke-width="4.133" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M586.038 87.755C589.18 81.789 594.98 77.628 598.438 71.842C601.897 66.042 601.594 56.768 595.269 54.426C589.634 52.332 584.027 57.182 579.659 61.315C567.061 73.0668 552.161 82.076 535.902 87.7727C519.642 93.4694 502.378 95.7295 485.2 94.41C472.083 93.322 458.553 90.167 446 94.162C430.651 99.04 420.318 113.713 414.834 128.869C409.35 144.025 407.57 160.256 402.8 175.66C398.414 189.777 391.571 203.009 382.587 214.748C380.479 217.504 378.164 220.329 377.558 223.748C376.952 227.167 378.826 231.312 382.258 231.808C385.124 232.221 387.658 230.099 389.758 228.115C393.958 224.147 398.165 220.174 402.378 216.197C404.927 213.797 407.463 211.402 410.012 209.005" stroke="#FAFAFA" stroke-width="4.133" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M402.61 216.443C400.13 219.626 397.61 222.85 396.051 226.584C394.492 230.318 393.985 234.644 395.569 238.35C397.169 242.071 401.19 244.85 405.169 244.179C409.647 243.421 412.389 239.039 415.007 235.333C419.461 229.018 425.048 223.584 431.486 219.309" stroke="#FAFAFA" stroke-width="4.133" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M508.412 159.374C507.669 156.815 506.322 154.471 504.485 152.541C502.647 150.611 500.373 149.15 497.853 148.282C495.333 147.413 492.642 147.163 490.005 147.552C487.369 147.94 484.864 148.957 482.702 150.515C483.239 150.432 483.763 150.363 484.286 150.281" stroke="#FAFAFA" stroke-width="4.133" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M566.087 171.43C558.358 168.743 550.625 166.061 542.887 163.384C540.365 162.516 537.5 161.648 535.102 162.832C532.54 164.1 531.547 167.2 530.802 169.97C525.736 188.956 520.669 207.947 515.602 226.942C514.817 229.849 513.866 233.018 511.386 234.699C506.894 237.744 500.997 234.148 496.823 230.69" stroke="#FAFAFA" stroke-width="4.133" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M473.25 254.278C464.322 254.25 456.468 245.419 457.474 236.545" stroke="#FAFAFA" stroke-width="4.133" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M492.76 178.856C492.102 174.71 492.495 170.465 493.904 166.511" stroke="#FAFAFA" stroke-width="4.133" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M542.706 192.483C542.733 188.584 543.793 184.761 545.778 181.405" stroke="#FAFAFA" stroke-width="4.133" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M192.176 577.293L191.859 402.558L442.787 433.683L588.89 359.488L652.214 327.343L910.913 268.511L884.652 564.892" stroke="#FAFAFA" stroke-width="4.133" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M179.542 733.234L173.7 883.016L377.947 906.356L663.885 765.006L866.175 774.733L872.017 699.353" stroke="#FAFAFA" stroke-width="4.133" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M652.214 327.343L663.885 765.006" stroke="#FAFAFA" stroke-width="4.133" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M442.787 433.683L377.947 906.356" stroke="#FAFAFA" stroke-width="4.133" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M486.85 313.786C487.575 303.276 492.146 293.402 499.691 286.05C507.517 278.486 517.879 274.256 527.055 268.387C546.289 256.069 560.04 236.545 569.202 215.63C578.364 194.715 583.339 172.243 588.257 149.936" stroke="#FAFAFA" stroke-width="4.133" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M894.834 423.166C877.928 412.654 860.657 401.984 841.321 397.252C821.985 392.52 799.879 394.639 784.768 407.6C765.493 424.133 762.588 452.676 749.051 474.163C742.874 483.804 734.604 491.931 724.857 497.939C715.109 503.947 704.133 507.683 692.744 508.87C672.368 510.835 649.832 504.883 632.599 515.93C619.319 524.442 613.338 541.041 612.438 556.788C611.538 572.535 614.789 588.202 615.621 603.952C616.842 627.04 611.383 652.752 592.685 666.352C573.504 680.298 547.093 677.165 524.485 684.335C491.564 694.776 469.285 726.959 461.044 760.499C452.803 794.039 456.194 829.199 459.637 863.568" stroke="#FAFAFA" stroke-width="4.133" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M193.918 500.171C219.038 490.085 249.318 494.144 270.893 510.489C280.267 517.589 287.962 526.716 297.349 533.801C306.736 540.886 318.794 545.916 330.177 542.959C343.592 539.473 352.154 526.17 364.729 520.339C377.635 514.356 394.242 517.682 403.847 528.175C409.857 534.742 413.015 543.352 417.547 551.011C422.079 558.67 429.032 565.967 437.909 566.633C444.779 567.148 451.401 563.477 456.219 558.554C461.037 553.631 464.407 547.514 468.031 541.654C477.349 526.584 491.87 511.332 509.495 513.14C526.719 514.906 537.852 531.94 553.143 540.059C565.317 546.526 579.907 547.152 592.179 553.433C600.035 557.471 606.591 563.647 611.088 571.25" stroke="#FAFAFA" stroke-width="4.133" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M515.254 514.573C503.97 499.379 505.695 478.473 508.335 459.735C510.975 440.997 513.674 420.463 503.735 404.36" stroke="#FAFAFA" stroke-width="4.133" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M545.205 682.632C543.349 696.332 553.073 709.917 565.861 715.166C578.649 720.415 593.539 718.413 606.087 712.609C618.599 706.822 630.817 697.167 644.445 699.246C648.511 699.866 652.518 701.546 656.595 701C664.055 700 668.365 692.361 673.595 686.95C683.98 676.213 700.851 673.38 715.186 677.58C729.521 681.78 741.447 692.095 750.291 704.134C759.135 716.173 765.243 729.957 771.281 743.62C775.177 752.438 779.074 761.256 782.972 770.074" stroke="#FAFAFA" stroke-width="4.133" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M362.293 595.8L344.383 599.413C343.751 599.541 343.101 599.543 342.469 599.419C341.837 599.295 341.236 599.048 340.699 598.692C340.163 598.336 339.702 597.877 339.343 597.342C338.984 596.808 338.733 596.207 338.607 595.576L331.382 559.757C331.254 559.126 331.252 558.476 331.375 557.843C331.499 557.211 331.746 556.61 332.103 556.074C332.459 555.537 332.918 555.076 333.452 554.717C333.987 554.358 334.587 554.108 335.219 553.981L353.129 550.368C353.76 550.24 354.41 550.238 355.042 550.362C355.674 550.486 356.276 550.733 356.812 551.089C357.348 551.445 357.809 551.904 358.168 552.439C358.528 552.973 358.778 553.574 358.905 554.205L366.13 590.024C366.257 590.655 366.259 591.305 366.136 591.937C366.012 592.57 365.765 593.171 365.408 593.707C365.052 594.244 364.593 594.705 364.059 595.064C363.524 595.423 362.924 595.673 362.293 595.8Z" fill="#FAFAFA"/>
|
||||||
|
<path d="M361.315 515.055L353.915 518.93C353.344 519.229 352.721 519.413 352.079 519.471C351.438 519.529 350.791 519.46 350.176 519.267C349.561 519.075 348.991 518.764 348.496 518.35C348.002 517.937 347.594 517.431 347.296 516.86L337.941 498.992C337.642 498.422 337.458 497.798 337.4 497.156C337.342 496.515 337.411 495.868 337.603 495.254C337.795 494.639 338.107 494.068 338.52 493.574C338.933 493.079 339.439 492.671 340.01 492.373L347.41 488.498C347.98 488.199 348.604 488.015 349.246 487.957C349.887 487.899 350.534 487.968 351.149 488.161C351.763 488.353 352.334 488.664 352.828 489.078C353.323 489.491 353.731 489.997 354.029 490.568L363.385 508.436C363.684 509.006 363.868 509.63 363.926 510.272C363.984 510.913 363.914 511.56 363.722 512.175C363.53 512.789 363.218 513.36 362.805 513.854C362.392 514.349 361.886 514.757 361.315 515.055Z" fill="#FAFAFA"/>
|
||||||
|
<path d="M337.261 530.181L332.961 532.211C332.379 532.486 331.748 532.644 331.104 532.675C330.461 532.706 329.818 532.61 329.211 532.392C328.605 532.175 328.048 531.84 327.571 531.406C327.095 530.973 326.708 530.45 326.434 529.867L321.08 518.511C320.805 517.929 320.647 517.298 320.616 516.654C320.585 516.011 320.681 515.368 320.899 514.761C321.116 514.155 321.452 513.598 321.885 513.121C322.318 512.645 322.841 512.258 323.424 511.984L327.724 509.955C328.306 509.68 328.937 509.522 329.581 509.491C330.224 509.46 330.867 509.556 331.473 509.773C332.079 509.991 332.637 510.326 333.113 510.759C333.59 511.192 333.977 511.715 334.251 512.298L339.605 523.654C339.88 524.236 340.038 524.867 340.069 525.511C340.1 526.154 340.004 526.797 339.786 527.404C339.569 528.01 339.233 528.567 338.8 529.044C338.367 529.52 337.844 529.907 337.261 530.181Z" fill="#FAFAFA"/>
|
||||||
|
<path d="M760.684 414.026L755.26 429.467C754.796 430.789 753.825 431.872 752.562 432.479C751.299 433.085 749.846 433.165 748.524 432.701L719.472 422.5C718.818 422.27 718.215 421.913 717.698 421.45C717.181 420.987 716.761 420.427 716.461 419.802C716.16 419.176 715.986 418.498 715.948 417.805C715.91 417.112 716.009 416.419 716.239 415.764L721.663 400.323C722.128 399.001 723.098 397.918 724.362 397.311C725.625 396.705 727.077 396.625 728.399 397.089L757.451 407.295C758.772 407.759 759.855 408.729 760.461 409.991C761.067 411.253 761.148 412.705 760.684 414.026Z" fill="#FAFAFA"/>
|
||||||
|
<path d="M773.41 391.019L771.469 396.547C771.004 397.869 770.033 398.952 768.77 399.559C767.507 400.165 766.055 400.245 764.733 399.781L750.906 394.924C749.584 394.46 748.5 393.489 747.894 392.226C747.287 390.963 747.207 389.51 747.672 388.188L749.613 382.66C750.077 381.338 751.048 380.255 752.311 379.648C753.574 379.042 755.026 378.962 756.349 379.426L770.177 384.283C771.498 384.748 772.582 385.718 773.188 386.981C773.795 388.245 773.874 389.697 773.41 391.019Z" fill="#FAFAFA"/>
|
||||||
|
<path d="M742.676 638.152L755.145 644.577C756.391 645.219 757.331 646.329 757.758 647.664C758.185 648.999 758.065 650.449 757.423 651.695L745.437 674.955C744.795 676.201 743.685 677.14 742.35 677.568C741.016 677.995 739.566 677.874 738.32 677.233L725.85 670.808C724.604 670.166 723.665 669.055 723.238 667.721C722.811 666.386 722.931 664.936 723.573 663.69L735.558 640.43C736.2 639.184 737.311 638.245 738.645 637.817C739.98 637.39 741.43 637.511 742.676 638.152Z" fill="#FAFAFA"/>
|
||||||
|
<path d="M708.06 642.332L718.773 646.12C719.58 646.405 720.24 647 720.609 647.772C720.978 648.544 721.025 649.431 720.739 650.238L715.704 664.478C715.563 664.878 715.345 665.245 715.061 665.56C714.778 665.875 714.435 666.132 714.053 666.314C713.67 666.497 713.256 666.602 712.832 666.624C712.409 666.647 711.986 666.585 711.586 666.444L700.873 662.657C700.066 662.371 699.406 661.777 699.037 661.005C698.669 660.232 698.622 659.345 698.907 658.538L703.942 644.299C704.228 643.492 704.822 642.832 705.594 642.463C706.366 642.095 707.253 642.047 708.06 642.332Z" fill="#FAFAFA"/>
|
||||||
|
<path d="M452.509 732.583C452.509 732.583 474.554 684.602 491.409 677.471C508.264 670.34 566.621 670.339 580.238 658.671C593.855 647.003 600.338 616.526 600.987 602.909C601.636 589.292 589.964 565.303 579.587 562.709C569.21 560.115 539.387 552.983 534.848 547.796C530.309 542.609 519.287 529.642 505.671 530.938C492.055 532.234 476.5 555.574 476.5 555.574C476.5 555.574 451.212 575.026 448.619 587.993C446.026 600.96 426.574 735.824 426.574 735.824C426.574 735.824 417.497 771.485 432.409 769.541C447.321 767.597 452.509 732.583 452.509 732.583Z" fill="#171717"/>
|
||||||
|
<path d="M739.744 511.486C741.859 510.486 768.273 493.979 775.404 479.067C782.535 464.155 777.998 440.167 788.372 433.031C798.746 425.895 821.44 415.525 835.056 420.063C848.672 424.601 863.585 441.463 856.456 463.505C849.327 485.547 850.639 512.805 827.279 534.827C804.585 556.227 750.77 576.972 729.373 575.675C707.976 574.378 684.358 559.161 683.986 543.904C683.335 517.321 717.701 521.859 739.744 511.486Z" fill="#171717"/>
|
||||||
|
<path d="M308.568 769.542C308.568 769.542 273.555 759.168 265.775 786.399C257.995 813.63 250.633 835.768 256.049 851.238C260.8 864.805 281.336 879.767 305.974 879.767C330.612 879.767 358.494 849.941 362.383 831.786C366.272 813.631 367.571 777.97 355.899 774.08C344.227 770.19 308.568 769.542 308.568 769.542Z" fill="#171717"/>
|
||||||
|
<path d="M480.956 387.032C478.806 382.271 476.657 377.511 474.508 372.752" stroke="#FAFAFA" stroke-width="4.133" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M468.741 384.44C474.381 381.24 480.022 378.037 485.664 374.831" stroke="#FAFAFA" stroke-width="4.133" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M290.111 356.007L283.164 340.364" stroke="#FAFAFA" stroke-width="4.133" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M276.075 353.8C282.164 350.188 288.252 346.575 294.34 342.962" stroke="#FAFAFA" stroke-width="4.133" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M383.043 409.733C380.457 404.326 377.871 398.92 375.284 393.513" stroke="#FAFAFA" stroke-width="4.133" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M369.566 409.11C375.402 405.003 381.235 400.895 387.066 396.787" stroke="#FAFAFA" stroke-width="4.133" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M161.513 480.26L148.972 464.88" stroke="#FAFAFA" stroke-width="4.133" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M146.479 481.666L163.337 464.808" stroke="#FAFAFA" stroke-width="4.133" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M125.592 601.735C122.129 598.068 118.667 594.398 115.206 590.724" stroke="#FAFAFA" stroke-width="4.133" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M113.274 603.448C117.601 598.264 121.928 593.08 126.255 587.896" stroke="#FAFAFA" stroke-width="4.133" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M170.276 555.055L161.033 541.555" stroke="#FAFAFA" stroke-width="4.133" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M101.726 520.554L114.044 506.937" stroke="#FAFAFA" stroke-width="4.133" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M173.701 431.086C171.877 426.753 168.975 422.958 165.271 420.063" stroke="#FAFAFA" stroke-width="4.133" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M188.515 373.272L201.487 360.957" stroke="#FAFAFA" stroke-width="4.133" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M277.774 395C275.293 391.463 272.813 387.926 270.333 384.388" stroke="#FAFAFA" stroke-width="4.133" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M348.2 352.7C351.874 348.594 355.549 344.488 359.225 340.383" stroke="#FAFAFA" stroke-width="4.133" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M340.116 399.528L331.874 390.921" stroke="#FAFAFA" stroke-width="4.133" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M417.5 370.786L426.577 359.114" stroke="#FAFAFA" stroke-width="4.133" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M438.893 409.69C436.731 407.097 434.57 404.503 432.409 401.909" stroke="#FAFAFA" stroke-width="4.133" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M518.601 373.329C521.195 370.953 523.789 368.576 526.383 366.199" stroke="#FAFAFA" stroke-width="4.133" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M498.926 340.245L504.146 319.505" stroke="#FAFAFA" stroke-width="4.133" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M474.513 336.411C476.467 329.064 478.422 321.718 480.377 314.373" stroke="#FAFAFA" stroke-width="4.133" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M444.629 331.211C446.408 323.874 448.187 316.538 449.967 309.202" stroke="#FAFAFA" stroke-width="4.133" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M419.376 326.679C421.29 319.107 423.203 311.535 425.116 303.962" stroke="#FAFAFA" stroke-width="4.133" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M397.842 322.11L402.491 302.036" stroke="#FAFAFA" stroke-width="4.133" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M160.187 616.954C154.694 612.111 146.21 611.814 139.498 614.742C132.786 617.67 127.607 623.3 123.457 629.33C105.029 656.117 104.785 694.174 122.869 721.196L126.369 718.32" stroke="#FAFAFA" stroke-width="4.133" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M914.032 433.376L920.532 372.076" stroke="#FAFAFA" stroke-width="4.133" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M56.4753 684.926C43.8516 667.24 38.5246 645.371 41.6003 623.861" stroke="#FAFAFA" stroke-width="4.133" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M510.43 869.435C537.609 853.562 565.234 838.489 593.304 824.215" stroke="#FAFAFA" stroke-width="4.133" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<g opacity="0.1">
|
||||||
|
<path d="M523.418 141.879C520.188 137.497 512.985 137.324 507.985 136.661C501.499 135.813 494.945 135.605 488.418 136.039C475.175 136.926 462.431 141.211 452.999 150.925C443.482 160.725 438.083 174.032 434.717 187.084C430.591 203.084 427.446 219.373 424.935 235.697C423.489 245.09 422.263 254.515 421.257 263.974C420.264 273.385 418.85 283.166 419.185 292.634C419.211 294.956 420.071 297.192 421.608 298.933C423.145 300.674 425.257 301.805 427.558 302.118C431.82 302.625 437.458 300.011 438.158 295.201C439.55 285.509 439.758 275.629 440.751 265.88C441.699 256.583 442.905 247.32 444.368 238.089C447.252 219.925 451.091 201.926 455.868 184.166C459.618 170.25 465.757 155.787 478.713 148.219C485.696 144.253 493.626 142.26 501.655 142.456C505.604 142.49 509.547 142.759 513.463 143.262C516.848 143.699 519.936 144.635 523.121 143.033C523.313 142.919 523.452 142.734 523.508 142.518C523.565 142.302 523.533 142.072 523.421 141.879H523.418Z" fill="#FAFAFA"/>
|
||||||
|
</g>
|
||||||
|
<g opacity="0.1">
|
||||||
|
<path d="M404.855 299.824C403.616 299.876 402.633 299.098 401.378 299.048C400.403 299.071 399.438 299.241 398.515 299.554C396.259 300.343 394.11 301.411 392.12 302.734C390.12 303.977 387.929 305.027 386.42 306.867C384.353 309.153 382.827 311.875 381.956 314.831C379.347 325.366 395.439 329.831 398.228 319.317C398.928 316.69 398.867 316.198 399.595 313.517C399.899 312.755 400.041 311.937 400.012 311.117C400.026 310.202 400.01 310.079 399.964 310.749C399.843 311.442 399.981 311.317 400.38 310.376C400.688 309.672 400.981 308.962 401.259 308.247L399.873 310.626C400.948 309.338 402.105 308.122 403.339 306.985C404.254 306.109 405.046 304.147 405.899 303.671C406.279 303.435 406.573 303.083 406.737 302.667C406.9 302.251 406.926 301.794 406.809 301.362C406.692 300.93 406.439 300.548 406.088 300.272C405.736 299.995 405.305 299.84 404.858 299.828L404.855 299.824Z" fill="#FAFAFA"/>
|
||||||
|
</g>
|
||||||
|
<g opacity="0.1">
|
||||||
|
<path d="M380.778 321.208C369.027 318.387 356.964 319.143 345.05 317.385C333.306 315.652 321.872 313.796 309.935 313.685C287.032 313.505 264.187 316.011 241.867 321.149C200.105 330.76 162.742 351.803 134.448 384.165C106.717 415.882 87.4001 454.664 75.3001 494.847C62.5005 537.469 58.2911 582.209 62.9161 626.471C65.4061 649.985 68.9981 675.557 82.6651 695.534C96.2781 715.434 119.045 728.39 143.477 723.084C149.491 721.778 152.999 714.77 151.433 709.072C149.716 702.826 143.462 699.851 137.421 701.116C122.149 704.316 106.941 692.955 99.3471 680.066C90.1111 664.391 87.2001 645.179 85.2201 627.357C80.7484 586.879 83.8647 545.922 94.4091 506.586C104.209 469.971 120.235 433.713 144.009 403.938C168.142 373.715 199.396 352.365 236.56 341.452C259.16 334.816 282.578 331.766 306.039 330.342C318.475 329.587 330.748 328.197 343.098 326.706C355.624 325.194 368.264 327.343 380.778 325.638C383.078 325.324 382.848 321.705 380.778 321.208Z" fill="#FAFAFA"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<defs>
|
||||||
|
<clipPath id="clip0_1_4893">
|
||||||
|
<rect width="960" height="960" fill="white"/>
|
||||||
|
</clipPath>
|
||||||
|
</defs>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 27 KiB |
|
@ -0,0 +1,92 @@
|
||||||
|
<svg width="960" height="960" viewBox="0 0 960 960" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<g clip-path="url(#clip0_46_7743)">
|
||||||
|
<g clip-path="url(#clip1_46_7743)">
|
||||||
|
<path d="M601.3 114.554C621.306 114.196 642.276 109.387 661.139 115.918C656.909 130.399 641.491 138.376 627.01 142.606C614.387 146.296 601.353 148.397 588.21 148.861C576.977 149.277 565.73 148.502 554.66 146.547C538.802 143.722 523.411 138.514 507.443 136.489C491.475 134.464 474.182 136.061 461.217 145.582C443.25 158.768 438.207 182.976 434.501 204.952C433.688 209.775 432.875 214.583 432.062 219.405L431.484 219.305C425.047 223.58 419.459 229.014 415.005 235.329C412.387 239.035 409.645 243.417 405.168 244.175C401.186 244.85 397.162 242.067 395.568 238.346C393.984 234.64 394.493 230.3 396.05 226.58C397.607 222.86 400.129 219.622 402.609 216.439L402.375 216.191C398.175 220.173 393.968 224.146 389.754 228.109C387.66 230.093 385.124 232.215 382.254 231.802C378.824 231.302 376.954 227.159 377.554 223.742C378.154 220.325 380.475 217.5 382.583 214.742C391.568 203.005 398.412 189.775 402.8 175.66C407.567 160.26 409.33 144.011 414.828 128.869C420.326 113.727 430.648 99.04 446 94.162C458.552 90.162 472.082 93.322 485.2 94.41C502.379 95.73 519.644 93.4702 535.904 87.7735C552.164 82.0768 567.065 73.0673 579.663 61.315C584.031 57.182 589.638 52.332 595.274 54.426C601.598 56.768 601.901 66.041 598.443 71.842C594.984 77.628 589.184 81.789 586.043 87.755L586.057 87.81C598.595 83.6767 611.138 79.5433 623.685 75.41C626.24 74.3974 628.957 73.8554 631.704 73.81C634.446 73.948 637.298 75.298 638.428 77.792C639.792 80.768 638.345 84.254 636.678 87.078C628.807 100.248 616.113 109.834 601.291 113.8L601.3 114.554Z" fill="#171717"/>
|
||||||
|
<path d="M383.734 321.226C394.164 322.686 404.539 324.312 414.834 326.034C449.155 331.766 483.339 338.228 517.453 345.021C541.29 349.733 565.084 354.61 588.893 359.488L442.793 433.683L191.859 402.558L192.176 577.293L192.259 577.637C191.278 577.869 190.349 578.28 189.517 578.85C186.817 580.71 185.246 583.768 183.771 586.689C171.471 611.077 172.487 607.453 147.218 629.512C139.764 645.233 134.28 662.345 135.038 679.719C135.727 695.261 142.038 711.065 153.776 721.054L153.721 721.123C130.174 730.244 102.467 717.554 87.3935 697.3C72.3195 677.046 67.4294 651.061 65.2114 625.916C59.9754 566.449 67.6355 505.054 93.4115 451.209C119.187 397.364 164.024 351.648 219.881 330.595C271.69 311.085 328.387 313.524 383.734 321.226Z" fill="white"/>
|
||||||
|
<path d="M515.522 324.133C520.675 328.859 522.714 337.733 517.891 342.803L517.45 345.021C483.336 338.228 449.15 331.766 414.831 326.034C404.539 324.312 394.164 322.686 383.731 321.226C381.678 312.146 389.407 302.997 398.363 300.226C404.863 298.214 411.714 298.642 418.493 299.771C421.262 300.24 424.004 300.819 426.718 301.397C446.738 305.682 466.749 309.972 486.75 314.266C489.95 314.941 493.157 315.63 496.35 316.319C503.176 317.781 510.368 319.421 515.522 324.133Z" fill="white"/>
|
||||||
|
<path d="M859.714 620.46C856.231 620.989 852.707 621.188 849.188 621.052C843.029 620.818 836.071 619.068 833.188 613.626C829.454 606.557 834.759 598.167 840.394 592.49C850.279 582.56 861.94 574.573 874.771 568.943C878.015 567.507 881.369 566.332 884.801 565.43C892.71 563.39 901.569 563.03 907.232 568.612C911.889 573.2 911.269 578.326 908.913 583.312C907.227 586.56 905.288 589.67 903.113 592.612C893.016 607.205 877.226 617.842 859.714 620.46Z" stroke="#171717" stroke-width="4.133" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M860.953 620.942L859.92 621.81C854.739 626.122 849.338 629.746 846.472 635.891C843.414 642.45 843.672 651.13 849.035 655.98C852.879 659.452 858.129 660.141 863.435 659.631C865.975 659.371 868.491 658.911 870.958 658.253C882.174 655.373 893.169 650.923 902.248 643.703C905.942 640.796 909.232 637.409 912.031 633.632C916.224 628.129 919.043 621.705 920.256 614.893C922.156 603.457 918.369 590.864 909.399 583.534" stroke="#171717" stroke-width="4.133" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M863.626 659.479C863.565 659.534 863.501 659.585 863.433 659.631C856.854 664.842 851.207 671.131 846.733 678.231C844.556 681.648 842.545 685.52 842.999 689.543C843.606 694.889 848.566 698.912 853.815 700.097C859.064 701.282 864.507 700.18 869.729 698.897C870.404 698.731 871.093 698.552 871.768 698.373C881.234 695.92 890.575 692.655 898.787 687.364C907.577 681.688 915.031 673.448 918.187 663.473C921.343 653.498 919.661 641.717 912.565 634.029" stroke="#171717" stroke-width="4.133" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M147.219 629.512C172.488 607.453 171.469 611.077 183.772 586.689C185.247 583.768 186.817 580.71 189.518 578.85C190.349 578.28 191.279 577.869 192.26 577.637C193.343 577.316 194.495 577.303 195.585 577.6C196.675 577.897 197.661 578.492 198.432 579.318C200.032 581.261 199.92 584.03 199.732 586.538C197.362 616.409 196.783 614.549 191.699 644.075" stroke="#171717" stroke-width="4.133" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M192.26 644.1C205.473 645.919 218.686 647.743 231.899 649.57C241.93 650.948 252.277 652.449 260.889 657.754C263.699 659.49 266.389 661.754 267.612 664.822C268.835 667.89 268.191 671.89 265.436 673.722C263.465 675.031 260.944 674.989 258.574 674.907L238.706 674.246C222.998 673.722 207.282 673.194 191.557 672.661" stroke="#171717" stroke-width="4.133" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M238.706 674.387C245.365 675.507 251.551 678.548 256.506 683.136C260.97 687.104 263.437 694.007 260.506 699.215C257.323 704.878 249.731 706.008 243.228 705.98C241.12 705.98 239.012 705.912 236.904 705.801C220.563 704.975 204.456 701.301 188.474 697.631" stroke="#171717" stroke-width="4.133" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M236.886 706.256C242.563 709.301 248.418 712.484 252.386 717.556C256.354 722.628 257.952 730.163 254.411 735.55C250.291 741.819 241.511 742.65 234.033 742.233C218.918 741.42 204.033 738.265 189.24 735.123C186.03 734.434 182.806 733.746 179.609 732.946C172.031 731.073 164.619 728.606 158.143 724.335C156.621 723.332 155.163 722.237 153.775 721.056C142.036 711.067 135.726 695.263 135.037 679.721C134.279 662.347 139.763 645.235 147.217 629.514" stroke="#171717" stroke-width="4.133" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M153.721 721.123C130.174 730.244 102.467 717.554 87.3935 697.3C72.3195 677.046 67.4294 651.061 65.2114 625.916C59.9754 566.449 67.6355 505.054 93.4115 451.209C119.187 397.364 164.024 351.648 219.881 330.595C271.687 311.085 328.381 313.524 383.731 321.226C394.161 322.686 404.536 324.312 414.831 326.035C449.152 331.766 483.336 338.228 517.45 345.021C541.287 349.733 565.081 354.61 588.89 359.488" stroke="#171717" stroke-width="4.133" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M383.858 321.75C383.816 321.57 383.758 321.405 383.734 321.226C381.681 312.146 389.41 302.997 398.366 300.226C404.866 298.214 411.717 298.642 418.496 299.771C421.265 300.24 424.007 300.819 426.721 301.397C446.741 305.682 466.752 309.972 486.753 314.266C489.953 314.941 493.16 315.63 496.353 316.319C503.173 317.779 510.366 319.419 515.519 324.131C520.672 328.843 522.711 337.731 517.888 342.801" stroke="#171717" stroke-width="4.133" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M418.716 298.437C423.166 272.093 427.617 245.749 432.067 219.405C432.88 214.583 433.693 209.775 434.506 204.952C438.212 182.976 443.255 158.768 461.222 145.582C474.187 136.061 491.479 134.482 507.447 136.489C523.415 138.496 538.807 143.722 554.665 146.547C565.735 148.502 576.981 149.277 588.215 148.861C601.358 148.397 614.392 146.296 627.015 142.606C641.496 138.376 656.915 130.399 661.144 115.918C642.281 109.387 621.311 114.196 601.305 114.554C591.357 114.733 581.644 113.824 572.536 109.854" stroke="#171717" stroke-width="4.133" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M601.291 113.8C616.111 109.833 628.802 100.249 636.674 87.08C638.341 84.256 639.788 80.77 638.424 77.794C637.294 75.3 634.442 73.95 631.7 73.812C628.952 73.8574 626.235 74.3994 623.681 75.412C611.143 79.5453 598.6 83.6786 586.053 87.812C577.621 90.582 569.193 93.356 560.77 96.134" stroke="#171717" stroke-width="4.133" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M586.038 87.755C589.18 81.789 594.98 77.628 598.438 71.842C601.897 66.042 601.594 56.768 595.269 54.426C589.634 52.332 584.027 57.182 579.659 61.315C567.061 73.0668 552.161 82.076 535.902 87.7727C519.642 93.4694 502.378 95.7295 485.2 94.41C472.083 93.322 458.553 90.167 446 94.162C430.651 99.04 420.318 113.713 414.834 128.869C409.35 144.025 407.57 160.256 402.8 175.66C398.414 189.777 391.571 203.009 382.587 214.748C380.479 217.504 378.164 220.329 377.558 223.748C376.952 227.167 378.826 231.312 382.258 231.808C385.124 232.221 387.658 230.099 389.758 228.115C393.958 224.147 398.165 220.174 402.378 216.197C404.927 213.797 407.463 211.402 410.012 209.005" stroke="#171717" stroke-width="4.133" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M402.61 216.443C400.13 219.626 397.61 222.85 396.051 226.584C394.492 230.318 393.985 234.644 395.569 238.35C397.169 242.071 401.19 244.85 405.169 244.179C409.647 243.421 412.389 239.039 415.007 235.333C419.461 229.018 425.048 223.584 431.486 219.309" stroke="#171717" stroke-width="4.133" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M508.412 159.374C507.669 156.815 506.322 154.471 504.485 152.541C502.647 150.611 500.373 149.15 497.853 148.282C495.333 147.413 492.642 147.163 490.005 147.552C487.369 147.94 484.864 148.957 482.702 150.515C483.239 150.432 483.763 150.363 484.286 150.281" stroke="#171717" stroke-width="4.133" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M566.087 171.43C558.358 168.743 550.625 166.061 542.887 163.384C540.365 162.516 537.5 161.648 535.102 162.832C532.54 164.1 531.547 167.2 530.802 169.97C525.736 188.956 520.669 207.947 515.602 226.942C514.817 229.849 513.866 233.018 511.386 234.699C506.894 237.744 500.997 234.148 496.823 230.69" stroke="#171717" stroke-width="4.133" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M473.25 254.278C464.322 254.25 456.468 245.419 457.474 236.545" stroke="#171717" stroke-width="4.133" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M492.76 178.856C492.102 174.71 492.495 170.465 493.904 166.511" stroke="#171717" stroke-width="4.133" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M542.706 192.483C542.733 188.584 543.793 184.761 545.778 181.405" stroke="#171717" stroke-width="4.133" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M192.176 577.293L191.859 402.558L442.787 433.683L588.89 359.488L652.214 327.343L910.913 268.511L884.652 564.892" stroke="#171717" stroke-width="4.133" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M179.542 733.234L173.7 883.016L377.947 906.356L663.885 765.006L866.175 774.733L872.017 699.353" stroke="#171717" stroke-width="4.133" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M652.214 327.343L663.885 765.006" stroke="#171717" stroke-width="4.133" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M442.787 433.683L377.947 906.356" stroke="#171717" stroke-width="4.133" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M486.85 313.786C487.575 303.276 492.146 293.402 499.691 286.05C507.517 278.486 517.879 274.256 527.055 268.387C546.289 256.069 560.04 236.545 569.202 215.63C578.364 194.715 583.339 172.243 588.257 149.936" stroke="#171717" stroke-width="4.133" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M894.834 423.166C877.928 412.654 860.657 401.984 841.321 397.252C821.985 392.52 799.879 394.639 784.768 407.6C765.493 424.133 762.588 452.676 749.051 474.163C742.874 483.804 734.604 491.931 724.857 497.939C715.109 503.947 704.133 507.683 692.744 508.87C672.368 510.835 649.832 504.883 632.599 515.93C619.319 524.442 613.338 541.041 612.438 556.788C611.538 572.535 614.789 588.202 615.621 603.952C616.842 627.04 611.383 652.752 592.685 666.352C573.504 680.298 547.093 677.165 524.485 684.335C491.564 694.776 469.285 726.959 461.044 760.499C452.803 794.039 456.194 829.199 459.637 863.568" stroke="#171717" stroke-width="4.133" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M193.918 500.171C219.038 490.085 249.318 494.144 270.893 510.489C280.267 517.589 287.962 526.716 297.349 533.801C306.736 540.886 318.794 545.916 330.177 542.959C343.592 539.473 352.154 526.17 364.729 520.339C377.635 514.356 394.242 517.682 403.847 528.175C409.857 534.742 413.015 543.352 417.547 551.011C422.079 558.67 429.032 565.967 437.909 566.633C444.779 567.148 451.401 563.477 456.219 558.554C461.037 553.631 464.407 547.514 468.031 541.654C477.349 526.584 491.87 511.332 509.495 513.14C526.719 514.906 537.852 531.94 553.143 540.059C565.317 546.526 579.907 547.152 592.179 553.433C600.035 557.471 606.591 563.647 611.088 571.25" stroke="#171717" stroke-width="4.133" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M515.254 514.573C503.97 499.379 505.695 478.473 508.335 459.735C510.975 440.997 513.674 420.463 503.735 404.36" stroke="#171717" stroke-width="4.133" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M545.205 682.632C543.349 696.332 553.073 709.917 565.861 715.166C578.649 720.415 593.539 718.413 606.087 712.609C618.599 706.822 630.817 697.167 644.445 699.246C648.511 699.866 652.518 701.546 656.595 701C664.055 700 668.365 692.361 673.595 686.95C683.98 676.213 700.851 673.38 715.186 677.58C729.521 681.78 741.447 692.095 750.291 704.134C759.135 716.173 765.243 729.957 771.281 743.62C775.177 752.438 779.074 761.256 782.972 770.074" stroke="#171717" stroke-width="4.133" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M362.293 595.8L344.383 599.413C343.751 599.541 343.101 599.543 342.469 599.419C341.837 599.295 341.236 599.048 340.699 598.692C340.163 598.336 339.702 597.877 339.343 597.342C338.984 596.808 338.733 596.207 338.607 595.576L331.382 559.757C331.254 559.126 331.252 558.476 331.375 557.843C331.499 557.211 331.746 556.61 332.103 556.074C332.459 555.537 332.918 555.076 333.452 554.717C333.987 554.358 334.587 554.108 335.219 553.981L353.129 550.368C353.76 550.24 354.41 550.238 355.042 550.362C355.674 550.486 356.276 550.733 356.812 551.089C357.348 551.445 357.809 551.904 358.168 552.439C358.528 552.973 358.778 553.574 358.905 554.205L366.13 590.024C366.257 590.655 366.259 591.305 366.136 591.937C366.012 592.57 365.765 593.171 365.408 593.707C365.052 594.244 364.593 594.705 364.059 595.064C363.524 595.423 362.924 595.673 362.293 595.8V595.8Z" fill="#171717"/>
|
||||||
|
<path d="M361.315 515.055L353.915 518.93C353.344 519.229 352.721 519.413 352.079 519.471C351.438 519.529 350.791 519.46 350.176 519.267C349.561 519.075 348.991 518.764 348.496 518.35C348.002 517.937 347.594 517.431 347.296 516.86L337.941 498.992C337.642 498.422 337.458 497.798 337.4 497.156C337.342 496.515 337.411 495.868 337.603 495.254C337.795 494.639 338.107 494.068 338.52 493.574C338.933 493.079 339.439 492.671 340.01 492.373L347.41 488.498C347.98 488.199 348.604 488.015 349.246 487.957C349.887 487.899 350.534 487.968 351.149 488.161C351.763 488.353 352.334 488.664 352.828 489.078C353.323 489.491 353.731 489.997 354.029 490.568L363.385 508.436C363.684 509.006 363.868 509.63 363.926 510.272C363.984 510.913 363.914 511.56 363.722 512.175C363.53 512.789 363.218 513.36 362.805 513.854C362.392 514.349 361.886 514.757 361.315 515.055V515.055Z" fill="#171717"/>
|
||||||
|
<path d="M337.261 530.181L332.961 532.211C332.379 532.486 331.748 532.644 331.104 532.675C330.461 532.706 329.818 532.61 329.211 532.392C328.605 532.175 328.048 531.84 327.571 531.406C327.095 530.973 326.708 530.45 326.434 529.867L321.08 518.511C320.805 517.929 320.647 517.298 320.616 516.654C320.585 516.011 320.681 515.368 320.899 514.761C321.116 514.155 321.452 513.598 321.885 513.121C322.318 512.645 322.841 512.258 323.424 511.984L327.724 509.955C328.306 509.68 328.937 509.522 329.581 509.491C330.224 509.46 330.867 509.556 331.473 509.773C332.079 509.991 332.637 510.326 333.113 510.759C333.59 511.192 333.977 511.715 334.251 512.298L339.605 523.654C339.88 524.236 340.038 524.867 340.069 525.511C340.1 526.154 340.004 526.797 339.786 527.404C339.569 528.01 339.233 528.567 338.8 529.044C338.367 529.52 337.844 529.907 337.261 530.181V530.181Z" fill="#171717"/>
|
||||||
|
<path d="M760.684 414.026L755.26 429.467C754.796 430.789 753.825 431.872 752.562 432.479C751.299 433.085 749.846 433.165 748.524 432.701L719.472 422.5C718.818 422.27 718.215 421.913 717.698 421.45C717.181 420.987 716.761 420.427 716.461 419.802C716.16 419.176 715.986 418.498 715.948 417.805C715.91 417.112 716.009 416.419 716.239 415.764L721.663 400.323C722.128 399.001 723.098 397.918 724.362 397.311C725.625 396.705 727.077 396.625 728.399 397.089L757.451 407.295C758.772 407.759 759.855 408.729 760.461 409.991C761.067 411.253 761.148 412.705 760.684 414.026V414.026Z" fill="#171717"/>
|
||||||
|
<path d="M773.41 391.019L771.469 396.547C771.004 397.869 770.033 398.952 768.77 399.559C767.507 400.165 766.055 400.245 764.733 399.781L750.906 394.924C749.584 394.46 748.5 393.489 747.894 392.226C747.287 390.963 747.207 389.51 747.672 388.188L749.613 382.66C750.077 381.338 751.048 380.255 752.311 379.648C753.574 379.042 755.026 378.962 756.349 379.426L770.177 384.283C771.498 384.748 772.582 385.718 773.188 386.981C773.795 388.245 773.874 389.697 773.41 391.019V391.019Z" fill="#171717"/>
|
||||||
|
<path d="M742.676 638.152L755.145 644.577C756.391 645.219 757.331 646.329 757.758 647.664C758.185 648.999 758.065 650.449 757.423 651.695L745.437 674.955C744.795 676.201 743.685 677.14 742.35 677.568C741.016 677.995 739.566 677.874 738.32 677.233L725.85 670.808C724.604 670.166 723.665 669.055 723.238 667.721C722.811 666.386 722.931 664.936 723.573 663.69L735.558 640.43C736.2 639.184 737.311 638.245 738.645 637.817C739.98 637.39 741.43 637.511 742.676 638.152V638.152Z" fill="#171717"/>
|
||||||
|
<path d="M708.06 642.332L718.773 646.12C719.58 646.405 720.24 647 720.609 647.772C720.978 648.544 721.025 649.431 720.739 650.238L715.704 664.478C715.563 664.878 715.345 665.245 715.061 665.56C714.778 665.875 714.435 666.132 714.053 666.314C713.67 666.497 713.256 666.602 712.832 666.624C712.409 666.647 711.986 666.585 711.586 666.444L700.873 662.657C700.066 662.371 699.406 661.777 699.037 661.005C698.669 660.232 698.622 659.345 698.907 658.538L703.942 644.299C704.228 643.492 704.822 642.832 705.594 642.463C706.366 642.095 707.253 642.047 708.06 642.332V642.332Z" fill="#171717"/>
|
||||||
|
<path d="M452.509 732.583C452.509 732.583 474.554 684.602 491.409 677.471C508.264 670.34 566.621 670.339 580.238 658.671C593.855 647.003 600.338 616.526 600.987 602.909C601.636 589.292 589.964 565.303 579.587 562.709C569.21 560.115 539.387 552.983 534.848 547.796C530.309 542.609 519.287 529.642 505.671 530.938C492.055 532.234 476.5 555.574 476.5 555.574C476.5 555.574 451.212 575.026 448.619 587.993C446.026 600.96 426.574 735.824 426.574 735.824C426.574 735.824 417.497 771.485 432.409 769.541C447.321 767.597 452.509 732.583 452.509 732.583Z" fill="white"/>
|
||||||
|
<path d="M739.744 511.486C741.859 510.486 768.273 493.979 775.404 479.067C782.535 464.155 777.998 440.167 788.372 433.031C798.746 425.895 821.44 415.525 835.056 420.063C848.672 424.601 863.585 441.463 856.456 463.505C849.327 485.547 850.639 512.805 827.279 534.827C804.585 556.227 750.77 576.972 729.373 575.675C707.976 574.378 684.358 559.161 683.986 543.904C683.335 517.321 717.701 521.859 739.744 511.486Z" fill="white"/>
|
||||||
|
<path d="M308.568 769.542C308.568 769.542 273.555 759.168 265.775 786.399C257.995 813.63 250.633 835.768 256.049 851.238C260.8 864.805 281.336 879.767 305.974 879.767C330.612 879.767 358.494 849.941 362.383 831.786C366.272 813.631 367.571 777.97 355.899 774.08C344.227 770.19 308.568 769.542 308.568 769.542Z" fill="white"/>
|
||||||
|
<path d="M480.956 387.032C478.806 382.271 476.657 377.511 474.508 372.752" stroke="#171717" stroke-width="4.133" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M468.741 384.44C474.381 381.24 480.022 378.037 485.664 374.831" stroke="#171717" stroke-width="4.133" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M290.111 356.007L283.164 340.364" stroke="#171717" stroke-width="4.133" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M276.075 353.8C282.164 350.188 288.252 346.575 294.34 342.962" stroke="#171717" stroke-width="4.133" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M383.043 409.733C380.457 404.326 377.871 398.92 375.284 393.513" stroke="#171717" stroke-width="4.133" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M369.566 409.11C375.402 405.003 381.235 400.895 387.066 396.787" stroke="#171717" stroke-width="4.133" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M161.513 480.26L148.972 464.88" stroke="#171717" stroke-width="4.133" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M146.479 481.666L163.337 464.808" stroke="#171717" stroke-width="4.133" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M125.592 601.735C122.129 598.068 118.667 594.398 115.206 590.724" stroke="#171717" stroke-width="4.133" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M113.274 603.448C117.601 598.264 121.928 593.08 126.255 587.896" stroke="#171717" stroke-width="4.133" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M170.276 555.055L161.033 541.555" stroke="#171717" stroke-width="4.133" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M101.726 520.554L114.044 506.937" stroke="#171717" stroke-width="4.133" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M173.701 431.086C171.877 426.753 168.975 422.958 165.271 420.063" stroke="#171717" stroke-width="4.133" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M188.515 373.272L201.487 360.957" stroke="#171717" stroke-width="4.133" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M277.774 395C275.293 391.463 272.813 387.926 270.333 384.388" stroke="#171717" stroke-width="4.133" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M348.2 352.7C351.874 348.594 355.549 344.488 359.225 340.383" stroke="#171717" stroke-width="4.133" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M340.116 399.528L331.874 390.921" stroke="#171717" stroke-width="4.133" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M417.5 370.786L426.577 359.114" stroke="#171717" stroke-width="4.133" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M438.893 409.69C436.731 407.097 434.57 404.503 432.409 401.909" stroke="#171717" stroke-width="4.133" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M518.601 373.329C521.195 370.953 523.789 368.576 526.383 366.199" stroke="#171717" stroke-width="4.133" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M498.926 340.245L504.146 319.505" stroke="#171717" stroke-width="4.133" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M474.513 336.411C476.467 329.064 478.422 321.718 480.377 314.373" stroke="#171717" stroke-width="4.133" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M444.629 331.211C446.408 323.874 448.187 316.538 449.967 309.202" stroke="#171717" stroke-width="4.133" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M419.376 326.679C421.29 319.107 423.203 311.535 425.116 303.962" stroke="#171717" stroke-width="4.133" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M397.842 322.11L402.491 302.036" stroke="#171717" stroke-width="4.133" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M160.187 616.954C154.694 612.111 146.21 611.814 139.498 614.742C132.786 617.67 127.607 623.3 123.457 629.33C105.029 656.117 104.785 694.174 122.869 721.196L126.369 718.32" stroke="#171717" stroke-width="4.133" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M914.032 433.376L920.532 372.076" stroke="#171717" stroke-width="4.133" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M56.4753 684.926C43.8516 667.24 38.5246 645.371 41.6003 623.861" stroke="#171717" stroke-width="4.133" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M510.43 869.435C537.609 853.562 565.234 838.489 593.304 824.215" stroke="#171717" stroke-width="4.133" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<g opacity="0.1">
|
||||||
|
<path d="M523.418 141.879C520.188 137.497 512.985 137.324 507.985 136.661C501.499 135.813 494.945 135.605 488.418 136.039C475.175 136.926 462.431 141.211 452.999 150.925C443.482 160.725 438.083 174.032 434.717 187.084C430.591 203.084 427.446 219.373 424.935 235.697C423.489 245.09 422.263 254.515 421.257 263.974C420.264 273.385 418.85 283.166 419.185 292.634C419.211 294.956 420.071 297.192 421.608 298.933C423.145 300.674 425.257 301.805 427.558 302.118C431.82 302.625 437.458 300.011 438.158 295.201C439.55 285.509 439.758 275.629 440.751 265.88C441.699 256.583 442.905 247.32 444.368 238.089C447.252 219.925 451.091 201.926 455.868 184.166C459.618 170.25 465.757 155.787 478.713 148.219C485.696 144.253 493.626 142.26 501.655 142.456C505.604 142.49 509.547 142.759 513.463 143.262C516.848 143.699 519.936 144.635 523.121 143.033C523.313 142.919 523.452 142.734 523.508 142.518C523.565 142.302 523.533 142.072 523.421 141.879H523.418Z" fill="#171717"/>
|
||||||
|
</g>
|
||||||
|
<g opacity="0.1">
|
||||||
|
<path d="M404.855 299.824C403.616 299.876 402.633 299.098 401.378 299.048C400.403 299.071 399.438 299.241 398.515 299.554C396.259 300.343 394.11 301.411 392.12 302.734C390.12 303.977 387.929 305.027 386.42 306.867C384.353 309.153 382.827 311.875 381.956 314.831C379.347 325.366 395.439 329.831 398.228 319.317C398.928 316.69 398.867 316.198 399.595 313.517C399.899 312.755 400.041 311.937 400.012 311.117C400.026 310.202 400.01 310.079 399.964 310.749C399.843 311.442 399.981 311.317 400.38 310.376C400.688 309.672 400.981 308.962 401.259 308.247L399.873 310.626C400.948 309.338 402.105 308.122 403.339 306.985C404.254 306.109 405.046 304.147 405.899 303.671C406.279 303.435 406.573 303.083 406.737 302.667C406.9 302.251 406.926 301.794 406.809 301.362C406.692 300.93 406.439 300.548 406.088 300.272C405.736 299.995 405.305 299.84 404.858 299.828L404.855 299.824Z" fill="#171717"/>
|
||||||
|
</g>
|
||||||
|
<g opacity="0.1">
|
||||||
|
<path d="M380.778 321.208C369.027 318.387 356.964 319.143 345.05 317.385C333.306 315.652 321.872 313.796 309.935 313.685C287.032 313.505 264.187 316.011 241.867 321.149C200.105 330.76 162.742 351.803 134.448 384.165C106.717 415.882 87.4001 454.664 75.3001 494.847C62.5005 537.469 58.2911 582.209 62.9161 626.471C65.4061 649.985 68.9981 675.557 82.6651 695.534C96.2781 715.434 119.045 728.39 143.477 723.084C149.491 721.778 152.999 714.77 151.433 709.072C149.716 702.826 143.462 699.851 137.421 701.116C122.149 704.316 106.941 692.955 99.3471 680.066C90.1111 664.391 87.2001 645.179 85.2201 627.357C80.7484 586.879 83.8647 545.922 94.4091 506.586C104.209 469.971 120.235 433.713 144.009 403.938C168.142 373.715 199.396 352.365 236.56 341.452C259.16 334.816 282.578 331.766 306.039 330.342C318.475 329.587 330.748 328.197 343.098 326.706C355.624 325.194 368.264 327.343 380.778 325.638C383.078 325.324 382.848 321.705 380.778 321.208V321.208Z" fill="#171717"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<defs>
|
||||||
|
<clipPath id="clip0_46_7743">
|
||||||
|
<rect width="960" height="960" fill="white"/>
|
||||||
|
</clipPath>
|
||||||
|
<clipPath id="clip1_46_7743">
|
||||||
|
<rect width="885" height="858" fill="white" transform="translate(38 51)"/>
|
||||||
|
</clipPath>
|
||||||
|
</defs>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 27 KiB |
|
@ -0,0 +1,78 @@
|
||||||
|
<svg width="960" height="960" viewBox="0 0 960 960" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<mask id="mask0_1_4355" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="62" y="38" width="836" height="884">
|
||||||
|
<path d="M898 38H62V922H898V38Z" fill="white"/>
|
||||||
|
</mask>
|
||||||
|
<g mask="url(#mask0_1_4355)">
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M847.414 115.787C863.872 128.638 853.851 153.326 853.851 153.326C853.851 153.326 663.053 875.11 655.337 895.163C647.621 915.216 621.394 919.927 621.394 919.927L568.512 919.861C582.292 919.118 605.286 912.244 618.443 877.426C625.943 857.57 656.999 745.707 692.548 614.873C703.488 574.624 714.848 532.573 726.087 490.847C774.107 312.547 819.776 140.347 819.776 140.347C819.776 140.347 830.606 104.961 814.05 89.5304C820.213 94.4004 834.824 105.94 847.414 115.787ZM802.659 279.421C803.461 279.629 803.943 280.447 803.735 281.249L787.038 345.718C786.83 346.52 786.012 347.002 785.21 346.794C784.408 346.586 783.926 345.768 784.134 344.966L800.831 280.497C801.039 279.695 801.857 279.213 802.659 279.421ZM828.246 193.137C828.462 192.338 827.99 191.514 827.19 191.297C826.39 191.081 825.566 191.553 825.35 192.353L808.351 255.135C808.134 255.935 808.607 256.758 809.407 256.975C810.206 257.191 811.03 256.719 811.247 255.919L828.246 193.137Z" fill="#FAFAFA"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M571.765 348.036C583.751 357.975 596.355 367.144 609.501 375.488L609.176 376C609.176 376 584.117 406.862 572.923 431.931C561.729 457 554.123 507.544 554.123 507.544L587.957 519.095L578.701 544.176C578.701 544.176 648.992 573.337 692.531 614.876H692.541C703.48 574.627 714.846 532.575 726.08 490.85H726.07C726.07 490.85 691.413 444.667 692.531 418.439C692.783 412.534 695.442 404.067 698.672 393.783C709.787 358.392 727.662 301.478 677.449 253.356C612.644 191.25 570.264 199.151 527.983 208.222C483.045 217.871 457.593 267.628 478.805 292.315C446.02 281.895 409.88 333.215 409.88 333.215L364.342 508.221C364.342 508.221 450.654 497.255 468.008 503.555L478.422 481.687L513.522 493.676C513.522 493.676 530.098 452.381 508.889 426.15C487.68 399.919 499.242 347.072 519.689 327.019L519.612 326.483C538.311 323.764 542.453 311.983 542.453 311.983L542.507 311.961C546.313 320.934 554.215 333.446 570.607 347.074C570.833 347.261 571.062 347.452 571.29 347.642C571.449 347.774 571.608 347.906 571.765 348.036ZM653.646 240.191C653.011 239.658 652.065 239.741 651.532 240.376C651 241.01 651.083 241.957 651.718 242.489C675.714 262.621 691.26 291.043 695.267 322.109C699.274 353.175 691.448 384.611 673.345 410.173C672.866 410.849 673.026 411.785 673.702 412.264C674.378 412.743 675.314 412.583 675.793 411.907C694.332 385.73 702.345 353.538 698.242 321.725C694.139 289.912 678.22 260.807 653.646 240.191Z" fill="#FAFAFA"/>
|
||||||
|
<path d="M557.114 919.073C557.114 919.073 337.257 864.699 307.172 851.962C277.087 839.225 286.342 807.999 286.342 807.999L364.349 508.223C364.349 508.223 450.661 497.262 468.015 503.557L478.429 481.689L513.529 493.678L554.129 507.546L587.964 519.099L578.708 544.18C578.708 544.18 648.999 573.336 692.538 614.88H692.548C657.001 745.706 625.94 857.569 618.443 877.425C605.286 912.243 582.292 919.117 568.512 919.86H568.457L563.069 919.849H563.059C561.059 919.757 559.07 919.498 557.114 919.073Z" fill="#171717"/>
|
||||||
|
<path d="M317.454 239.463L363.747 298.093L288.147 273.406C288.147 273.406 154.439 291.406 116.376 292.946C78.313 294.486 79.864 266.718 79.864 266.718C79.864 266.718 77.296 103.7 79.864 68.7288C82.432 33.7578 108.147 40.4358 108.147 40.4358C108.147 40.4358 296.376 65.1228 317.457 68.7288C338.538 72.3348 334.429 92.8918 334.429 92.8918L317.454 239.463ZM250.092 134.944C250.092 134.944 258.955 113.721 238.136 108.716C217.317 103.711 203.013 137.84 203.013 137.84C203.013 137.84 186.784 90.1398 153.693 103.973C131.293 113.339 158.206 146.408 158.206 146.408L216.148 227.125L250.092 134.944Z" fill="#171717"/>
|
||||||
|
<path d="M568.512 919.861C582.292 919.118 605.286 912.244 618.443 877.426C625.943 857.57 656.999 745.707 692.548 614.873C703.488 574.624 714.848 532.573 726.087 490.847C774.107 312.547 819.776 140.347 819.776 140.347C819.776 140.347 830.606 104.961 814.05 89.5303C813.165 88.7041 812.215 87.9513 811.208 87.2793" stroke="#FAFAFA" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M563.068 919.85C564.863 919.947 566.661 919.951 568.456 919.861" stroke="#FAFAFA" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M811.076 87.1756C806.923 84.4106 801.459 82.6846 794.323 82.4876C751.506 81.3296 520.087 76.6996 520.087 76.6996C520.087 76.6996 478.767 68.4996 464.887 121.834L409.887 333.221L364.348 508.223L286.341 808C286.341 808 277.085 839.244 307.171 851.964C337.257 864.684 557.113 919.075 557.113 919.075C559.07 919.499 561.058 919.759 563.058 919.851" stroke="#FAFAFA" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M363.747 298.093L317.454 239.463L334.426 92.8918C334.426 92.8918 338.546 72.3248 317.454 68.7288C296.362 65.1328 108.144 40.4358 108.144 40.4358C108.144 40.4358 82.4291 33.7588 79.8611 68.7288C77.2931 103.699 79.8611 266.718 79.8611 266.718C79.8611 266.718 78.3201 294.498 116.373 292.946C154.426 291.394 288.144 273.406 288.144 273.406L363.747 298.093Z" stroke="#FAFAFA" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M203.013 137.839C203.013 137.839 217.307 103.699 238.136 108.715C258.965 113.731 250.092 134.943 250.092 134.943L216.148 227.124L158.206 146.407C158.206 146.407 131.29 113.338 153.693 103.972C186.784 90.1374 203.013 137.839 203.013 137.839Z" stroke="#FAFAFA" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M562.763 919.85H563.069L568.457 919.861H568.512L621.394 919.927C621.394 919.927 647.622 915.227 655.337 895.163C663.052 875.099 853.851 153.326 853.851 153.326C853.851 153.326 863.872 128.638 847.414 115.787C834.824 105.94 820.214 94.3998 814.05 89.5258C812.542 88.3348 811.55 87.5478 811.208 87.2748L811.077 87.1748" stroke="#FAFAFA" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M364.349 508.223C364.349 508.223 450.661 497.261 468.015 503.556L478.429 481.688L513.529 493.677L554.129 507.546L587.964 519.099L578.708 544.181C578.708 544.181 648.999 573.336 692.538 614.88" stroke="#FAFAFA" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M542.458 311.982C542.458 311.982 538.316 323.763 519.617 326.482C517.6 326.777 515.568 326.956 513.53 327.018" stroke="#FAFAFA" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M513.53 493.678C513.53 493.678 530.109 452.378 508.897 426.152C487.685 399.926 499.247 347.074 519.697 327.021" stroke="#FAFAFA" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M554.129 507.546C554.129 507.546 561.735 457.002 572.929 431.933C584.123 406.864 609.175 376 609.175 376" stroke="#FAFAFA" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M538.983 298.093C538.983 298.093 538.896 303.415 542.513 311.961C546.313 320.934 554.218 333.446 570.613 347.074C570.996 347.391 571.389 347.719 571.771 348.036C583.755 357.974 596.357 367.143 609.501 375.488C620.134 382.165 626.538 385.258 626.538 385.258" stroke="#FAFAFA" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M478.812 292.312C446.027 281.897 409.887 333.212 409.887 333.212" stroke="#FAFAFA" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M726.076 490.846C726.076 490.846 691.433 444.664 692.537 418.436C693.641 392.208 742.25 315.446 677.455 253.352C612.66 191.258 570.27 199.147 527.989 208.218C483.051 217.867 457.599 267.625 478.811 292.312" stroke="#FAFAFA" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M593.165 106.115C593.167 107.221 592.84 108.302 592.227 109.222C591.613 110.142 590.741 110.859 589.72 111.284C588.699 111.708 587.575 111.82 586.49 111.605C585.406 111.39 584.409 110.859 583.627 110.078C582.844 109.297 582.311 108.301 582.094 107.217C581.877 106.133 581.987 105.009 582.409 103.987C582.831 102.965 583.547 102.091 584.465 101.476C585.384 100.861 586.465 100.532 587.57 100.531C589.053 100.53 590.475 101.118 591.524 102.165C592.573 103.212 593.163 104.633 593.165 106.115Z" stroke="#FAFAFA" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M692.319 114.934L610.919 111.481C610.394 111.46 609.878 111.335 609.401 111.115C608.925 110.894 608.496 110.581 608.141 110.194C607.785 109.807 607.51 109.354 607.33 108.86C607.151 108.366 607.07 107.842 607.094 107.317L607.116 106.574C607.163 105.513 607.629 104.515 608.411 103.798C609.194 103.08 610.229 102.703 611.29 102.749L692.69 106.192C693.215 106.214 693.731 106.34 694.208 106.562C694.684 106.784 695.113 107.098 695.468 107.486C695.823 107.873 696.098 108.327 696.278 108.822C696.458 109.316 696.538 109.84 696.515 110.366L696.483 111.098C696.439 112.158 695.975 113.158 695.195 113.877C694.414 114.597 693.38 114.977 692.319 114.934Z" stroke="#FAFAFA" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M525.225 420.491C534.165 419.522 543.03 417.952 551.759 415.791C552.567 415.573 553.354 415.354 554.13 415.125C561.616 412.917 567.594 409.989 567.53 406.284C567.355 397.384 580.415 429.638 556.569 435.758C553.655 436.472 550.662 436.807 547.663 436.752" stroke="#FAFAFA" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M554.129 416.315C554.129 416.315 562.161 428.238 556.566 435.757" stroke="#FAFAFA" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M538.207 376C538.207 376 525.158 374.46 525.224 382.951C525.29 391.442 537.245 388.351 537.245 388.351" stroke="#FAFAFA" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M567.91 369.444L571.767 360.188" stroke="#FAFAFA" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M524.131 350.166L527.027 343.609" stroke="#FAFAFA" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M522.973 329.72C522.973 329.72 543.038 329.337 544.765 334.736" stroke="#FAFAFA" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M562.763 345.336L571.768 348.036" stroke="#FAFAFA" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M350.819 97.3887C352.659 92.9137 353.488 88.0875 353.246 83.2551C353.004 78.4226 351.697 73.7034 349.419 69.4347" stroke="#FAFAFA" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M83.8833 314.94C79.5247 313.694 75.4902 311.513 72.0609 308.548C68.6316 305.583 65.8901 301.906 64.0273 297.773" stroke="#FAFAFA" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M858.049 363.624L849.988 345.093" stroke="#FAFAFA" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M846.308 361.2L862.526 351.974" stroke="#FAFAFA" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M893.664 265.411L884.356 250.399" stroke="#FAFAFA" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M882.109 265.08L896.021 255.863" stroke="#FAFAFA" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M187.2 531.236L178.823 516.349" stroke="#FAFAFA" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M174.101 531.445L184.515 519.874" stroke="#FAFAFA" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M256.259 751.3L242.374 724.688" stroke="#FAFAFA" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M236.588 751.299L258.573 732.785" stroke="#FAFAFA" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M111.619 606.658L97.7344 593.929" stroke="#FAFAFA" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M95.4199 607.815L106.991 592.771" stroke="#FAFAFA" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M564.036 537.224L568.646 524.49" stroke="#FAFAFA" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M543.226 530.288L547.854 517.559" stroke="#FAFAFA" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M520.082 523.345L523.554 510.617" stroke="#FAFAFA" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M490.838 511.566C492.721 509.865 494.158 507.729 495.023 505.344C495.888 502.959 496.154 500.398 495.799 497.886" stroke="#FAFAFA" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M640.312 641.15L649.55 636.483" stroke="#FAFAFA" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M597.609 670.3L591.823 654.1" stroke="#FAFAFA" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M561.738 597.4L572.152 593.928" stroke="#FAFAFA" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M539.675 697.859L524.593 703.541" stroke="#FAFAFA" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M488.84 649.471L485.369 636.743" stroke="#FAFAFA" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M446.94 582.97L460.81 576.822L457.65 577.901" stroke="#FAFAFA" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M396.548 561.453L393.023 548.739" stroke="#FAFAFA" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M400.9 651.785L389.329 655.256" stroke="#FAFAFA" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M405.527 740.882L404.37 725.84" stroke="#FAFAFA" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M339.572 768.654L352.3 761.711" stroke="#FAFAFA" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M483.054 757.083C483.55 753.077 482.738 749.019 480.74 745.512" stroke="#FAFAFA" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M569.838 760.555C574.623 760.16 579.123 758.115 582.567 754.77" stroke="#FAFAFA" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M631.166 729.313L627.694 715.428" stroke="#FAFAFA" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M588.493 843.855L587.307 828.814" stroke="#FAFAFA" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M522.4 838.08L510.825 840.399" stroke="#FAFAFA" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M447.126 857.741C448.062 852.988 447.31 848.058 445 843.801" stroke="#FAFAFA" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M390.429 826.287L376.541 829.746" stroke="#FAFAFA" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M846.375 498.983C828.02 504.928 813.08 519.161 803.566 535.945C794.052 552.729 789.546 571.945 787.474 591.122C786.137 603.507 785.788 616.206 788.966 628.251C792.144 640.296 799.219 651.717 809.981 657.99C820.743 664.263 835.393 664.43 845.103 656.627C854.813 648.824 857.356 632.746 849.045 623.467C838.137 611.289 815.99 617.467 807.745 631.581C799.5 645.695 801.737 663.581 806.666 679.166C812.06 696.226 820.343 712.343 824.609 729.72C828.875 747.097 828.547 766.843 817.923 781.24C807.299 795.637 784.101 801.15 771.036 788.926C764.236 782.561 761.485 771.49 766.336 763.539" stroke="#FAFAFA" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M776.962 702.699L767.705 692.285" stroke="#FAFAFA" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M764.234 703.856L776.962 689.971" stroke="#FAFAFA" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M856.801 586.986L851.015 576.572" stroke="#FAFAFA" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M848.848 584.863L858.098 577.911" stroke="#FAFAFA" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M177.938 340.663C209.097 346.539 240.565 353.743 268.175 369.334C295.785 384.925 319.42 410.141 326.307 441.092C333.194 472.043 319.772 508.264 291.106 521.823C282.887 525.711 273.107 527.623 264.738 524.065C256.369 520.507 250.663 510.096 254.554 501.879C258.189 494.204 268.692 491.619 276.554 494.836C284.416 498.053 289.748 505.624 292.731 513.576C301.986 538.252 289.676 568.993 265.947 580.462C255.727 585.401 244.263 586.954 233.298 589.89C222.333 592.826 211.136 597.674 204.721 607.039C198.306 616.404 198.914 631.216 208.497 637.3" stroke="#FAFAFA" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<g opacity="0.1">
|
||||||
|
<path d="M554.616 506.488C557.461 501.534 558.592 495.727 559.947 490.22C561.302 484.713 562.726 479.249 564.332 473.812C567.421 462.938 571.143 452.253 575.478 441.812C584.28 420.93 595.738 401.27 609.568 383.318C613.02 378.891 613.886 372.918 609.568 368.602C605.978 365.011 598.32 364.139 594.851 368.602C579.388 388.302 566.653 409.998 556.991 433.102C552.38 444.073 548.558 455.358 545.552 466.872C542.616 478.382 538.409 492.952 541.252 504.742C542.735 510.895 551.546 511.842 554.618 506.489L554.616 506.488Z" fill="#FAFAFA"/>
|
||||||
|
</g>
|
||||||
|
<g opacity="0.1">
|
||||||
|
<path d="M578.72 517.461C571.874 519.647 567.242 524.304 565.496 531.393C563.931 537.749 564.387 545.004 567.367 550.688C575.027 565.295 592.983 569.217 606.605 575.977C621.853 583.544 636.148 592.899 649.826 602.999C656.468 607.899 662.89 613.106 669.28 618.332C672.471 620.943 675.65 623.568 678.816 626.208C683.468 630.075 687.682 634.254 694.247 632.013C698.509 630.559 700.477 627.44 700.993 623.154C702.017 614.634 691.306 609.108 685.539 604.561C679.744 599.993 673.914 595.467 668.006 591.045C656.105 581.939 643.673 573.548 630.777 565.916C618.551 558.856 605.503 554.069 592.893 547.875C588.6 545.766 583.537 543.095 582.106 538.103C581.462 535.859 582.238 532.658 584.606 531.426C592.246 527.454 586.989 514.826 578.72 517.461Z" fill="#FAFAFA"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 18 KiB |
|
@ -0,0 +1,80 @@
|
||||||
|
<svg width="960" height="960" viewBox="0 0 960 960" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<g clip-path="url(#clip0_435_1373)">
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M847.414 115.787C863.872 128.638 853.851 153.326 853.851 153.326C853.851 153.326 663.053 875.11 655.337 895.163C647.621 915.216 621.394 919.927 621.394 919.927L568.512 919.861C582.292 919.118 605.286 912.244 618.443 877.426C625.943 857.57 656.999 745.707 692.548 614.873C703.488 574.624 714.848 532.573 726.087 490.847C774.107 312.547 819.776 140.347 819.776 140.347C819.776 140.347 830.606 104.961 814.05 89.5303C820.213 94.4003 834.824 105.94 847.414 115.787ZM802.659 279.421C803.461 279.629 803.943 280.447 803.735 281.249L787.038 345.718C786.83 346.52 786.012 347.002 785.21 346.794C784.408 346.586 783.926 345.768 784.134 344.966L800.831 280.497C801.039 279.695 801.857 279.213 802.659 279.421ZM828.246 193.137C828.462 192.338 827.99 191.514 827.19 191.297C826.39 191.081 825.566 191.553 825.35 192.353L808.351 255.135C808.134 255.935 808.607 256.758 809.407 256.975C810.206 257.191 811.03 256.719 811.247 255.919L828.246 193.137Z" fill="#171717"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M571.765 348.036C583.751 357.975 596.355 367.144 609.501 375.488L609.176 376C609.176 376 584.117 406.862 572.923 431.931C561.729 457 554.123 507.544 554.123 507.544L587.957 519.095L578.701 544.176C578.701 544.176 648.992 573.337 692.531 614.876H692.541C703.48 574.627 714.846 532.575 726.08 490.85H726.07C726.07 490.85 691.413 444.667 692.531 418.439C692.783 412.534 695.442 404.067 698.672 393.783C709.787 358.392 727.662 301.478 677.449 253.356C612.644 191.25 570.264 199.151 527.983 208.222C483.045 217.871 457.593 267.628 478.805 292.315C446.02 281.895 409.88 333.215 409.88 333.215L364.342 508.221C364.342 508.221 450.654 497.255 468.008 503.555L478.422 481.687L513.522 493.676C513.522 493.676 530.098 452.381 508.889 426.15C487.68 399.919 499.242 347.072 519.689 327.019L519.612 326.483C538.311 323.764 542.453 311.983 542.453 311.983L542.507 311.961C546.313 320.934 554.215 333.446 570.607 347.074C570.833 347.261 571.062 347.452 571.29 347.642C571.449 347.774 571.608 347.906 571.765 348.036ZM653.646 240.191C653.011 239.658 652.065 239.741 651.532 240.376C651 241.01 651.083 241.957 651.718 242.489C675.714 262.621 691.26 291.043 695.267 322.109C699.274 353.175 691.448 384.611 673.345 410.173C672.866 410.849 673.026 411.785 673.702 412.264C674.378 412.743 675.314 412.583 675.793 411.907C694.332 385.73 702.345 353.538 698.242 321.725C694.139 289.912 678.22 260.807 653.646 240.191Z" fill="#171717"/>
|
||||||
|
<path d="M557.114 919.073C557.114 919.073 337.257 864.699 307.172 851.962C277.087 839.225 286.342 807.999 286.342 807.999L364.349 508.223C364.349 508.223 450.661 497.262 468.015 503.557L478.429 481.689L513.529 493.678L554.129 507.546L587.964 519.099L578.708 544.18C578.708 544.18 648.999 573.336 692.538 614.88H692.548C657.001 745.706 625.94 857.569 618.443 877.425C605.286 912.243 582.292 919.117 568.512 919.86H568.457L563.069 919.849H563.059C561.059 919.757 559.07 919.498 557.114 919.073V919.073Z" fill="#FAFAFA"/>
|
||||||
|
<path d="M317.454 239.463L363.747 298.093L288.147 273.406C288.147 273.406 154.439 291.406 116.376 292.946C78.313 294.486 79.864 266.718 79.864 266.718C79.864 266.718 77.296 103.7 79.864 68.7288C82.432 33.7578 108.147 40.4358 108.147 40.4358C108.147 40.4358 296.376 65.1228 317.457 68.7288C338.538 72.3348 334.429 92.8918 334.429 92.8918L317.454 239.463ZM250.092 134.944C250.092 134.944 258.955 113.721 238.136 108.716C217.317 103.711 203.013 137.84 203.013 137.84C203.013 137.84 186.784 90.1398 153.693 103.973C131.293 113.339 158.206 146.408 158.206 146.408L216.148 227.125L250.092 134.944Z" fill="#FAFAFA"/>
|
||||||
|
<path d="M568.512 919.861C582.292 919.118 605.286 912.244 618.443 877.426C625.943 857.57 656.999 745.707 692.548 614.873C703.488 574.624 714.848 532.573 726.087 490.847C774.107 312.547 819.776 140.347 819.776 140.347C819.776 140.347 830.606 104.961 814.05 89.5303C813.165 88.7041 812.215 87.9513 811.208 87.2793" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M563.068 919.85C564.863 919.947 566.661 919.951 568.456 919.861" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M811.076 87.1756C806.923 84.4106 801.459 82.6846 794.323 82.4876C751.506 81.3296 520.087 76.6996 520.087 76.6996C520.087 76.6996 478.767 68.4996 464.887 121.834L409.887 333.221L364.348 508.223L286.341 808C286.341 808 277.085 839.244 307.171 851.964C337.257 864.684 557.113 919.075 557.113 919.075C559.07 919.499 561.058 919.759 563.058 919.851" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M363.747 298.093L317.454 239.463L334.426 92.8917C334.426 92.8917 338.546 72.3247 317.454 68.7287C296.362 65.1327 108.144 40.4357 108.144 40.4357C108.144 40.4357 82.4291 33.7587 79.8611 68.7287C77.2931 103.699 79.8611 266.718 79.8611 266.718C79.8611 266.718 78.3201 294.498 116.373 292.946C154.426 291.394 288.144 273.406 288.144 273.406L363.747 298.093Z" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M203.013 137.839C203.013 137.839 217.307 103.699 238.136 108.715C258.965 113.731 250.092 134.943 250.092 134.943L216.148 227.124L158.206 146.407C158.206 146.407 131.29 113.338 153.693 103.972C186.784 90.1374 203.013 137.839 203.013 137.839Z" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M562.763 919.85H563.069L568.457 919.861H568.512L621.394 919.927C621.394 919.927 647.622 915.227 655.337 895.163C663.052 875.099 853.851 153.326 853.851 153.326C853.851 153.326 863.872 128.638 847.414 115.787C834.824 105.94 820.214 94.3998 814.05 89.5258C812.542 88.3348 811.55 87.5478 811.208 87.2748L811.077 87.1748" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M364.349 508.223C364.349 508.223 450.661 497.261 468.015 503.556L478.429 481.688L513.529 493.677L554.129 507.546L587.964 519.099L578.708 544.181C578.708 544.181 648.999 573.336 692.538 614.88" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M542.458 311.982C542.458 311.982 538.316 323.763 519.617 326.482C517.6 326.777 515.568 326.956 513.53 327.018" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M513.53 493.678C513.53 493.678 530.109 452.378 508.897 426.152C487.685 399.926 499.247 347.074 519.697 327.021" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M554.129 507.546C554.129 507.546 561.735 457.002 572.929 431.933C584.123 406.864 609.175 376 609.175 376" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M538.983 298.093C538.983 298.093 538.896 303.415 542.513 311.961C546.313 320.934 554.218 333.446 570.613 347.074C570.996 347.391 571.389 347.719 571.771 348.036C583.755 357.974 596.357 367.143 609.501 375.488C620.134 382.165 626.538 385.258 626.538 385.258" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M478.812 292.312C446.027 281.897 409.887 333.212 409.887 333.212" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M726.076 490.846C726.076 490.846 691.433 444.664 692.537 418.436C693.641 392.208 742.25 315.446 677.455 253.352C612.66 191.258 570.27 199.147 527.989 208.218C483.051 217.867 457.599 267.625 478.811 292.312" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M593.165 106.115C593.167 107.221 592.84 108.302 592.227 109.222C591.613 110.142 590.741 110.859 589.72 111.284C588.699 111.708 587.575 111.82 586.49 111.605C585.406 111.39 584.409 110.859 583.627 110.078C582.844 109.297 582.311 108.301 582.094 107.217C581.877 106.133 581.987 105.009 582.409 103.987C582.831 102.965 583.547 102.091 584.465 101.476C585.384 100.861 586.465 100.532 587.57 100.531C589.053 100.53 590.475 101.118 591.524 102.165C592.573 103.212 593.163 104.633 593.165 106.115V106.115Z" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M692.319 114.934L610.919 111.481C610.394 111.46 609.878 111.335 609.401 111.115C608.925 110.894 608.496 110.581 608.141 110.194C607.785 109.807 607.51 109.354 607.33 108.86C607.151 108.366 607.07 107.842 607.094 107.317L607.116 106.574C607.163 105.513 607.629 104.515 608.411 103.798C609.194 103.08 610.229 102.703 611.29 102.749L692.69 106.192C693.215 106.214 693.731 106.34 694.208 106.562C694.684 106.784 695.113 107.098 695.468 107.486C695.823 107.873 696.098 108.327 696.278 108.822C696.458 109.316 696.538 109.84 696.515 110.366L696.483 111.098C696.439 112.158 695.975 113.158 695.195 113.877C694.414 114.597 693.38 114.977 692.319 114.934V114.934Z" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M525.225 420.491C534.165 419.522 543.03 417.952 551.759 415.791C552.567 415.573 553.354 415.354 554.13 415.125C561.616 412.917 567.594 409.989 567.53 406.284C567.355 397.384 580.415 429.638 556.569 435.758C553.655 436.472 550.662 436.807 547.663 436.752" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M554.129 416.315C554.129 416.315 562.161 428.238 556.566 435.757" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M538.207 376C538.207 376 525.158 374.46 525.224 382.951C525.29 391.442 537.245 388.351 537.245 388.351" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M567.91 369.444L571.767 360.188" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M524.131 350.166L527.027 343.609" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M522.973 329.72C522.973 329.72 543.038 329.337 544.765 334.736" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M562.763 345.336L571.768 348.036" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M350.819 97.3886C352.659 92.9136 353.488 88.0874 353.246 83.255C353.004 78.4225 351.697 73.7033 349.419 69.4346" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M83.8833 314.94C79.5247 313.694 75.4902 311.513 72.0609 308.548C68.6316 305.583 65.8901 301.906 64.0273 297.773" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M858.049 363.624L849.988 345.093" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M846.308 361.2L862.526 351.974" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M893.664 265.411L884.356 250.399" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M882.109 265.08L896.021 255.863" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M187.2 531.236L178.823 516.349" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M174.101 531.445L184.515 519.874" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M256.259 751.3L242.374 724.688" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M236.588 751.299L258.573 732.785" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M111.619 606.658L97.7344 593.929" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M95.4199 607.815L106.991 592.771" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M564.036 537.224L568.646 524.49" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M543.226 530.288L547.854 517.559" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M520.082 523.345L523.554 510.617" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M490.838 511.566C492.721 509.865 494.158 507.729 495.023 505.344C495.888 502.959 496.154 500.398 495.799 497.886" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M640.312 641.15L649.55 636.483" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M597.609 670.3L591.823 654.1" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M561.738 597.4L572.152 593.928" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M539.675 697.859L524.593 703.541" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M488.84 649.471L485.369 636.743" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M446.94 582.97L460.81 576.822L457.65 577.901" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M396.548 561.453L393.023 548.739" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M400.9 651.785L389.329 655.256" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M405.527 740.882L404.37 725.84" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M339.572 768.654L352.3 761.711" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M483.054 757.083C483.55 753.077 482.738 749.019 480.74 745.512" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M569.838 760.555C574.623 760.16 579.123 758.115 582.567 754.77" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M631.166 729.313L627.694 715.428" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M588.493 843.855L587.307 828.814" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M522.4 838.08L510.825 840.399" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M447.126 857.741C448.062 852.988 447.31 848.058 445 843.801" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M390.429 826.287L376.541 829.746" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M846.375 498.983C828.02 504.928 813.08 519.161 803.566 535.945C794.052 552.729 789.546 571.945 787.474 591.122C786.137 603.507 785.788 616.206 788.966 628.251C792.144 640.296 799.219 651.717 809.981 657.99C820.743 664.263 835.393 664.43 845.103 656.627C854.813 648.824 857.356 632.746 849.045 623.467C838.137 611.289 815.99 617.467 807.745 631.581C799.5 645.695 801.737 663.581 806.666 679.166C812.06 696.226 820.343 712.343 824.609 729.72C828.875 747.097 828.547 766.843 817.923 781.24C807.299 795.637 784.101 801.15 771.036 788.926C764.236 782.561 761.485 771.49 766.336 763.539" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M776.962 702.699L767.705 692.285" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M764.234 703.856L776.962 689.971" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M856.801 586.986L851.015 576.572" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M848.848 584.863L858.098 577.911" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M177.938 340.663C209.097 346.539 240.565 353.743 268.175 369.334C295.785 384.925 319.42 410.141 326.307 441.092C333.194 472.043 319.772 508.264 291.106 521.823C282.887 525.711 273.107 527.623 264.738 524.065C256.369 520.507 250.663 510.096 254.554 501.879C258.189 494.204 268.692 491.619 276.554 494.836C284.416 498.053 289.748 505.624 292.731 513.576C301.986 538.252 289.676 568.993 265.947 580.462C255.727 585.401 244.263 586.954 233.298 589.89C222.333 592.826 211.136 597.674 204.721 607.039C198.306 616.404 198.914 631.216 208.497 637.3" stroke="#171717" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<g opacity="0.1">
|
||||||
|
<path d="M554.616 506.488C557.461 501.534 558.592 495.727 559.947 490.22C561.302 484.713 562.726 479.249 564.332 473.812C567.421 462.938 571.143 452.253 575.478 441.812C584.28 420.93 595.738 401.27 609.568 383.318C613.02 378.891 613.886 372.918 609.568 368.602C605.978 365.011 598.32 364.139 594.851 368.602C579.388 388.302 566.653 409.998 556.991 433.102C552.38 444.073 548.558 455.358 545.552 466.872C542.616 478.382 538.409 492.952 541.252 504.742C542.735 510.895 551.546 511.842 554.618 506.489L554.616 506.488Z" fill="#171717"/>
|
||||||
|
</g>
|
||||||
|
<g opacity="0.1">
|
||||||
|
<path d="M578.72 517.461C571.874 519.647 567.242 524.304 565.496 531.393C563.931 537.749 564.387 545.004 567.367 550.688C575.027 565.295 592.983 569.217 606.605 575.977C621.853 583.544 636.148 592.899 649.826 602.999C656.468 607.899 662.89 613.106 669.28 618.332C672.471 620.943 675.65 623.568 678.816 626.208C683.468 630.075 687.682 634.254 694.247 632.013C698.509 630.559 700.477 627.44 700.993 623.154C702.017 614.634 691.306 609.108 685.539 604.561C679.744 599.993 673.914 595.467 668.006 591.045C656.105 581.939 643.673 573.548 630.777 565.916C618.551 558.856 605.503 554.069 592.893 547.875C588.6 545.766 583.537 543.095 582.106 538.103C581.462 535.859 582.238 532.658 584.606 531.426C592.246 527.454 586.988 514.826 578.719 517.461H578.72Z" fill="#171717"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<defs>
|
||||||
|
<clipPath id="clip0_435_1373">
|
||||||
|
<rect width="836" height="884" fill="white" transform="translate(62 38)"/>
|
||||||
|
</clipPath>
|
||||||
|
</defs>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 18 KiB |
|
@ -0,0 +1,157 @@
|
||||||
|
<svg width="960" height="960" viewBox="0 0 960 960" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M918.103 646.676L321.685 805.179L316.399 737.251L316.348 736.866L918.103 646.676Z" fill="#FAFAFA"/>
|
||||||
|
<path d="M916.7 646.446L701.342 637.146C701.406 628.806 701.483 620.209 701.624 611.433L916.7 646.446Z" fill="#FAFAFA"/>
|
||||||
|
<path d="M576.639 530.3C579.873 515.929 582.978 501.1 584.039 487.919C570.168 495.053 556.927 503.984 548.139 516.674C547.387 518.081 546.723 519.534 546.151 521.023C538.426 541.066 550.68 560.582 567.861 572.656L568.207 572.156C569.608 560.463 573.2 545.643 576.639 530.3ZM702.551 574.837C702.089 587.237 701.807 599.499 701.628 611.437C701.486 620.213 701.409 628.81 701.345 637.15L639.063 634.456C635.316 630.709 626.27 625.423 611.168 619.379L611.207 619.289C666.458 632.878 650.407 611.835 609.988 609.948C617.828 607.513 624.681 602.63 629.542 596.014C619.97 590.471 608.628 596.914 599.928 601.48L599.889 601.467C596.412 612.72 591.575 624.948 583.979 634.379C580.377 638.974 575.909 642.819 570.827 645.696C563.013 648.724 554.227 645.773 546.627 642.219C538.721 638.644 531.183 634.303 524.121 629.259C497.189 610.025 477.221 580.552 475.992 546.935C475.392 506.08 497.445 462.826 533.706 443.169C536.606 441.745 539.544 440.449 542.534 439.256C567.247 429.337 594.616 426.668 620.586 421.42L620.74 421.343C621.484 422.77 622.642 423.939 624.061 424.697C625.481 425.455 627.096 425.766 628.695 425.59C649.195 427.643 670.14 429.35 690.657 427.066C691.89 426.613 692.929 425.747 693.595 424.615C742.803 438.537 798.156 407.871 812.373 358.689C823.126 331.808 810.538 297.33 827.719 281.06C833.044 276.018 841.205 272.733 853.792 271.95C859.332 270.811 865.035 270.703 870.614 271.629C882.814 273.747 893.235 281.291 893.453 295.701C908.594 400.891 810.359 488.053 709.621 490.632C705.631 517.9 703.616 546.708 702.551 574.834V574.837Z" fill="#FAFAFA"/>
|
||||||
|
<path d="M705.786 293.755L705.863 293.819C722.98 278.371 740.327 280.898 716.692 300.594C738.992 284.119 753.892 317.967 702.283 316.145C698.6 316.017 694.583 315.709 690.209 315.183C676.98 315.055 663.058 310.923 650.086 313.772C641.694 317.262 640.206 328.322 639.986 337.407C639.886 341.936 639.729 346.568 639.575 351.277L639.319 351.264C628.119 362.633 622.15 341.782 626 330.978L625.756 330.914C605.021 338.959 609.063 319.969 622.394 313.938C615.294 311.244 606.958 303.224 619.071 300.158C627.001 301.107 634.545 301.736 641.859 297.463C652.942 293.065 665.056 291.943 676.759 294.23C680.942 295.051 685.369 296.283 689.333 294.73C697.225 291.125 700.933 282.13 707.669 277.254C718.309 275.856 711.47 286.544 705.786 293.755Z" fill="#FAFAFA"/>
|
||||||
|
<path d="M718.258 116.506C719.837 119.675 720.518 123.217 720.226 126.745C719.934 130.274 718.681 133.655 716.603 136.522C712.881 141.488 706.889 144.362 700.795 145.542C694.701 146.722 688.438 146.389 682.241 146.056C674.311 145.619 666.394 145.196 658.477 144.721C644.53 143.887 630.621 142.463 616.686 141.565C607.586 140.975 596.965 140.089 594.501 129.119C593.475 124.551 594.642 119.752 596.501 115.466C600.932 105.393 609.035 97.3863 619.161 93.0762C624.473 90.8432 630.67 89.7272 635.961 92.0372C639.837 93.9191 642.952 97.0703 644.789 100.967C646.588 104.848 647.878 108.945 648.625 113.157C648.753 106.664 650.293 100.043 654.078 94.7702C657.863 89.4972 664.112 85.7752 670.592 86.0832C677.418 86.4042 683.641 91.2922 686.169 97.6312C687.24 100.511 687.708 103.579 687.545 106.647C687.382 109.715 686.59 112.717 685.22 115.466C684.842 116.057 684.507 116.674 684.22 117.314C684.579 116.714 684.912 116.098 685.22 115.466C686.95 112.573 689.423 110.194 692.381 108.577C695.339 106.96 698.676 106.163 702.046 106.269C705.416 106.376 708.696 107.381 711.547 109.18C714.398 110.98 716.715 113.509 718.26 116.506H718.258Z" fill="#171717"/>
|
||||||
|
<path d="M673.195 404.347C674.35 404.411 675.504 404.462 676.659 404.514C682.228 405.437 692.134 403.846 694.648 409.89C694.982 413.983 696.009 420.758 693.596 424.607C692.929 425.739 691.891 426.605 690.658 427.058C670.141 429.342 649.201 427.635 628.696 425.582C627.096 425.758 625.481 425.447 624.061 424.689C622.642 423.931 621.484 422.762 620.741 421.335C618.021 416.421 618.996 408.517 622.512 404.501C625.078 402.242 628.863 402.281 632.276 402.448C634.098 402.538 635.92 402.615 637.742 402.704C649.56 403.244 661.377 403.791 673.195 404.347Z" fill="#171717"/>
|
||||||
|
<path d="M501.257 261.485C507.916 261.453 514.44 263.365 520.029 266.985C530.281 273.863 535.157 286.272 538.647 298.115C552.11 344.032 553.45 392.655 542.535 439.244C539.545 440.437 536.607 441.734 533.707 443.158C497.446 462.815 475.39 506.068 475.993 546.923C477.225 580.54 497.193 610.013 524.122 629.247L523.968 629.466L385.868 621.497C384.662 610.103 383.46 598.718 382.262 587.341C382.018 585.018 381.775 582.683 381.531 580.36C370.887 581.336 360.17 581.194 349.556 579.938C343.507 579.239 337.502 578.211 331.566 576.858C322.102 574.688 312.816 571.805 303.787 568.235C290.931 563.138 278.54 556.937 266.755 549.701C252.923 541.284 239.463 531.263 231.264 517.315C239.874 510.925 248.099 503.957 257.594 499.014C272.247 491.459 289.049 489.158 305.194 492.496C322.131 496.05 337.773 505.737 355.069 506.225C359.373 506.355 363.666 505.717 367.746 504.339C367.346 506.674 368.606 508.932 369.863 510.947C372.482 515.449 375.683 519.587 379.384 523.253C383.787 527.112 388.794 530.225 394.204 532.466C399.389 534.926 404.925 536.562 410.615 537.315C416.338 538.046 422.146 536.974 427.231 534.248C433.352 530.733 437.496 524.356 439.395 517.555C441.294 510.754 441.115 503.543 440.14 496.55C439.158 489.608 437.397 482.799 434.892 476.25L434.792 475.968C436.758 475.219 438.652 474.292 440.45 473.197C445.805 469.848 450.002 464.935 452.473 459.121L453.038 459.365C459.004 457.35 463.2 452.012 466.344 446.559C479.136 424.359 479.944 397.39 478.816 371.805C478.379 361.899 477.686 351.929 475.116 342.345C470.292 324.291 458.872 307.803 458.359 289.121C458.144 285.786 458.666 282.444 459.886 279.331C460.447 278.049 461.18 276.848 462.067 275.764C465.339 271.619 470.497 268.926 475.527 266.886C483.589 263.601 492.622 261.305 501.257 261.485Z" fill="#171717"/>
|
||||||
|
<path d="M440.143 496.551C441.118 503.544 441.284 510.768 439.398 517.556C437.512 524.344 433.355 530.734 427.234 534.249C422.149 536.974 416.341 538.047 410.618 537.316C404.929 536.562 399.392 534.926 394.207 532.466C388.797 530.225 383.79 527.113 379.387 523.253C375.687 519.587 372.485 515.45 369.866 510.948C368.609 508.934 367.351 506.675 367.749 504.34C370.685 503.358 373.427 501.869 375.849 499.94C379.714 507.324 385.38 513.613 392.324 518.224C396.752 521.336 401.893 523.282 407.272 523.883C412.635 524.306 418.307 522.741 422.143 518.969C425.685 515.478 427.353 510.487 428.097 505.569C429.444 496.677 428.084 487.592 426.224 478.79L426.172 478.546C427.443 478.264 428.713 477.946 429.972 477.584C431.607 477.128 433.217 476.588 434.797 475.967L434.897 476.25C437.402 482.798 439.162 489.608 440.143 496.551Z" fill="#171717"/>
|
||||||
|
<path d="M418.175 479.845C415.72 480.1 413.252 480.22 410.784 480.205V480.128C408.064 476.342 407.704 471.287 408.551 466.693C409.398 462.099 411.361 457.814 412.951 453.426C417.429 441.07 419.051 427.404 415.684 414.689C412.579 402.961 404.893 392.209 394.192 386.64L394.167 386.678C392.383 394.89 384.62 400.472 376.755 403.423C371.588 405.485 366.021 406.349 360.472 405.951L360.433 406.351C360.604 409.972 359.995 413.587 358.646 416.951C357.298 420.316 355.243 423.351 352.619 425.851C361.614 437.377 369.567 449.679 376.383 462.612C381.399 472.12 385.813 483.591 381.156 493.278C381.04 493.509 380.925 493.74 380.809 493.959C379.569 496.263 377.881 498.296 375.844 499.938C373.422 501.868 370.681 503.357 367.744 504.338C363.664 505.716 359.371 506.354 355.067 506.224C337.767 505.736 322.129 496.049 305.192 492.495C289.047 489.157 272.245 491.458 257.592 499.013C248.097 503.953 239.872 510.92 231.262 517.313C228.529 519.34 225.762 521.304 222.883 523.126C205.089 534.392 184.24 539.866 163.206 538.793C151.375 538.164 139.519 535.393 129.216 529.554C118.913 523.715 105.209 504.636 100.916 493.588C105.344 498.738 110.848 502.854 117.038 505.647C123.229 508.441 129.957 509.843 136.748 509.756C143.539 509.67 150.228 508.095 156.345 505.145C162.463 502.194 167.859 497.938 172.154 492.677C178.287 485.171 181.919 475.946 187.474 468.003C190.486 463.714 194.044 459.836 198.06 456.468C205.429 450.249 214.159 445.853 223.543 443.637C236.566 440.609 250.143 441.943 263.512 441.609C276.881 441.275 291.048 438.889 301.004 429.972C311.192 420.849 314.99 406.811 319.804 394.006C325.424 379.045 333.662 364.122 347.353 355.859C361.044 347.596 381.227 348.532 390.683 361.44L390.85 362.005C394.777 359.862 398.459 356.821 402.55 354.948C411.417 350.906 422.323 352.702 430.291 358.322C438.259 363.942 443.43 372.937 445.74 382.406C448.896 395.327 446.74 409.685 439.209 420.553L439.555 420.784C444.122 423.438 447.936 427.214 450.635 431.755C453.334 436.295 454.829 441.45 454.978 446.729C455.032 450.992 454.18 455.217 452.478 459.124C450.006 464.939 445.807 469.852 440.449 473.2C438.651 474.295 436.758 475.222 434.791 475.971C433.212 476.593 431.601 477.133 429.966 477.588C428.709 477.947 427.439 478.268 426.166 478.55C423.531 479.144 420.862 479.576 418.175 479.845Z" fill="#FAFAFA"/>
|
||||||
|
<path d="M382.261 587.346C383.453 598.727 384.655 610.112 385.867 621.502L308.931 617.075L290.891 577.389L349.144 583.74L382.261 587.346Z" fill="#FAFAFA"/>
|
||||||
|
<path d="M223.54 443.636C214.156 445.852 205.425 450.248 198.057 456.467L197.813 456.172C197.721 456.202 197.621 456.202 197.529 456.172C197.437 456.142 197.357 456.084 197.3 456.005C194.736 451.652 192.894 446.911 191.847 441.968C190.812 438.321 190.44 434.519 190.747 430.74C191.409 426.67 192.917 422.785 195.174 419.334C196.77 416.671 198.558 414.128 200.525 411.725C206.813 403.976 214.763 397.74 223.788 393.479C225.456 392.677 227.18 391.995 228.946 391.439V391.426C230.268 391.006 231.625 390.701 233 390.515C235.101 390.094 237.283 390.445 239.147 391.503C241.636 393.171 242.38 396.443 242.932 399.394C244.459 407.439 246.114 415.523 249.322 423.055C252.53 430.587 256.648 437.13 263.513 441.608C250.139 441.942 236.563 440.608 223.54 443.636Z" fill="#171717"/>
|
||||||
|
<path d="M716.577 300.7C715.326 301.628 714.138 302.64 713.023 303.728" stroke="#FAFAFA" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M637.781 401.832C638.181 385.69 639 368.06 639.581 351.277C639.735 346.568 639.889 341.936 639.992 337.407C640.21 328.322 641.698 317.262 650.092 313.772C663.064 310.923 676.986 315.055 690.215 315.183C694.59 315.709 698.606 316.017 702.289 316.145C753.896 317.967 738.999 284.119 716.698 300.594" stroke="#FAFAFA" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M639.32 351.265C628.12 362.634 622.152 341.783 626.002 330.979C626.608 328.926 627.904 327.145 629.671 325.937" stroke="#FAFAFA" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M625.758 330.914C605.023 338.959 609.065 319.969 622.396 313.938C624.216 313.114 626.149 312.57 628.132 312.322" stroke="#FAFAFA" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M622.653 314.042C622.566 314.014 622.48 313.981 622.396 313.942C615.296 311.247 606.96 303.228 619.073 300.161C627.002 301.11 634.547 301.739 641.861 297.466C652.945 293.067 665.058 291.945 676.761 294.233C680.944 295.054 685.37 296.286 689.335 294.733C697.226 291.128 700.935 282.133 707.671 277.257C718.308 275.857 711.471 286.547 705.785 293.757C703.834 296.246 702 298.325 701.085 299.339" stroke="#FAFAFA" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M716.577 300.7C716.615 300.661 716.654 300.636 716.692 300.6C740.327 280.9 722.98 278.377 705.863 293.825" stroke="#FAFAFA" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M673.233 404.809L673.195 404.347C672.065 390.747 676.402 385.19 689.503 382.123C699.845 369.587 699.803 333.48 702.283 316.145L702.321 315.838" stroke="#FAFAFA" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M690.773 324.242C654.846 314.952 675.574 335.213 676.545 358.668C676.622 361.401 671.732 360.246 669.833 361.157" stroke="#FAFAFA" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M662.417 332.365C659.234 329.735 654.551 331.236 651.908 333.956" stroke="#FAFAFA" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M689.016 335.085C688.617 334.323 688.061 333.654 687.384 333.124C686.707 332.594 685.924 332.214 685.089 332.01C684.253 331.807 683.384 331.783 682.539 331.942C681.694 332.1 680.892 332.437 680.188 332.93" stroke="#FAFAFA" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M663.275 376.041C657.681 379.041 653.139 372.692 651.381 368.047" stroke="#FAFAFA" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M693.601 424.607C696.014 420.758 694.987 413.983 694.653 409.89C692.139 403.846 682.234 405.437 676.665 404.514C675.51 404.462 674.355 404.414 673.2 404.347C661.382 403.795 649.565 403.248 637.747 402.704C635.925 402.615 634.104 402.538 632.282 402.448C628.869 402.281 625.082 402.242 622.518 404.501C619.002 408.517 618.027 416.421 620.747 421.335C621.49 422.762 622.648 423.931 624.067 424.689C625.487 425.447 627.102 425.758 628.702 425.582C649.202 427.635 670.146 429.342 690.663 427.058C691.897 426.605 692.935 425.739 693.601 424.607Z" stroke="#FAFAFA" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M693.102 424.466C693.269 424.517 693.435 424.556 693.602 424.607C742.81 438.529 798.163 407.863 812.38 358.681C823.133 331.799 810.545 297.322 827.726 281.052C833.051 276.01 841.212 272.725 853.799 271.942C859.339 270.804 865.041 270.695 870.621 271.621C882.821 273.738 893.242 281.283 893.46 295.693C908.601 400.882 810.366 488.044 709.628 490.623C708.528 490.649 707.421 490.662 706.318 490.675" stroke="#FAFAFA" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M827.565 280.885C820.932 273.905 812.04 267.336 808.447 258.303C808.793 252.387 817.365 255.12 820.867 256.703C826.141 258.563 830.324 263.195 834.622 265.992C834.738 266.069 834.866 266.146 834.982 266.223" stroke="#FAFAFA" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M870.614 271.6C872.077 256.369 874.386 239.945 868.548 225.485C856.384 212.499 859.797 252.943 858.527 258.692" stroke="#FAFAFA" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M834.662 266.476C834.649 266.322 834.649 266.155 834.623 265.988C833.931 255.274 824.461 227.521 830.53 220.733C843.99 226.433 843.182 246.139 845.43 258.662V258.688" stroke="#FAFAFA" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M858.424 258.688C857.205 249.167 857.051 219.809 844.644 219.668C840.781 231.883 844.544 245.856 845.439 258.662C845.478 259.239 845.516 259.817 845.539 260.381" stroke="#FAFAFA" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M620.587 421.412C594.617 426.66 567.248 429.329 542.535 439.248C539.545 440.441 536.607 441.737 533.707 443.161C497.446 462.818 475.39 506.072 475.993 546.927C477.224 580.544 497.193 610.017 524.122 629.251C531.183 634.295 538.721 638.636 546.628 642.211C554.228 645.765 563.014 648.711 570.828 645.688C575.909 642.811 580.377 638.966 583.98 634.371C591.58 624.94 596.412 612.712 599.889 601.459C600.095 600.804 600.301 600.15 600.49 599.496C603.878 590.835 597.064 585.048 588.99 582.931C581.427 580.693 574.286 577.22 567.857 572.653C550.676 560.579 538.422 541.063 546.146 521.02C546.718 519.531 547.382 518.078 548.134 516.671C556.924 503.981 570.166 495.05 584.035 487.916C589.065 485.324 594.184 482.963 599.201 480.756" stroke="#FAFAFA" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M584.069 487.558C584.056 487.673 584.056 487.802 584.043 487.917C582.978 501.095 579.873 515.927 576.643 530.298C573.204 545.644 569.612 560.464 568.213 572.154" stroke="#FAFAFA" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M709.687 490.2C709.661 490.341 709.648 490.482 709.622 490.623C705.632 517.902 703.622 546.708 702.552 574.834C702.09 587.234 701.808 599.496 701.629 611.434C701.487 620.21 701.41 628.807 701.346 637.147V637.455" stroke="#FAFAFA" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M599.93 601.473C608.63 596.905 619.972 590.464 629.544 596.007C624.683 602.622 617.83 607.505 609.99 609.941C609.374 610.134 608.745 610.313 608.116 610.467C608.517 610.344 608.895 610.153 609.232 609.903C609.4 609.801 609.555 609.681 609.694 609.543" stroke="#FAFAFA" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M606.151 632.755C605.83 632.614 605.574 632.499 605.381 632.434" stroke="#FAFAFA" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M583.891 634.294C583.917 634.32 583.955 634.345 583.981 634.371C597.181 645.406 613.031 657.48 631.187 654.849C642.209 652.476 612.556 635.705 606.204 632.78" stroke="#FAFAFA" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M608.191 609.863L609.23 609.902L609.987 609.94C650.406 611.827 666.457 632.87 611.206 619.282" stroke="#FAFAFA" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M604.855 632.267C605.291 632.433 605.716 632.6 606.156 632.754C606.169 632.767 606.181 632.767 606.206 632.78C633.549 643.109 646.356 641.71 639.068 634.448C635.321 630.701 626.274 625.415 611.172 619.371H611.159" stroke="#FAFAFA" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M453.037 459.368C459.003 457.353 463.199 452.016 466.343 446.562C479.135 424.362 479.943 397.393 478.815 371.808C478.378 361.902 477.685 351.933 475.115 342.348C470.291 324.294 458.871 307.806 458.358 289.124C458.144 285.788 458.665 282.446 459.885 279.334C460.446 278.051 461.18 276.851 462.066 275.767C465.338 271.622 470.496 268.928 475.526 266.888C483.584 263.603 492.617 261.306 501.252 261.488C507.911 261.455 514.435 263.367 520.024 266.988C530.276 273.866 535.152 286.273 538.642 298.117C552.106 344.034 553.445 392.656 542.53 439.246C542.43 439.746 542.299 440.246 542.184 440.746" stroke="#FAFAFA" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M410.785 480.128C408.065 476.342 407.705 471.287 408.552 466.693C409.399 462.099 411.362 457.814 412.952 453.426C417.43 441.07 419.052 427.404 415.685 414.689C412.58 402.961 404.894 392.209 394.193 386.64C393.293 386.165 392.384 385.74 391.447 385.34" stroke="#FAFAFA" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M436.037 424.594C437.186 423.322 438.245 421.972 439.206 420.553C446.738 409.685 448.893 395.326 445.737 382.406C443.427 372.936 438.243 363.941 430.288 358.321C422.333 352.701 411.414 350.905 402.547 354.947C398.454 356.82 394.772 359.861 390.847 362.004C388.545 363.347 385.981 364.179 383.328 364.442" stroke="#FAFAFA" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M410.4 480.205H410.785C413.254 480.22 415.721 480.1 418.176 479.845C420.865 479.574 423.534 479.14 426.169 478.545C427.44 478.263 428.71 477.945 429.969 477.583C431.604 477.128 433.215 476.588 434.794 475.966C436.761 475.217 438.655 474.29 440.452 473.195C445.808 469.846 450.005 464.933 452.475 459.119C454.177 455.211 455.03 450.986 454.975 446.724C454.826 441.444 453.331 436.29 450.632 431.75C447.933 427.209 444.119 423.433 439.552 420.779" stroke="#FAFAFA" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M354.301 404.526C356.286 405.273 358.361 405.752 360.473 405.951C366.022 406.348 371.589 405.484 376.756 403.423C384.621 400.472 392.384 394.89 394.168 386.678" stroke="#FAFAFA" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M347.963 429.33C349.654 428.369 351.219 427.201 352.62 425.853C355.244 423.352 357.299 420.317 358.647 416.952C359.995 413.588 360.605 409.973 360.434 406.353" stroke="#FAFAFA" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M100.912 493.587C105.341 498.737 110.844 502.853 117.034 505.646C123.225 508.44 129.953 509.842 136.744 509.755C143.535 509.669 150.224 508.094 156.341 505.144C162.459 502.193 167.855 497.937 172.15 492.676C178.283 485.17 181.915 475.946 187.47 468.003C190.482 463.714 194.041 459.836 198.056 456.467C205.425 450.248 214.155 445.853 223.539 443.636C236.562 440.608 250.139 441.942 263.508 441.608C276.877 441.274 291.044 438.888 301 429.971C311.188 420.848 314.986 406.81 319.8 394.005C325.42 379.044 333.658 364.121 347.349 355.858C361.04 347.595 381.223 348.531 390.679 361.439" stroke="#FAFAFA" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M352.506 425.7L352.621 425.854C361.616 437.379 369.569 449.682 376.385 462.615C381.401 472.123 385.815 483.594 381.158 493.281C381.042 493.512 380.927 493.743 380.811 493.962C379.571 496.266 377.883 498.299 375.846 499.941C373.424 501.87 370.683 503.36 367.746 504.341C363.666 505.719 359.373 506.358 355.069 506.227C337.769 505.74 322.131 496.052 305.194 492.498C289.049 489.16 272.247 491.461 257.594 499.016C248.099 503.956 239.874 510.923 231.264 517.316C228.531 519.344 225.764 521.307 222.885 523.129C205.091 534.395 184.242 539.869 163.208 538.796C151.377 538.167 139.521 535.396 129.218 529.557C118.915 523.718 105.211 504.639 100.918 493.591" stroke="#FAFAFA" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M263.509 441.608C256.644 437.13 252.538 430.599 249.318 423.055C246.098 415.511 244.455 407.439 242.928 399.394C242.376 396.443 241.628 393.171 239.142 391.503C237.28 390.445 235.097 390.094 232.996 390.515C231.621 390.701 230.265 391.006 228.942 391.426V391.439C227.177 391.995 225.453 392.677 223.784 393.479C214.76 397.74 206.809 403.976 200.521 411.725C198.555 414.128 196.767 416.671 195.17 419.334C192.913 422.785 191.405 426.671 190.743 430.741C190.435 434.519 190.808 438.322 191.843 441.968C192.891 446.911 194.732 451.652 197.296 456.005C197.353 456.084 197.434 456.143 197.526 456.173C197.618 456.203 197.717 456.203 197.809 456.172C197.848 456.159 197.861 456.108 197.835 456.044" stroke="#FAFAFA" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M231.213 517.235C231.225 517.264 231.243 517.29 231.264 517.312C239.464 531.26 252.923 541.281 266.755 549.698C278.54 556.937 290.93 563.14 303.786 568.239C312.815 571.809 322.101 574.691 331.565 576.862C337.501 578.215 343.507 579.243 349.555 579.941C360.169 581.198 370.886 581.34 381.53 580.365C388.268 579.745 394.951 578.62 401.521 577" stroke="#FAFAFA" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M381 494.062C383.455 497.686 386.759 500.654 390.623 502.71C393.561 504.42 396.945 505.207 400.336 504.969C405.764 504.369 410.203 500.234 413.103 495.589C416.017 490.887 417.759 485.554 418.184 480.038" stroke="#FAFAFA" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M375.742 499.746C375.78 499.811 375.806 499.875 375.842 499.939C379.707 507.323 385.374 513.613 392.317 518.223C396.745 521.335 401.886 523.281 407.265 523.882C412.628 524.305 418.3 522.74 422.136 518.967C425.678 515.477 427.346 510.486 428.09 505.572C429.437 496.68 428.077 487.595 426.217 478.793" stroke="#FAFAFA" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M367.749 504.327V504.34C367.349 506.675 368.609 508.934 369.866 510.948C372.486 515.45 375.687 519.587 379.387 523.253C383.791 527.113 388.797 530.225 394.207 532.466C399.392 534.926 404.929 536.562 410.618 537.316C416.341 538.047 422.149 536.975 427.234 534.249C433.355 530.734 437.499 524.357 439.398 517.556C441.297 510.755 441.118 503.544 440.143 496.551C439.162 489.609 437.401 482.799 434.895 476.251" stroke="#FAFAFA" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M385.956 622.4C385.93 622.105 385.891 621.8 385.866 621.5C384.66 610.106 383.458 598.721 382.26 587.344C382.016 585.021 381.773 582.686 381.529 580.364C381.519 580.336 381.514 580.305 381.516 580.274" stroke="#FAFAFA" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M370.726 426.507C370.576 424.785 371.055 423.066 372.073 421.67C372.6 420.991 373.326 420.493 374.15 420.247C374.974 420.001 375.854 420.018 376.667 420.297C377.343 420.711 378.067 421.043 378.822 421.285" stroke="#FAFAFA" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M394.617 415.5C394.586 414.908 394.619 414.314 394.717 413.729C394.813 413.14 395.093 412.597 395.517 412.177C395.93 411.834 396.425 411.604 396.954 411.51C398.291 411.238 399.681 411.486 400.842 412.202" stroke="#FAFAFA" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M375.177 411.276C374.807 410.948 374.359 410.721 373.876 410.616C373.393 410.511 372.892 410.531 372.419 410.676C371.478 410.972 370.617 411.481 369.904 412.164C368.538 413.352 367.349 414.73 366.375 416.257" stroke="#FAFAFA" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M398.724 400.279C397.397 399.768 395.945 399.679 394.566 400.023C393.668 400.407 392.878 401.007 392.266 401.768C390.881 403.286 389.711 404.987 388.789 406.823" stroke="#FAFAFA" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M392.565 436.04C393.142 436.17 393.74 436.176 394.319 436.058C394.898 435.94 395.446 435.702 395.927 435.358C396.408 435.014 396.811 434.572 397.109 434.062C397.408 433.552 397.595 432.984 397.659 432.396C397.709 432.126 397.705 431.849 397.648 431.58C397.591 431.311 397.481 431.056 397.325 430.83C396.748 430.099 395.644 430.137 394.72 430.13C393.627 430.12 392.542 429.947 391.5 429.616" stroke="#FAFAFA" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M394.579 452.746C393.879 453.499 393.043 454.113 392.115 454.555C390.488 455.395 388.621 455.649 386.829 455.274C385.94 455.086 385.104 454.7 384.385 454.144C383.665 453.589 383.08 452.879 382.672 452.066" stroke="#FAFAFA" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M228.915 391.363C232.415 383.382 235.741 375.195 236.815 366.534C237.237 364.166 237.1 361.732 236.415 359.426C236.159 358.506 235.569 357.714 234.76 357.206C234.216 356.971 233.618 356.891 233.032 356.975C232.445 357.059 231.893 357.303 231.437 357.681C230.533 358.447 229.795 359.39 229.268 360.452C225.239 367.762 221.873 375.419 219.209 383.33C218.785 384.511 218.362 385.704 217.951 386.885" stroke="#FAFAFA" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M200.173 411.455C199.798 411.448 199.43 411.356 199.095 411.187C198.759 411.019 198.466 410.777 198.236 410.481C191.537 404.144 185.501 397.141 180.221 389.58C178.548 387.379 177.307 384.88 176.564 382.216C176.201 380.88 176.166 379.476 176.463 378.124C176.761 376.772 177.381 375.513 178.27 374.453C178.916 373.717 179.795 373.227 180.76 373.067C182.479 372.849 184.032 374.066 185.302 375.248C189.029 378.819 192.49 382.658 195.657 386.733C196.812 388.183 197.966 389.658 199.108 391.121" stroke="#FAFAFA" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M219.049 383.265C218.839 377.622 218.074 372.014 216.765 366.521C215.623 361.183 214.224 355.755 211.094 351.277C209.964 349.402 208.218 347.978 206.154 347.248C205.734 347.107 205.281 347.094 204.854 347.21C204.503 347.406 204.206 347.685 203.989 348.023C203.772 348.361 203.641 348.747 203.609 349.147C203.211 351.563 203.198 354.027 203.571 356.447C204.315 363.171 205.598 369.804 206.445 376.515C206.573 377.554 206.701 378.607 206.804 379.646" stroke="#FAFAFA" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M206.038 376.568C203.502 370.195 200.031 364.236 195.738 358.887C193.146 355.666 190.079 352.548 186.127 351.368C185.664 351.196 185.165 351.144 184.677 351.214C183.51 351.471 182.984 352.831 182.855 354.014C182.509 357.132 183.548 360.224 184.716 363.137C187.936 371.144 192.316 378.611 196.135 386.349" stroke="#FAFAFA" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M501.257 261.51V261.485C500.611 249.556 498.876 237.71 496.074 226.096C495.342 223.068 494.495 219.989 492.648 217.496C492.325 216.966 491.817 216.574 491.223 216.396C490.681 216.331 490.136 216.474 489.696 216.796C487.567 218.207 487.156 221.12 487.015 223.673C486.566 231.244 486.591 238.827 486.707 246.41C486.745 248.656 486.787 250.902 486.835 253.147" stroke="#FAFAFA" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M462.02 275.714C454.265 274.654 446.741 272.308 439.758 268.773C440.356 267.554 441.192 266.468 442.216 265.577C443.241 264.687 444.434 264.011 445.724 263.589C448.306 262.759 451.005 262.347 453.718 262.37C456.797 262.255 459.89 262.255 462.969 262.383C465.253 262.46 467.524 262.601 469.795 262.819" stroke="#FAFAFA" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M486.335 246.408C484.926 240.992 483.098 235.694 480.869 230.562C479.65 227.739 478.033 224.723 475.146 223.697C474.507 223.43 473.796 223.389 473.131 223.582C472.645 223.827 472.223 224.182 471.898 224.618C471.573 225.054 471.354 225.56 471.258 226.096C470.586 229.041 470.556 232.095 471.168 235.053C471.746 238.838 472.58 242.584 473.414 246.331C474.268 250.256 475.546 254.076 477.225 257.725C477.571 258.525 477.956 259.342 478.366 260.189" stroke="#FAFAFA" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M477.558 258.277C477.443 258.097 477.327 257.905 477.224 257.725C471.983 249.221 465.52 241.534 458.042 234.911C456.913 233.73 455.478 232.886 453.897 232.474C453.399 232.358 452.876 232.408 452.409 232.615C451.203 233.243 451.28 234.988 451.575 236.31C453.665 245.583 457.539 254.36 462.982 262.152" stroke="#FAFAFA" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M523.968 629.469L385.867 621.501L308.931 617.074L272.773 614.983" stroke="#FAFAFA" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M49.9727 776.797L272.773 614.983" stroke="#FAFAFA" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M49.9727 776.797L316.348 736.866L918.103 646.676" stroke="#FAFAFA" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M702.09 574.681L702.552 574.835L917.525 646.484L918.103 646.677" stroke="#FAFAFA" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M545.396 520.789L546.153 521.02L576.64 530.297H576.653" stroke="#FAFAFA" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M303.568 568.791L290.891 577.388" stroke="#FAFAFA" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M309.008 617.242L308.931 617.075L290.891 577.389" stroke="#FAFAFA" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M382.364 587.359L382.261 587.346L349.144 583.74L290.891 577.389" stroke="#FAFAFA" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M701.18 611.353L701.63 611.43L916.705 646.446L918.104 646.677" stroke="#FAFAFA" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M316.398 737.251L321.684 805.179" stroke="#FAFAFA" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M918.104 646.676L321.686 805.179" stroke="#FAFAFA" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M918.705 646.535L917.524 646.483L916.703 646.445L701.345 637.142L639.063 634.448H638.986" stroke="#FAFAFA" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M221.885 261.19C232.162 261.972 243.402 262.665 251.833 256.724C255.615 253.943 258.435 250.052 259.903 245.593C261.37 241.134 261.411 236.328 260.019 231.845C259.333 229.659 258.192 227.643 256.67 225.93C251.91 220.797 243.454 220.515 237.243 223.761C231.032 227.007 226.735 233.012 223.514 239.223C225.798 231.973 227.338 224.39 226.837 216.807C226.336 209.224 223.668 201.607 218.42 196.097C216.137 193.566 213.19 191.726 209.913 190.785C202.304 188.848 194.298 193.903 190.281 200.665C186.264 207.427 185.329 215.498 184.469 223.312C183.725 218.077 182.969 212.765 180.774 207.966C178.579 203.167 174.717 198.843 169.649 197.38C166.476 196.608 163.169 196.56 159.974 197.239C155.496 197.983 150.992 199.395 147.541 202.32C145.472 204.185 143.825 206.472 142.712 209.026C141.599 211.58 141.045 214.342 141.087 217.128C141.226 222.721 143.05 228.141 146.322 232.679C143.757 229.522 140.338 227.169 136.473 225.9C132.609 224.631 128.461 224.498 124.523 225.519C120.585 226.54 117.024 228.67 114.262 231.657C111.5 234.643 109.655 238.36 108.945 242.366C108.396 244.652 108.68 247.058 109.745 249.154C110.798 250.713 112.24 251.969 113.928 252.798C125.297 259.278 138.028 258.316 150.587 258.367C165.869 258.418 181.138 258.824 196.394 259.586C204.898 260.009 213.395 260.544 221.885 261.19Z" stroke="#171717" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M685.217 115.466C684.838 116.056 684.504 116.674 684.217 117.314C684.575 116.711 684.909 116.095 685.217 115.466Z" stroke="#FAFAFA" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M685.217 115.466C686.588 112.717 687.379 109.715 687.542 106.647C687.705 103.579 687.237 100.511 686.166 97.6312C683.638 91.2922 677.415 86.4042 670.589 86.0832C664.109 85.7752 657.848 89.4962 654.075 94.7702C650.302 100.044 648.75 106.664 648.622 113.157C647.875 108.945 646.586 104.848 644.786 100.967C642.949 97.0703 639.834 93.9191 635.958 92.0372C630.671 89.7272 624.474 90.8432 619.158 93.0762C609.033 97.3863 600.93 105.393 596.498 115.466C594.637 119.752 593.47 124.551 594.498 129.119C596.962 140.089 607.586 140.975 616.683 141.565C630.618 142.465 644.527 143.887 658.474 144.721C666.391 145.196 674.308 145.621 682.238 146.056C688.438 146.389 694.71 146.723 700.792 145.542C706.874 144.361 712.878 141.488 716.6 136.522C718.138 134.467 719.242 132.12 719.844 129.625C720.447 127.13 720.535 124.538 720.104 122.008C719.673 119.477 718.731 117.061 717.337 114.906C715.942 112.751 714.124 110.902 711.993 109.472C709.861 108.042 707.461 107.061 704.938 106.587C702.415 106.114 699.822 106.16 697.317 106.72C694.812 107.281 692.448 108.346 690.367 109.849C688.287 111.353 686.534 113.264 685.215 115.466H685.217Z" stroke="#FAFAFA" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M831.145 872.722C832.131 872.763 833.103 872.484 833.917 871.927C834.393 871.446 834.753 870.862 834.969 870.22C838.164 862.74 841.369 854.9 840.91 846.778C840.451 838.656 835.2 830.187 827.18 828.84C822.33 828.031 817.287 829.956 813.566 833.164C809.845 836.372 807.279 840.734 805.342 845.251C806.856 838.835 808.319 832.33 808.37 825.735C808.421 819.14 806.933 812.352 803.032 807.027C799.131 801.702 792.588 798.071 786.032 798.776C777.602 799.687 771.25 807.283 768.532 815.316C765.814 823.349 765.835 832 764.68 840.4C763.948 835.28 763.204 830.07 760.98 825.413C758.756 820.756 754.77 816.623 749.727 815.546C746.006 814.746 742.119 815.674 738.68 817.265C733.828 819.605 729.713 823.234 726.785 827.756C723.858 832.278 722.23 837.517 722.08 842.902C721.926 854.155 731.08 870.194 742.892 872.657C760.676 876.378 780.526 875.146 798.554 874.479C809.435 874.082 820.29 873.4 831.145 872.722Z" stroke="#FAFAFA" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M895.918 518.98C891.385 514.836 886.852 510.703 882.318 506.58C878.161 502.78 874.008 498.991 869.859 495.212" stroke="#FAFAFA" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M891.477 494.871C888.477 498.81 885.424 502.715 882.316 506.585C877.916 512.09 873.416 517.524 868.816 522.885" stroke="#FAFAFA" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M382.967 316.7C385.661 313.567 388.278 310.376 390.82 307.128C393.758 303.395 396.593 299.584 399.327 295.696" stroke="#FAFAFA" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M398.466 315.17C395.951 312.463 393.402 309.782 390.819 307.125C385.839 301.954 380.749 296.873 375.549 291.882" stroke="#FAFAFA" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M100.913 417.062C100.63 412.122 100.143 407.182 99.4497 402.281C98.7943 397.725 97.9687 393.204 96.9727 388.718" stroke="#171717" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M114.783 394.4C109.612 396.915 104.501 399.541 99.4496 402.278C93.663 405.384 87.9486 408.621 82.3066 411.991" stroke="#171717" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M613.402 222.786L612.195 234.976L621.562 242.867L609.604 245.497L604.984 256.84L598.787 246.28L586.584 245.395L594.707 236.233L591.781 224.351L602.995 229.253L613.402 222.786Z" stroke="#171717" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M756.522 718.707C678.779 729.648 602.657 750.011 529.834 779.346C518.341 783.978 506.579 789.075 498.101 798.113C489.623 807.151 485.255 821.201 490.894 832.235C497.166 844.508 514.386 848.535 526.768 842.483C536.709 837.624 543.709 824.262 537.199 815.316C535.6 813.118 533.378 811.451 530.82 810.531C528.262 809.61 525.487 809.479 522.854 810.153C520.221 810.828 517.851 812.277 516.051 814.314C514.251 816.351 513.104 818.881 512.758 821.577" stroke="#FAFAFA" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M920.4 623.1L791.2 580.843C784.4 578.618 777.476 576.336 771.632 572.201C765.788 568.066 761.071 561.725 760.666 554.578C760.454 550.869 761.4 547.185 763.372 544.037C765.345 540.888 768.247 538.43 771.677 537.003C775.107 535.576 778.896 535.249 782.519 536.069C786.143 536.888 789.423 538.813 791.905 541.578C794.824 544.829 796.505 549.403 795.505 553.656C794.505 557.909 790.43 561.477 786.077 561.123C781.724 560.769 778.151 555.803 779.824 551.769" stroke="#FAFAFA" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M214.363 615.759L197.568 615.598C180.061 615.43 162.541 615.261 145.057 616.183" stroke="#FAFAFA" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M170.065 649.9C133.808 652.939 96.8987 648.55 61.1957 655.561C53.7027 657.033 45.4777 659.62 41.8647 666.348C40.524 668.725 40.0973 671.51 40.6647 674.179C41.8567 679.074 46.8197 682.126 51.6827 683.439C56.0827 684.626 60.9687 684.783 65.0097 682.682C69.0507 680.581 71.8857 675.802 70.7207 671.399C69.5557 666.996 63.6367 664.282 59.9977 667.022" stroke="#FAFAFA" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M243.855 584.071C199.365 586.404 154.53 587.935 110.455 581.431C104.205 580.508 97.3549 579.058 93.5759 573.992C91.9291 571.63 91.0883 568.8 91.1784 565.922C91.2685 563.044 92.2847 560.272 94.0759 558.018C95.9575 555.837 98.4479 554.268 101.227 553.512C104.007 552.756 106.949 552.849 109.676 553.777C110.96 554.173 112.152 554.822 113.182 555.685C114.212 556.548 115.06 557.607 115.676 558.802C116.259 560.014 116.437 561.382 116.183 562.703C115.929 564.024 115.256 565.228 114.265 566.138C112.165 567.813 108.502 567.22 107.447 564.754" stroke="#FAFAFA" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M726.9 260.567C730.227 255.075 733.555 249.584 736.883 244.093" stroke="#FAFAFA" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M710.748 253.272C711.486 238.585 712.224 223.899 712.963 209.213" stroke="#FAFAFA" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M691.706 261.839C687.138 256.075 683.32 249.756 680.342 243.031" stroke="#FAFAFA" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M683.211 427.467C684.428 420.286 685.221 413.04 685.586 405.767" stroke="#FAFAFA" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M669.117 428.101C669.251 420.245 669.573 412.396 670.085 404.553" stroke="#FAFAFA" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M650.666 427.19C650.799 419.532 651.307 411.892 652.189 404.271" stroke="#FAFAFA" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M634.428 425.136C634.583 425.249 634.347 425.507 634.172 425.43C633.997 425.353 633.943 425.13 633.911 424.946C632.65 417.618 632.258 410.166 632.742 402.746" stroke="#FAFAFA" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M192.617 445.588C193.702 432.96 199.279 421.141 208.335 412.275C217.392 403.409 229.327 398.085 241.974 397.269" stroke="#FAFAFA" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M235.628 421.458C235.757 421.587 235.584 421.825 235.402 421.819C235.22 421.787 235.059 421.685 234.952 421.534C232.138 418.516 228.688 416.161 224.852 414.641L225.245 414.146" stroke="#FAFAFA" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M205.924 433.595C206.774 429.942 208.187 426.445 210.114 423.228" stroke="#FAFAFA" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M292.31 510.963C288.895 508.461 285.642 505.747 282.568 502.836" stroke="#FAFAFA" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M263.842 524.949C266.409 521.368 269.357 518.077 272.634 515.132C273.026 514.781 273.734 515.417 273.434 515.846C273.134 516.275 272.294 515.814 272.494 515.327" stroke="#FAFAFA" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M318.036 526.691C315.457 523.413 312.582 520.378 309.447 517.625" stroke="#FAFAFA" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M301.559 556.356C304.246 553.401 306.656 550.207 308.759 546.812" stroke="#FAFAFA" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M358.039 520.24L345.975 511.192" stroke="#FAFAFA" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M352.42 561.278C355.239 556.899 357.825 552.375 360.167 547.724" stroke="#FAFAFA" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M415.514 558.054L423.344 545.91" stroke="#FAFAFA" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M459.802 513.146C459.133 512.901 458.552 512.462 458.134 511.886C455.568 508.98 453.084 506.004 450.68 502.959" stroke="#FAFAFA" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M472.711 495.874C474.335 491.675 476.358 487.641 478.753 483.828" stroke="#FAFAFA" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M485.111 454.647C486.634 449.397 488.748 444.337 491.411 439.563" stroke="#FAFAFA" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M435.646 567.318C433.021 565.736 430.659 563.753 428.646 561.441" stroke="#FAFAFA" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M454.414 584.219C455.681 582.625 456.742 580.878 457.571 579.019C459.065 576.019 460.558 573.019 462.051 570.019" stroke="#FAFAFA" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M460.375 302.374C468.152 290.9 479.809 282.619 493.203 279.053C506.597 275.487 520.829 276.876 533.281 282.964" stroke="#FAFAFA" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M486.982 322.818C489.461 318.52 491.518 313.992 493.123 309.298C493.226 309.368 493.311 309.462 493.37 309.571C493.43 309.681 493.462 309.802 493.466 309.927C493.469 310.051 493.443 310.175 493.389 310.287C493.335 310.399 493.255 310.497 493.156 310.573" stroke="#FAFAFA" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M536.283 333.976C533.031 331.365 529.539 329.067 525.854 327.114" stroke="#FAFAFA" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M504.625 364.021C504.587 364.155 504.855 364.161 504.882 364.021C504.909 363.881 504.79 363.768 504.682 363.681L495.756 356.368" stroke="#FAFAFA" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M520.61 383.083C520.498 383.245 520.386 383.406 520.275 383.569C522.181 378.209 524.087 372.848 525.993 367.487C526.246 366.777 526.96 365.908 527.556 366.367C527.627 366.364 527.697 366.383 527.757 366.421C527.816 366.459 527.863 366.515 527.89 366.58C527.918 366.645 527.924 366.718 527.91 366.787C527.895 366.856 527.859 366.919 527.807 366.967C527.558 367.137 527.18 366.767 527.342 366.518" stroke="#FAFAFA" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M530.494 425.168C527.611 421.607 523.929 418.777 519.746 416.907" stroke="#FAFAFA" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M415.208 601.786C410.242 597.978 405.036 594.493 399.623 591.353" stroke="#FAFAFA" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M485.701 606.718C482.159 604.18 478.504 601.813 474.734 599.618" stroke="#FAFAFA" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M549.368 605.541C548.481 606.1 547.717 606.833 547.121 607.696C546.129 608.996 545.209 610.555 545.488 612.164C545.783 613.312 546.416 614.345 547.305 615.129C547.774 615.661 548.344 616.094 548.983 616.403C549.602 616.623 550.269 616.675 550.915 616.554C551.561 616.432 552.163 616.142 552.66 615.713C553.646 614.837 554.357 613.694 554.707 612.423C555.08 611.382 555.188 610.265 555.02 609.172C554.583 606.887 551.566 604.3 549.368 605.541Z" stroke="#171717" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M534.3 566.076C531.119 562.213 527.531 558.703 523.6 555.606C523.479 555.506 523.341 555.354 523.419 555.219C523.497 555.084 523.713 555.355 523.558 555.341" stroke="#171717" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M523.326 569.405C526.028 564.231 529.454 559.468 533.5 555.26C533.581 555.177 533.667 555.07 533.634 554.96C533.601 554.85 533.38 554.869 533.416 554.978" stroke="#171717" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M518.455 498.366C518.695 498.653 518.933 498.941 519.173 499.229C516.644 495.507 514.333 491.642 512.252 487.652" stroke="#171717" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M509.762 497.771C509.716 497.685 509.6 497.852 509.684 497.904C509.768 497.956 509.871 497.891 509.947 497.829L520.409 489.396" stroke="#171717" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M598.129 566.271C600.963 563.031 603.65 559.669 606.19 556.185" stroke="#171717" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M606.1 566.06C603.478 561.834 600.496 557.841 597.189 554.126" stroke="#171717" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M684.223 589.635C684.24 589.447 684.53 589.746 684.359 589.827C684.188 589.908 684.013 589.736 683.902 589.583L674.217 576.144" stroke="#171717" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M671.979 590.807C676.622 585.47 679.849 578.939 684.997 574.088" stroke="#171717" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M677.169 522.379C674.169 517.905 671.379 513.299 668.799 508.561" stroke="#171717" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M665.949 520.401C670.129 516.561 674.388 512.809 678.727 509.146C678.657 509.254 678.589 509.362 678.52 509.469" stroke="#171717" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M616.535 457.587C613.768 452.988 610.623 448.626 607.135 444.547" stroke="#171717" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M605.879 457.627C609.728 452.552 614.153 447.943 619.067 443.891" stroke="#171717" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M744.5 467.626C748.604 462.441 752.709 457.256 756.815 452.072" stroke="#171717" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M759.63 465.968C755.644 460.316 750.975 455.177 745.73 450.668" stroke="#171717" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M700.247 460.992C699.446 461.626 698.852 462.484 698.541 463.457C698.429 464.135 698.468 464.828 698.656 465.489C698.844 466.149 699.176 466.76 699.628 467.276C700.171 468.066 700.913 468.699 701.778 469.11C702.644 469.522 703.603 469.697 704.558 469.619C705.636 469.386 706.627 468.855 707.418 468.087C708.777 466.887 709.918 465.1 709.47 463.339C708.326 458.809 703.282 458.279 700.247 460.992Z" stroke="#171717" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M654.688 447.62C654.056 448.525 653.733 449.609 653.766 450.711C653.831 451.397 654.053 452.058 654.416 452.643C654.778 453.228 655.271 453.722 655.856 454.085C656.927 454.727 658.195 454.956 659.423 454.728C660.651 454.499 661.752 453.83 662.521 452.846C666.259 447.656 658.509 441.787 654.688 447.62Z" stroke="#171717" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M561.663 480.909C561.585 481.973 561.827 483.035 562.358 483.96C562.889 484.885 563.684 485.631 564.642 486.1C567.031 487.128 569.763 485.962 572.008 484.651C572.466 484.418 572.876 484.099 573.216 483.713C575.174 481.191 572.274 475.227 569.46 474.343C565.711 473.165 561.868 477.463 561.663 480.909Z" stroke="#171717" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M638.666 560.209C639.294 560.853 640.091 561.306 640.965 561.518C641.84 561.729 642.756 561.689 643.609 561.404C647.599 560.104 649.968 552.87 644.996 551.251C640.401 549.756 635.201 556.364 638.666 560.209Z" stroke="#171717" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M808.865 396.519C810.363 392.559 811.861 388.599 813.359 384.639C813.77 383.22 814.521 381.922 815.548 380.859" stroke="#171717" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M804.441 385.145C810.055 387.231 815.557 389.605 820.925 392.258" stroke="#171717" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M852.807 374.088C851.979 375.185 851.309 376.392 850.816 377.675C850.572 378.318 850.464 379.004 850.498 379.691C850.533 380.378 850.709 381.05 851.016 381.665C851.829 383.097 853.468 383.808 854.996 384.425C855.913 384.885 856.93 385.112 857.956 385.085C858.814 384.937 859.624 384.583 860.315 384.053C862.487 382.744 864.095 380.674 864.827 378.246C866.637 370.487 856.478 368.722 852.807 374.088Z" stroke="#171717" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M854.963 341.02C859.973 336.362 863.356 330.187 868.282 325.442C870.049 323.742 872.061 322.156 873.06 319.917C873.304 319.955 873.297 320.399 873.051 320.428" stroke="#171717" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M870.079 344.631C866.185 336.319 862.039 328.131 857.641 320.067" stroke="#171717" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<g opacity="0.1">
|
||||||
|
<path d="M188.004 431.598C189.16 466.298 208.004 500.736 231.258 525.658C257.797 553.737 292.183 573.166 329.929 581.411C352.241 586.188 375.295 586.35 397.672 581.887L383.192 570.857C384.822 585.601 384.822 600.48 383.192 615.224H406.118L402.461 577.624C401.861 571.45 397.613 566.139 390.977 566.139C385.237 566.139 378.882 571.413 379.493 577.624L383.193 615.224C384.647 630.007 404.515 629.905 406.118 615.224C407.732 600.478 407.717 585.599 406.071 570.857C405.214 563.157 399.482 558.247 391.592 559.827C326.475 572.863 256.06 535.755 224.521 478.515C215.893 462.856 211.229 446.122 205.961 429.168C202.993 419.617 187.652 420.949 188.006 431.598H188.004Z" fill="#FAFAFA"/>
|
||||||
|
</g>
|
||||||
|
<g opacity="0.1">
|
||||||
|
<path d="M665.527 315.69C660.077 311.823 652.652 313.569 647.748 317.526C641.203 322.807 637.858 329.145 636.648 337.503C635.341 346.546 637.585 356.283 637.738 365.432C637.926 375.766 637.177 386.095 635.5 396.292C634.78 400.63 636.636 405.068 641.193 406.32C645.064 407.383 650.535 405.001 651.221 400.626C653.701 384.81 654.678 368.726 652.909 352.776C652.124 345.699 650.4 338.652 649.918 331.582C649.672 327.982 649.963 323.602 652.754 320.994C655.98 317.981 660.072 317.968 664.008 319.288C666.254 320.042 667.239 316.906 665.525 315.688L665.527 315.69Z" fill="#FAFAFA"/>
|
||||||
|
</g>
|
||||||
|
<g opacity="0.1">
|
||||||
|
<path d="M438.598 478.79C450.222 482.851 464.436 471.001 471.645 463.044C481.145 452.565 487.099 439.478 489.963 425.699C496.242 395.484 493.528 362.546 487.746 332.478C484.367 314.902 479.226 297.57 473.669 280.57C469.534 267.92 450.813 275.312 456.619 287.758C471.833 320.367 477.495 357.97 477.143 393.758C476.982 410.136 475.579 427.513 468.043 442.367C464.772 448.99 460.186 454.876 454.565 459.667C449.065 464.257 441.621 465.986 436.531 470.952C433.868 473.552 435.368 477.652 438.6 478.787L438.598 478.79Z" fill="#FAFAFA"/>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 52 KiB |
|
@ -0,0 +1,157 @@
|
||||||
|
<svg width="960" height="960" viewBox="0 0 960 960" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M918.103 646.676L321.685 805.179L316.399 737.251L316.348 736.866L918.103 646.676Z" fill="#171717"/>
|
||||||
|
<path d="M916.7 646.446L701.342 637.146C701.406 628.806 701.483 620.209 701.624 611.433L916.7 646.446Z" fill="#171717"/>
|
||||||
|
<path d="M576.639 530.3C579.873 515.929 582.978 501.1 584.039 487.919C570.168 495.053 556.927 503.984 548.139 516.674C547.387 518.081 546.723 519.534 546.151 521.023C538.426 541.066 550.68 560.582 567.861 572.656L568.207 572.156C569.608 560.463 573.2 545.643 576.639 530.3ZM702.551 574.837C702.089 587.237 701.807 599.499 701.628 611.437C701.486 620.213 701.409 628.81 701.345 637.15L639.063 634.456C635.316 630.709 626.27 625.423 611.168 619.379L611.207 619.289C666.458 632.878 650.407 611.835 609.988 609.948C617.828 607.513 624.681 602.63 629.542 596.014C619.97 590.471 608.628 596.914 599.928 601.48L599.889 601.467C596.412 612.72 591.575 624.948 583.979 634.379C580.377 638.974 575.909 642.819 570.827 645.696C563.013 648.724 554.227 645.773 546.627 642.219C538.721 638.644 531.183 634.303 524.121 629.259C497.189 610.025 477.221 580.552 475.992 546.935C475.392 506.08 497.445 462.826 533.706 443.169C536.606 441.745 539.544 440.449 542.534 439.256C567.247 429.337 594.616 426.668 620.586 421.42L620.74 421.343C621.484 422.77 622.642 423.939 624.061 424.697C625.481 425.455 627.096 425.766 628.695 425.59C649.195 427.643 670.14 429.35 690.657 427.066C691.89 426.613 692.929 425.747 693.595 424.615C742.803 438.537 798.156 407.871 812.373 358.689C823.126 331.808 810.538 297.33 827.719 281.06C833.044 276.018 841.205 272.733 853.792 271.95C859.332 270.811 865.035 270.703 870.614 271.629C882.814 273.747 893.235 281.291 893.453 295.701C908.594 400.891 810.359 488.053 709.621 490.632C705.631 517.9 703.616 546.708 702.551 574.834V574.837Z" fill="#171717"/>
|
||||||
|
<path d="M705.786 293.755L705.863 293.819C722.98 278.371 740.327 280.898 716.692 300.594C738.992 284.119 753.892 317.967 702.283 316.145C698.6 316.017 694.583 315.709 690.209 315.183C676.98 315.055 663.058 310.923 650.086 313.772C641.694 317.262 640.206 328.322 639.986 337.407C639.886 341.936 639.729 346.568 639.575 351.277L639.319 351.264C628.119 362.633 622.15 341.782 626 330.978L625.756 330.914C605.021 338.959 609.063 319.969 622.394 313.938C615.294 311.244 606.958 303.224 619.071 300.158C627.001 301.107 634.545 301.736 641.859 297.463C652.942 293.065 665.056 291.943 676.759 294.23C680.942 295.051 685.369 296.283 689.333 294.73C697.225 291.125 700.933 282.13 707.669 277.254C718.309 275.856 711.47 286.544 705.786 293.755Z" fill="#171717"/>
|
||||||
|
<path d="M718.258 116.506C719.837 119.675 720.518 123.217 720.226 126.745C719.934 130.274 718.681 133.655 716.603 136.522C712.881 141.488 706.889 144.362 700.795 145.542C694.701 146.722 688.438 146.389 682.241 146.056C674.311 145.619 666.394 145.196 658.477 144.721C644.53 143.887 630.621 142.463 616.686 141.565C607.586 140.975 596.965 140.089 594.501 129.119C593.475 124.551 594.642 119.752 596.501 115.466C600.932 105.393 609.035 97.3863 619.161 93.0762C624.473 90.8432 630.67 89.7272 635.961 92.0372C639.837 93.9191 642.952 97.0703 644.789 100.967C646.588 104.848 647.878 108.945 648.625 113.157C648.753 106.664 650.293 100.043 654.078 94.7702C657.863 89.4972 664.112 85.7752 670.592 86.0832C677.418 86.4042 683.641 91.2922 686.169 97.6312C687.24 100.511 687.708 103.579 687.545 106.647C687.382 109.715 686.59 112.717 685.22 115.466C684.842 116.057 684.507 116.674 684.22 117.314C684.579 116.714 684.912 116.098 685.22 115.466C686.95 112.573 689.423 110.194 692.381 108.577C695.339 106.96 698.676 106.163 702.046 106.269C705.416 106.376 708.696 107.381 711.547 109.18C714.398 110.98 716.715 113.509 718.26 116.506H718.258Z" fill="white" fill-opacity="0.96"/>
|
||||||
|
<path d="M673.195 404.347C674.35 404.411 675.504 404.462 676.659 404.514C682.228 405.437 692.134 403.846 694.648 409.89C694.982 413.983 696.009 420.758 693.596 424.607C692.929 425.739 691.891 426.605 690.658 427.058C670.141 429.342 649.201 427.635 628.696 425.582C627.096 425.758 625.481 425.447 624.061 424.689C622.642 423.931 621.484 422.762 620.741 421.335C618.021 416.421 618.996 408.517 622.512 404.501C625.078 402.242 628.863 402.281 632.276 402.448C634.098 402.538 635.92 402.615 637.742 402.704C649.56 403.244 661.377 403.791 673.195 404.347Z" fill="white" fill-opacity="0.96"/>
|
||||||
|
<path d="M501.257 261.485C507.916 261.453 514.44 263.365 520.029 266.985C530.281 273.863 535.157 286.272 538.647 298.115C552.11 344.032 553.45 392.655 542.535 439.244C539.545 440.437 536.607 441.734 533.707 443.158C497.446 462.815 475.39 506.068 475.993 546.923C477.225 580.54 497.193 610.013 524.122 629.247L523.968 629.466L385.868 621.497C384.662 610.103 383.46 598.718 382.262 587.341C382.018 585.018 381.775 582.683 381.531 580.36C370.887 581.336 360.17 581.194 349.556 579.938C343.507 579.239 337.502 578.211 331.566 576.858C322.102 574.688 312.816 571.805 303.787 568.235C290.931 563.138 278.54 556.937 266.755 549.701C252.923 541.284 239.463 531.263 231.264 517.315C239.874 510.925 248.099 503.957 257.594 499.014C272.247 491.459 289.049 489.158 305.194 492.496C322.131 496.05 337.773 505.737 355.069 506.225C359.373 506.355 363.666 505.717 367.746 504.339C367.346 506.674 368.606 508.932 369.863 510.947C372.482 515.449 375.683 519.587 379.384 523.253C383.787 527.112 388.794 530.225 394.204 532.466C399.389 534.926 404.925 536.562 410.615 537.315C416.338 538.046 422.146 536.974 427.231 534.248C433.352 530.733 437.496 524.356 439.395 517.555C441.294 510.754 441.115 503.543 440.14 496.55C439.158 489.608 437.397 482.799 434.892 476.25L434.792 475.968C436.758 475.219 438.652 474.292 440.45 473.197C445.805 469.848 450.002 464.935 452.473 459.121L453.038 459.365C459.004 457.35 463.2 452.012 466.344 446.559C479.136 424.359 479.944 397.39 478.816 371.805C478.379 361.899 477.686 351.929 475.116 342.345C470.292 324.291 458.872 307.803 458.359 289.121C458.144 285.786 458.666 282.444 459.886 279.331C460.447 278.049 461.18 276.848 462.067 275.764C465.339 271.619 470.497 268.926 475.527 266.886C483.589 263.601 492.622 261.305 501.257 261.485Z" fill="white" fill-opacity="0.96"/>
|
||||||
|
<path d="M440.143 496.551C441.118 503.544 441.284 510.768 439.398 517.556C437.512 524.344 433.355 530.734 427.234 534.249C422.149 536.974 416.341 538.047 410.618 537.316C404.929 536.562 399.392 534.926 394.207 532.466C388.797 530.225 383.79 527.113 379.387 523.253C375.687 519.587 372.485 515.45 369.866 510.948C368.609 508.934 367.351 506.675 367.749 504.34C370.685 503.358 373.427 501.869 375.849 499.94C379.714 507.324 385.38 513.613 392.324 518.224C396.752 521.336 401.893 523.282 407.272 523.883C412.635 524.306 418.307 522.741 422.143 518.969C425.685 515.478 427.353 510.487 428.097 505.569C429.444 496.677 428.084 487.592 426.224 478.79L426.172 478.546C427.443 478.264 428.713 477.946 429.972 477.584C431.607 477.128 433.217 476.588 434.797 475.967L434.897 476.25C437.402 482.798 439.162 489.608 440.143 496.551V496.551Z" fill="white" fill-opacity="0.96"/>
|
||||||
|
<path d="M418.175 479.845C415.72 480.1 413.252 480.22 410.784 480.205V480.128C408.064 476.342 407.704 471.287 408.551 466.693C409.398 462.099 411.361 457.814 412.951 453.426C417.429 441.07 419.051 427.404 415.684 414.689C412.579 402.961 404.893 392.209 394.192 386.64L394.167 386.678C392.383 394.89 384.62 400.472 376.755 403.423C371.588 405.485 366.021 406.349 360.472 405.951L360.433 406.351C360.604 409.972 359.995 413.587 358.646 416.951C357.298 420.316 355.243 423.351 352.619 425.851C361.614 437.377 369.567 449.679 376.383 462.612C381.399 472.12 385.813 483.591 381.156 493.278C381.04 493.509 380.925 493.74 380.809 493.959C379.569 496.263 377.881 498.296 375.844 499.938C373.422 501.868 370.681 503.357 367.744 504.338C363.664 505.716 359.371 506.354 355.067 506.224C337.767 505.736 322.129 496.049 305.192 492.495C289.047 489.157 272.245 491.458 257.592 499.013C248.097 503.953 239.872 510.92 231.262 517.313C228.529 519.34 225.762 521.304 222.883 523.126C205.089 534.392 184.24 539.866 163.206 538.793C151.375 538.164 139.519 535.393 129.216 529.554C118.913 523.715 105.209 504.636 100.916 493.588C105.344 498.738 110.848 502.854 117.038 505.647C123.229 508.441 129.957 509.843 136.748 509.756C143.539 509.67 150.228 508.095 156.345 505.145C162.463 502.194 167.859 497.938 172.154 492.677C178.287 485.171 181.919 475.946 187.474 468.003C190.486 463.714 194.044 459.836 198.06 456.468C205.429 450.249 214.159 445.853 223.543 443.637C236.566 440.609 250.143 441.943 263.512 441.609C276.881 441.275 291.048 438.889 301.004 429.972C311.192 420.849 314.99 406.811 319.804 394.006C325.424 379.045 333.662 364.122 347.353 355.859C361.044 347.596 381.227 348.532 390.683 361.44L390.85 362.005C394.777 359.862 398.459 356.821 402.55 354.948C411.417 350.906 422.323 352.702 430.291 358.322C438.259 363.942 443.43 372.937 445.74 382.406C448.896 395.327 446.74 409.685 439.209 420.553L439.555 420.784C444.122 423.438 447.936 427.214 450.635 431.755C453.334 436.295 454.829 441.45 454.978 446.729C455.032 450.992 454.18 455.217 452.478 459.124C450.006 464.939 445.807 469.852 440.449 473.2C438.651 474.295 436.758 475.222 434.791 475.971C433.212 476.593 431.601 477.133 429.966 477.588C428.709 477.947 427.439 478.268 426.166 478.55C423.531 479.144 420.862 479.576 418.175 479.845Z" fill="#171717"/>
|
||||||
|
<path d="M382.261 587.346C383.453 598.727 384.655 610.112 385.867 621.502L308.931 617.075L290.891 577.389L349.144 583.74L382.261 587.346Z" fill="#171717"/>
|
||||||
|
<path d="M223.54 443.636C214.156 445.852 205.425 450.248 198.057 456.467L197.813 456.172C197.721 456.202 197.621 456.202 197.529 456.172C197.437 456.142 197.357 456.084 197.3 456.005C194.736 451.652 192.894 446.911 191.847 441.968C190.812 438.321 190.44 434.519 190.747 430.74C191.409 426.67 192.917 422.785 195.174 419.334C196.77 416.671 198.558 414.128 200.525 411.725C206.813 403.976 214.763 397.74 223.788 393.479C225.456 392.677 227.18 391.995 228.946 391.439V391.426C230.268 391.006 231.625 390.701 233 390.515C235.101 390.094 237.283 390.445 239.147 391.503C241.636 393.171 242.38 396.443 242.932 399.394C244.459 407.439 246.114 415.523 249.322 423.055C252.53 430.587 256.648 437.13 263.513 441.608C250.139 441.942 236.563 440.608 223.54 443.636Z" fill="white" fill-opacity="0.96"/>
|
||||||
|
<path d="M716.577 300.7C715.326 301.628 714.138 302.64 713.023 303.728" stroke="#171717" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M637.781 401.832C638.181 385.69 639 368.06 639.581 351.277C639.735 346.568 639.889 341.936 639.992 337.407C640.21 328.322 641.698 317.262 650.092 313.772C663.064 310.923 676.986 315.055 690.215 315.183C694.59 315.709 698.606 316.017 702.289 316.145C753.896 317.967 738.999 284.119 716.698 300.594" stroke="#171717" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M639.32 351.265C628.12 362.634 622.152 341.783 626.002 330.979C626.608 328.926 627.904 327.145 629.671 325.937" stroke="#171717" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M625.758 330.914C605.023 338.959 609.065 319.969 622.396 313.938C624.216 313.114 626.149 312.57 628.132 312.322" stroke="#171717" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M622.653 314.042C622.566 314.014 622.48 313.981 622.396 313.942C615.296 311.247 606.96 303.228 619.073 300.161C627.002 301.11 634.547 301.739 641.861 297.466C652.945 293.067 665.058 291.945 676.761 294.233C680.944 295.054 685.37 296.286 689.335 294.733C697.226 291.128 700.935 282.133 707.671 277.257C718.308 275.857 711.471 286.547 705.785 293.757C703.834 296.246 702 298.325 701.085 299.339" stroke="#171717" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M716.577 300.7C716.615 300.661 716.654 300.636 716.692 300.6C740.327 280.9 722.98 278.377 705.863 293.825" stroke="#171717" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M673.233 404.809L673.195 404.347C672.065 390.747 676.402 385.19 689.503 382.123C699.845 369.587 699.803 333.48 702.283 316.145L702.321 315.838" stroke="#171717" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M690.773 324.242C654.846 314.952 675.574 335.213 676.545 358.668C676.622 361.401 671.732 360.246 669.833 361.157" stroke="#171717" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M662.417 332.365C659.234 329.735 654.551 331.236 651.908 333.956" stroke="#171717" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M689.016 335.085C688.617 334.323 688.061 333.654 687.384 333.124C686.707 332.594 685.924 332.214 685.089 332.01C684.253 331.807 683.384 331.783 682.539 331.942C681.694 332.1 680.892 332.437 680.188 332.93" stroke="#171717" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M663.275 376.041C657.681 379.041 653.139 372.692 651.381 368.047" stroke="#171717" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M693.601 424.607C696.014 420.758 694.987 413.983 694.653 409.89C692.139 403.846 682.234 405.437 676.665 404.514C675.51 404.462 674.355 404.414 673.2 404.347C661.382 403.795 649.565 403.248 637.747 402.704C635.925 402.615 634.104 402.538 632.282 402.448C628.869 402.281 625.082 402.242 622.518 404.501C619.002 408.517 618.027 416.421 620.747 421.335C621.49 422.762 622.648 423.931 624.067 424.689C625.487 425.447 627.102 425.758 628.702 425.582C649.202 427.635 670.146 429.342 690.663 427.058C691.897 426.605 692.935 425.739 693.601 424.607V424.607Z" stroke="#171717" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M693.102 424.466C693.269 424.517 693.435 424.556 693.602 424.607C742.81 438.529 798.163 407.863 812.38 358.681C823.133 331.799 810.545 297.322 827.726 281.052C833.051 276.01 841.212 272.725 853.799 271.942C859.339 270.804 865.041 270.695 870.621 271.621C882.821 273.738 893.242 281.283 893.46 295.693C908.601 400.882 810.366 488.044 709.628 490.623C708.528 490.649 707.421 490.662 706.318 490.675" stroke="#171717" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M827.565 280.885C820.932 273.905 812.04 267.336 808.447 258.303C808.793 252.387 817.365 255.12 820.867 256.703C826.141 258.563 830.324 263.195 834.622 265.992C834.738 266.069 834.866 266.146 834.982 266.223" stroke="#171717" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M870.614 271.6C872.077 256.369 874.386 239.945 868.548 225.485C856.384 212.499 859.797 252.943 858.527 258.692" stroke="#171717" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M834.662 266.476C834.649 266.322 834.649 266.155 834.623 265.988C833.931 255.274 824.461 227.521 830.53 220.733C843.99 226.433 843.182 246.139 845.43 258.662V258.688" stroke="#171717" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M858.424 258.688C857.205 249.167 857.051 219.809 844.644 219.668C840.781 231.883 844.544 245.856 845.439 258.662C845.478 259.239 845.516 259.817 845.539 260.381" stroke="#171717" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M620.587 421.412C594.617 426.66 567.248 429.329 542.535 439.248C539.545 440.441 536.607 441.737 533.707 443.161C497.446 462.818 475.39 506.072 475.993 546.927C477.224 580.544 497.193 610.017 524.122 629.251C531.183 634.295 538.721 638.636 546.628 642.211C554.228 645.765 563.014 648.711 570.828 645.688C575.909 642.811 580.377 638.966 583.98 634.371C591.58 624.94 596.412 612.712 599.889 601.459C600.095 600.804 600.301 600.15 600.49 599.496C603.878 590.835 597.064 585.048 588.99 582.931C581.427 580.693 574.286 577.22 567.857 572.653C550.676 560.579 538.422 541.063 546.146 521.02C546.718 519.531 547.382 518.078 548.134 516.671C556.924 503.981 570.166 495.05 584.035 487.916C589.065 485.324 594.184 482.963 599.201 480.756" stroke="#171717" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M584.069 487.558C584.056 487.673 584.056 487.802 584.043 487.917C582.978 501.095 579.873 515.927 576.643 530.298C573.204 545.644 569.612 560.464 568.213 572.154" stroke="#171717" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M709.687 490.2C709.661 490.341 709.648 490.482 709.622 490.623C705.632 517.902 703.622 546.708 702.552 574.834C702.09 587.234 701.808 599.496 701.629 611.434C701.487 620.21 701.41 628.807 701.346 637.147V637.455" stroke="#171717" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M599.93 601.473C608.63 596.905 619.972 590.464 629.544 596.007C624.683 602.622 617.83 607.505 609.99 609.941C609.374 610.134 608.745 610.313 608.116 610.467C608.517 610.344 608.895 610.153 609.232 609.903C609.4 609.801 609.555 609.681 609.694 609.543" stroke="#171717" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M606.151 632.755C605.83 632.614 605.574 632.499 605.381 632.434" stroke="#171717" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M583.891 634.294C583.917 634.32 583.955 634.345 583.981 634.371C597.181 645.406 613.031 657.48 631.187 654.849C642.209 652.476 612.556 635.705 606.204 632.78" stroke="#171717" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M608.191 609.863L609.23 609.902L609.987 609.94C650.406 611.827 666.457 632.87 611.206 619.282" stroke="#171717" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M604.855 632.267C605.291 632.433 605.716 632.6 606.156 632.754C606.169 632.767 606.181 632.767 606.206 632.78C633.549 643.109 646.356 641.71 639.068 634.448C635.321 630.701 626.274 625.415 611.172 619.371H611.159" stroke="#171717" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M453.037 459.368C459.003 457.353 463.199 452.016 466.343 446.562C479.135 424.362 479.943 397.393 478.815 371.808C478.378 361.902 477.685 351.933 475.115 342.348C470.291 324.294 458.871 307.806 458.358 289.124C458.144 285.788 458.665 282.446 459.885 279.334C460.446 278.051 461.18 276.851 462.066 275.767C465.338 271.622 470.496 268.928 475.526 266.888C483.584 263.603 492.617 261.306 501.252 261.488C507.911 261.455 514.435 263.367 520.024 266.988C530.276 273.866 535.152 286.273 538.642 298.117C552.106 344.034 553.445 392.656 542.53 439.246C542.43 439.746 542.299 440.246 542.184 440.746" stroke="#171717" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M410.785 480.128C408.065 476.342 407.705 471.287 408.552 466.693C409.399 462.099 411.362 457.814 412.952 453.426C417.43 441.07 419.052 427.404 415.685 414.689C412.58 402.961 404.894 392.209 394.193 386.64C393.293 386.165 392.384 385.74 391.447 385.34" stroke="#171717" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M436.037 424.594C437.186 423.322 438.245 421.972 439.206 420.553C446.738 409.685 448.893 395.326 445.737 382.406C443.427 372.936 438.243 363.941 430.288 358.321C422.333 352.701 411.414 350.905 402.547 354.947C398.454 356.82 394.772 359.861 390.847 362.004C388.545 363.347 385.981 364.179 383.328 364.442" stroke="#171717" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M410.4 480.205H410.785C413.254 480.22 415.721 480.1 418.176 479.845C420.865 479.574 423.534 479.14 426.169 478.545C427.44 478.263 428.71 477.945 429.969 477.583C431.604 477.128 433.215 476.588 434.794 475.966C436.761 475.217 438.655 474.29 440.452 473.195C445.808 469.846 450.005 464.933 452.475 459.119C454.177 455.211 455.03 450.986 454.975 446.724C454.826 441.444 453.331 436.29 450.632 431.75C447.933 427.209 444.119 423.433 439.552 420.779" stroke="#171717" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M354.301 404.526C356.286 405.273 358.361 405.752 360.473 405.951C366.022 406.348 371.589 405.484 376.756 403.423C384.621 400.472 392.384 394.89 394.168 386.678" stroke="#171717" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M347.963 429.33C349.654 428.369 351.219 427.201 352.62 425.853C355.244 423.352 357.299 420.317 358.647 416.952C359.995 413.588 360.605 409.973 360.434 406.353" stroke="#171717" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M100.912 493.587C105.341 498.737 110.844 502.853 117.034 505.646C123.225 508.44 129.953 509.842 136.744 509.755C143.535 509.669 150.224 508.094 156.341 505.144C162.459 502.193 167.855 497.937 172.15 492.676C178.283 485.17 181.915 475.946 187.47 468.003C190.482 463.714 194.041 459.836 198.056 456.467C205.425 450.248 214.155 445.853 223.539 443.636C236.562 440.608 250.139 441.942 263.508 441.608C276.877 441.274 291.044 438.888 301 429.971C311.188 420.848 314.986 406.81 319.8 394.005C325.42 379.044 333.658 364.121 347.349 355.858C361.04 347.595 381.223 348.531 390.679 361.439" stroke="#171717" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M352.506 425.7L352.621 425.854C361.616 437.379 369.569 449.682 376.385 462.615C381.401 472.123 385.815 483.594 381.158 493.281C381.042 493.512 380.927 493.743 380.811 493.962C379.571 496.266 377.883 498.299 375.846 499.941C373.424 501.87 370.683 503.36 367.746 504.341C363.666 505.719 359.373 506.358 355.069 506.227C337.769 505.74 322.131 496.052 305.194 492.498C289.049 489.16 272.247 491.461 257.594 499.016C248.099 503.956 239.874 510.923 231.264 517.316C228.531 519.344 225.764 521.307 222.885 523.129C205.091 534.395 184.242 539.869 163.208 538.796C151.377 538.167 139.521 535.396 129.218 529.557C118.915 523.718 105.211 504.639 100.918 493.591" stroke="#171717" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M263.509 441.608C256.644 437.13 252.538 430.599 249.318 423.055C246.098 415.511 244.455 407.439 242.928 399.394C242.376 396.443 241.628 393.171 239.142 391.503C237.28 390.445 235.097 390.094 232.996 390.515C231.621 390.701 230.265 391.006 228.942 391.426V391.439C227.177 391.995 225.453 392.677 223.784 393.479C214.76 397.74 206.809 403.976 200.521 411.725C198.555 414.128 196.767 416.671 195.17 419.334C192.913 422.785 191.405 426.671 190.743 430.741C190.435 434.519 190.808 438.322 191.843 441.968C192.891 446.911 194.732 451.652 197.296 456.005C197.353 456.084 197.434 456.143 197.526 456.173C197.618 456.203 197.717 456.203 197.809 456.172C197.848 456.159 197.861 456.108 197.835 456.044" stroke="#171717" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M231.213 517.235C231.225 517.264 231.243 517.29 231.264 517.312C239.464 531.26 252.923 541.281 266.755 549.698C278.54 556.937 290.93 563.14 303.786 568.239C312.815 571.809 322.101 574.691 331.565 576.862C337.501 578.215 343.507 579.243 349.555 579.941C360.169 581.198 370.886 581.34 381.53 580.365C388.268 579.745 394.951 578.62 401.521 577" stroke="#171717" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M381 494.062C383.455 497.686 386.759 500.654 390.623 502.71C393.561 504.42 396.945 505.207 400.336 504.969C405.764 504.369 410.203 500.234 413.103 495.589C416.017 490.887 417.759 485.554 418.184 480.038" stroke="#171717" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M375.742 499.746C375.78 499.811 375.806 499.875 375.842 499.939C379.707 507.323 385.374 513.613 392.317 518.223C396.745 521.335 401.886 523.281 407.265 523.882C412.628 524.305 418.3 522.74 422.136 518.967C425.678 515.477 427.346 510.486 428.09 505.572C429.437 496.68 428.077 487.595 426.217 478.793" stroke="#171717" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M367.749 504.327V504.34C367.349 506.675 368.609 508.934 369.866 510.948C372.486 515.45 375.687 519.587 379.387 523.253C383.791 527.113 388.797 530.225 394.207 532.466C399.392 534.926 404.929 536.562 410.618 537.316C416.341 538.047 422.149 536.975 427.234 534.249C433.355 530.734 437.499 524.357 439.398 517.556C441.297 510.755 441.118 503.544 440.143 496.551C439.162 489.609 437.401 482.799 434.895 476.251" stroke="#171717" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M385.956 622.4C385.93 622.105 385.891 621.8 385.866 621.5C384.66 610.106 383.458 598.721 382.26 587.344C382.016 585.021 381.773 582.686 381.529 580.364C381.519 580.336 381.514 580.305 381.516 580.274" stroke="#171717" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M370.726 426.507C370.576 424.785 371.055 423.066 372.073 421.67C372.6 420.991 373.326 420.493 374.15 420.247C374.974 420.001 375.854 420.018 376.667 420.297C377.343 420.711 378.067 421.043 378.822 421.285" stroke="#171717" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M394.617 415.5C394.586 414.908 394.619 414.314 394.717 413.729C394.813 413.14 395.093 412.597 395.517 412.177C395.93 411.834 396.425 411.604 396.954 411.51C398.291 411.238 399.681 411.486 400.842 412.202" stroke="#171717" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M375.177 411.276C374.807 410.948 374.359 410.721 373.876 410.616C373.393 410.511 372.892 410.531 372.419 410.676C371.478 410.972 370.617 411.481 369.904 412.164C368.538 413.352 367.349 414.73 366.375 416.257" stroke="#171717" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M398.724 400.279C397.397 399.768 395.945 399.679 394.566 400.023C393.668 400.407 392.878 401.007 392.266 401.768C390.881 403.286 389.711 404.987 388.789 406.823" stroke="#171717" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M392.565 436.04C393.142 436.17 393.74 436.176 394.319 436.058C394.898 435.94 395.446 435.702 395.927 435.358C396.408 435.014 396.811 434.572 397.109 434.062C397.408 433.552 397.595 432.984 397.659 432.396C397.709 432.126 397.705 431.849 397.648 431.58C397.591 431.311 397.481 431.056 397.325 430.83C396.748 430.099 395.644 430.137 394.72 430.13C393.627 430.12 392.542 429.947 391.5 429.616" stroke="#171717" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M394.579 452.746C393.879 453.499 393.043 454.113 392.115 454.555C390.488 455.395 388.621 455.649 386.829 455.274C385.94 455.086 385.104 454.7 384.385 454.144C383.665 453.589 383.08 452.879 382.672 452.066" stroke="#171717" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M228.915 391.363C232.415 383.382 235.741 375.195 236.815 366.534C237.237 364.166 237.1 361.732 236.415 359.426C236.159 358.506 235.569 357.714 234.76 357.206C234.216 356.971 233.618 356.891 233.032 356.975C232.445 357.059 231.893 357.303 231.437 357.681C230.533 358.447 229.795 359.39 229.268 360.452C225.239 367.762 221.873 375.419 219.209 383.33C218.785 384.511 218.362 385.704 217.951 386.885" stroke="#171717" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M200.173 411.455C199.798 411.448 199.43 411.356 199.095 411.187C198.759 411.019 198.466 410.777 198.236 410.481C191.537 404.144 185.501 397.141 180.221 389.58C178.548 387.379 177.307 384.88 176.564 382.216C176.201 380.88 176.166 379.476 176.463 378.124C176.761 376.772 177.381 375.513 178.27 374.453C178.916 373.717 179.795 373.227 180.76 373.067C182.479 372.849 184.032 374.066 185.302 375.248C189.029 378.819 192.49 382.658 195.657 386.733C196.812 388.183 197.966 389.658 199.108 391.121" stroke="#171717" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M219.049 383.265C218.839 377.622 218.074 372.014 216.765 366.521C215.623 361.183 214.224 355.755 211.094 351.277C209.964 349.402 208.218 347.978 206.154 347.248C205.734 347.107 205.281 347.094 204.854 347.21C204.503 347.406 204.206 347.685 203.989 348.023C203.772 348.361 203.641 348.747 203.609 349.147C203.211 351.563 203.198 354.027 203.571 356.447C204.315 363.171 205.598 369.804 206.445 376.515C206.573 377.554 206.701 378.607 206.804 379.646" stroke="#171717" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M206.038 376.568C203.502 370.195 200.031 364.236 195.738 358.887C193.146 355.666 190.079 352.548 186.127 351.368C185.664 351.196 185.165 351.144 184.677 351.214C183.51 351.471 182.984 352.831 182.855 354.014C182.509 357.132 183.548 360.224 184.716 363.137C187.936 371.144 192.316 378.611 196.135 386.349" stroke="#171717" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M501.257 261.51V261.485C500.611 249.556 498.876 237.71 496.074 226.096C495.342 223.068 494.495 219.989 492.648 217.496C492.325 216.966 491.817 216.574 491.223 216.396C490.681 216.331 490.136 216.474 489.696 216.796C487.567 218.207 487.156 221.12 487.015 223.673C486.566 231.244 486.591 238.827 486.707 246.41C486.745 248.656 486.787 250.902 486.835 253.147" stroke="#171717" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M462.02 275.714C454.265 274.654 446.741 272.308 439.758 268.773C440.356 267.554 441.192 266.468 442.216 265.577C443.241 264.687 444.434 264.011 445.724 263.589C448.306 262.759 451.005 262.347 453.718 262.37C456.797 262.255 459.89 262.255 462.969 262.383C465.253 262.46 467.524 262.601 469.795 262.819" stroke="#171717" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M486.335 246.408C484.926 240.992 483.098 235.694 480.869 230.562C479.65 227.739 478.033 224.723 475.146 223.697C474.507 223.43 473.796 223.389 473.131 223.582C472.645 223.827 472.223 224.182 471.898 224.618C471.573 225.054 471.354 225.56 471.258 226.096C470.586 229.041 470.556 232.095 471.168 235.053C471.746 238.838 472.58 242.584 473.414 246.331C474.268 250.256 475.546 254.076 477.225 257.725C477.571 258.525 477.956 259.342 478.366 260.189" stroke="#171717" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M477.558 258.277C477.443 258.097 477.327 257.905 477.224 257.725C471.983 249.221 465.52 241.534 458.042 234.911C456.913 233.73 455.478 232.886 453.897 232.474C453.399 232.358 452.876 232.408 452.409 232.615C451.203 233.243 451.28 234.988 451.575 236.31C453.665 245.583 457.539 254.36 462.982 262.152" stroke="#171717" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M523.968 629.469L385.867 621.501L308.931 617.074L272.773 614.983" stroke="#171717" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M49.9727 776.797L272.773 614.983" stroke="#171717" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M49.9727 776.797L316.348 736.866L918.103 646.676" stroke="#171717" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M702.09 574.681L702.552 574.835L917.525 646.484L918.103 646.677" stroke="#171717" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M545.396 520.789L546.153 521.02L576.64 530.297H576.653" stroke="#171717" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M303.568 568.791L290.891 577.388" stroke="#171717" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M309.008 617.242L308.931 617.075L290.891 577.389" stroke="#171717" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M382.364 587.359L382.261 587.346L349.144 583.74L290.891 577.389" stroke="#171717" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M701.18 611.353L701.63 611.43L916.705 646.446L918.104 646.677" stroke="#171717" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M316.398 737.251L321.684 805.179" stroke="#171717" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M918.104 646.676L321.686 805.179" stroke="#171717" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M918.705 646.535L917.524 646.483L916.703 646.445L701.345 637.142L639.063 634.448H638.986" stroke="#171717" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M221.885 261.19C232.162 261.972 243.402 262.665 251.833 256.724C255.615 253.943 258.435 250.052 259.903 245.593C261.37 241.134 261.411 236.328 260.019 231.845C259.333 229.659 258.192 227.643 256.67 225.93C251.91 220.797 243.454 220.515 237.243 223.761C231.032 227.007 226.735 233.012 223.514 239.223C225.798 231.973 227.338 224.39 226.837 216.807C226.336 209.224 223.668 201.607 218.42 196.097C216.137 193.566 213.19 191.726 209.913 190.785C202.304 188.848 194.298 193.903 190.281 200.665C186.264 207.427 185.329 215.498 184.469 223.312C183.725 218.077 182.969 212.765 180.774 207.966C178.579 203.167 174.717 198.843 169.649 197.38C166.476 196.608 163.169 196.56 159.974 197.239C155.496 197.983 150.992 199.395 147.541 202.32C145.472 204.185 143.825 206.472 142.712 209.026C141.599 211.58 141.045 214.342 141.087 217.128C141.226 222.721 143.05 228.141 146.322 232.679C143.757 229.522 140.338 227.169 136.473 225.9C132.609 224.631 128.461 224.498 124.523 225.519C120.585 226.54 117.024 228.67 114.262 231.657C111.5 234.643 109.655 238.36 108.945 242.366C108.396 244.652 108.68 247.058 109.745 249.154C110.798 250.713 112.24 251.969 113.928 252.798C125.297 259.278 138.028 258.316 150.587 258.367C165.869 258.418 181.138 258.824 196.394 259.586C204.898 260.009 213.395 260.544 221.885 261.19Z" stroke="white" stroke-opacity="0.96" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M685.217 115.466C684.838 116.056 684.504 116.674 684.217 117.314C684.575 116.711 684.909 116.095 685.217 115.466Z" stroke="#171717" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M685.217 115.466C686.588 112.717 687.379 109.715 687.542 106.647C687.705 103.579 687.237 100.511 686.166 97.6312C683.638 91.2922 677.415 86.4042 670.589 86.0832C664.109 85.7752 657.848 89.4962 654.075 94.7702C650.302 100.044 648.75 106.664 648.622 113.157C647.875 108.945 646.586 104.848 644.786 100.967C642.949 97.0703 639.834 93.9191 635.958 92.0372C630.671 89.7272 624.474 90.8432 619.158 93.0762C609.033 97.3863 600.93 105.393 596.498 115.466C594.637 119.752 593.47 124.551 594.498 129.119C596.962 140.089 607.586 140.975 616.683 141.565C630.618 142.465 644.527 143.887 658.474 144.721C666.391 145.196 674.308 145.621 682.238 146.056C688.438 146.389 694.71 146.723 700.792 145.542C706.874 144.361 712.878 141.488 716.6 136.522C718.138 134.467 719.242 132.12 719.844 129.625C720.447 127.13 720.535 124.538 720.104 122.008C719.673 119.477 718.731 117.061 717.337 114.906C715.942 112.751 714.124 110.902 711.993 109.472C709.861 108.042 707.461 107.061 704.938 106.587C702.415 106.114 699.822 106.16 697.317 106.72C694.812 107.281 692.448 108.346 690.367 109.849C688.287 111.353 686.534 113.264 685.215 115.466H685.217Z" stroke="#171717" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M831.145 872.722C832.131 872.763 833.103 872.484 833.917 871.927C834.393 871.446 834.753 870.862 834.969 870.22C838.164 862.74 841.369 854.9 840.91 846.778C840.451 838.656 835.2 830.187 827.18 828.84C822.33 828.031 817.287 829.956 813.566 833.164C809.845 836.372 807.279 840.734 805.342 845.251C806.856 838.835 808.319 832.33 808.37 825.735C808.421 819.14 806.933 812.352 803.032 807.027C799.131 801.702 792.588 798.071 786.032 798.776C777.602 799.687 771.25 807.283 768.532 815.316C765.814 823.349 765.835 832 764.68 840.4C763.948 835.28 763.204 830.07 760.98 825.413C758.756 820.756 754.77 816.623 749.727 815.546C746.006 814.746 742.119 815.674 738.68 817.265C733.828 819.605 729.713 823.234 726.785 827.756C723.858 832.278 722.23 837.517 722.08 842.902C721.926 854.155 731.08 870.194 742.892 872.657C760.676 876.378 780.526 875.146 798.554 874.479C809.435 874.082 820.29 873.4 831.145 872.722Z" stroke="#171717" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M895.918 518.98C891.385 514.836 886.852 510.703 882.318 506.58C878.161 502.78 874.008 498.991 869.859 495.212" stroke="#171717" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M891.477 494.871C888.477 498.81 885.424 502.715 882.316 506.585C877.916 512.09 873.416 517.524 868.816 522.885" stroke="#171717" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M382.967 316.7C385.661 313.567 388.278 310.376 390.82 307.128C393.758 303.395 396.593 299.584 399.327 295.696" stroke="#171717" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M398.466 315.17C395.951 312.463 393.402 309.782 390.819 307.125C385.839 301.954 380.749 296.873 375.549 291.882" stroke="#171717" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M100.913 417.062C100.63 412.122 100.143 407.182 99.4497 402.281C98.7943 397.725 97.9687 393.204 96.9727 388.718" stroke="white" stroke-opacity="0.96" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M114.783 394.4C109.612 396.915 104.501 399.541 99.4496 402.278C93.663 405.384 87.9486 408.621 82.3066 411.991" stroke="white" stroke-opacity="0.96" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M613.402 222.786L612.195 234.976L621.562 242.867L609.604 245.497L604.984 256.84L598.787 246.28L586.584 245.395L594.707 236.233L591.781 224.351L602.995 229.253L613.402 222.786Z" stroke="white" stroke-opacity="0.96" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M756.522 718.707C678.779 729.648 602.657 750.011 529.834 779.346C518.341 783.978 506.579 789.075 498.101 798.113C489.623 807.151 485.255 821.201 490.894 832.235C497.166 844.508 514.386 848.535 526.768 842.483C536.709 837.624 543.709 824.262 537.199 815.316C535.6 813.118 533.378 811.451 530.82 810.531C528.262 809.61 525.487 809.479 522.854 810.153C520.221 810.828 517.851 812.277 516.051 814.314C514.251 816.351 513.104 818.881 512.758 821.577" stroke="#171717" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M920.4 623.1L791.2 580.843C784.4 578.618 777.476 576.336 771.632 572.201C765.788 568.066 761.071 561.725 760.666 554.578C760.454 550.869 761.4 547.185 763.372 544.037C765.345 540.888 768.247 538.43 771.677 537.003C775.107 535.576 778.896 535.249 782.519 536.069C786.143 536.888 789.423 538.813 791.905 541.578C794.824 544.829 796.505 549.403 795.505 553.656C794.505 557.909 790.43 561.477 786.077 561.123C781.724 560.769 778.151 555.803 779.824 551.769" stroke="#171717" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M214.363 615.759L197.568 615.598C180.061 615.43 162.541 615.261 145.057 616.183" stroke="#171717" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M170.065 649.9C133.808 652.939 96.8987 648.55 61.1957 655.561C53.7027 657.033 45.4777 659.62 41.8647 666.348C40.524 668.725 40.0973 671.51 40.6647 674.179C41.8567 679.074 46.8197 682.126 51.6827 683.439C56.0827 684.626 60.9687 684.783 65.0097 682.682C69.0507 680.581 71.8857 675.802 70.7207 671.399C69.5557 666.996 63.6367 664.282 59.9977 667.022" stroke="#171717" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M243.855 584.071C199.365 586.404 154.53 587.935 110.455 581.431C104.205 580.508 97.3549 579.058 93.5759 573.992C91.9291 571.63 91.0883 568.8 91.1784 565.922C91.2685 563.044 92.2847 560.272 94.0759 558.018C95.9575 555.837 98.4479 554.268 101.227 553.512C104.007 552.756 106.949 552.849 109.676 553.777C110.96 554.173 112.152 554.822 113.182 555.685C114.212 556.548 115.06 557.607 115.676 558.802C116.259 560.014 116.437 561.382 116.183 562.703C115.929 564.024 115.256 565.228 114.265 566.138C112.165 567.813 108.502 567.22 107.447 564.754" stroke="#171717" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M726.9 260.567C730.227 255.075 733.555 249.584 736.883 244.093" stroke="#171717" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M710.748 253.272C711.486 238.585 712.224 223.899 712.963 209.213" stroke="#171717" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M691.706 261.839C687.138 256.075 683.32 249.756 680.342 243.031" stroke="#171717" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M683.211 427.467C684.428 420.286 685.221 413.04 685.586 405.767" stroke="#171717" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M669.117 428.101C669.251 420.245 669.573 412.396 670.085 404.553" stroke="#171717" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M650.666 427.19C650.799 419.532 651.307 411.892 652.189 404.271" stroke="#171717" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M634.428 425.136C634.583 425.249 634.347 425.507 634.172 425.43C633.997 425.353 633.943 425.13 633.911 424.946C632.65 417.618 632.258 410.166 632.742 402.746" stroke="#171717" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M192.617 445.588C193.702 432.96 199.279 421.141 208.335 412.275C217.392 403.409 229.327 398.085 241.974 397.269" stroke="#171717" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M235.628 421.458C235.757 421.587 235.584 421.825 235.402 421.819C235.22 421.787 235.059 421.685 234.952 421.534C232.138 418.516 228.688 416.161 224.852 414.641L225.245 414.146" stroke="#171717" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M205.924 433.595C206.774 429.942 208.187 426.445 210.114 423.228" stroke="#171717" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M292.31 510.963C288.895 508.461 285.642 505.747 282.568 502.836" stroke="#171717" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M263.842 524.949C266.409 521.368 269.357 518.077 272.634 515.132C273.026 514.781 273.734 515.417 273.434 515.846C273.134 516.275 272.294 515.814 272.494 515.327" stroke="#171717" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M318.036 526.691C315.457 523.413 312.582 520.378 309.447 517.625" stroke="#171717" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M301.559 556.356C304.246 553.401 306.656 550.207 308.759 546.812" stroke="#171717" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M358.039 520.24L345.975 511.192" stroke="#171717" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M352.42 561.278C355.239 556.899 357.825 552.375 360.167 547.724" stroke="#171717" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M415.514 558.054L423.344 545.91" stroke="#171717" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M459.802 513.146C459.133 512.901 458.552 512.462 458.134 511.886C455.568 508.98 453.084 506.004 450.68 502.959" stroke="#171717" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M472.711 495.874C474.335 491.675 476.358 487.641 478.753 483.828" stroke="#171717" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M485.111 454.647C486.634 449.397 488.748 444.337 491.411 439.563" stroke="#171717" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M435.646 567.318C433.021 565.736 430.659 563.753 428.646 561.441" stroke="#171717" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M454.414 584.219C455.681 582.625 456.742 580.878 457.571 579.019C459.065 576.019 460.558 573.019 462.051 570.019" stroke="#171717" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M460.375 302.374C468.152 290.9 479.809 282.619 493.203 279.053C506.597 275.487 520.829 276.876 533.281 282.964" stroke="#171717" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M486.982 322.818C489.461 318.52 491.518 313.992 493.123 309.298C493.226 309.368 493.311 309.462 493.37 309.571C493.43 309.681 493.462 309.802 493.466 309.927C493.469 310.051 493.443 310.175 493.389 310.287C493.335 310.399 493.255 310.497 493.156 310.573" stroke="#171717" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M536.283 333.976C533.031 331.365 529.539 329.067 525.854 327.114" stroke="#171717" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M504.625 364.021C504.587 364.155 504.855 364.161 504.882 364.021C504.909 363.881 504.79 363.768 504.682 363.681L495.756 356.368" stroke="#171717" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M520.61 383.083C520.498 383.245 520.386 383.406 520.275 383.569C522.181 378.209 524.087 372.848 525.993 367.487C526.246 366.777 526.96 365.908 527.556 366.367C527.627 366.364 527.697 366.383 527.757 366.421C527.816 366.459 527.863 366.515 527.89 366.58C527.918 366.645 527.924 366.718 527.91 366.787C527.895 366.856 527.859 366.919 527.807 366.967C527.558 367.137 527.18 366.767 527.342 366.518" stroke="#171717" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M530.494 425.168C527.611 421.607 523.929 418.777 519.746 416.907" stroke="#171717" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M415.208 601.786C410.242 597.978 405.036 594.493 399.623 591.353" stroke="#171717" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M485.701 606.718C482.159 604.18 478.504 601.813 474.734 599.618" stroke="#171717" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M549.368 605.541C548.481 606.1 547.717 606.833 547.121 607.696C546.129 608.996 545.209 610.555 545.488 612.164C545.783 613.312 546.416 614.345 547.305 615.129C547.774 615.661 548.344 616.094 548.983 616.403C549.602 616.623 550.269 616.675 550.915 616.554C551.561 616.432 552.163 616.142 552.66 615.713C553.646 614.837 554.357 613.694 554.707 612.423C555.08 611.382 555.188 610.265 555.02 609.172C554.583 606.887 551.566 604.3 549.368 605.541Z" stroke="white" stroke-opacity="0.96" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M534.3 566.076C531.119 562.213 527.531 558.703 523.6 555.606C523.479 555.506 523.341 555.354 523.419 555.219C523.497 555.084 523.713 555.355 523.558 555.341" stroke="white" stroke-opacity="0.96" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M523.326 569.405C526.028 564.231 529.454 559.468 533.5 555.26C533.581 555.177 533.667 555.07 533.634 554.96C533.601 554.85 533.38 554.869 533.416 554.978" stroke="white" stroke-opacity="0.96" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M518.455 498.366C518.695 498.653 518.933 498.941 519.173 499.229C516.644 495.507 514.333 491.642 512.252 487.652" stroke="white" stroke-opacity="0.96" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M509.762 497.771C509.716 497.685 509.6 497.852 509.684 497.904C509.768 497.956 509.871 497.891 509.947 497.829L520.409 489.396" stroke="white" stroke-opacity="0.96" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M598.129 566.271C600.963 563.031 603.65 559.669 606.19 556.185" stroke="white" stroke-opacity="0.96" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M606.1 566.06C603.478 561.834 600.496 557.841 597.189 554.126" stroke="white" stroke-opacity="0.96" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M684.223 589.635C684.24 589.447 684.53 589.746 684.359 589.827C684.188 589.908 684.013 589.736 683.902 589.583L674.217 576.144" stroke="white" stroke-opacity="0.96" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M671.979 590.807C676.622 585.47 679.849 578.939 684.997 574.088" stroke="white" stroke-opacity="0.96" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M677.169 522.379C674.169 517.905 671.379 513.299 668.799 508.561" stroke="white" stroke-opacity="0.96" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M665.949 520.401C670.129 516.561 674.388 512.809 678.727 509.146C678.657 509.254 678.589 509.362 678.52 509.469" stroke="white" stroke-opacity="0.96" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M616.535 457.587C613.768 452.988 610.623 448.626 607.135 444.547" stroke="white" stroke-opacity="0.96" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M605.879 457.627C609.728 452.552 614.153 447.943 619.067 443.891" stroke="white" stroke-opacity="0.96" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M744.5 467.626C748.604 462.441 752.709 457.256 756.815 452.072" stroke="white" stroke-opacity="0.96" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M759.63 465.968C755.644 460.316 750.975 455.177 745.73 450.668" stroke="white" stroke-opacity="0.96" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M700.247 460.992C699.446 461.626 698.852 462.484 698.541 463.457C698.429 464.135 698.468 464.828 698.656 465.489C698.844 466.149 699.176 466.76 699.628 467.276C700.171 468.066 700.913 468.699 701.778 469.11C702.644 469.522 703.603 469.697 704.558 469.619C705.636 469.386 706.627 468.855 707.418 468.087C708.777 466.887 709.918 465.1 709.47 463.339C708.326 458.809 703.282 458.279 700.247 460.992Z" stroke="white" stroke-opacity="0.96" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M654.688 447.62C654.056 448.525 653.733 449.609 653.766 450.711C653.831 451.397 654.053 452.058 654.416 452.643C654.778 453.228 655.271 453.722 655.856 454.085C656.927 454.727 658.195 454.956 659.423 454.728C660.651 454.499 661.752 453.83 662.521 452.846C666.259 447.656 658.509 441.787 654.688 447.62Z" stroke="white" stroke-opacity="0.96" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M561.663 480.909C561.585 481.973 561.827 483.035 562.358 483.96C562.889 484.885 563.684 485.631 564.642 486.1C567.031 487.128 569.763 485.962 572.008 484.651C572.466 484.418 572.876 484.099 573.216 483.713C575.174 481.191 572.274 475.227 569.46 474.343C565.711 473.165 561.868 477.463 561.663 480.909Z" stroke="white" stroke-opacity="0.96" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M638.666 560.209C639.294 560.853 640.091 561.306 640.965 561.518C641.84 561.729 642.756 561.689 643.609 561.404C647.599 560.104 649.968 552.87 644.996 551.251C640.401 549.756 635.201 556.364 638.666 560.209Z" stroke="white" stroke-opacity="0.96" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M808.865 396.519C810.363 392.559 811.861 388.599 813.359 384.639C813.77 383.22 814.521 381.922 815.548 380.859" stroke="white" stroke-opacity="0.96" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M804.441 385.145C810.055 387.231 815.557 389.605 820.925 392.258" stroke="white" stroke-opacity="0.96" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M852.807 374.088C851.979 375.185 851.309 376.392 850.816 377.675C850.572 378.318 850.464 379.004 850.498 379.691C850.533 380.378 850.709 381.05 851.016 381.665C851.829 383.097 853.468 383.808 854.996 384.425C855.913 384.885 856.93 385.112 857.956 385.085C858.814 384.937 859.624 384.583 860.315 384.053C862.487 382.744 864.095 380.674 864.827 378.246C866.637 370.487 856.478 368.722 852.807 374.088Z" stroke="white" stroke-opacity="0.96" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M854.963 341.02C859.973 336.362 863.356 330.187 868.282 325.442C870.049 323.742 872.061 322.156 873.06 319.917C873.304 319.955 873.297 320.399 873.051 320.428" stroke="white" stroke-opacity="0.96" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M870.079 344.631C866.185 336.319 862.039 328.131 857.641 320.067" stroke="white" stroke-opacity="0.96" stroke-width="3.849" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<g opacity="0.1">
|
||||||
|
<path d="M188.004 431.598C189.16 466.298 208.004 500.736 231.258 525.658C257.797 553.737 292.183 573.166 329.929 581.411C352.241 586.188 375.295 586.35 397.672 581.887L383.192 570.857C384.822 585.601 384.822 600.48 383.192 615.224H406.118L402.461 577.624C401.861 571.45 397.613 566.139 390.977 566.139C385.237 566.139 378.882 571.413 379.493 577.624L383.193 615.224C384.647 630.007 404.516 629.905 406.119 615.224C407.733 600.478 407.717 585.599 406.071 570.857C405.214 563.157 399.482 558.247 391.592 559.827C326.475 572.863 256.06 535.755 224.521 478.515C215.893 462.856 211.229 446.122 205.961 429.168C202.993 419.617 187.652 420.949 188.006 431.598H188.004Z" fill="#171717"/>
|
||||||
|
</g>
|
||||||
|
<g opacity="0.1">
|
||||||
|
<path d="M665.527 315.69C660.077 311.823 652.652 313.569 647.748 317.526C641.203 322.807 637.858 329.145 636.648 337.503C635.341 346.546 637.585 356.283 637.738 365.432C637.926 375.766 637.177 386.095 635.5 396.292C634.78 400.63 636.636 405.068 641.193 406.32C645.064 407.383 650.535 405.001 651.221 400.626C653.701 384.81 654.678 368.726 652.909 352.776C652.124 345.699 650.4 338.652 649.918 331.582C649.672 327.982 649.963 323.602 652.754 320.994C655.98 317.981 660.072 317.968 664.008 319.288C666.254 320.042 667.239 316.906 665.525 315.688L665.527 315.69Z" fill="#171717"/>
|
||||||
|
</g>
|
||||||
|
<g opacity="0.1">
|
||||||
|
<path d="M438.598 478.79C450.222 482.851 464.436 471.001 471.645 463.044C481.145 452.565 487.099 439.478 489.963 425.699C496.242 395.484 493.528 362.546 487.746 332.478C484.367 314.902 479.226 297.57 473.669 280.57C469.534 267.92 450.813 275.312 456.619 287.758C471.833 320.367 477.495 357.97 477.143 393.758C476.982 410.136 475.579 427.513 468.043 442.367C464.772 448.99 460.186 454.876 454.565 459.667C449.065 464.257 441.621 465.986 436.531 470.952C433.868 473.552 435.368 477.652 438.6 478.787L438.598 478.79Z" fill="#171717"/>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 53 KiB |
|
@ -0,0 +1,93 @@
|
||||||
|
<svg width="960" height="960" viewBox="0 0 960 960" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<mask id="mask0_1_5757" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="101" y="38" width="759" height="884">
|
||||||
|
<path d="M860 38H101V922H860V38Z" fill="white"/>
|
||||||
|
</mask>
|
||||||
|
<g mask="url(#mask0_1_5757)">
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M450.606 473.211C450.584 473.222 450.584 473.211 450.606 473.2C451.861 472.733 533.754 427.646 577.333 369.307L574.933 368.541C571.536 369.896 568.04 371.272 564.388 371.372C560.736 371.472 556.807 370.04 554.92 366.91C554.359 365.979 553.996 364.94 553.634 363.903C553.181 362.606 552.729 361.313 551.89 360.239C548.89 356.409 543.018 357.375 538.29 358.862C538.181 358.894 538.072 358.93 537.965 358.966C537.887 358.991 537.81 359.017 537.735 359.04L506.645 369.263C501.839 370.846 497.032 372.426 492.226 374.002C486.998 375.723 481.271 377.887 478.107 382.15C477.516 382.95 477.024 383.818 476.642 384.736C475.41 387.729 475.528 390.981 475.647 394.252C475.732 396.609 475.818 398.976 475.399 401.263C473.901 409.477 465.888 415.359 457.629 416.525C449.37 417.691 441.023 414.96 433.565 411.231C412.779 400.837 397.073 382.967 383.665 363.731C380.884 359.735 378.192 355.684 375.584 351.622C354.764 319.234 336.906 285.034 322.228 249.438L320.741 247.873C313.922 249.594 307.199 251.636 300.573 254C290.535 257.558 280.766 261.837 271.343 266.802C269.778 267.623 268.204 268.5 266.704 269.488C263.411 271.653 260.536 274.339 259.304 278.002C257.795 282.464 259.093 287.343 260.481 291.843C261.787 296.098 263.178 300.323 264.654 304.519C278.285 343.523 298.786 380.251 326.635 410.709C327.345 411.486 328.066 412.263 328.788 413.029C359.212 445.495 398.294 470.292 441.427 481.169C444.257 478.263 447.328 475.6 450.606 473.211ZM314.801 267.373C314.497 266.506 313.546 266.049 312.679 266.354C311.811 266.659 311.355 267.609 311.66 268.476C332.398 327.53 369.437 379.502 418.49 418.377C419.211 418.948 420.258 418.827 420.829 418.106C421.4 417.385 421.279 416.338 420.559 415.767C371.999 377.283 335.331 325.833 314.801 267.373Z" fill="#171717"/>
|
||||||
|
<path d="M478.556 620.536C477.19 605.03 475.822 589.524 474.45 574.018C474.394 573.385 474.339 572.752 474.305 572.109C474.083 568.746 474.216 565.294 476.105 562.585C478.214 559.577 481.999 558.279 485.584 557.435C497.228 554.704 509.315 554.849 521.236 553.935C530.536 553.213 540.05 551.759 548.519 547.996C550.899 546.947 553.186 545.7 555.357 544.267C565.235 537.696 572.339 525.775 570.219 514.109C592.696 500.024 630.401 490.3 669.283 473.151C672.369 471.786 675.366 470.399 678.274 468.967L679.184 470.798C681.693 495.961 681.138 521.69 674.411 546.065C667.684 570.44 654.443 593.449 634.675 609.211C614.129 625.611 588.023 633.264 562.294 638.68C554.535 640.312 546.71 641.788 538.852 642.98C519.583 645.91 500.114 647.198 480.752 645.333C480.021 637.064 479.289 628.798 478.556 620.536Z" fill="#171717"/>
|
||||||
|
<path d="M510.456 325.641C509.589 322.156 508.716 318.674 507.836 315.197L507.703 314.875C508.305 314.628 508.929 314.442 509.568 314.32C512.468 313.765 515.961 315.097 516.783 317.938C517.515 320.502 515.772 323.255 513.442 324.565C512.509 325.077 511.507 325.451 510.467 325.675L510.456 325.641Z" fill="white"/>
|
||||||
|
<path d="M538.416 682.8C538.416 682.8 534.116 732.16 488.29 732.16C442.464 732.16 418.54 708.66 412.279 685.154C409.538 674.864 404.687 641.554 405.309 603.582L408.617 603.649C408.618 603.902 408.64 604.155 408.683 604.404C409.305 607.804 413.389 609.154 416.797 609.643C420.292 610.144 423.813 610.429 427.342 610.497C424.755 610.753 422.158 610.997 419.572 611.252C415.172 611.674 409.538 613.328 409.382 617.734C409.216 622.207 414.855 624.234 419.294 624.727C438.583 626.857 458.099 625.486 476.9 620.68L478.553 620.535C479.287 628.794 480.02 637.061 480.753 645.335C500.111 647.2 519.58 645.912 538.853 642.982L539.197 644.782C538.471 666.7 538.416 682.8 538.416 682.8Z" fill="white"/>
|
||||||
|
<path d="M326.635 410.709C327.345 411.486 328.066 412.263 328.788 413.029L327.6 414.139C319.44 415.804 311.027 415.797 302.87 414.119C294.713 412.44 286.98 409.124 280.141 404.372C273.302 399.62 267.497 393.53 263.078 386.471C258.659 379.411 255.718 371.529 254.432 363.301C251.332 343.433 258.032 323.501 264.654 304.518C278.285 343.523 298.786 380.251 326.635 410.709Z" fill="white"/>
|
||||||
|
<path d="M475.348 920.214C510.18 920.214 538.416 891.978 538.416 857.146C538.416 822.315 510.18 794.078 475.348 794.078C440.517 794.078 412.28 822.315 412.28 857.146C412.28 891.978 440.517 920.214 475.348 920.214Z" stroke="white" stroke-width="3.33" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M450.606 473.201C451.861 472.735 533.754 427.648 577.331 369.308C593.881 347.164 604.914 323.108 603.904 298.87C603.204 281.621 596.411 264.27 581.194 247.445C538.604 200.35 454.436 149.691 403.278 225.635C374.285 268.679 410.537 326.63 384.497 363.159" stroke="white" stroke-width="3.33" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M450.674 473.154C450.652 473.166 450.63 473.188 450.607 473.199C450.584 473.21 450.585 473.221 450.607 473.21" stroke="white" stroke-width="3.33" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M539.193 644.777C538.471 666.699 538.416 682.804 538.416 682.804C538.416 682.804 534.116 732.164 488.29 732.164C442.464 732.164 418.54 708.664 412.279 685.158C409.538 674.868 404.687 641.558 405.309 603.586C406.019 559.476 414.109 509.073 441.427 481.168C444.257 478.262 447.328 475.599 450.606 473.21V473.2" stroke="white" stroke-width="3.33" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M306.067 222.414C340.11 162.5 402.945 89.2292 505.317 94.1352C676.917 102.36 780.917 246.988 765.647 341.002C754.97 406.668 729.762 443.663 678.271 468.959V468.97C675.363 470.402 672.371 471.789 669.28 473.154C630.398 490.303 592.693 500.027 570.216 514.112C563.235 518.485 557.729 523.28 554.099 528.852C551.769 532.438 549.782 538.509 548.099 546.234" stroke="white" stroke-width="3.33" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M501.953 318.66C503.668 317.116 505.607 315.84 507.703 314.875C508.305 314.628 508.929 314.442 509.568 314.32C512.468 313.765 515.961 315.097 516.783 317.938C517.515 320.502 515.772 323.255 513.442 324.565C512.509 325.077 511.507 325.451 510.467 325.675C508.895 325.999 507.298 326.196 505.694 326.263" stroke="white" stroke-width="3.33" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M510.456 325.64C509.589 322.155 508.716 318.674 507.836 315.196" stroke="white" stroke-width="3.33" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M494.106 285.449C493.762 282.663 493.429 279.877 493.085 277.091" stroke="white" stroke-width="3.33" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M465.925 288.057C465.403 284.572 464.877 281.09 464.349 277.612" stroke="white" stroke-width="3.33" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M432.192 309.801C426.209 298.724 420.182 287.524 416.808 275.392C413.434 263.26 412.857 249.952 417.708 238.331C422.603 226.576 432.648 217.541 443.903 211.58C457.8 204.178 473.643 201.244 489.268 203.18C504.913 205.202 519.41 212.468 530.392 223.792C538.75 232.55 544.522 243.405 550.216 254.105C555.91 264.805 561.748 275.627 570.195 284.305C578.642 292.983 590.208 299.39 602.317 298.923" stroke="white" stroke-width="3.33" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M430.549 310.489C429.939 340.714 449.585 370.339 477.667 381.538" stroke="white" stroke-width="3.33" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M444.257 257.301C439.107 281.709 448.942 308.648 468.61 324.001C476.535 330.183 485.792 334.545 493.473 341.027C501.154 347.509 507.359 357.127 505.927 367.067" stroke="white" stroke-width="3.33" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M439.352 252.027C440.962 253.803 442.664 255.492 444.452 257.089C461.002 271.929 484.5 278.889 506.433 275.059C507.427 278.005 509.14 280.656 511.418 282.773C513.695 284.889 516.464 286.404 519.475 287.18C519.697 287.236 519.93 287.28 520.163 287.324C523.098 287.897 526.127 287.755 528.996 286.911C531.865 286.067 534.488 284.545 536.646 282.474" stroke="white" stroke-width="3.33" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M480.143 291.01C481.203 292.332 481.878 293.921 482.094 295.603C482.31 297.284 482.058 298.992 481.366 300.539C480.675 302.087 479.57 303.413 478.173 304.374C476.777 305.334 475.143 305.891 473.45 305.984C476.358 306.949 479.266 307.904 482.174 308.87" stroke="white" stroke-width="3.33" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M519.868 288.668C525.141 311.989 531.198 335.117 538.038 358.052" stroke="white" stroke-width="3.33" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M322.229 249.441C336.906 285.037 354.764 319.237 375.585 351.625C378.193 355.687 380.885 359.738 383.666 363.734C397.074 382.97 412.78 400.84 433.566 411.234C441.024 414.963 449.371 417.694 457.63 416.528C465.889 415.362 473.902 409.48 475.4 401.266C476.4 395.805 474.523 389.889 476.643 384.739C477.024 383.821 477.516 382.953 478.108 382.153C481.272 377.89 486.999 375.726 492.227 374.005C497.033 372.429 501.839 370.85 506.646 369.266L537.736 359.043C537.913 358.988 538.101 358.921 538.29 358.865C543.018 357.378 548.891 356.412 551.891 360.242C553.4 362.173 553.656 364.815 554.921 366.913C556.808 370.043 560.737 371.475 564.389 371.375C568.041 371.275 571.537 369.899 574.934 368.544" stroke="white" stroke-width="3.33" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M570.173 513.858C570.184 513.947 570.206 514.024 570.217 514.113C572.337 525.779 565.233 537.7 555.355 544.271C553.184 545.704 550.897 546.952 548.517 548.001C540.048 551.764 530.536 553.218 521.234 553.94C509.313 554.85 497.226 554.705 485.582 557.44C481.997 558.284 478.212 559.582 476.103 562.59C474.216 565.299 474.083 568.751 474.303 572.114C474.337 572.757 474.392 573.39 474.448 574.023C475.813 589.529 477.182 605.035 478.554 620.541C479.287 628.8 480.02 637.067 480.754 645.341C500.112 647.206 519.581 645.918 538.854 642.988C546.712 641.8 554.537 640.324 562.296 638.688C588.025 633.272 614.131 625.624 634.677 609.219C654.445 593.457 667.687 570.448 674.413 546.073C681.139 521.698 681.695 495.973 679.186 470.806" stroke="white" stroke-width="3.33" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M427.343 610.5C424.756 610.756 422.158 611 419.572 611.255C415.172 611.677 409.538 613.331 409.382 617.737C409.216 622.21 414.856 624.237 419.295 624.73C438.584 626.859 458.099 625.487 476.9 620.68" stroke="white" stroke-width="3.33" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M427.343 610.501C434.118 610.639 440.886 609.987 447.511 608.559C440.784 609.203 434.061 609.851 427.343 610.501Z" stroke="white" stroke-width="3.33" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M425.077 596.672C423.146 596.794 421.226 596.905 419.306 597.016C416.852 597.161 414.322 597.327 412.146 598.47C411.153 598.946 410.304 599.677 409.684 600.587C409.065 601.498 408.697 602.555 408.617 603.654C408.618 603.907 408.64 604.16 408.683 604.409C409.305 607.809 413.389 609.159 416.797 609.648C420.291 610.149 423.813 610.434 427.342 610.502" stroke="white" stroke-width="3.33" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M425.077 596.672C433.645 597.345 442.265 596.841 450.695 595.172C442.149 595.683 433.61 596.183 425.077 596.672Z" stroke="white" stroke-width="3.33" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M472.739 572.208C466.291 566.48 459.838 560.753 453.381 555.025C450.645 562.605 450.835 570.933 453.914 578.379C442.992 579.713 432.067 581.041 421.137 582.364C418.679 582.499 416.271 583.121 414.055 584.195C411.924 585.405 410.237 587.758 410.57 590.189C411.092 593.974 415.67 595.539 419.45 596.072C421.326 596.339 423.202 596.539 425.077 596.672" stroke="white" stroke-width="3.33" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M320.741 247.877C313.927 249.598 307.204 251.641 300.573 254.004C290.536 257.562 280.769 261.84 271.347 266.804C269.782 267.625 268.206 268.504 266.708 269.49C263.408 271.655 260.536 274.341 259.308 278.004C257.799 282.466 259.097 287.35 260.485 291.845C261.795 296.096 263.186 300.322 264.658 304.521C278.289 343.521 298.79 380.253 326.639 410.711C327.349 411.488 328.07 412.265 328.792 413.031C359.216 445.497 398.298 470.294 441.431 481.171L441.931 481.305" stroke="white" stroke-width="3.33" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M259.949 228.22C257.719 222.972 255.182 217.86 252.349 212.913C250.384 209.495 247.065 205.654 243.303 206.842C240.838 207.63 239.495 210.449 239.573 213.042C239.651 215.635 240.85 218.036 242.015 220.356C250.096 236.462 258.184 252.567 266.279 268.673" stroke="white" stroke-width="3.33" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M259.948 228.22C261.806 234.842 264.03 241.356 266.608 247.733C264.856 241.078 262.63 234.557 259.948 228.22Z" stroke="white" stroke-width="3.33" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M276.087 228.087C273.693 219.272 270.594 210.664 266.819 202.346C265.176 198.728 261.957 194.51 258.205 195.831C254.705 197.063 254.498 201.88 255.053 205.554C256.208 213.205 257.845 220.775 259.953 228.22" stroke="white" stroke-width="3.33" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M276.087 228.087C276.997 232.349 277.977 236.593 279.028 240.818C278.218 236.544 277.238 232.3 276.087 228.087Z" stroke="white" stroke-width="3.33" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M300.474 253.738C305.403 246.765 307.998 238.411 307.888 229.874C307.975 228.029 307.573 226.195 306.723 224.557C306.172 223.633 305.333 222.916 304.336 222.515C303.627 222.214 302.837 222.159 302.094 222.359C300.463 222.825 299.475 224.424 298.642 225.9C296.144 230.35 293.644 234.794 291.142 239.23C289.312 224.4 285.677 209.849 280.317 195.9C279.117 192.792 276.654 189.1 273.457 190.006C270.316 190.906 270.116 195.245 270.605 198.486C272.114 208.41 273.942 218.277 276.088 228.087" stroke="white" stroke-width="3.33" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M264.689 304.407C264.677 304.44 264.666 304.484 264.655 304.518C258.029 323.498 251.336 343.433 254.433 363.301C255.718 371.53 258.66 379.412 263.079 386.471C267.497 393.53 273.302 399.62 280.141 404.372C286.981 409.124 294.713 412.44 302.87 414.118C311.028 415.797 319.441 415.804 327.601 414.138" stroke="white" stroke-width="3.33" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M186.007 156.518C198.453 171.983 211.396 188.593 213.662 208.318C214.817 218.373 212.736 229.292 205.784 236.648C198.832 244.004 186.359 246.442 178.315 240.299C170.271 234.156 170.576 219.288 179.778 215.075C189.121 210.797 200.306 219.736 201.885 229.889C203.464 240.042 198.387 250.001 192.61 258.501C186.833 267.001 180.043 275.201 177.458 285.143C173.658 299.774 180.342 316.094 192.376 325.243" stroke="white" stroke-width="3.33" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M744.058 519.843C721.124 530.92 705.837 556.203 706.682 581.658C706.967 590.244 709.126 599.133 714.823 605.558C720.52 611.983 730.347 615.221 738.077 611.474C745.807 607.727 748.992 596.054 742.934 589.964C737.834 584.836 728.676 585.719 723.245 590.499C717.814 595.279 715.603 602.84 715.351 610.07C714.964 621.18 718.551 632.01 722.303 642.47C726.055 652.93 730.079 663.526 730.623 674.629C731.167 685.732 727.614 697.679 718.756 704.396C709.898 711.113 695.283 710.318 689.256 700.98" stroke="white" stroke-width="3.33" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M820.884 488.892L809.131 468.912" stroke="white" stroke-width="3.33" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M803.34 486.653L819.919 473.888" stroke="white" stroke-width="3.33" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M825.193 345.476C825.211 342.769 825.895 340.108 827.184 337.728C828.474 335.348 830.33 333.323 832.588 331.83C834.846 330.338 837.437 329.424 840.132 329.17C842.827 328.916 845.543 329.33 848.04 330.375C850.537 331.419 852.739 333.063 854.45 335.16C856.161 337.257 857.33 339.744 857.853 342.399C858.375 345.055 858.236 347.799 857.447 350.388C856.658 352.978 855.243 355.333 853.328 357.246C848.336 362.232 840.828 363.493 834.592 366.801C828.356 370.109 823.058 378.077 827.011 383.921L827.911 380.743" stroke="white" stroke-width="3.33" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M821.801 405.393L822.832 400.661" stroke="white" stroke-width="3.33" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M746.174 54.1415C746.598 51.437 747.689 48.8806 749.347 46.703C751.006 44.5253 753.181 42.7949 755.676 41.6677C758.171 40.5406 760.907 40.0523 763.637 40.2467C766.368 40.4412 769.007 41.3124 771.317 42.7817C773.627 44.251 775.534 46.2722 776.868 48.663C778.201 51.0538 778.919 53.7389 778.955 56.4762C778.992 59.2135 778.346 61.9168 777.077 64.3423C775.808 66.7677 773.955 68.8391 771.685 70.3695C767.603 73.1205 762.526 73.9125 758.095 76.0585C753.664 78.2045 749.58 82.7765 750.772 87.5525L752.599 85.6635" stroke="white" stroke-width="3.33" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M749.006 110.435L750.1 102.2" stroke="white" stroke-width="3.33" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M607.975 57.7L599.801 45.916" stroke="white" stroke-width="3.33" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M594.061 56.4003L606.988 45.8203" stroke="white" stroke-width="3.33" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M360.184 75.2004L350.784 68.1484" stroke="white" stroke-width="3.33" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M348.17 78.552L357.65 64.5" stroke="white" stroke-width="3.33" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M243 258.182C236.851 248.415 232.817 237.468 231.158 226.047" stroke="white" stroke-width="3.33" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M251.849 75.3057C250.502 72.1609 250.299 68.6434 251.277 65.3648C252.255 62.0862 254.35 59.2539 257.2 57.3607C259.282 55.9623 261.817 55.4045 264.294 55.7997C269.015 56.7687 271.686 62.0507 271.832 66.8677C271.978 71.6847 270.332 76.3607 269.716 81.1397C269.1 85.9187 269.821 91.3957 273.579 94.4127L272.824 94.0067" stroke="white" stroke-width="3.33" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M283.401 108.501L280.267 103.801" stroke="white" stroke-width="3.33" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M112.175 333.301C109.13 331.536 106.649 328.942 105.023 325.82C103.397 322.699 102.693 319.179 102.993 315.672C103.793 308.704 109.519 302.472 116.467 301.508C123.415 300.544 130.824 305.308 132.44 312.131C134.003 318.739 130.51 325.85 132.432 332.363C134.3 338.69 140.604 342.463 146.395 345.626" stroke="white" stroke-width="3.33" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M160.39 355.301L156.865 352.559" stroke="white" stroke-width="3.33" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M374.807 478.786C357.502 471.103 343.324 457.764 334.601 440.96" stroke="white" stroke-width="3.33" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M346.258 476.707L337.899 468.873" stroke="white" stroke-width="3.33" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M255.324 523.683C249.924 519.83 249.153 511.164 253.39 506.065C257.627 500.966 265.776 499.95 271.448 503.383C277.12 506.816 280.014 514.034 278.875 520.565C277.884 526.249 274.264 531.21 273.257 536.891C272.714 540.195 273.064 543.585 274.271 546.708C275.478 549.832 277.497 552.576 280.12 554.657" stroke="white" stroke-width="3.33" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M294.109 573.772L290.975 569.594" stroke="white" stroke-width="3.33" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M186.926 551.487L172.414 542.937" stroke="white" stroke-width="3.33" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M175.017 554.968L182.329 541.388" stroke="white" stroke-width="3.33" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M767.335 654.71L779.875 649.496" stroke="white" stroke-width="3.33" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M776.224 657.346C773.601 654.178 771.806 650.409 771 646.377" stroke="white" stroke-width="3.33" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M689.413 635.006L682.65 629.229" stroke="white" stroke-width="3.33" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M680.71 638.581C683.142 634.19 686.677 630.508 690.967 627.9" stroke="white" stroke-width="3.33" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M542.74 375.806L540.128 368.493" stroke="white" stroke-width="3.33" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M525.576 381.529L523.558 375.238" stroke="white" stroke-width="3.33" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M508.267 387.301C506.944 385.28 506.22 382.926 506.178 380.511" stroke="white" stroke-width="3.33" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M488.725 393.638L486.802 387.838" stroke="white" stroke-width="3.33" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M315.817 296.64C316.799 295.807 317.979 295.242 319.243 294.998C320.507 294.755 321.812 294.842 323.033 295.25C324.254 295.659 325.349 296.375 326.212 297.33C327.075 298.285 327.677 299.447 327.959 300.703C328.759 304.249 326.924 307.886 327.144 311.514C327.377 313.959 328.504 316.232 330.309 317.897C332.114 319.562 334.471 320.501 336.926 320.536" stroke="white" stroke-width="3.33" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M338.284 387.189C338.83 386.106 339.65 385.184 340.662 384.517C341.675 383.849 342.845 383.459 344.056 383.385C345.266 383.311 346.475 383.555 347.562 384.094C348.648 384.633 349.574 385.447 350.248 386.456C353.097 390.721 350.675 396.956 353.389 401.308C354.446 402.869 356.058 403.969 357.897 404.384C359.736 404.799 361.664 404.499 363.289 403.544" stroke="white" stroke-width="3.33" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M300.112 342.789C300.445 341.913 301.012 341.145 301.753 340.57C302.493 339.995 303.378 339.635 304.309 339.53C305.24 339.425 306.183 339.579 307.033 339.974C307.883 340.37 308.607 340.992 309.126 341.772C309.985 343.342 310.399 345.116 310.326 346.904C310.251 348.689 310.584 350.468 311.301 352.104C312.152 353.667 314.089 354.804 315.735 354.124" stroke="white" stroke-width="3.33" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M405.248 424.573C406.925 420.891 412.677 420.017 415.372 423.035C417.01 424.87 417.389 427.471 417.724 429.908C418.059 432.345 418.507 434.951 420.224 436.708C421.941 438.465 425.391 438.683 426.568 436.523" stroke="white" stroke-width="3.33" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M488.578 417.106C488.81 416.305 489.279 415.593 489.924 415.064C490.569 414.535 491.358 414.214 492.189 414.143C493.02 414.072 493.853 414.254 494.578 414.666C495.303 415.077 495.886 415.699 496.251 416.449C497.317 418.638 496.525 421.794 498.506 423.209C500.163 424.393 502.479 423.342 504.058 422.056C505.637 420.77 507.27 419.156 509.306 419.223" stroke="white" stroke-width="3.33" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M656.782 512.083L657.234 513.72C656.925 512.688 656.341 511.759 655.545 511.033C654.749 510.307 653.771 509.811 652.716 509.597C651.66 509.383 650.566 509.46 649.55 509.819C648.534 510.178 647.635 510.806 646.948 511.636C644.775 514.261 645.232 518.169 646.365 521.384C647.498 524.599 649.205 527.736 649.186 531.144C649.167 534.552 646.458 538.286 643.086 537.765L642.564 536.149" stroke="white" stroke-width="3.33" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M596.13 524.6C593.772 522.634 589.909 523.557 587.955 525.925C586.001 528.293 585.621 531.61 585.955 534.662C586.289 537.714 587.238 540.668 587.632 543.712C588.026 546.756 587.787 550.064 585.981 552.546C583.292 556.246 577.669 556.934 573.599 554.852" stroke="white" stroke-width="3.33" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M616.037 602.405C616.508 599.155 613.437 596.111 610.167 595.885C606.897 595.659 603.775 597.695 601.889 600.385C600.412 602.492 599.56 604.961 598.432 607.274C597.304 609.587 595.78 611.86 593.479 613.012C591.178 614.164 587.961 613.793 586.57 611.628" stroke="white" stroke-width="3.33" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M543.644 598.839C543.928 597.029 543.758 595.176 543.148 593.448C542.539 591.72 541.509 590.171 540.151 588.94C538.794 587.709 537.151 586.835 535.372 586.397C533.593 585.959 531.732 585.971 529.959 586.431C526.883 587.231 524.316 589.295 521.887 591.343C519.458 593.391 516.972 595.525 513.95 596.507C510.928 597.489 507.188 597.018 505.224 594.521" stroke="white" stroke-width="3.33" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M519.469 287.181C519.691 287.237 519.924 287.281 520.157 287.325L519.863 288.672C525.151 312.006 531.207 335.134 538.033 358.056L538.289 358.866C543.02 357.379 548.889 356.413 551.889 360.243C552.729 361.317 553.18 362.61 553.634 363.907C553.995 364.943 554.358 365.981 554.919 366.914C556.806 370.044 560.724 371.476 564.387 371.376C568.05 371.276 571.532 369.9 574.932 368.545L577.332 369.311C593.882 347.167 604.915 323.115 603.905 298.873L602.317 298.928C590.208 299.395 578.642 292.988 570.195 284.31C561.748 275.632 555.91 264.81 550.216 254.11L550.196 254.071C544.508 243.383 538.74 232.544 530.392 223.797C519.41 212.473 504.913 205.207 489.268 203.185C473.643 201.249 457.8 204.183 443.903 211.585C432.648 217.546 422.603 226.581 417.708 238.336C412.857 249.957 413.434 263.265 416.808 275.397C420.182 287.529 426.209 298.729 432.192 309.806L430.549 310.494C429.939 340.719 449.585 370.343 477.667 381.543L478.111 382.154C481.275 377.891 487.002 375.727 492.23 374.006C497.036 372.422 501.842 370.843 506.649 369.267L505.927 367.067C507.359 357.127 501.154 347.509 493.473 341.027C489.331 337.531 484.73 334.652 480.127 331.771C476.195 329.31 472.261 326.849 468.61 324.001C448.942 308.648 439.107 281.709 444.257 257.301L444.446 257.09C460.996 271.93 484.494 278.89 506.427 275.06C507.422 278.005 509.135 280.656 511.412 282.773C513.69 284.889 516.459 286.404 519.469 287.181ZM519.676 227.161C508.587 216.956 493.511 209.612 478.187 211.473C477.274 211.584 476.624 212.414 476.735 213.327C476.846 214.24 477.676 214.89 478.588 214.779C492.61 213.076 506.758 219.798 517.421 229.611C527.219 238.628 534.515 249.953 541.886 261.393L541.898 261.411C542.561 262.44 543.225 263.47 543.891 264.5C551.918 276.903 560.649 289.578 572.798 298.578C573.537 299.125 574.579 298.97 575.127 298.231C575.674 297.492 575.519 296.45 574.78 295.902C563.17 287.302 554.722 275.107 546.687 262.691C546.01 261.644 545.333 260.594 544.654 259.54C537.329 248.165 529.805 236.483 519.676 227.161Z" fill="white"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M474.301 572.108C474.081 568.745 474.214 565.293 476.101 562.584C478.212 559.576 482.001 558.278 485.586 557.438C494.107 555.437 502.866 554.977 511.624 554.518C514.833 554.35 518.041 554.182 521.238 553.938C530.54 553.216 540.052 551.762 548.521 547.999L548.1 546.234C549.783 538.509 551.77 532.438 554.1 528.852C557.73 523.28 563.236 518.485 570.217 514.112C583.415 505.842 601.863 499.075 622.716 491.426C637.378 486.048 653.229 480.234 669.281 473.154C672.372 471.789 675.364 470.402 678.272 468.97V468.959C729.763 443.663 754.971 406.668 765.648 341.002C780.918 246.988 676.918 102.36 505.318 94.1352C402.946 89.2292 340.111 162.5 306.064 222.415L304.332 222.515C305.329 222.917 306.168 223.634 306.719 224.557C307.569 226.196 307.971 228.03 307.884 229.874C307.994 238.412 305.399 246.766 300.47 253.738L300.57 254.004C307.2 251.641 313.923 249.599 320.738 247.877L322.225 249.442C336.902 285.038 354.76 319.238 375.581 351.626C378.189 355.688 380.876 359.735 383.662 363.735L384.494 363.158C397.143 345.414 395.094 322.615 392.964 298.925C390.71 273.846 388.365 247.769 403.275 225.634C454.433 149.69 538.601 200.349 581.191 247.444C596.408 264.269 603.201 281.62 603.901 298.869C604.911 323.107 593.878 347.163 577.328 369.307C533.751 427.647 451.858 472.734 450.603 473.2V473.211C447.324 475.6 444.254 478.263 441.424 481.169C414.106 509.074 406.016 559.477 405.306 603.587L408.614 603.654C408.693 602.556 409.061 601.498 409.681 600.588C410.301 599.677 411.15 598.947 412.143 598.47C414.319 597.327 416.849 597.161 419.303 597.016C421.223 596.905 423.143 596.794 425.074 596.672C423.198 596.539 421.323 596.339 419.447 596.072C415.667 595.539 411.089 593.974 410.567 590.189C410.234 587.758 411.921 585.405 414.052 584.195C416.268 583.121 418.675 582.499 421.134 582.364C432.063 581.041 442.989 579.713 453.911 578.379C450.832 570.932 450.642 562.605 453.378 555.025C459.834 560.753 466.287 566.48 472.736 572.208L474.301 572.108ZM668.573 172.135C667.769 171.688 666.755 171.977 666.308 172.78C665.861 173.583 666.149 174.597 666.953 175.045C715.644 202.152 748.097 256.336 749.008 312.06C749.919 367.784 719.258 423 671.476 451.685C670.687 452.159 670.432 453.181 670.905 453.97C671.378 454.758 672.401 455.014 673.19 454.54C721.991 425.243 753.268 368.918 752.337 312.006C751.407 255.093 718.302 199.821 668.573 172.135Z" fill="white"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M538.416 857.146C538.416 891.978 510.18 920.214 475.348 920.214C440.517 920.214 412.28 891.978 412.28 857.146C412.28 822.315 440.517 794.078 475.348 794.078C510.18 794.078 538.416 822.315 538.416 857.146ZM486.788 806.629C485.894 806.415 484.995 806.966 484.781 807.86C484.567 808.755 485.118 809.653 486.013 809.867C493.496 811.659 500.442 815.217 506.27 820.243C512.097 825.268 516.637 831.616 519.509 838.756C522.381 845.895 523.502 853.618 522.779 861.279C522.055 868.94 519.508 876.317 515.35 882.792C514.853 883.566 515.078 884.596 515.852 885.093C516.626 885.59 517.656 885.365 518.152 884.592C522.597 877.669 525.321 869.783 526.094 861.592C526.868 853.402 525.669 845.145 522.598 837.513C519.528 829.88 514.675 823.094 508.445 817.721C502.215 812.348 494.789 808.545 486.788 806.629Z" fill="white"/>
|
||||||
|
<g opacity="0.1">
|
||||||
|
<path d="M264.929 271.673C263.863 276.935 262.439 281.516 262.748 286.948C263.158 292.63 263.916 298.282 265.018 303.871C266.799 313.791 269.639 323.492 273.49 332.805C280.801 349.965 290.001 366.255 300.921 381.376C334.661 428.998 382.204 465.116 437.128 484.852C447.479 488.611 452.128 471.887 441.689 468.309C376.7 446.03 322.358 396.119 292.437 334.52C290.374 330.274 288.337 326.009 286.422 321.695C284.408 317.161 281.703 313.003 279.822 308.412C277.408 302.737 275.374 296.907 273.733 290.961C273.04 288.309 272.528 285.641 272.044 282.946C271.399 279.359 270.054 275.986 269.81 272.333C269.634 269.702 265.519 268.765 264.93 271.673H264.929Z" fill="white"/>
|
||||||
|
</g>
|
||||||
|
<g opacity="0.1">
|
||||||
|
<path d="M441.87 263.328C441.188 270.95 447.338 275.063 452.95 278.92C459.263 283.26 466.036 285.152 473.594 286.246C481.7 287.42 489.885 287.401 498.004 288.386C501.796 288.821 505.538 289.62 509.176 290.772C513.035 292.023 516.336 293.649 520.465 293.994C525.53 294.418 528.934 287.929 526.293 283.837C518.247 271.373 496.842 272.186 483.793 271.306C476.576 270.896 469.421 269.745 462.439 267.872C456.417 266.216 452.127 261.648 446.139 260.072C445.639 259.944 445.116 259.932 444.61 260.035C444.104 260.138 443.627 260.354 443.216 260.667C442.806 260.98 442.471 261.382 442.237 261.842C442.003 262.303 441.876 262.81 441.866 263.327L441.87 263.328Z" fill="white"/>
|
||||||
|
</g>
|
||||||
|
<g opacity="0.1">
|
||||||
|
<path d="M479.754 383.176C476.985 385.502 475.464 389.776 473.954 392.993C472.105 396.94 472.105 401.375 472.83 405.593C474.103 412.993 486.251 411.266 485.905 403.823C485.761 400.718 485.631 397.605 485.337 394.512C485.065 391.64 486.592 389.004 486.951 386.162C487.458 382.151 482.193 381.127 479.751 383.179L479.754 383.176Z" fill="white"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 31 KiB |
|
@ -0,0 +1,95 @@
|
||||||
|
<svg width="960" height="960" viewBox="0 0 960 960" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<g clip-path="url(#clip0_317_821)">
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M450.606 473.211C450.584 473.222 450.584 473.211 450.606 473.2C451.861 472.733 533.754 427.646 577.333 369.307L574.933 368.541C571.536 369.896 568.04 371.272 564.388 371.372C560.736 371.472 556.807 370.04 554.92 366.91C554.359 365.979 553.996 364.94 553.634 363.903C553.181 362.606 552.729 361.313 551.89 360.239C548.89 356.409 543.018 357.375 538.29 358.862C538.181 358.894 538.072 358.93 537.965 358.966C537.887 358.991 537.81 359.017 537.735 359.04L506.645 369.263C501.839 370.846 497.032 372.426 492.226 374.002C486.998 375.723 481.271 377.887 478.107 382.15C477.516 382.95 477.024 383.818 476.642 384.736C475.41 387.729 475.528 390.981 475.647 394.252C475.732 396.609 475.818 398.976 475.399 401.263C473.901 409.477 465.888 415.359 457.629 416.525C449.37 417.691 441.023 414.96 433.565 411.231C412.779 400.837 397.073 382.967 383.665 363.731C380.884 359.735 378.192 355.684 375.584 351.622C354.764 319.234 336.906 285.034 322.228 249.438L320.741 247.873C313.922 249.594 307.199 251.636 300.573 254C290.535 257.558 280.766 261.837 271.343 266.802C269.778 267.623 268.204 268.5 266.704 269.488C263.411 271.653 260.536 274.339 259.304 278.002C257.795 282.464 259.093 287.343 260.481 291.843C261.787 296.098 263.178 300.323 264.654 304.519C278.285 343.523 298.786 380.251 326.635 410.709C327.345 411.486 328.066 412.263 328.788 413.029C359.212 445.495 398.294 470.292 441.427 481.169C444.257 478.263 447.328 475.6 450.606 473.211ZM314.801 267.373C314.497 266.506 313.546 266.049 312.679 266.354C311.811 266.659 311.355 267.609 311.66 268.476C332.398 327.53 369.437 379.502 418.49 418.377C419.211 418.948 420.258 418.827 420.829 418.106C421.4 417.385 421.279 416.338 420.559 415.767C371.999 377.283 335.331 325.833 314.801 267.373Z" fill="white" fill-opacity="0.96"/>
|
||||||
|
<path d="M478.556 620.536C477.19 605.03 475.822 589.524 474.45 574.018C474.394 573.385 474.339 572.752 474.305 572.109C474.083 568.746 474.216 565.294 476.105 562.585C478.214 559.577 481.999 558.279 485.584 557.435C497.228 554.704 509.315 554.849 521.236 553.935C530.536 553.213 540.05 551.759 548.519 547.996C550.899 546.947 553.186 545.7 555.357 544.267C565.235 537.696 572.339 525.775 570.219 514.109C592.696 500.024 630.401 490.3 669.283 473.151C672.369 471.786 675.366 470.399 678.274 468.967L679.184 470.798C681.693 495.961 681.138 521.69 674.411 546.065C667.684 570.44 654.443 593.449 634.675 609.211C614.129 625.611 588.023 633.264 562.294 638.68C554.535 640.312 546.71 641.788 538.852 642.98C519.583 645.91 500.114 647.198 480.752 645.333C480.021 637.064 479.289 628.798 478.556 620.536Z" fill="white" fill-opacity="0.96"/>
|
||||||
|
<path d="M510.456 325.641C509.589 322.156 508.716 318.674 507.836 315.197L507.703 314.875C508.305 314.628 508.929 314.442 509.568 314.32C512.468 313.765 515.961 315.097 516.783 317.938C517.515 320.502 515.772 323.255 513.442 324.565C512.509 325.077 511.507 325.451 510.467 325.675L510.456 325.641Z" fill="#171717"/>
|
||||||
|
<path d="M538.416 682.8C538.416 682.8 534.116 732.16 488.29 732.16C442.464 732.16 418.54 708.66 412.279 685.154C409.538 674.864 404.687 641.554 405.309 603.582L408.617 603.649C408.618 603.902 408.64 604.155 408.683 604.404C409.305 607.804 413.389 609.154 416.797 609.643C420.292 610.144 423.813 610.429 427.342 610.497C424.755 610.753 422.158 610.997 419.572 611.252C415.172 611.674 409.538 613.328 409.382 617.734C409.216 622.207 414.855 624.234 419.294 624.727C438.583 626.857 458.099 625.486 476.9 620.68L478.553 620.535C479.287 628.794 480.02 637.061 480.753 645.335C500.111 647.2 519.58 645.912 538.853 642.982L539.197 644.782C538.471 666.7 538.416 682.8 538.416 682.8Z" fill="#171717"/>
|
||||||
|
<path d="M326.635 410.709C327.345 411.486 328.066 412.263 328.788 413.029L327.6 414.139C319.44 415.804 311.027 415.797 302.87 414.119C294.713 412.44 286.98 409.124 280.141 404.372C273.302 399.62 267.497 393.53 263.078 386.471C258.659 379.411 255.718 371.529 254.432 363.301C251.332 343.433 258.032 323.501 264.654 304.518C278.285 343.523 298.786 380.251 326.635 410.709Z" fill="#171717"/>
|
||||||
|
<path d="M475.348 920.214C510.18 920.214 538.416 891.978 538.416 857.146C538.416 822.315 510.18 794.078 475.348 794.078C440.517 794.078 412.28 822.315 412.28 857.146C412.28 891.978 440.517 920.214 475.348 920.214Z" stroke="#171717" stroke-width="3.33" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M450.606 473.201C451.861 472.735 533.754 427.648 577.331 369.308C593.881 347.164 604.914 323.108 603.904 298.87C603.204 281.621 596.411 264.27 581.194 247.445C538.604 200.35 454.436 149.691 403.278 225.635C374.285 268.679 410.537 326.63 384.497 363.159" stroke="#171717" stroke-width="3.33" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M450.674 473.154C450.652 473.166 450.63 473.188 450.607 473.199C450.584 473.21 450.585 473.221 450.607 473.21" stroke="#171717" stroke-width="3.33" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M539.193 644.777C538.471 666.699 538.416 682.804 538.416 682.804C538.416 682.804 534.116 732.164 488.29 732.164C442.464 732.164 418.54 708.664 412.279 685.158C409.538 674.868 404.687 641.558 405.309 603.586C406.019 559.476 414.109 509.073 441.427 481.168C444.257 478.262 447.328 475.599 450.606 473.21V473.2" stroke="#171717" stroke-width="3.33" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M306.067 222.414C340.11 162.5 402.945 89.2292 505.317 94.1352C676.917 102.36 780.917 246.988 765.647 341.002C754.97 406.668 729.762 443.663 678.271 468.959V468.97C675.363 470.402 672.371 471.789 669.28 473.154C630.398 490.303 592.693 500.027 570.216 514.112C563.235 518.485 557.729 523.28 554.099 528.852C551.769 532.438 549.782 538.509 548.099 546.234" stroke="#171717" stroke-width="3.33" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M501.953 318.66C503.668 317.116 505.607 315.84 507.703 314.875C508.305 314.628 508.929 314.442 509.568 314.32C512.468 313.765 515.961 315.097 516.783 317.938C517.515 320.502 515.772 323.255 513.442 324.565C512.509 325.077 511.507 325.451 510.467 325.675C508.895 325.999 507.298 326.196 505.694 326.263" stroke="#171717" stroke-width="3.33" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M510.456 325.64C509.589 322.155 508.716 318.674 507.836 315.196" stroke="#171717" stroke-width="3.33" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M494.106 285.449C493.762 282.663 493.429 279.877 493.085 277.091" stroke="#171717" stroke-width="3.33" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M465.925 288.057C465.403 284.572 464.877 281.09 464.349 277.612" stroke="#171717" stroke-width="3.33" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M432.192 309.801C426.209 298.724 420.182 287.524 416.808 275.392C413.434 263.26 412.857 249.952 417.708 238.331C422.603 226.576 432.648 217.541 443.903 211.58C457.8 204.178 473.643 201.244 489.268 203.18C504.913 205.202 519.41 212.468 530.392 223.792C538.75 232.55 544.522 243.405 550.216 254.105C555.91 264.805 561.748 275.627 570.195 284.305C578.642 292.983 590.208 299.39 602.317 298.923" stroke="#171717" stroke-width="3.33" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M430.549 310.489C429.939 340.714 449.585 370.339 477.667 381.538" stroke="#171717" stroke-width="3.33" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M444.257 257.301C439.107 281.709 448.942 308.648 468.61 324.001C476.535 330.183 485.792 334.545 493.473 341.027C501.154 347.509 507.359 357.127 505.927 367.067" stroke="#171717" stroke-width="3.33" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M439.352 252.027C440.962 253.803 442.664 255.492 444.452 257.089C461.002 271.929 484.5 278.889 506.433 275.059C507.427 278.005 509.14 280.656 511.418 282.773C513.695 284.889 516.464 286.404 519.475 287.18C519.697 287.236 519.93 287.28 520.163 287.324C523.098 287.897 526.127 287.755 528.996 286.911C531.865 286.067 534.488 284.545 536.646 282.474" stroke="#171717" stroke-width="3.33" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M480.143 291.01C481.203 292.332 481.878 293.921 482.094 295.603C482.31 297.284 482.058 298.992 481.366 300.539C480.675 302.087 479.57 303.413 478.173 304.374C476.777 305.334 475.143 305.891 473.45 305.984C476.358 306.949 479.266 307.904 482.174 308.87" stroke="#171717" stroke-width="3.33" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M519.868 288.668C525.141 311.989 531.198 335.117 538.038 358.052" stroke="#171717" stroke-width="3.33" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M322.229 249.441C336.906 285.037 354.764 319.237 375.585 351.625C378.193 355.687 380.885 359.738 383.666 363.734C397.074 382.97 412.78 400.84 433.566 411.234C441.024 414.963 449.371 417.694 457.63 416.528C465.889 415.362 473.902 409.48 475.4 401.266C476.4 395.805 474.523 389.889 476.643 384.739C477.024 383.821 477.516 382.953 478.108 382.153C481.272 377.89 486.999 375.726 492.227 374.005C497.033 372.429 501.839 370.85 506.646 369.266L537.736 359.043C537.913 358.988 538.101 358.921 538.29 358.865C543.018 357.378 548.891 356.412 551.891 360.242C553.4 362.173 553.656 364.815 554.921 366.913C556.808 370.043 560.737 371.475 564.389 371.375C568.041 371.275 571.537 369.899 574.934 368.544" stroke="#171717" stroke-width="3.33" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M570.173 513.858C570.184 513.947 570.206 514.024 570.217 514.113C572.337 525.779 565.233 537.7 555.355 544.271C553.184 545.704 550.897 546.952 548.517 548.001C540.048 551.764 530.536 553.218 521.234 553.94C509.313 554.85 497.226 554.705 485.582 557.44C481.997 558.284 478.212 559.582 476.103 562.59C474.216 565.299 474.083 568.751 474.303 572.114C474.337 572.757 474.392 573.39 474.448 574.023C475.813 589.529 477.182 605.035 478.554 620.541C479.287 628.8 480.02 637.067 480.754 645.341C500.112 647.206 519.581 645.918 538.854 642.988C546.712 641.8 554.537 640.324 562.296 638.688C588.025 633.272 614.131 625.624 634.677 609.219C654.445 593.457 667.687 570.448 674.413 546.073C681.139 521.698 681.695 495.973 679.186 470.806" stroke="#171717" stroke-width="3.33" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M427.343 610.5C424.756 610.756 422.158 611 419.572 611.255C415.172 611.677 409.538 613.331 409.382 617.737C409.216 622.21 414.856 624.237 419.295 624.73C438.584 626.859 458.099 625.487 476.9 620.68" stroke="#171717" stroke-width="3.33" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M427.343 610.501C434.118 610.639 440.886 609.987 447.511 608.559C440.784 609.203 434.061 609.851 427.343 610.501Z" stroke="#171717" stroke-width="3.33" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M425.077 596.672C423.146 596.794 421.226 596.905 419.306 597.016C416.852 597.161 414.322 597.327 412.146 598.47C411.153 598.946 410.304 599.677 409.684 600.587C409.065 601.498 408.697 602.555 408.617 603.654C408.618 603.907 408.64 604.16 408.683 604.409C409.305 607.809 413.389 609.159 416.797 609.648C420.291 610.149 423.813 610.434 427.342 610.502" stroke="#171717" stroke-width="3.33" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M425.077 596.672C433.645 597.345 442.265 596.841 450.695 595.172C442.149 595.683 433.61 596.183 425.077 596.672Z" stroke="#171717" stroke-width="3.33" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M472.739 572.208C466.291 566.48 459.838 560.753 453.381 555.025C450.645 562.605 450.835 570.933 453.914 578.379C442.992 579.713 432.067 581.041 421.137 582.364C418.679 582.499 416.271 583.121 414.055 584.195C411.924 585.405 410.237 587.758 410.57 590.189C411.092 593.974 415.67 595.539 419.45 596.072C421.326 596.339 423.202 596.539 425.077 596.672" stroke="#171717" stroke-width="3.33" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M320.741 247.877C313.927 249.598 307.204 251.641 300.573 254.004C290.536 257.562 280.769 261.84 271.347 266.804C269.782 267.625 268.206 268.504 266.708 269.49C263.408 271.655 260.536 274.341 259.308 278.004C257.799 282.466 259.097 287.35 260.485 291.845C261.795 296.096 263.186 300.322 264.658 304.521C278.289 343.521 298.79 380.253 326.639 410.711C327.349 411.488 328.07 412.265 328.792 413.031C359.216 445.497 398.298 470.294 441.431 481.171L441.931 481.305" stroke="#171717" stroke-width="3.33" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M259.949 228.22C257.719 222.972 255.182 217.86 252.349 212.913C250.384 209.495 247.065 205.654 243.303 206.842C240.838 207.63 239.495 210.449 239.573 213.042C239.651 215.635 240.85 218.036 242.015 220.356C250.096 236.462 258.184 252.567 266.279 268.673" stroke="#171717" stroke-width="3.33" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M259.948 228.22C261.806 234.842 264.03 241.356 266.608 247.733C264.856 241.078 262.63 234.557 259.948 228.22V228.22Z" stroke="#171717" stroke-width="3.33" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M276.087 228.087C273.693 219.272 270.594 210.664 266.819 202.346C265.176 198.728 261.957 194.51 258.205 195.831C254.705 197.063 254.498 201.88 255.053 205.554C256.208 213.205 257.845 220.775 259.953 228.22" stroke="#171717" stroke-width="3.33" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M276.087 228.087C276.997 232.349 277.977 236.593 279.028 240.818C278.218 236.544 277.238 232.3 276.087 228.087Z" stroke="#171717" stroke-width="3.33" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M300.474 253.738C305.403 246.765 307.998 238.411 307.888 229.874C307.975 228.029 307.573 226.195 306.723 224.557C306.172 223.633 305.333 222.916 304.336 222.515C303.627 222.214 302.837 222.159 302.094 222.359C300.463 222.825 299.475 224.424 298.642 225.9C296.144 230.35 293.644 234.794 291.142 239.23C289.312 224.4 285.677 209.849 280.317 195.9C279.117 192.792 276.654 189.1 273.457 190.006C270.316 190.906 270.116 195.245 270.605 198.486C272.114 208.41 273.942 218.277 276.088 228.087" stroke="#171717" stroke-width="3.33" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M264.689 304.407C264.677 304.44 264.666 304.484 264.655 304.518C258.029 323.498 251.336 343.433 254.433 363.301C255.718 371.53 258.66 379.412 263.079 386.471C267.497 393.53 273.302 399.62 280.141 404.372C286.981 409.124 294.713 412.44 302.87 414.118C311.028 415.797 319.441 415.804 327.601 414.138" stroke="#171717" stroke-width="3.33" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M186.007 156.518C198.453 171.983 211.396 188.593 213.662 208.318C214.817 218.373 212.736 229.292 205.784 236.648C198.832 244.004 186.359 246.442 178.315 240.299C170.271 234.156 170.576 219.288 179.778 215.075C189.121 210.797 200.306 219.736 201.885 229.889C203.464 240.042 198.387 250.001 192.61 258.501C186.833 267.001 180.043 275.201 177.458 285.143C173.658 299.774 180.342 316.094 192.376 325.243" stroke="#171717" stroke-width="3.33" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M744.058 519.843C721.124 530.92 705.837 556.203 706.682 581.658C706.967 590.244 709.126 599.133 714.823 605.558C720.52 611.983 730.347 615.221 738.077 611.474C745.807 607.727 748.992 596.054 742.934 589.964C737.834 584.836 728.676 585.719 723.245 590.499C717.814 595.279 715.603 602.84 715.351 610.07C714.964 621.18 718.551 632.01 722.303 642.47C726.055 652.93 730.079 663.526 730.623 674.629C731.167 685.732 727.614 697.679 718.756 704.396C709.898 711.113 695.283 710.318 689.256 700.98" stroke="#171717" stroke-width="3.33" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M820.884 488.892L809.131 468.912" stroke="#171717" stroke-width="3.33" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M803.34 486.653L819.919 473.888" stroke="#171717" stroke-width="3.33" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M825.193 345.476C825.211 342.769 825.895 340.108 827.184 337.728C828.474 335.348 830.33 333.323 832.588 331.83C834.846 330.338 837.437 329.424 840.132 329.17C842.827 328.916 845.543 329.33 848.04 330.375C850.537 331.419 852.739 333.063 854.45 335.16C856.161 337.257 857.33 339.744 857.853 342.399C858.375 345.055 858.236 347.799 857.447 350.388C856.658 352.978 855.243 355.333 853.328 357.246C848.336 362.232 840.828 363.493 834.592 366.801C828.356 370.109 823.058 378.077 827.011 383.921L827.911 380.743" stroke="#171717" stroke-width="3.33" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M821.801 405.393L822.832 400.661" stroke="#171717" stroke-width="3.33" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M746.174 54.1415C746.598 51.437 747.689 48.8806 749.347 46.703C751.006 44.5253 753.181 42.7949 755.676 41.6677C758.171 40.5406 760.907 40.0523 763.637 40.2467C766.368 40.4412 769.007 41.3124 771.317 42.7817C773.627 44.251 775.534 46.2722 776.868 48.663C778.201 51.0538 778.919 53.7389 778.955 56.4762C778.992 59.2135 778.346 61.9168 777.077 64.3423C775.808 66.7677 773.955 68.8391 771.685 70.3695C767.603 73.1205 762.526 73.9125 758.095 76.0585C753.664 78.2045 749.58 82.7765 750.772 87.5525L752.599 85.6635" stroke="#171717" stroke-width="3.33" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M749.006 110.435L750.1 102.2" stroke="#171717" stroke-width="3.33" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M607.975 57.7L599.801 45.916" stroke="#171717" stroke-width="3.33" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M594.061 56.4003L606.988 45.8203" stroke="#171717" stroke-width="3.33" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M360.184 75.2004L350.784 68.1484" stroke="#171717" stroke-width="3.33" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M348.17 78.552L357.65 64.5" stroke="#171717" stroke-width="3.33" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M243 258.182C236.851 248.415 232.817 237.468 231.158 226.047" stroke="#171717" stroke-width="3.33" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M251.849 75.3057C250.502 72.1609 250.299 68.6434 251.277 65.3648C252.255 62.0862 254.35 59.2539 257.2 57.3607C259.282 55.9623 261.817 55.4045 264.294 55.7997C269.015 56.7687 271.686 62.0507 271.832 66.8677C271.978 71.6847 270.332 76.3607 269.716 81.1397C269.1 85.9187 269.821 91.3957 273.579 94.4127L272.824 94.0067" stroke="#171717" stroke-width="3.33" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M283.401 108.501L280.267 103.801" stroke="#171717" stroke-width="3.33" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M112.175 333.301C109.13 331.536 106.649 328.942 105.023 325.82C103.397 322.699 102.693 319.179 102.993 315.672C103.793 308.704 109.519 302.472 116.467 301.508C123.415 300.544 130.824 305.308 132.44 312.131C134.003 318.739 130.51 325.85 132.432 332.363C134.3 338.69 140.604 342.463 146.395 345.626" stroke="#171717" stroke-width="3.33" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M160.39 355.301L156.865 352.559" stroke="#171717" stroke-width="3.33" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M374.807 478.786C357.502 471.103 343.324 457.764 334.601 440.96" stroke="#171717" stroke-width="3.33" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M346.258 476.707L337.899 468.873" stroke="#171717" stroke-width="3.33" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M255.324 523.683C249.924 519.83 249.153 511.164 253.39 506.065C257.627 500.966 265.776 499.95 271.448 503.383C277.12 506.816 280.014 514.034 278.875 520.565C277.884 526.249 274.264 531.21 273.257 536.891C272.714 540.195 273.064 543.585 274.271 546.708C275.478 549.832 277.497 552.576 280.12 554.657" stroke="#171717" stroke-width="3.33" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M294.109 573.772L290.975 569.594" stroke="#171717" stroke-width="3.33" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M186.926 551.487L172.414 542.937" stroke="#171717" stroke-width="3.33" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M175.017 554.968L182.329 541.388" stroke="#171717" stroke-width="3.33" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M767.335 654.71L779.875 649.496" stroke="#171717" stroke-width="3.33" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M776.224 657.346C773.601 654.178 771.806 650.409 771 646.377" stroke="#171717" stroke-width="3.33" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M689.413 635.006L682.65 629.229" stroke="#171717" stroke-width="3.33" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M680.71 638.581C683.142 634.19 686.677 630.508 690.967 627.9" stroke="#171717" stroke-width="3.33" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M542.74 375.806L540.128 368.493" stroke="#171717" stroke-width="3.33" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M525.576 381.529L523.558 375.238" stroke="#171717" stroke-width="3.33" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M508.267 387.301C506.944 385.28 506.22 382.926 506.178 380.511" stroke="#171717" stroke-width="3.33" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M488.725 393.638L486.802 387.838" stroke="#171717" stroke-width="3.33" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M315.817 296.64C316.799 295.807 317.979 295.242 319.243 294.998C320.507 294.755 321.812 294.842 323.033 295.25C324.254 295.659 325.349 296.375 326.212 297.33C327.075 298.285 327.677 299.447 327.959 300.703C328.759 304.249 326.924 307.886 327.144 311.514C327.377 313.959 328.504 316.232 330.309 317.897C332.114 319.562 334.471 320.501 336.926 320.536" stroke="#171717" stroke-width="3.33" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M338.284 387.189C338.83 386.106 339.65 385.184 340.662 384.517C341.675 383.849 342.845 383.459 344.056 383.385C345.266 383.311 346.475 383.555 347.562 384.094C348.648 384.633 349.574 385.447 350.248 386.456C353.097 390.721 350.675 396.956 353.389 401.308C354.446 402.869 356.058 403.969 357.897 404.384C359.736 404.799 361.664 404.499 363.289 403.544" stroke="#171717" stroke-width="3.33" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M300.112 342.789C300.445 341.913 301.012 341.145 301.753 340.57C302.493 339.995 303.378 339.635 304.309 339.53C305.24 339.425 306.183 339.579 307.033 339.974C307.883 340.37 308.607 340.992 309.126 341.772C309.985 343.342 310.399 345.116 310.326 346.904C310.251 348.689 310.584 350.468 311.301 352.104C312.152 353.667 314.089 354.804 315.735 354.124" stroke="#171717" stroke-width="3.33" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M405.248 424.573C406.925 420.891 412.677 420.017 415.372 423.035C417.01 424.87 417.389 427.471 417.724 429.908C418.059 432.345 418.507 434.951 420.224 436.708C421.941 438.465 425.391 438.683 426.568 436.523" stroke="#171717" stroke-width="3.33" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M488.578 417.106C488.81 416.305 489.279 415.593 489.924 415.064C490.569 414.535 491.358 414.214 492.189 414.143C493.02 414.072 493.853 414.254 494.578 414.666C495.303 415.077 495.886 415.699 496.251 416.449C497.317 418.638 496.525 421.794 498.506 423.209C500.163 424.393 502.479 423.342 504.058 422.056C505.637 420.77 507.27 419.156 509.306 419.223" stroke="#171717" stroke-width="3.33" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M656.782 512.083L657.234 513.72C656.925 512.688 656.341 511.759 655.545 511.033C654.749 510.307 653.771 509.811 652.716 509.597C651.66 509.383 650.566 509.46 649.55 509.819C648.534 510.178 647.635 510.806 646.948 511.636C644.775 514.261 645.232 518.169 646.365 521.384C647.498 524.599 649.205 527.736 649.186 531.144C649.167 534.552 646.458 538.286 643.086 537.765L642.564 536.149" stroke="#171717" stroke-width="3.33" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M596.13 524.6C593.772 522.634 589.909 523.557 587.955 525.925C586.001 528.293 585.621 531.61 585.955 534.662C586.289 537.714 587.238 540.668 587.632 543.712C588.026 546.756 587.787 550.064 585.981 552.546C583.292 556.246 577.669 556.934 573.599 554.852" stroke="#171717" stroke-width="3.33" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M616.037 602.405C616.508 599.155 613.437 596.111 610.167 595.885C606.897 595.659 603.775 597.695 601.889 600.385C600.412 602.492 599.56 604.961 598.432 607.274C597.304 609.587 595.78 611.86 593.479 613.012C591.178 614.164 587.961 613.793 586.57 611.628" stroke="#171717" stroke-width="3.33" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M543.644 598.839C543.928 597.029 543.758 595.176 543.148 593.448C542.539 591.72 541.509 590.171 540.151 588.94C538.794 587.709 537.151 586.835 535.372 586.397C533.593 585.959 531.732 585.971 529.959 586.431C526.883 587.231 524.316 589.295 521.887 591.343C519.458 593.391 516.972 595.525 513.95 596.507C510.928 597.489 507.188 597.018 505.224 594.521" stroke="#171717" stroke-width="3.33" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M519.469 287.181C519.691 287.237 519.924 287.281 520.157 287.325L519.863 288.672C525.151 312.006 531.207 335.134 538.033 358.056L538.289 358.866C543.02 357.379 548.889 356.413 551.889 360.243C552.729 361.317 553.18 362.61 553.634 363.907C553.995 364.943 554.358 365.981 554.919 366.914C556.806 370.044 560.724 371.476 564.387 371.376C568.05 371.276 571.532 369.9 574.932 368.545L577.332 369.311C593.882 347.167 604.915 323.115 603.905 298.873L602.317 298.928C590.208 299.395 578.642 292.988 570.195 284.31C561.748 275.632 555.91 264.81 550.216 254.11L550.196 254.071C544.508 243.383 538.74 232.544 530.392 223.797C519.41 212.473 504.913 205.207 489.268 203.185C473.643 201.249 457.8 204.183 443.903 211.585C432.648 217.546 422.603 226.581 417.708 238.336C412.857 249.957 413.434 263.265 416.808 275.397C420.182 287.529 426.209 298.729 432.192 309.806L430.549 310.494C429.939 340.719 449.585 370.343 477.667 381.543L478.111 382.154C481.275 377.891 487.002 375.727 492.23 374.006C497.036 372.422 501.842 370.843 506.649 369.267L505.927 367.067C507.359 357.127 501.154 347.509 493.473 341.027C489.331 337.531 484.73 334.652 480.127 331.771C476.195 329.31 472.261 326.849 468.61 324.001C448.942 308.648 439.107 281.709 444.257 257.301L444.446 257.09C460.996 271.93 484.494 278.89 506.427 275.06C507.422 278.005 509.135 280.656 511.412 282.773C513.69 284.889 516.459 286.404 519.469 287.181ZM519.676 227.161C508.587 216.956 493.511 209.612 478.187 211.473C477.274 211.584 476.624 212.414 476.735 213.327C476.846 214.24 477.676 214.89 478.588 214.779C492.61 213.076 506.758 219.798 517.421 229.611C527.219 238.628 534.515 249.953 541.886 261.393L541.898 261.411C542.561 262.44 543.225 263.47 543.891 264.5C551.918 276.903 560.649 289.578 572.798 298.578C573.537 299.125 574.579 298.97 575.127 298.231C575.674 297.492 575.519 296.45 574.78 295.902C563.17 287.302 554.722 275.107 546.687 262.691C546.01 261.644 545.333 260.594 544.654 259.54C537.329 248.165 529.805 236.483 519.676 227.161Z" fill="#171717"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M474.301 572.108C474.081 568.745 474.214 565.293 476.101 562.584C478.212 559.576 482.001 558.278 485.586 557.438C494.107 555.437 502.866 554.977 511.624 554.518C514.833 554.35 518.041 554.182 521.238 553.938C530.54 553.216 540.052 551.762 548.521 547.999L548.1 546.234C549.783 538.509 551.77 532.438 554.1 528.852C557.73 523.28 563.236 518.485 570.217 514.112C583.415 505.842 601.863 499.075 622.716 491.426C637.378 486.048 653.229 480.234 669.281 473.154C672.372 471.789 675.364 470.402 678.272 468.97V468.959C729.763 443.663 754.971 406.668 765.648 341.002C780.918 246.988 676.918 102.36 505.318 94.1352C402.946 89.2292 340.111 162.5 306.064 222.415L304.332 222.515C305.329 222.917 306.168 223.634 306.719 224.557C307.569 226.196 307.971 228.03 307.884 229.874C307.994 238.412 305.399 246.766 300.47 253.738L300.57 254.004C307.2 251.641 313.923 249.599 320.738 247.877L322.225 249.442C336.902 285.038 354.76 319.238 375.581 351.626C378.189 355.688 380.876 359.735 383.662 363.735L384.494 363.158C397.143 345.414 395.094 322.615 392.964 298.925C390.71 273.846 388.365 247.769 403.275 225.634C454.433 149.69 538.601 200.349 581.191 247.444C596.408 264.269 603.201 281.62 603.901 298.869C604.911 323.107 593.878 347.163 577.328 369.307C533.751 427.647 451.858 472.734 450.603 473.2V473.211C447.324 475.6 444.254 478.263 441.424 481.169C414.106 509.074 406.016 559.477 405.306 603.587L408.614 603.654C408.693 602.556 409.061 601.498 409.681 600.588C410.301 599.677 411.15 598.947 412.143 598.47C414.319 597.327 416.849 597.161 419.303 597.016C421.223 596.905 423.143 596.794 425.074 596.672C423.198 596.539 421.323 596.339 419.447 596.072C415.667 595.539 411.089 593.974 410.567 590.189C410.234 587.758 411.921 585.405 414.052 584.195C416.268 583.121 418.675 582.499 421.134 582.364C432.063 581.041 442.989 579.713 453.911 578.379C450.832 570.932 450.642 562.605 453.378 555.025C459.834 560.753 466.287 566.48 472.736 572.208L474.301 572.108ZM668.573 172.135C667.769 171.688 666.755 171.977 666.308 172.78C665.861 173.583 666.149 174.597 666.953 175.045C715.644 202.152 748.097 256.336 749.008 312.06C749.919 367.784 719.258 423 671.476 451.685C670.687 452.159 670.432 453.181 670.905 453.97C671.378 454.758 672.401 455.014 673.19 454.54C721.991 425.243 753.268 368.918 752.337 312.006C751.407 255.093 718.302 199.821 668.573 172.135Z" fill="#171717"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M538.416 857.146C538.416 891.978 510.18 920.214 475.348 920.214C440.517 920.214 412.28 891.978 412.28 857.146C412.28 822.315 440.517 794.078 475.348 794.078C510.18 794.078 538.416 822.315 538.416 857.146ZM486.788 806.629C485.894 806.415 484.995 806.966 484.781 807.86C484.567 808.755 485.118 809.653 486.013 809.867C493.496 811.659 500.442 815.217 506.27 820.243C512.097 825.268 516.637 831.616 519.509 838.756C522.381 845.895 523.502 853.618 522.779 861.279C522.055 868.94 519.508 876.317 515.35 882.792C514.853 883.566 515.078 884.596 515.852 885.093C516.626 885.59 517.656 885.365 518.152 884.592C522.597 877.669 525.321 869.783 526.094 861.592C526.868 853.402 525.669 845.145 522.598 837.513C519.528 829.88 514.675 823.094 508.445 817.721C502.215 812.348 494.789 808.545 486.788 806.629Z" fill="#171717"/>
|
||||||
|
<g opacity="0.1">
|
||||||
|
<path d="M264.929 271.673C263.863 276.935 262.439 281.516 262.748 286.948C263.158 292.63 263.916 298.282 265.018 303.871C266.799 313.791 269.639 323.492 273.49 332.805C280.801 349.965 290.001 366.255 300.921 381.376C334.661 428.998 382.204 465.116 437.128 484.852C447.479 488.611 452.128 471.887 441.689 468.309C376.7 446.03 322.358 396.119 292.437 334.52C290.374 330.274 288.337 326.009 286.422 321.695C284.408 317.161 281.703 313.003 279.822 308.412C277.408 302.737 275.374 296.907 273.733 290.961C273.04 288.309 272.528 285.641 272.044 282.946C271.399 279.359 270.054 275.986 269.81 272.333C269.634 269.702 265.519 268.765 264.93 271.673H264.929Z" fill="#171717"/>
|
||||||
|
</g>
|
||||||
|
<g opacity="0.1">
|
||||||
|
<path d="M441.87 263.328C441.188 270.95 447.338 275.063 452.95 278.92C459.263 283.26 466.036 285.152 473.594 286.246C481.7 287.42 489.885 287.401 498.004 288.386C501.796 288.821 505.538 289.62 509.176 290.772C513.035 292.023 516.336 293.649 520.465 293.994C525.53 294.418 528.934 287.929 526.293 283.837C518.247 271.373 496.842 272.186 483.793 271.306C476.576 270.896 469.421 269.745 462.439 267.872C456.417 266.216 452.127 261.648 446.139 260.072C445.639 259.944 445.116 259.932 444.61 260.035C444.104 260.138 443.627 260.354 443.216 260.667C442.806 260.98 442.471 261.382 442.237 261.842C442.003 262.303 441.876 262.81 441.866 263.327L441.87 263.328Z" fill="#171717"/>
|
||||||
|
</g>
|
||||||
|
<g opacity="0.1">
|
||||||
|
<path d="M479.754 383.176C476.985 385.502 475.464 389.776 473.954 392.993C472.105 396.94 472.105 401.375 472.83 405.593C474.103 412.993 486.251 411.266 485.905 403.823C485.761 400.718 485.631 397.605 485.337 394.512C485.065 391.64 486.592 389.004 486.951 386.162C487.458 382.151 482.193 381.127 479.751 383.179L479.754 383.176Z" fill="#171717"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<defs>
|
||||||
|
<clipPath id="clip0_317_821">
|
||||||
|
<rect width="759" height="884" fill="white" transform="translate(101 38)"/>
|
||||||
|
</clipPath>
|
||||||
|
</defs>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 31 KiB |
|
@ -0,0 +1,101 @@
|
||||||
|
<svg width="960" height="960" viewBox="0 0 960 960" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M708.374 631.231L683.228 673.578L683.111 673.63C682.818 673.077 682.47 672.555 682.072 672.072C677.489 666.572 667.844 669.099 663.689 674.928C659.997 680.108 659.279 686.693 658.581 693.088C658.494 693.889 658.407 694.686 658.314 695.478C654.593 726.613 640.235 755.508 617.667 777.278C617.407 777.538 617.135 777.797 616.862 778.044C599.04 782.727 580.948 786.316 562.688 788.793C534.655 792.609 506.331 793.843 478.071 792.48L478.24 788.962C465.492 670.787 452.74 552.608 439.982 434.424L460.156 432.516C460.189 432.516 460.218 432.513 460.247 432.51C460.277 432.506 460.306 432.503 460.338 432.503C470.087 431.568 480.447 430.803 489.106 435.359C497.817 439.942 503.23 452.132 497.285 459.973L497.493 460.895C526.677 454.183 557.6 454.508 586.316 462.995C615.227 471.563 641.775 488.544 660.742 511.989C687.68 545.314 697.842 588.739 707.242 630.554L708.374 631.231ZM614.15 484.146C614.828 483.311 616.055 483.184 616.889 483.863C657.962 517.239 684.126 565.537 689.649 618.171C689.761 619.241 688.985 620.199 687.915 620.311C686.846 620.423 685.887 619.647 685.775 618.577C680.36 566.968 654.705 519.611 614.433 486.885C613.598 486.207 613.471 484.981 614.15 484.146ZM484.952 440.278C484.073 439.657 482.858 439.865 482.237 440.744C481.616 441.622 481.825 442.837 482.703 443.458C484.706 444.875 486.13 446.967 486.712 449.351C487.293 451.734 486.994 454.248 485.869 456.428C485.376 457.384 485.751 458.559 486.707 459.052C487.663 459.545 488.838 459.17 489.331 458.214C490.887 455.199 491.3 451.723 490.495 448.427C489.691 445.131 487.722 442.237 484.952 440.278Z" fill="#1E1E1E"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M857.564 175.487C861.731 152.7 864.276 127.908 853.345 107.5C842.908 88.026 822.084 76.368 801.21 69.102C769.252 57.976 733.963 54.77 701.352 63.844C668.741 72.918 639.22 95.091 624.732 125.677C612.373 151.77 611.464 182.11 616.8 210.488C622.136 238.866 633.313 265.752 644.426 292.404C660.995 332.159 677.569 371.906 694.147 411.644C702.355 431.346 710.569 451.044 718.787 470.738C722.898 480.596 727.005 490.445 731.107 500.285C731.84 502.042 732.611 504.331 733.455 506.835C735.973 514.304 739.136 523.687 743.855 526.585C754.537 508.207 761.482 485.744 768.172 464.108C770.962 455.085 773.707 446.206 776.661 437.827C787.28 407.67 797.665 377.435 808.038 347.2C827.394 290.793 846.828 234.14 857.564 175.487ZM764.185 107.928C792.629 129.088 792.226 174.954 762.173 194.323C745.179 205.267 721.301 204.474 705.39 192.026C691.201 180.926 684.411 161.038 688.76 143.564C695.627 115.951 738.377 88.728 764.185 107.928ZM797.714 81.0752C796.668 80.8245 795.617 81.4693 795.366 82.5152C795.115 83.5612 795.76 84.6123 796.806 84.8629C812.876 88.7139 826.048 101.596 832.798 116.966C839.547 132.335 840.449 149.874 838.081 166.74C835.71 183.626 830.261 199.934 824.763 216.326C824.421 217.346 824.971 218.45 825.991 218.792C827.01 219.133 828.114 218.584 828.456 217.564C833.935 201.229 839.509 184.582 841.938 167.282C844.37 149.962 843.495 131.637 836.364 115.4C829.234 99.1642 815.211 85.2682 797.714 81.0752Z" fill="#1E1E1E"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M562.691 788.794C534.658 792.61 506.333 793.844 478.074 792.481L478.242 788.962C465.485 670.779 452.732 552.599 439.984 434.424C428.685 435.495 417.382 436.564 406.075 437.631L404.375 437.787C396.3 438.553 387.693 439.539 381.436 444.719C379.428 446.443 377.864 448.626 376.877 451.082C375.889 453.538 375.507 456.195 375.763 458.83L375.711 458.843C297.338 458.207 218.459 495.72 173.568 559.96C128.677 624.2 121.264 714.1 159.4 782.562C199.549 854.664 281.192 894.622 362.2 910.422C438.36 925.114 516.855 922.407 591.821 902.503L591.6 901.672C584.78 863.562 575.143 826.01 562.769 789.326L562.691 788.794ZM409.607 648.887C410.009 655.884 410.19 663.609 405.79 669.061C400.48 675.63 390.848 676.2 382.412 676.242C364.473 676.314 346.54 676.383 328.612 676.45C324.445 676.476 319.824 676.32 316.812 673.438C313.722 670.479 313.437 665.727 313.359 661.456C312.874 636.941 312.385 612.423 311.892 587.9V586.742C342.478 580.813 373.503 577.43 404.648 576.629L405.466 576.902C406.851 600.888 408.231 624.883 409.607 648.887ZM208.452 657.072C208.086 656.061 206.97 655.537 205.958 655.902C204.947 656.268 204.423 657.384 204.789 658.396C219.602 699.393 252.735 731.547 289.999 753.556C327.245 775.554 368.912 788.639 409.907 801.47C410.934 801.791 412.026 801.219 412.348 800.193C412.669 799.166 412.097 798.074 411.071 797.752C370.003 784.899 328.774 771.934 291.98 750.202C255.204 728.481 222.86 696.946 208.452 657.072Z" fill="#1E1E1E"/>
|
||||||
|
<path d="M617.669 777.279C623.407 794.831 629.141 812.378 634.869 829.921C640.594 847.421 646.315 864.921 652.031 882.421C632.403 890.373 612.293 897.08 591.821 902.504L591.6 901.673C584.779 863.563 575.142 826.012 562.767 789.327L562.689 788.795C580.949 786.317 599.041 782.728 616.863 778.046C617.137 777.8 617.409 777.538 617.669 777.279Z" fill="#1E1E1E"/>
|
||||||
|
<path d="M510.244 270.124L510.711 270.682C517.267 266.294 524.16 261.789 532.001 260.982C539.842 260.175 548.813 264.461 550.461 272.172C551.837 278.572 547.683 285.154 542.101 288.594C536.519 292.034 529.807 292.982 523.301 293.683C513.772 294.709 504.217 295.349 494.637 295.604C475.953 296.101 457.259 295.146 438.724 292.748C425.56 291.048 409.696 289.619 401.492 300.07C395.884 307.21 396.351 317.232 397.078 326.281C397.818 335.472 398.558 344.659 399.298 353.842L398.805 353.881C393.976 358.593 392.005 365.474 388.03 370.939C384.055 376.404 375.983 380.325 370.725 376.093C366.013 372.293 367.038 364.747 369.816 359.372C372.594 353.997 376.774 348.986 377.19 342.937C375.1 347.13 372.776 351.583 368.622 353.751C364.468 355.919 358.094 354.244 357.315 349.623C356.977 347.611 357.756 345.586 358.522 343.69C364.532 328.748 370.547 313.801 376.567 298.85C380.384 289.386 384.551 279.442 392.678 273.25C402.678 265.643 416.266 265.461 428.846 266.499C425.957 258.387 425.373 249.634 427.158 241.21C427.95 237.484 429.558 233.46 433.039 231.902C438.284 229.565 444.178 234.446 446.19 239.821C448.202 245.196 448.008 251.232 450.175 256.555L450.253 256.542C447.399 247.211 447.797 237.187 451.382 228.111C453.161 223.645 457.133 218.829 461.768 220.088C464.936 220.932 466.688 224.255 467.883 227.306C468.931 229.958 469.845 232.662 470.622 235.406C471.374 230.202 473.167 225.203 475.893 220.706C479.281 215.15 485.967 210.048 491.861 212.826C496.106 214.838 497.729 219.992 498.361 224.653C499.842 235.894 498.1 247.325 493.337 257.614L493.428 257.653C493.571 258.198 493.701 258.743 493.828 259.289C495.788 253.395 497.788 247.41 501.422 242.399C505.056 237.388 510.639 233.377 516.832 233.221C523.025 233.065 529.438 237.7 529.84 243.879C530.165 248.656 527.127 252.966 524.011 256.601C519.823 261.5 515.217 266.025 510.244 270.124Z" fill="#FAFAFA"/>
|
||||||
|
<path d="M409.608 648.887C410.008 655.887 410.192 663.609 405.791 669.061C400.481 675.63 390.849 676.201 382.41 676.24C364.469 676.307 346.536 676.376 328.61 676.448C324.443 676.474 319.821 676.318 316.81 673.436C313.72 670.476 313.435 665.725 313.357 661.454C312.864 636.931 312.375 612.413 311.89 587.898V586.743C342.476 580.814 373.501 577.431 404.646 576.63L405.464 576.903C406.841 600.892 408.222 624.887 409.608 648.887Z" fill="#1E1E1E"/>
|
||||||
|
<path d="M497.288 459.973C503.234 452.132 497.82 439.942 489.109 435.359C480.45 430.802 470.09 431.568 460.341 432.503C460.276 432.503 460.224 432.516 460.159 432.516L439.985 434.424C428.691 435.491 417.388 436.56 406.076 437.631L404.376 437.787C396.301 438.553 387.694 439.54 381.437 444.719C379.429 446.444 377.865 448.626 376.877 451.082C375.89 453.538 375.508 456.195 375.764 458.83C375.895 460.195 376.302 461.52 376.96 462.723C377.619 463.926 378.515 464.983 379.594 465.83" stroke="#FAFAFA" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M375.711 458.843C297.339 458.207 218.46 495.712 173.568 559.96C128.676 624.208 121.268 714.095 159.392 782.56C199.545 854.66 281.192 894.621 362.197 910.42C438.358 925.112 516.855 922.404 591.823 902.5C612.295 897.076 632.405 890.369 652.033 882.417C646.321 864.917 640.6 847.417 634.871 829.917C629.146 812.365 623.413 794.818 617.671 777.275C617.658 777.236 617.645 777.184 617.632 777.145" stroke="#FAFAFA" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M285.083 514.8C244.93 525.419 216.966 566.313 214.993 607.8C213.02 649.287 233.843 689.716 264.221 718.043C294.599 746.37 333.688 763.792 373.607 775.268C407.647 785.024 442.703 790.801 478.073 792.482C506.332 793.845 534.657 792.611 562.69 788.795C580.95 786.317 599.042 782.728 616.864 778.046L617.604 777.851" stroke="#FAFAFA" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M616.319 778.564C616.501 778.395 616.682 778.226 616.864 778.045C617.137 777.798 617.409 777.539 617.664 777.279C640.233 755.509 654.591 726.614 658.311 695.479C659.142 688.365 659.531 680.77 663.686 674.929C667.841 669.088 677.486 666.569 682.069 672.073C682.467 672.556 682.815 673.078 683.108 673.631C684.653 676.539 684.708 680.174 684.588 683.549C684.24 692.994 683.172 702.399 681.394 711.681C679.265 722.781 677.188 736.723 686.483 743.162C692.065 747.031 699.556 746.213 706.242 744.941C734.391 739.615 761.36 729.296 785.874 714.472C789.665 712.187 793.988 709.682 798.259 710.889C803.53 712.369 805.789 719.172 804.101 724.389C803.396 726.485 802.299 728.428 800.868 730.114C798.717 732.58 796.251 734.754 793.533 736.579C781.671 744.974 768.169 750.769 753.912 753.585" stroke="#FAFAFA" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M800.872 730.115C806.104 731.231 809.648 736.736 809.635 742.084C809.622 747.432 806.649 752.431 802.729 756.084C801.35 757.358 799.87 758.517 798.302 759.55C795.386 761.438 792.365 763.159 789.254 764.704C779.542 769.728 769.836 774.752 760.135 779.776" stroke="#FAFAFA" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M798.768 760.22C805.882 766.114 804.845 778.044 798.964 785.158C793.083 792.272 783.93 795.7 775.128 798.491C750.086 806.423 724.278 811.629 698.521 816.822C678.049 820.95 657.576 825.074 637.104 829.194" stroke="#FAFAFA" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M683.229 673.578L708.375 631.231L726.758 600.269L827.094 626.843L837.636 641.954L798.261 710.889" stroke="#FAFAFA" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M496.872 461.037C497.08 460.985 497.287 460.946 497.495 460.894C526.679 454.182 557.602 454.507 586.318 462.994C615.229 471.562 641.777 488.543 660.744 511.988C687.682 545.313 697.844 588.738 707.244 630.553" stroke="#FAFAFA" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M563.808 503.553C624.953 563.686 655.331 653.625 643.154 738.514" stroke="#FAFAFA" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M439.984 434.4V434.426C452.732 552.601 465.485 670.781 478.242 788.964" stroke="#FAFAFA" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M405.466 576.9C406.842 600.891 408.222 624.886 409.607 648.885C410.007 655.885 410.191 663.607 405.79 669.059C400.48 675.628 390.848 676.199 382.409 676.238C364.467 676.305 346.534 676.374 328.609 676.446C324.442 676.472 319.82 676.316 316.809 673.434C313.719 670.474 313.434 665.723 313.356 661.452C312.862 636.929 312.373 612.411 311.889 587.896" stroke="#FAFAFA" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M311.892 586.742C342.478 580.813 373.503 577.43 404.648 576.629" stroke="#FAFAFA" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M562.769 789.326C575.143 826.011 584.78 863.562 591.601 901.672" stroke="#FAFAFA" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M808.038 347.2C827.394 290.793 846.828 234.14 857.564 175.487C861.731 152.704 864.276 127.908 853.345 107.5C842.907 88.027 822.084 76.369 801.209 69.1C769.247 57.974 733.962 54.755 701.351 63.842C668.74 72.929 639.219 95.09 624.731 125.675C612.372 151.769 611.463 182.121 616.799 210.486C622.135 238.851 633.312 265.75 644.425 292.402C661.003 332.153 677.576 371.899 694.146 411.642C702.364 431.349 710.577 451.047 718.786 470.736C722.888 480.589 726.994 490.438 731.106 500.283C734.027 507.283 737.558 522.716 743.854 526.583C758.991 500.541 766.624 466.295 776.66 437.825C787.28 407.668 797.665 377.433 808.038 347.2Z" stroke="#FAFAFA" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M705.389 192.024C721.305 204.474 745.179 205.266 762.172 194.324C792.225 174.955 792.628 129.089 764.184 107.929C738.376 88.729 695.626 115.952 688.759 143.565C684.41 161.036 691.201 180.925 705.389 192.024Z" stroke="#FAFAFA" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M460.21 431.114C455.264 424.792 457.588 415.25 462.43 408.85C467.272 402.45 474.153 397.85 479.346 391.74C489.861 379.329 492.354 362.063 492.497 345.797C492.64 329.531 490.897 313.017 494.691 297.205" stroke="#FAFAFA" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M405.933 436.164C403.713 408.733 401.502 381.294 399.299 353.845C398.559 344.654 397.819 335.467 397.079 326.284C396.352 317.236 395.885 307.213 401.493 300.073C409.693 289.622 425.562 291.051 438.725 292.751C457.261 295.149 475.955 296.104 494.638 295.607C504.22 295.347 513.774 294.707 523.302 293.686C529.802 292.986 536.531 292.037 542.102 288.597C547.673 285.157 551.839 278.575 550.462 272.175C548.813 264.464 539.843 260.175 532.002 260.985C524.161 261.795 517.267 266.295 510.712 270.685" stroke="#FAFAFA" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M509.201 270.981C509.552 270.695 509.889 270.423 510.24 270.124C515.215 266.028 519.823 261.506 524.014 256.61C527.13 252.975 530.168 248.665 529.843 243.888C529.443 237.709 523.027 233.061 516.835 233.23C510.643 233.399 505.047 237.384 501.425 242.408C497.803 247.432 495.791 253.408 493.831 259.298C493.701 258.753 493.571 258.208 493.431 257.662" stroke="#FAFAFA" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M492.964 258.414C493.094 258.154 493.211 257.895 493.34 257.622C498.104 247.333 499.846 235.902 498.364 224.661C497.728 220 496.105 214.847 491.864 212.834C485.97 210.056 479.284 215.158 475.896 220.714C473.171 225.211 471.379 230.21 470.625 235.414C469.529 242.556 470.395 249.861 473.131 256.549" stroke="#FAFAFA" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M473.971 256.623C473.722 249.442 472.597 242.318 470.622 235.41C469.846 232.666 468.931 229.962 467.883 227.31C466.689 224.259 464.936 220.936 461.768 220.092C457.133 218.833 453.161 223.649 451.382 228.115C447.797 237.191 447.399 247.215 450.253 256.546" stroke="#FAFAFA" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M450.175 256.558C448.007 251.235 448.202 245.212 446.19 239.824C444.178 234.436 438.284 229.568 433.039 231.905C429.56 233.463 427.95 237.487 427.158 241.213C425.372 249.637 425.957 258.39 428.846 266.502C429.106 267.255 429.391 267.995 429.703 268.735C430.092 268.397 430.469 268.06 430.858 267.735" stroke="#FAFAFA" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M429.885 266.593C429.534 266.567 429.197 266.528 428.846 266.502C416.266 265.463 402.674 265.645 392.678 273.253C384.551 279.445 380.384 289.39 376.567 298.853C370.556 313.808 364.541 328.754 358.522 343.693C357.756 345.593 356.977 347.614 357.315 349.626C358.094 354.248 364.481 355.926 368.622 353.754C372.763 351.582 375.1 347.133 377.19 342.94C376.775 348.99 372.607 353.988 369.816 359.375C367.025 364.762 366.016 372.292 370.725 376.096C375.983 380.328 384.07 376.408 388.03 370.942C391.99 365.476 393.976 358.596 398.805 353.884" stroke="#FAFAFA" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M442.646 389.364C439.39 390.113 435.97 389.599 433.079 387.924C430.187 386.249 428.039 383.539 427.068 380.342" stroke="#FAFAFA" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M433.493 323.545C431.649 322.577 429.513 322.321 427.493 322.826C425.472 323.331 423.708 324.562 422.536 326.284" stroke="#FAFAFA" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M474.738 323.532C473.051 321.898 470.843 320.909 468.501 320.738C466.159 320.567 463.831 321.225 461.925 322.597" stroke="#FAFAFA" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M475.373 304.4C466.688 305.231 458.003 306.058 449.318 306.88C452.318 325.08 455.318 343.285 458.318 361.495C452.788 361.91 447.266 362.321 441.753 362.728" stroke="#FAFAFA" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M350.577 273.3L363.5 260.56" stroke="#FAFAFA" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M363.9 274.416L351.575 257.694" stroke="#FAFAFA" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M399.02 212.038C403.236 203.316 408.152 194.949 413.72 187.021" stroke="#FAFAFA" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M416.033 209.643C409.987 202.286 403.271 195.507 395.971 189.392" stroke="#FAFAFA" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M625.601 100.863C623.974 96.993 622.347 93.1227 620.721 89.252" stroke="#FAFAFA" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M610.445 118.4L546.826 89.874" stroke="#FAFAFA" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M599.388 141.628L590.832 141.064" stroke="#FAFAFA" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M595.059 169.448L556.601 173.416" stroke="#FAFAFA" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M637.3 84.334C633.434 69.672 629.567 55.0097 625.7 40.347" stroke="#FAFAFA" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M251.714 382.526C260.596 361.59 254.298 335.574 237.766 319.957C221.234 304.34 195.859 299.381 174.171 306.226C152.483 313.071 134.937 330.947 127.035 352.272C119.133 373.597 120.57 397.91 129.486 418.832C135.215 432.276 144.461 444.887 157.665 451.151C170.869 457.415 188.399 455.79 197.973 444.751C206.481 434.94 206.891 419.618 200.587 408.264C194.283 396.91 182.272 389.433 169.6 386.6C144.761 381.049 116.985 393.535 104.649 415.8C93.8343 435.318 94.8173 459.144 98.3763 481.172C101.935 503.2 107.786 525.272 105.693 547.492C104.107 564.329 96.5193 582.184 81.1363 589.208C76.2305 591.448 70.8457 592.436 65.4642 592.084C60.0827 591.732 54.8725 590.051 50.3003 587.191C45.7281 584.331 41.9366 580.382 39.2654 575.697C36.5942 571.012 35.1267 565.737 34.9943 560.346C34.7093 548.725 43.1243 536.041 54.7483 536.171C66.4593 536.3 74.3243 548.56 76.8613 560C86.6443 604.1 51.3253 648.415 59.2613 692.885" stroke="#FAFAFA" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M841.784 453.648C831.628 464.692 823.843 477.701 818.911 491.871C813.979 506.041 812.003 521.072 813.107 536.035C814.162 549.291 817.874 562.725 826.226 573.074C834.578 583.423 848.16 590.14 861.265 587.879C874.37 585.618 885.576 572.918 883.911 559.724C882.246 546.53 865.658 536.949 854.273 543.824C844.973 549.438 842.696 562.01 843.696 572.824C844.978 586.465 849.883 599.515 857.903 610.624C870.919 628.594 891.425 640.496 902.662 659.629C907.853 668.467 910.795 678.443 911.233 688.683C911.67 698.923 909.587 709.114 905.169 718.362C900.75 727.61 894.13 735.632 885.889 741.726C877.647 747.819 868.037 751.798 857.9 753.312" stroke="#1E1E1E" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M313 602.883L403.663 592.739" stroke="#FAFAFA" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M446.912 504.565C442.626 480.208 433.028 457.093 418.8 436.865" stroke="#FAFAFA" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M903.038 621.365L912.838 606.719" stroke="#FAFAFA" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M913.422 619.477L900.754 607.093" stroke="#FAFAFA" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M873.682 727.031L880.402 716.645" stroke="#FAFAFA" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M880.985 725.861C877.046 723.885 873.691 720.916 871.251 717.247" stroke="#FAFAFA" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M196.08 347.3L204.313 329.882" stroke="#FAFAFA" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M206.949 344.885L192.4 333.739" stroke="#FAFAFA" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M61.4668 498.548L70.6308 485.719" stroke="#1E1E1E" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M71.6668 499.356L59.5078 485.831" stroke="#1E1E1E" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M575.383 620.634L583.366 606.606" stroke="#FAFAFA" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M521.792 573.08L507.741 562.694" stroke="#FAFAFA" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M547.5 536.435C548.551 531.505 551.069 527.008 554.722 523.535" stroke="#FAFAFA" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M496.135 654.943C497.411 651.451 499.764 648.456 502.855 646.39" stroke="#FAFAFA" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M568.222 703.205L556.615 690.987" stroke="#FAFAFA" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M605.357 664.643L610.898 654.893" stroke="#FAFAFA" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M596.001 719.318L586.141 731.467" stroke="#FAFAFA" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M524.8 759.459L516.871 752.724" stroke="#FAFAFA" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M642.086 578.561C643.31 574.531 645.668 570.938 648.878 568.211" stroke="#FAFAFA" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M620.132 504.676L609.252 494.17" stroke="#FAFAFA" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M662.862 644.522L670.257 633.569" stroke="#FAFAFA" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M541.318 892.572L551.083 879.735" stroke="#FAFAFA" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M485.493 839.123L473.378 828.623" stroke="#FAFAFA" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M392.532 878.892C395.274 875.092 398.015 871.292 400.756 867.492" stroke="#FAFAFA" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M357.554 815.549L346.554 799.058" stroke="#FAFAFA" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M269.483 837C274.239 834.172 278.39 830.434 281.7 826" stroke="#FAFAFA" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M227.062 774.2L219.9 758.846" stroke="#FAFAFA" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M260.319 755.133L273.759 747.802" stroke="#FAFAFA" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M186.932 649.278L175.279 654.678" stroke="#FAFAFA" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M193.7 711.769C192.129 707.96 190.558 704.151 188.988 700.341" stroke="#FAFAFA" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M203.543 548.64C203.943 553.731 204.345 558.822 204.75 563.914" stroke="#FAFAFA" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M247.49 625.008C250.748 620.935 254.007 616.862 257.265 612.79" stroke="#FAFAFA" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M287.155 563.964L277.372 554.809" stroke="#FAFAFA" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M332.945 512.55C335.453 508.791 337.959 505.032 340.465 501.272" stroke="#FAFAFA" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M422.201 553.545L413.101 542.492" stroke="#FAFAFA" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M419.951 722.288L434.505 703.875" stroke="#FAFAFA" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M340.237 735.147C336.371 732.623 333.432 728.907 331.866 724.563" stroke="#FAFAFA" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M381.832 715.977L389.926 707.57" stroke="#FAFAFA" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M457.614 759.441L449.664 751.507" stroke="#FAFAFA" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M271.843 669.545L265.731 678.096" stroke="#FAFAFA" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M499.184 496.11L489.141 487.25" stroke="#FAFAFA" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M827.095 626.843L837.636 641.954L798.262 710.888C793.991 709.681 789.668 712.188 785.877 714.471C761.362 729.295 734.393 739.614 706.245 744.94C699.559 746.212 692.069 747.03 686.486 743.161C677.191 736.722 679.268 722.779 681.397 711.68C683.174 702.397 684.242 692.993 684.591 683.548C684.708 680.173 684.656 676.538 683.111 673.63L683.228 673.578L708.374 631.231L726.757 600.269L827.095 626.843ZM822.088 630.487C822.943 629.834 824.166 629.999 824.818 630.854C826.141 632.588 827.606 634.587 828.648 636.749C829.698 638.927 830.383 641.401 829.997 644.066C829.991 644.109 829.983 644.152 829.974 644.195C829.47 646.546 828.512 648.776 827.153 650.76L816.649 668.314C816.096 669.237 814.9 669.537 813.978 668.985C813.055 668.433 812.754 667.237 813.306 666.314L823.842 648.707C823.864 648.671 823.887 648.635 823.911 648.601C824.986 647.044 825.746 645.293 826.151 643.445C826.37 641.823 825.975 640.173 825.139 638.44C824.286 636.668 823.039 634.944 821.721 633.216C821.069 632.361 821.233 631.139 822.088 630.487ZM759.321 687.958C754.125 685.155 747.392 686.285 742.642 689.41C737.824 692.581 734.438 698.26 737.007 704.824C737.017 704.85 737.028 704.875 737.039 704.901C737.962 706.989 739.442 708.783 741.317 710.086C743.188 711.386 745.381 712.146 747.655 712.284C753.646 712.718 759.884 708.635 763.025 703.755C764.626 701.267 765.585 698.333 765.128 695.419C764.656 692.417 762.739 689.802 759.321 687.958ZM743.539 706.887C742.263 706.001 741.253 704.783 740.619 703.365C738.962 699.078 740.962 695.178 744.783 692.664C748.684 690.097 753.866 689.44 757.472 691.386C760.017 692.759 761.029 694.43 761.28 696.024C761.544 697.705 761.018 699.677 759.75 701.646C757.156 705.676 752.133 708.708 747.927 708.399L747.9 708.397C746.335 708.304 744.827 707.781 743.539 706.887Z" fill="#FAFAFA"/>
|
||||||
|
<path d="M324.34 230.857L342.112 227.206" stroke="#1E1E1E" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M334.9 239.047C334.489 232.135 334.078 225.223 333.666 218.311" stroke="#1E1E1E" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<g opacity="0.1">
|
||||||
|
<path d="M391.18 438.012C379.673 442.454 372.697 454.712 376.328 466.873L384.466 456.189C352.918 455.048 320.258 461.13 290.635 471.81C260.626 482.58 232.972 499.027 209.183 520.255C162.901 561.77 134.454 623.279 135.008 685.68C135.557 747.498 167.096 805.046 213.15 845.089C264.15 889.429 330.07 910.872 396.62 916.541C470.754 922.856 545.025 909.168 616.795 891.711C625.876 889.503 634.942 887.236 643.995 884.911C656.795 881.649 651.373 861.884 638.537 865.111C569.737 882.418 499.664 898.184 428.307 897.179C364.749 896.285 299.82 881.718 247.076 844.895C201.554 813.114 166.436 764.804 157.629 709.315C148.665 652.833 168.711 592.51 206.449 550.122C245.687 506.05 303.624 479.756 361.997 474.353C369.468 473.661 376.971 473.353 384.466 473.064C389.466 472.87 394.657 467.752 392.604 462.38C390.804 457.671 391.945 453.235 396.562 450.773C403.396 447.128 398.67 435.115 391.18 438.007V438.012Z" fill="#FAFAFA"/>
|
||||||
|
</g>
|
||||||
|
<g opacity="0.1">
|
||||||
|
<path d="M634.777 824.731C642.468 825.889 650.017 823.695 657.595 822.29C664.977 820.921 672.341 819.436 679.686 817.837C694.62 814.599 709.604 811.529 724.486 808.059C751.295 801.808 781.092 795.843 802.522 777.413C811.322 769.847 798.539 757.164 789.794 764.685C780.771 772.444 769.517 776.905 758.294 780.445C744.665 784.745 730.759 788.051 716.867 791.371C702.957 794.696 689.045 798.011 675.13 801.318C668.159 802.976 661.208 804.73 654.277 806.581C647.307 808.447 639.354 809.575 633.331 813.681C629.544 816.261 629.175 823.891 634.775 824.733L634.777 824.731Z" fill="#FAFAFA"/>
|
||||||
|
</g>
|
||||||
|
<g opacity="0.1">
|
||||||
|
<path d="M430.263 281.109C418.44 278.209 407.105 286.424 400.507 295.637C392.398 306.961 392.496 322.218 393.624 335.471C394.924 350.748 396.496 366.007 397.94 381.271C398.684 389.144 399.412 397.018 400.125 404.893C400.843 412.786 400.725 421.481 402.82 429.126C405.814 440.026 421.185 437.232 421.879 426.547C422.298 420.108 420.765 413.269 420.045 406.862C419.272 399.973 418.491 393.084 417.745 386.192C416.278 372.741 414.815 359.289 413.354 345.838C412.104 334.347 409.812 321.738 412.554 310.303C414.954 300.295 420.411 293.771 430.266 290.603C434.707 289.175 435.183 282.317 430.266 281.11L430.263 281.109Z" fill="#FAFAFA"/>
|
||||||
|
</g>
|
||||||
|
<g opacity="0.1">
|
||||||
|
<path d="M729.176 58.937C697.146 54.052 665.476 68.6711 645.112 93.3621C623.312 119.79 614.536 155.195 616.398 189.002C618.509 227.333 631.744 263.702 646.544 298.741C660.778 332.435 677.023 365.215 692.201 398.482C709.172 435.676 724.557 473.714 733.729 513.661C736.589 526.122 755.761 520.848 752.894 508.378C737.159 439.955 703.513 377.778 674.803 314.261C660.315 282.21 646.161 249.216 639.245 214.573C633.066 183.624 633.595 149.454 647.515 120.567C662.191 90.104 693.101 67.504 727.801 69.065C733.492 69.322 734.983 59.823 729.172 58.937H729.176Z" fill="#FAFAFA"/>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 30 KiB |
|
@ -0,0 +1,101 @@
|
||||||
|
<svg width="960" height="960" viewBox="0 0 960 960" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M708.374 631.231L683.228 673.578L683.111 673.63C682.818 673.077 682.47 672.555 682.072 672.072C677.489 666.572 667.844 669.099 663.689 674.928C659.997 680.108 659.279 686.693 658.581 693.088C658.494 693.889 658.407 694.686 658.314 695.478C654.593 726.613 640.235 755.508 617.667 777.278C617.407 777.538 617.135 777.797 616.862 778.044C599.04 782.727 580.948 786.316 562.688 788.793C534.655 792.609 506.331 793.843 478.071 792.48L478.24 788.962C465.492 670.787 452.74 552.608 439.982 434.424L460.156 432.516C460.189 432.516 460.218 432.513 460.247 432.51C460.277 432.506 460.306 432.503 460.338 432.503C470.087 431.568 480.447 430.803 489.106 435.359C497.817 439.942 503.23 452.132 497.285 459.973L497.493 460.895C526.677 454.183 557.6 454.508 586.316 462.995C615.227 471.563 641.775 488.544 660.742 511.989C687.68 545.314 697.842 588.739 707.242 630.554L708.374 631.231ZM614.15 484.146C614.828 483.311 616.055 483.184 616.889 483.863C657.962 517.239 684.126 565.537 689.649 618.171C689.761 619.241 688.985 620.199 687.915 620.311C686.846 620.423 685.887 619.647 685.775 618.577C680.36 566.968 654.705 519.611 614.433 486.885C613.598 486.207 613.471 484.981 614.15 484.146ZM484.952 440.278C484.073 439.657 482.858 439.865 482.237 440.744C481.616 441.622 481.825 442.837 482.703 443.458C484.706 444.875 486.13 446.967 486.712 449.351C487.293 451.734 486.994 454.248 485.869 456.428C485.376 457.384 485.751 458.559 486.707 459.052C487.663 459.545 488.838 459.17 489.331 458.214C490.887 455.199 491.3 451.723 490.495 448.427C489.691 445.131 487.722 442.237 484.952 440.278Z" fill="white"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M857.564 175.487C861.731 152.7 864.276 127.908 853.345 107.5C842.908 88.026 822.084 76.368 801.21 69.102C769.252 57.976 733.963 54.77 701.352 63.844C668.741 72.918 639.22 95.091 624.732 125.677C612.373 151.77 611.464 182.11 616.8 210.488C622.136 238.866 633.313 265.752 644.426 292.404C660.995 332.159 677.569 371.906 694.147 411.644C702.355 431.346 710.569 451.044 718.787 470.738C722.898 480.596 727.005 490.445 731.107 500.285C731.84 502.042 732.611 504.331 733.455 506.835C735.973 514.304 739.136 523.687 743.855 526.585C754.537 508.207 761.482 485.744 768.172 464.108C770.962 455.085 773.707 446.206 776.661 437.827C787.28 407.67 797.665 377.435 808.038 347.2C827.394 290.793 846.828 234.14 857.564 175.487ZM764.185 107.928C792.629 129.088 792.226 174.954 762.173 194.323V194.322C745.179 205.266 721.301 204.474 705.39 192.026C691.201 180.926 684.411 161.038 688.76 143.564C695.627 115.951 738.377 88.728 764.185 107.928ZM797.714 81.0752C796.668 80.8245 795.617 81.4693 795.366 82.5152C795.115 83.5612 795.76 84.6123 796.806 84.8629C812.876 88.7139 826.048 101.596 832.798 116.966C839.547 132.335 840.449 149.874 838.081 166.74C835.71 183.626 830.261 199.934 824.763 216.326C824.421 217.346 824.971 218.45 825.991 218.792C827.01 219.133 828.114 218.584 828.456 217.564C833.935 201.229 839.509 184.582 841.938 167.282C844.37 149.962 843.495 131.637 836.364 115.4C829.234 99.1642 815.211 85.2682 797.714 81.0752Z" fill="white"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M562.691 788.794C534.658 792.61 506.333 793.844 478.074 792.481L478.242 788.962C465.485 670.779 452.732 552.599 439.984 434.424C428.685 435.495 417.382 436.564 406.075 437.631L404.375 437.787C396.3 438.553 387.693 439.539 381.436 444.719C379.428 446.443 377.864 448.626 376.877 451.082C375.889 453.538 375.507 456.195 375.763 458.83L375.711 458.843C297.338 458.207 218.459 495.72 173.568 559.96C128.677 624.2 121.264 714.1 159.4 782.562C199.549 854.664 281.192 894.622 362.2 910.422C438.36 925.114 516.855 922.407 591.821 902.503L591.6 901.672C584.78 863.562 575.143 826.01 562.769 789.326L562.691 788.794ZM409.607 648.887C410.009 655.884 410.19 663.609 405.79 669.061C400.48 675.63 390.848 676.2 382.412 676.242C364.473 676.314 346.54 676.383 328.612 676.45C324.445 676.476 319.824 676.32 316.812 673.438C313.722 670.479 313.437 665.727 313.359 661.456C312.874 636.941 312.385 612.423 311.892 587.9V586.742C342.478 580.813 373.503 577.43 404.648 576.629L405.466 576.902C406.851 600.888 408.231 624.883 409.607 648.887ZM208.452 657.072C208.086 656.061 206.97 655.537 205.958 655.902C204.947 656.268 204.423 657.384 204.789 658.396C219.602 699.393 252.735 731.547 289.999 753.556C327.245 775.554 368.912 788.639 409.907 801.47C410.934 801.791 412.026 801.219 412.348 800.193C412.669 799.166 412.097 798.074 411.071 797.752C370.003 784.899 328.774 771.934 291.98 750.202C255.204 728.481 222.86 696.946 208.452 657.072Z" fill="white"/>
|
||||||
|
<path d="M617.669 777.279C623.407 794.831 629.141 812.378 634.869 829.921C640.594 847.421 646.315 864.921 652.031 882.421C632.403 890.373 612.293 897.08 591.821 902.504L591.6 901.673C584.779 863.563 575.142 826.012 562.767 789.327L562.689 788.795C580.949 786.317 599.041 782.728 616.863 778.046C617.137 777.8 617.409 777.538 617.669 777.279Z" fill="white"/>
|
||||||
|
<path d="M510.244 270.124L510.711 270.682C517.267 266.294 524.16 261.789 532.001 260.982C539.842 260.175 548.813 264.461 550.461 272.172C551.837 278.572 547.683 285.154 542.101 288.594C536.519 292.034 529.807 292.982 523.301 293.683C513.772 294.709 504.217 295.349 494.637 295.604C475.953 296.101 457.259 295.146 438.724 292.748C425.56 291.048 409.696 289.619 401.492 300.07C395.884 307.21 396.351 317.232 397.078 326.281C397.818 335.472 398.558 344.659 399.298 353.842L398.805 353.881C393.976 358.593 392.005 365.474 388.03 370.939C384.055 376.404 375.983 380.325 370.725 376.093C366.013 372.293 367.038 364.747 369.816 359.372C372.594 353.997 376.774 348.986 377.19 342.937C375.1 347.13 372.776 351.583 368.622 353.751C364.468 355.919 358.094 354.244 357.315 349.623C356.977 347.611 357.756 345.586 358.522 343.69C364.532 328.748 370.547 313.801 376.567 298.85C380.384 289.386 384.551 279.442 392.678 273.25C402.678 265.643 416.266 265.461 428.846 266.499C425.957 258.387 425.373 249.634 427.158 241.21C427.95 237.484 429.558 233.46 433.039 231.902C438.284 229.565 444.178 234.446 446.19 239.821C448.202 245.196 448.008 251.232 450.175 256.555L450.253 256.542C447.399 247.211 447.797 237.187 451.382 228.111C453.161 223.645 457.133 218.829 461.768 220.088C464.936 220.932 466.688 224.255 467.883 227.306C468.931 229.958 469.845 232.662 470.622 235.406C471.374 230.202 473.167 225.203 475.893 220.706C479.281 215.15 485.967 210.048 491.861 212.826C496.106 214.838 497.729 219.992 498.361 224.653C499.842 235.894 498.1 247.325 493.337 257.614L493.428 257.653C493.571 258.198 493.701 258.743 493.828 259.289C495.788 253.395 497.788 247.41 501.422 242.399C505.056 237.388 510.639 233.377 516.832 233.221C523.025 233.065 529.438 237.7 529.84 243.879C530.165 248.656 527.127 252.966 524.011 256.601C519.823 261.5 515.217 266.025 510.244 270.124V270.124Z" fill="#171717"/>
|
||||||
|
<path d="M409.608 648.887C410.008 655.887 410.192 663.609 405.791 669.061C400.481 675.63 390.849 676.201 382.41 676.24C364.469 676.307 346.536 676.376 328.61 676.448C324.443 676.474 319.821 676.318 316.81 673.436C313.72 670.476 313.435 665.725 313.357 661.454C312.864 636.931 312.375 612.413 311.89 587.898V586.743C342.476 580.814 373.501 577.431 404.646 576.63L405.464 576.903C406.841 600.892 408.222 624.887 409.608 648.887Z" fill="white"/>
|
||||||
|
<path d="M497.288 459.973C503.234 452.132 497.82 439.942 489.109 435.359C480.45 430.802 470.09 431.568 460.341 432.503C460.276 432.503 460.224 432.516 460.159 432.516L439.985 434.424C428.691 435.491 417.388 436.56 406.076 437.631L404.376 437.787C396.301 438.553 387.694 439.54 381.437 444.719C379.429 446.444 377.865 448.626 376.877 451.082C375.89 453.538 375.508 456.195 375.764 458.83C375.895 460.195 376.302 461.52 376.96 462.723C377.619 463.926 378.515 464.983 379.594 465.83" stroke="#171717" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M375.711 458.843C297.339 458.207 218.46 495.712 173.568 559.96C128.676 624.208 121.268 714.095 159.392 782.56C199.545 854.66 281.192 894.621 362.197 910.42C438.358 925.112 516.855 922.404 591.823 902.5C612.295 897.076 632.405 890.369 652.033 882.417C646.321 864.917 640.6 847.417 634.871 829.917C629.146 812.365 623.413 794.818 617.671 777.275C617.658 777.236 617.645 777.184 617.632 777.145" stroke="#171717" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M285.083 514.8C244.93 525.419 216.966 566.313 214.993 607.8C213.02 649.287 233.843 689.716 264.221 718.043C294.599 746.37 333.688 763.792 373.607 775.268C407.647 785.024 442.703 790.801 478.073 792.482C506.332 793.845 534.657 792.611 562.69 788.795C580.95 786.317 599.042 782.728 616.864 778.046L617.604 777.851" stroke="#171717" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M616.319 778.564C616.501 778.395 616.682 778.226 616.864 778.045C617.137 777.798 617.409 777.539 617.664 777.279C640.233 755.509 654.591 726.614 658.311 695.479C659.142 688.365 659.531 680.77 663.686 674.929C667.841 669.088 677.486 666.569 682.069 672.073C682.467 672.556 682.815 673.078 683.108 673.631C684.653 676.539 684.708 680.174 684.588 683.549C684.24 692.994 683.172 702.399 681.394 711.681C679.265 722.781 677.188 736.723 686.483 743.162C692.065 747.031 699.556 746.213 706.242 744.941C734.391 739.615 761.36 729.296 785.874 714.472C789.665 712.187 793.988 709.682 798.259 710.889C803.53 712.369 805.789 719.172 804.101 724.389C803.396 726.485 802.299 728.428 800.868 730.114C798.717 732.58 796.251 734.754 793.533 736.579C781.671 744.974 768.169 750.769 753.912 753.585" stroke="#171717" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M800.872 730.115C806.104 731.231 809.648 736.736 809.635 742.084C809.622 747.432 806.649 752.431 802.729 756.084C801.35 757.358 799.87 758.517 798.302 759.55C795.386 761.438 792.365 763.159 789.254 764.704C779.542 769.728 769.836 774.752 760.135 779.776" stroke="#171717" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M798.768 760.22C805.882 766.114 804.845 778.044 798.964 785.158C793.083 792.272 783.93 795.7 775.128 798.491C750.086 806.423 724.278 811.629 698.521 816.822C678.049 820.95 657.576 825.074 637.104 829.194" stroke="#171717" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M683.229 673.578L708.375 631.231L726.758 600.269L827.094 626.843L837.636 641.954L798.261 710.889" stroke="#171717" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M496.872 461.037C497.08 460.985 497.287 460.946 497.495 460.894C526.679 454.182 557.602 454.507 586.318 462.994C615.229 471.562 641.777 488.543 660.744 511.988C687.682 545.313 697.844 588.738 707.244 630.553" stroke="#171717" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M563.808 503.553C624.953 563.686 655.331 653.625 643.154 738.514" stroke="#171717" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M439.984 434.4V434.426C452.732 552.601 465.485 670.781 478.242 788.964" stroke="#171717" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M405.466 576.9C406.842 600.891 408.222 624.886 409.607 648.885C410.007 655.885 410.191 663.607 405.79 669.059C400.48 675.628 390.848 676.199 382.409 676.238C364.467 676.305 346.534 676.374 328.609 676.446C324.442 676.472 319.82 676.316 316.809 673.434C313.719 670.474 313.434 665.723 313.356 661.452C312.862 636.929 312.373 612.411 311.889 587.896" stroke="#171717" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M311.892 586.742C342.478 580.813 373.503 577.43 404.648 576.629" stroke="#171717" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M562.769 789.326C575.143 826.011 584.78 863.562 591.601 901.672" stroke="#171717" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M808.038 347.2C827.394 290.793 846.828 234.14 857.564 175.487C861.731 152.704 864.276 127.908 853.345 107.5C842.907 88.027 822.084 76.369 801.209 69.1C769.247 57.974 733.962 54.755 701.351 63.842C668.74 72.929 639.219 95.09 624.731 125.675C612.372 151.769 611.463 182.121 616.799 210.486C622.135 238.851 633.312 265.75 644.425 292.402C661.003 332.153 677.576 371.899 694.146 411.642C702.364 431.349 710.577 451.047 718.786 470.736C722.888 480.589 726.994 490.438 731.106 500.283C734.027 507.283 737.558 522.716 743.854 526.583C758.991 500.541 766.624 466.295 776.66 437.825C787.28 407.668 797.665 377.433 808.038 347.2Z" stroke="#171717" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M705.389 192.024C721.305 204.474 745.179 205.266 762.172 194.324C792.225 174.955 792.628 129.089 764.184 107.929C738.376 88.729 695.626 115.952 688.759 143.565C684.41 161.036 691.201 180.925 705.389 192.024Z" stroke="#171717" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M460.21 431.114C455.264 424.792 457.588 415.25 462.43 408.85C467.272 402.45 474.153 397.85 479.346 391.74C489.861 379.329 492.354 362.063 492.497 345.797C492.64 329.531 490.897 313.017 494.691 297.205" stroke="#171717" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M405.933 436.164C403.713 408.733 401.502 381.294 399.299 353.845C398.559 344.654 397.819 335.467 397.079 326.284C396.352 317.236 395.885 307.213 401.493 300.073C409.693 289.622 425.562 291.051 438.725 292.751C457.261 295.149 475.955 296.104 494.638 295.607C504.22 295.347 513.774 294.707 523.302 293.686C529.802 292.986 536.531 292.037 542.102 288.597C547.673 285.157 551.839 278.575 550.462 272.175C548.813 264.464 539.843 260.175 532.002 260.985C524.161 261.795 517.267 266.295 510.712 270.685" stroke="#171717" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M509.201 270.981C509.552 270.695 509.889 270.423 510.24 270.124C515.215 266.028 519.823 261.506 524.014 256.61C527.13 252.975 530.168 248.665 529.843 243.888C529.443 237.709 523.027 233.061 516.835 233.23C510.643 233.399 505.047 237.384 501.425 242.408C497.803 247.432 495.791 253.408 493.831 259.298C493.701 258.753 493.571 258.208 493.431 257.662" stroke="#171717" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M492.964 258.414C493.094 258.154 493.211 257.895 493.34 257.622C498.104 247.333 499.846 235.902 498.364 224.661C497.728 220 496.105 214.847 491.864 212.834C485.97 210.056 479.284 215.158 475.896 220.714C473.171 225.211 471.379 230.21 470.625 235.414C469.529 242.556 470.395 249.861 473.131 256.549" stroke="#171717" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M473.971 256.623C473.722 249.442 472.597 242.318 470.622 235.41C469.846 232.666 468.931 229.962 467.883 227.31C466.689 224.259 464.936 220.936 461.768 220.092C457.133 218.833 453.161 223.649 451.382 228.115C447.797 237.191 447.399 247.215 450.253 256.546" stroke="#171717" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M450.175 256.558C448.007 251.235 448.202 245.212 446.19 239.824C444.178 234.436 438.284 229.568 433.039 231.905C429.56 233.463 427.95 237.487 427.158 241.213C425.372 249.637 425.957 258.39 428.846 266.502C429.106 267.255 429.391 267.995 429.703 268.735C430.092 268.397 430.469 268.06 430.858 267.735" stroke="#171717" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M429.885 266.593C429.534 266.567 429.197 266.528 428.846 266.502C416.266 265.463 402.674 265.645 392.678 273.253C384.551 279.445 380.384 289.39 376.567 298.853C370.556 313.808 364.541 328.754 358.522 343.693C357.756 345.593 356.977 347.614 357.315 349.626C358.094 354.248 364.481 355.926 368.622 353.754C372.763 351.582 375.1 347.133 377.19 342.94C376.775 348.99 372.607 353.988 369.816 359.375C367.025 364.762 366.016 372.292 370.725 376.096C375.983 380.328 384.07 376.408 388.03 370.942C391.99 365.476 393.976 358.596 398.805 353.884" stroke="#171717" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M442.646 389.364C439.39 390.113 435.97 389.599 433.079 387.924C430.187 386.249 428.039 383.539 427.068 380.342" stroke="#171717" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M433.493 323.545C431.649 322.577 429.513 322.321 427.493 322.826C425.472 323.331 423.708 324.562 422.536 326.284" stroke="#171717" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M474.738 323.532C473.051 321.898 470.843 320.909 468.501 320.738C466.159 320.567 463.831 321.225 461.925 322.597" stroke="#171717" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M475.373 304.4C466.688 305.231 458.003 306.058 449.318 306.88C452.318 325.08 455.318 343.285 458.318 361.495C452.788 361.91 447.266 362.321 441.753 362.728" stroke="#171717" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M350.577 273.3L363.5 260.56" stroke="#171717" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M363.9 274.416L351.575 257.694" stroke="#171717" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M399.02 212.038C403.236 203.316 408.152 194.949 413.72 187.021" stroke="#171717" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M416.033 209.643C409.987 202.286 403.271 195.507 395.971 189.392" stroke="#171717" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M625.601 100.863C623.974 96.993 622.347 93.1227 620.721 89.252" stroke="#171717" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M610.445 118.4L546.826 89.874" stroke="#171717" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M599.388 141.628L590.832 141.064" stroke="#171717" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M595.059 169.448L556.601 173.416" stroke="#171717" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M637.3 84.334C633.434 69.672 629.567 55.0097 625.7 40.347" stroke="#171717" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M251.714 382.526C260.596 361.59 254.298 335.574 237.766 319.957C221.234 304.34 195.859 299.381 174.171 306.226C152.483 313.071 134.937 330.947 127.035 352.272C119.133 373.597 120.57 397.91 129.486 418.832C135.215 432.276 144.461 444.887 157.665 451.151C170.869 457.415 188.399 455.79 197.973 444.751C206.481 434.94 206.891 419.618 200.587 408.264C194.283 396.91 182.272 389.433 169.6 386.6C144.761 381.049 116.985 393.535 104.649 415.8C93.8343 435.318 94.8173 459.144 98.3763 481.172C101.935 503.2 107.786 525.272 105.693 547.492C104.107 564.329 96.5193 582.184 81.1363 589.208C76.2305 591.448 70.8457 592.436 65.4642 592.084C60.0827 591.732 54.8725 590.051 50.3003 587.191C45.7281 584.331 41.9366 580.382 39.2654 575.697C36.5942 571.012 35.1267 565.737 34.9943 560.346C34.7093 548.725 43.1243 536.041 54.7483 536.171C66.4593 536.3 74.3243 548.56 76.8613 560C86.6443 604.1 51.3253 648.415 59.2613 692.885" stroke="#171717" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M841.784 453.648C831.628 464.692 823.843 477.701 818.911 491.871C813.979 506.041 812.003 521.072 813.107 536.035C814.162 549.291 817.874 562.725 826.226 573.074C834.578 583.423 848.16 590.14 861.265 587.879C874.37 585.618 885.576 572.918 883.911 559.724C882.246 546.53 865.658 536.949 854.273 543.824C844.973 549.438 842.696 562.01 843.696 572.824C844.978 586.465 849.883 599.515 857.903 610.624C870.919 628.594 891.425 640.496 902.662 659.629C907.853 668.467 910.795 678.443 911.233 688.683C911.67 698.923 909.587 709.114 905.169 718.362C900.75 727.61 894.13 735.632 885.889 741.726C877.647 747.819 868.037 751.798 857.9 753.312" stroke="white" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M313 602.883L403.663 592.739" stroke="#171717" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M446.912 504.565C442.626 480.208 433.028 457.093 418.8 436.865" stroke="#171717" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M903.038 621.365L912.838 606.719" stroke="#171717" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M913.422 619.477L900.754 607.093" stroke="#171717" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M873.682 727.031L880.402 716.645" stroke="#171717" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M880.985 725.861C877.046 723.885 873.691 720.916 871.251 717.247" stroke="#171717" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M196.08 347.3L204.313 329.882" stroke="#171717" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M206.949 344.885L192.4 333.739" stroke="#171717" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M61.4668 498.548L70.6308 485.719" stroke="white" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M71.6668 499.356L59.5078 485.831" stroke="white" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M575.383 620.634L583.366 606.606" stroke="#171717" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M521.792 573.08L507.741 562.694" stroke="#171717" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M547.5 536.435C548.551 531.505 551.069 527.008 554.722 523.535" stroke="#171717" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M496.135 654.943C497.411 651.451 499.764 648.456 502.855 646.39" stroke="#171717" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M568.222 703.205L556.615 690.987" stroke="#171717" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M605.357 664.643L610.898 654.893" stroke="#171717" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M596.001 719.318L586.141 731.467" stroke="#171717" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M524.8 759.459L516.871 752.724" stroke="#171717" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M642.086 578.561C643.31 574.531 645.668 570.938 648.878 568.211" stroke="#171717" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M620.132 504.676L609.252 494.17" stroke="#171717" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M662.862 644.522L670.257 633.569" stroke="#171717" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M541.318 892.572L551.083 879.735" stroke="#171717" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M485.493 839.123L473.378 828.623" stroke="#171717" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M392.532 878.892C395.274 875.092 398.015 871.292 400.756 867.492" stroke="#171717" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M357.554 815.549L346.554 799.058" stroke="#171717" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M269.483 837C274.239 834.172 278.39 830.434 281.7 826" stroke="#171717" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M227.062 774.2L219.9 758.846" stroke="#171717" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M260.319 755.133L273.759 747.802" stroke="#171717" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M186.932 649.278L175.279 654.678" stroke="#171717" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M193.7 711.769C192.129 707.96 190.558 704.151 188.988 700.341" stroke="#171717" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M203.543 548.64C203.943 553.731 204.345 558.822 204.75 563.914" stroke="#171717" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M247.49 625.008C250.748 620.935 254.007 616.862 257.265 612.79" stroke="#171717" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M287.155 563.964L277.372 554.809" stroke="#171717" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M332.945 512.55C335.453 508.791 337.959 505.032 340.465 501.272" stroke="#171717" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M422.201 553.545L413.101 542.492" stroke="#171717" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M419.951 722.288L434.505 703.875" stroke="#171717" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M340.237 735.147C336.371 732.623 333.432 728.907 331.866 724.563" stroke="#171717" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M381.832 715.977L389.926 707.57" stroke="#171717" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M457.614 759.441L449.664 751.507" stroke="#171717" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M271.843 669.545L265.731 678.096" stroke="#171717" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M499.184 496.11L489.141 487.25" stroke="#171717" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M827.095 626.843L837.636 641.954L798.262 710.888C793.991 709.681 789.668 712.188 785.877 714.471C761.362 729.295 734.393 739.614 706.245 744.94C699.559 746.212 692.069 747.03 686.486 743.161C677.191 736.722 679.268 722.779 681.397 711.68C683.174 702.397 684.242 692.993 684.591 683.548C684.708 680.173 684.656 676.538 683.111 673.63L683.228 673.578L708.374 631.231L726.757 600.269L827.095 626.843ZM822.088 630.487C822.943 629.834 824.166 629.999 824.818 630.854C826.141 632.588 827.606 634.587 828.648 636.749C829.698 638.927 830.383 641.401 829.997 644.066C829.991 644.109 829.983 644.152 829.974 644.195C829.47 646.546 828.512 648.776 827.153 650.76L816.649 668.314C816.096 669.237 814.9 669.537 813.978 668.985C813.055 668.433 812.754 667.237 813.306 666.314L823.842 648.707C823.864 648.671 823.887 648.635 823.911 648.601C824.986 647.044 825.746 645.293 826.151 643.445C826.37 641.823 825.975 640.173 825.139 638.44C824.286 636.668 823.039 634.944 821.721 633.216C821.069 632.361 821.233 631.139 822.088 630.487ZM759.321 687.958C754.125 685.155 747.392 686.285 742.642 689.41C737.824 692.581 734.438 698.26 737.007 704.824C737.017 704.85 737.028 704.875 737.039 704.901C737.962 706.989 739.442 708.783 741.317 710.086C743.188 711.386 745.381 712.146 747.655 712.284C753.646 712.718 759.884 708.635 763.025 703.755C764.626 701.267 765.585 698.333 765.128 695.419C764.656 692.417 762.739 689.802 759.321 687.958ZM743.539 706.887C742.263 706.001 741.253 704.783 740.619 703.365C738.962 699.078 740.962 695.178 744.783 692.664C748.684 690.097 753.866 689.44 757.472 691.386C760.017 692.759 761.029 694.43 761.28 696.024C761.544 697.705 761.018 699.677 759.75 701.646C757.156 705.676 752.133 708.708 747.927 708.399L747.9 708.397C746.335 708.304 744.827 707.781 743.539 706.887Z" fill="#171717"/>
|
||||||
|
<path d="M324.34 230.857L342.112 227.206" stroke="white" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M334.9 239.047C334.489 232.135 334.078 225.223 333.666 218.311" stroke="white" stroke-width="3.895" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<g opacity="0.1">
|
||||||
|
<path d="M391.18 438.012C379.673 442.454 372.697 454.712 376.328 466.873L384.466 456.189C352.918 455.048 320.258 461.13 290.635 471.81C260.626 482.58 232.972 499.027 209.183 520.255C162.901 561.77 134.454 623.279 135.008 685.68C135.557 747.498 167.096 805.046 213.15 845.089C264.15 889.429 330.07 910.872 396.62 916.541C470.754 922.856 545.025 909.168 616.795 891.711C625.876 889.503 634.942 887.236 643.995 884.911C656.795 881.649 651.373 861.884 638.537 865.111C569.737 882.418 499.664 898.184 428.307 897.179C364.749 896.285 299.82 881.718 247.076 844.895C201.554 813.114 166.436 764.804 157.629 709.315C148.665 652.833 168.711 592.51 206.449 550.122C245.687 506.05 303.624 479.756 361.997 474.353C369.468 473.661 376.971 473.353 384.466 473.064C389.466 472.87 394.657 467.752 392.604 462.38C390.804 457.671 391.945 453.235 396.562 450.773C403.396 447.128 398.67 435.115 391.18 438.007V438.012Z" fill="#171717"/>
|
||||||
|
</g>
|
||||||
|
<g opacity="0.1">
|
||||||
|
<path d="M634.777 824.731C642.468 825.889 650.017 823.695 657.595 822.29C664.977 820.921 672.341 819.436 679.686 817.837C694.62 814.599 709.604 811.529 724.486 808.059C751.295 801.808 781.092 795.843 802.522 777.413C811.322 769.847 798.539 757.164 789.794 764.685C780.771 772.444 769.517 776.905 758.294 780.445C744.665 784.745 730.759 788.051 716.867 791.371C702.957 794.696 689.045 798.011 675.13 801.318C668.159 802.976 661.208 804.73 654.277 806.581C647.307 808.447 639.354 809.575 633.331 813.681C629.544 816.261 629.175 823.891 634.775 824.733L634.777 824.731Z" fill="#171717"/>
|
||||||
|
</g>
|
||||||
|
<g opacity="0.1">
|
||||||
|
<path d="M430.263 281.109C418.44 278.209 407.105 286.424 400.507 295.637C392.398 306.961 392.496 322.218 393.624 335.471C394.924 350.748 396.496 366.007 397.94 381.271C398.684 389.144 399.412 397.018 400.125 404.893C400.843 412.786 400.725 421.481 402.82 429.126C405.814 440.026 421.185 437.232 421.879 426.547C422.298 420.108 420.765 413.269 420.045 406.862C419.272 399.973 418.491 393.084 417.745 386.192C416.278 372.741 414.815 359.289 413.354 345.838C412.104 334.347 409.812 321.738 412.554 310.303C414.954 300.295 420.411 293.771 430.266 290.603C434.707 289.175 435.183 282.317 430.266 281.11L430.263 281.109Z" fill="#171717"/>
|
||||||
|
</g>
|
||||||
|
<g opacity="0.1">
|
||||||
|
<path d="M729.176 58.937C697.146 54.052 665.476 68.6711 645.112 93.3621C623.312 119.79 614.536 155.195 616.398 189.002C618.509 227.333 631.744 263.702 646.544 298.741C660.778 332.435 677.023 365.215 692.201 398.482C709.172 435.676 724.557 473.714 733.729 513.661C736.589 526.122 755.761 520.848 752.894 508.378C737.159 439.955 703.513 377.778 674.803 314.261C660.315 282.21 646.161 249.216 639.245 214.573C633.066 183.624 633.595 149.454 647.515 120.567C662.191 90.104 693.101 67.504 727.801 69.065C733.492 69.322 734.983 59.823 729.172 58.937H729.176Z" fill="#171717"/>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 30 KiB |
|
@ -0,0 +1,160 @@
|
||||||
|
<svg width="960" height="960" viewBox="0 0 960 960" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<g clip-path="url(#clip0_1_5470)">
|
||||||
|
<mask id="mask0_1_5470" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="0" y="0" width="960" height="960">
|
||||||
|
<path d="M960 0H0V960H960V0Z" fill="white"/>
|
||||||
|
</mask>
|
||||||
|
<g mask="url(#mask0_1_5470)">
|
||||||
|
<mask id="mask1_1_5470" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="38" y="53" width="885" height="854">
|
||||||
|
<path d="M923 53H38V907H923V53Z" fill="white"/>
|
||||||
|
</mask>
|
||||||
|
<g mask="url(#mask1_1_5470)">
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M666.306 715.93C666.306 671.507 612.915 635.5 547.047 635.5C481.179 635.5 427.789 671.518 427.789 715.93C427.789 760.342 481.178 796.349 547.047 796.349C612.916 796.349 666.306 760.353 666.306 715.93ZM547.047 694.988C564.547 694.988 578.722 704.364 578.723 715.929C578.723 727.483 564.536 736.86 547.047 736.86C529.558 736.86 515.371 727.496 515.371 715.93C515.371 704.364 529.547 694.988 547.047 694.988ZM513.611 732.195C512.812 731.644 511.719 731.845 511.168 732.643C510.617 733.441 510.818 734.535 511.616 735.085C531.335 748.694 559.306 748.923 579.247 735.646C580.055 735.108 580.273 734.018 579.736 733.211C579.198 732.404 578.108 732.185 577.301 732.722C558.556 745.203 532.146 744.987 513.611 732.195Z" fill="#171717"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M446.179 601.82C461.512 601.692 476.823 601.528 492.113 601.328C501.76 601.21 511.402 601.085 521.042 600.96H521.051L521.06 600.959H521.069H521.07C567.608 600.356 614.096 599.754 660.946 599.876C667.056 599.876 673.178 599.9 679.312 599.946C681.31 595.325 683.306 590.993 685.245 586.784C688.836 578.989 692.233 571.616 695.091 563.611L672.78 552.865L671.961 534.686L707.488 533.867C707.488 533.867 706.938 556.447 728.149 556.178C747.159 555.92 751.28 535.517 751.28 535.517L786.819 534.686L783.506 561.96L748.806 568.56C747.089 573.874 745.318 578.976 743.548 584.075L743.547 584.077L743.546 584.08V584.082C741.768 589.203 739.991 594.321 738.271 599.651V599.885C745.223 599.897 752.177 599.925 759.131 599.967L793.839 841.656L259.639 835.456L261.313 829.65L265.808 814.093L303.477 683.644L326.577 603.682C332.769 602.376 339.434 602.432 345.846 602.485C349.204 602.513 352.493 602.54 355.607 602.371C353.707 596.484 351.635 590.979 349.563 585.473C347.491 579.967 345.417 574.459 343.515 568.565L308.804 561.965L305.504 534.691L341.031 535.522C341.031 535.522 345.163 555.922 364.173 556.183C385.384 556.452 384.822 533.872 384.822 533.872L420.361 534.691L419.53 552.87L397.219 563.616C399.366 568.418 401.291 573.333 403.245 578.323C406.288 586.094 409.403 594.046 413.537 602.034C424.431 601.986 435.311 601.914 446.179 601.82ZM666.306 715.928C666.306 671.505 612.916 635.498 547.047 635.498C481.178 635.498 427.788 671.505 427.788 715.928C427.788 760.351 481.178 796.347 547.047 796.347C612.916 796.347 666.306 760.34 666.306 715.928ZM745.085 613.247C746.045 613.107 746.936 613.772 747.076 614.731L777.133 821.259C777.272 822.219 776.607 823.11 775.648 823.25C774.688 823.39 773.797 822.725 773.657 821.765L743.6 615.237C743.461 614.278 744.125 613.386 745.085 613.247ZM780.163 541.385C780.213 540.417 779.469 539.59 778.501 539.539C777.532 539.489 776.706 540.232 776.655 541.201C776.381 546.434 776.106 551.668 775.832 556.901C775.782 557.87 776.526 558.696 777.494 558.747C778.463 558.797 779.289 558.053 779.34 557.085C779.614 551.852 779.888 546.618 780.163 541.385ZM657.841 760.127C658.483 760.854 658.415 761.963 657.688 762.606C625.729 790.855 584.549 806.454 541.895 806.467C499.24 806.48 458.051 790.907 426.074 762.677C425.347 762.036 425.278 760.926 425.92 760.199C426.562 759.472 427.671 759.403 428.398 760.045C459.733 787.708 500.096 802.968 541.894 802.955C583.692 802.942 624.045 787.657 655.362 759.974C656.089 759.332 657.199 759.4 657.841 760.127ZM416.894 539.516C416.828 538.549 415.989 537.819 415.022 537.885C414.054 537.952 413.324 538.79 413.391 539.758L414.132 550.506C414.198 551.473 415.037 552.204 416.004 552.137C416.972 552.07 417.702 551.232 417.635 550.264L416.894 539.516Z" fill="white"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M663.275 504.529C663.989 474.883 664.704 445.242 665.415 416.87V416.872H665.428C712.169 416.416 762.562 404.171 791.862 367.743C809.999 345.2 817.755 316.25 824.24 288.065C832.199 253.457 838.895 218.624 844.327 183.565C845.79 174.196 846.972 163.93 842.009 155.865C839.61 152.06 836.146 149.044 832.047 147.191C823.994 143.34 813.623 142.801 804.375 142.848C795.432 142.895 785.716 143.316 777.323 146.032C771.119 148.022 765.617 151.277 761.672 156.556C755.327 165.027 754.974 176.282 754.638 186.978C754.611 187.825 754.584 188.669 754.555 189.508C753.414 222.537 745.554 254.986 731.455 284.875C725.403 297.706 717.841 310.417 706.182 318.506C689.279 330.244 667.155 330.198 646.588 329.706C634.027 329.406 621.46 329.109 608.888 328.816C580.674 328.141 552.467 327.47 524.267 326.803C522.254 326.756 520.229 326.709 518.192 326.674C492.264 326.257 464.931 327.451 444.469 342.774C443.89 345.338 443.491 347.939 443.275 350.558C441.987 366.126 466.722 413.862 472.364 424.585C472.652 425.132 472.935 425.675 473.216 426.214C477.422 434.268 481.102 441.316 489.77 444.508C500.338 448.403 511.805 446.142 523.229 443.888C535.252 441.517 547.227 439.155 558.05 443.993C572.881 450.619 579.202 468.107 582.269 484.062C584.634 496.342 585.874 509.522 580.759 520.912C575.27 533.156 563.201 541.327 550.57 545.845C545.637 547.609 540.544 548.891 535.364 549.673L535.434 550.118C537.099 555.752 537.069 561.75 535.347 567.367C533.626 572.983 530.289 577.968 525.753 581.7C520.935 585.429 515.077 587.569 508.99 587.822C504.324 593.351 498.581 597.872 492.11 601.108V601.33C501.85 601.211 511.584 601.084 521.317 600.958C567.772 600.355 614.178 599.753 660.943 599.878V599.831C661.719 569.151 662.497 536.837 663.275 504.529ZM833.195 166.26C833.291 165.295 832.587 164.435 831.622 164.339C830.657 164.243 829.797 164.947 829.701 165.912C825.716 205.98 819.234 245.761 810.292 285.021C802.203 320.532 790.511 357.552 761.982 379.008C761.207 379.59 761.051 380.691 761.634 381.466C762.217 382.241 763.317 382.397 764.093 381.814C793.748 359.512 805.635 321.277 813.716 285.801C822.691 246.398 829.197 206.473 833.195 166.26Z" fill="#171717"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M597.587 145.156C596.05 144.296 594.455 144.575 593.238 145.123C592.034 145.666 590.976 146.556 590.193 147.374L590.192 147.376C584.266 153.583 580.524 161.552 579.533 170.077C579.421 171.04 580.112 171.912 581.075 172.024C582.038 172.136 582.91 171.445 583.022 170.482C583.924 162.717 587.333 155.457 592.731 149.802C593.341 149.165 594.038 148.615 594.681 148.325C595.307 148.043 595.649 148.098 595.868 148.219C596.041 148.318 596.238 148.526 596.409 149.004C596.586 149.496 596.678 150.123 596.721 150.824V150.827C597.054 156.059 596.342 161.306 594.625 166.26C594.342 167.076 594.696 167.978 595.459 168.384C596.222 168.791 597.167 168.582 597.687 167.891C602.133 161.992 607.074 156.482 612.458 151.424C613.294 150.642 614.18 149.943 615.034 149.54C615.873 149.144 616.478 149.123 616.961 149.332L616.97 149.335C617.522 149.57 617.938 150.105 618.104 151.185C618.272 152.278 618.115 153.635 617.762 154.849L617.761 154.851C615.632 162.197 611.335 168.729 605.431 173.591C604.725 174.173 604.584 175.199 605.106 175.95C605.629 176.7 606.64 176.924 607.431 176.464C617.859 170.395 628.896 165.439 640.361 161.679C641.527 161.3 642.678 161.005 643.704 160.964C644.679 160.925 645.37 161.119 645.864 161.52C646.287 161.981 646.572 162.552 646.684 163.169C646.801 163.807 646.727 164.465 646.473 165.062C645.759 166.644 644.701 168.048 643.376 169.169C643.348 169.193 643.32 169.218 643.293 169.244C632.112 180.007 622.24 187.673 607.589 191.737C606.655 191.997 606.107 192.964 606.367 193.899C606.626 194.833 607.594 195.381 608.528 195.122C623.99 190.832 634.363 182.711 645.689 171.812C647.397 170.355 648.761 168.537 649.682 166.489L649.694 166.463C650.225 165.227 650.381 163.862 650.139 162.539C649.898 161.216 649.271 159.993 648.338 159.025C648.302 158.988 648.265 158.953 648.227 158.919C646.817 157.691 645.1 157.393 643.563 157.455C642.041 157.516 640.518 157.935 639.273 158.339L639.268 158.341C630.972 161.062 622.894 164.397 615.103 168.315C617.785 164.542 619.831 160.325 621.134 155.829C621.581 154.293 621.844 152.4 621.576 150.651C621.305 148.889 620.426 146.991 618.348 146.105C616.609 145.356 614.897 145.722 613.535 146.364C612.187 147 610.985 147.992 610.057 148.86L610.054 148.863C606.459 152.241 603.055 155.816 599.859 159.568C600.292 156.609 600.417 153.605 600.226 150.605C600.175 149.784 600.057 148.773 599.716 147.82C599.37 146.856 598.744 145.811 597.595 145.16L597.587 145.156Z" fill="white"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M391.022 377.386C389.627 372.209 388.224 367.095 386.813 361.949C385.228 356.169 383.631 350.348 382.022 344.352C376.022 321.959 370.822 297.939 378.136 275.943C384.855 255.762 401.114 240.381 417.636 226.989C430.302 216.7 446.526 206.504 461.907 211.959C473.671 216.138 480.543 228.148 485.775 239.479C493.232 255.621 499.19 275.603 489.123 290.259C485.126 296.072 479.215 300.021 473.287 303.981C470.43 305.889 467.568 307.801 464.915 309.925C454.608 318.269 447.409 329.838 444.477 342.771C443.898 345.334 443.499 347.935 443.283 350.555C441.995 366.124 466.73 413.86 472.372 424.582C472.661 425.131 472.946 425.677 473.229 426.218C477.433 434.268 481.113 441.313 489.778 444.505C500.347 448.403 511.816 446.14 523.24 443.886C535.263 441.514 547.236 439.152 558.058 443.99C572.889 450.615 579.21 468.104 582.277 484.059C584.642 496.338 585.882 509.519 580.767 520.909C575.277 533.153 563.208 541.324 550.578 545.842C545.644 547.605 540.552 548.887 535.372 549.67C512.372 553.193 487.905 547.177 469.504 532.849C462.608 527.389 456.455 521.053 451.201 514C448.25 510.088 445.499 506.029 442.96 501.838C437.959 493.509 433.41 484.918 429.334 476.1C424.592 466.068 420.109 455.919 415.884 445.653L415.662 445.36C417.008 444.33 418.308 443.26 419.572 442.199C426.672 436.217 433.572 429.699 438.055 421.573C439.612 418.764 440.689 414.854 438.324 412.673C436.931 411.397 434.824 411.292 432.939 411.42C427.989 411.751 423.614 415.484 419.515 418.981V418.982C418.254 420.058 417.019 421.111 415.802 422.037L415.626 421.85C418.807 418.941 421.859 415.867 424.908 412.796H424.909C426.46 411.233 428.012 409.67 429.579 408.131C432.857 404.9 436.193 399.972 433.664 396.121C432.164 393.838 429.04 393.089 426.364 393.628C423.688 394.167 421.331 395.723 419.064 397.257C417.412 398.369 415.758 399.485 414.101 400.605C414.476 400.309 414.867 399.997 415.26 399.682L415.264 399.679L415.482 399.505C422.061 394.237 432.327 385.364 427.609 378.376C424.828 374.259 411.506 383.981 400.252 392.194L400.251 392.195C398.384 393.557 396.575 394.878 394.88 396.087L394.189 394.436C393.871 392.971 393.568 391.558 393.275 390.185C392.304 385.645 391.429 381.553 390.396 377.545L391.022 377.386ZM444.919 218.363C448.906 216.697 453.304 216.278 457.534 217.161C461.764 218.043 465.627 220.186 468.616 223.307C471.604 226.428 473.577 230.381 474.276 234.645C474.433 235.602 473.784 236.505 472.827 236.662C471.87 236.818 470.967 236.17 470.81 235.213C470.226 231.648 468.577 228.345 466.079 225.736C463.581 223.128 460.352 221.337 456.817 220.599C453.281 219.861 449.605 220.211 446.273 221.603C442.94 222.995 440.107 225.364 438.147 228.397C437.62 229.211 436.533 229.445 435.719 228.918C434.904 228.392 434.671 227.305 435.197 226.49C437.543 222.862 440.932 220.028 444.919 218.363ZM527.306 456.268C531.695 454.301 536.499 453.441 541.298 453.761C546.096 454.082 550.743 455.574 554.832 458.107C558.92 460.64 562.325 464.137 564.748 468.291C567.172 472.445 568.54 477.13 568.733 481.936C568.772 482.905 569.589 483.659 570.558 483.62C571.527 483.581 572.281 482.764 572.242 481.795C572.026 476.416 570.495 471.172 567.782 466.522C565.069 461.871 561.258 457.957 556.681 455.122C552.105 452.287 546.903 450.616 541.532 450.257C536.16 449.898 530.783 450.862 525.87 453.063C524.985 453.459 524.589 454.498 524.985 455.383C525.382 456.268 526.421 456.664 527.306 456.268Z" fill="white"/>
|
||||||
|
<path d="M793.841 841.661L788.877 904.872L258.394 894.958L259.635 835.457L793.841 841.661Z" fill="#171717"/>
|
||||||
|
<path d="M608.912 327.625L608.889 328.819C580.678 328.14 552.471 327.469 524.268 326.806C522.255 326.759 520.229 326.712 518.193 326.677L518.24 324.605C514.248 319.56 517.503 311.518 523.063 308.275C527.581 305.641 532.943 305.267 538.245 305.384C539.474 305.396 540.691 305.443 541.897 305.484C554.645 306.034 567.397 306.576 580.152 307.111C583.02 307.228 585.888 307.357 588.752 307.474C594.558 307.72 600.752 308.106 605.386 311.583C610.02 315.06 611.824 322.883 607.353 326.59C607.882 326.934 608.4 327.274 608.912 327.625Z" fill="#171717"/>
|
||||||
|
<path d="M547.047 694.987C564.547 694.987 578.723 704.363 578.723 715.929C578.723 727.495 564.547 736.859 547.047 736.859C529.547 736.859 515.371 727.483 515.371 715.929C515.371 704.375 529.559 694.987 547.047 694.987Z" fill="#171717"/>
|
||||||
|
<path d="M535.435 550.117C537.1 555.75 537.07 561.749 535.349 567.365C533.627 572.982 530.29 577.967 525.754 581.699C520.936 585.428 515.078 587.568 508.991 587.821C509.491 587.236 509.991 586.627 510.466 586.007C511.999 584.017 513.451 581.734 513.416 579.218C513.369 575.601 510.092 572.639 506.556 571.855C503.02 571.071 499.345 572.007 495.939 573.255C494.154 573.798 492.514 574.734 491.139 575.994C490.461 576.636 489.98 577.459 489.754 578.365C489.528 579.272 489.566 580.223 489.863 581.109C490.507 582.347 491.533 583.344 492.789 583.953C497.698 586.79 503.328 588.133 508.989 587.816C504.323 593.345 498.579 597.866 492.109 601.102V601.324C476.821 601.511 461.509 601.675 446.175 601.816C447.79 573.991 449.558 541.836 451.175 514.023L451.198 514C456.452 521.051 462.604 527.387 469.498 532.846C487.898 547.174 512.365 553.191 535.366 549.667L535.435 550.117Z" fill="#171717"/>
|
||||||
|
<path d="M534.288 216.782C534.3 217.028 534.311 217.262 534.323 217.508L533.691 217.531C526.527 215.705 522.711 227.984 515.891 225.131C511.466 223.281 511.782 216.715 514.182 212.571C516.582 208.427 520.382 204.705 520.69 199.917C515.223 202.328 506.069 207.35 503.155 202.141C497.817 192.612 523.031 183.201 534.164 178.121C548.305 171.683 563.124 170.231 578.599 170.407L581.28 170.278C582.227 162.133 585.802 154.518 591.464 148.587C592.857 147.135 594.976 145.707 596.732 146.687C598.055 147.436 598.383 149.187 598.476 150.714C598.824 156.179 598.08 161.659 596.287 166.833C600.793 160.853 605.802 155.269 611.259 150.141C613.027 148.49 615.438 146.758 617.659 147.718C620.293 148.842 620.246 152.588 619.45 155.338C617.223 163.024 612.727 169.858 606.55 174.945C617.085 168.814 628.236 163.807 639.818 160.008C642.229 159.224 645.168 158.58 647.076 160.242C647.77 160.962 648.235 161.87 648.414 162.853C648.593 163.836 648.478 164.85 648.083 165.767C647.262 167.594 646.042 169.214 644.513 170.508C633.252 181.348 623.127 189.249 608.061 193.428L607.511 193.159C591.72 192.359 574.992 192.105 559.19 192.503C551.019 192.714 541.608 193.732 537.043 200.51C533.9 205.158 534.042 211.186 534.288 216.782Z" fill="white"/>
|
||||||
|
<path d="M513.417 579.217C513.452 581.734 512.001 584.017 510.467 586.006C509.987 586.626 509.495 587.235 508.992 587.82C503.331 588.136 497.701 586.794 492.792 583.957C491.537 583.348 490.511 582.35 489.866 581.113C489.57 580.228 489.532 579.276 489.758 578.37C489.984 577.464 490.464 576.642 491.141 576C492.517 574.74 494.157 573.804 495.941 573.261C499.347 572.008 503.023 571.072 506.558 571.861C510.093 572.65 513.37 575.6 513.417 579.217Z" fill="#171717"/>
|
||||||
|
<path d="M442.959 501.842L442.795 501.947C431.323 503.317 419.746 504.429 408.228 503.504C396.71 502.579 385.156 499.547 375.51 493.204C366.136 487.041 358.96 478.063 355.014 467.563C351.067 457.062 350.555 445.58 353.55 434.769C356.15 425.381 367.936 414.038 376.692 409.789L377.453 409.801C377.365 413.269 376.933 416.719 376.165 420.101C370.09 436.782 382.275 453.872 388.608 454.926C398.359 456.565 407.653 451.52 415.66 445.362L415.882 445.655C420.108 455.909 424.591 466.058 429.332 476.102C433.409 484.92 437.958 493.512 442.959 501.842Z" fill="#171717"/>
|
||||||
|
<path d="M261.309 829.651L259.635 835.457L258.394 894.957C256.334 895.777 40.666 874.3 40.666 874.3L177 813.977H251.578C254.678 819.069 257.618 824.266 260.533 829.429L261.309 829.651Z" fill="white"/>
|
||||||
|
<path d="M580.186 306.25C578.489 302.231 578.099 297.781 579.072 293.528C580.045 289.276 582.331 285.438 585.607 282.557C589.224 279.514 593.8 277.828 597.651 275.065C609.392 266.637 612.026 250.19 610.797 235.78C609.568 221.37 605.459 208.119 607.777 193.85" stroke="white" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M538.256 304.927C536.945 275.793 535.634 246.654 534.323 217.508C534.311 217.262 534.3 217.028 534.288 216.782C534.042 211.187 533.902 205.158 537.039 200.511C541.604 193.733 551.016 192.711 559.186 192.504C574.986 192.104 591.716 192.364 607.507 193.16" stroke="white" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M580.924 170.438C580.151 170.426 579.367 170.403 578.595 170.403C563.12 170.227 548.295 171.679 534.16 178.117C523.028 183.197 497.814 192.609 503.151 202.137C506.066 207.346 515.22 202.324 520.686 199.913C520.386 204.701 516.586 208.413 514.178 212.567C511.77 216.721 511.462 223.278 515.887 225.127C522.711 227.983 526.528 215.704 533.687 217.527" stroke="white" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M566.807 250.659C569.101 252.953 573.362 251.49 575.001 248.692C576.64 245.894 576.417 242.418 576.16 239.192C575.177 227.192 574.198 215.192 573.222 203.192C580.796 202.876 588.365 202.552 595.931 202.22" stroke="white" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M597.558 219.908C596.045 218.781 594.195 218.199 592.309 218.259C590.423 218.319 588.614 219.015 587.175 220.236" stroke="white" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M560.401 219.873C558.411 216.127 552.264 215.694 549.771 219.124" stroke="white" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M562.066 266.964C555.944 269.223 548.323 264.4 547.75 257.904" stroke="white" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M415.884 445.653C420.11 455.907 424.593 466.056 429.334 476.1" stroke="white" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M382.02 344.352C385.064 355.683 388.06 366.394 391.02 377.386C392.495 382.853 393.958 388.378 395.42 394.086" stroke="white" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M429.334 476.1C433.41 484.919 437.958 493.512 442.96 501.841C445.499 506.031 448.25 510.089 451.2 514C456.454 521.051 462.606 527.387 469.5 532.846C487.9 547.174 512.367 553.191 535.368 549.667C540.548 548.884 545.641 547.602 550.574 545.839C563.205 541.321 575.274 533.15 580.763 520.906C585.878 509.516 584.638 496.336 582.273 484.056C579.206 468.101 572.885 450.613 558.054 443.987C536.948 434.552 511.465 452.497 489.774 444.502C480.526 441.096 476.956 433.302 472.368 424.579C466.726 413.856 441.991 366.12 443.279 350.552C443.495 347.933 443.894 345.332 444.473 342.768C447.405 329.835 454.604 318.266 464.911 309.922C473.07 303.39 483.195 298.872 489.119 290.256C499.186 275.6 493.228 255.619 485.771 239.476C480.539 228.145 473.671 216.135 461.903 211.956C446.522 206.501 430.297 216.697 417.632 226.986C401.115 240.377 384.856 255.759 378.132 275.94C370.816 297.94 376.013 321.955 382.018 344.349" stroke="white" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M443.533 343.473C443.849 343.227 444.153 342.993 444.469 342.773C464.931 327.45 492.269 326.256 518.192 326.678C520.229 326.713 522.254 326.76 524.267 326.807C552.467 327.474 580.674 328.145 608.888 328.82C621.46 329.114 634.027 329.41 646.588 329.71C667.155 330.202 689.279 330.248 706.182 318.51C717.841 310.421 725.403 297.71 731.455 284.879C745.554 254.99 753.414 222.54 754.555 189.512C754.955 178.087 754.824 165.702 761.672 156.56C765.617 151.281 771.119 148.026 777.323 146.036C785.716 143.32 795.432 142.899 804.375 142.852C813.623 142.805 823.994 143.344 832.047 147.195C836.146 149.048 839.61 152.064 842.009 155.869C846.972 163.934 845.79 174.2 844.327 183.569C838.895 218.629 832.2 253.462 824.24 288.069C817.755 316.257 809.994 345.205 791.862 367.75C762.562 404.178 712.169 416.423 665.428 416.879" stroke="white" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M665.592 409.928C665.533 412.234 665.475 414.552 665.416 416.87C663.929 476.16 662.431 540.998 660.944 599.831" stroke="white" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M451.177 514.027C449.562 541.84 447.794 573.996 446.177 601.82V601.832" stroke="white" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M376.166 420.099C376.934 416.717 377.365 413.267 377.454 409.799C377.747 396.642 372.678 388.399 374.972 375.325C375.92 369.917 379.9 363.783 384.852 361.407C387.13 366.629 388.982 372.028 390.389 377.549C391.735 382.77 392.812 388.131 394.182 394.44" stroke="white" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M391.84 398.211C392.8 397.555 393.807 396.853 394.872 396.092C406.788 387.592 424.359 373.582 427.601 378.381C432.318 385.369 422.052 394.242 415.474 399.51C415.006 399.885 414.538 400.259 414.093 400.61C408.264 405.175 404.085 407.821 396.745 412.69" stroke="white" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M396.733 412.3C402.527 408.402 408.314 404.504 414.093 400.606C415.755 399.482 417.41 398.366 419.056 397.258C421.327 395.725 423.668 394.168 426.356 393.629C429.044 393.09 432.162 393.84 433.656 396.122C436.184 399.973 432.848 404.901 429.571 408.132C424.924 412.697 420.417 417.462 415.618 421.851C411.816 425.421 407.68 428.62 403.268 431.403" stroke="white" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M415.8 422.044C420.974 418.111 426.464 411.859 432.937 411.426C434.822 411.297 436.929 411.403 438.322 412.679C440.687 414.856 439.61 418.766 438.053 421.579C433.57 429.703 426.675 436.223 419.57 442.205C418.306 443.27 417.006 444.336 415.66 445.367C407.653 451.524 398.36 456.566 388.608 454.93C382.275 453.876 370.089 436.786 376.165 420.105" stroke="white" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M518.239 324.605C514.247 319.56 517.502 311.518 523.062 308.275C527.58 305.641 532.942 305.267 538.244 305.384C539.473 305.396 540.69 305.443 541.896 305.484C554.644 306.034 567.396 306.576 580.151 307.111C583.019 307.228 585.887 307.357 588.751 307.474C594.557 307.72 600.751 308.106 605.385 311.583C610.019 315.06 611.823 322.883 607.352 326.59C607.879 326.929 608.394 327.269 608.909 327.62" stroke="white" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M777.136 145.471C770.276 140.121 763.3 134.655 758.442 127.444C757.313 125.896 756.486 124.148 756.007 122.293C755.705 121.281 755.673 120.208 755.914 119.18C756.155 118.152 756.662 117.205 757.383 116.433C758.104 115.661 759.014 115.092 760.023 114.781C761.032 114.47 762.105 114.429 763.136 114.661C765.371 115.06 767.485 115.965 769.317 117.307C773.371 119.979 776.902 123.371 779.735 127.315" stroke="white" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M779.911 127.538V127.316C779.49 105.403 779.138 83.1156 785.311 62.0906C785.699 60.4078 786.412 58.8172 787.411 57.4086C787.919 56.709 788.602 56.1557 789.393 55.8046C790.183 55.4534 791.051 55.3169 791.911 55.4086C794.779 55.9006 795.938 59.3536 796.371 62.2326C797.518 69.8526 797.588 77.5786 797.647 85.2696C797.741 95.9563 797.831 106.64 797.916 117.32C797.939 120.246 797.963 123.161 797.986 126.088" stroke="white" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M832.06 147.168C835.127 134.315 837.211 121.158 837.234 107.942C837.234 104.91 837.105 101.75 835.724 99.0419C834.343 96.3339 831.393 94.2079 828.408 94.7229C824.967 95.3079 822.977 98.8789 821.724 102.133C820.555 105.186 819.593 108.315 818.844 111.498C817.574 116.962 816.953 122.557 816.994 128.167" stroke="white" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M818.364 112.471C818.434 112.132 818.516 111.78 818.586 111.441C819.203 108.868 819.521 106.233 819.534 103.586C819.572 100.559 818.539 97.6159 816.619 95.2754C815.645 94.1304 814.363 93.2891 812.925 92.8512C811.487 92.4134 809.954 92.3975 808.507 92.8054C805.826 93.7304 804.071 96.2934 802.783 98.8334C799.897 104.568 798.39 110.897 798.383 117.316V117.609" stroke="white" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M376.693 409.788C367.937 414.037 356.149 425.38 353.551 434.768C350.556 445.579 351.068 457.061 355.015 467.562C358.961 478.063 366.137 487.04 375.511 493.203C385.157 499.548 396.711 502.591 408.229 503.503C419.747 504.415 431.329 503.316 442.796 501.946" stroke="white" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M355.6 602.371C346.54 602.863 336 601.692 326.57 603.682" stroke="white" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M679.311 599.948C673.178 599.901 667.056 599.877 660.945 599.878C604.383 599.726 548.345 600.639 492.112 601.33C476.824 601.517 461.513 601.681 446.178 601.822C435.316 601.916 424.433 601.986 413.531 602.033H413.074" stroke="white" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M759.133 599.972C752.179 599.936 745.226 599.909 738.273 599.89H737.973" stroke="white" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M326.569 603.682L303.473 683.645L265.804 814.094L261.309 829.651L259.635 835.457L793.841 841.661L759.133 599.972" stroke="white" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M259.635 835.457L258.394 894.958L788.877 904.872L793.841 841.661" stroke="white" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M695.091 563.612C690.691 575.938 685.012 586.766 679.312 599.947" stroke="white" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M748.808 568.565L783.508 561.965L786.821 534.691L751.282 535.522C751.282 535.522 747.162 555.922 728.151 556.183C706.94 556.452 707.49 533.872 707.49 533.872L671.963 534.691L672.782 552.87L695.093 563.616" stroke="white" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M738.273 599.655C741.703 589.014 745.367 579.217 748.808 568.564" stroke="white" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M397.213 563.612C402.703 575.891 406.742 588.912 413.531 602.03L413.601 602.171" stroke="white" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M343.507 568.565L308.799 561.965L305.499 534.691L341.026 535.522C341.026 535.522 345.158 555.922 364.168 556.183C385.379 556.452 384.817 533.872 384.817 533.872L420.356 534.691L419.525 552.87L397.214 563.616" stroke="white" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M355.6 602.37C351.8 590.594 347.312 580.351 343.508 568.564" stroke="white" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M258.394 894.958C256.334 895.777 40.666 874.3 40.666 874.3L177 813.977H265.414" stroke="white" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M265.418 688.853C270.563 688.884 275.692 688.29 280.694 687.085C287.952 685.528 295.186 683.503 302.619 683.398" stroke="white" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M265.418 688.853C265.488 688.771 265.558 688.701 265.629 688.619C271.014 682.485 275.415 674.338 273.437 666.425C271.447 658.477 262.457 653.025 254.497 654.942C246.537 656.859 241.024 665.828 242.908 673.8C244.629 681.022 251.418 686.208 258.629 687.964C260.854 688.498 263.13 688.796 265.418 688.853Z" stroke="white" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M216.183 714.279C219.215 713.763 222.231 713.116 225.232 712.336C240.461 708.356 254.976 700.63 265.418 688.854" stroke="white" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M216.183 714.279C213.183 706.436 205.273 701.356 197.395 698.219C189.201 694.965 179.883 693.119 171.642 696.241C167.065 697.985 162.675 702.199 163.436 707.034C164.384 713.062 171.936 715.088 178.021 715.544C190.747 716.515 203.635 716.433 216.183 714.279Z" stroke="white" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M205.765 741.142C214.1 735.465 219.578 724.824 216.534 715.272C216.434 714.933 216.312 714.605 216.183 714.272" stroke="white" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M205.765 741.142C195.471 735.574 183.81 733.038 172.134 733.826C168.201 734.107 163.39 735.605 162.804 739.503C162.418 741.985 164.127 744.419 166.316 745.649C168.587 746.733 171.068 747.309 173.585 747.335C184.144 748.084 195.276 747.429 204.371 742.035C204.84 741.751 205.309 741.459 205.765 741.142Z" stroke="white" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M215.141 774.844C218.981 771.227 222.047 766.685 222.164 761.511C222.34 754.101 216.487 747.944 210.306 743.859C208.831 742.887 207.321 741.974 205.764 741.143" stroke="white" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M215.141 774.843C204.067 768.592 191.413 765.42 179.052 767.773C175.177 768.51 171.244 769.873 168.47 772.673C165.696 775.473 164.396 780.024 166.258 783.501C168.447 787.601 173.785 788.687 178.42 788.722C190.766 788.791 202.775 784.696 212.507 777.099C213.409 776.399 214.3 775.639 215.141 774.843Z" stroke="white" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M260.536 829.429C257.621 824.267 254.683 819.069 251.581 813.977C245.155 803.418 238.026 793.328 228.965 784.958C224.76 781.067 220.121 777.673 215.14 774.844" stroke="white" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M508.992 587.82C515.079 587.566 520.937 585.427 525.755 581.698C530.291 577.966 533.628 572.981 535.35 567.364C537.071 561.748 537.101 555.749 535.436 550.116" stroke="white" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M508.992 587.821C509.492 587.236 509.992 586.627 510.467 586.007C512 584.017 513.452 581.734 513.417 579.218C513.37 575.601 510.093 572.639 506.557 571.855C503.021 571.071 499.346 572.007 495.94 573.255C494.155 573.798 492.515 574.734 491.14 575.994C490.462 576.636 489.981 577.459 489.755 578.365C489.529 579.271 489.567 580.223 489.864 581.109C490.508 582.347 491.534 583.344 492.79 583.953C497.698 586.792 503.329 588.136 508.992 587.821Z" stroke="white" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M492.112 601.106C498.583 597.87 504.326 593.349 508.992 587.82" stroke="white" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M666.306 715.929C666.306 760.341 612.916 796.348 547.047 796.348C481.178 796.348 427.789 760.341 427.789 715.929C427.789 671.517 481.179 635.499 547.048 635.499C612.917 635.499 666.306 671.506 666.306 715.929Z" stroke="white" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M578.723 715.928C578.723 727.482 564.547 736.858 547.047 736.858C529.547 736.858 515.371 727.482 515.371 715.928C515.371 704.374 529.558 694.986 547.047 694.986C564.536 694.986 578.723 704.363 578.723 715.928Z" stroke="white" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M464 179.651C467.91 171.518 471.824 163.379 475.741 155.233" stroke="white" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M437.107 177.451C436.347 152.295 435.582 127.145 434.813 102" stroke="white" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M415.018 182.391L398.829 163.291" stroke="white" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M752.578 420.954C765.541 418.908 777.887 414.006 788.724 406.604C799.561 399.202 808.618 389.485 815.239 378.154" stroke="white" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M818.625 500.813L834.738 476.024" stroke="white" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M836.078 499.475L815.16 478.254" stroke="white" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M354.629 316.3C351.75 308.143 350.754 299.44 351.718 290.843C352.682 282.247 355.579 273.98 360.193 266.663" stroke="white" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M615.737 115.115C615.217 108.709 614.697 102.303 614.178 95.8975" stroke="white" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M603.547 106.143L620.88 103" stroke="white" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M685.911 161.675C684.019 152.813 682.125 143.952 680.231 135.092" stroke="white" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M669.021 153.026L692.545 145.209" stroke="white" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M596.3 308.699L595.25 327.714" stroke="white" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M583.19 307.049C583.092 313.571 582.361 320.068 581.005 326.449" stroke="white" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M568.984 307.453L567.2 327.167C567.223 326.791 567.247 326.415 567.27 326.038" stroke="white" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M550.171 307.459C550.129 313.901 550.087 320.343 550.044 326.785C550.056 326.403 550.068 326.022 550.081 325.64" stroke="white" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M534.1 305.407L535.009 326.061" stroke="white" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M522.893 308.69C523.574 314.338 524.255 319.985 524.937 325.632" stroke="white" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M793.974 294.792L801.686 283.224" stroke="white" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M748.246 306.933L738.931 304.533" stroke="white" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M781.768 188.059L774.081 183.059" stroke="white" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M809.388 162.143L819.867 163.114" stroke="white" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M804.44 254.578V241.908" stroke="white" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M715.788 392.281C714.499 388.609 713.211 384.938 711.922 381.267" stroke="white" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M670.03 359.242C669.663 354.836 669.296 350.429 668.93 346.021" stroke="white" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M612.209 396.207L623.785 392.375" stroke="white" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M610.465 371.389L604.972 357.611" stroke="white" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M537.9 415.663L525.186 419.94" stroke="white" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M493.2 389.006L482.733 388.46" stroke="white" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M494.406 422.028C494.032 418.724 493.659 415.42 493.286 412.115" stroke="white" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M484.941 355.385C486.439 351.333 488.681 347.597 491.551 344.368" stroke="white" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M580.24 442.422C580.199 437.512 581.136 432.644 582.994 428.1" stroke="white" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M612.191 504.668L602.826 500.812" stroke="white" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M626.99 476.536L633.068 464.979" stroke="white" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M644.547 568.086C642.561 563.847 640.575 559.608 638.588 555.369" stroke="white" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M605.614 547.664C607.966 544.639 610.914 542.128 614.275 540.287" stroke="white" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M480.534 560.857L470.619 567.467" stroke="white" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M420.49 495.305L411.676 487.593" stroke="white" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M368.416 465.504C367.465 460.96 366.514 456.414 365.564 451.868" stroke="white" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M644.247 427.713L635.569 417.799" stroke="white" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M558.911 328.344C554.2 365.807 553.337 403.655 556.337 441.294" stroke="white" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M555.548 545.436L554.231 600.517" stroke="white" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M745.5 371.912L755.966 366.954" stroke="white" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M774.658 340.519C773.919 336.481 773.18 332.442 772.44 328.403" stroke="white" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M709.709 341.483L718.519 342.614" stroke="white" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M767.076 258.414C766.168 254.188 765.261 249.963 764.354 245.737" stroke="white" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M652.86 372.028L644.627 365.38" stroke="white" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M574.212 394.009L586.937 387.509" stroke="white" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M526.772 382.926C527.318 377.784 527.862 372.642 528.406 367.5" stroke="white" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M585.2 583.993C582.078 580.504 578.956 577.015 575.835 573.527" stroke="white" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M668.955 108.405L668.562 120.536C668.55 120.903 668.427 121.256 668.208 121.55C667.989 121.844 667.685 122.063 667.337 122.179C666.99 122.294 666.615 122.301 666.264 122.197C665.912 122.093 665.601 121.884 665.372 121.598L657.784 112.125C657.562 111.849 657.263 111.644 656.925 111.537C656.587 111.43 656.225 111.426 655.884 111.525L644.229 114.899C643.877 115.003 643.502 114.995 643.154 114.878C642.806 114.761 642.502 114.54 642.284 114.245C642.066 113.95 641.944 113.595 641.934 113.228C641.924 112.861 642.027 112.5 642.229 112.193L648.9 102.048C649.095 101.752 649.197 101.405 649.195 101.051C649.192 100.697 649.084 100.351 648.885 100.058L642.07 90.0134C641.864 89.7103 641.756 89.3513 641.761 88.9849C641.765 88.6186 641.882 88.2623 642.095 87.9643C642.308 87.6663 642.608 87.4407 642.953 87.3181C643.298 87.1954 643.673 87.1816 644.026 87.2784L655.733 90.4784C656.075 90.5719 656.437 90.562 656.773 90.4501C657.109 90.3381 657.404 90.1291 657.621 89.8494L665.07 80.2664C665.296 79.979 665.603 79.7674 665.952 79.6597C666.301 79.5521 666.675 79.5536 667.023 79.6641C667.371 79.7746 667.677 79.9888 667.9 80.278C668.123 80.5673 668.252 80.9177 668.27 81.2824L668.841 93.4064C668.858 93.7599 668.979 94.1005 669.189 94.3853C669.4 94.67 669.689 94.8862 670.022 95.0064L681.437 99.1294C681.782 99.2538 682.08 99.4807 682.292 99.7797C682.503 100.079 682.618 100.435 682.621 100.802C682.624 101.168 682.514 101.526 682.307 101.828C682.1 102.131 681.805 102.362 681.462 102.491L670.108 106.78C669.777 106.908 669.492 107.13 669.286 107.419C669.081 107.708 668.966 108.051 668.955 108.405Z" fill="white"/>
|
||||||
|
<path d="M829.992 544.755L855.81 538.791" stroke="white" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M844.174 554.99C842.619 545.923 841.064 536.857 839.508 527.79" stroke="white" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M327.876 231.291C311.566 218.727 289.022 214.178 269.505 220.731C249.988 227.284 234.443 245.256 232.055 265.704C229.667 286.152 241.343 307.825 260.255 315.955C266.342 318.571 275.855 318.036 276.77 311.474C276.92 309.718 276.588 307.955 275.81 306.374C268.966 290.507 243.849 289.053 232.603 302.174C221.357 315.295 223.909 336.624 235.267 349.647C241.976 357.34 251.017 362.57 260.052 367.32C269.087 372.07 278.399 376.553 286.169 383.172C293.939 389.791 300.136 398.988 300.669 409.181C301.202 419.374 294.769 430.227 284.805 432.451C274.841 434.675 263.431 425.351 265.505 415.351" stroke="white" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M881.527 272.114C892.226 283.409 900.655 296.655 906.356 311.13C910.315 321.2 912.923 332.304 910.379 342.82C907.835 353.336 898.936 362.885 888.123 363.253C877.31 363.621 867.033 351.886 871.069 341.848C872.076 339.353 873.78 337.201 875.978 335.648C885.058 329.261 898.758 336.61 902.223 347.157C905.688 357.704 901.768 369.257 896.462 379.005C891.156 388.753 884.362 397.911 881.462 408.629C874.837 433.178 890.418 458.329 908.872 475.829" stroke="white" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M224.935 380.175L208.409 365.3" stroke="white" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M206.33 383.227L218.043 363.482" stroke="white" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M905.8 400.006L920.673 393.396" stroke="white" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M915.714 408.269L909.104 388.438" stroke="white" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M546.637 679.286C557.894 679.286 567.019 672.89 567.019 665.001C567.019 657.111 557.894 650.716 546.637 650.716C535.38 650.716 526.255 657.111 526.255 665.001C526.255 672.89 535.38 679.286 546.637 679.286Z" stroke="white" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M547.808 784.638C559.064 784.638 568.19 778.243 568.19 770.353C568.19 762.464 559.064 756.068 547.808 756.068C536.551 756.068 527.426 762.464 527.426 770.353C527.426 778.243 536.551 784.638 547.808 784.638Z" stroke="white" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M464.697 727.28C475.954 727.28 485.079 720.884 485.079 712.995C485.079 705.106 475.954 698.71 464.697 698.71C453.441 698.71 444.315 705.106 444.315 712.995C444.315 720.884 453.441 727.28 464.697 727.28Z" stroke="white" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M628.578 727.28C639.835 727.28 648.96 720.884 648.96 712.995C648.96 705.106 639.835 698.71 628.578 698.71C617.322 698.71 608.196 705.106 608.196 712.995C608.196 720.884 617.322 727.28 628.578 727.28Z" stroke="white" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M601.655 692.163C612.912 692.163 622.037 685.767 622.037 677.878C622.037 669.988 612.912 663.593 601.655 663.593C590.399 663.593 581.273 669.988 581.273 677.878C581.273 685.767 590.399 692.163 601.655 692.163Z" stroke="white" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M489.279 767.08C500.536 767.08 509.661 760.684 509.661 752.795C509.661 744.905 500.536 738.51 489.279 738.51C478.023 738.51 468.897 744.905 468.897 752.795C468.897 760.684 478.023 767.08 489.279 767.08Z" stroke="white" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M489.279 689.822C500.536 689.822 509.661 683.426 509.661 675.537C509.661 667.648 500.536 661.252 489.279 661.252C478.023 661.252 468.897 667.648 468.897 675.537C468.897 683.426 478.023 689.822 489.279 689.822Z" stroke="white" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M602.825 767.08C614.082 767.08 623.207 760.684 623.207 752.795C623.207 744.905 614.082 738.51 602.825 738.51C591.569 738.51 582.443 744.905 582.443 752.795C582.443 760.684 591.569 767.08 602.825 767.08Z" stroke="white" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M269.776 814.534H250.717V828.299H269.776V814.534Z" fill="white"/>
|
||||||
|
<g opacity="0.1">
|
||||||
|
<path d="M525.947 307.988C519.694 307.97 518.238 314.87 515.925 319.373L519.584 316.56C516.884 317.697 515.366 319.86 512.81 320.975C510.586 321.942 507.91 322.01 505.524 322.189C498.184 322.646 490.896 323.718 483.736 325.395C476.433 327.234 469.311 329.727 462.456 332.843C455.756 335.856 448.11 339.243 442.576 344.091C434.344 351.307 445.06 365.145 454.276 359.257C458.136 356.791 461.269 353.43 465.147 350.93C476.066 343.959 488.327 339.357 501.137 337.423C508.099 336.305 515.506 336.277 521.565 332.173C523.235 331.076 524.682 329.671 525.828 328.032C527.445 325.651 526.864 324.303 527.241 321.732C527.607 322.92 527.774 322.622 527.741 320.84C527.869 319.703 527.869 318.554 527.741 317.416C528.034 315.569 528.441 313.741 528.96 311.943C529.078 311.48 529.09 310.997 528.995 310.528C528.9 310.06 528.701 309.619 528.411 309.239C528.121 308.859 527.75 308.549 527.323 308.334C526.897 308.118 526.427 308.001 525.95 307.992L525.947 307.988Z" fill="white"/>
|
||||||
|
</g>
|
||||||
|
<g opacity="0.1">
|
||||||
|
<path d="M352.286 434.51C342.516 453.496 356.354 478.404 371.13 490.557C389.385 505.571 415.421 509.673 437.623 501.802C443.013 499.89 446.617 494.571 445.023 488.77C443.589 483.55 437.41 479.45 431.992 481.37C423.963 484.256 415.351 485.14 406.903 483.944C398.455 482.747 390.427 479.507 383.516 474.505C377.142 469.843 371.871 463.838 368.074 456.915C363.974 449.623 361.032 441.824 356.982 434.509C356.738 434.104 356.394 433.769 355.982 433.536C355.571 433.304 355.107 433.182 354.634 433.182C354.162 433.182 353.697 433.304 353.286 433.536C352.875 433.769 352.53 434.104 352.287 434.509L352.286 434.51Z" fill="white"/>
|
||||||
|
</g>
|
||||||
|
<g opacity="0.1">
|
||||||
|
<path d="M453.035 517.881C447.265 520.745 446.929 528.945 446.576 534.603C446.144 541.522 446.198 548.509 446.186 555.438C446.163 568.999 446.296 582.556 446.428 596.116C446.557 609.321 467.134 609.351 466.959 596.116C466.759 581.231 466.536 566.351 466.169 551.469C466.006 544.869 467.104 510.898 453.035 517.881Z" fill="white"/>
|
||||||
|
</g>
|
||||||
|
<g opacity="0.1">
|
||||||
|
<path d="M545.6 301.059C546.523 282.69 545.8 264.319 545.331 245.945C545.093 236.76 544.81 227.575 544.619 218.388C544.396 214.843 544.578 211.285 545.162 207.782C545.823 204.654 547.362 201.73 548.38 198.706C549.357 195.798 546.014 194.076 543.697 195.106C537.134 198.025 536.066 205.968 535.788 212.461C535.382 221.93 536.211 231.555 536.503 241.023C537.12 261.052 537.376 281.123 539.503 301.058C539.913 304.898 545.396 305.05 545.596 301.058L545.6 301.059Z" fill="white"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<defs>
|
||||||
|
<clipPath id="clip0_1_5470">
|
||||||
|
<rect width="960" height="960" fill="white"/>
|
||||||
|
</clipPath>
|
||||||
|
</defs>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 47 KiB |
|
@ -0,0 +1,155 @@
|
||||||
|
<svg width="960" height="960" viewBox="0 0 960 960" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<g clip-path="url(#clip0_46_7777)">
|
||||||
|
<g clip-path="url(#clip1_46_7777)">
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M666.306 715.93C666.306 671.507 612.915 635.5 547.047 635.5C481.179 635.5 427.789 671.518 427.789 715.93C427.789 760.342 481.178 796.349 547.047 796.349C612.916 796.349 666.306 760.353 666.306 715.93ZM547.047 694.988C564.547 694.988 578.722 704.364 578.723 715.929C578.723 727.483 564.536 736.86 547.047 736.86C529.558 736.86 515.371 727.496 515.371 715.93C515.371 704.364 529.547 694.988 547.047 694.988ZM513.611 732.195C512.812 731.644 511.719 731.845 511.168 732.643C510.617 733.441 510.818 734.535 511.616 735.085C531.335 748.694 559.306 748.923 579.247 735.646C580.055 735.108 580.273 734.018 579.736 733.211C579.198 732.404 578.108 732.185 577.301 732.722C558.556 745.203 532.146 744.987 513.611 732.195Z" fill="white"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M446.179 601.82C461.512 601.692 476.823 601.528 492.113 601.328C501.76 601.21 511.402 601.085 521.042 600.96L521.051 600.96L521.06 600.959L521.069 600.959H521.07H521.07H521.071C567.609 600.356 614.096 599.754 660.946 599.876C667.056 599.876 673.178 599.9 679.312 599.946C681.31 595.325 683.306 590.993 685.245 586.784C688.836 578.989 692.233 571.616 695.091 563.611L672.78 552.865L671.961 534.686L707.488 533.867C707.488 533.867 706.938 556.447 728.149 556.178C747.159 555.92 751.28 535.517 751.28 535.517L786.819 534.686L783.506 561.96L748.806 568.56C747.089 573.874 745.318 578.976 743.548 584.075L743.548 584.076L743.547 584.077L743.546 584.08L743.546 584.082L743.546 584.082C741.768 589.203 739.991 594.321 738.271 599.651V599.885C745.223 599.897 752.177 599.925 759.131 599.967L793.839 841.656L259.639 835.456L261.313 829.65L265.808 814.093L303.477 683.644L326.577 603.682C332.769 602.376 339.434 602.432 345.846 602.485C349.204 602.513 352.493 602.54 355.607 602.371C353.707 596.484 351.635 590.979 349.563 585.473L349.562 585.473L349.562 585.473L349.562 585.473C347.49 579.967 345.417 574.459 343.515 568.565L308.804 561.965L305.504 534.691L341.031 535.522C341.031 535.522 345.163 555.922 364.173 556.183C385.384 556.452 384.822 533.872 384.822 533.872L420.361 534.691L419.53 552.87L397.219 563.616C399.366 568.418 401.291 573.333 403.245 578.323C406.288 586.094 409.403 594.046 413.537 602.034C424.431 601.986 435.311 601.914 446.179 601.82ZM666.306 715.928C666.306 671.505 612.916 635.498 547.047 635.498C481.178 635.498 427.788 671.505 427.788 715.928C427.788 760.351 481.178 796.347 547.047 796.347C612.916 796.347 666.306 760.34 666.306 715.928ZM745.085 613.247C746.045 613.107 746.936 613.772 747.076 614.731L777.133 821.259C777.272 822.219 776.607 823.11 775.648 823.25C774.688 823.39 773.797 822.725 773.657 821.765L743.6 615.237C743.461 614.278 744.125 613.386 745.085 613.247ZM780.163 541.385C780.213 540.417 779.469 539.59 778.501 539.539C777.532 539.489 776.706 540.232 776.655 541.201C776.381 546.434 776.106 551.668 775.832 556.901C775.782 557.87 776.526 558.696 777.494 558.747C778.463 558.797 779.289 558.053 779.34 557.085C779.614 551.852 779.888 546.618 780.163 541.385ZM657.841 760.127C658.483 760.854 658.415 761.963 657.688 762.606C625.729 790.855 584.549 806.454 541.895 806.467C499.24 806.48 458.051 790.907 426.074 762.677C425.347 762.036 425.278 760.926 425.92 760.199C426.562 759.472 427.671 759.403 428.398 760.045C459.733 787.708 500.096 802.968 541.894 802.955C583.692 802.942 624.045 787.657 655.362 759.974C656.089 759.332 657.199 759.4 657.841 760.127ZM416.894 539.516C416.828 538.549 415.989 537.819 415.022 537.885C414.054 537.952 413.324 538.79 413.391 539.758L414.132 550.506C414.198 551.473 415.037 552.204 416.004 552.137C416.972 552.07 417.702 551.232 417.635 550.264L416.894 539.516Z" fill="#171717"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M663.275 504.529C663.989 474.883 664.704 445.242 665.415 416.87V416.872H665.428C712.169 416.416 762.562 404.171 791.862 367.743C809.999 345.2 817.755 316.25 824.24 288.065C832.199 253.457 838.895 218.624 844.327 183.565C845.79 174.196 846.972 163.93 842.009 155.865C839.61 152.06 836.146 149.044 832.047 147.191C823.994 143.34 813.623 142.801 804.375 142.848C795.432 142.895 785.716 143.316 777.323 146.032C771.119 148.022 765.617 151.277 761.672 156.556C755.327 165.027 754.974 176.282 754.638 186.978C754.611 187.825 754.584 188.669 754.555 189.508C753.414 222.537 745.554 254.986 731.455 284.875C725.403 297.706 717.841 310.417 706.182 318.506C689.279 330.244 667.155 330.198 646.588 329.706C634.027 329.406 621.46 329.109 608.888 328.816C580.674 328.141 552.467 327.47 524.267 326.803C522.254 326.756 520.229 326.709 518.192 326.674C492.264 326.257 464.931 327.451 444.469 342.774C443.89 345.338 443.491 347.939 443.275 350.558C441.987 366.126 466.722 413.862 472.364 424.585C472.652 425.132 472.935 425.675 473.216 426.214C477.422 434.268 481.102 441.316 489.77 444.508C500.338 448.403 511.805 446.142 523.229 443.888C535.252 441.517 547.227 439.155 558.05 443.993C572.881 450.619 579.202 468.107 582.269 484.062C584.634 496.342 585.874 509.522 580.759 520.912C575.27 533.156 563.201 541.327 550.57 545.845C545.637 547.609 540.544 548.891 535.364 549.673L535.434 550.118C537.099 555.752 537.069 561.75 535.347 567.367C533.626 572.983 530.289 577.968 525.753 581.7C520.935 585.429 515.077 587.569 508.99 587.822C504.324 593.351 498.581 597.872 492.11 601.108V601.33C501.85 601.211 511.584 601.084 521.317 600.958C567.772 600.355 614.178 599.753 660.943 599.878V599.831C661.719 569.151 662.497 536.837 663.275 504.529ZM833.195 166.26C833.291 165.295 832.587 164.435 831.622 164.339C830.657 164.243 829.797 164.947 829.701 165.912C825.716 205.98 819.234 245.761 810.292 285.021C802.203 320.532 790.511 357.552 761.982 379.008C761.207 379.59 761.051 380.691 761.634 381.466C762.217 382.241 763.317 382.397 764.093 381.814C793.748 359.512 805.635 321.277 813.716 285.801C822.691 246.398 829.197 206.473 833.195 166.26Z" fill="white"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M597.587 145.156C596.05 144.296 594.455 144.575 593.238 145.123C592.034 145.666 590.976 146.556 590.193 147.374L590.192 147.376C584.266 153.583 580.524 161.552 579.533 170.077C579.421 171.04 580.112 171.912 581.075 172.024C582.038 172.136 582.91 171.445 583.022 170.482C583.924 162.717 587.333 155.457 592.731 149.802C593.341 149.165 594.038 148.615 594.681 148.325C595.307 148.043 595.649 148.098 595.868 148.219C596.041 148.318 596.238 148.526 596.409 149.004C596.586 149.496 596.678 150.123 596.721 150.824L596.721 150.827C597.054 156.059 596.342 161.306 594.625 166.26C594.342 167.076 594.696 167.978 595.459 168.384C596.222 168.791 597.167 168.582 597.687 167.891C602.133 161.992 607.074 156.482 612.458 151.424C613.294 150.642 614.18 149.943 615.034 149.54C615.873 149.144 616.478 149.123 616.961 149.332L616.97 149.335C617.522 149.57 617.938 150.105 618.104 151.185C618.272 152.278 618.115 153.635 617.762 154.849L617.761 154.851C615.632 162.197 611.335 168.729 605.431 173.591C604.725 174.173 604.584 175.199 605.106 175.95C605.629 176.7 606.64 176.924 607.431 176.464C617.859 170.395 628.896 165.439 640.361 161.679C641.527 161.3 642.678 161.005 643.704 160.964C644.679 160.925 645.37 161.119 645.864 161.52C646.287 161.981 646.572 162.552 646.684 163.169C646.801 163.807 646.727 164.465 646.473 165.062C645.759 166.644 644.701 168.048 643.376 169.169C643.348 169.193 643.32 169.218 643.293 169.244C632.112 180.007 622.24 187.673 607.589 191.737C606.655 191.997 606.107 192.964 606.367 193.899C606.626 194.833 607.594 195.381 608.528 195.122C623.99 190.832 634.363 182.711 645.689 171.812C647.397 170.355 648.761 168.537 649.682 166.489L649.694 166.463C650.225 165.227 650.381 163.862 650.139 162.539C649.898 161.216 649.271 159.993 648.338 159.025C648.302 158.988 648.265 158.953 648.227 158.919C646.817 157.691 645.1 157.393 643.563 157.455C642.041 157.516 640.518 157.935 639.273 158.339L639.268 158.341C630.972 161.062 622.894 164.397 615.103 168.315C617.785 164.542 619.831 160.325 621.134 155.829C621.581 154.293 621.844 152.4 621.576 150.651C621.305 148.889 620.426 146.991 618.348 146.105C616.609 145.356 614.897 145.722 613.535 146.364C612.187 147 610.985 147.992 610.057 148.86L610.054 148.863C606.459 152.241 603.055 155.816 599.859 159.568C600.292 156.609 600.417 153.605 600.226 150.605C600.175 149.784 600.057 148.773 599.716 147.82C599.37 146.856 598.744 145.811 597.595 145.16L597.595 145.16L597.587 145.156Z" fill="#171717"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M391.022 377.386C389.627 372.209 388.224 367.095 386.813 361.949C385.228 356.169 383.631 350.348 382.022 344.352C376.022 321.959 370.822 297.939 378.136 275.943C384.855 255.762 401.114 240.381 417.636 226.989C430.302 216.7 446.526 206.504 461.907 211.959C473.671 216.138 480.543 228.148 485.775 239.479C493.232 255.621 499.19 275.603 489.123 290.259C485.126 296.072 479.215 300.021 473.287 303.981L473.286 303.981C470.429 305.889 467.568 307.801 464.915 309.925C454.608 318.269 447.409 329.838 444.477 342.771C443.898 345.334 443.499 347.935 443.283 350.555C441.995 366.124 466.73 413.86 472.372 424.582C472.661 425.131 472.946 425.677 473.229 426.218C477.433 434.268 481.113 441.313 489.778 444.505C500.347 448.403 511.816 446.14 523.24 443.886C535.263 441.514 547.236 439.152 558.058 443.99C572.889 450.615 579.21 468.104 582.277 484.059C584.642 496.338 585.882 509.519 580.767 520.909C575.277 533.153 563.208 541.324 550.578 545.842C545.644 547.605 540.552 548.887 535.372 549.67C512.372 553.193 487.905 547.177 469.504 532.849C462.608 527.389 456.455 521.053 451.201 514C448.25 510.088 445.499 506.029 442.96 501.838C437.959 493.509 433.41 484.918 429.334 476.1C424.592 466.068 420.109 455.919 415.884 445.653L415.662 445.36C417.008 444.33 418.308 443.26 419.572 442.199C426.672 436.217 433.572 429.699 438.055 421.573C439.612 418.764 440.689 414.854 438.324 412.673C436.931 411.397 434.824 411.292 432.939 411.42C427.989 411.751 423.614 415.484 419.515 418.981L419.515 418.982C418.254 420.058 417.019 421.111 415.802 422.037L415.626 421.85C418.807 418.941 421.859 415.867 424.908 412.796L424.909 412.796C426.46 411.233 428.012 409.67 429.579 408.131C432.857 404.9 436.193 399.972 433.664 396.121C432.164 393.838 429.04 393.089 426.364 393.628C423.688 394.167 421.331 395.723 419.064 397.257C417.412 398.369 415.758 399.485 414.101 400.605C414.476 400.309 414.867 399.997 415.26 399.682L415.264 399.679L415.482 399.505C422.061 394.237 432.327 385.364 427.609 378.376C424.828 374.259 411.506 383.981 400.252 392.194L400.251 392.195C398.384 393.557 396.575 394.878 394.88 396.087L394.189 394.436C393.871 392.971 393.568 391.558 393.275 390.185L393.275 390.185C392.304 385.645 391.429 381.553 390.396 377.545L391.022 377.386ZM444.919 218.363C448.906 216.697 453.304 216.278 457.534 217.161C461.764 218.043 465.627 220.186 468.616 223.307C471.604 226.428 473.577 230.381 474.276 234.645C474.433 235.602 473.784 236.505 472.827 236.662C471.87 236.818 470.967 236.17 470.81 235.213C470.226 231.648 468.577 228.345 466.079 225.736C463.581 223.128 460.352 221.337 456.817 220.599C453.281 219.861 449.605 220.211 446.273 221.603C442.94 222.995 440.107 225.364 438.147 228.397C437.62 229.211 436.533 229.445 435.719 228.918C434.904 228.392 434.671 227.305 435.197 226.49C437.543 222.862 440.932 220.028 444.919 218.363ZM527.306 456.268C531.695 454.301 536.499 453.441 541.298 453.761C546.096 454.082 550.743 455.574 554.832 458.107C558.92 460.64 562.325 464.137 564.748 468.291C567.172 472.445 568.54 477.13 568.733 481.936C568.772 482.905 569.589 483.659 570.558 483.62C571.527 483.581 572.281 482.764 572.242 481.795C572.026 476.416 570.495 471.172 567.782 466.522C565.069 461.871 561.258 457.957 556.681 455.122C552.105 452.287 546.903 450.616 541.532 450.257C536.16 449.898 530.783 450.862 525.87 453.063C524.985 453.459 524.589 454.498 524.985 455.383C525.382 456.268 526.421 456.664 527.306 456.268Z" fill="#171717"/>
|
||||||
|
<path d="M793.841 841.661L788.877 904.872L258.394 894.958L259.635 835.457L793.841 841.661Z" fill="white"/>
|
||||||
|
<path d="M608.912 327.625L608.889 328.819C580.678 328.14 552.471 327.469 524.268 326.806C522.255 326.759 520.229 326.712 518.193 326.677L518.24 324.605C514.248 319.56 517.503 311.518 523.063 308.275C527.581 305.641 532.943 305.267 538.245 305.384C539.474 305.396 540.691 305.443 541.897 305.484C554.645 306.034 567.397 306.576 580.152 307.111C583.02 307.228 585.888 307.357 588.752 307.474C594.558 307.72 600.752 308.106 605.386 311.583C610.02 315.06 611.824 322.883 607.353 326.59C607.882 326.934 608.4 327.274 608.912 327.625Z" fill="white"/>
|
||||||
|
<path d="M547.047 694.987C564.547 694.987 578.723 704.363 578.723 715.929C578.723 727.495 564.547 736.859 547.047 736.859C529.547 736.859 515.371 727.483 515.371 715.929C515.371 704.375 529.559 694.987 547.047 694.987Z" fill="white"/>
|
||||||
|
<path d="M535.435 550.117C537.1 555.75 537.07 561.749 535.349 567.365C533.627 572.982 530.29 577.967 525.754 581.699C520.936 585.428 515.078 587.568 508.991 587.821C509.491 587.236 509.991 586.627 510.466 586.007C511.999 584.017 513.451 581.734 513.416 579.218C513.369 575.601 510.092 572.639 506.556 571.855C503.02 571.071 499.345 572.007 495.939 573.255C494.154 573.798 492.514 574.734 491.139 575.994C490.461 576.636 489.98 577.459 489.754 578.365C489.528 579.272 489.566 580.223 489.863 581.109C490.507 582.347 491.533 583.344 492.789 583.953C497.698 586.79 503.328 588.133 508.989 587.816C504.323 593.345 498.579 597.866 492.109 601.102V601.324C476.821 601.511 461.509 601.675 446.175 601.816C447.79 573.991 449.558 541.836 451.175 514.023L451.198 514C456.452 521.051 462.604 527.387 469.498 532.846C487.898 547.174 512.365 553.191 535.366 549.667L535.435 550.117Z" fill="white"/>
|
||||||
|
<path d="M534.288 216.782C534.3 217.028 534.311 217.262 534.323 217.508L533.691 217.531C526.527 215.705 522.711 227.984 515.891 225.131C511.466 223.281 511.782 216.715 514.182 212.571C516.582 208.427 520.382 204.705 520.69 199.917C515.223 202.328 506.069 207.35 503.155 202.141C497.817 192.612 523.031 183.201 534.164 178.121C548.305 171.683 563.124 170.231 578.599 170.407L581.28 170.278C582.227 162.133 585.802 154.518 591.464 148.587C592.857 147.135 594.976 145.707 596.732 146.687C598.055 147.436 598.383 149.187 598.476 150.714C598.824 156.179 598.08 161.659 596.287 166.833C600.793 160.853 605.802 155.269 611.259 150.141C613.027 148.49 615.438 146.758 617.659 147.718C620.293 148.842 620.246 152.588 619.45 155.338C617.223 163.024 612.727 169.858 606.55 174.945C617.085 168.814 628.236 163.807 639.818 160.008C642.229 159.224 645.168 158.58 647.076 160.242C647.77 160.962 648.235 161.87 648.414 162.853C648.593 163.836 648.478 164.85 648.083 165.767C647.262 167.594 646.042 169.214 644.513 170.508C633.252 181.348 623.127 189.249 608.061 193.428L607.511 193.159C591.72 192.359 574.992 192.105 559.19 192.503C551.019 192.714 541.608 193.732 537.043 200.51C533.9 205.158 534.042 211.186 534.288 216.782Z" fill="#171717"/>
|
||||||
|
<path d="M513.417 579.217C513.452 581.734 512.001 584.017 510.467 586.006C509.987 586.626 509.495 587.235 508.992 587.82C503.331 588.136 497.701 586.794 492.792 583.957C491.537 583.348 490.511 582.35 489.866 581.113C489.57 580.228 489.532 579.276 489.758 578.37C489.984 577.464 490.464 576.642 491.141 576C492.517 574.74 494.157 573.804 495.941 573.261C499.347 572.008 503.023 571.072 506.558 571.861C510.093 572.65 513.37 575.6 513.417 579.217Z" fill="white"/>
|
||||||
|
<path d="M442.959 501.842L442.795 501.947C431.323 503.317 419.746 504.429 408.228 503.504C396.71 502.579 385.156 499.547 375.51 493.204C366.136 487.041 358.96 478.063 355.014 467.563C351.067 457.062 350.555 445.58 353.55 434.769C356.15 425.381 367.936 414.038 376.692 409.789L377.453 409.801C377.365 413.269 376.933 416.719 376.165 420.101C370.09 436.782 382.275 453.872 388.608 454.926C398.359 456.565 407.653 451.52 415.66 445.362L415.882 445.655C420.108 455.909 424.591 466.058 429.332 476.102C433.409 484.92 437.958 493.512 442.959 501.842V501.842Z" fill="white"/>
|
||||||
|
<path d="M261.309 829.651L259.635 835.457L258.394 894.957C256.334 895.777 40.666 874.3 40.666 874.3L177 813.977H251.578C254.678 819.069 257.618 824.266 260.533 829.429L261.309 829.651Z" fill="#171717"/>
|
||||||
|
<path d="M580.186 306.25C578.489 302.231 578.099 297.781 579.072 293.528C580.045 289.276 582.331 285.438 585.607 282.557C589.224 279.514 593.8 277.828 597.651 275.065C609.392 266.637 612.026 250.19 610.797 235.78C609.568 221.37 605.459 208.119 607.777 193.85" stroke="#171717" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M538.256 304.927C536.945 275.793 535.634 246.654 534.323 217.508C534.311 217.262 534.3 217.028 534.288 216.782C534.042 211.187 533.902 205.158 537.039 200.511C541.604 193.733 551.016 192.711 559.186 192.504C574.986 192.104 591.716 192.364 607.507 193.16" stroke="#171717" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M580.924 170.438C580.151 170.426 579.367 170.403 578.595 170.403C563.12 170.227 548.295 171.679 534.16 178.117C523.028 183.197 497.814 192.609 503.151 202.137C506.066 207.346 515.22 202.324 520.686 199.913C520.386 204.701 516.586 208.413 514.178 212.567C511.77 216.721 511.462 223.278 515.887 225.127C522.711 227.983 526.528 215.704 533.687 217.527" stroke="#171717" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M566.807 250.659C569.101 252.953 573.362 251.49 575.001 248.692C576.64 245.894 576.417 242.418 576.16 239.192C575.177 227.192 574.198 215.192 573.222 203.192C580.796 202.876 588.365 202.552 595.931 202.22" stroke="#171717" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M597.558 219.908C596.045 218.781 594.195 218.199 592.309 218.259C590.423 218.319 588.614 219.015 587.175 220.236" stroke="#171717" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M560.401 219.873C558.411 216.127 552.264 215.694 549.771 219.124" stroke="#171717" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M562.066 266.964C555.944 269.223 548.323 264.4 547.75 257.904" stroke="#171717" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M415.884 445.653C420.11 455.907 424.593 466.056 429.334 476.1" stroke="#171717" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M382.02 344.352C385.064 355.683 388.06 366.394 391.02 377.386C392.495 382.853 393.958 388.378 395.42 394.086" stroke="#171717" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M429.334 476.1C433.41 484.919 437.958 493.512 442.96 501.841C445.499 506.031 448.25 510.089 451.2 514C456.454 521.051 462.606 527.387 469.5 532.846C487.9 547.174 512.367 553.191 535.368 549.667C540.548 548.884 545.641 547.602 550.574 545.839C563.205 541.321 575.274 533.15 580.763 520.906C585.878 509.516 584.638 496.336 582.273 484.056C579.206 468.101 572.885 450.613 558.054 443.987C536.948 434.552 511.465 452.497 489.774 444.502C480.526 441.096 476.956 433.302 472.368 424.579C466.726 413.856 441.991 366.12 443.279 350.552C443.495 347.933 443.894 345.332 444.473 342.768C447.405 329.835 454.604 318.266 464.911 309.922C473.07 303.39 483.195 298.872 489.119 290.256C499.186 275.6 493.228 255.619 485.771 239.476C480.539 228.145 473.671 216.135 461.903 211.956C446.522 206.501 430.297 216.697 417.632 226.986C401.115 240.377 384.856 255.759 378.132 275.94C370.816 297.94 376.013 321.955 382.018 344.349" stroke="#171717" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M443.533 343.473C443.849 343.227 444.153 342.993 444.469 342.773C464.931 327.45 492.269 326.256 518.192 326.678C520.229 326.713 522.254 326.76 524.267 326.807C552.467 327.474 580.674 328.145 608.888 328.82C621.46 329.114 634.027 329.41 646.588 329.71C667.155 330.202 689.279 330.248 706.182 318.51C717.841 310.421 725.403 297.71 731.455 284.879C745.554 254.99 753.414 222.54 754.555 189.512C754.955 178.087 754.824 165.702 761.672 156.56C765.617 151.281 771.119 148.026 777.323 146.036C785.716 143.32 795.432 142.899 804.375 142.852C813.623 142.805 823.994 143.344 832.047 147.195C836.146 149.048 839.61 152.064 842.009 155.869C846.972 163.934 845.79 174.2 844.327 183.569C838.895 218.629 832.2 253.462 824.24 288.069C817.755 316.257 809.994 345.205 791.862 367.75C762.562 404.178 712.169 416.423 665.428 416.879" stroke="#171717" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M665.592 409.928C665.533 412.234 665.475 414.552 665.416 416.87C663.929 476.16 662.431 540.998 660.944 599.831" stroke="#171717" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M451.177 514.027C449.562 541.84 447.794 573.996 446.177 601.82V601.832" stroke="#171717" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M376.166 420.099C376.934 416.717 377.365 413.267 377.454 409.799C377.747 396.642 372.678 388.399 374.972 375.325C375.92 369.917 379.9 363.783 384.852 361.407C387.13 366.629 388.982 372.028 390.389 377.549C391.735 382.77 392.812 388.131 394.182 394.44" stroke="#171717" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M391.84 398.211C392.8 397.555 393.807 396.853 394.872 396.092C406.788 387.592 424.359 373.582 427.601 378.381C432.318 385.369 422.052 394.242 415.474 399.51C415.006 399.885 414.538 400.259 414.093 400.61C408.264 405.175 404.085 407.821 396.745 412.69" stroke="#171717" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M396.733 412.3C402.527 408.402 408.314 404.504 414.093 400.606C415.755 399.482 417.41 398.366 419.056 397.258C421.327 395.725 423.668 394.168 426.356 393.629C429.044 393.09 432.162 393.84 433.656 396.122C436.184 399.973 432.848 404.901 429.571 408.132C424.924 412.697 420.417 417.462 415.618 421.851C411.816 425.421 407.68 428.62 403.268 431.403" stroke="#171717" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M415.8 422.044C420.974 418.111 426.464 411.859 432.937 411.426C434.822 411.297 436.929 411.403 438.322 412.679C440.687 414.856 439.61 418.766 438.053 421.579C433.57 429.703 426.675 436.223 419.57 442.205C418.306 443.27 417.006 444.336 415.66 445.367C407.653 451.524 398.36 456.566 388.608 454.93C382.275 453.876 370.089 436.786 376.165 420.105" stroke="#171717" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M518.239 324.605C514.247 319.56 517.502 311.518 523.062 308.275C527.58 305.641 532.942 305.267 538.244 305.384C539.473 305.396 540.69 305.443 541.896 305.484C554.644 306.034 567.396 306.576 580.151 307.111C583.019 307.228 585.887 307.357 588.751 307.474C594.557 307.72 600.751 308.106 605.385 311.583C610.019 315.06 611.823 322.883 607.352 326.59C607.879 326.929 608.394 327.269 608.909 327.62" stroke="#171717" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M777.136 145.471C770.276 140.121 763.3 134.655 758.442 127.444C757.313 125.896 756.486 124.148 756.007 122.293C755.705 121.281 755.673 120.208 755.914 119.18C756.155 118.152 756.662 117.205 757.383 116.433C758.104 115.661 759.014 115.092 760.023 114.781C761.032 114.47 762.105 114.429 763.136 114.661C765.371 115.06 767.485 115.965 769.317 117.307C773.371 119.979 776.902 123.371 779.735 127.315" stroke="#171717" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M779.911 127.538V127.316C779.49 105.403 779.138 83.1156 785.311 62.0906C785.699 60.4078 786.412 58.8172 787.411 57.4086C787.919 56.709 788.602 56.1557 789.393 55.8046C790.183 55.4534 791.051 55.3169 791.911 55.4086C794.779 55.9006 795.938 59.3536 796.371 62.2326C797.518 69.8526 797.588 77.5786 797.647 85.2696C797.741 95.9563 797.831 106.64 797.916 117.32C797.939 120.246 797.963 123.161 797.986 126.088" stroke="#171717" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M832.06 147.168C835.127 134.315 837.211 121.158 837.234 107.942C837.234 104.91 837.105 101.75 835.724 99.0419C834.343 96.3339 831.393 94.2079 828.408 94.7229C824.967 95.3079 822.977 98.8789 821.724 102.133C820.555 105.186 819.593 108.315 818.844 111.498C817.574 116.962 816.953 122.557 816.994 128.167" stroke="#171717" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M818.364 112.471C818.434 112.132 818.516 111.78 818.586 111.441C819.203 108.868 819.521 106.233 819.534 103.586C819.572 100.559 818.539 97.6159 816.619 95.2754C815.645 94.1304 814.363 93.2891 812.925 92.8512C811.487 92.4134 809.954 92.3975 808.507 92.8054C805.826 93.7304 804.071 96.2934 802.783 98.8334C799.897 104.568 798.39 110.897 798.383 117.316V117.609" stroke="#171717" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M376.693 409.788C367.937 414.037 356.149 425.38 353.551 434.768C350.556 445.579 351.068 457.061 355.015 467.562C358.961 478.063 366.137 487.04 375.511 493.203C385.157 499.548 396.711 502.591 408.229 503.503C419.747 504.415 431.329 503.316 442.796 501.946" stroke="#171717" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M355.6 602.371C346.54 602.863 336 601.692 326.57 603.682" stroke="#171717" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M679.311 599.948C673.178 599.901 667.056 599.877 660.945 599.878C604.383 599.726 548.345 600.639 492.112 601.33C476.824 601.517 461.513 601.681 446.178 601.822C435.316 601.916 424.433 601.986 413.531 602.033H413.074" stroke="#171717" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M759.133 599.972C752.179 599.936 745.226 599.909 738.273 599.89H737.973" stroke="#171717" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M326.569 603.682L303.473 683.645L265.804 814.094L261.309 829.651L259.635 835.457L793.841 841.661L759.133 599.972" stroke="#171717" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M259.635 835.457L258.394 894.958L788.877 904.872L793.841 841.661" stroke="#171717" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M695.091 563.612C690.691 575.938 685.012 586.766 679.312 599.947" stroke="#171717" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M748.808 568.565L783.508 561.965L786.821 534.691L751.282 535.522C751.282 535.522 747.162 555.922 728.151 556.183C706.94 556.452 707.49 533.872 707.49 533.872L671.963 534.691L672.782 552.87L695.093 563.616" stroke="#171717" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M738.273 599.655C741.703 589.014 745.367 579.217 748.808 568.564" stroke="#171717" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M397.213 563.612C402.703 575.891 406.742 588.912 413.531 602.03L413.601 602.171" stroke="#171717" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M343.507 568.565L308.799 561.965L305.499 534.691L341.026 535.522C341.026 535.522 345.158 555.922 364.168 556.183C385.379 556.452 384.817 533.872 384.817 533.872L420.356 534.691L419.525 552.87L397.214 563.616" stroke="#171717" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M355.6 602.37C351.8 590.594 347.312 580.351 343.508 568.564" stroke="#171717" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M258.394 894.958C256.334 895.777 40.666 874.3 40.666 874.3L177 813.977H265.414" stroke="#171717" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M265.418 688.853C270.563 688.884 275.692 688.29 280.694 687.085C287.952 685.528 295.186 683.503 302.619 683.398" stroke="#171717" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M265.418 688.853C265.488 688.771 265.558 688.701 265.629 688.619C271.014 682.485 275.415 674.338 273.437 666.425C271.447 658.477 262.457 653.025 254.497 654.942C246.537 656.859 241.024 665.828 242.908 673.8C244.629 681.022 251.418 686.208 258.629 687.964C260.854 688.498 263.13 688.796 265.418 688.853V688.853Z" stroke="#171717" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M216.183 714.279C219.215 713.763 222.231 713.116 225.232 712.336C240.461 708.356 254.976 700.63 265.418 688.854" stroke="#171717" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M216.183 714.279C213.183 706.436 205.273 701.356 197.395 698.219C189.201 694.965 179.883 693.119 171.642 696.241C167.065 697.985 162.675 702.199 163.436 707.034C164.384 713.062 171.936 715.088 178.021 715.544C190.747 716.515 203.635 716.433 216.183 714.279Z" stroke="#171717" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M205.765 741.142C214.1 735.465 219.578 724.824 216.534 715.272C216.434 714.933 216.312 714.605 216.183 714.272" stroke="#171717" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M205.765 741.142C195.471 735.574 183.81 733.038 172.134 733.826C168.201 734.107 163.39 735.605 162.804 739.503C162.418 741.985 164.127 744.419 166.316 745.649C168.587 746.733 171.068 747.309 173.585 747.335C184.144 748.084 195.276 747.429 204.371 742.035C204.84 741.751 205.309 741.459 205.765 741.142Z" stroke="#171717" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M215.141 774.844C218.981 771.227 222.047 766.685 222.164 761.511C222.34 754.101 216.487 747.944 210.306 743.859C208.831 742.887 207.321 741.974 205.764 741.143" stroke="#171717" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M215.141 774.843C204.067 768.592 191.413 765.42 179.052 767.773C175.177 768.51 171.244 769.873 168.47 772.673C165.696 775.473 164.396 780.024 166.258 783.501C168.447 787.601 173.785 788.687 178.42 788.722C190.766 788.791 202.775 784.696 212.507 777.099C213.409 776.399 214.3 775.639 215.141 774.843Z" stroke="#171717" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M260.536 829.429C257.621 824.267 254.683 819.069 251.581 813.977C245.155 803.418 238.026 793.328 228.965 784.958C224.76 781.067 220.121 777.673 215.14 774.844" stroke="#171717" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M508.992 587.82C515.079 587.566 520.937 585.427 525.755 581.698C530.291 577.966 533.628 572.981 535.35 567.364C537.071 561.748 537.101 555.749 535.436 550.116" stroke="#171717" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M508.992 587.821C509.492 587.236 509.992 586.627 510.467 586.007C512 584.017 513.452 581.734 513.417 579.218C513.37 575.601 510.093 572.639 506.557 571.855C503.021 571.071 499.346 572.007 495.94 573.255C494.155 573.798 492.515 574.734 491.14 575.994C490.462 576.636 489.981 577.459 489.755 578.365C489.529 579.271 489.567 580.223 489.864 581.109C490.508 582.347 491.534 583.344 492.79 583.953C497.698 586.792 503.329 588.136 508.992 587.821V587.821Z" stroke="#171717" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M492.112 601.106C498.583 597.87 504.326 593.349 508.992 587.82" stroke="#171717" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M666.306 715.929C666.306 760.341 612.916 796.348 547.047 796.348C481.178 796.348 427.789 760.341 427.789 715.929C427.789 671.517 481.179 635.499 547.048 635.499C612.917 635.499 666.306 671.506 666.306 715.929Z" stroke="#171717" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M578.723 715.928C578.723 727.482 564.547 736.858 547.047 736.858C529.547 736.858 515.371 727.482 515.371 715.928C515.371 704.374 529.558 694.986 547.047 694.986C564.536 694.986 578.723 704.363 578.723 715.928Z" stroke="#171717" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M464 179.651C467.91 171.518 471.824 163.379 475.741 155.233" stroke="#171717" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M437.107 177.451C436.347 152.295 435.582 127.145 434.813 102" stroke="#171717" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M415.018 182.391L398.829 163.291" stroke="#171717" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M752.578 420.954C765.541 418.908 777.887 414.006 788.724 406.604C799.561 399.202 808.618 389.485 815.239 378.154" stroke="#171717" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M818.625 500.813L834.738 476.024" stroke="#171717" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M836.078 499.475L815.16 478.254" stroke="#171717" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M354.629 316.3C351.75 308.143 350.754 299.44 351.718 290.843C352.682 282.247 355.579 273.98 360.193 266.663" stroke="#171717" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M615.737 115.115C615.217 108.709 614.697 102.303 614.178 95.8975" stroke="#171717" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M603.547 106.143L620.88 103" stroke="#171717" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M685.911 161.675C684.019 152.813 682.125 143.952 680.231 135.092" stroke="#171717" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M669.021 153.026L692.545 145.209" stroke="#171717" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M596.3 308.699L595.25 327.714" stroke="#171717" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M583.19 307.049C583.092 313.571 582.361 320.068 581.005 326.449" stroke="#171717" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M568.984 307.453L567.2 327.167C567.223 326.791 567.247 326.415 567.27 326.038" stroke="#171717" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M550.171 307.459C550.129 313.901 550.087 320.343 550.044 326.785C550.056 326.403 550.068 326.022 550.081 325.64" stroke="#171717" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M534.1 305.407L535.009 326.061" stroke="#171717" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M522.893 308.69C523.574 314.338 524.255 319.985 524.937 325.632" stroke="#171717" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M793.974 294.792L801.686 283.224" stroke="#171717" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M748.246 306.933L738.931 304.533" stroke="#171717" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M781.768 188.059L774.081 183.059" stroke="#171717" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M809.388 162.143L819.867 163.114" stroke="#171717" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M804.44 254.578V241.908" stroke="#171717" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M715.788 392.281C714.499 388.609 713.211 384.938 711.922 381.267" stroke="#171717" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M670.03 359.242C669.663 354.836 669.296 350.429 668.93 346.021" stroke="#171717" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M612.209 396.207L623.785 392.375" stroke="#171717" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M610.465 371.389L604.972 357.611" stroke="#171717" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M537.9 415.663L525.186 419.94" stroke="#171717" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M493.2 389.006L482.733 388.46" stroke="#171717" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M494.406 422.028C494.032 418.724 493.659 415.42 493.286 412.115" stroke="#171717" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M484.941 355.385C486.439 351.333 488.681 347.597 491.551 344.368" stroke="#171717" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M580.24 442.422C580.199 437.512 581.136 432.644 582.994 428.1" stroke="#171717" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M612.191 504.668L602.826 500.812" stroke="#171717" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M626.99 476.536L633.068 464.979" stroke="#171717" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M644.547 568.086C642.561 563.847 640.575 559.608 638.588 555.369" stroke="#171717" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M605.614 547.664C607.966 544.639 610.914 542.128 614.275 540.287" stroke="#171717" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M480.534 560.857L470.619 567.467" stroke="#171717" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M420.49 495.305L411.676 487.593" stroke="#171717" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M368.416 465.504C367.465 460.96 366.514 456.414 365.564 451.868" stroke="#171717" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M644.247 427.713L635.569 417.799" stroke="#171717" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M558.911 328.344C554.2 365.807 553.337 403.655 556.337 441.294" stroke="#171717" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M555.548 545.436L554.231 600.517" stroke="#171717" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M745.5 371.912L755.966 366.954" stroke="#171717" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M774.658 340.519C773.919 336.481 773.18 332.442 772.44 328.403" stroke="#171717" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M709.709 341.483L718.519 342.614" stroke="#171717" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M767.076 258.414C766.168 254.188 765.261 249.963 764.354 245.737" stroke="#171717" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M652.86 372.028L644.627 365.38" stroke="#171717" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M574.212 394.009L586.937 387.509" stroke="#171717" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M526.772 382.926C527.318 377.784 527.862 372.642 528.406 367.5" stroke="#171717" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M585.2 583.993C582.078 580.504 578.956 577.015 575.835 573.527" stroke="#171717" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M668.955 108.405L668.562 120.536C668.55 120.903 668.427 121.256 668.208 121.55C667.989 121.844 667.685 122.063 667.337 122.179C666.99 122.294 666.615 122.301 666.264 122.197C665.912 122.093 665.601 121.884 665.372 121.598L657.784 112.125C657.562 111.849 657.263 111.644 656.925 111.537C656.587 111.43 656.225 111.426 655.884 111.525L644.229 114.899C643.877 115.003 643.502 114.995 643.154 114.878C642.806 114.761 642.502 114.54 642.284 114.245C642.066 113.95 641.944 113.595 641.934 113.228C641.924 112.861 642.027 112.5 642.229 112.193L648.9 102.048C649.095 101.752 649.197 101.405 649.195 101.051C649.192 100.697 649.084 100.351 648.885 100.058L642.07 90.0134C641.864 89.7103 641.756 89.3513 641.761 88.9849C641.765 88.6186 641.882 88.2623 642.095 87.9643C642.308 87.6663 642.608 87.4407 642.953 87.3181C643.298 87.1954 643.673 87.1816 644.026 87.2784L655.733 90.4784C656.075 90.5719 656.437 90.562 656.773 90.4501C657.109 90.3381 657.404 90.1291 657.621 89.8494L665.07 80.2664C665.296 79.979 665.603 79.7674 665.952 79.6597C666.301 79.5521 666.675 79.5536 667.023 79.6641C667.371 79.7746 667.677 79.9888 667.9 80.278C668.123 80.5673 668.252 80.9177 668.27 81.2824L668.841 93.4064C668.858 93.7599 668.979 94.1005 669.189 94.3853C669.4 94.67 669.689 94.8862 670.022 95.0064L681.437 99.1294C681.782 99.2538 682.08 99.4807 682.292 99.7797C682.503 100.079 682.618 100.435 682.621 100.802C682.624 101.168 682.514 101.526 682.307 101.828C682.1 102.131 681.805 102.362 681.462 102.491L670.108 106.78C669.777 106.908 669.492 107.13 669.286 107.419C669.081 107.708 668.966 108.051 668.955 108.405Z" fill="#171717"/>
|
||||||
|
<path d="M829.992 544.755L855.81 538.791" stroke="#171717" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M844.174 554.99C842.619 545.923 841.064 536.857 839.508 527.79" stroke="#171717" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M327.876 231.291C311.566 218.727 289.022 214.178 269.505 220.731C249.988 227.284 234.443 245.256 232.055 265.704C229.667 286.152 241.343 307.825 260.255 315.955C266.342 318.571 275.855 318.036 276.77 311.474C276.92 309.718 276.588 307.955 275.81 306.374C268.966 290.507 243.849 289.053 232.603 302.174C221.357 315.295 223.909 336.624 235.267 349.647C241.976 357.34 251.017 362.57 260.052 367.32C269.087 372.07 278.399 376.553 286.169 383.172C293.939 389.791 300.136 398.988 300.669 409.181C301.202 419.374 294.769 430.227 284.805 432.451C274.841 434.675 263.431 425.351 265.505 415.351" stroke="#171717" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M881.527 272.114C892.226 283.409 900.655 296.655 906.356 311.13C910.315 321.2 912.923 332.304 910.379 342.82C907.835 353.336 898.936 362.885 888.123 363.253C877.31 363.621 867.033 351.886 871.069 341.848C872.076 339.353 873.78 337.201 875.978 335.648C885.058 329.261 898.758 336.61 902.223 347.157C905.688 357.704 901.768 369.257 896.462 379.005C891.156 388.753 884.362 397.911 881.462 408.629C874.837 433.178 890.418 458.329 908.872 475.829" stroke="#171717" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M224.935 380.175L208.409 365.3" stroke="#171717" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M206.33 383.227L218.043 363.482" stroke="#171717" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M905.8 400.006L920.673 393.396" stroke="#171717" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M915.714 408.269L909.104 388.438" stroke="#171717" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M546.637 679.286C557.894 679.286 567.019 672.89 567.019 665.001C567.019 657.111 557.894 650.716 546.637 650.716C535.38 650.716 526.255 657.111 526.255 665.001C526.255 672.89 535.38 679.286 546.637 679.286Z" stroke="#171717" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M547.808 784.638C559.064 784.638 568.19 778.243 568.19 770.353C568.19 762.464 559.064 756.068 547.808 756.068C536.551 756.068 527.426 762.464 527.426 770.353C527.426 778.243 536.551 784.638 547.808 784.638Z" stroke="#171717" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M464.697 727.28C475.954 727.28 485.079 720.884 485.079 712.995C485.079 705.106 475.954 698.71 464.697 698.71C453.441 698.71 444.315 705.106 444.315 712.995C444.315 720.884 453.441 727.28 464.697 727.28Z" stroke="#171717" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M628.578 727.28C639.835 727.28 648.96 720.884 648.96 712.995C648.96 705.106 639.835 698.71 628.578 698.71C617.322 698.71 608.196 705.106 608.196 712.995C608.196 720.884 617.322 727.28 628.578 727.28Z" stroke="#171717" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M601.655 692.163C612.912 692.163 622.037 685.767 622.037 677.878C622.037 669.988 612.912 663.593 601.655 663.593C590.399 663.593 581.273 669.988 581.273 677.878C581.273 685.767 590.399 692.163 601.655 692.163Z" stroke="#171717" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M489.279 767.08C500.536 767.08 509.661 760.684 509.661 752.795C509.661 744.905 500.536 738.51 489.279 738.51C478.023 738.51 468.897 744.905 468.897 752.795C468.897 760.684 478.023 767.08 489.279 767.08Z" stroke="#171717" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M489.279 689.822C500.536 689.822 509.661 683.426 509.661 675.537C509.661 667.648 500.536 661.252 489.279 661.252C478.023 661.252 468.897 667.648 468.897 675.537C468.897 683.426 478.023 689.822 489.279 689.822Z" stroke="#171717" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M602.825 767.08C614.082 767.08 623.207 760.684 623.207 752.795C623.207 744.905 614.082 738.51 602.825 738.51C591.569 738.51 582.443 744.905 582.443 752.795C582.443 760.684 591.569 767.08 602.825 767.08Z" stroke="#171717" stroke-width="3.512" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M269.776 814.534H250.717V828.299H269.776V814.534Z" fill="#171717"/>
|
||||||
|
<g opacity="0.1">
|
||||||
|
<path d="M525.947 307.988C519.694 307.97 518.238 314.87 515.925 319.373L519.584 316.56C516.884 317.697 515.366 319.86 512.81 320.975C510.586 321.942 507.91 322.01 505.524 322.189C498.184 322.646 490.896 323.718 483.736 325.395C476.433 327.234 469.311 329.727 462.456 332.843C455.756 335.856 448.11 339.243 442.576 344.091C434.344 351.307 445.06 365.145 454.276 359.257C458.136 356.791 461.269 353.43 465.147 350.93C476.066 343.959 488.327 339.357 501.137 337.423C508.099 336.305 515.506 336.277 521.565 332.173C523.235 331.076 524.682 329.671 525.828 328.032C527.445 325.651 526.864 324.303 527.241 321.732C527.607 322.92 527.774 322.622 527.741 320.84C527.869 319.703 527.869 318.554 527.741 317.416C528.034 315.569 528.441 313.741 528.96 311.943C529.078 311.48 529.09 310.997 528.995 310.528C528.9 310.06 528.701 309.619 528.411 309.239C528.121 308.859 527.75 308.549 527.323 308.334C526.897 308.118 526.427 308.001 525.95 307.992L525.947 307.988Z" fill="#171717"/>
|
||||||
|
</g>
|
||||||
|
<g opacity="0.1">
|
||||||
|
<path d="M352.286 434.51C342.516 453.496 356.354 478.404 371.13 490.557C389.385 505.571 415.421 509.673 437.623 501.802C443.013 499.89 446.617 494.571 445.023 488.77C443.589 483.55 437.41 479.45 431.992 481.37C423.963 484.256 415.351 485.14 406.903 483.944C398.455 482.747 390.427 479.507 383.516 474.505C377.142 469.843 371.871 463.838 368.074 456.915C363.974 449.623 361.032 441.824 356.982 434.509C356.738 434.104 356.394 433.769 355.982 433.536C355.571 433.304 355.107 433.182 354.634 433.182C354.162 433.182 353.697 433.304 353.286 433.536C352.875 433.769 352.53 434.104 352.287 434.509L352.286 434.51Z" fill="#171717"/>
|
||||||
|
</g>
|
||||||
|
<g opacity="0.1">
|
||||||
|
<path d="M453.035 517.881C447.265 520.745 446.929 528.945 446.576 534.603C446.144 541.522 446.198 548.509 446.186 555.438C446.163 568.999 446.296 582.556 446.428 596.116C446.557 609.321 467.134 609.351 466.959 596.116C466.759 581.231 466.536 566.351 466.169 551.469C466.006 544.869 467.104 510.898 453.035 517.881V517.881Z" fill="#171717"/>
|
||||||
|
</g>
|
||||||
|
<g opacity="0.1">
|
||||||
|
<path d="M545.6 301.059C546.523 282.69 545.8 264.319 545.331 245.945C545.093 236.76 544.81 227.575 544.619 218.388C544.396 214.843 544.578 211.285 545.162 207.782C545.823 204.654 547.362 201.73 548.38 198.706C549.357 195.798 546.014 194.076 543.697 195.106C537.134 198.025 536.066 205.968 535.788 212.461C535.382 221.93 536.211 231.555 536.503 241.023C537.12 261.052 537.376 281.123 539.503 301.058C539.913 304.898 545.396 305.05 545.596 301.058L545.6 301.059Z" fill="#171717"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<defs>
|
||||||
|
<clipPath id="clip0_46_7777">
|
||||||
|
<rect width="960" height="960" fill="white"/>
|
||||||
|
</clipPath>
|
||||||
|
<clipPath id="clip1_46_7777">
|
||||||
|
<rect width="885" height="854" fill="white" transform="translate(38 53)"/>
|
||||||
|
</clipPath>
|
||||||
|
</defs>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 47 KiB |
|
@ -0,0 +1,135 @@
|
||||||
|
<svg width="960" height="960" viewBox="0 0 960 960" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<g clip-path="url(#clip0_1_4775)">
|
||||||
|
<mask id="mask0_1_4775" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="0" y="0" width="960" height="960">
|
||||||
|
<path d="M960 0H0V960H960V0Z" fill="white"/>
|
||||||
|
</mask>
|
||||||
|
<g mask="url(#mask0_1_4775)">
|
||||||
|
<mask id="mask1_1_4775" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="42" y="40" width="877" height="881">
|
||||||
|
<path d="M919 40H42V920.462H919V40Z" fill="white"/>
|
||||||
|
</mask>
|
||||||
|
<g mask="url(#mask1_1_4775)">
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M711.79 910.777C714.288 906.309 711.273 900.426 706.878 897.767C703.325 895.612 699.148 894.937 695.005 894.267C694.039 894.111 693.075 893.955 692.121 893.781C664.23 888.723 640.708 865.03 635.859 837.114C635.255 837.225 634.653 837.334 634.049 837.434C611.455 841.274 588.865 845.114 566.279 848.954C565.332 849.115 564.36 849.262 563.375 849.398L563.437 849.89C564.52 870.79 565.936 895.738 567.696 916.589C572.422 920.027 579.61 917.081 582.601 912.059C585.592 907.037 585.481 900.796 585.026 894.974C584.991 894.524 584.954 894.072 584.917 893.62C584.479 888.218 584.028 882.662 585.912 877.607C590.54 887.454 599.771 894.322 609.249 899.664C637.142 915.274 669.452 921.114 701.045 916.255C705.155 915.602 709.759 914.42 711.79 910.777ZM640.305 863.634C639.966 862.672 638.912 862.168 637.95 862.507C636.989 862.846 636.484 863.9 636.823 864.862C639.899 873.582 645.047 881.425 651.824 887.715C658.601 894.006 666.805 898.556 675.73 900.974C676.714 901.241 677.728 900.659 677.995 899.675C678.261 898.691 677.68 897.677 676.696 897.411C668.348 895.149 660.675 890.893 654.336 885.009C647.997 879.125 643.182 871.79 640.305 863.634Z" fill="#1E1E1E"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M386.577 915.701C388.362 913.092 387.599 909.386 385.667 906.876C383.795 904.454 381.043 902.901 378.367 901.39C378.282 901.341 378.196 901.293 378.11 901.244C367.365 895.197 356.841 888.429 348.521 879.332C340.2 870.236 334.194 858.531 333.936 846.21L333.849 845.804C322.524 848.218 310.068 845.523 298.536 842.716C293.022 841.387 287.015 839.627 282.51 836.427L282.042 837.214C273.288 857.039 264.528 876.859 255.764 896.675C261.479 899.69 267.199 902.711 272.922 905.739C277.997 895.302 283.077 884.864 288.16 874.427C298.106 887.405 312.199 896.701 327.178 903.241C342.157 909.781 358.108 913.745 373.974 917.683C378.38 918.778 384.004 919.443 386.577 915.701ZM328.846 862.086C328.602 861.096 327.601 860.492 326.611 860.736C325.622 860.98 325.017 861.981 325.261 862.971C328.963 877.972 338.377 890.935 351.497 899.096C352.363 899.635 353.502 899.37 354.04 898.504C354.579 897.638 354.313 896.5 353.448 895.961C341.145 888.308 332.317 876.153 328.846 862.086Z" fill="#1E1E1E"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M479.949 205.432C479.948 205.433 479.948 205.434 479.948 205.435L479.945 205.432H479.949ZM477.092 156.977C482.324 172.59 483.309 189.313 479.949 205.432H479.957C491.175 203.412 502.612 202.899 513.965 203.906L514.039 202.983C506.864 196.472 503.59 186.589 501.953 177C501.388 173.661 500.981 170.288 500.573 166.916C499.771 160.284 498.97 153.658 496.98 147.301C489.977 124.887 467.074 108.48 443.586 109.083C420.098 109.687 398.069 127.227 392.211 149.972C389.744 159.536 389.935 169.438 390.127 179.367C390.268 186.676 390.409 193.999 389.491 201.212C388.813 206.517 387.505 211.883 384.517 216.326C381.847 220.314 377.625 223.454 372.911 224.118L372.923 224.229C386.046 230.367 400.997 231.346 414.809 226.974C418.429 225.873 421.819 224.126 424.816 221.816C427.342 219.876 429.222 217.215 430.207 214.185C431.525 209.841 430.54 205.151 429.161 200.831C426.377 192.109 422.027 183.967 416.324 176.805L416.523 176.645C423.809 179.575 432.212 177.495 439.132 173.777C442.818 171.798 446.241 169.391 449.665 166.985C452.668 164.874 455.672 162.763 458.853 160.94C464.416 157.765 470.917 155.463 477.192 156.017L477.092 156.977ZM463.538 118.064C462.596 117.676 461.517 118.126 461.129 119.069C460.74 120.012 461.19 121.09 462.133 121.479C467.907 123.855 473.078 127.489 477.27 132.116C481.462 136.743 484.569 142.247 486.366 148.226C486.659 149.203 487.689 149.757 488.665 149.463C489.642 149.17 490.195 148.14 489.902 147.164C487.947 140.659 484.567 134.671 480.006 129.637C475.445 124.603 469.82 120.65 463.538 118.064Z" fill="white"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M198.653 569.221L197.89 568.716C194.961 560.509 183.468 558.378 175.69 562.316C167.911 566.255 163.049 574.132 158.581 581.616C155.435 586.889 152.292 592.165 149.153 597.444L150.716 598.379C157.339 603.065 163.961 607.746 170.582 612.423C179.818 597.936 189.175 583.535 198.653 569.221ZM183.728 566.062C182.492 565.717 181.2 565.622 179.927 565.781C178.916 565.908 178.198 566.831 178.325 567.842C178.452 568.854 179.375 569.571 180.386 569.445C181.173 569.346 181.972 569.405 182.736 569.618C183.5 569.831 184.214 570.194 184.836 570.685C185.458 571.177 185.977 571.788 186.361 572.481C186.745 573.175 186.987 573.939 187.074 574.727C187.185 575.74 188.096 576.472 189.11 576.361C190.123 576.25 190.855 575.339 190.744 574.325C190.604 573.05 190.212 571.815 189.591 570.693C188.97 569.571 188.131 568.583 187.125 567.788C186.118 566.993 184.963 566.406 183.728 566.062Z" fill="#1E1E1E"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M231.728 517.004C229.71 521.214 227.692 525.423 225.673 529.633C225.691 529.587 225.71 529.54 225.729 529.494C225.834 529.235 225.94 528.974 226.054 528.708L225.968 528.671C216.757 542.112 207.653 555.627 198.655 569.215C189.183 583.542 179.824 597.943 170.58 612.418C202.725 635.13 234.866 657.847 267.004 680.569L267.619 680.975C272.031 674.304 276.527 667.547 281.109 660.704C294.414 640.813 308.52 618.166 303.953 594.669C301.404 581.574 293.134 570.152 283.078 561.363C273.022 552.574 261.194 546.136 249.464 539.762L249.083 538.937C251.307 533.883 253.527 528.832 255.742 523.786C250.557 520.446 245.376 517.102 240.196 513.754C239.158 512.932 237.898 512.439 236.578 512.339C234.218 512.423 232.75 514.863 231.728 517.004ZM281.292 575.956C280.581 575.225 279.412 575.209 278.681 575.92C277.95 576.631 277.934 577.8 278.645 578.531C285.276 585.347 289.139 594.384 289.485 603.888C289.831 613.391 286.634 622.685 280.515 629.965C279.859 630.745 279.96 631.91 280.741 632.566C281.521 633.222 282.686 633.121 283.342 632.34C290.049 624.36 293.554 614.172 293.175 603.753C292.796 593.335 288.561 583.429 281.292 575.956Z" fill="#1E1E1E"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M366.777 812.52C410.865 724.135 445.682 631.422 470.672 535.865L472.347 536.306L472.383 536.385C493.512 582.063 514.739 627.952 528.812 676.271C542.893 724.617 549.687 775.857 541.391 825.534C540.308 831.996 539.179 839.319 543.163 844.513C547.615 850.323 555.886 850.409 563.382 849.4C564.366 849.264 565.338 849.117 566.286 848.957C588.88 845.117 611.47 841.276 634.056 837.436C634.649 837.339 635.241 837.23 635.834 837.122L635.866 837.116C645.749 835.339 656.445 832.447 661.221 823.77C665.726 815.573 663.086 805.454 660.298 796.531C620.5 669.411 570.092 545.86 509.603 427.182L509.456 425.987C506.441 426.278 503.41 426.36 500.384 426.233C469.051 425.39 437.723 424.537 406.398 423.674L406.362 423.673C396.429 423.402 386.446 423.13 376.612 421.728C401.523 553.846 367.528 695.983 285.505 802.524C279.572 810.241 273.025 819.78 276.446 828.888C277.652 831.963 279.769 834.596 282.514 836.433C287.019 839.635 293.025 841.393 298.539 842.723C310.073 845.527 322.529 848.222 333.852 845.81C336.728 845.202 339.516 844.231 342.148 842.922C354.013 836.952 360.845 824.397 366.777 812.52ZM513.933 472.463C513.419 471.583 512.288 471.287 511.408 471.801C510.528 472.316 510.231 473.446 510.746 474.326C566.298 569.369 607.961 671.873 634.47 778.721C634.715 779.711 635.716 780.314 636.706 780.068C637.695 779.823 638.299 778.822 638.053 777.832C611.46 670.642 569.663 567.81 513.933 472.463Z" fill="white"/>
|
||||||
|
<path d="M376.61 421.729C375.576 421.594 374.543 421.43 373.523 421.261C367.824 420.301 361.535 418.442 358.802 413.359C355.577 407.365 358.839 400.09 362.076 394.096C377.397 365.691 394.485 334.241 409.806 305.832C385.743 320.355 368.351 344.197 355.464 369.277C341.962 395.53 332.595 423.717 319.82 450.34C317.23 455.731 314.133 461.43 308.705 463.953C305.533 465.358 301.989 465.687 298.613 464.889C293.554 463.893 288.471 461.123 283.991 458.365C278.058 454.721 271.839 450.66 268.002 445.034C266.914 443.454 266.041 441.736 265.404 439.926C262.45 431.433 265.552 422.128 268.912 413.783C282.895 379.012 301.935 346.075 326.897 318.134C351.859 290.194 382.888 267.338 417.892 253.946L418.262 253.836C417.511 251.503 417.108 249.073 417.067 246.623C417.116 243.583 418.236 240.383 420.685 238.561C422.84 236.973 425.645 236.641 428.305 236.358C428.883 236.296 429.449 236.234 430.028 236.174C430.065 236.284 430.076 236.408 430.101 236.518C430.138 236.395 430.175 236.284 430.212 236.162C442.705 234.857 455.202 233.557 467.703 232.26C468.454 232.187 469.217 232.1 469.994 232.076C471.517 231.938 473.052 232.123 474.499 232.618C479.705 234.624 480.85 241.357 481.172 246.921V247.401C500.065 255.992 517.986 264.546 538.369 268.46C558.752 272.374 580.66 271.476 599.185 262.097C620.499 251.29 635.027 230.636 646.302 209.565C648.517 205.416 650.72 201.122 654.204 197.97C657.291 195.188 661.674 193.465 665.651 194.352C666.182 194.463 666.701 194.624 667.202 194.832C671.484 196.592 673.91 201.257 677.996 203.435C682.009 205.577 687.302 205.158 691.006 207.509C691.544 207.842 692.04 208.239 692.483 208.69C696.567 212.862 694.637 219.804 692.224 225.124C675.817 261.224 647.779 292.721 611.764 309.286C580.895 323.49 544.13 325.767 512.608 313.717L511.967 315.342C508.595 330.223 511.857 345.768 516.116 360.414C520.375 375.061 525.691 389.647 526.492 404.885C526.751 409.833 526.43 415.126 523.551 419.162C520.364 423.618 515.085 425.365 509.457 425.981C506.443 426.271 503.412 426.354 500.386 426.227C469.049 425.377 437.72 424.524 406.4 423.667C396.452 423.403 386.458 423.132 376.61 421.729Z" fill="#1E1E1E"/>
|
||||||
|
<path d="M267.323 474.717C266.161 473.776 265.348 472.474 265.014 471.017C264.679 469.56 264.842 468.033 265.476 466.68C266.191 465.308 267.265 464.157 268.583 463.348C269.901 462.539 271.414 462.104 272.96 462.089C276.074 462.112 279.057 463.344 281.281 465.523C283.32 467.336 284.64 469.822 284.998 472.527C285.173 473.613 285.091 474.725 284.759 475.773C284.427 476.822 283.854 477.778 283.086 478.565C282.318 479.353 281.376 479.949 280.336 480.307C279.296 480.665 278.187 480.774 277.097 480.626C275.986 480.52 274.898 480.241 273.872 479.802C271.383 478.561 269.114 476.923 267.152 474.952L267.323 474.717Z" fill="#1E1E1E"/>
|
||||||
|
<path d="M267.001 680.574L267.616 680.98C264.501 685.707 261.408 690.396 258.335 695.049L258.323 695.037C225.965 671.811 194.181 649.016 162.022 625.937C164.853 621.422 167.705 616.917 170.577 612.423C202.717 635.144 234.858 657.861 267.001 680.574Z" fill="white"/>
|
||||||
|
<path d="M258.331 695.037L258.343 695.049C240.216 722.632 223.179 749.131 206.181 775.915L205.882 775.731C173.751 754.225 142.773 731.045 113.075 706.287C128.977 679.257 145.294 652.474 162.025 625.937C194.189 649.016 225.968 671.81 258.331 695.037Z" fill="#1E1E1E"/>
|
||||||
|
<path d="M205.879 775.731L206.178 775.915C203.162 780.641 200.155 785.379 197.157 790.131C165.497 768.234 134.397 745.55 103.856 722.078C106.911 716.797 109.984 711.534 113.075 706.287C142.772 731.044 173.75 754.224 205.879 775.731Z" fill="white"/>
|
||||||
|
<path d="M150.715 598.379C157.338 603.056 163.96 607.738 170.581 612.423C167.714 616.916 164.863 621.421 162.027 625.937C155.208 621.039 148.365 616.128 141.496 611.205L141.09 610.959C143.785 606.453 146.472 601.949 149.151 597.444L150.715 598.379Z" fill="white"/>
|
||||||
|
<path d="M141.494 611.205C148.362 616.128 155.206 621.039 162.024 625.938C145.287 652.462 128.97 679.245 113.074 706.287C106.895 701.142 100.774 695.923 94.7099 690.631L93.9131 690.151C109.643 663.749 125.369 637.352 141.091 610.959L141.494 611.205Z" fill="#1E1E1E"/>
|
||||||
|
<path d="M197.153 790.131C180.536 816.409 163.773 843.204 145.889 871.785C143.611 868.422 140.629 865.596 137.149 863.503C133.669 861.409 129.775 860.099 125.737 859.662C121.7 859.225 117.615 859.673 113.768 860.973C109.921 862.274 106.403 864.397 103.459 867.194L103.447 867.182C81.6738 854.763 91.8778 862.381 72.5285 846.16C64.6392 839.55 56.8595 831.464 55.497 821.248C54.2022 811.537 58.9929 802.157 63.6821 793.542C71.3619 779.437 79.1572 765.389 87.0681 751.398C92.6065 741.6 98.201 731.827 103.852 722.08C134.38 745.538 165.48 768.221 197.153 790.131Z" fill="#1E1E1E"/>
|
||||||
|
<path d="M145.889 871.785C149.391 876.954 151.063 883.146 150.638 889.375C150.214 895.604 147.719 901.512 143.549 906.159C139.379 910.805 133.774 913.924 127.627 915.017C121.48 916.11 115.144 915.116 109.627 912.192C104.111 909.268 99.7311 904.583 97.1853 898.882C94.6394 893.181 94.0738 886.792 95.5785 880.733C97.0832 874.673 100.572 869.291 105.489 865.444C110.406 861.596 116.469 859.504 122.712 859.5C127.287 859.485 131.796 860.598 135.839 862.74C139.881 864.883 143.333 867.99 145.889 871.785Z" fill="white"/>
|
||||||
|
<path d="M113.074 706.287C109.985 711.542 106.912 716.806 103.855 722.078C97.7995 717.438 91.7684 712.761 85.7619 708.047L83.9033 706.939C87.2386 701.338 90.5742 695.742 93.9101 690.151L94.7069 690.631C100.778 695.923 106.9 701.141 113.074 706.287Z" fill="white"/>
|
||||||
|
<path d="M85.7633 708.047C91.7699 712.761 97.801 717.438 103.857 722.078C98.21 731.814 92.6138 741.587 87.0681 751.396L86.7852 751.236C78.7356 753.39 72.2367 744.983 71.7815 736.676C71.3263 728.368 75.7326 720.64 80.0035 713.487C81.3082 711.309 82.6 709.117 83.9048 706.939L85.7633 708.047Z" fill="#1E1E1E"/>
|
||||||
|
<path d="M453.929 205.508C455.16 205.862 456.452 205.95 457.719 205.767C458.349 205.657 458.929 205.356 459.38 204.905C459.832 204.453 460.133 203.873 460.242 203.244C460.342 201.89 459.257 200.782 458.384 199.736C455.707 196.565 454.365 192.479 454.642 188.339" stroke="white" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M469.944 180.067C469.577 179.251 469.003 178.546 468.277 178.023C467.552 177.5 466.702 177.178 465.812 177.088C464.922 176.998 464.025 177.144 463.209 177.511C462.394 177.879 461.69 178.455 461.168 179.181" stroke="white" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M441.622 184.03C441.084 183.212 440.351 182.541 439.489 182.077C438.626 181.613 437.662 181.371 436.683 181.372C435.704 181.373 434.741 181.618 433.88 182.085C433.019 182.551 432.287 183.224 431.751 184.043" stroke="white" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M452.983 218.334C451.439 219.208 449.66 219.575 447.896 219.38C446.133 219.186 444.476 218.441 443.16 217.251C443.078 217.176 443.017 217.08 442.984 216.973C442.952 216.867 442.948 216.753 442.975 216.645C443.001 216.537 443.056 216.437 443.134 216.358C443.212 216.278 443.31 216.221 443.418 216.192" stroke="white" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M469.92 232.218C469.945 232.169 469.969 232.131 469.994 232.082C474.686 223.775 478.047 214.783 479.954 205.434C483.315 189.314 482.329 172.59 477.098 156.976" stroke="white" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M481.352 156.805C479.998 156.391 478.603 156.127 477.192 156.017C470.917 155.463 464.416 157.765 458.852 160.94C452.046 164.842 446.052 170.061 439.132 173.778C432.211 177.495 423.808 179.575 416.522 176.645" stroke="white" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M413.337 173.265C414.371 174.409 415.38 175.591 416.325 176.809C422.028 183.972 426.379 192.113 429.163 200.835C430.541 205.155 431.526 209.845 430.209 214.189C429.224 217.219 427.344 219.88 424.817 221.82C421.821 224.13 418.43 225.877 414.811 226.978C400.999 231.351 386.048 230.371 372.925 224.233" stroke="white" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M371.277 224.254C371.826 224.246 372.373 224.201 372.915 224.118C377.629 223.454 381.851 220.315 384.521 216.327C387.509 211.884 388.817 206.517 389.494 201.212C391.66 184.202 387.931 166.577 392.214 149.972C398.073 127.227 420.102 109.687 443.59 109.084C467.077 108.48 489.98 124.887 496.983 147.301C499.986 156.89 500.282 167.093 501.956 177.001C503.594 186.589 506.867 196.473 514.043 202.983C514.264 203.193 514.498 203.402 514.74 203.599" stroke="white" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M514.646 203.97C514.424 203.945 514.19 203.933 513.968 203.908C502.615 202.901 491.178 203.414 479.96 205.434C480.514 205.235 481.08 205.041 481.634 204.844" stroke="white" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M425.166 222.223C427.473 226.607 429.111 231.312 430.027 236.181C430.064 236.291 430.076 236.415 430.101 236.525C430.138 236.402 430.175 236.291 430.212 236.169C430.311 235.87 430.396 235.578 430.495 235.282" stroke="white" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M418.778 255.591C418.605 255.012 418.433 254.433 418.261 253.843C417.51 251.51 417.107 249.08 417.065 246.63C417.114 243.59 418.235 240.39 420.684 238.568C422.838 236.981 425.644 236.648 428.303 236.365C428.882 236.303 429.448 236.242 430.026 236.181C430.088 236.181 430.15 236.169 430.211 236.169C442.704 234.864 455.201 233.564 467.702 232.268C468.453 232.194 469.216 232.107 469.993 232.083C471.516 231.946 473.051 232.13 474.498 232.625C479.704 234.631 480.849 241.364 481.171 246.928" stroke="white" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M481.168 247.406C500.061 255.997 517.982 264.551 538.365 268.465C558.748 272.38 580.656 271.481 599.181 262.102C620.495 251.295 635.023 230.641 646.297 209.57C648.512 205.422 650.716 201.127 654.2 197.976C657.287 195.194 661.67 193.471 665.647 194.357C666.177 194.468 666.697 194.629 667.197 194.837C671.48 196.597 673.905 201.262 677.992 203.441C682.005 205.582 687.298 205.164 691.002 207.514C691.539 207.848 692.035 208.244 692.479 208.695C696.562 212.868 694.633 219.81 692.22 225.129C675.813 261.229 647.774 292.727 611.76 309.291C580.891 323.495 544.126 325.772 512.604 313.722C507.319 311.704 502.199 309.276 497.292 306.461" stroke="white" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M409.804 305.822C410.924 305.145 412.056 304.492 413.201 303.853" stroke="white" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M417.889 253.954C382.884 267.346 351.855 290.203 326.894 318.143C301.933 346.082 282.892 379.02 268.909 413.791C265.549 422.137 262.447 431.441 265.401 439.934C266.037 441.744 266.911 443.462 267.999 445.043C271.839 450.668 278.058 454.73 283.988 458.373C288.47 461.13 293.549 463.9 298.61 464.897C301.986 465.694 305.53 465.366 308.702 463.962C314.13 461.439 317.232 455.74 319.817 450.348C332.592 423.725 341.96 395.54 355.461 369.285C368.349 344.201 385.74 320.36 409.803 305.84" stroke="white" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M409.805 305.822V305.834C394.484 334.242 377.397 365.691 362.073 394.097C358.836 400.091 355.574 407.366 358.799 413.36C361.531 418.439 367.82 420.302 373.52 421.262C374.541 421.434 375.575 421.595 376.607 421.73C386.454 423.134 396.448 423.405 406.393 423.675C437.719 424.539 469.048 425.392 500.38 426.235C503.406 426.362 506.437 426.28 509.451 425.989C515.077 425.374 520.356 423.626 523.545 419.171C526.425 415.134 526.745 409.841 526.486 404.893C525.689 389.654 520.368 375.082 516.11 360.423C511.851 345.764 508.589 330.23 511.961 315.35" stroke="white" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M429.941 253.499C429.642 251.185 429.362 248.871 429.067 246.545" stroke="white" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M441.474 252.182C441.289 248.994 441.104 245.818 440.92 242.63" stroke="white" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M455.14 250.455C454.993 247.267 454.857 244.08 454.709 240.903" stroke="white" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M468.171 248.292V239.16" stroke="white" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M376.498 421.151C376.535 421.35 376.572 421.532 376.609 421.729C401.521 553.847 367.525 695.984 285.502 802.525C279.57 810.242 273.021 819.782 276.438 828.889C277.644 831.964 279.761 834.596 282.506 836.434C287.011 839.634 293.018 841.394 298.531 842.723C310.064 845.53 322.52 848.225 333.845 845.811C336.721 845.203 339.508 844.232 342.14 842.923C354.005 836.953 360.837 824.397 366.769 812.521C410.86 724.136 445.679 631.422 470.669 535.864C477.081 511.333 482.837 486.646 487.937 461.804" stroke="white" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M472.342 536.306C493.488 582.007 514.708 627.917 528.8 676.264C542.892 724.612 549.675 775.851 541.379 825.528C540.296 831.99 539.164 839.313 543.151 844.507C547.607 850.317 555.878 850.403 563.37 849.394C564.355 849.258 565.327 849.111 566.274 848.951C588.86 845.11 611.45 841.27 634.044 837.43C634.648 837.33 635.25 837.221 635.854 837.11C645.737 835.338 656.433 832.445 661.209 823.764C665.714 815.567 663.079 805.449 660.286 796.525C620.488 669.405 570.08 545.854 509.591 427.176" stroke="white" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M267.152 474.952C269.114 476.923 271.383 478.561 273.872 479.802C274.898 480.241 275.986 480.52 277.097 480.627C278.086 480.766 279.094 480.69 280.052 480.405C281.01 480.12 281.895 479.632 282.647 478.974C283.399 478.316 284.001 477.504 284.411 476.593C284.822 475.682 285.031 474.694 285.025 473.694C285.048 473.305 285.039 472.914 285 472.525C284.642 469.82 283.323 467.334 281.283 465.521C279.059 463.341 276.076 462.11 272.962 462.087C271.416 462.103 269.903 462.538 268.585 463.346C267.267 464.155 266.193 465.306 265.479 466.678C264.844 468.031 264.681 469.558 265.016 471.015C265.35 472.472 266.163 473.775 267.325 474.715C267.4 474.777 267.478 474.834 267.559 474.888" stroke="white" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M276.986 481.819C278.638 483.434 280.081 485.249 281.282 487.222C281.43 487.493 281.565 487.764 281.701 488.035C282.308 489.193 282.635 490.478 282.657 491.786C282.678 493.094 282.393 494.389 281.824 495.567C279.719 499.321 274.454 499.838 270.255 498.891C264.584 497.612 259.466 494.565 255.639 490.189C251.812 485.813 249.474 480.335 248.962 474.545C248.45 468.754 249.79 462.951 252.79 457.971C255.789 452.992 260.293 449.094 265.651 446.839" stroke="white" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M288.311 475.649C289.726 476.403 291.345 476.683 292.931 476.449C294.517 476.215 295.986 475.478 297.123 474.348C298.26 473.218 299.005 471.754 299.249 470.169C299.493 468.585 299.222 466.964 298.478 465.544" stroke="white" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M288.296 475.639C287.586 474.879 286.764 474.231 285.858 473.719C286.51 474.54 287.345 475.198 288.296 475.639Z" stroke="white" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M288.297 475.639C288.297 475.639 288.297 475.664 288.309 475.651" stroke="white" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M281.466 487.123C284.519 489.549 289.639 487.247 290.648 483.468C290.949 482.074 290.892 480.626 290.484 479.259C290.075 477.892 289.328 476.65 288.311 475.65" stroke="white" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M249.083 538.942C251.298 533.896 253.518 528.845 255.742 523.791C250.563 520.444 245.381 517.1 240.196 513.759C239.159 512.937 237.898 512.444 236.578 512.344C234.215 512.431 232.75 514.867 231.729 517.009C229.709 521.218 227.691 525.428 225.673 529.637C225.796 529.33 225.919 529.022 226.054 528.714C226.19 528.345 226.353 527.976 226.498 527.619" stroke="white" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M244.036 514.693C247.252 507.125 251.115 499.848 255.582 492.944" stroke="white" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M225.965 528.676C216.758 542.117 207.654 555.632 198.653 569.22C189.175 583.535 179.818 597.936 170.582 612.423C167.715 616.916 164.863 621.421 162.027 625.938C145.287 652.462 128.969 679.245 113.073 706.287C109.984 711.542 106.911 716.806 103.854 722.078C98.2075 731.814 92.6113 741.587 87.0656 751.396C79.1514 765.392 71.3561 779.439 63.6796 793.54C58.9904 802.155 54.2017 811.535 55.4945 821.246C56.861 831.462 64.6397 839.548 72.526 846.158C91.8743 862.38 81.6713 854.761 103.445 867.18" stroke="white" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M145.89 871.785C163.774 843.204 180.537 816.407 197.154 790.131C200.156 785.38 203.163 780.641 206.175 775.915C223.173 749.132 240.208 722.629 258.338 695.049C261.402 690.396 264.496 685.707 267.618 680.98C272.05 674.309 276.547 667.552 281.108 660.709C294.414 640.819 308.519 618.171 303.952 594.674C301.405 581.578 293.133 570.144 283.077 561.368C273.022 552.592 261.193 546.142 249.463 539.767" stroke="white" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M197.893 568.715C194.964 560.505 183.468 558.389 175.688 562.315C167.908 566.241 163.048 574.131 158.58 581.615C155.442 586.895 152.299 592.171 149.152 597.443C146.468 601.947 143.781 606.452 141.09 610.958C125.372 637.347 109.646 663.744 93.9116 690.149C90.5763 695.737 87.2407 701.333 83.9048 706.938C82.6 709.116 81.3082 711.307 80.0035 713.486C75.7326 720.637 71.3263 728.354 71.7815 736.674C72.2367 744.995 78.7356 753.389 86.7852 751.235" stroke="white" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M258.332 695.037C225.973 671.811 194.189 649.016 162.03 625.937C155.212 621.039 148.368 616.128 141.5 611.205" stroke="white" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M267.003 680.574C234.865 657.852 202.724 635.135 170.579 612.423C163.958 607.746 157.336 603.065 150.713 598.379" stroke="white" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M205.88 775.731C173.75 754.225 142.772 731.045 113.075 706.287C106.896 701.141 100.775 695.923 94.7109 690.631" stroke="white" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M197.227 790.186C197.202 790.174 197.178 790.149 197.153 790.137C165.496 768.237 134.397 745.551 103.856 722.079C97.8003 717.439 91.7692 712.761 85.7627 708.048" stroke="white" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M333.937 846.22C334.195 858.541 340.201 870.246 348.522 879.342C356.842 888.439 367.366 895.208 378.111 901.254C380.868 902.805 383.736 904.381 385.669 906.88C387.601 909.379 388.364 913.096 386.579 915.705C384.006 919.447 378.382 918.782 373.976 917.687C358.11 913.749 342.158 909.785 327.18 903.245C312.201 896.706 298.107 887.409 288.162 874.431C283.079 884.868 277.999 895.306 272.924 905.743C267.201 902.715 261.481 899.696 255.766 896.685C264.53 876.868 273.29 857.048 282.044 837.224" stroke="white" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M563.438 849.887C564.521 870.788 565.937 895.736 567.697 916.586C572.423 920.021 579.611 917.091 582.602 912.057C585.593 907.022 585.483 900.802 585.028 894.972C584.573 889.143 583.87 883.082 585.914 877.605C590.543 887.452 599.773 894.32 609.25 899.661C637.143 915.272 669.454 921.112 701.046 916.253C705.158 915.6 709.76 914.419 711.791 910.775C714.29 906.307 711.274 900.423 706.88 897.765C702.486 895.107 697.169 894.7 692.122 893.781C664.234 888.722 640.71 865.029 635.86 837.114C635.851 837.099 635.847 837.082 635.848 837.065" stroke="white" stroke-width="3.39635" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M665.709 194.086C662.693 190.123 659.686 186.164 656.687 182.209C655.492 180.633 654.373 178.184 655.911 176.953C657.056 176.057 658.718 176.682 659.985 177.384C663.496 179.354 666.764 181.729 669.721 184.462" stroke="white" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M669.756 184.449C668.493 173.637 669.822 162.68 673.633 152.484C674.199 150.99 675.11 149.284 676.698 149.16C677.269 149.168 677.827 149.341 678.303 149.657C678.779 149.974 679.153 150.421 679.381 150.945C679.81 152.001 680.028 153.13 680.021 154.269C680.538 163.747 680.6 173.249 680.206 182.714C680.181 183.44 680.144 184.166 680.106 184.892" stroke="white" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M679.825 185.249C679.936 184.399 680.059 183.555 680.207 182.713C681.708 172.82 684.093 163.082 687.333 153.616C688.071 151.461 689.364 148.934 691.641 148.902C692.364 148.946 693.059 149.195 693.645 149.62C694.232 150.045 694.685 150.629 694.951 151.302C695.474 152.658 695.701 154.11 695.616 155.561C695.686 165.085 694.266 174.562 691.407 183.648C691.161 184.445 690.89 185.249 690.619 186.038" stroke="white" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M689.686 186.578C690.264 185.606 690.83 184.621 691.409 183.649C695.127 177.297 698.848 170.95 702.572 164.607C703.469 162.835 704.688 161.245 706.166 159.918C706.914 159.264 707.825 158.825 708.802 158.647C709.78 158.469 710.787 158.56 711.717 158.909C713.649 159.806 714.573 162.158 714.437 164.288C714.162 166.411 713.463 168.458 712.381 170.306C706.092 182.812 699.466 195.149 692.503 207.318" stroke="white" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M145.889 871.785C149.391 876.954 151.063 883.146 150.638 889.375C150.214 895.604 147.719 901.512 143.549 906.159C139.379 910.805 133.774 913.924 127.627 915.017C121.48 916.11 115.144 915.116 109.627 912.192C104.111 909.268 99.7311 904.583 97.1853 898.882C94.6394 893.181 94.0738 886.792 95.5785 880.733C97.0832 874.673 100.572 869.291 105.489 865.444C110.406 861.596 116.469 859.504 122.712 859.5C127.287 859.485 131.796 860.598 135.839 862.74C139.881 864.883 143.333 867.99 145.889 871.785Z" stroke="white" stroke-width="3.39635" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M455.112 171.34C459.892 169.216 465.172 168.478 470.351 169.211" stroke="white" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M723.414 192.209C730.615 183.842 734.574 173.168 734.569 162.129" stroke="white" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M738.593 187.639L742.124 177.232" stroke="white" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M369.997 381.834C378.245 391.836 388.797 401.841 401.759 402.019C410.516 402.14 418.664 397.654 425.772 392.538C432.879 387.423 439.537 381.483 447.549 377.952C453.667 375.319 460.319 374.167 466.966 374.589C473.613 375.011 480.066 376.996 485.801 380.382C492.103 384.18 497.317 389.596 503.664 393.32C510.01 397.044 518.361 398.833 524.58 394.893" stroke="white" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M378.634 365.184C379.829 374.352 389.116 380.897 398.34 381.524C407.564 382.15 416.494 378.095 424.222 373.019C431.95 367.942 438.951 361.757 447.04 357.282C455.128 352.807 464.811 350.119 473.659 352.8C482.117 355.363 488.377 362.277 495.093 368.022C501.809 373.767 510.597 378.779 519.105 376.388" stroke="white" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M385.682 348.679C390.48 358.34 403.731 360.81 414.018 357.57C424.304 354.33 432.672 346.973 441.684 341.049C450.695 335.126 461.709 330.417 472.071 333.406C479.533 335.558 485.296 341.309 491.548 345.917C497.8 350.524 505.907 354.21 513.167 351.45" stroke="white" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M644.687 213.677C656.35 224.265 669.817 232.678 684.448 238.517" stroke="white" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M637.598 225.382C648.431 237.736 662.871 246.376 678.879 250.083" stroke="white" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M277.51 394.91C293.52 407.479 311.275 417.65 330.217 425.102C330.326 424.985 330.41 424.847 330.463 424.697C330.517 424.546 330.538 424.386 330.526 424.227C330.514 424.068 330.469 423.913 330.394 423.772C330.319 423.631 330.215 423.507 330.089 423.408" stroke="white" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M286.688 377.075C302.614 388.658 319.98 398.12 338.348 405.223" stroke="white" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M538.813 130.666L527.666 113.195" stroke="white" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M522.482 128.843L541.601 114.078" stroke="white" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M340.878 246.123L325.805 231.669" stroke="white" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M326.039 246.925L336.584 233.114" stroke="white" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M286.943 100.585C270.222 99.283 256.611 99.283 242.667 98.0499L239.233 88.8569" stroke="white" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M253.15 110.59L272.017 89.5161" stroke="white" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M901.31 87.6188C858.457 85.6061 815.514 86.736 772.826 90.9992C768.118 91.4693 763.204 92.052 759.281 94.6923C755.357 97.3327 752.843 102.715 754.974 106.943C757.299 111.554 763.409 112.421 768.57 112.555C779.516 112.837 790.469 112.438 801.365 111.359L853.349 138.241L892.445 135.635L832.632 105.329C858.584 99.5956 885.15 97.1244 911.714 97.9722" stroke="white" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M900.604 88.3131C900.007 84.1299 899.439 79.7007 901.093 75.8123C902.747 71.924 907.507 69.0306 911.287 70.92C914.312 72.4319 915.421 76.158 915.857 79.5115C916.637 85.5144 915.021 92.8977 913.498 98.7561" stroke="white" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M801.652 87.9883L838.722 59.0277L859.574 58.448L836.984 86.8299" stroke="white" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M109.464 342.395C130.732 326.674 163.466 333.31 180.821 353.268C198.176 373.226 201.366 402.846 193.769 428.18C187.226 450.003 172.335 470.247 151.147 478.621C129.96 486.994 102.615 480.738 90.6047 461.381C84.3787 451.348 82.9952 437.489 90.1166 428.07C98.3983 417.114 115.441 416.031 127.527 422.551C145.713 432.36 153.644 457.526 144.368 475.99C136.536 491.579 119.715 500.3 103.51 506.76C87.3049 513.22 69.9566 518.876 57.8622 531.451C39.3626 550.686 39.3576 584.674 57.8523 603.914" stroke="#1E1E1E" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M675.368 637.348C689.95 639.578 705.135 633.981 716.086 624.096C727.037 614.211 733.982 600.412 737.306 586.04C741.19 569.223 739.917 550.201 729.253 536.627C721.422 526.661 709.632 520.824 699.318 513.452C683.891 502.389 671.507 487.61 663.315 470.485C656.593 456.386 653.355 438.283 663.137 426.104C674.607 411.818 700.546 415.573 709.344 431.642C718.142 447.712 709.556 469.959 693.144 478.099C676.732 486.238 655.548 481.051 642.76 467.933C629.971 454.814 625.146 435.212 627.576 417.054C630.005 398.896 639.03 382.117 650.633 367.939C674.388 339.169 708.152 320.457 745.139 315.564" stroke="white" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M625.862 352.111L622.387 335.603" stroke="#1E1E1E" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M612.869 347.008L631.195 340.272" stroke="#1E1E1E" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M150.634 388.599L146.294 376.434" stroke="white" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M139.41 387.044L154.922 378.976" stroke="white" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M213.229 452.87L208.879 442.447" stroke="#1E1E1E" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M203.659 452.119L217.545 445.138" stroke="#1E1E1E" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M728.384 480.697L737.945 473.746" stroke="white" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M734.466 483.304C733.702 479.162 731.909 475.278 729.253 472.009" stroke="white" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M520.717 80.2076C518.269 79.1065 515.546 78.7698 512.904 79.2415" stroke="white" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M515.529 84.9484C515.965 81.473 516.4 77.9977 516.834 74.5223" stroke="white" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M583.287 88.4056L641.024 88.0072C644.75 87.9813 648.593 87.9335 652.02 86.4793C654.124 85.587 655.982 84.1992 657.435 82.4341C658.888 80.669 659.893 78.5789 660.364 76.3418C660.835 74.1047 660.759 71.7868 660.141 69.5857C659.523 67.3845 658.383 65.3653 656.816 63.6999C655.25 62.0345 653.305 60.7723 651.146 60.0208C648.986 59.2694 646.678 59.0508 644.416 59.3839C642.154 59.7169 640.006 60.5917 638.155 61.9337C636.305 63.2757 634.805 65.0451 633.786 67.0912C635.323 64.935 636.297 62.4291 636.62 59.8009C636.943 57.1728 636.604 54.5056 635.635 52.0414C634.666 49.5771 633.097 47.3939 631.07 45.6898C629.044 43.9857 626.624 42.8147 624.03 42.283C621.436 41.7513 618.75 41.8758 616.216 42.6452C613.682 43.4146 611.381 44.8045 609.521 46.6887C607.66 48.573 606.3 50.892 605.563 53.4353C604.826 55.9786 604.736 58.6657 605.3 61.2527C603.508 58.44 601.019 56.1383 598.075 54.571C595.132 53.0037 591.833 52.2239 588.498 52.3074C585.164 52.3909 581.909 53.3347 579.047 55.0475C576.185 56.7602 573.815 59.1835 572.165 62.0824C570.196 65.5435 569.358 69.8761 570.914 73.5363C572.471 77.1966 576.874 79.7205 580.61 78.343" stroke="white" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M213.744 247.498C223.554 247.412 234.021 247.128 242.103 241.567C247.88 237.59 251.707 231.359 254.66 224.996C257.881 218.054 259.938 208.967 254.649 203.437C250.291 198.884 242.608 199.142 237.154 202.302C231.7 205.462 227.955 210.829 224.388 216.026C227.277 206.402 229.157 195.98 226.158 186.391C223.159 176.801 213.959 168.543 203.97 169.625C195.682 170.522 189.068 177.501 186.103 185.293C183.138 193.086 183.123 201.644 183.147 209.981C180.473 202.253 174.244 195.611 166.376 193.377C158.509 191.143 149.223 193.865 144.523 200.558C139.823 207.251 140.77 217.57 147.164 222.669C144.789 217.689 138.344 215.775 132.935 216.875C127.525 217.976 122.914 221.377 118.493 224.688C110.787 230.465 104.449 240.982 116.109 246.744C123.253 250.273 133.533 249.334 141.293 248.788C165.352 247.09 189.633 247.711 213.744 247.498Z" stroke="white" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M749.677 405.868L803.849 404.949C812.785 404.798 822.615 404.301 829.127 398.177C836.485 391.26 836.258 377.935 828.668 371.274C821.079 364.613 807.837 366.114 801.933 374.306C802.287 366.568 798.23 358.638 791.444 354.905C784.657 351.172 775.418 352.174 769.974 357.683C764.53 363.193 763.792 372.89 768.757 378.836C766.872 376.519 764.544 374.6 761.909 373.192C759.274 371.784 756.385 370.915 753.41 370.636C747.463 370.248 741.24 372.994 738.083 378.049C734.926 383.103 735.388 390.342 739.632 394.525C735.893 392.584 731.06 392.45 727.62 394.883C724.18 397.316 722.769 402.525 725.122 406.02C727.476 409.515 733.559 409.805 735.752 406.212" stroke="#1E1E1E" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M586.327 151.784L599.345 153.63C599.455 153.646 599.557 153.695 599.639 153.77C599.72 153.846 599.776 153.945 599.8 154.053C599.823 154.162 599.813 154.275 599.77 154.378C599.727 154.48 599.654 154.567 599.56 154.626L588.469 161.687C588.378 161.745 588.307 161.828 588.263 161.926C588.22 162.024 588.207 162.133 588.225 162.239L590.491 175.187C590.51 175.296 590.496 175.409 590.449 175.51C590.402 175.61 590.325 175.694 590.229 175.75C590.133 175.806 590.022 175.831 589.912 175.822C589.801 175.813 589.696 175.77 589.61 175.7L579.468 167.333C579.385 167.266 579.284 167.224 579.178 167.213C579.072 167.202 578.965 167.223 578.87 167.273L567.253 173.43C567.155 173.482 567.043 173.502 566.933 173.489C566.823 173.475 566.72 173.428 566.637 173.354C566.554 173.28 566.496 173.183 566.47 173.075C566.445 172.967 566.452 172.854 566.493 172.751L571.316 160.519C571.356 160.419 571.365 160.31 571.342 160.205C571.319 160.1 571.266 160.004 571.189 159.929L561.743 150.783C561.663 150.706 561.609 150.606 561.587 150.497C561.566 150.388 561.578 150.275 561.623 150.173C561.668 150.072 561.743 149.986 561.838 149.929C561.933 149.871 562.043 149.844 562.154 149.851L575.278 150.658C575.385 150.665 575.491 150.64 575.584 150.586C575.677 150.532 575.751 150.451 575.798 150.355L581.575 138.544C581.624 138.444 581.701 138.361 581.798 138.307C581.895 138.253 582.006 138.229 582.117 138.24C582.227 138.251 582.332 138.296 582.416 138.368C582.501 138.44 582.561 138.536 582.589 138.644L585.876 151.375C585.902 151.48 585.959 151.575 586.039 151.648C586.12 151.721 586.22 151.768 586.327 151.784Z" fill="#1E1E1E"/>
|
||||||
|
<g opacity="0.1">
|
||||||
|
<path d="M422.858 179.241C422.648 184.065 422.636 187.675 423.817 192.426C424.871 196.774 425.686 201.177 426.259 205.615C427.368 214.743 427.397 223.97 426.345 233.104C425.738 239.024 435.748 240.423 436.803 234.52C438.606 224.474 438.851 214.211 437.53 204.091C436.886 199.154 435.838 194.278 434.394 189.512C432.839 184.339 430.53 181.333 426.686 177.66C426.368 177.36 425.97 177.158 425.539 177.078C425.109 176.999 424.665 177.046 424.26 177.214C423.856 177.381 423.509 177.662 423.26 178.022C423.012 178.383 422.873 178.807 422.861 179.245L422.858 179.241Z" fill="white"/>
|
||||||
|
</g>
|
||||||
|
<g opacity="0.1">
|
||||||
|
<path d="M419.039 240.709C417.759 244.183 418.853 248.423 419.2 252.025C419.555 255.71 419.18 259.687 422.004 262.41C422.438 262.83 422.961 263.147 423.534 263.337C424.107 263.527 424.715 263.585 425.314 263.508C425.913 263.431 426.486 263.22 426.992 262.891C427.498 262.562 427.924 262.123 428.237 261.607C430.307 258.288 428.934 254.43 428.379 250.782C427.839 247.196 427.869 242.884 425.781 239.826C425.4 239.221 424.853 238.738 424.205 238.433C423.558 238.129 422.837 238.017 422.128 238.109C421.419 238.202 420.751 238.496 420.203 238.957C419.656 239.417 419.252 240.025 419.039 240.707V240.709Z" fill="white"/>
|
||||||
|
</g>
|
||||||
|
<g opacity="0.1">
|
||||||
|
<path d="M412.639 295.395C405.501 296.139 398.007 300.459 392.121 304.477C385.521 309.025 379.332 314.141 373.624 319.767C361.594 331.542 352.25 346.189 343.96 360.737C334.932 376.581 327.426 393.197 319.727 409.707C315.617 418.52 311.503 427.328 307.531 436.201L301.965 448.639C299.839 453.389 296.961 458.316 295.872 463.411C293.705 473.548 306.237 478.351 312.085 470.246C314.695 466.628 316.156 462.066 317.955 457.985L323.458 445.511C327.132 437.183 330.679 428.805 334.223 420.42C341.116 404.113 347.763 387.643 355.463 371.693C362.44 357.108 371.077 343.377 381.202 330.773C385.901 324.881 391.126 319.428 396.812 314.482C399.617 312.068 402.46 309.653 405.355 307.35C408.453 304.886 411.877 303.132 414.65 300.254C416.216 298.63 415.216 295.124 412.637 295.393L412.639 295.395Z" fill="white"/>
|
||||||
|
</g>
|
||||||
|
<g opacity="0.1">
|
||||||
|
<path d="M415.8 301.848C403.449 317.541 394.311 335.639 385.532 353.54C376.525 371.909 368.135 390.539 359.944 409.287C354.62 421.473 371.807 428.876 376.84 416.411C384.369 397.759 392.173 379.219 399.807 360.613C407.357 342.215 415.519 323.691 420.014 304.299C420.53 302.073 417.47 299.724 415.8 301.846V301.848Z" fill="white"/>
|
||||||
|
</g>
|
||||||
|
<g opacity="0.1">
|
||||||
|
<path d="M492.138 302.944C503.245 316.352 523.804 320.053 540.259 322.191C557.952 324.35 575.893 323.19 593.161 318.771C625.192 310.739 653.064 291.281 673.019 265.186C683.975 250.789 692.143 234.47 697.101 217.071C700.635 204.745 681.444 199.48 677.923 211.784C670.297 238.276 654.336 261.605 632.406 278.31C608.103 296.682 578.014 305.133 547.695 303.144C539.173 302.599 530.719 301.274 522.44 299.185C513.536 296.932 505.164 294.114 495.93 293.78C490.895 293.598 489.356 299.598 492.133 302.944H492.138Z" fill="white"/>
|
||||||
|
</g>
|
||||||
|
<g opacity="0.1">
|
||||||
|
<path d="M111.926 239.498C119.301 247.541 135.423 247.611 145.508 247.62C159.199 247.632 172.919 246.634 186.594 246.02C199.815 245.423 213.349 245.599 226.452 243.609C237.812 241.884 249.61 236.737 254.749 225.836C258.303 218.299 248.592 212.789 243.703 219.379C237.555 227.665 227.17 229.937 217.466 230.609C205.558 231.435 193.598 231.755 181.674 232.302C170.194 232.828 158.717 233.435 147.238 233.963C141.792 234.286 136.33 234.234 130.892 233.809C125.669 233.328 120.679 231.044 115.469 230.946C110.958 230.859 109.082 236.398 111.926 239.498Z" fill="white"/>
|
||||||
|
</g>
|
||||||
|
<g opacity="0.1">
|
||||||
|
<path d="M581.958 86.29C596.231 88.5878 611.405 87.4922 625.847 87.4992C631.849 87.4992 637.868 87.6107 643.822 86.7223C649.078 85.9374 656.178 84.4962 659.073 79.5989C660.343 77.4515 658.763 73.7534 655.929 74.1209C650.534 74.8181 645.907 77.9435 640.273 78.5402C634.203 79.1826 628.022 78.9545 621.932 78.9834C608.747 79.0471 594.981 78.1965 581.958 80.3489C579.023 80.8339 579.01 85.8149 581.958 86.29Z" fill="white"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<defs>
|
||||||
|
<clipPath id="clip0_1_4775">
|
||||||
|
<rect width="960" height="960" fill="white"/>
|
||||||
|
</clipPath>
|
||||||
|
</defs>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 45 KiB |
|
@ -0,0 +1,130 @@
|
||||||
|
<svg width="960" height="960" viewBox="0 0 960 960" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<g clip-path="url(#clip0_46_7759)">
|
||||||
|
<g clip-path="url(#clip1_46_7759)">
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M711.79 910.777C714.288 906.309 711.273 900.426 706.878 897.767C703.325 895.612 699.148 894.937 695.005 894.267C694.039 894.111 693.075 893.955 692.121 893.781C664.23 888.723 640.708 865.03 635.859 837.114C635.255 837.225 634.653 837.334 634.049 837.434C611.455 841.274 588.865 845.114 566.279 848.954C565.332 849.115 564.36 849.262 563.375 849.398L563.437 849.89C564.52 870.79 565.936 895.738 567.696 916.589C572.422 920.027 579.61 917.081 582.601 912.059C585.592 907.037 585.481 900.796 585.026 894.974C584.991 894.524 584.954 894.072 584.917 893.62C584.479 888.218 584.028 882.662 585.912 877.607C590.54 887.454 599.771 894.322 609.249 899.664C637.142 915.274 669.452 921.114 701.045 916.255C705.155 915.602 709.759 914.42 711.79 910.777ZM640.305 863.634C639.966 862.672 638.912 862.168 637.95 862.507C636.989 862.846 636.484 863.9 636.823 864.862C639.899 873.582 645.047 881.425 651.824 887.715C658.601 894.006 666.805 898.556 675.73 900.974C676.714 901.241 677.728 900.659 677.995 899.675C678.261 898.691 677.68 897.677 676.696 897.411C668.348 895.149 660.675 890.893 654.336 885.009C647.997 879.125 643.182 871.79 640.305 863.634Z" fill="white"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M386.577 915.701C388.362 913.092 387.599 909.386 385.667 906.876C383.795 904.454 381.043 902.901 378.367 901.39C378.282 901.341 378.196 901.293 378.11 901.244C367.365 895.197 356.841 888.429 348.521 879.332C340.2 870.236 334.194 858.531 333.936 846.21L333.849 845.804C322.524 848.218 310.068 845.523 298.536 842.716C293.022 841.387 287.015 839.627 282.51 836.427L282.042 837.214C273.288 857.039 264.528 876.859 255.764 896.675C261.479 899.69 267.199 902.711 272.922 905.739C277.997 895.302 283.077 884.864 288.16 874.427C298.106 887.405 312.199 896.701 327.178 903.241C342.157 909.781 358.108 913.745 373.974 917.683C378.38 918.778 384.004 919.443 386.577 915.701ZM328.846 862.086C328.602 861.096 327.601 860.492 326.611 860.736C325.622 860.98 325.017 861.981 325.261 862.971C328.963 877.972 338.377 890.935 351.497 899.096C352.363 899.635 353.502 899.37 354.04 898.504C354.579 897.638 354.313 896.5 353.448 895.961C341.145 888.308 332.317 876.153 328.846 862.086Z" fill="white"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M479.949 205.432C479.948 205.433 479.948 205.434 479.948 205.435L479.945 205.432H479.949ZM477.092 156.977C482.324 172.59 483.309 189.313 479.949 205.432H479.957C491.175 203.412 502.612 202.899 513.965 203.906L514.039 202.983C506.864 196.472 503.59 186.589 501.953 177C501.388 173.661 500.981 170.288 500.573 166.916C499.771 160.284 498.97 153.658 496.98 147.301C489.977 124.887 467.074 108.48 443.586 109.083C420.098 109.687 398.069 127.227 392.211 149.972C389.744 159.536 389.935 169.438 390.127 179.367C390.268 186.676 390.409 193.999 389.491 201.212C388.813 206.517 387.505 211.883 384.517 216.326C381.847 220.314 377.625 223.454 372.911 224.118L372.923 224.229C386.046 230.367 400.997 231.346 414.809 226.974C418.429 225.873 421.819 224.126 424.816 221.816C427.342 219.876 429.222 217.215 430.207 214.185C431.525 209.841 430.54 205.151 429.161 200.831C426.377 192.109 422.027 183.967 416.324 176.805L416.523 176.645C423.809 179.575 432.212 177.495 439.132 173.777C442.818 171.798 446.241 169.391 449.665 166.985C452.668 164.874 455.672 162.763 458.853 160.94C464.416 157.765 470.917 155.463 477.192 156.017L477.092 156.977ZM463.538 118.064C462.596 117.676 461.517 118.126 461.129 119.069C460.74 120.012 461.19 121.09 462.133 121.479C467.907 123.855 473.078 127.489 477.27 132.116C481.462 136.743 484.569 142.247 486.366 148.226C486.659 149.203 487.689 149.757 488.665 149.463C489.642 149.17 490.195 148.14 489.902 147.164C487.947 140.659 484.567 134.671 480.006 129.637C475.445 124.603 469.82 120.65 463.538 118.064Z" fill="#171717"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M198.653 569.221L197.89 568.716C194.961 560.509 183.468 558.378 175.69 562.316C167.911 566.255 163.049 574.132 158.581 581.616C155.435 586.889 152.292 592.165 149.153 597.444L150.716 598.379C157.339 603.065 163.961 607.746 170.582 612.423C179.818 597.936 189.175 583.535 198.653 569.221ZM183.728 566.062C182.492 565.717 181.2 565.622 179.927 565.781C178.916 565.908 178.198 566.831 178.325 567.842C178.452 568.854 179.375 569.571 180.386 569.445C181.173 569.346 181.972 569.405 182.736 569.618C183.5 569.831 184.214 570.194 184.836 570.685C185.458 571.177 185.977 571.788 186.361 572.481C186.745 573.175 186.987 573.939 187.074 574.727C187.185 575.74 188.096 576.472 189.11 576.361C190.123 576.25 190.855 575.339 190.744 574.325C190.604 573.05 190.212 571.815 189.591 570.693C188.97 569.571 188.131 568.583 187.125 567.788C186.118 566.993 184.963 566.406 183.728 566.062Z" fill="white"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M231.728 517.004C229.71 521.214 227.692 525.423 225.673 529.633C225.691 529.587 225.71 529.54 225.729 529.494C225.834 529.235 225.94 528.974 226.054 528.708L225.968 528.671C216.757 542.112 207.653 555.627 198.655 569.215C189.183 583.542 179.824 597.943 170.58 612.418C202.725 635.13 234.866 657.847 267.004 680.569L267.619 680.975C272.031 674.304 276.527 667.547 281.109 660.704C294.414 640.813 308.52 618.166 303.953 594.669C301.404 581.574 293.134 570.152 283.078 561.363C273.022 552.574 261.194 546.136 249.464 539.762L249.083 538.937C251.307 533.883 253.527 528.832 255.742 523.786C250.557 520.446 245.376 517.102 240.196 513.754C239.158 512.932 237.898 512.439 236.578 512.339C234.218 512.423 232.75 514.863 231.728 517.004ZM281.292 575.956C280.581 575.225 279.412 575.209 278.681 575.92C277.95 576.631 277.934 577.8 278.645 578.531C285.276 585.347 289.139 594.384 289.485 603.888C289.831 613.391 286.634 622.685 280.515 629.965C279.859 630.745 279.96 631.91 280.741 632.566C281.521 633.222 282.686 633.121 283.342 632.34C290.049 624.36 293.554 614.172 293.175 603.753C292.796 593.335 288.561 583.429 281.292 575.956Z" fill="white"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M366.777 812.52C410.865 724.135 445.682 631.422 470.672 535.865L472.347 536.306L472.383 536.385C493.512 582.063 514.739 627.952 528.812 676.271C542.893 724.617 549.687 775.857 541.391 825.534C540.308 831.996 539.179 839.319 543.163 844.513C547.615 850.323 555.886 850.409 563.382 849.4C564.366 849.264 565.338 849.117 566.286 848.957C588.88 845.117 611.47 841.276 634.056 837.436C634.649 837.339 635.241 837.23 635.834 837.122L635.866 837.116C645.749 835.339 656.445 832.447 661.221 823.77C665.726 815.573 663.086 805.454 660.298 796.531C620.5 669.411 570.092 545.86 509.603 427.182L509.456 425.987C506.441 426.278 503.41 426.36 500.384 426.233C469.051 425.39 437.723 424.537 406.398 423.674L406.362 423.673C396.429 423.402 386.446 423.13 376.612 421.728C401.523 553.846 367.528 695.983 285.505 802.524C279.572 810.241 273.025 819.78 276.446 828.888C277.652 831.963 279.769 834.596 282.514 836.433C287.019 839.635 293.025 841.393 298.539 842.723C310.073 845.527 322.529 848.222 333.852 845.81C336.728 845.202 339.516 844.231 342.148 842.922C354.013 836.952 360.845 824.397 366.777 812.52ZM513.933 472.463C513.419 471.583 512.288 471.287 511.408 471.801C510.528 472.316 510.231 473.446 510.746 474.326C566.298 569.369 607.961 671.873 634.47 778.721C634.715 779.711 635.716 780.314 636.706 780.068C637.695 779.823 638.299 778.822 638.053 777.832C611.46 670.642 569.663 567.81 513.933 472.463Z" fill="#171717"/>
|
||||||
|
<path d="M376.61 421.729C375.576 421.594 374.543 421.43 373.523 421.261C367.824 420.301 361.535 418.442 358.802 413.359C355.577 407.365 358.839 400.09 362.076 394.096C377.397 365.691 394.485 334.241 409.806 305.832C385.743 320.355 368.351 344.197 355.464 369.277C341.962 395.53 332.595 423.717 319.82 450.34C317.23 455.731 314.133 461.43 308.705 463.953C305.533 465.358 301.989 465.687 298.613 464.889C293.554 463.893 288.471 461.123 283.991 458.365C278.058 454.721 271.839 450.66 268.002 445.034C266.914 443.454 266.041 441.736 265.404 439.926C262.45 431.433 265.552 422.128 268.912 413.783C282.895 379.012 301.935 346.075 326.897 318.134C351.859 290.194 382.888 267.338 417.892 253.946L418.262 253.836C417.511 251.503 417.108 249.073 417.067 246.623C417.116 243.583 418.236 240.383 420.685 238.561C422.84 236.973 425.645 236.641 428.305 236.358C428.883 236.296 429.449 236.234 430.028 236.174C430.065 236.284 430.076 236.408 430.101 236.518C430.138 236.395 430.175 236.284 430.212 236.162C442.705 234.857 455.202 233.557 467.703 232.26C468.454 232.187 469.217 232.1 469.994 232.076C471.517 231.938 473.052 232.123 474.499 232.618C479.705 234.624 480.85 241.357 481.172 246.921V247.401C500.065 255.992 517.986 264.546 538.369 268.46C558.752 272.374 580.66 271.476 599.185 262.097C620.499 251.29 635.027 230.636 646.302 209.565C648.517 205.416 650.72 201.122 654.204 197.97C657.291 195.188 661.674 193.465 665.651 194.352C666.182 194.463 666.701 194.624 667.202 194.832C671.484 196.592 673.91 201.257 677.996 203.435C682.009 205.577 687.302 205.158 691.006 207.509C691.544 207.842 692.04 208.239 692.483 208.69C696.567 212.862 694.637 219.804 692.224 225.124C675.817 261.224 647.779 292.721 611.764 309.286C580.895 323.49 544.13 325.767 512.608 313.717L511.967 315.342C508.595 330.223 511.857 345.768 516.116 360.414C520.375 375.061 525.691 389.647 526.492 404.885C526.751 409.833 526.43 415.126 523.551 419.162C520.364 423.618 515.085 425.365 509.457 425.981C506.443 426.271 503.412 426.354 500.386 426.227C469.049 425.377 437.72 424.524 406.4 423.667C396.452 423.403 386.458 423.132 376.61 421.729Z" fill="white"/>
|
||||||
|
<path d="M267.323 474.717C266.161 473.776 265.348 472.474 265.014 471.017C264.679 469.56 264.842 468.033 265.476 466.68C266.191 465.308 267.265 464.157 268.583 463.348C269.901 462.539 271.414 462.104 272.96 462.089C276.074 462.112 279.057 463.344 281.281 465.523C283.32 467.336 284.64 469.822 284.998 472.527C285.173 473.613 285.091 474.725 284.759 475.773C284.427 476.822 283.854 477.778 283.086 478.565C282.318 479.353 281.376 479.949 280.336 480.307C279.296 480.665 278.187 480.774 277.097 480.626C275.986 480.52 274.898 480.241 273.872 479.802C271.383 478.561 269.114 476.923 267.152 474.952L267.323 474.717Z" fill="white"/>
|
||||||
|
<path d="M267.001 680.574L267.616 680.98C264.501 685.707 261.408 690.396 258.335 695.049L258.323 695.037C225.965 671.811 194.181 649.016 162.022 625.937C164.853 621.422 167.705 616.917 170.577 612.423C202.717 635.144 234.858 657.861 267.001 680.574Z" fill="#171717"/>
|
||||||
|
<path d="M258.331 695.037L258.343 695.049C240.216 722.632 223.179 749.131 206.181 775.915L205.882 775.731C173.751 754.225 142.773 731.045 113.075 706.287C128.977 679.257 145.294 652.474 162.025 625.937C194.189 649.016 225.968 671.81 258.331 695.037Z" fill="white"/>
|
||||||
|
<path d="M205.879 775.731L206.178 775.915C203.162 780.641 200.155 785.379 197.157 790.131C165.497 768.234 134.397 745.55 103.856 722.078C106.911 716.797 109.984 711.534 113.075 706.287C142.772 731.044 173.75 754.224 205.879 775.731V775.731Z" fill="#171717"/>
|
||||||
|
<path d="M150.715 598.379C157.338 603.056 163.96 607.738 170.581 612.423C167.714 616.916 164.863 621.421 162.027 625.937C155.208 621.039 148.365 616.128 141.496 611.205L141.09 610.959C143.785 606.453 146.472 601.949 149.151 597.444L150.715 598.379Z" fill="#171717"/>
|
||||||
|
<path d="M141.494 611.205C148.362 616.128 155.206 621.039 162.024 625.938C145.287 652.462 128.97 679.245 113.074 706.287C106.895 701.142 100.774 695.923 94.7099 690.631L93.9131 690.151C109.643 663.749 125.369 637.352 141.091 610.959L141.494 611.205Z" fill="white"/>
|
||||||
|
<path d="M197.153 790.131C180.536 816.409 163.773 843.204 145.889 871.785C143.611 868.422 140.629 865.596 137.149 863.503C133.669 861.409 129.775 860.099 125.737 859.662C121.7 859.225 117.615 859.673 113.768 860.973C109.921 862.274 106.403 864.397 103.459 867.194L103.447 867.182C81.6738 854.763 91.8778 862.381 72.5285 846.16C64.6392 839.55 56.8595 831.464 55.497 821.248C54.2022 811.537 58.9929 802.157 63.6821 793.542C71.3619 779.437 79.1572 765.389 87.0681 751.398C92.6065 741.6 98.201 731.827 103.852 722.08C134.38 745.538 165.48 768.221 197.153 790.131Z" fill="white"/>
|
||||||
|
<path d="M145.889 871.785C149.391 876.954 151.063 883.146 150.638 889.375C150.214 895.604 147.719 901.512 143.549 906.159C139.379 910.805 133.774 913.924 127.627 915.017C121.48 916.11 115.144 915.116 109.627 912.192C104.111 909.268 99.7311 904.583 97.1853 898.882C94.6394 893.181 94.0738 886.792 95.5785 880.733C97.0832 874.673 100.572 869.291 105.489 865.444C110.406 861.596 116.469 859.504 122.712 859.5C127.287 859.485 131.796 860.598 135.839 862.74C139.881 864.883 143.333 867.99 145.889 871.785V871.785Z" fill="#171717"/>
|
||||||
|
<path d="M113.074 706.287C109.985 711.542 106.912 716.806 103.855 722.078C97.7995 717.438 91.7684 712.761 85.7619 708.047L83.9033 706.939C87.2386 701.338 90.5742 695.742 93.9101 690.151L94.7069 690.631C100.778 695.923 106.9 701.141 113.074 706.287Z" fill="#171717"/>
|
||||||
|
<path d="M85.7633 708.047C91.7699 712.761 97.801 717.438 103.857 722.078C98.21 731.814 92.6138 741.587 87.0681 751.396L86.7852 751.236C78.7356 753.39 72.2367 744.983 71.7815 736.676C71.3263 728.368 75.7326 720.64 80.0035 713.487C81.3082 711.309 82.6 709.117 83.9048 706.939L85.7633 708.047Z" fill="white"/>
|
||||||
|
<path d="M453.929 205.508C455.16 205.862 456.452 205.95 457.719 205.767C458.349 205.657 458.929 205.356 459.38 204.905C459.832 204.453 460.133 203.873 460.242 203.244C460.342 201.89 459.257 200.782 458.384 199.736C455.707 196.565 454.365 192.479 454.642 188.339" stroke="#171717" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M469.944 180.067C469.577 179.251 469.003 178.546 468.277 178.023C467.552 177.5 466.702 177.178 465.812 177.088C464.922 176.998 464.025 177.144 463.209 177.511C462.394 177.879 461.69 178.455 461.168 179.181" stroke="#171717" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M441.622 184.03C441.084 183.212 440.351 182.541 439.489 182.077C438.626 181.613 437.662 181.371 436.683 181.372C435.704 181.373 434.741 181.618 433.88 182.085C433.019 182.551 432.287 183.224 431.751 184.043" stroke="#171717" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M452.983 218.334C451.439 219.208 449.66 219.575 447.896 219.38C446.133 219.186 444.476 218.441 443.16 217.251C443.078 217.176 443.017 217.08 442.984 216.973C442.952 216.867 442.948 216.753 442.975 216.645C443.001 216.537 443.056 216.437 443.134 216.358C443.212 216.278 443.31 216.221 443.418 216.192" stroke="#171717" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M469.92 232.218C469.945 232.169 469.969 232.131 469.994 232.082C474.686 223.775 478.047 214.783 479.954 205.434C483.315 189.314 482.329 172.59 477.098 156.976" stroke="#171717" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M481.352 156.805C479.998 156.391 478.603 156.127 477.192 156.017C470.917 155.463 464.416 157.765 458.852 160.94C452.046 164.842 446.052 170.061 439.132 173.778C432.211 177.495 423.808 179.575 416.522 176.645" stroke="#171717" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M413.337 173.265C414.371 174.409 415.38 175.591 416.325 176.809C422.028 183.972 426.379 192.113 429.163 200.835C430.541 205.155 431.526 209.845 430.209 214.189C429.224 217.219 427.344 219.88 424.817 221.82C421.821 224.13 418.43 225.877 414.811 226.978C400.999 231.351 386.048 230.371 372.925 224.233" stroke="#171717" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M371.277 224.254C371.826 224.246 372.373 224.201 372.915 224.118C377.629 223.454 381.851 220.315 384.521 216.327C387.509 211.884 388.817 206.517 389.494 201.212C391.66 184.202 387.931 166.577 392.214 149.972C398.073 127.227 420.102 109.687 443.59 109.084C467.077 108.48 489.98 124.887 496.983 147.301C499.986 156.89 500.282 167.093 501.956 177.001C503.594 186.589 506.867 196.473 514.043 202.983C514.264 203.193 514.498 203.402 514.74 203.599" stroke="#171717" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M514.646 203.97C514.424 203.945 514.19 203.933 513.968 203.908C502.615 202.901 491.178 203.414 479.96 205.434C480.514 205.235 481.08 205.041 481.634 204.844" stroke="#171717" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M425.166 222.223C427.473 226.607 429.111 231.312 430.027 236.181C430.064 236.291 430.076 236.415 430.101 236.525C430.138 236.402 430.175 236.291 430.212 236.169C430.311 235.87 430.396 235.578 430.495 235.282" stroke="#171717" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M418.778 255.591C418.605 255.012 418.433 254.433 418.261 253.843C417.51 251.51 417.107 249.08 417.065 246.63C417.114 243.59 418.235 240.39 420.684 238.568C422.838 236.981 425.644 236.648 428.303 236.365C428.882 236.303 429.448 236.242 430.026 236.181C430.088 236.181 430.15 236.169 430.211 236.169C442.704 234.864 455.201 233.564 467.702 232.268C468.453 232.194 469.216 232.107 469.993 232.083C471.516 231.946 473.051 232.13 474.498 232.625C479.704 234.631 480.849 241.364 481.171 246.928" stroke="#171717" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M481.168 247.406C500.061 255.997 517.982 264.551 538.365 268.465C558.748 272.38 580.656 271.481 599.181 262.102C620.495 251.295 635.023 230.641 646.297 209.57C648.512 205.422 650.716 201.127 654.2 197.976C657.287 195.194 661.67 193.471 665.647 194.357C666.177 194.468 666.697 194.629 667.197 194.837C671.48 196.597 673.905 201.262 677.992 203.441C682.005 205.582 687.298 205.164 691.002 207.514C691.539 207.848 692.035 208.244 692.479 208.695C696.562 212.868 694.633 219.81 692.22 225.129C675.813 261.229 647.774 292.727 611.76 309.291C580.891 323.495 544.126 325.772 512.604 313.722C507.319 311.704 502.199 309.276 497.292 306.461" stroke="#171717" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M409.804 305.822C410.924 305.145 412.056 304.492 413.201 303.853" stroke="#171717" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M417.889 253.954C382.884 267.346 351.855 290.203 326.894 318.143C301.933 346.082 282.892 379.02 268.909 413.791C265.549 422.137 262.447 431.441 265.401 439.934C266.037 441.744 266.911 443.462 267.999 445.043C271.839 450.668 278.058 454.73 283.988 458.373C288.47 461.13 293.549 463.9 298.61 464.897C301.986 465.694 305.53 465.366 308.702 463.962C314.13 461.439 317.232 455.74 319.817 450.348C332.592 423.725 341.96 395.54 355.461 369.285C368.349 344.201 385.74 320.36 409.803 305.84" stroke="#171717" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M409.805 305.822V305.834C394.484 334.242 377.397 365.691 362.073 394.097C358.836 400.091 355.574 407.366 358.799 413.36C361.531 418.439 367.82 420.302 373.52 421.262C374.541 421.434 375.575 421.595 376.607 421.73C386.454 423.134 396.448 423.405 406.393 423.675C437.719 424.539 469.048 425.392 500.38 426.235C503.406 426.362 506.437 426.28 509.451 425.989C515.077 425.374 520.356 423.626 523.545 419.171C526.425 415.134 526.745 409.841 526.486 404.893C525.689 389.654 520.368 375.082 516.11 360.423C511.851 345.764 508.589 330.23 511.961 315.35" stroke="#171717" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M429.941 253.499C429.642 251.185 429.362 248.871 429.067 246.545" stroke="#171717" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M441.474 252.182C441.289 248.994 441.104 245.818 440.92 242.63" stroke="#171717" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M455.14 250.455C454.993 247.267 454.857 244.08 454.709 240.903" stroke="#171717" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M468.171 248.292V239.16" stroke="#171717" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M376.498 421.151C376.535 421.35 376.572 421.532 376.609 421.729C401.521 553.847 367.525 695.984 285.502 802.525C279.57 810.242 273.021 819.782 276.438 828.889C277.644 831.964 279.761 834.596 282.506 836.434C287.011 839.634 293.018 841.394 298.531 842.723C310.064 845.53 322.52 848.225 333.845 845.811C336.721 845.203 339.508 844.232 342.14 842.923C354.005 836.953 360.837 824.397 366.769 812.521C410.86 724.136 445.679 631.422 470.669 535.864C477.081 511.333 482.837 486.646 487.937 461.804" stroke="#171717" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M472.342 536.306C493.488 582.007 514.708 627.917 528.8 676.264C542.892 724.612 549.675 775.851 541.379 825.528C540.296 831.99 539.164 839.313 543.151 844.507C547.607 850.317 555.878 850.403 563.37 849.394C564.355 849.258 565.327 849.111 566.274 848.951C588.86 845.11 611.45 841.27 634.044 837.43C634.648 837.33 635.25 837.221 635.854 837.11C645.737 835.338 656.433 832.445 661.209 823.764C665.714 815.567 663.079 805.449 660.286 796.525C620.488 669.405 570.08 545.854 509.591 427.176" stroke="#171717" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M267.152 474.952C269.114 476.923 271.383 478.561 273.872 479.802C274.898 480.241 275.986 480.52 277.097 480.627C278.086 480.766 279.094 480.69 280.052 480.405C281.01 480.12 281.895 479.632 282.647 478.974C283.399 478.316 284.001 477.504 284.411 476.593C284.822 475.682 285.031 474.694 285.025 473.694C285.048 473.305 285.039 472.914 285 472.525C284.642 469.82 283.323 467.334 281.283 465.521C279.059 463.341 276.076 462.11 272.962 462.087C271.416 462.103 269.903 462.538 268.585 463.346C267.267 464.155 266.193 465.306 265.479 466.678C264.844 468.031 264.681 469.558 265.016 471.015C265.35 472.472 266.163 473.775 267.325 474.715C267.4 474.777 267.478 474.834 267.559 474.888" stroke="#171717" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M276.986 481.819C278.638 483.434 280.081 485.249 281.282 487.222C281.43 487.493 281.565 487.764 281.701 488.035C282.308 489.193 282.635 490.478 282.657 491.786C282.678 493.094 282.393 494.389 281.824 495.567C279.719 499.321 274.454 499.838 270.255 498.891C264.584 497.612 259.466 494.565 255.639 490.189C251.812 485.813 249.474 480.335 248.962 474.545C248.45 468.754 249.79 462.951 252.79 457.971C255.789 452.992 260.293 449.094 265.651 446.839" stroke="#171717" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M288.311 475.649C289.726 476.403 291.345 476.683 292.931 476.449C294.517 476.215 295.986 475.478 297.123 474.348C298.26 473.218 299.005 471.754 299.249 470.169C299.493 468.585 299.222 466.964 298.478 465.544" stroke="#171717" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M288.296 475.639C287.586 474.879 286.764 474.231 285.858 473.719C286.51 474.54 287.345 475.198 288.296 475.639" stroke="#171717" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M288.297 475.639C288.297 475.639 288.297 475.664 288.309 475.651" stroke="#171717" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M281.466 487.123C284.519 489.549 289.639 487.247 290.648 483.468C290.949 482.074 290.892 480.626 290.484 479.259C290.075 477.892 289.328 476.65 288.311 475.65" stroke="#171717" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M249.083 538.942C251.298 533.896 253.518 528.845 255.742 523.791C250.563 520.444 245.381 517.1 240.196 513.759C239.159 512.937 237.898 512.444 236.578 512.344C234.215 512.431 232.75 514.867 231.729 517.009C229.709 521.218 227.691 525.428 225.673 529.637C225.796 529.33 225.919 529.022 226.054 528.714C226.19 528.345 226.353 527.976 226.498 527.619" stroke="#171717" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M244.036 514.693C247.252 507.125 251.115 499.848 255.582 492.944" stroke="#171717" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M225.965 528.676C216.758 542.117 207.654 555.632 198.653 569.22C189.175 583.535 179.818 597.936 170.582 612.423C167.715 616.916 164.863 621.421 162.027 625.938C145.287 652.462 128.969 679.245 113.073 706.287C109.984 711.542 106.911 716.806 103.854 722.078C98.2075 731.814 92.6113 741.587 87.0656 751.396C79.1514 765.392 71.3561 779.439 63.6796 793.54C58.9904 802.155 54.2017 811.535 55.4945 821.246C56.861 831.462 64.6397 839.548 72.526 846.158C91.8743 862.38 81.6713 854.761 103.445 867.18" stroke="#171717" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M145.89 871.785C163.774 843.204 180.537 816.407 197.154 790.131C200.156 785.38 203.163 780.641 206.175 775.915C223.173 749.132 240.208 722.629 258.338 695.049C261.402 690.396 264.496 685.707 267.618 680.98C272.05 674.309 276.547 667.552 281.108 660.709C294.414 640.819 308.519 618.171 303.952 594.674C301.405 581.578 293.133 570.144 283.077 561.368C273.022 552.592 261.193 546.142 249.463 539.767" stroke="#171717" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M197.893 568.715C194.964 560.505 183.468 558.389 175.688 562.315C167.908 566.241 163.048 574.131 158.58 581.615C155.442 586.895 152.299 592.171 149.152 597.443C146.468 601.947 143.781 606.452 141.09 610.958C125.372 637.347 109.646 663.744 93.9116 690.149C90.5763 695.737 87.2407 701.333 83.9048 706.938C82.6 709.116 81.3082 711.307 80.0035 713.486C75.7326 720.637 71.3263 728.354 71.7815 736.674C72.2367 744.995 78.7356 753.389 86.7852 751.235" stroke="#171717" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M258.332 695.037C225.973 671.811 194.189 649.016 162.03 625.937C155.212 621.039 148.368 616.128 141.5 611.205" stroke="#171717" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M267.003 680.574C234.865 657.852 202.724 635.135 170.579 612.423C163.958 607.746 157.336 603.065 150.713 598.379" stroke="#171717" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M205.88 775.731C173.75 754.225 142.772 731.045 113.075 706.287C106.896 701.141 100.775 695.923 94.7109 690.631" stroke="#171717" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M197.227 790.186C197.202 790.174 197.178 790.149 197.153 790.137C165.496 768.237 134.397 745.551 103.856 722.079C97.8003 717.439 91.7692 712.761 85.7627 708.048" stroke="#171717" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M333.937 846.22C334.195 858.541 340.201 870.246 348.522 879.342C356.842 888.439 367.366 895.208 378.111 901.254C380.868 902.805 383.736 904.381 385.669 906.88C387.601 909.379 388.364 913.096 386.579 915.705C384.006 919.447 378.382 918.782 373.976 917.687C358.11 913.749 342.158 909.785 327.18 903.245C312.201 896.706 298.107 887.409 288.162 874.431C283.079 884.868 277.999 895.306 272.924 905.743C267.201 902.715 261.481 899.696 255.766 896.685C264.53 876.868 273.29 857.048 282.044 837.224" stroke="#171717" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M563.438 849.887C564.521 870.788 565.937 895.736 567.697 916.586C572.423 920.021 579.611 917.091 582.602 912.057C585.593 907.022 585.483 900.802 585.028 894.972C584.573 889.143 583.87 883.082 585.914 877.605C590.543 887.452 599.773 894.32 609.25 899.661C637.143 915.272 669.454 921.112 701.046 916.253C705.158 915.6 709.76 914.419 711.791 910.775C714.29 906.307 711.274 900.423 706.88 897.765C702.486 895.107 697.169 894.7 692.122 893.781C664.234 888.722 640.71 865.029 635.86 837.114C635.851 837.099 635.847 837.082 635.848 837.065" stroke="#171717" stroke-width="3.39635" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M665.709 194.086C662.693 190.123 659.686 186.164 656.687 182.209C655.492 180.633 654.373 178.184 655.911 176.953C657.056 176.057 658.718 176.682 659.985 177.384C663.496 179.354 666.764 181.729 669.721 184.462" stroke="#171717" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M669.756 184.449C668.493 173.637 669.822 162.68 673.633 152.484C674.199 150.99 675.11 149.284 676.698 149.16C677.269 149.168 677.827 149.341 678.303 149.657C678.779 149.974 679.153 150.421 679.381 150.945C679.81 152.001 680.028 153.13 680.021 154.269C680.538 163.747 680.6 173.249 680.206 182.714C680.181 183.44 680.144 184.166 680.106 184.892" stroke="#171717" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M679.825 185.249C679.936 184.399 680.059 183.555 680.207 182.713C681.708 172.82 684.093 163.082 687.333 153.616C688.071 151.461 689.364 148.934 691.641 148.902C692.364 148.946 693.059 149.195 693.645 149.62C694.232 150.045 694.685 150.629 694.951 151.302C695.474 152.658 695.701 154.11 695.616 155.561C695.686 165.085 694.266 174.562 691.407 183.648C691.161 184.445 690.89 185.249 690.619 186.038" stroke="#171717" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M689.686 186.578C690.264 185.606 690.83 184.621 691.409 183.649C695.127 177.297 698.848 170.95 702.572 164.607C703.469 162.835 704.688 161.245 706.166 159.918C706.914 159.264 707.825 158.825 708.802 158.647C709.78 158.469 710.787 158.56 711.717 158.909C713.649 159.806 714.573 162.158 714.437 164.288C714.162 166.411 713.463 168.458 712.381 170.306C706.092 182.812 699.466 195.149 692.503 207.318" stroke="#171717" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M145.889 871.785C149.391 876.954 151.063 883.146 150.638 889.375C150.214 895.604 147.719 901.512 143.549 906.159C139.379 910.805 133.774 913.924 127.627 915.017C121.48 916.11 115.144 915.116 109.627 912.192C104.111 909.268 99.7311 904.583 97.1853 898.882C94.6394 893.181 94.0738 886.792 95.5785 880.733C97.0832 874.673 100.572 869.291 105.489 865.444C110.406 861.596 116.469 859.504 122.712 859.5C127.287 859.485 131.796 860.598 135.839 862.74C139.881 864.883 143.333 867.99 145.889 871.785V871.785Z" stroke="#171717" stroke-width="3.39635" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M455.112 171.34C459.892 169.216 465.172 168.478 470.351 169.211" stroke="#171717" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M723.414 192.209C730.615 183.842 734.574 173.168 734.569 162.129" stroke="#171717" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M738.593 187.639L742.124 177.232" stroke="#171717" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M369.997 381.834C378.245 391.836 388.797 401.841 401.759 402.019C410.516 402.14 418.664 397.654 425.772 392.538C432.879 387.423 439.537 381.483 447.549 377.952C453.667 375.319 460.319 374.167 466.966 374.589C473.613 375.011 480.066 376.996 485.801 380.382C492.103 384.18 497.317 389.596 503.664 393.32C510.01 397.044 518.361 398.833 524.58 394.893" stroke="#171717" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M378.634 365.184C379.829 374.352 389.116 380.897 398.34 381.524C407.564 382.15 416.494 378.095 424.222 373.019C431.95 367.942 438.951 361.757 447.04 357.282C455.128 352.807 464.811 350.119 473.659 352.8C482.117 355.363 488.377 362.277 495.093 368.022C501.809 373.767 510.597 378.779 519.105 376.388" stroke="#171717" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M385.682 348.679C390.48 358.34 403.731 360.81 414.018 357.57C424.304 354.33 432.672 346.973 441.684 341.049C450.695 335.126 461.709 330.417 472.071 333.406C479.533 335.558 485.296 341.309 491.548 345.917C497.8 350.524 505.907 354.21 513.167 351.45" stroke="#171717" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M644.687 213.677C656.35 224.265 669.817 232.678 684.448 238.517" stroke="#171717" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M637.598 225.382C648.431 237.736 662.871 246.376 678.879 250.083" stroke="#171717" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M277.51 394.91C293.52 407.479 311.275 417.65 330.217 425.102C330.326 424.985 330.41 424.847 330.463 424.697C330.517 424.546 330.538 424.386 330.526 424.227C330.514 424.068 330.469 423.913 330.394 423.772C330.319 423.631 330.215 423.507 330.089 423.408" stroke="#171717" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M286.688 377.075C302.614 388.658 319.98 398.12 338.348 405.223" stroke="#171717" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M538.813 130.666L527.666 113.195" stroke="#171717" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M522.482 128.843L541.601 114.078" stroke="#171717" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M340.878 246.123L325.805 231.669" stroke="#171717" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M326.039 246.925L336.584 233.114" stroke="#171717" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M286.943 100.585C270.222 99.283 256.611 99.283 242.667 98.0499L239.233 88.8569" stroke="#171717" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M253.15 110.59L272.017 89.5161" stroke="#171717" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M901.31 87.6189C858.457 85.6062 815.514 86.7361 772.826 90.9993C768.118 91.4694 763.204 92.0521 759.281 94.6924C755.357 97.3328 752.843 102.715 754.974 106.943C757.299 111.554 763.409 112.421 768.57 112.555C779.516 112.837 790.469 112.438 801.365 111.359L853.349 138.241L892.445 135.635L832.632 105.329C858.584 99.5957 885.15 97.1245 911.714 97.9723" stroke="#171717" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M900.604 88.3131C900.007 84.1299 899.439 79.7007 901.093 75.8123C902.747 71.924 907.507 69.0306 911.287 70.92C914.312 72.4319 915.421 76.158 915.857 79.5115C916.637 85.5144 915.021 92.8977 913.498 98.7561" stroke="#171717" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M801.652 87.9883L838.722 59.0277L859.574 58.448L836.984 86.8299" stroke="#171717" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M109.464 342.395C130.732 326.674 163.466 333.31 180.821 353.268C198.176 373.226 201.366 402.846 193.769 428.18C187.226 450.003 172.335 470.247 151.147 478.621C129.96 486.994 102.615 480.738 90.6047 461.381C84.3787 451.348 82.9952 437.489 90.1166 428.07C98.3983 417.114 115.441 416.031 127.527 422.551C145.713 432.36 153.644 457.526 144.368 475.99C136.536 491.579 119.715 500.3 103.51 506.76C87.3049 513.22 69.9566 518.876 57.8622 531.451C39.3626 550.686 39.3576 584.674 57.8523 603.914" stroke="white" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M675.368 637.348C689.95 639.578 705.135 633.981 716.086 624.096C727.037 614.211 733.982 600.412 737.306 586.04C741.19 569.223 739.917 550.201 729.253 536.627C721.422 526.661 709.632 520.824 699.318 513.452C683.891 502.389 671.507 487.61 663.315 470.485C656.593 456.386 653.355 438.283 663.137 426.104C674.607 411.818 700.546 415.573 709.344 431.642C718.142 447.712 709.556 469.959 693.144 478.099C676.732 486.238 655.548 481.051 642.76 467.933C629.971 454.814 625.146 435.212 627.576 417.054C630.005 398.896 639.03 382.117 650.633 367.939C674.388 339.169 708.152 320.457 745.139 315.564" stroke="#171717" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M625.862 352.111L622.387 335.603" stroke="white" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M612.869 347.008L631.195 340.272" stroke="white" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M150.634 388.599L146.294 376.434" stroke="#171717" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M139.41 387.044L154.922 378.976" stroke="#171717" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M213.229 452.87L208.879 442.447" stroke="white" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M203.659 452.119L217.545 445.138" stroke="white" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M728.384 480.697L737.945 473.746" stroke="#171717" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M734.466 483.304C733.702 479.162 731.909 475.278 729.253 472.009" stroke="#171717" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M520.717 80.2076C518.269 79.1065 515.546 78.7698 512.904 79.2415" stroke="#171717" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M515.529 84.9485C515.965 81.4731 516.4 77.9978 516.834 74.5224" stroke="#171717" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M583.287 88.4056L641.024 88.0072C644.75 87.9813 648.593 87.9335 652.02 86.4793C654.124 85.587 655.982 84.1992 657.435 82.4341C658.888 80.669 659.893 78.5789 660.364 76.3418C660.835 74.1047 660.759 71.7868 660.141 69.5857C659.523 67.3845 658.383 65.3653 656.816 63.6999C655.25 62.0345 653.305 60.7723 651.146 60.0208C648.986 59.2694 646.678 59.0508 644.416 59.3839C642.154 59.7169 640.006 60.5917 638.155 61.9337C636.305 63.2757 634.805 65.0451 633.786 67.0912C635.323 64.935 636.297 62.4291 636.62 59.8009C636.943 57.1728 636.604 54.5056 635.635 52.0414C634.666 49.5771 633.097 47.3939 631.07 45.6898C629.044 43.9857 626.624 42.8147 624.03 42.283C621.436 41.7513 618.75 41.8758 616.216 42.6452C613.682 43.4146 611.381 44.8045 609.521 46.6887C607.66 48.573 606.3 50.892 605.563 53.4353C604.826 55.9786 604.736 58.6657 605.3 61.2527C603.508 58.44 601.019 56.1383 598.075 54.571C595.132 53.0037 591.833 52.2239 588.498 52.3074C585.164 52.3909 581.909 53.3347 579.047 55.0475C576.185 56.7602 573.815 59.1835 572.165 62.0824C570.196 65.5435 569.358 69.8761 570.914 73.5363C572.471 77.1966 576.874 79.7205 580.61 78.343" stroke="#171717" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M213.744 247.498C223.554 247.412 234.021 247.128 242.103 241.567C247.88 237.59 251.707 231.359 254.66 224.996C257.881 218.054 259.938 208.967 254.649 203.437C250.291 198.884 242.608 199.142 237.154 202.302C231.7 205.462 227.955 210.829 224.388 216.026C227.277 206.402 229.157 195.98 226.158 186.391C223.159 176.801 213.959 168.543 203.97 169.625C195.682 170.522 189.068 177.501 186.103 185.293C183.138 193.086 183.123 201.644 183.147 209.981C180.473 202.253 174.244 195.611 166.376 193.377C158.509 191.143 149.223 193.865 144.523 200.558C139.823 207.251 140.77 217.57 147.164 222.669C144.789 217.689 138.344 215.775 132.935 216.875C127.525 217.976 122.914 221.377 118.493 224.688C110.787 230.465 104.449 240.982 116.109 246.744C123.253 250.273 133.533 249.334 141.293 248.788C165.352 247.09 189.633 247.711 213.744 247.498Z" stroke="#171717" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M749.677 405.868L803.849 404.949C812.785 404.798 822.615 404.301 829.127 398.177C836.485 391.26 836.258 377.935 828.668 371.274C821.079 364.613 807.837 366.114 801.933 374.306C802.287 366.568 798.23 358.638 791.444 354.905C784.657 351.172 775.418 352.174 769.974 357.683C764.53 363.193 763.792 372.89 768.757 378.836C766.872 376.519 764.544 374.6 761.909 373.192C759.274 371.784 756.385 370.915 753.41 370.636C747.463 370.248 741.24 372.994 738.083 378.049C734.926 383.103 735.388 390.342 739.632 394.525C735.893 392.584 731.06 392.45 727.62 394.883C724.18 397.316 722.769 402.525 725.122 406.02C727.476 409.515 733.559 409.805 735.752 406.212" stroke="white" stroke-width="3.69216" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M586.327 151.784L599.345 153.63C599.455 153.646 599.557 153.695 599.639 153.77C599.72 153.846 599.776 153.945 599.8 154.053C599.823 154.162 599.813 154.275 599.77 154.378C599.727 154.48 599.654 154.567 599.56 154.626L588.469 161.687C588.378 161.745 588.307 161.828 588.263 161.926C588.22 162.024 588.207 162.133 588.225 162.239L590.491 175.187C590.51 175.296 590.496 175.409 590.449 175.51C590.402 175.61 590.325 175.694 590.229 175.75C590.133 175.806 590.022 175.831 589.912 175.822C589.801 175.813 589.696 175.77 589.61 175.7L579.468 167.333C579.385 167.266 579.284 167.224 579.178 167.213C579.072 167.202 578.965 167.223 578.87 167.273L567.253 173.43C567.155 173.482 567.043 173.502 566.933 173.489C566.823 173.475 566.72 173.428 566.637 173.354C566.554 173.28 566.496 173.183 566.47 173.075C566.445 172.967 566.452 172.854 566.493 172.751L571.316 160.519C571.356 160.419 571.365 160.31 571.342 160.205C571.319 160.1 571.266 160.004 571.189 159.929L561.743 150.783C561.663 150.706 561.609 150.606 561.587 150.497C561.566 150.388 561.578 150.275 561.623 150.173C561.668 150.072 561.743 149.986 561.838 149.929C561.933 149.871 562.043 149.844 562.154 149.851L575.278 150.658C575.385 150.665 575.491 150.64 575.584 150.586C575.677 150.532 575.751 150.451 575.798 150.355L581.575 138.544C581.624 138.444 581.701 138.361 581.798 138.307C581.895 138.253 582.006 138.229 582.117 138.24C582.227 138.251 582.332 138.296 582.416 138.368C582.501 138.44 582.561 138.536 582.589 138.644L585.876 151.375C585.902 151.48 585.959 151.575 586.039 151.648C586.12 151.721 586.22 151.768 586.327 151.784V151.784Z" fill="white"/>
|
||||||
|
<g opacity="0.1">
|
||||||
|
<path d="M422.858 179.241C422.648 184.065 422.636 187.675 423.817 192.426C424.871 196.774 425.686 201.177 426.259 205.615C427.368 214.743 427.397 223.97 426.345 233.104C425.738 239.024 435.748 240.423 436.803 234.52C438.606 224.474 438.851 214.211 437.53 204.091C436.886 199.154 435.838 194.278 434.394 189.512C432.839 184.339 430.53 181.333 426.686 177.66C426.368 177.36 425.97 177.158 425.539 177.078C425.109 176.999 424.665 177.046 424.26 177.214C423.856 177.381 423.509 177.662 423.26 178.022C423.012 178.383 422.873 178.807 422.861 179.245L422.858 179.241Z" fill="#171717"/>
|
||||||
|
</g>
|
||||||
|
<g opacity="0.1">
|
||||||
|
<path d="M419.039 240.709C417.759 244.183 418.853 248.423 419.2 252.025C419.555 255.71 419.18 259.687 422.004 262.41C422.438 262.83 422.961 263.147 423.534 263.337C424.107 263.527 424.715 263.585 425.314 263.508C425.913 263.431 426.486 263.22 426.992 262.891C427.498 262.562 427.924 262.123 428.237 261.607C430.307 258.288 428.934 254.43 428.379 250.782C427.839 247.196 427.869 242.884 425.781 239.826C425.4 239.221 424.853 238.738 424.205 238.433C423.558 238.129 422.837 238.017 422.128 238.109C421.419 238.202 420.751 238.496 420.203 238.957C419.656 239.417 419.252 240.025 419.039 240.707V240.709Z" fill="#171717"/>
|
||||||
|
</g>
|
||||||
|
<g opacity="0.1">
|
||||||
|
<path d="M412.639 295.395C405.501 296.139 398.007 300.459 392.121 304.477C385.521 309.025 379.332 314.141 373.624 319.767C361.594 331.542 352.25 346.189 343.96 360.737C334.932 376.581 327.426 393.197 319.727 409.707C315.617 418.52 311.503 427.328 307.531 436.201L301.965 448.639C299.839 453.389 296.961 458.316 295.872 463.411C293.705 473.548 306.237 478.351 312.085 470.246C314.695 466.628 316.156 462.066 317.955 457.985L323.458 445.511C327.132 437.183 330.679 428.805 334.223 420.42C341.116 404.113 347.763 387.643 355.463 371.693C362.44 357.108 371.077 343.377 381.202 330.773C385.901 324.881 391.126 319.428 396.812 314.482C399.617 312.068 402.46 309.653 405.355 307.35C408.453 304.886 411.877 303.132 414.65 300.254C416.216 298.63 415.216 295.124 412.637 295.393L412.639 295.395Z" fill="#171717"/>
|
||||||
|
</g>
|
||||||
|
<g opacity="0.1">
|
||||||
|
<path d="M415.8 301.848C403.449 317.541 394.311 335.639 385.532 353.54C376.525 371.909 368.135 390.539 359.944 409.287C354.62 421.473 371.807 428.876 376.84 416.411C384.369 397.759 392.173 379.219 399.807 360.613C407.357 342.215 415.519 323.691 420.014 304.299C420.53 302.073 417.47 299.724 415.8 301.846V301.848Z" fill="#171717"/>
|
||||||
|
</g>
|
||||||
|
<g opacity="0.1">
|
||||||
|
<path d="M492.138 302.944C503.245 316.352 523.804 320.053 540.259 322.191C557.952 324.35 575.893 323.19 593.161 318.771C625.192 310.739 653.064 291.281 673.019 265.186C683.975 250.789 692.143 234.47 697.101 217.071C700.635 204.745 681.444 199.48 677.923 211.784C670.297 238.276 654.336 261.605 632.406 278.31C608.103 296.682 578.014 305.133 547.695 303.144C539.173 302.599 530.719 301.274 522.44 299.185C513.536 296.932 505.164 294.114 495.93 293.78C490.895 293.598 489.356 299.598 492.133 302.944H492.138Z" fill="#171717"/>
|
||||||
|
</g>
|
||||||
|
<g opacity="0.1">
|
||||||
|
<path d="M111.926 239.498C119.301 247.541 135.423 247.611 145.508 247.62C159.199 247.632 172.919 246.634 186.594 246.02C199.815 245.423 213.349 245.599 226.452 243.609C237.812 241.884 249.61 236.737 254.749 225.836C258.303 218.299 248.592 212.789 243.703 219.379C237.555 227.665 227.17 229.937 217.466 230.609C205.558 231.435 193.598 231.755 181.674 232.302C170.194 232.828 158.717 233.435 147.238 233.963C141.792 234.286 136.33 234.234 130.892 233.809C125.669 233.328 120.679 231.044 115.469 230.946C110.958 230.859 109.082 236.399 111.926 239.499V239.498Z" fill="#171717"/>
|
||||||
|
</g>
|
||||||
|
<g opacity="0.1">
|
||||||
|
<path d="M581.958 86.2901C596.231 88.5879 611.405 87.4923 625.847 87.4993C631.849 87.4993 637.868 87.6108 643.822 86.7224C649.078 85.9375 656.178 84.4963 659.073 79.599C660.343 77.4516 658.763 73.7535 655.929 74.121C650.534 74.8182 645.907 77.9436 640.273 78.5403C634.203 79.1827 628.022 78.9546 621.932 78.9835C608.747 79.0472 594.981 78.1966 581.958 80.349C579.023 80.834 579.01 85.816 581.958 86.2911V86.2901Z" fill="#171717"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<defs>
|
||||||
|
<clipPath id="clip0_46_7759">
|
||||||
|
<rect width="960" height="960" fill="white"/>
|
||||||
|
</clipPath>
|
||||||
|
<clipPath id="clip1_46_7759">
|
||||||
|
<rect width="877" height="880.462" fill="white" transform="translate(42 40)"/>
|
||||||
|
</clipPath>
|
||||||
|
</defs>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 45 KiB |
|
@ -0,0 +1,128 @@
|
||||||
|
<svg width="960" height="960" viewBox="0 0 960 960" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<mask id="mask0_1_4233" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="39" y="130" width="882" height="700">
|
||||||
|
<path d="M921 130H39V830H921V130Z" fill="white"/>
|
||||||
|
</mask>
|
||||||
|
<g mask="url(#mask0_1_4233)">
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M756.356 794.079C757.765 794.195 759.183 794.177 760.59 794.025C766.007 793.47 771.06 791.035 774.868 787.141C778.676 783.248 781 778.144 781.435 772.715L797.373 573.284L795.959 573.167C786.862 569.842 777.198 566.226 767.606 562.636L767.023 562.418C759.791 559.724 752.604 557.057 745.748 554.542C740.709 552.695 735.223 550.448 732.842 545.642C731.992 543.924 731.622 542.008 731.254 540.101C730.796 537.727 730.341 535.367 728.966 533.416C726.308 529.657 721.305 528.793 716.615 528.493L716.597 528.753C710.278 538.169 703.708 547.512 695.519 555.353C687.33 563.194 677.35 569.504 666.243 571.741C661.629 572.663 656.487 572.779 652.629 570.085C648.62 567.284 646.982 562.138 646.409 557.269C645.159 546.293 647.93 535.237 654.209 526.148L654.227 525.773C653.285 525.73 652.344 525.69 651.403 525.65C650.563 525.614 649.723 525.578 648.883 525.54C643.092 525.289 636.442 525.4 632.683 529.8C631.623 531.044 630.908 532.523 630.193 534.005C629.554 535.326 628.915 536.65 628.029 537.811C624.351 542.619 617.581 543.432 611.563 544.154L611.471 544.165C590.433 546.689 570.014 552.942 551.171 562.63L535.956 753.11C535.465 759.267 537.44 765.367 541.446 770.069C545.453 774.77 551.162 777.687 557.32 778.179L756.356 794.079ZM753.411 721.922C755.731 726.029 756.781 730.733 756.428 735.437C755.952 741.744 752.991 747.605 748.196 751.73C743.401 755.856 737.164 757.908 730.857 757.437C726.152 757.084 721.659 755.343 717.943 752.436C714.228 749.529 711.458 745.586 709.985 741.104C708.511 736.623 708.399 731.805 709.663 727.26C710.927 722.715 713.51 718.647 717.086 715.571C720.662 712.494 725.071 710.547 729.753 709.975C734.436 709.404 739.183 710.234 743.394 712.36C747.605 714.487 751.091 717.814 753.411 721.922ZM683.283 715.943C685.603 720.05 686.653 724.754 686.3 729.458C686.066 732.582 685.219 735.629 683.807 738.425C682.395 741.221 680.446 743.712 678.072 745.755C675.697 747.798 672.943 749.353 669.967 750.332C666.992 751.31 663.852 751.693 660.729 751.458C656.024 751.105 651.531 749.364 647.815 746.457C644.1 743.55 641.33 739.607 639.857 735.125C638.383 730.644 638.271 725.826 639.535 721.281C640.799 716.736 643.382 712.668 646.958 709.592C650.534 706.515 654.943 704.568 659.625 703.996C664.308 703.425 669.055 704.255 673.266 706.381C677.477 708.508 680.963 711.835 683.283 715.943ZM608.253 710.752C610.573 714.859 611.623 719.563 611.27 724.267H611.272C611.037 727.391 610.19 730.438 608.778 733.234C607.366 736.03 605.417 738.521 603.042 740.564C600.667 742.607 597.913 744.162 594.937 745.14C591.962 746.119 588.822 746.502 585.699 746.267C580.994 745.914 576.501 744.173 572.785 741.266C569.07 738.359 566.301 734.415 564.827 729.934C563.353 725.453 563.241 720.635 564.505 716.09C565.769 711.545 568.352 707.477 571.928 704.401C575.504 701.324 579.913 699.377 584.595 698.805C589.278 698.234 594.025 699.064 598.236 701.19C602.447 703.317 605.933 706.644 608.253 710.752ZM736.372 560.848C735.662 560.634 734.913 561.035 734.698 561.745C734.484 562.454 734.885 563.204 735.595 563.418L788.944 579.552C789.653 579.767 790.403 579.366 790.617 578.656C790.832 577.946 790.431 577.197 789.721 576.982L736.372 560.848Z" fill="#1E1E1E"/>
|
||||||
|
<path d="M715.051 528.408C715.561 528.435 716.08 528.461 716.608 528.488L716.59 528.748C710.271 538.164 703.702 547.517 695.512 555.348C687.322 563.179 677.343 569.499 666.236 571.736C661.626 572.658 656.48 572.774 652.622 570.08C648.613 567.28 646.975 562.133 646.402 557.264C645.152 546.288 647.923 535.232 654.202 526.143L654.22 525.768L668.442 526.385C682.375 526.994 696.313 527.6 710.257 528.202C711.855 528.274 713.457 528.336 715.051 528.408Z" fill="#1E1E1E"/>
|
||||||
|
<path d="M697.052 473.534C697.123 477.257 695.441 481.134 692.245 483.057C691.066 483.761 689.725 484.147 688.352 484.176L688.325 483.236C689.142 482.248 689.752 481.105 690.118 479.876C690.484 478.647 690.599 477.357 690.457 476.083C690.314 474.808 689.916 473.576 689.287 472.458C688.658 471.341 687.81 470.361 686.795 469.578L685.747 469.378C688.737 468.059 691.302 465.937 693.158 463.247C695.473 466.2 696.831 469.789 697.052 473.534Z" fill="white"/>
|
||||||
|
<path d="M664.3 703.888C669.004 704.241 673.498 705.981 677.213 708.888C680.928 711.795 683.698 715.739 685.172 720.22C686.646 724.701 686.758 729.519 685.494 734.064C684.23 738.609 681.646 742.677 678.07 745.754C674.494 748.83 670.086 750.777 665.403 751.349C660.721 751.92 655.974 751.09 651.763 748.964C647.552 746.838 644.066 743.51 641.746 739.403C639.426 735.295 638.376 730.592 638.729 725.888C638.963 722.764 639.81 719.717 641.222 716.92C642.634 714.124 644.582 711.633 646.957 709.59C649.332 707.547 652.085 705.992 655.061 705.014C658.037 704.035 661.176 703.652 664.3 703.888Z" fill="white"/>
|
||||||
|
<path d="M589.272 698.705C593.975 699.059 598.467 700.8 602.181 703.707C605.895 706.614 608.663 710.558 610.136 715.038C611.609 719.519 611.72 724.336 610.456 728.879C609.191 733.423 606.608 737.49 603.032 740.566C599.456 743.641 595.049 745.587 590.367 746.158C585.685 746.729 580.939 745.899 576.729 743.772C572.519 741.646 569.034 738.319 566.715 734.212C564.396 730.105 563.347 725.403 563.7 720.7C564.174 714.392 567.135 708.531 571.931 704.407C576.726 700.282 582.964 698.231 589.272 698.705Z" fill="#1E1E1E"/>
|
||||||
|
<path d="M836.273 308L800.016 761.885C798.673 785.021 773.424 795.037 760.59 794.025C766.007 793.471 771.06 791.035 774.868 787.142C778.676 783.249 781 778.144 781.435 772.715L797.366 573.276L817.9 316.152C818.144 313.103 817.785 310.035 816.843 307.124C815.902 304.213 814.396 301.516 812.412 299.188C810.428 296.859 808.005 294.944 805.281 293.551C802.557 292.159 799.585 291.317 796.536 291.073L597.509 275.173C593.891 274.88 590.255 275.439 586.891 276.803C583.528 278.168 580.531 280.301 578.14 283.031C585.972 272.174 597.151 265.873 615.866 267.153L814.902 283.053C817.943 283.288 820.908 284.119 823.628 285.5C826.348 286.881 828.77 288.784 830.754 291.1C832.739 293.417 834.248 296.102 835.195 299.001C836.141 301.901 836.508 304.959 836.273 308Z" fill="white"/>
|
||||||
|
<path d="M355.437 749.229C356.319 753.862 355.808 758.653 353.967 762.996C352.127 767.339 349.04 771.038 345.097 773.626C341.154 776.215 336.532 777.576 331.815 777.537C327.099 777.498 322.5 776.062 318.599 773.41C314.699 770.758 311.673 767.008 309.904 762.636C308.134 758.264 307.701 753.465 308.659 748.847C309.617 744.228 311.923 739.998 315.285 736.69C318.647 733.382 322.915 731.145 327.548 730.263C330.625 729.676 333.787 729.701 336.854 730.337C339.921 730.973 342.832 732.206 345.422 733.968C348.012 735.729 350.23 737.983 351.948 740.602C353.666 743.221 354.852 746.152 355.437 749.229Z" fill="white"/>
|
||||||
|
<path d="M348 525.034C349.489 536.177 347.008 547.489 340.992 556.986H340.983C336.701 563.995 330.736 569.822 323.628 573.938C306.811 583.515 284.703 582.405 268.428 571.938C262.758 568.262 257.795 563.597 253.776 558.164C246.197 547.983 241.94 535.713 241.586 523.025C241.371 513.385 243.645 503.225 250.196 496.147C250.214 496.138 250.223 496.12 250.232 496.111C259.961 485.648 275.499 484.87 288.832 485.425C302.607 486.006 315.632 485.255 327.712 493.225C329.299 494.27 330.818 495.415 332.259 496.653C340.714 503.94 346.295 514.003 348 525.034ZM288.561 514.356C293.904 503.499 283.755 495.596 273.354 498.29C270.748 499.054 268.481 500.683 266.925 502.909C265.37 505.135 264.62 507.824 264.798 510.534C265.107 513.231 266.284 515.755 268.152 517.726C270.019 519.697 272.476 521.008 275.153 521.462C277.848 521.802 280.581 521.302 282.981 520.03C285.381 518.758 287.33 516.777 288.561 514.356Z" fill="white"/>
|
||||||
|
<path d="M281.642 763.738C282.527 768.372 282.017 773.164 280.178 777.508C278.339 781.852 275.252 785.552 271.31 788.142C267.367 790.732 262.745 792.095 258.028 792.057C253.311 792.02 248.711 790.585 244.809 787.933C240.908 785.281 237.881 781.532 236.11 777.159C234.34 772.787 233.906 767.988 234.864 763.369C235.821 758.75 238.127 754.518 241.489 751.21C244.851 747.901 249.12 745.664 253.753 744.781C259.965 743.599 266.393 744.931 271.623 748.486C276.852 752.041 280.456 757.527 281.642 763.738Z" fill="#1E1E1E"/>
|
||||||
|
<path d="M374.599 312.456L422.778 565.337L421.937 565.498C395.857 564.684 369.753 566.052 343.9 569.588C343.898 565.31 343.005 561.079 341.277 557.165L340.991 556.986C347.008 547.489 349.489 536.177 347.999 525.034C346.294 514.002 340.712 503.939 332.255 496.652L332.372 496.518C330.839 465.362 329.314 434.206 327.798 403.05L327.735 402.907C328.783 402.44 329.822 401.94 330.85 401.407C340.839 396.207 349.65 387.696 352.59 376.83C346.536 376.305 340.455 377.461 335.015 380.169C329.575 382.877 324.988 387.033 321.757 392.18C325.551 385.825 329.34 379.471 333.123 373.116C334.394 370.977 335.723 368.453 334.869 366.108C333.687 362.885 329.033 362.366 326.097 364.139C323.161 365.912 321.443 369.07 319.474 371.872C312.636 381.618 301.717 387.857 290.374 391.491C279.031 395.125 267.103 396.413 255.325 398.203C246.643 399.519 237.057 401.694 232.108 408.961C226.496 417.214 229.243 428.214 229.718 438.184C230.185 448.457 227.973 458.675 223.3 467.836C221.081 472.168 218.781 478.478 222.942 481.011C226.791 483.356 231.078 479.239 233.558 475.283C231.035 479.767 230.219 485.012 231.258 490.051C237.788 488.057 243.311 483.646 246.698 477.718L247.369 477.628L249.839 495.842L250.188 496.155C243.637 503.235 241.363 513.393 241.578 523.033C241.932 535.721 246.189 547.991 253.768 558.172L253.634 558.272C250.671 555.292 245.382 555.623 242.142 558.299C238.902 560.975 237.506 565.387 237.532 569.594C237.558 573.801 238.821 577.882 240.074 581.901C220.16 589.409 200.951 598.67 182.674 609.575L180.598 609.969L132.699 358.541C132.126 355.537 132.151 352.449 132.771 349.454C133.392 346.459 134.596 343.616 136.316 341.087C138.036 338.557 140.237 336.392 142.794 334.713C145.351 333.035 148.213 331.877 151.217 331.305L347.362 293.929C350.527 293.322 353.784 293.38 356.924 294.101C360.065 294.822 363.021 296.19 365.603 298.117C367.758 300.195 369.776 302.41 371.644 304.749L371.671 304.776C373.09 307.145 374.081 309.744 374.599 312.456ZM191.915 474.956C191.915 473.68 191.537 472.432 190.828 471.371C190.119 470.31 189.111 469.483 187.932 468.994C186.753 468.506 185.455 468.378 184.204 468.627C182.952 468.876 181.802 469.491 180.9 470.393C179.997 471.296 179.382 472.445 179.133 473.697C178.884 474.949 179.012 476.246 179.501 477.425C179.989 478.605 180.816 479.612 181.877 480.321C182.939 481.031 184.186 481.409 185.462 481.409C187.174 481.408 188.814 480.729 190.024 479.519C191.235 478.309 191.915 476.668 191.915 474.957V474.956ZM191.539 439.566C191.54 437.089 190.806 434.667 189.431 432.606C188.055 430.546 186.099 428.94 183.811 427.991C181.522 427.042 179.004 426.793 176.574 427.276C174.144 427.758 171.911 428.951 170.159 430.702C168.407 432.453 167.213 434.685 166.729 437.114C166.245 439.544 166.492 442.063 167.439 444.352C168.387 446.641 169.992 448.598 172.051 449.975C174.111 451.352 176.532 452.087 179.009 452.088C182.331 452.087 185.516 450.768 187.865 448.42C190.215 446.073 191.536 442.887 191.539 439.566Z" fill="#1E1E1E"/>
|
||||||
|
<path d="M352.591 376.826C349.647 387.692 340.84 396.203 330.851 401.403C329.822 401.94 328.784 402.44 327.736 402.903C318.562 407.074 308.536 409.168 298.648 411.209C285.472 413.939 272.297 416.666 259.123 419.39C252.894 420.678 245.832 422.59 243.049 428.304C241.259 431.983 241.769 436.314 242.324 440.369C244.006 452.792 245.688 465.209 247.372 477.62L246.701 477.71C243.313 483.638 237.79 488.049 231.261 490.043C230.221 485.004 231.038 479.759 233.561 475.275C233.65 475.132 233.74 474.989 233.82 474.845C233.731 474.989 233.65 475.132 233.561 475.275C231.081 479.231 226.794 483.348 222.945 481.003C218.784 478.47 221.084 472.16 223.303 467.828C227.976 458.667 230.187 448.449 229.721 438.176C229.246 428.206 226.499 417.206 232.111 408.953C237.06 401.686 246.646 399.511 255.328 398.195C267.106 396.405 279.028 395.107 290.377 391.483C301.726 387.859 312.636 381.61 319.477 371.864C321.446 369.064 323.177 365.894 326.1 364.131C329.023 362.368 333.69 362.877 334.872 366.1C335.722 368.445 334.397 370.969 333.126 373.108C329.34 379.462 325.551 385.817 321.76 392.172C324.99 387.026 329.578 382.871 335.017 380.163C340.457 377.456 346.537 376.301 352.591 376.826Z" fill="white"/>
|
||||||
|
<path d="M347.364 293.929L151.219 331.305C148.214 331.877 145.352 333.035 142.795 334.713C140.238 336.392 138.037 338.557 136.317 341.087C134.597 343.616 133.393 346.459 132.772 349.454C132.151 352.449 132.127 355.537 132.7 358.541L180.6 609.963L218.415 808.463C219.435 813.816 222.299 818.641 226.509 822.101C230.718 825.561 236.007 827.436 241.456 827.4C228.809 829.79 202.62 822.567 198.772 799.717L113.547 352.427C112.414 346.372 113.732 340.115 117.211 335.031C120.69 329.948 126.045 326.453 132.1 325.317L328.238 287.95C345.798 284.808 356.816 289.713 365.605 298.117C363.022 296.19 360.066 294.823 356.926 294.102C353.785 293.38 350.529 293.322 347.364 293.929Z" fill="white"/>
|
||||||
|
<path d="M315.358 422.768C308.636 423.529 301.914 424.287 295.193 425.041C292.947 425.301 290.262 425.874 289.483 428.004C289.195 429.141 289.235 430.335 289.599 431.45C293.081 446.79 296.565 462.134 300.053 477.481C297.233 478.796 294.414 480.105 291.595 481.41" stroke="white" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M276.854 442.807C276.172 441.815 275.237 441.023 274.147 440.513C273.057 440.004 271.85 439.795 270.651 439.908C269.453 440.021 268.307 440.452 267.331 441.157C266.355 441.862 265.586 442.815 265.102 443.917" stroke="white" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M305.128 438.851C306.738 437.598 308.678 436.839 310.711 436.665C312.745 436.492 314.785 436.913 316.584 437.876" stroke="white" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M332.256 496.652C330.815 495.414 329.296 494.269 327.709 493.224C315.627 485.259 302.604 486.01 288.829 485.424C275.494 484.869 259.956 485.647 250.229 496.11C250.22 496.119 250.211 496.137 250.193 496.146C243.642 503.226 241.368 513.384 241.583 523.024C241.937 535.712 246.194 547.982 253.773 558.163C257.792 563.596 262.755 568.261 268.425 571.937C284.705 582.4 306.813 583.51 323.625 573.937C330.733 569.821 336.699 563.994 340.98 556.985H340.989C347.006 547.489 349.488 536.177 348 525.034C346.295 514.002 340.713 503.939 332.256 496.652Z" stroke="white" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M273.354 498.29C270.749 499.054 268.481 500.683 266.926 502.909C265.37 505.135 264.62 507.824 264.798 510.534C265.108 513.231 266.284 515.755 268.152 517.726C270.019 519.697 272.476 521.008 275.153 521.462C277.848 521.802 280.582 521.302 282.981 520.03C285.381 518.758 287.33 516.777 288.561 514.356C293.9 503.5 283.755 495.6 273.354 498.29Z" stroke="white" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M269.891 506.623C273.301 510.794 280.774 510.454 283.799 505.996" stroke="white" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M234.009 474.536C233.946 474.644 233.884 474.751 233.821 474.849C233.732 474.993 233.651 475.136 233.562 475.279C231.039 479.763 230.223 485.008 231.262 490.047C237.792 488.053 243.315 483.642 246.702 477.714" stroke="white" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M249.842 495.838L247.372 477.624C245.688 465.21 244.006 452.793 242.324 440.373C241.769 436.318 241.259 431.987 243.049 428.308C245.832 422.598 252.894 420.682 259.123 419.394C272.297 416.673 285.472 413.946 298.648 411.213C308.538 409.172 318.562 407.078 327.736 402.907C328.784 402.441 329.822 401.941 330.851 401.407C340.84 396.207 349.651 387.696 352.591 376.83C346.537 376.306 340.455 377.461 335.015 380.169C329.576 382.877 324.988 387.033 321.758 392.18C325.552 385.826 329.34 379.471 333.124 373.116C334.395 370.977 335.724 368.453 334.87 366.108C333.688 362.885 329.034 362.366 326.098 364.139C323.162 365.912 321.444 369.07 319.475 371.872C312.637 381.618 301.718 387.857 290.375 391.491C279.032 395.125 267.104 396.413 255.326 398.203C246.644 399.519 237.058 401.694 232.109 408.961C226.497 417.214 229.244 428.214 229.719 438.184C230.185 448.457 227.974 458.675 223.301 467.836C221.082 472.168 218.782 478.478 222.943 481.011C226.792 483.356 231.079 479.239 233.559 475.283C233.648 475.14 233.738 474.997 233.818 474.853" stroke="white" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M332.373 496.518C330.839 465.362 329.315 434.206 327.799 403.05" stroke="white" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M253.637 558.266C250.674 555.286 245.385 555.617 242.145 558.293C238.905 560.969 237.509 565.381 237.535 569.588C237.561 573.795 238.824 577.876 240.077 581.895C220.162 589.403 200.954 598.664 182.677 609.569" stroke="white" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M341.278 557.165C343.006 561.079 343.899 565.31 343.901 569.588C369.754 566.052 395.857 564.684 421.938 565.498" stroke="white" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M346.72 667.746C348.12 673.993 350.282 680.992 356.064 683.767C361.327 686.3 367.95 684.116 371.995 679.9C376.04 675.684 377.965 669.876 379.147 664.157C381.756 651.428 381.281 638.259 377.759 625.751C377.75 625.715 372.47 626.378 365.954 627.351C355.903 628.851 342.898 631.057 341.699 632.507C337.349 637.789 345.234 661.105 346.72 667.746Z" stroke="white" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M369.2 648.127C368.117 641.199 367.034 634.275 365.951 627.353C365.557 624.802 365.151 622.253 364.761 619.701" stroke="white" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M669.324 443.318C668.506 442.682 667.522 442.293 666.49 442.199C665.457 442.104 664.42 442.308 663.499 442.785C662.579 443.262 661.815 443.993 661.297 444.891C660.779 445.789 660.53 446.816 660.578 447.852C660.626 448.887 660.97 449.887 661.57 450.733C662.169 451.579 662.998 452.236 663.958 452.625C664.919 453.015 665.971 453.12 666.99 452.93C668.009 452.74 668.952 452.262 669.708 451.552" stroke="white" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M648.4 420.485C648.257 418.239 648.1 415.992 647.961 413.746" stroke="white" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M658.87 402.361C657.855 401.797 656.788 401.333 655.683 400.974C651.216 399.518 646.368 399.763 642.07 401.663" stroke="white" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M676.1 470.822C679.363 471.233 682.677 470.744 685.683 469.41C688.689 468.075 691.274 465.946 693.159 463.25C695.473 466.202 696.831 469.79 697.053 473.534C697.124 477.257 695.442 481.134 692.246 483.057C691.067 483.761 689.725 484.147 688.353 484.176C687.181 484.251 686.008 484.039 684.937 483.558C683.866 483.078 682.927 482.344 682.204 481.419" stroke="white" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M688.325 483.236C689.142 482.248 689.752 481.105 690.118 479.876C690.484 478.647 690.599 477.357 690.456 476.083C690.314 474.808 689.916 473.576 689.287 472.458C688.658 471.341 687.81 470.361 686.795 469.578" stroke="white" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M639.063 373.4C630.953 386.965 625.854 402.115 624.112 417.823C622.369 433.53 624.024 449.429 628.963 464.442C629.5 466.053 630.094 467.653 630.744 469.242C633.062 474.836 636.186 480.098 640.894 483.822C645.294 487.303 650.802 489.201 655.178 492.727C664.778 500.442 666.948 513.927 668.451 526.156" stroke="white" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M630.381 469.39C626.267 470.259 621.979 469.656 618.265 467.687C614.55 465.719 611.644 462.508 610.054 458.617C608.463 454.725 608.289 450.398 609.562 446.391C610.834 442.384 613.473 438.951 617.018 436.69C613.79 434.625 611.231 431.668 609.652 428.176C608.073 424.685 607.541 420.81 608.122 417.022C608.703 413.234 610.372 409.697 612.925 406.84C615.478 403.982 618.806 401.927 622.505 400.925C615.282 386.925 617.913 368.991 627.305 356.344C636.697 343.697 651.963 336.161 667.599 334.219C683.235 332.277 699.167 335.552 713.783 341.406C727.342 346.83 740.249 354.688 749.383 366.082C759.828 379.095 764.661 395.85 766.218 412.462C767.775 429.074 766.281 445.802 765.395 462.467C763.64 495.553 764.268 528.722 767.274 561.717" stroke="white" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M637.586 368.332C638.123 370.006 638.705 371.653 639.34 373.291C643.216 383.36 648.739 392.716 655.683 400.974C661.716 408.186 668.772 414.476 676.627 419.644C688.063 427.097 700.937 432.064 714.415 434.224C722.622 435.559 730.968 435.824 739.243 435.012" stroke="white" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M714.469 433.9L714.415 434.222C709.198 464.885 707.818 496.077 710.307 527.081" stroke="white" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M550.8 562.813C550.925 562.75 551.042 562.687 551.167 562.625C570.01 552.937 590.43 546.684 611.467 544.16C617.508 543.435 624.329 542.639 628.025 537.806C629.905 535.344 630.674 532.149 632.679 529.795C636.438 525.395 643.088 525.284 648.879 525.535C650.66 525.615 652.441 525.687 654.223 525.768L668.445 526.385C682.378 526.994 696.316 527.6 710.26 528.202C711.853 528.274 713.46 528.336 715.049 528.408C715.559 528.435 716.078 528.461 716.606 528.488C721.296 528.788 726.299 529.652 728.957 533.411C731.437 536.929 730.926 541.78 732.833 545.637C735.214 550.443 740.7 552.69 745.739 554.537C752.595 557.052 759.782 559.719 767.014 562.413C776.797 566.074 786.669 569.77 795.95 573.162" stroke="white" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M654.206 526.143C647.928 535.232 645.157 546.288 646.406 557.264C646.979 562.133 648.617 567.279 652.626 570.08C656.484 572.774 661.626 572.658 666.24 571.736C677.347 569.499 687.327 563.189 695.516 555.348C703.705 547.507 710.275 538.164 716.594 528.748" stroke="white" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M371.673 304.776C373.091 307.145 374.082 309.744 374.6 312.456L422.779 565.337L460.326 762.377C461.481 768.445 460.178 774.724 456.704 779.832C453.23 784.939 447.869 788.458 441.8 789.613L245.662 826.989C244.285 827.254 242.886 827.388 241.483 827.389" stroke="white" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M241.455 827.4C236.007 827.435 230.718 825.56 226.509 822.1C222.3 818.639 219.437 813.814 218.417 808.461L180.599 609.963L132.699 358.541C132.126 355.537 132.151 352.449 132.771 349.454C133.392 346.459 134.596 343.616 136.316 341.087C138.036 338.558 140.237 336.392 142.794 334.714C145.351 333.035 148.213 331.877 151.217 331.305L347.362 293.929C352.03 293.045 356.856 293.608 361.196 295.541C365.535 297.475 369.18 300.688 371.644 304.749" stroke="white" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M241.483 827.392C241.478 827.392 241.473 827.392 241.469 827.394C241.464 827.395 241.46 827.398 241.456 827.401C228.809 829.791 202.62 822.568 198.772 799.718L113.547 352.428C112.414 346.373 113.731 340.116 117.211 335.032C120.69 329.948 126.045 326.453 132.1 325.317L328.238 287.95C345.798 284.808 356.816 289.713 365.605 298.117C367.76 300.195 369.777 302.411 371.646 304.749L371.673 304.776" stroke="white" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M561.965 427.494L551.171 562.625L535.956 753.105C535.465 759.262 537.44 765.362 541.446 770.064C545.453 774.765 551.162 777.682 557.32 778.174L756.356 794.074C757.765 794.19 759.183 794.172 760.59 794.02C766.007 793.465 771.06 791.03 774.868 787.137C778.676 783.243 781 778.139 781.435 772.71L797.366 573.271L817.9 316.152C818.144 313.102 817.785 310.035 816.843 307.124C815.902 304.213 814.396 301.516 812.412 299.187C810.428 296.859 808.005 294.943 805.281 293.551C802.557 292.159 799.585 291.317 796.536 291.073L597.509 275.173C591.35 274.682 585.249 276.656 580.546 280.662C575.843 284.669 572.923 290.379 572.43 296.537L570.452 321.32L570.407 321.911" stroke="white" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M760.554 794.025H760.59C773.424 795.037 798.673 785.025 800.016 761.885L836.273 308C836.508 304.959 836.141 301.901 835.194 299.001C834.247 296.101 832.738 293.417 830.754 291.1C828.769 288.784 826.347 286.881 823.627 285.5C820.907 284.12 817.941 283.288 814.9 283.054L615.864 267.154C597.149 265.874 585.97 272.175 578.138 283.032C576.684 285.059 575.36 287.176 574.173 289.369" stroke="white" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M566.09 424.3C566.027 424.345 565.956 424.39 565.89 424.435C564.548 425.392 563.178 426.305 561.764 427.191C546.701 436.625 527.726 442.255 507.123 442.255C458.093 442.255 418.354 410.418 418.354 371.145C418.354 331.872 458.093 300.035 507.123 300.035C531.923 300.035 554.345 308.179 570.447 321.327C586.182 334.144 595.883 351.74 595.883 371.145C595.883 385.745 590.396 399.32 580.971 410.606L580.73 410.906" stroke="white" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M565.562 424.182C565.67 424.262 565.786 424.352 565.893 424.433C574.493 431.038 583.093 437.64 591.693 444.239C586.674 433.539 583.07 422.231 580.974 410.6C580.93 410.35 580.886 410.09 580.841 409.84" stroke="white" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M281.642 763.738C282.527 768.372 282.017 773.164 280.178 777.508C278.339 781.852 275.252 785.552 271.31 788.142C267.367 790.732 262.745 792.095 258.028 792.057C253.311 792.02 248.711 790.585 244.809 787.933C240.908 785.281 237.881 781.532 236.11 777.159C234.34 772.787 233.906 767.988 234.864 763.369C235.821 758.75 238.127 754.518 241.489 751.21C244.851 747.901 249.12 745.664 253.753 744.781C259.965 743.599 266.393 744.931 271.623 748.486C276.852 752.041 280.456 757.527 281.642 763.738Z" stroke="white" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M355.437 749.229C356.319 753.862 355.808 758.653 353.967 762.996C352.127 767.339 349.04 771.038 345.097 773.626C341.154 776.215 336.532 777.576 331.815 777.537C327.099 777.498 322.5 776.062 318.599 773.41C314.699 770.758 311.673 767.008 309.904 762.636C308.134 758.264 307.701 753.465 308.659 748.847C309.617 744.228 311.923 739.998 315.285 736.69C318.647 733.382 322.915 731.145 327.548 730.263C330.625 729.676 333.787 729.701 336.854 730.337C339.921 730.973 342.832 732.206 345.422 733.968C348.012 735.729 350.23 737.983 351.948 740.602C353.666 743.221 354.852 746.152 355.437 749.229Z" stroke="white" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M424.7 736.752C425.582 741.386 425.071 746.177 423.231 750.52C421.39 754.863 418.303 758.563 414.36 761.152C410.417 763.74 405.795 765.102 401.078 765.063C396.361 765.025 391.762 763.589 387.861 760.936C383.961 758.284 380.934 754.534 379.165 750.162C377.395 745.789 376.962 740.99 377.92 736.372C378.878 731.753 381.184 727.522 384.546 724.214C387.909 720.906 392.177 718.669 396.811 717.787C399.887 717.2 403.049 717.225 406.116 717.86C409.183 718.495 412.095 719.729 414.685 721.49C417.275 723.251 419.493 725.506 421.211 728.125C422.929 730.743 424.115 733.675 424.7 736.752Z" stroke="white" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M611.272 724.268C610.92 728.972 609.181 733.467 606.275 737.184C603.369 740.9 599.426 743.671 594.944 745.146C590.463 746.622 585.645 746.735 581.099 745.472C576.554 744.209 572.485 741.626 569.407 738.05C566.33 734.474 564.382 730.066 563.81 725.383C563.238 720.7 564.067 715.952 566.194 711.741C568.32 707.529 571.647 704.043 575.755 701.723C579.863 699.402 584.567 698.352 589.272 698.706C595.577 699.181 601.437 702.141 605.562 706.934C609.687 711.727 611.741 717.961 611.272 724.268Z" stroke="white" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M686.3 729.458C685.947 734.162 684.207 738.656 681.3 742.371C678.392 746.087 674.449 748.856 669.968 750.33C665.486 751.804 660.669 751.916 656.124 750.652C651.579 749.388 647.511 746.804 644.434 743.228C641.357 739.652 639.41 735.244 638.839 730.561C638.267 725.879 639.097 721.132 641.224 716.921C643.35 712.71 646.678 709.224 650.785 706.904C654.893 704.584 659.596 703.534 664.3 703.887C670.608 704.363 676.468 707.323 680.594 712.118C684.719 716.913 686.772 723.15 686.3 729.458Z" stroke="white" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M756.428 735.437C756.075 740.141 754.335 744.635 751.427 748.35C748.52 752.065 744.577 754.835 740.095 756.309C735.614 757.783 730.796 757.895 726.252 756.631C721.707 755.366 717.639 752.783 714.562 749.207C711.485 745.631 709.538 741.223 708.967 736.54C708.395 731.857 709.225 727.11 711.352 722.899C713.478 718.688 716.806 715.202 720.913 712.882C725.021 710.562 729.724 709.513 734.428 709.866C740.736 710.34 746.598 713.3 750.723 718.096C754.849 722.891 756.901 729.129 756.428 735.437Z" stroke="white" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M237.822 330.204L245.949 327.984" stroke="white" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M257.047 325.3C258.309 325.3 286.61 318.981 286.61 318.981" stroke="white" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M673.638 295.164L682.051 295.557" stroke="white" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M693.436 296.426C694.636 296.819 723.509 299.526 723.509 299.526" stroke="white" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M316.432 799.565L353.495 791.555" stroke="white" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M637.801 770.504L676.931 773.449" stroke="white" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M191.54 439.567C191.539 442.044 190.804 444.465 189.428 446.525C188.051 448.584 186.095 450.189 183.806 451.136C181.517 452.084 178.999 452.332 176.57 451.848C174.14 451.365 171.909 450.172 170.157 448.42C168.406 446.669 167.213 444.437 166.729 442.008C166.246 439.578 166.493 437.06 167.441 434.771C168.389 432.483 169.993 430.526 172.053 429.15C174.112 427.773 176.533 427.038 179.01 427.037C180.656 427.036 182.286 427.36 183.806 427.99C185.327 428.619 186.708 429.542 187.872 430.706C189.035 431.869 189.958 433.251 190.588 434.771C191.217 436.292 191.541 437.921 191.54 439.567Z" stroke="white" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M185.463 481.41C189.027 481.41 191.916 478.521 191.916 474.957C191.916 471.393 189.027 468.504 185.463 468.504C181.899 468.504 179.01 471.393 179.01 474.957C179.01 478.521 181.899 481.41 185.463 481.41Z" stroke="white" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M577.18 463.25C581.501 463.25 585.003 459.748 585.003 455.427C585.003 451.106 581.501 447.604 577.18 447.604C572.86 447.604 569.357 451.106 569.357 455.427C569.357 459.748 572.86 463.25 577.18 463.25Z" stroke="white" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M409.083 752.884C410.919 750.957 412.245 748.602 412.939 746.032C413.633 743.463 413.674 740.76 413.058 738.17C412.442 735.581 411.189 733.186 409.412 731.205C407.635 729.223 405.39 727.717 402.883 726.823" stroke="white" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M402.9 748.511C403.891 747.634 404.642 746.519 405.081 745.27C405.52 744.022 405.633 742.682 405.409 741.378C405.184 740.073 404.631 738.848 403.8 737.818C402.969 736.788 401.888 735.987 400.661 735.492" stroke="white" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M265.027 773.272L247.178 776.344L244.571 761.193L262.42 758.121L263.527 764.555L265.027 773.272Z" stroke="white" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M272.175 756.443L274.603 770.556L263.527 764.555L271.665 756.584" stroke="white" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M590.826 729.887L572.732 729.098L573.402 713.739L591.496 714.528L591.212 721.05L590.826 729.887Z" stroke="white" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M601.385 714.959L600.762 729.266L591.213 721.05L600.857 714.989" stroke="white" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M395.347 746.531C395.842 746.093 396.217 745.535 396.437 744.911C396.656 744.287 396.712 743.617 396.6 742.965C396.488 742.313 396.211 741.7 395.796 741.185C395.38 740.67 394.84 740.27 394.227 740.022" stroke="white" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M737.039 747.454C739.211 745.915 740.963 743.856 742.136 741.467C743.309 739.077 743.867 736.433 743.757 733.773C743.648 731.113 742.876 728.523 741.51 726.238C740.145 723.953 738.23 722.045 735.939 720.688" stroke="white" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M731.81 741.979C732.951 741.309 733.902 740.358 734.572 739.217C735.243 738.076 735.61 736.783 735.64 735.46C735.67 734.136 735.362 732.828 734.744 731.657C734.126 730.487 733.219 729.494 732.11 728.772" stroke="white" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M724.775 738.589C725.345 738.254 725.82 737.778 726.155 737.208C726.489 736.638 726.673 735.991 726.687 735.33C726.702 734.669 726.548 734.015 726.239 733.43C725.93 732.846 725.477 732.35 724.922 731.989" stroke="white" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M90.9322 515.977C78.1872 544.94 69.4652 576.012 68.7082 607.647C68.4292 619.306 69.3772 631.488 75.2912 641.541C81.2052 651.594 93.2912 658.806 104.564 655.83C115.837 652.854 122.604 637.201 114.864 628.476C107.551 620.233 92.6232 623.559 86.6132 632.795C80.6032 642.031 81.7962 654.363 85.9652 664.564C90.1342 674.765 96.9062 683.669 101.983 693.45C107.06 703.231 110.441 714.726 107.135 725.238C103.829 735.75 91.7272 743.885 81.5422 739.68" stroke="white" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M897.381 412.2L916.393 506.779C918.331 516.421 920.279 526.229 919.373 536.022C918.467 545.815 914.28 555.77 906.2 561.376C898.12 566.982 885.811 566.862 879.295 559.495C872.779 552.128 875.679 538.072 885.182 535.54C899.568 537.162 896.082 579.963 883.537 598.14C877.946 606.24 870.318 612.833 865.193 621.24C860.068 629.647 857.958 641.15 863.93 648.973C869.902 656.796 885.445 655.3 886.881 645.564" stroke="white" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M216.733 279.57L197.752 260.644" stroke="white" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M197.824 281.075L214.724 261.445" stroke="white" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M259.15 245.7L273.05 229.273" stroke="white" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M274.41 241.758L259.23 231.676" stroke="white" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M390.716 244.279L364.16 217.765" stroke="white" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M470.452 229.267L469.036 131.975" stroke="white" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M552.189 233.042C554.056 222.98 558.902 213.71 566.099 206.435" stroke="white" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M780.3 232.327L769.543 217.966" stroke="white" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M765.816 230.5L779.716 220.393" stroke="white" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M732.988 255.806L721.616 245.7" stroke="white" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M731.724 245.7L719.089 257.07" stroke="white" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M893.461 624.768L906.097 615.923" stroke="white" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M902.306 627.295L895.988 614.66" stroke="white" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M875.771 516.1L884.616 513.573" stroke="white" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M881.034 521.113L878.455 508.488" stroke="white" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M99.748 600.57L108.548 591.676" stroke="white" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M107.661 600.655L100.042 590.575" stroke="white" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M80.9743 704.394C79.4608 703.444 77.7118 702.936 75.9249 702.928C74.138 702.92 72.3844 703.411 70.8623 704.348" stroke="white" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M75.6388 698.034L74.4658 714.467" stroke="white" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M689.163 217.945L694.925 222.825C695.1 222.972 695.224 223.169 695.283 223.389C695.342 223.61 695.331 223.843 695.253 224.057C695.175 224.271 695.034 224.456 694.847 224.587C694.661 224.719 694.438 224.789 694.21 224.79L686.66 224.829C686.44 224.83 686.225 224.897 686.043 225.02C685.86 225.144 685.718 225.318 685.634 225.522L682.774 232.509C682.688 232.72 682.539 232.9 682.348 233.024C682.157 233.147 681.932 233.21 681.704 233.202C681.476 233.194 681.256 233.116 681.074 232.98C680.891 232.843 680.755 232.654 680.683 232.437L678.313 225.268C678.245 225.059 678.115 224.875 677.942 224.739C677.768 224.603 677.558 224.522 677.338 224.506L669.808 223.945C669.581 223.929 669.364 223.843 669.187 223.699C669.01 223.555 668.882 223.361 668.819 223.141C668.756 222.922 668.762 222.689 668.835 222.473C668.909 222.258 669.047 222.07 669.231 221.935L675.316 217.465C675.494 217.335 675.63 217.155 675.705 216.948C675.781 216.741 675.793 216.516 675.74 216.302L673.946 208.967C673.892 208.746 673.907 208.513 673.99 208.3C674.072 208.088 674.217 207.906 674.406 207.778C674.595 207.651 674.818 207.584 675.046 207.588C675.274 207.591 675.495 207.664 675.68 207.797L681.811 212.204C681.99 212.333 682.203 212.405 682.423 212.413C682.644 212.421 682.861 212.363 683.048 212.247L689.47 208.275C689.664 208.156 689.89 208.098 690.117 208.111C690.345 208.123 690.563 208.205 690.742 208.345C690.922 208.485 691.054 208.677 691.121 208.895C691.188 209.112 691.188 209.345 691.118 209.562L688.818 216.755C688.752 216.965 688.749 217.191 688.811 217.402C688.872 217.614 688.995 217.803 689.163 217.945Z" fill="white"/>
|
||||||
|
<path d="M62.9 492.013L68.3659 498.4C68.5307 498.593 68.6325 498.831 68.6575 499.084C68.6826 499.336 68.6298 499.59 68.5062 499.812C68.3826 500.033 68.1941 500.212 67.9661 500.323C67.7382 500.434 67.4816 500.473 67.231 500.434L58.9249 499.134C58.6826 499.096 58.4344 499.131 58.2118 499.234C57.9891 499.337 57.802 499.504 57.674 499.713L53.2879 506.886C53.1558 507.103 52.9602 507.275 52.7274 507.377C52.4946 507.48 52.236 507.508 51.9865 507.459C51.7369 507.41 51.5085 507.285 51.3321 507.102C51.1557 506.919 51.0397 506.686 51 506.435L49.669 498.135C49.6304 497.893 49.5208 497.667 49.354 497.487C49.1872 497.307 48.9707 497.181 48.7319 497.124L40.555 495.169C40.3082 495.11 40.0855 494.976 39.9168 494.787C39.7481 494.597 39.6415 494.361 39.6114 494.109C39.5812 493.857 39.6289 493.602 39.7481 493.378C39.8672 493.154 40.0522 492.972 40.278 492.856L47.762 489.026C47.9795 488.914 48.1593 488.741 48.2786 488.527C48.398 488.314 48.4517 488.07 48.433 487.826L47.766 479.445C47.7457 479.192 47.8035 478.939 47.9315 478.72C48.0595 478.501 48.2515 478.326 48.4817 478.22C48.712 478.113 48.9693 478.08 49.2191 478.124C49.469 478.168 49.6992 478.288 49.879 478.467L55.8349 484.401C56.0089 484.574 56.2302 484.692 56.471 484.739C56.7118 484.787 56.9613 484.762 57.188 484.668L64.952 481.443C65.1863 481.345 65.4449 481.322 65.6928 481.376C65.9408 481.43 66.1663 481.559 66.3388 481.745C66.5113 481.931 66.6226 482.166 66.6577 482.417C66.6928 482.669 66.6499 482.925 66.535 483.151L62.735 490.651C62.6256 490.869 62.583 491.115 62.6123 491.357C62.6417 491.599 62.7417 491.827 62.9 492.013Z" fill="white"/>
|
||||||
|
<path d="M239.839 580.915C241.399 588.874 248.974 594.545 256.876 596.369C264.778 598.193 273.027 596.934 281.038 595.669L316.575 590.057C322.775 589.078 329.14 588.042 334.556 584.868C339.972 581.694 344.299 575.85 343.801 569.593" stroke="white" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M330.885 585.6L330.367 571.076" stroke="white" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M314.207 589.7L313.57 578.328" stroke="white" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M297.682 591.6L297.416 581.182" stroke="white" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M277.193 595.08L276.808 575.174" stroke="white" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M257.57 595.706L257.589 596.92C256.821 586.067 257.585 575.16 259.858 564.52" stroke="white" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M243 586.285C243.087 586.348 243.158 586.43 243.207 586.525C243.256 586.62 243.282 586.725 243.283 586.832C243.284 586.939 243.26 587.045 243.212 587.141C243.165 587.237 243.096 587.321 243.01 587.385C243.379 577.159 247.001 567.318 253.35 559.294" stroke="white" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M546.224 627.876C553.094 634.983 564.362 636.122 573.905 633.548C583.448 630.974 591.805 625.32 600.3 620.267C608.795 615.214 618.016 610.575 627.9 610.408C638.3 610.232 648.2 615.079 656.536 621.299C664.872 627.519 672.049 635.152 680.095 641.745C693.495 652.726 711.111 660.98 727.88 656.622C740.009 653.469 749.494 644.358 759.35 636.622C769.206 628.886 781.339 621.956 793.637 624.369" stroke="white" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M543.539 663.677C550.408 670.784 561.677 671.923 571.22 669.349C580.763 666.775 589.12 661.121 597.615 656.068C606.11 651.015 615.331 646.376 625.215 646.209C635.615 646.034 645.515 650.881 653.85 657.1C662.185 663.319 669.364 670.953 677.41 677.546C690.81 688.527 708.426 696.781 725.195 692.423C737.324 689.27 746.809 680.159 756.665 672.423C766.521 664.687 778.654 657.757 790.952 660.17" stroke="white" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M401.958 615.311L408.271 607.094" stroke="white" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M325.507 700.539L318.575 697.339" stroke="white" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M284.421 647.513L290.214 639.229C290.321 639.304 290.405 639.407 290.458 639.527C290.51 639.646 290.529 639.778 290.512 639.908C290.495 640.037 290.443 640.16 290.361 640.262C290.28 640.364 290.172 640.442 290.049 640.487" stroke="white" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M248.41 696.16L241.46 691.106" stroke="white" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M212.4 631.718C213.841 628.176 216.249 625.111 219.349 622.873" stroke="white" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M424.069 689.774L414.608 686.568" stroke="white" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M278.1 731.54L283.155 722.063" stroke="white" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M612.992 406.898C610.447 409.747 608.759 413.256 608.122 417.022C607.601 420.806 608.16 424.659 609.733 428.139C611.305 431.619 613.829 434.584 617.013 436.693C613.468 438.954 610.83 442.387 609.557 446.394C608.284 450.401 608.458 454.728 610.049 458.62C611.639 462.511 614.545 465.722 618.26 467.691C621.975 469.659 626.262 470.262 630.376 469.393L630.743 469.241C630.093 467.652 629.499 466.052 628.962 464.441C624.023 449.429 622.369 433.53 624.111 417.822C625.854 402.114 630.953 386.964 639.062 373.399L639.339 373.292C643.215 383.362 648.738 392.717 655.682 400.975C661.715 408.187 668.771 414.477 676.626 419.645C688.062 427.098 700.936 432.065 714.414 434.225C709.197 464.888 707.817 496.081 710.306 527.084L710.261 528.203C711.063 528.24 711.87 528.273 712.677 528.307C713.469 528.34 714.261 528.374 715.05 528.409C715.56 528.437 716.079 528.463 716.607 528.489C721.297 528.785 726.3 529.653 728.958 533.412C730.33 535.362 730.786 537.722 731.245 540.094C731.614 542.002 731.984 543.919 732.834 545.638C735.215 550.447 740.701 552.694 745.74 554.538C752.596 557.053 759.783 559.72 767.015 562.414L767.274 561.714C764.268 528.719 763.64 495.55 765.395 462.464C765.542 459.704 765.705 456.942 765.869 454.179C766.692 440.261 767.517 426.32 766.218 412.459C764.661 395.847 759.828 379.092 749.383 366.079C740.249 354.685 727.342 346.827 713.783 341.403C699.167 335.549 683.235 332.274 667.599 334.216C651.963 336.158 636.697 343.694 627.305 356.341C617.913 368.988 615.282 386.922 622.505 400.922C618.834 401.978 615.536 404.049 612.992 406.898ZM705.846 345.587C705.121 345.433 704.408 345.896 704.254 346.621C704.1 347.347 704.563 348.059 705.289 348.213C720.218 351.38 733.562 359.686 742.995 371.683C752.429 383.679 757.353 398.606 756.909 413.861C756.888 414.602 757.471 415.22 758.212 415.242C758.953 415.263 759.572 414.68 759.593 413.939C760.055 398.056 754.928 382.514 745.106 370.023C735.284 357.532 721.39 348.884 705.846 345.587Z" fill="white"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M591.7 444.239C586.679 433.539 583.073 422.231 580.975 410.6C590.4 399.318 595.887 385.74 595.893 371.143C595.893 351.738 586.191 334.142 570.456 321.325C554.354 308.177 531.933 300.033 507.133 300.033C458.103 300.033 418.364 331.87 418.364 371.143C418.364 410.416 458.103 442.253 507.133 442.253C527.736 442.253 546.711 436.623 561.774 427.189C563.188 426.303 564.558 425.39 565.9 424.433C574.5 431.032 583.1 437.634 591.7 444.239ZM475.551 364.797C477.009 361.492 482.209 360.747 484.536 363.511L485.149 364.408C486.868 367.585 484.269 372.149 480.66 372.297C477.051 372.445 474.093 368.102 475.551 364.797ZM511.388 363.511C509.061 360.747 503.861 361.492 502.403 364.797C500.945 368.102 503.903 372.445 507.512 372.297C511.12 372.149 513.72 367.585 512.001 364.408L511.388 363.511ZM529.252 364.797C530.71 361.492 535.91 360.747 538.237 363.511L538.849 364.408C540.568 367.585 537.97 372.149 534.361 372.297C530.752 372.445 527.794 368.102 529.252 364.797Z" fill="white"/>
|
||||||
|
<g opacity="0.1">
|
||||||
|
<path d="M246.253 422.879C242.427 427.179 242.369 433.571 242.098 439.079C241.81 445.529 242.052 451.993 242.819 458.405C243.492 464.468 244.487 470.492 245.798 476.451C247.114 482.351 247.578 489.751 254.014 491.963C256.231 492.724 258.323 491.4 259.572 489.701C262.936 485.124 259.472 478.894 258.293 473.962C256.903 468.233 255.861 462.426 255.174 456.572C254.547 451.079 254.158 445.524 253.908 440.001C253.666 434.655 254.477 428.256 251.553 423.559C250.465 421.811 247.744 421.2 246.253 422.876V422.879Z" fill="white"/>
|
||||||
|
</g>
|
||||||
|
<g opacity="0.1">
|
||||||
|
<path d="M254.248 556.7C246.73 551.977 240.416 560.761 238.709 567.152C237.52 571.601 237.925 576.231 237.291 580.744C236.683 585.074 233.572 586.382 229.719 587.462C220.319 590.096 211.219 592.17 202.328 596.386C197.973 598.449 193.782 600.844 189.793 603.549C185.084 606.749 179.672 609.789 179.693 616.102C179.702 618.796 181.749 622.081 184.614 622.566C190.527 623.566 193.33 620.398 197.783 617.218C201.706 614.417 205.838 611.922 210.142 609.755C218.58 605.505 227.672 604.164 236.384 600.835C245.477 597.36 250.899 590.757 251.611 580.92C251.904 576.873 250.593 572.671 251.543 568.692C251.978 567.258 252.609 565.89 253.418 564.63C254.025 563.499 254.713 562.413 255.475 561.381C255.919 560.594 256.039 559.665 255.81 558.792C255.581 557.918 255.021 557.168 254.248 556.7Z" fill="white"/>
|
||||||
|
</g>
|
||||||
|
<g opacity="0.1">
|
||||||
|
<path d="M641.557 377.9C635.947 381.537 633.181 388.367 630.157 394.157C627.072 400.058 624.939 406.409 623.835 412.976C621.46 426.669 622.346 440.729 626.422 454.015C630.498 467.302 637.648 479.441 647.293 489.447C656.049 498.529 670.086 507.079 665.2 521.503C662.865 528.394 672.94 532.108 676.594 526.303C683.935 514.648 676.609 500.281 668.357 491.417C663.534 486.236 658.073 481.705 653.598 476.194C649.5 471.105 646.022 465.548 643.237 459.638C637.513 447.715 634.848 434.555 635.484 421.345C635.831 414.531 637.247 407.966 638.604 401.311C639.288 397.537 640.38 393.849 641.859 390.311C643.33 386.984 644.859 384.487 645.413 380.858C645.727 378.791 643.675 376.521 641.557 377.893V377.9Z" fill="white"/>
|
||||||
|
</g>
|
||||||
|
<g opacity="0.1">
|
||||||
|
<path d="M634.658 527.036C631.5 533.623 627.585 537.802 620.319 539.696C612.895 541.63 605.072 541.726 597.56 543.311C582.161 546.502 567.54 552.686 554.524 561.511C546.578 567.011 553.937 580.035 562.19 574.625C576.765 564.855 593.308 558.407 610.65 555.734C618.85 554.472 627.319 553.372 634.282 548.478C640.482 544.117 645.833 535.772 642.798 528.1C641.541 524.923 636.487 523.223 634.658 527.036Z" fill="white"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 49 KiB |
|
@ -0,0 +1,130 @@
|
||||||
|
<svg width="960" height="960" viewBox="0 0 960 960" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<g clip-path="url(#clip0_248_1703)">
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M756.356 794.079C757.765 794.195 759.183 794.177 760.59 794.025C766.007 793.47 771.06 791.035 774.868 787.141C778.676 783.248 781 778.144 781.435 772.715L797.373 573.284L795.959 573.167C786.862 569.842 777.198 566.226 767.606 562.636L767.023 562.418C759.791 559.724 752.604 557.057 745.748 554.542C740.709 552.695 735.223 550.448 732.842 545.642C731.992 543.924 731.622 542.008 731.254 540.101C730.796 537.727 730.341 535.367 728.966 533.416C726.308 529.657 721.305 528.793 716.615 528.493L716.597 528.753C710.278 538.169 703.708 547.512 695.519 555.353C687.33 563.194 677.35 569.504 666.243 571.741C661.629 572.663 656.487 572.779 652.629 570.085C648.62 567.284 646.982 562.138 646.409 557.269C645.159 546.293 647.93 535.237 654.209 526.148L654.227 525.773C653.285 525.73 652.344 525.69 651.403 525.65C650.563 525.614 649.723 525.578 648.883 525.54C643.092 525.289 636.442 525.4 632.683 529.8C631.623 531.044 630.908 532.523 630.193 534.005C629.554 535.326 628.915 536.65 628.029 537.811C624.351 542.619 617.581 543.432 611.563 544.154L611.471 544.165C590.433 546.689 570.014 552.942 551.171 562.63L535.956 753.11C535.465 759.267 537.44 765.367 541.446 770.069C545.453 774.77 551.162 777.687 557.32 778.179L756.356 794.079ZM753.411 721.922C755.731 726.029 756.781 730.733 756.428 735.437C755.952 741.744 752.991 747.605 748.196 751.73C743.401 755.856 737.164 757.908 730.857 757.437C726.152 757.084 721.659 755.343 717.943 752.436C714.228 749.529 711.458 745.586 709.985 741.104C708.511 736.623 708.399 731.805 709.663 727.26C710.927 722.715 713.51 718.647 717.086 715.571C720.662 712.494 725.071 710.547 729.753 709.975C734.436 709.404 739.183 710.234 743.394 712.36C747.605 714.487 751.091 717.814 753.411 721.922ZM683.283 715.943C685.603 720.05 686.653 724.754 686.3 729.458C686.066 732.582 685.219 735.629 683.807 738.425C682.395 741.221 680.446 743.712 678.072 745.755C675.697 747.798 672.943 749.353 669.967 750.332C666.992 751.31 663.852 751.693 660.729 751.458C656.024 751.105 651.531 749.364 647.815 746.457C644.1 743.55 641.33 739.607 639.857 735.125C638.383 730.644 638.271 725.826 639.535 721.281C640.799 716.736 643.382 712.668 646.958 709.592C650.534 706.515 654.943 704.568 659.625 703.996C664.308 703.425 669.055 704.255 673.266 706.381C677.477 708.508 680.963 711.835 683.283 715.943ZM608.253 710.752C610.573 714.859 611.623 719.563 611.27 724.267H611.272C611.037 727.391 610.19 730.438 608.778 733.234C607.366 736.03 605.417 738.521 603.042 740.564C600.667 742.607 597.913 744.162 594.937 745.14C591.962 746.119 588.822 746.502 585.699 746.267C580.994 745.914 576.501 744.173 572.785 741.266C569.07 738.359 566.301 734.415 564.827 729.934C563.353 725.453 563.241 720.635 564.505 716.09C565.769 711.545 568.352 707.477 571.928 704.401C575.504 701.324 579.913 699.377 584.595 698.805C589.278 698.234 594.025 699.064 598.236 701.19C602.447 703.317 605.933 706.644 608.253 710.752ZM736.372 560.848C735.662 560.634 734.913 561.035 734.698 561.745C734.484 562.454 734.885 563.204 735.595 563.418L788.944 579.552C789.653 579.767 790.403 579.366 790.617 578.656C790.832 577.946 790.431 577.197 789.721 576.982L736.372 560.848Z" fill="white"/>
|
||||||
|
<path d="M715.051 528.408C715.561 528.435 716.08 528.461 716.608 528.488L716.59 528.748C710.271 538.164 703.702 547.517 695.512 555.348C687.322 563.179 677.343 569.499 666.236 571.736C661.626 572.658 656.48 572.774 652.622 570.08C648.613 567.28 646.975 562.133 646.402 557.264C645.152 546.288 647.923 535.232 654.202 526.143L654.22 525.768L668.442 526.385C682.375 526.994 696.313 527.6 710.257 528.202C711.855 528.274 713.457 528.336 715.051 528.408Z" fill="white"/>
|
||||||
|
<path d="M697.052 473.534C697.123 477.257 695.441 481.134 692.245 483.057C691.066 483.761 689.725 484.147 688.352 484.176L688.325 483.236C689.142 482.248 689.752 481.105 690.118 479.876C690.484 478.647 690.599 477.357 690.457 476.083C690.314 474.808 689.916 473.576 689.287 472.458C688.658 471.341 687.81 470.361 686.795 469.578L685.747 469.378C688.737 468.059 691.302 465.937 693.158 463.247C695.473 466.2 696.831 469.789 697.052 473.534V473.534Z" fill="#171717"/>
|
||||||
|
<path d="M664.3 703.888C669.004 704.241 673.498 705.981 677.213 708.888C680.928 711.795 683.698 715.739 685.172 720.22C686.646 724.701 686.758 729.519 685.494 734.064C684.23 738.609 681.646 742.677 678.07 745.754C674.494 748.83 670.086 750.777 665.403 751.349C660.721 751.92 655.974 751.09 651.763 748.964C647.552 746.838 644.066 743.51 641.746 739.403C639.426 735.295 638.376 730.592 638.729 725.888C638.963 722.764 639.81 719.717 641.222 716.92C642.634 714.124 644.582 711.633 646.957 709.59C649.332 707.547 652.085 705.992 655.061 705.014C658.037 704.035 661.176 703.652 664.3 703.888V703.888Z" fill="#171717"/>
|
||||||
|
<path d="M589.272 698.705C593.975 699.059 598.467 700.8 602.181 703.707C605.895 706.614 608.663 710.558 610.136 715.038C611.609 719.519 611.72 724.336 610.456 728.879C609.191 733.423 606.608 737.49 603.032 740.566C599.456 743.641 595.049 745.587 590.367 746.158C585.685 746.729 580.939 745.899 576.729 743.772C572.519 741.646 569.034 738.319 566.715 734.212C564.396 730.105 563.347 725.403 563.7 720.7C564.174 714.392 567.135 708.531 571.931 704.407C576.726 700.282 582.964 698.231 589.272 698.705V698.705Z" fill="white"/>
|
||||||
|
<path d="M836.273 308L800.016 761.885C798.673 785.021 773.424 795.037 760.59 794.025C766.007 793.471 771.06 791.035 774.868 787.142C778.676 783.249 781 778.144 781.435 772.715L797.366 573.276L817.9 316.152C818.144 313.103 817.785 310.035 816.843 307.124C815.902 304.213 814.396 301.516 812.412 299.188C810.428 296.859 808.005 294.944 805.281 293.551C802.557 292.159 799.585 291.317 796.536 291.073L597.509 275.173C593.891 274.88 590.255 275.439 586.891 276.803C583.528 278.168 580.531 280.301 578.14 283.031C585.972 272.174 597.151 265.873 615.866 267.153L814.902 283.053C817.943 283.288 820.908 284.119 823.628 285.5C826.348 286.881 828.77 288.784 830.754 291.1C832.739 293.417 834.248 296.102 835.195 299.001C836.141 301.901 836.508 304.959 836.273 308V308Z" fill="#171717"/>
|
||||||
|
<path d="M355.437 749.229C356.319 753.862 355.808 758.653 353.967 762.996C352.127 767.339 349.04 771.038 345.097 773.626C341.154 776.215 336.532 777.576 331.815 777.537C327.099 777.498 322.5 776.062 318.599 773.41C314.699 770.758 311.673 767.008 309.904 762.636C308.134 758.264 307.701 753.465 308.659 748.847C309.617 744.228 311.923 739.998 315.285 736.69C318.647 733.382 322.915 731.145 327.548 730.263C330.625 729.676 333.787 729.701 336.854 730.337C339.921 730.973 342.832 732.206 345.422 733.968C348.012 735.729 350.23 737.983 351.948 740.602C353.666 743.221 354.852 746.152 355.437 749.229Z" fill="#171717"/>
|
||||||
|
<path d="M348 525.034C349.489 536.177 347.008 547.489 340.992 556.986H340.983C336.701 563.995 330.736 569.822 323.628 573.938C306.811 583.515 284.703 582.405 268.428 571.938C262.758 568.262 257.795 563.597 253.776 558.164C246.197 547.983 241.94 535.713 241.586 523.025C241.371 513.385 243.645 503.225 250.196 496.147C250.214 496.138 250.223 496.12 250.232 496.111C259.961 485.648 275.499 484.87 288.832 485.425C302.607 486.006 315.632 485.255 327.712 493.225C329.299 494.27 330.818 495.415 332.259 496.653C340.714 503.94 346.295 514.003 348 525.034V525.034ZM288.561 514.356C293.904 503.499 283.755 495.596 273.354 498.29C270.748 499.054 268.481 500.683 266.925 502.909C265.37 505.135 264.62 507.824 264.798 510.534C265.107 513.231 266.284 515.755 268.152 517.726C270.019 519.697 272.476 521.008 275.153 521.462C277.848 521.802 280.581 521.302 282.981 520.03C285.381 518.758 287.33 516.777 288.561 514.356Z" fill="#171717"/>
|
||||||
|
<path d="M281.642 763.738C282.527 768.372 282.017 773.164 280.178 777.508C278.339 781.852 275.252 785.552 271.31 788.142C267.367 790.732 262.745 792.095 258.028 792.057C253.311 792.02 248.711 790.585 244.809 787.933C240.908 785.281 237.881 781.532 236.11 777.159C234.34 772.787 233.906 767.988 234.864 763.369C235.821 758.75 238.127 754.518 241.489 751.21C244.851 747.901 249.12 745.664 253.753 744.781C259.965 743.599 266.393 744.931 271.623 748.486C276.852 752.041 280.456 757.527 281.642 763.738Z" fill="white"/>
|
||||||
|
<path d="M374.599 312.456L422.778 565.337L421.937 565.498C395.857 564.684 369.753 566.052 343.9 569.588C343.898 565.31 343.005 561.079 341.277 557.165L340.991 556.986C347.008 547.489 349.489 536.177 347.999 525.034C346.294 514.002 340.712 503.939 332.255 496.652L332.372 496.518C330.839 465.362 329.314 434.206 327.798 403.05L327.735 402.907C328.783 402.44 329.822 401.94 330.85 401.407C340.839 396.207 349.65 387.696 352.59 376.83C346.536 376.305 340.455 377.461 335.015 380.169C329.575 382.877 324.988 387.033 321.757 392.18C325.551 385.825 329.34 379.471 333.123 373.116C334.394 370.977 335.723 368.453 334.869 366.108C333.687 362.885 329.033 362.366 326.097 364.139C323.161 365.912 321.443 369.07 319.474 371.872C312.636 381.618 301.717 387.857 290.374 391.491C279.031 395.125 267.103 396.413 255.325 398.203C246.643 399.519 237.057 401.694 232.108 408.961C226.496 417.214 229.243 428.214 229.718 438.184C230.185 448.457 227.973 458.675 223.3 467.836C221.081 472.168 218.781 478.478 222.942 481.011C226.791 483.356 231.078 479.239 233.558 475.283C231.035 479.767 230.219 485.012 231.258 490.051C237.788 488.057 243.311 483.646 246.698 477.718L247.369 477.628L249.839 495.842L250.188 496.155C243.637 503.235 241.363 513.393 241.578 523.033C241.932 535.721 246.189 547.991 253.768 558.172L253.634 558.272C250.671 555.292 245.382 555.623 242.142 558.299C238.902 560.975 237.506 565.387 237.532 569.594C237.558 573.801 238.821 577.882 240.074 581.901C220.16 589.409 200.951 598.67 182.674 609.575L180.598 609.969L132.699 358.541C132.126 355.537 132.151 352.449 132.771 349.454C133.392 346.459 134.596 343.616 136.316 341.087C138.036 338.557 140.237 336.392 142.794 334.713C145.351 333.035 148.213 331.877 151.217 331.305L347.362 293.929C350.527 293.322 353.784 293.38 356.924 294.101C360.065 294.822 363.021 296.19 365.603 298.117C367.758 300.195 369.776 302.41 371.644 304.749L371.671 304.776C373.09 307.145 374.081 309.744 374.599 312.456V312.456ZM191.915 474.956C191.915 473.68 191.537 472.432 190.828 471.371C190.119 470.31 189.111 469.483 187.932 468.994C186.753 468.506 185.455 468.378 184.204 468.627C182.952 468.876 181.802 469.491 180.9 470.393C179.997 471.296 179.382 472.445 179.133 473.697C178.884 474.949 179.012 476.246 179.501 477.425C179.989 478.605 180.816 479.612 181.877 480.321C182.939 481.031 184.186 481.409 185.462 481.409C187.174 481.408 188.814 480.729 190.024 479.519C191.235 478.309 191.915 476.668 191.915 474.957V474.956ZM191.539 439.566C191.54 437.089 190.806 434.667 189.431 432.606C188.055 430.546 186.099 428.94 183.811 427.991C181.522 427.042 179.004 426.793 176.574 427.276C174.144 427.758 171.911 428.951 170.159 430.702C168.407 432.453 167.213 434.685 166.729 437.114C166.245 439.544 166.492 442.063 167.439 444.352C168.387 446.641 169.992 448.598 172.051 449.975C174.111 451.352 176.532 452.087 179.009 452.088C182.331 452.087 185.516 450.768 187.865 448.42C190.215 446.073 191.536 442.888 191.539 439.567V439.566Z" fill="white"/>
|
||||||
|
<path d="M352.591 376.826C349.647 387.692 340.84 396.203 330.851 401.403C329.822 401.94 328.784 402.44 327.736 402.903C318.562 407.074 308.536 409.168 298.648 411.209C285.472 413.939 272.297 416.666 259.123 419.39C252.894 420.678 245.832 422.59 243.049 428.304C241.259 431.983 241.769 436.314 242.324 440.369C244.006 452.792 245.688 465.209 247.372 477.62L246.701 477.71C243.313 483.638 237.79 488.049 231.261 490.043C230.221 485.004 231.038 479.759 233.561 475.275C233.65 475.132 233.74 474.989 233.82 474.845C233.731 474.989 233.65 475.132 233.561 475.275C231.081 479.231 226.794 483.348 222.945 481.003C218.784 478.47 221.084 472.16 223.303 467.828C227.976 458.667 230.187 448.449 229.721 438.176C229.246 428.206 226.499 417.206 232.111 408.953C237.06 401.686 246.646 399.511 255.328 398.195C267.106 396.405 279.028 395.107 290.377 391.483C301.726 387.859 312.636 381.61 319.477 371.864C321.446 369.064 323.177 365.894 326.1 364.131C329.023 362.368 333.69 362.877 334.872 366.1C335.722 368.445 334.397 370.969 333.126 373.108C329.34 379.462 325.551 385.817 321.76 392.172C324.99 387.026 329.578 382.871 335.017 380.163C340.457 377.456 346.537 376.301 352.591 376.826V376.826Z" fill="#171717"/>
|
||||||
|
<path d="M347.364 293.929L151.219 331.305C148.214 331.877 145.352 333.035 142.795 334.713C140.238 336.392 138.037 338.557 136.317 341.087C134.597 343.616 133.393 346.459 132.772 349.454C132.151 352.449 132.127 355.537 132.7 358.541L180.6 609.963L218.415 808.463C219.435 813.816 222.299 818.641 226.509 822.101C230.718 825.561 236.007 827.436 241.456 827.4C228.809 829.79 202.62 822.567 198.772 799.717L113.547 352.427C112.414 346.372 113.732 340.115 117.211 335.031C120.69 329.948 126.045 326.453 132.1 325.317L328.238 287.95C345.798 284.808 356.816 289.713 365.605 298.117C363.022 296.19 360.066 294.823 356.926 294.102C353.785 293.38 350.529 293.322 347.364 293.929Z" fill="#171717"/>
|
||||||
|
<path d="M315.358 422.768C308.636 423.529 301.914 424.287 295.193 425.041C292.947 425.301 290.262 425.874 289.483 428.004C289.195 429.141 289.235 430.335 289.599 431.45C293.081 446.79 296.565 462.134 300.053 477.481C297.233 478.796 294.414 480.105 291.595 481.41" stroke="#171717" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M276.854 442.807C276.172 441.815 275.237 441.023 274.147 440.513C273.057 440.004 271.85 439.795 270.651 439.908C269.453 440.021 268.307 440.452 267.331 441.157C266.355 441.862 265.586 442.815 265.102 443.917" stroke="#171717" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M305.128 438.851C306.738 437.598 308.678 436.839 310.711 436.665C312.745 436.492 314.785 436.913 316.584 437.876" stroke="#171717" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M332.256 496.652C330.815 495.414 329.296 494.269 327.709 493.224C315.627 485.259 302.604 486.01 288.829 485.424C275.494 484.869 259.956 485.647 250.229 496.11C250.22 496.119 250.211 496.137 250.193 496.146C243.642 503.226 241.368 513.384 241.583 523.024C241.937 535.712 246.194 547.982 253.773 558.163C257.792 563.596 262.755 568.261 268.425 571.937C284.705 582.4 306.813 583.51 323.625 573.937C330.733 569.821 336.699 563.994 340.98 556.985H340.989C347.006 547.489 349.488 536.177 348 525.034C346.295 514.002 340.713 503.939 332.256 496.652V496.652Z" stroke="#171717" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M273.354 498.29C270.749 499.054 268.481 500.683 266.926 502.909C265.37 505.135 264.62 507.824 264.798 510.534C265.108 513.231 266.284 515.755 268.152 517.726C270.019 519.697 272.476 521.008 275.153 521.462C277.848 521.802 280.582 521.302 282.981 520.03C285.381 518.758 287.33 516.777 288.561 514.356C293.9 503.5 283.755 495.6 273.354 498.29Z" stroke="#171717" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M269.891 506.623C273.301 510.794 280.774 510.454 283.799 505.996" stroke="#171717" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M234.009 474.536C233.946 474.644 233.884 474.751 233.821 474.849C233.732 474.993 233.651 475.136 233.562 475.279C231.039 479.763 230.223 485.008 231.262 490.047C237.792 488.053 243.315 483.642 246.702 477.714" stroke="#171717" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M249.842 495.838L247.372 477.624C245.688 465.21 244.006 452.793 242.324 440.373C241.769 436.318 241.259 431.987 243.049 428.308C245.832 422.598 252.894 420.682 259.123 419.394C272.297 416.673 285.472 413.946 298.648 411.213C308.538 409.172 318.562 407.078 327.736 402.907C328.784 402.441 329.822 401.941 330.851 401.407C340.84 396.207 349.651 387.696 352.591 376.83C346.537 376.306 340.455 377.461 335.015 380.169C329.576 382.877 324.988 387.033 321.758 392.18C325.552 385.826 329.34 379.471 333.124 373.116C334.395 370.977 335.724 368.453 334.87 366.108C333.688 362.885 329.034 362.366 326.098 364.139C323.162 365.912 321.444 369.07 319.475 371.872C312.637 381.618 301.718 387.857 290.375 391.491C279.032 395.125 267.104 396.413 255.326 398.203C246.644 399.519 237.058 401.694 232.109 408.961C226.497 417.214 229.244 428.214 229.719 438.184C230.185 448.457 227.974 458.675 223.301 467.836C221.082 472.168 218.782 478.478 222.943 481.011C226.792 483.356 231.079 479.239 233.559 475.283C233.648 475.14 233.738 474.997 233.818 474.853" stroke="#171717" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M332.373 496.518C330.839 465.362 329.315 434.206 327.799 403.05" stroke="#171717" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M253.637 558.266C250.674 555.286 245.385 555.617 242.145 558.293C238.905 560.969 237.509 565.381 237.535 569.588C237.561 573.795 238.824 577.876 240.077 581.895C220.162 589.403 200.954 598.664 182.677 609.569" stroke="#171717" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M341.278 557.165C343.006 561.079 343.899 565.31 343.901 569.588C369.754 566.052 395.857 564.684 421.938 565.498" stroke="#171717" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M346.72 667.746C348.12 673.993 350.282 680.992 356.064 683.767C361.327 686.3 367.95 684.116 371.995 679.9C376.04 675.684 377.965 669.876 379.147 664.157C381.756 651.428 381.281 638.259 377.759 625.751C377.75 625.715 372.47 626.378 365.954 627.351C355.903 628.851 342.898 631.057 341.699 632.507C337.349 637.789 345.234 661.105 346.72 667.746Z" stroke="#171717" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M369.2 648.127C368.117 641.199 367.034 634.275 365.951 627.353C365.557 624.802 365.151 622.253 364.761 619.701" stroke="#171717" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M669.324 443.318C668.506 442.682 667.522 442.293 666.49 442.199C665.457 442.104 664.42 442.308 663.499 442.785C662.579 443.262 661.815 443.993 661.297 444.891C660.779 445.789 660.53 446.816 660.578 447.852C660.626 448.887 660.97 449.887 661.57 450.733C662.169 451.579 662.998 452.236 663.958 452.625C664.919 453.015 665.971 453.12 666.99 452.93C668.009 452.74 668.952 452.262 669.708 451.552" stroke="#171717" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M648.4 420.485C648.257 418.239 648.1 415.992 647.961 413.746" stroke="#171717" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M658.87 402.361C657.855 401.797 656.788 401.333 655.683 400.974C651.216 399.518 646.368 399.763 642.07 401.663" stroke="#171717" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M676.1 470.822C679.363 471.233 682.677 470.744 685.683 469.41C688.689 468.075 691.274 465.946 693.159 463.25C695.473 466.202 696.831 469.79 697.053 473.534C697.124 477.257 695.442 481.134 692.246 483.057C691.067 483.761 689.725 484.147 688.353 484.176C687.181 484.251 686.008 484.039 684.937 483.558C683.866 483.078 682.927 482.344 682.204 481.419" stroke="#171717" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M688.325 483.236C689.142 482.248 689.752 481.105 690.118 479.876C690.484 478.647 690.599 477.357 690.456 476.083C690.314 474.808 689.916 473.576 689.287 472.458C688.658 471.341 687.81 470.361 686.795 469.578" stroke="#171717" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M639.063 373.4C630.953 386.965 625.854 402.115 624.112 417.823C622.369 433.53 624.024 449.429 628.963 464.442C629.5 466.053 630.094 467.653 630.744 469.242C633.062 474.836 636.186 480.098 640.894 483.822C645.294 487.303 650.802 489.201 655.178 492.727C664.778 500.442 666.948 513.927 668.451 526.156" stroke="#171717" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M630.381 469.39C626.267 470.259 621.979 469.656 618.265 467.687C614.55 465.719 611.644 462.508 610.054 458.617C608.463 454.725 608.289 450.398 609.562 446.391C610.834 442.384 613.473 438.951 617.018 436.69C613.79 434.625 611.231 431.668 609.652 428.176C608.073 424.685 607.541 420.81 608.122 417.022C608.703 413.234 610.372 409.697 612.925 406.84C615.478 403.982 618.806 401.927 622.505 400.925C615.282 386.925 617.913 368.991 627.305 356.344C636.697 343.697 651.963 336.161 667.599 334.219C683.235 332.277 699.167 335.552 713.783 341.406C727.342 346.83 740.249 354.688 749.383 366.082C759.828 379.095 764.661 395.85 766.218 412.462C767.775 429.074 766.281 445.802 765.395 462.467C763.64 495.553 764.268 528.722 767.274 561.717" stroke="#171717" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M637.586 368.332C638.123 370.006 638.705 371.653 639.34 373.291C643.216 383.36 648.739 392.716 655.683 400.974C661.716 408.186 668.772 414.476 676.627 419.644C688.063 427.097 700.937 432.064 714.415 434.224C722.622 435.559 730.968 435.824 739.243 435.012" stroke="#171717" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M714.469 433.9L714.415 434.222C709.198 464.885 707.818 496.077 710.307 527.081" stroke="#171717" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M550.8 562.813C550.925 562.75 551.042 562.687 551.167 562.625C570.01 552.937 590.43 546.684 611.467 544.16C617.508 543.435 624.329 542.639 628.025 537.806C629.905 535.344 630.674 532.149 632.679 529.795C636.438 525.395 643.088 525.284 648.879 525.535C650.66 525.615 652.441 525.687 654.223 525.768L668.445 526.385C682.378 526.994 696.316 527.6 710.26 528.202C711.853 528.274 713.46 528.336 715.049 528.408C715.559 528.435 716.078 528.461 716.606 528.488C721.296 528.788 726.299 529.652 728.957 533.411C731.437 536.929 730.926 541.78 732.833 545.637C735.214 550.443 740.7 552.69 745.739 554.537C752.595 557.052 759.782 559.719 767.014 562.413C776.797 566.074 786.669 569.77 795.95 573.162" stroke="#171717" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M654.206 526.143C647.928 535.232 645.157 546.288 646.406 557.264C646.979 562.133 648.617 567.279 652.626 570.08C656.484 572.774 661.626 572.658 666.24 571.736C677.347 569.499 687.327 563.189 695.516 555.348C703.705 547.507 710.275 538.164 716.594 528.748" stroke="#171717" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M371.673 304.776C373.091 307.145 374.082 309.744 374.6 312.456L422.779 565.337L460.326 762.377C461.481 768.445 460.178 774.724 456.704 779.832C453.23 784.939 447.869 788.458 441.8 789.613L245.662 826.989C244.285 827.254 242.886 827.388 241.483 827.389" stroke="#171717" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M241.455 827.4C236.007 827.435 230.718 825.56 226.509 822.1C222.3 818.639 219.437 813.814 218.417 808.461L180.599 609.963L132.699 358.541C132.126 355.537 132.151 352.449 132.771 349.454C133.392 346.459 134.596 343.616 136.316 341.087C138.036 338.558 140.237 336.392 142.794 334.714C145.351 333.035 148.213 331.877 151.217 331.305L347.362 293.929C352.03 293.045 356.856 293.608 361.196 295.541C365.535 297.475 369.18 300.688 371.644 304.749" stroke="#171717" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M241.483 827.392C241.478 827.392 241.473 827.392 241.469 827.394C241.464 827.395 241.46 827.398 241.456 827.401C228.809 829.791 202.62 822.568 198.772 799.718L113.547 352.428C112.414 346.373 113.731 340.116 117.211 335.032C120.69 329.948 126.045 326.453 132.1 325.317L328.238 287.95C345.798 284.808 356.816 289.713 365.605 298.117C367.76 300.195 369.777 302.411 371.646 304.749L371.673 304.776" stroke="#171717" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M561.965 427.494L551.171 562.625L535.956 753.105C535.465 759.262 537.44 765.362 541.446 770.064C545.453 774.765 551.162 777.682 557.32 778.174L756.356 794.074C757.765 794.19 759.183 794.172 760.59 794.02C766.007 793.465 771.06 791.03 774.868 787.137C778.676 783.243 781 778.139 781.435 772.71L797.366 573.271L817.9 316.152C818.144 313.102 817.785 310.035 816.843 307.124C815.902 304.213 814.396 301.516 812.412 299.187C810.428 296.859 808.005 294.943 805.281 293.551C802.557 292.159 799.585 291.317 796.536 291.073L597.509 275.173C591.35 274.682 585.249 276.656 580.546 280.662C575.843 284.669 572.923 290.379 572.43 296.537L570.452 321.32L570.407 321.911" stroke="#171717" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M760.554 794.025H760.59C773.424 795.037 798.673 785.025 800.016 761.885L836.273 308C836.508 304.959 836.141 301.901 835.194 299.001C834.247 296.101 832.738 293.417 830.754 291.1C828.769 288.784 826.347 286.881 823.627 285.5C820.907 284.12 817.941 283.288 814.9 283.054L615.864 267.154C597.149 265.874 585.97 272.175 578.138 283.032C576.684 285.059 575.36 287.176 574.173 289.369" stroke="#171717" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M566.09 424.3C566.027 424.345 565.956 424.39 565.89 424.435C564.548 425.392 563.178 426.305 561.764 427.191C546.701 436.625 527.726 442.255 507.123 442.255C458.093 442.255 418.354 410.418 418.354 371.145C418.354 331.872 458.093 300.035 507.123 300.035C531.923 300.035 554.345 308.179 570.447 321.327C586.182 334.144 595.883 351.74 595.883 371.145C595.883 385.745 590.396 399.32 580.971 410.606L580.73 410.906" stroke="#171717" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M565.562 424.182C565.67 424.262 565.786 424.352 565.893 424.433C574.493 431.038 583.093 437.64 591.693 444.239C586.674 433.539 583.07 422.231 580.974 410.6C580.93 410.35 580.886 410.09 580.841 409.84" stroke="#171717" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M281.642 763.738C282.527 768.372 282.017 773.164 280.178 777.508C278.339 781.852 275.252 785.552 271.31 788.142C267.367 790.732 262.745 792.095 258.028 792.057C253.311 792.02 248.711 790.585 244.809 787.933C240.908 785.281 237.881 781.532 236.11 777.159C234.34 772.787 233.906 767.988 234.864 763.369C235.821 758.75 238.127 754.518 241.489 751.21C244.851 747.901 249.12 745.664 253.753 744.781C259.965 743.599 266.393 744.931 271.623 748.486C276.852 752.041 280.456 757.527 281.642 763.738Z" stroke="#171717" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M355.437 749.229C356.319 753.862 355.808 758.653 353.967 762.996C352.127 767.339 349.04 771.038 345.097 773.626C341.154 776.215 336.532 777.576 331.815 777.537C327.099 777.498 322.5 776.062 318.599 773.41C314.699 770.758 311.673 767.008 309.904 762.636C308.134 758.264 307.701 753.465 308.659 748.847C309.617 744.228 311.923 739.998 315.285 736.69C318.647 733.382 322.915 731.145 327.548 730.263C330.625 729.676 333.787 729.701 336.854 730.337C339.921 730.973 342.832 732.206 345.422 733.968C348.012 735.729 350.23 737.983 351.948 740.602C353.666 743.221 354.852 746.152 355.437 749.229Z" stroke="#171717" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M424.7 736.752C425.582 741.386 425.071 746.177 423.231 750.52C421.39 754.863 418.303 758.563 414.36 761.152C410.417 763.74 405.795 765.102 401.078 765.063C396.361 765.025 391.762 763.589 387.861 760.936C383.961 758.284 380.934 754.534 379.165 750.162C377.395 745.789 376.962 740.99 377.92 736.372C378.878 731.753 381.184 727.522 384.546 724.214C387.909 720.906 392.177 718.669 396.811 717.787C399.887 717.2 403.049 717.225 406.116 717.86C409.183 718.495 412.095 719.729 414.685 721.49C417.275 723.251 419.493 725.506 421.211 728.125C422.929 730.743 424.115 733.675 424.7 736.752V736.752Z" stroke="#171717" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M611.272 724.268C610.92 728.972 609.181 733.467 606.275 737.184C603.369 740.9 599.426 743.671 594.944 745.146C590.463 746.622 585.645 746.735 581.099 745.472C576.554 744.209 572.485 741.626 569.407 738.05C566.33 734.474 564.382 730.066 563.81 725.383C563.238 720.7 564.067 715.952 566.194 711.741C568.32 707.529 571.647 704.043 575.755 701.723C579.863 699.402 584.567 698.352 589.272 698.706C595.577 699.181 601.437 702.141 605.562 706.934C609.687 711.727 611.741 717.961 611.272 724.268V724.268Z" stroke="#171717" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M686.3 729.458C685.947 734.162 684.207 738.656 681.3 742.371C678.392 746.087 674.449 748.856 669.968 750.33C665.486 751.804 660.669 751.916 656.124 750.652C651.579 749.388 647.511 746.804 644.434 743.228C641.357 739.652 639.41 735.244 638.839 730.561C638.267 725.879 639.097 721.132 641.224 716.921C643.35 712.71 646.678 709.224 650.785 706.904C654.893 704.584 659.596 703.534 664.3 703.887C670.608 704.363 676.468 707.323 680.594 712.118C684.719 716.913 686.772 723.15 686.3 729.458V729.458Z" stroke="#171717" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M756.428 735.437C756.075 740.141 754.335 744.635 751.427 748.35C748.52 752.065 744.577 754.835 740.095 756.309C735.614 757.783 730.796 757.895 726.252 756.631C721.707 755.366 717.639 752.783 714.562 749.207C711.485 745.631 709.538 741.223 708.967 736.54C708.395 731.857 709.225 727.11 711.352 722.899C713.478 718.688 716.806 715.202 720.913 712.882C725.021 710.562 729.724 709.513 734.428 709.866C740.736 710.34 746.598 713.3 750.723 718.096C754.849 722.891 756.901 729.129 756.428 735.437V735.437Z" stroke="#171717" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M237.822 330.204L245.949 327.984" stroke="#171717" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M257.047 325.3C258.309 325.3 286.61 318.981 286.61 318.981" stroke="#171717" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M673.638 295.164L682.051 295.557" stroke="#171717" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M693.436 296.426C694.636 296.819 723.509 299.526 723.509 299.526" stroke="#171717" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M316.432 799.565L353.495 791.555" stroke="#171717" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M637.801 770.504L676.931 773.449" stroke="#171717" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M191.54 439.567C191.539 442.044 190.804 444.465 189.428 446.525C188.051 448.584 186.095 450.189 183.806 451.136C181.517 452.084 178.999 452.332 176.57 451.848C174.14 451.365 171.909 450.172 170.157 448.42C168.406 446.669 167.213 444.437 166.729 442.008C166.246 439.578 166.493 437.06 167.441 434.771C168.389 432.483 169.993 430.526 172.053 429.15C174.112 427.773 176.533 427.038 179.01 427.037C180.656 427.036 182.286 427.36 183.806 427.99C185.327 428.619 186.708 429.542 187.872 430.706C189.035 431.869 189.958 433.251 190.588 434.771C191.217 436.292 191.541 437.921 191.54 439.567V439.567Z" stroke="#171717" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M185.463 481.41C189.027 481.41 191.916 478.521 191.916 474.957C191.916 471.393 189.027 468.504 185.463 468.504C181.899 468.504 179.01 471.393 179.01 474.957C179.01 478.521 181.899 481.41 185.463 481.41Z" stroke="#171717" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M577.18 463.25C581.501 463.25 585.003 459.748 585.003 455.427C585.003 451.106 581.501 447.604 577.18 447.604C572.86 447.604 569.357 451.106 569.357 455.427C569.357 459.748 572.86 463.25 577.18 463.25Z" stroke="#171717" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M409.083 752.884C410.919 750.957 412.245 748.602 412.939 746.032C413.633 743.463 413.674 740.76 413.058 738.17C412.442 735.581 411.189 733.186 409.412 731.205C407.635 729.223 405.39 727.717 402.883 726.823" stroke="#171717" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M402.9 748.511C403.891 747.634 404.642 746.519 405.081 745.27C405.52 744.022 405.633 742.682 405.409 741.378C405.184 740.073 404.631 738.848 403.8 737.818C402.969 736.788 401.888 735.987 400.661 735.492" stroke="#171717" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M265.027 773.272L247.178 776.344L244.571 761.193L262.42 758.121L263.527 764.555L265.027 773.272Z" stroke="#171717" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M272.175 756.443L274.603 770.556L263.527 764.555L271.665 756.584" stroke="#171717" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M590.826 729.887L572.732 729.098L573.402 713.739L591.496 714.528L591.212 721.05L590.826 729.887Z" stroke="#171717" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M601.385 714.959L600.762 729.266L591.213 721.05L600.857 714.989" stroke="#171717" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M395.347 746.531C395.842 746.093 396.217 745.535 396.437 744.911C396.656 744.287 396.712 743.617 396.6 742.965C396.488 742.313 396.211 741.7 395.796 741.185C395.38 740.67 394.84 740.27 394.227 740.022" stroke="#171717" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M737.039 747.454C739.211 745.915 740.963 743.856 742.136 741.467C743.309 739.077 743.867 736.433 743.757 733.773C743.648 731.113 742.876 728.523 741.51 726.238C740.145 723.953 738.23 722.045 735.939 720.688" stroke="#171717" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M731.81 741.979C732.951 741.309 733.902 740.358 734.572 739.217C735.243 738.076 735.61 736.783 735.64 735.46C735.67 734.136 735.362 732.828 734.744 731.657C734.126 730.487 733.219 729.494 732.11 728.772" stroke="#171717" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M724.775 738.589C725.345 738.254 725.82 737.778 726.155 737.208C726.489 736.638 726.673 735.991 726.687 735.33C726.702 734.669 726.548 734.015 726.239 733.43C725.93 732.846 725.477 732.35 724.922 731.989" stroke="#171717" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M90.9322 515.977C78.1872 544.94 69.4652 576.012 68.7082 607.647C68.4292 619.306 69.3772 631.488 75.2912 641.541C81.2052 651.594 93.2912 658.806 104.564 655.83C115.837 652.854 122.604 637.201 114.864 628.476C107.551 620.233 92.6232 623.559 86.6132 632.795C80.6032 642.031 81.7962 654.363 85.9652 664.564C90.1342 674.765 96.9062 683.669 101.983 693.45C107.06 703.231 110.441 714.726 107.135 725.238C103.829 735.75 91.7272 743.885 81.5422 739.68" stroke="#171717" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M897.381 412.2L916.393 506.779C918.331 516.421 920.279 526.229 919.373 536.022C918.467 545.815 914.28 555.77 906.2 561.376C898.12 566.982 885.811 566.862 879.295 559.495C872.779 552.128 875.679 538.072 885.182 535.54C899.568 537.162 896.082 579.963 883.537 598.14C877.946 606.24 870.318 612.833 865.193 621.24C860.068 629.647 857.958 641.15 863.93 648.973C869.902 656.796 885.445 655.3 886.881 645.564" stroke="#171717" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M216.733 279.57L197.752 260.644" stroke="#171717" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M197.824 281.075L214.724 261.445" stroke="#171717" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M259.15 245.7L273.05 229.273" stroke="#171717" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M274.41 241.758L259.23 231.676" stroke="#171717" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M390.716 244.279L364.16 217.765" stroke="#171717" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M470.452 229.267L469.036 131.975" stroke="#171717" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M552.189 233.042C554.056 222.98 558.902 213.71 566.099 206.435" stroke="#171717" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M780.3 232.327L769.543 217.966" stroke="#171717" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M765.816 230.5L779.716 220.393" stroke="#171717" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M732.988 255.806L721.616 245.7" stroke="#171717" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M731.724 245.7L719.089 257.07" stroke="#171717" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M893.461 624.768L906.097 615.923" stroke="#171717" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M902.306 627.295L895.988 614.66" stroke="#171717" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M875.771 516.1L884.616 513.573" stroke="#171717" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M881.034 521.113L878.455 508.488" stroke="#171717" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M99.748 600.57L108.548 591.676" stroke="#171717" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M107.661 600.655L100.042 590.575" stroke="#171717" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M80.9743 704.394C79.4608 703.444 77.7118 702.936 75.9249 702.928C74.138 702.92 72.3844 703.411 70.8623 704.348" stroke="#171717" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M75.6388 698.034L74.4658 714.467" stroke="#171717" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M689.163 217.945L694.925 222.825C695.1 222.972 695.224 223.169 695.283 223.389C695.342 223.61 695.331 223.843 695.253 224.057C695.175 224.271 695.034 224.456 694.847 224.587C694.661 224.719 694.438 224.789 694.21 224.79L686.66 224.829C686.44 224.83 686.225 224.897 686.043 225.02C685.86 225.144 685.718 225.318 685.634 225.522L682.774 232.509C682.688 232.72 682.539 232.9 682.348 233.024C682.157 233.147 681.932 233.21 681.704 233.202C681.476 233.194 681.256 233.116 681.074 232.98C680.891 232.843 680.755 232.654 680.683 232.437L678.313 225.268C678.245 225.059 678.115 224.875 677.942 224.739C677.768 224.603 677.558 224.522 677.338 224.506L669.808 223.945C669.581 223.929 669.364 223.843 669.187 223.699C669.01 223.555 668.882 223.361 668.819 223.141C668.756 222.922 668.762 222.689 668.835 222.473C668.909 222.258 669.047 222.07 669.231 221.935L675.316 217.465C675.494 217.335 675.63 217.155 675.705 216.948C675.781 216.741 675.793 216.516 675.74 216.302L673.946 208.967C673.892 208.746 673.907 208.513 673.99 208.3C674.072 208.088 674.217 207.906 674.406 207.778C674.595 207.651 674.818 207.584 675.046 207.588C675.274 207.591 675.495 207.664 675.68 207.797L681.811 212.204C681.99 212.333 682.203 212.405 682.423 212.413C682.644 212.421 682.861 212.363 683.048 212.247L689.47 208.275C689.664 208.156 689.89 208.098 690.117 208.111C690.345 208.123 690.563 208.205 690.742 208.345C690.922 208.485 691.054 208.677 691.121 208.895C691.188 209.112 691.188 209.345 691.118 209.562L688.818 216.755C688.752 216.965 688.749 217.191 688.811 217.402C688.872 217.614 688.995 217.803 689.163 217.945Z" fill="#171717"/>
|
||||||
|
<path d="M62.9 492.013L68.3659 498.4C68.5307 498.593 68.6325 498.831 68.6575 499.084C68.6826 499.336 68.6298 499.59 68.5062 499.812C68.3826 500.033 68.1941 500.212 67.9661 500.323C67.7382 500.434 67.4816 500.473 67.231 500.434L58.9249 499.134C58.6826 499.096 58.4344 499.131 58.2118 499.234C57.9891 499.337 57.802 499.504 57.674 499.713L53.2879 506.886C53.1558 507.103 52.9602 507.275 52.7274 507.377C52.4946 507.48 52.236 507.508 51.9865 507.459C51.7369 507.41 51.5085 507.285 51.3321 507.102C51.1557 506.919 51.0397 506.686 51 506.435L49.669 498.135C49.6304 497.893 49.5208 497.667 49.354 497.487C49.1872 497.307 48.9707 497.181 48.7319 497.124L40.555 495.169C40.3082 495.11 40.0855 494.976 39.9168 494.787C39.7481 494.597 39.6415 494.361 39.6114 494.109C39.5812 493.857 39.6289 493.602 39.7481 493.378C39.8672 493.154 40.0522 492.972 40.278 492.856L47.762 489.026C47.9795 488.914 48.1593 488.741 48.2786 488.527C48.398 488.314 48.4517 488.07 48.433 487.826L47.766 479.445C47.7457 479.192 47.8035 478.939 47.9315 478.72C48.0595 478.501 48.2515 478.326 48.4817 478.22C48.712 478.113 48.9693 478.08 49.2191 478.124C49.469 478.168 49.6992 478.288 49.879 478.467L55.8349 484.401C56.0089 484.574 56.2302 484.692 56.471 484.739C56.7118 484.787 56.9613 484.762 57.188 484.668L64.952 481.443C65.1863 481.345 65.4449 481.322 65.6928 481.376C65.9408 481.43 66.1663 481.559 66.3388 481.745C66.5113 481.931 66.6226 482.166 66.6577 482.417C66.6928 482.669 66.6499 482.925 66.535 483.151L62.735 490.651C62.6256 490.869 62.583 491.115 62.6123 491.357C62.6417 491.599 62.7417 491.827 62.9 492.013V492.013Z" fill="#171717"/>
|
||||||
|
<path d="M239.839 580.915C241.399 588.874 248.974 594.545 256.876 596.369C264.778 598.193 273.027 596.934 281.038 595.669L316.575 590.057C322.775 589.078 329.14 588.042 334.556 584.868C339.972 581.694 344.299 575.85 343.801 569.593" stroke="#171717" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M330.885 585.6L330.367 571.076" stroke="#171717" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M314.207 589.7L313.57 578.328" stroke="#171717" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M297.682 591.6L297.416 581.182" stroke="#171717" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M277.193 595.08L276.808 575.174" stroke="#171717" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M257.57 595.706L257.589 596.92C256.821 586.067 257.585 575.16 259.858 564.52" stroke="#171717" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M243 586.285C243.087 586.348 243.158 586.43 243.207 586.525C243.256 586.62 243.282 586.725 243.283 586.832C243.284 586.939 243.26 587.045 243.212 587.141C243.165 587.237 243.096 587.321 243.01 587.385C243.379 577.159 247.001 567.318 253.35 559.294" stroke="#171717" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M546.224 627.876C553.094 634.983 564.362 636.122 573.905 633.548C583.448 630.974 591.805 625.32 600.3 620.267C608.795 615.214 618.016 610.575 627.9 610.408C638.3 610.232 648.2 615.079 656.536 621.299C664.872 627.519 672.049 635.152 680.095 641.745C693.495 652.726 711.111 660.98 727.88 656.622C740.009 653.469 749.494 644.358 759.35 636.622C769.206 628.886 781.339 621.956 793.637 624.369" stroke="#171717" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M543.539 663.677C550.408 670.784 561.677 671.923 571.22 669.349C580.763 666.775 589.12 661.121 597.615 656.068C606.11 651.015 615.331 646.376 625.215 646.209C635.615 646.034 645.515 650.881 653.85 657.1C662.185 663.319 669.364 670.953 677.41 677.546C690.81 688.527 708.426 696.781 725.195 692.423C737.324 689.27 746.809 680.159 756.665 672.423C766.521 664.687 778.654 657.757 790.952 660.17" stroke="#171717" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M401.958 615.311L408.271 607.094" stroke="#171717" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M325.507 700.539L318.575 697.339" stroke="#171717" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M284.421 647.513L290.214 639.229C290.321 639.304 290.405 639.407 290.458 639.527C290.51 639.646 290.529 639.778 290.512 639.908C290.495 640.037 290.443 640.16 290.361 640.262C290.28 640.364 290.172 640.442 290.049 640.487" stroke="#171717" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M248.41 696.16L241.46 691.106" stroke="#171717" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M212.4 631.718C213.841 628.176 216.249 625.111 219.349 622.873" stroke="#171717" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M424.069 689.774L414.608 686.568" stroke="#171717" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M278.1 731.54L283.155 722.063" stroke="#171717" stroke-width="2.685" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M612.992 406.898C610.447 409.747 608.759 413.256 608.122 417.022C607.601 420.806 608.16 424.659 609.733 428.139C611.305 431.619 613.829 434.584 617.013 436.693C613.468 438.954 610.83 442.387 609.557 446.394C608.284 450.401 608.458 454.728 610.049 458.62C611.639 462.511 614.545 465.722 618.26 467.691C621.975 469.659 626.262 470.262 630.376 469.393L630.743 469.241C630.093 467.652 629.499 466.052 628.962 464.441C624.023 449.429 622.369 433.53 624.111 417.822C625.854 402.114 630.953 386.964 639.062 373.399L639.339 373.292C643.215 383.362 648.738 392.717 655.682 400.975C661.715 408.187 668.771 414.477 676.626 419.645C688.062 427.098 700.936 432.065 714.414 434.225C709.197 464.888 707.817 496.081 710.306 527.084L710.261 528.203C711.063 528.24 711.87 528.273 712.677 528.307C713.469 528.34 714.261 528.374 715.05 528.409C715.56 528.437 716.079 528.463 716.607 528.489C721.297 528.785 726.3 529.653 728.958 533.412C730.33 535.362 730.786 537.722 731.245 540.094C731.614 542.002 731.984 543.919 732.834 545.638C735.215 550.447 740.701 552.694 745.74 554.538C752.596 557.053 759.783 559.72 767.015 562.414L767.274 561.714C764.268 528.719 763.64 495.55 765.395 462.464C765.542 459.704 765.705 456.942 765.869 454.179C766.692 440.261 767.517 426.32 766.218 412.459C764.661 395.847 759.828 379.092 749.383 366.079C740.249 354.685 727.342 346.827 713.783 341.403C699.167 335.549 683.235 332.274 667.599 334.216C651.963 336.158 636.697 343.694 627.305 356.341C617.913 368.988 615.282 386.922 622.505 400.922C618.834 401.978 615.536 404.049 612.992 406.898ZM705.846 345.587C705.121 345.433 704.408 345.896 704.254 346.621C704.1 347.347 704.563 348.059 705.289 348.213C720.218 351.38 733.562 359.686 742.995 371.683C752.429 383.679 757.353 398.606 756.909 413.861C756.888 414.602 757.471 415.22 758.212 415.242C758.953 415.263 759.572 414.68 759.593 413.939C760.055 398.056 754.928 382.514 745.106 370.023C735.284 357.532 721.39 348.884 705.846 345.587Z" fill="#171717"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M591.7 444.239C586.679 433.539 583.073 422.231 580.975 410.6C590.4 399.318 595.887 385.74 595.893 371.143C595.893 351.738 586.191 334.142 570.456 321.325C554.354 308.177 531.933 300.033 507.133 300.033C458.103 300.033 418.364 331.87 418.364 371.143C418.364 410.416 458.103 442.253 507.133 442.253C527.736 442.253 546.711 436.623 561.774 427.189C563.188 426.303 564.558 425.39 565.9 424.433C574.5 431.032 583.1 437.634 591.7 444.239ZM475.551 364.797C477.009 361.492 482.209 360.747 484.536 363.511L485.149 364.408C486.868 367.585 484.269 372.149 480.66 372.297C477.051 372.445 474.093 368.102 475.551 364.797ZM511.388 363.511C509.061 360.747 503.861 361.492 502.403 364.797C500.945 368.102 503.903 372.445 507.512 372.297C511.12 372.149 513.72 367.585 512.001 364.408L511.388 363.511ZM529.252 364.797C530.71 361.492 535.91 360.747 538.237 363.511L538.849 364.408C540.568 367.585 537.97 372.149 534.361 372.297C530.752 372.445 527.794 368.102 529.252 364.797Z" fill="#171717"/>
|
||||||
|
<g opacity="0.1">
|
||||||
|
<path d="M246.253 422.879C242.427 427.179 242.369 433.571 242.098 439.079C241.81 445.529 242.052 451.993 242.819 458.405C243.492 464.468 244.487 470.492 245.798 476.451C247.114 482.351 247.578 489.751 254.014 491.963C256.231 492.724 258.323 491.4 259.572 489.701C262.936 485.124 259.472 478.894 258.293 473.962C256.903 468.233 255.861 462.426 255.174 456.572C254.547 451.079 254.158 445.524 253.908 440.001C253.666 434.655 254.477 428.256 251.553 423.559C250.465 421.811 247.744 421.2 246.253 422.876V422.879Z" fill="#171717"/>
|
||||||
|
</g>
|
||||||
|
<g opacity="0.1">
|
||||||
|
<path d="M254.248 556.7C246.73 551.977 240.416 560.761 238.709 567.152C237.52 571.601 237.925 576.231 237.291 580.744C236.683 585.074 233.572 586.382 229.719 587.462C220.319 590.096 211.219 592.17 202.328 596.386C197.973 598.449 193.782 600.844 189.793 603.549C185.084 606.749 179.672 609.789 179.693 616.102C179.702 618.796 181.749 622.081 184.614 622.566C190.527 623.566 193.33 620.398 197.783 617.218C201.706 614.417 205.838 611.922 210.142 609.755C218.58 605.505 227.672 604.164 236.384 600.835C245.477 597.36 250.899 590.757 251.611 580.92C251.904 576.873 250.593 572.671 251.543 568.692C251.978 567.258 252.609 565.89 253.418 564.63C254.025 563.499 254.713 562.413 255.475 561.381C255.919 560.594 256.039 559.665 255.81 558.792C255.581 557.918 255.021 557.168 254.248 556.7V556.7Z" fill="#171717"/>
|
||||||
|
</g>
|
||||||
|
<g opacity="0.1">
|
||||||
|
<path d="M641.557 377.9C635.947 381.537 633.181 388.367 630.157 394.157C627.072 400.058 624.939 406.409 623.835 412.976C621.46 426.669 622.346 440.729 626.422 454.015C630.498 467.302 637.648 479.441 647.293 489.447C656.049 498.529 670.086 507.079 665.2 521.503C662.865 528.394 672.94 532.108 676.594 526.303C683.935 514.648 676.609 500.281 668.357 491.417C663.534 486.236 658.073 481.705 653.598 476.194C649.5 471.105 646.022 465.548 643.237 459.638C637.513 447.715 634.848 434.555 635.484 421.345C635.831 414.531 637.247 407.966 638.604 401.311C639.288 397.537 640.38 393.849 641.859 390.311C643.33 386.984 644.859 384.487 645.413 380.858C645.727 378.791 643.675 376.521 641.557 377.893V377.9Z" fill="#171717"/>
|
||||||
|
</g>
|
||||||
|
<g opacity="0.1">
|
||||||
|
<path d="M634.658 527.036C631.5 533.623 627.585 537.802 620.319 539.696C612.895 541.63 605.072 541.726 597.56 543.311C582.161 546.502 567.54 552.686 554.524 561.511C546.578 567.011 553.937 580.035 562.19 574.625C576.765 564.855 593.308 558.407 610.65 555.734C618.85 554.472 627.319 553.372 634.282 548.478C640.482 544.117 645.833 535.772 642.798 528.1C641.541 524.923 636.487 523.223 634.658 527.036V527.036Z" fill="#171717"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<defs>
|
||||||
|
<clipPath id="clip0_248_1703">
|
||||||
|
<rect width="882" height="700" fill="white" transform="translate(39 130)"/>
|
||||||
|
</clipPath>
|
||||||
|
</defs>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 49 KiB |
After Width: | Height: | Size: 34 KiB |
After Width: | Height: | Size: 34 KiB |
|
@ -0,0 +1,146 @@
|
||||||
|
<svg width="960" height="960" viewBox="0 0 960 960" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<g clip-path="url(#clip0_1_4977)">
|
||||||
|
<mask id="mask0_1_4977" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="0" y="0" width="960" height="960">
|
||||||
|
<path d="M960 0H0V960H960V0Z" fill="white"/>
|
||||||
|
</mask>
|
||||||
|
<g mask="url(#mask0_1_4977)">
|
||||||
|
<mask id="mask1_1_4977" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="106" y="39" width="748" height="883">
|
||||||
|
<path d="M854 39H106V922H854V39Z" fill="white"/>
|
||||||
|
</mask>
|
||||||
|
<g mask="url(#mask1_1_4977)">
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M566.783 838.028C566.466 842.819 566.265 848.117 568.735 852.075C569.048 852.582 569.404 853.062 569.797 853.51C573.934 858.185 581.142 858.08 587.369 857.594C595.443 856.961 604.688 855.674 609.11 848.887C611.6 845.032 611.938 840.212 612.181 835.632C616.825 746.112 612.991 656.354 600.73 567.556C595.288 528.17 587.922 488.192 568.83 453.301L568.862 452.774L513.782 449.544L513.74 450.304C513.697 453.101 513.634 455.894 513.518 458.694L514.056 458.715C558.171 579.493 575.416 709.728 566.783 838.028ZM565.392 470.282C565.116 469.452 564.22 469.003 563.391 469.279C562.561 469.554 562.112 470.45 562.387 471.28C600.838 587.068 600.097 711.733 598.948 834.085C598.939 834.959 599.642 835.675 600.516 835.683C601.39 835.691 602.105 834.989 602.114 834.115C603.262 711.853 604.036 586.652 565.392 470.282Z" fill="#1E1E1E"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M717.459 404.186C716.431 398.786 713.818 393.814 709.954 389.905C705.954 386.135 700.92 383.643 695.497 382.746C690.074 381.849 684.506 382.589 679.505 384.871L679.463 384.85C674.629 393.799 674.851 404.796 680.835 413.06C683.975 417.257 688.231 420.488 693.118 422.383C698.005 424.279 703.326 424.764 708.475 423.783C711.156 423.226 713.725 422.223 716.075 420.817L715.727 420.226C717.884 415.17 718.487 409.586 717.459 404.186ZM694.088 386.185C693.216 386.121 692.457 386.775 692.392 387.647C692.327 388.519 692.982 389.278 693.854 389.343C697.114 389.585 700.223 390.819 702.762 392.879C705.301 394.939 707.148 397.727 708.056 400.868C708.299 401.708 709.176 402.192 710.016 401.95C710.856 401.707 711.34 400.829 711.097 399.989C710.01 396.227 707.798 392.888 704.757 390.421C701.716 387.953 697.993 386.475 694.088 386.185Z" fill="#FAFAFA"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M535.638 91.1921C535.996 82.4321 530.573 73.4511 522.267 70.6441C513.972 67.8261 503.607 72.3 500.821 80.604C494.784 74.429 486.531 70.0391 477.898 70.0291C469.265 70.0191 460.442 74.9901 457.234 83.0111C456.862 83.9442 456.553 84.9229 456.244 85.9016C455.425 88.4975 454.606 91.0932 452.591 92.8361C450.641 94.5182 448.026 94.9873 445.445 95.4505C444.766 95.5721 444.09 95.6934 443.429 95.8361C438.181 96.9531 433.393 99.6289 429.691 103.513C425.989 107.397 423.547 112.309 422.683 117.605C421.82 122.901 422.576 128.334 424.852 133.193C427.128 138.052 430.819 142.11 435.441 144.836L436.369 145.85C437.21 145.376 438.117 145.031 439.061 144.826C442.027 144.15 445.129 144.636 448.136 145.111C454.609 146.148 461.079 147.179 467.545 148.203C469.884 148.662 472.132 149.496 474.204 150.673L475.915 150.662C478.204 146.979 479.481 142.757 479.616 138.423C479.751 134.089 478.74 129.795 476.684 125.977C480.516 125.94 484.294 125.067 487.754 123.419C491.213 121.771 494.272 119.388 496.715 116.436C505.339 117.977 514.593 116.943 522.15 112.489C527.629 109.26 531.862 104.283 534.171 98.3581C535.033 96.0611 535.528 93.6429 535.638 91.1921ZM523.461 72.1461C522.737 71.6554 521.753 71.844 521.262 72.5676C520.771 73.2911 520.96 74.2756 521.684 74.7663C524.413 76.6177 526.574 79.192 527.925 82.2012C529.275 85.2105 529.762 88.5361 529.33 91.8061C529.215 92.6728 529.825 93.4682 530.692 93.5826C531.559 93.697 532.354 93.0871 532.469 92.2204C532.977 88.3681 532.404 84.4502 530.813 80.9051C529.222 77.3599 526.677 74.3272 523.461 72.1461Z" fill="#FAFAFA"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M558.688 156.066C563.353 151.327 566.012 144.381 564.661 137.881C563.31 131.37 557.453 125.787 550.8 125.7C552.209 122.909 552.901 119.811 552.813 116.686C552.725 113.561 551.86 110.507 550.296 107.8C548.732 105.093 546.518 102.818 543.855 101.181C541.192 99.5441 538.162 98.5961 535.041 98.4229L534.176 98.3599C532.306 103.22 529.115 107.46 524.962 110.602L525.332 111.056C533.087 117.333 538.732 125.836 541.507 135.419C544.283 145.002 544.055 155.206 540.856 164.656L541.088 164.73C547.617 163.517 554.023 160.805 558.688 156.066ZM543.349 102.639C542.622 102.152 541.639 102.347 541.153 103.073C540.666 103.799 540.86 104.783 541.587 105.269C543.964 106.862 545.837 109.1 546.985 111.721C548.133 114.343 548.509 117.237 548.067 120.065C547.932 120.928 548.523 121.738 549.386 121.873C550.25 122.008 551.06 121.417 551.195 120.553C551.73 117.13 551.275 113.625 549.885 110.451C548.495 107.277 546.227 104.567 543.349 102.639Z" fill="#FAFAFA"/>
|
||||||
|
<path d="M757.361 367.51C759.884 372.069 757.636 377.694 755.345 382.37C739.557 414.632 722.299 446.117 703.569 476.826L701.796 475.665C681.799 464.248 662.456 451.722 643.856 438.146L644.656 437.038C662.029 402.073 678.831 368.7 696.199 333.749L697.519 331.437C699.534 332.588 701.561 333.749 703.576 334.909C719.259 343.88 734.942 352.851 750.625 361.821C753.214 363.3 755.926 364.9 757.361 367.51ZM729.067 413.71C730.1 410.213 730.518 406.564 730.301 402.924C729.826 394.418 726.175 386.144 721.183 379.147C715.442 371.105 703.59 369.638 694.583 372.34C688.22 374.374 682.583 378.208 678.352 383.379C677.74 384.107 677.152 384.846 676.589 385.616C670.12 394.416 667.133 406.185 670.5 416.581C674.51 428.939 687.629 437.509 700.6 436.707C713.571 435.905 725.362 426.157 729.067 413.714V413.71Z" fill="#1E1E1E"/>
|
||||||
|
<path d="M726.493 185.183C726.826 192.143 726.497 199.118 725.511 206.016L724.287 205.837C707.62 203.336 691.04 200.325 674.547 196.803L673.101 196.539C673.854 192.297 674.022 187.972 673.601 183.685C673.369 181.447 673.211 178.703 675.089 177.469C676 176.958 677.059 176.775 678.089 176.951C678.512 176.994 678.923 177.057 679.324 177.131C691.978 179.284 704.632 181.444 717.286 183.611C720.35 184.139 723.421 184.656 726.493 185.183Z" fill="#1E1E1E"/>
|
||||||
|
<path d="M625.851 885.889L650.515 919.389C637.245 921.313 623.712 918.726 612.087 912.043C600.461 905.36 591.416 894.969 586.399 882.533L585.85 882.786C585.069 889.224 585.586 894.48 584.15 900.801C583.761 903.247 582.839 905.578 581.45 907.63C579.16 910.553 575.213 911.756 571.498 911.608C567.783 911.46 564.248 910.141 560.776 908.854C564.671 890.123 567.329 871.155 568.733 852.075C569.049 852.582 569.405 853.062 569.799 853.51C573.936 858.185 581.144 858.08 587.371 857.594C595.445 856.961 604.69 855.673 609.112 848.887C610.01 861.89 618.126 875.388 625.851 885.889Z" fill="#FAFAFA"/>
|
||||||
|
<path d="M526.614 227.821C530.234 235.039 533.062 242.944 532.577 251.007C532.092 259.07 527.669 267.281 520.208 270.363C511.997 273.772 502.362 270.257 495.459 264.653C489.016 259.429 484.155 252.515 481.421 244.684C478.686 236.853 478.186 228.416 479.977 220.317L479.808 219.842C482.858 218.744 485.954 217.777 489.096 216.942C489.317 220.234 489.539 223.527 489.929 226.788C491.206 237.5 494.921 248.898 503.976 254.756C506.649 256.656 509.91 257.542 513.176 257.256C517.883 256.591 521.598 252.37 522.59 247.726C523.582 243.082 522.231 238.164 519.857 234.048C517.483 229.932 514.157 226.448 510.865 223.03L510.59 222.618C510.256 221.323 510.055 219.997 509.99 218.661L510.602 218.629C516.048 221.447 521.515 224.265 527.024 226.977L526.614 227.821Z" fill="#1E1E1E"/>
|
||||||
|
<path d="M211.744 613.138C219.997 604.547 228.25 595.949 236.503 587.344L237.157 586.775C243.652 594.335 250.55 601.54 257.822 608.357C278.222 627.357 302.696 642.836 329.988 648.514C357.28 654.192 387.58 649.052 408.856 631.048C429.162 613.866 439.156 587.44 444.929 561.488C453.372 523.45 454.522 484.155 448.317 445.688C470.142 446.976 491.963 448.26 513.782 449.54L513.74 450.3C513.697 453.1 513.634 455.894 513.518 458.69C511.439 515.075 496.528 570.244 469.92 620C456.148 645.688 438.576 670.447 413.62 685.507C379.626 706.023 335.543 705.407 298.964 689.95C262.744 674.626 233.288 646.258 210.464 614.206L211.34 613.573C211.47 613.423 211.607 613.286 211.744 613.138Z" fill="#1E1E1E"/>
|
||||||
|
<path d="M475.018 165.057C483.186 172.192 486.543 183.98 484.442 194.557C483.608 198.935 481.758 203.056 479.042 206.588C475.496 211.126 470.335 214.715 464.583 215.074C458.831 215.433 452.71 211.823 451.37 206.23C445.84 215.074 431.93 217.047 424.162 210.092C416.394 203.137 416.827 189.092 425.007 182.631C420.352 186.167 412.828 182.462 411.382 176.806C409.936 171.15 413.26 165.123 417.988 161.693C422.548 158.379 428.173 156.986 433.703 155.825C434.334 156.809 435.134 157.673 436.067 158.379C438.467 160.194 441.449 161.017 444.362 161.756C452.581 163.823 465.963 168 475.018 165.057Z" fill="#FAFAFA"/>
|
||||||
|
<path d="M433.7 155.823C432.654 154.285 432.256 152.397 432.592 150.567C432.848 149.557 433.318 148.613 433.97 147.799C434.622 146.986 435.44 146.321 436.37 145.85C437.211 145.376 438.118 145.031 439.061 144.826C442.027 144.15 445.13 144.636 448.137 145.111C454.607 146.145 461.077 147.176 467.546 148.203C469.884 148.662 472.133 149.496 474.205 150.673C480.369 154.039 485.582 160.023 477.055 164.234C476.395 164.554 475.715 164.829 475.018 165.057C465.963 168.002 452.581 163.823 444.359 161.757C441.446 161.018 438.459 160.195 436.064 158.38C435.132 157.673 434.331 156.808 433.7 155.823Z" fill="#1E1E1E"/>
|
||||||
|
<path d="M436.179 471.19L423.567 471.507C410.132 471.844 396.697 472.177 383.262 472.507C379.326 472.602 375.389 472.707 371.453 472.807C371.886 467.287 372.265 461.757 372.624 456.227L373.141 456.258C393.792 458.105 414.566 458.116 435.219 456.29L435.44 456.279C435.599 461.249 435.846 466.219 436.179 471.19Z" fill="#1E1E1E"/>
|
||||||
|
<path d="M363.391 503.78L364.13 504.403C354.621 515.853 344.858 527.579 335.592 538.787C326.692 537.9 317.777 535.887 309.957 531.536C302.021 527.125 295.277 520.085 292.533 511.436C288.871 499.901 292.491 486.73 287.583 475.67C284.554 468.82 278.57 463.67 272.083 459.934C265.596 456.198 258.49 453.665 251.693 450.52C241.772 445.95 232.211 439.829 225.984 430.848C219.842 422.004 217.52 409.962 222.142 400.274C237.635 391.63 253.128 382.99 268.621 374.354C267.64 383.219 272.959 391.81 279.956 397.329C286.974 402.859 295.544 405.962 303.828 409.329C312.112 412.696 320.493 416.579 326.477 423.207C335.215 432.885 337.389 446.647 339.057 459.575C340.725 472.503 342.582 486.234 350.919 496.26C354.1 500.1 358.431 503.326 363.391 503.78Z" fill="#1E1E1E"/>
|
||||||
|
<path d="M237.156 586.775L236.502 587.344C228.25 595.944 219.997 604.542 211.743 613.138C206.825 604.378 195.058 601.782 185.169 603.566C175.248 605.339 166.269 610.426 156.652 613.412C160.096 603.152 166.176 593.978 174.284 586.809C182.392 579.64 192.242 574.729 202.846 572.569C198.319 566.839 193.792 561.106 189.264 555.369C193.731 551.506 198.202 547.644 202.677 543.781L204.007 544.498C214.699 558.849 225.431 573.266 237.156 586.775Z" fill="#FAFAFA"/>
|
||||||
|
<path d="M525.127 124.932C520.971 124.26 516.716 125.195 513.227 127.549" stroke="#FAFAFA" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M496.315 131.95C494.195 131.372 491.969 131.303 489.818 131.748C487.666 132.194 485.651 133.142 483.936 134.515" stroke="#FAFAFA" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M507.713 136.816C510.162 139.232 512.705 141.807 513.623 145.121C514.541 148.435 513.117 152.657 509.803 153.585" stroke="#FAFAFA" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M502.742 170.661C501.379 171.145 499.903 171.218 498.499 170.871C497.094 170.524 495.823 169.772 494.842 168.709" stroke="#FAFAFA" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M474.553 164.656C474.712 164.783 474.87 164.92 475.018 165.056C483.186 172.191 486.543 183.979 484.442 194.556C483.608 198.934 481.758 203.055 479.042 206.587C475.496 211.125 470.335 214.714 464.583 215.073C458.831 215.432 452.71 211.822 451.37 206.229C445.84 215.073 431.93 217.046 424.162 210.091C416.394 203.136 416.827 189.091 425.007 182.63C420.352 186.166 412.828 182.461 411.382 176.805C409.936 171.149 413.26 165.122 417.988 161.692C422.548 158.378 428.173 156.985 433.703 155.824L434.303 155.697" stroke="#FAFAFA" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M475.018 165.057C465.963 168.002 452.581 163.823 444.359 161.757C441.446 161.018 438.459 160.195 436.064 158.38C435.132 157.674 434.332 156.81 433.7 155.826C432.654 154.288 432.256 152.4 432.592 150.57C432.848 149.56 433.318 148.616 433.97 147.802C434.622 146.989 435.44 146.324 436.37 145.853C437.211 145.38 438.118 145.034 439.061 144.829C442.027 144.153 445.13 144.639 448.137 145.114C454.607 146.148 461.077 147.179 467.546 148.206C469.884 148.665 472.133 149.499 474.205 150.676C480.369 154.042 485.582 160.026 477.055 164.237C476.395 164.556 475.714 164.83 475.018 165.057Z" stroke="#FAFAFA" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M475.914 150.662C478.204 146.979 479.481 142.757 479.616 138.423C479.751 134.089 478.74 129.795 476.684 125.977C480.516 125.94 484.294 125.067 487.754 123.419C491.213 121.771 494.272 119.388 496.715 116.436C505.338 117.977 514.593 116.943 522.15 112.489C527.629 109.26 531.862 104.283 534.171 98.358C535.033 96.061 535.528 93.6428 535.638 91.192C535.996 82.432 530.573 73.451 522.267 70.644C513.961 67.837 503.607 72.301 500.821 80.606C494.784 74.432 486.541 70.042 477.898 70.031C469.255 70.02 460.442 74.992 457.234 83.013C455.872 86.421 455.366 90.442 452.59 92.838C450.131 94.959 446.606 95.149 443.429 95.838C438.181 96.955 433.393 99.6308 429.691 103.515C425.989 107.399 423.547 112.311 422.683 117.607C421.82 122.903 422.576 128.336 424.852 133.195C427.128 138.054 430.819 142.112 435.44 144.838" stroke="#FAFAFA" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M525.327 111.054C533.082 117.331 538.727 125.834 541.503 135.417C544.278 145 544.051 155.204 540.851 164.654C539.593 168.455 537.866 172.086 535.711 175.461C530.72 183.25 523.627 189.461 518.044 196.843C513.274 203.154 509.538 210.943 509.992 218.658C510.057 219.994 510.258 221.321 510.592 222.616" stroke="#FAFAFA" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M485.655 194.808C488.072 201.908 488.578 209.425 489.096 216.94C489.317 220.232 489.539 223.525 489.929 226.786C491.206 237.498 494.921 248.896 503.976 254.754C506.649 256.654 509.91 257.54 513.176 257.254C517.883 256.589 521.598 252.368 522.59 247.724C523.582 243.08 522.231 238.162 519.857 234.046C517.483 229.93 514.157 226.446 510.865 223.028" stroke="#FAFAFA" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M541.083 164.73C547.616 163.517 554.033 160.794 558.683 156.066C563.333 151.338 566.007 144.383 564.656 137.881C563.305 131.379 557.452 125.787 550.799 125.7C552.209 122.909 552.902 119.81 552.814 116.683C552.726 113.557 551.86 110.502 550.296 107.794C548.731 105.087 546.516 102.811 543.851 101.175C541.186 99.5377 538.155 98.5906 535.032 98.419" stroke="#FAFAFA" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M489.1 216.94C485.954 217.773 482.858 218.74 479.812 219.84C464.994 225.354 451.36 233.634 439.634 244.24C428.769 253.965 419.348 265.191 411.656 277.579C393.873 306.079 384.744 339.203 379.847 372.426C377.99 385.026 376.713 397.692 375.699 410.388C375.066 418.176 374.549 425.976 374.053 433.775C373.568 441.258 373.124 448.74 372.628 456.223C372.27 461.753 371.89 467.283 371.457 472.803C375.393 472.703 379.33 472.603 383.267 472.503C396.701 472.165 410.134 471.832 423.567 471.503L436.179 471.186C435.852 466.215 435.606 461.244 435.44 456.273C435.303 452.537 435.229 448.791 435.198 445.055C435.011 418.849 437.126 392.677 441.519 366.841C442.142 363.21 442.808 359.583 443.519 355.96C447.493 335.642 452.888 315.629 459.667 296.068" stroke="#FAFAFA" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M510.604 218.628C516.05 221.446 521.517 224.264 527.026 226.976C529.084 228 531.151 229.006 533.226 229.995C546.313 236.19 559.696 241.625 573.754 244.981C596.012 250.281 620.4 249.92 640.663 239.303C642.13 238.533 643.576 237.709 644.98 236.803C649.432 234.004 653.526 230.673 657.171 226.882C665.318 218.429 671.143 207.833 673.095 196.54C673.849 192.298 674.017 187.973 673.595 183.686C673.363 181.448 673.205 178.704 675.083 177.47C675.995 176.959 677.054 176.776 678.083 176.952C678.505 176.995 678.916 177.058 679.317 177.132C691.971 179.285 704.626 181.445 717.28 183.612C720.351 184.14 723.421 184.657 726.493 185.184C726.827 192.144 726.498 199.12 725.512 206.018C721.772 232.078 709.432 256.141 690.452 274.385C687.245 277.434 683.858 280.289 680.309 282.933C677.428 285.076 674.445 287.07 671.361 288.917C642.317 306.341 605.378 310.352 573.4 299.028" stroke="#FAFAFA" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M533.052 230.375C550.817 250.386 564.233 273.868 572.452 299.333C578.245 317.266 581.451 335.934 581.972 354.772C582.077 358.272 581.872 362.254 579.217 364.523C577.148 366.296 574.204 366.476 571.481 366.571C568.663 366.666 565.856 366.761 563.038 366.845C522.776 368.038 482.496 368.076 442.198 366.961" stroke="#FAFAFA" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M479.977 220.317C478.186 228.416 478.686 236.853 481.421 244.684C484.155 252.515 489.016 259.429 495.459 264.653C502.359 270.253 511.997 273.772 520.208 270.363C527.669 267.281 532.102 259.063 532.577 251.007C533.052 242.951 530.234 235.039 526.614 227.821" stroke="#FAFAFA" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M563.025 366.813C563.025 366.824 563.036 366.834 563.036 366.845C576.07 393.05 589.097 419.25 602.117 445.445C603.056 447.335 604.006 449.53 603.182 451.472C602.011 454.237 598.254 454.5 595.257 454.321L568.862 452.77L513.782 449.54C491.956 448.253 470.135 446.969 448.317 445.688C444.644 445.477 440.982 445.255 437.309 445.044" stroke="#FAFAFA" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M448.222 445.122L448.322 445.692C454.527 484.159 453.377 523.454 444.934 561.492C439.161 587.444 429.167 613.87 408.861 631.052C387.585 649.052 357.285 654.196 329.993 648.518C302.701 642.84 278.227 627.358 257.827 608.361C250.555 601.544 243.657 594.339 237.162 586.779C225.437 573.27 214.704 558.853 204.013 544.5" stroke="#FAFAFA" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M202.677 543.779C198.203 547.641 193.732 551.504 189.264 555.367C193.792 561.1 198.319 566.834 202.846 572.567C192.242 574.727 182.392 579.638 174.284 586.807C166.176 593.975 160.096 603.15 156.652 613.41C166.267 610.424 175.252 605.337 185.169 603.564C195.058 601.78 206.825 604.376 211.743 613.136C211.746 613.152 211.753 613.166 211.764 613.178" stroke="#FAFAFA" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M211.332 613.571C211.47 613.423 211.607 613.286 211.744 613.138C219.997 604.547 228.25 595.949 236.503 587.344" stroke="#FAFAFA" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M209.8 613.286C210.022 613.592 210.233 613.898 210.454 614.204C233.282 646.256 262.738 674.624 298.954 689.948C335.533 705.409 379.616 706.021 413.61 685.505C438.57 670.445 456.142 645.686 469.91 619.998C496.517 570.245 511.429 515.08 513.51 458.698C513.626 455.898 513.689 453.105 513.732 450.308" stroke="#FAFAFA" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M568.83 453.3C587.922 488.191 595.288 528.169 600.73 567.555C612.991 656.353 616.825 746.111 612.181 835.631C611.938 840.211 611.6 845.031 609.11 848.886C604.688 855.673 595.443 856.96 587.369 857.593C581.142 858.079 573.934 858.184 569.797 853.509C569.403 853.061 569.046 852.581 568.731 852.074C566.261 848.116 566.462 842.818 566.779 838.027C575.412 709.727 558.167 579.492 514.052 458.714" stroke="#FAFAFA" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M568.755 851.864C568.754 851.935 568.747 852.005 568.734 852.075C567.33 871.155 564.672 890.123 560.777 908.854C564.249 910.141 567.795 911.454 571.499 911.608C575.203 911.762 579.161 910.553 581.451 907.63C582.84 905.578 583.761 903.247 584.151 900.801C585.586 894.48 585.069 889.224 585.851 882.786" stroke="#FAFAFA" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M586.399 882.533C591.417 894.968 600.462 905.358 612.087 912.041C623.712 918.723 637.243 921.31 650.513 919.387L625.849 885.887C618.124 875.387 610.008 861.887 609.111 848.887" stroke="#FAFAFA" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M640.015 415.424C640.669 414.024 641.345 412.638 642.015 411.266C654.204 386.211 666.394 361.16 678.584 336.113C680.184 332.813 682.14 329.189 685.633 328.071C687.889 327.478 690.283 327.717 692.377 328.746C693.725 329.319 695.034 329.981 696.293 330.73C696.704 330.962 697.116 331.205 697.528 331.437C699.543 332.588 701.57 333.749 703.585 334.909C719.268 343.88 734.951 352.851 750.634 361.822C753.22 363.299 755.934 364.903 757.367 367.51C759.89 372.069 757.642 377.694 755.352 382.37C739.563 414.632 722.304 446.117 703.575 476.826C702.33 478.873 701.078 480.913 699.818 482.947C698.91 484.414 697.781 486.029 696.071 486.247C694.75 486.253 693.466 485.818 692.42 485.012C678.468 476.485 664.516 467.952 650.563 459.412C639.73 452.8 632.4 449.418 633.7 435.529C633.806 434.452 633.953 433.397 634.143 432.342C634.375 431.033 634.671 429.735 635.019 428.447C636.306 423.97 637.977 419.613 640.015 415.424Z" stroke="#FAFAFA" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M636.047 432.447C638.675 434.389 641.278 436.289 643.857 438.147C662.456 451.723 681.8 464.249 701.797 475.666" stroke="#FAFAFA" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M730.3 402.928C729.825 394.422 726.174 386.148 721.182 379.151C715.441 371.109 703.589 369.642 694.582 372.344C688.218 374.378 682.581 378.212 678.351 383.383C677.739 384.111 677.151 384.85 676.588 385.62C670.119 394.42 667.132 406.189 670.499 416.585C674.509 428.943 687.628 437.513 700.599 436.711C713.57 435.909 725.358 426.157 729.063 413.711C730.096 410.215 730.515 406.567 730.3 402.928Z" stroke="#FAFAFA" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M679.813 384.217C679.697 384.428 679.571 384.639 679.465 384.85C674.631 393.799 674.853 404.796 680.837 413.06C683.977 417.257 688.233 420.488 693.12 422.384C698.007 424.279 703.328 424.764 708.477 423.783C711.158 423.226 713.727 422.223 716.077 420.817C719.276 418.859 722.045 416.273 724.217 413.214C726.388 410.156 727.917 406.689 728.71 403.023" stroke="#FAFAFA" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M715.728 420.226C717.985 415.189 718.642 409.581 717.61 404.159C716.578 398.737 713.906 393.762 709.956 389.907C706.007 386.052 700.969 383.502 695.524 382.601C690.078 381.7 684.488 382.493 679.507 384.871" stroke="#FAFAFA" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M644.658 437.038C662.029 402.073 678.831 368.7 696.199 333.749" stroke="#FAFAFA" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M639.599 415.234C637.816 414.97 636.581 413.408 635.315 412.121C634.049 410.834 632.215 409.651 630.565 410.39C629.503 411.035 628.712 412.044 628.339 413.229C627.157 415.909 625.964 418.58 624.782 421.25C624.448 421.815 624.325 422.481 624.434 423.128C624.674 423.682 625.098 424.137 625.634 424.416C628.501 426.3 631.676 427.665 635.016 428.447C635.037 428.447 635.058 428.458 635.08 428.458" stroke="#FAFAFA" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M704.034 334.118C706.303 330.5 708.293 326.715 709.986 322.794C710.577 321.443 711.126 319.902 710.567 318.541C710.238 317.916 709.764 317.379 709.186 316.973C708.608 316.567 707.942 316.305 707.242 316.208C705.86 315.908 704.425 315.944 703.053 315.608C702.483 315.47 701.892 315.27 701.311 315.108C700.439 314.795 699.481 314.825 698.631 315.192C697.781 315.797 697.166 316.677 696.889 317.683C696.551 318.527 696.182 319.435 695.789 320.374C694.649 323.16 693.372 326.21 692.369 328.743L692.338 328.806" stroke="#FAFAFA" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M743.335 381.008C742.835 378.908 742.335 376.797 741.835 374.697C741.328 372.576 740.835 370.465 740.326 368.344" stroke="#FAFAFA" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M734.6 376.66C737.017 376.006 739.423 375.351 741.84 374.697L748.372 372.924" stroke="#FAFAFA" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M701.7 323.691C701.679 320.82 701.549 317.96 701.309 315.111C700.002 301.022 696.33 287.253 690.448 274.384C683.589 259.308 674.534 245.33 663.58 232.907C661.728 230.616 659.572 228.589 657.172 226.881C656.612 226.509 656.027 226.175 655.422 225.881C652.16 224.298 647.992 224.097 645.111 226.271C642.23 228.445 641.51 233.363 644.286 235.696" stroke="#FAFAFA" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M672.352 290.541C677.786 301.589 685.317 311.475 694.525 319.649" stroke="#FAFAFA" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M444.876 356.228C460.901 341.29 470.814 320.938 472.696 299.111C473.762 286.162 471.757 272.59 464.738 261.656C459.082 252.843 449.794 246.068 439.631 244.242C437.164 243.79 434.65 243.648 432.148 243.82C418.64 244.749 407.379 254.395 398.588 264.695C385.047 280.547 374.852 298.911 363.56 316.43C356.035 328.102 347.86 339.595 338.136 349.43C333.328 354.356 328.058 358.81 322.4 362.73C322.358 362.762 322.305 362.793 322.263 362.83" stroke="#FAFAFA" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M318.315 355.785C319.655 358.107 321.015 360.428 322.399 362.729C337.293 387.692 354.159 411.425 372.835 433.7" stroke="#FAFAFA" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M375.5 410.369L340.637 353.22C339.866 351.954 339.043 350.656 338.137 349.431C335.868 346.331 333.092 343.69 329.419 343.173C325.652 342.645 322.019 344.566 318.697 346.413C302.001 355.721 285.308 365.033 268.619 374.349C253.126 382.982 237.633 391.622 222.14 400.269C219.64 401.662 217.148 403.055 214.647 404.448C205.001 409.83 194.347 416.553 192.326 427.413C191.144 433.777 193.339 440.384 196.885 445.787C200.431 451.19 205.276 455.602 209.993 460.024C239.794 487.886 267.266 518.138 292.133 550.48C296.164 555.715 300.903 561.456 307.489 562.047C315.108 562.723 321.24 556.232 326.095 550.322C329.177 546.565 332.353 542.702 335.595 538.787C344.861 527.579 354.624 515.853 364.133 504.403H364.143C370.486 496.741 376.734 489.195 382.643 481.997" stroke="#FAFAFA" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M406.9 492.16C406.592 495.179 406.543 498.219 406.752 501.247C407.195 506.556 408.852 511.917 412.367 515.938C415.306 506.328 416.594 496.29 416.177 486.25C417.737 490.127 420.528 493.383 424.121 495.517C427.714 497.652 431.909 498.545 436.06 498.06C432.119 495.236 428.925 491.494 426.755 487.157C424.585 482.821 423.504 478.022 423.606 473.174" stroke="#FAFAFA" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M406.899 492.16C407.205 489.881 407.472 487.601 407.699 485.321C407.409 487.59 407.114 489.881 406.899 492.16Z" stroke="#FAFAFA" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M383.3 473.67C383.247 476.435 383.3 479.211 383.469 481.976C384.009 491.006 385.704 499.93 388.514 508.529C389.105 510.344 390.15 512.455 392.049 512.571C394.649 512.729 395.638 509.278 395.754 506.693C396.081 499.21 396.411 491.73 396.746 484.255C396.577 492.846 396.408 501.49 397.769 509.964C398.097 511.991 399.279 514.564 401.294 514.164C402.772 513.864 403.373 512.116 403.694 510.649C405.024 504.528 406.097 498.365 406.913 492.159" stroke="#FAFAFA" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M268.618 374.3V374.353C267.637 383.218 272.956 391.809 279.953 397.328C286.971 402.858 295.541 405.961 303.825 409.328C312.109 412.695 320.49 416.578 326.474 423.206C335.212 432.884 337.386 446.646 339.054 459.574C340.722 472.502 342.579 486.233 350.916 496.259C354.103 500.101 358.431 503.33 363.391 503.784" stroke="#FAFAFA" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M222.34 399.847C222.266 399.984 222.203 400.121 222.14 400.269C217.518 409.957 219.84 421.999 225.982 430.843C232.209 439.824 241.77 445.943 251.691 450.515C258.491 453.66 265.591 456.193 272.081 459.929C278.571 463.665 284.555 468.815 287.581 475.665C292.489 486.725 288.869 499.896 292.531 511.431C295.275 520.085 302.019 527.125 309.955 531.531C317.776 535.879 326.693 537.895 335.59 538.782C335.738 538.792 335.875 538.813 336.023 538.824" stroke="#FAFAFA" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M678.135 176.308C675.489 172.609 673.573 168.44 672.489 164.023C672.146 162.885 672.042 161.689 672.183 160.509C672.262 159.919 672.492 159.359 672.851 158.884C673.209 158.409 673.684 158.034 674.23 157.796C675.687 157.269 677.259 158.102 678.494 159.021C681.653 161.364 684.211 164.424 685.956 167.949C686.029 168.086 686.103 168.234 686.167 168.371C686.198 168.118 686.219 167.871 686.241 167.622" stroke="#FAFAFA" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M685.934 168.3C685.945 168.184 685.945 168.068 685.956 167.952C686.365 159.83 687.736 151.785 690.04 143.985C690.435 142.324 691.212 140.777 692.309 139.468C692.87 138.825 693.623 138.379 694.457 138.195C695.29 138.011 696.161 138.098 696.942 138.444C698.542 139.344 698.942 141.431 699.106 143.256C699.473 147.577 699.439 151.922 699.006 156.237C698.594 160.583 697.853 164.891 696.789 169.124" stroke="#FAFAFA" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M696.794 169.121C697.427 164.794 698.018 160.435 699.011 156.234C700.008 151.366 701.913 146.73 704.625 142.567C705.196 141.61 705.971 140.791 706.894 140.167C707.357 139.86 707.898 139.691 708.454 139.682C709.009 139.672 709.556 139.822 710.029 140.114C711.052 140.842 711.253 142.267 711.306 143.523C711.504 147.817 711.181 152.119 710.345 156.335C709.572 160.256 708.354 164.077 706.715 167.722" stroke="#FAFAFA" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M710.355 157.089C710.387 156.847 710.429 156.604 710.471 156.361C711.029 152.67 712.809 149.274 715.526 146.715C715.955 146.25 716.487 145.891 717.078 145.667C717.67 145.444 718.306 145.362 718.935 145.427C720.951 145.913 721.299 148.594 721.194 150.673C720.634 161.481 719.369 172.24 717.405 182.883" stroke="#FAFAFA" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M373.142 456.256C393.793 458.103 414.567 458.114 435.22 456.288" stroke="#FAFAFA" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M674.547 196.8C691.032 200.325 707.612 203.337 724.287 205.834" stroke="#FAFAFA" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M399.956 141C394.284 134.444 386.546 130.019 378.02 128.456" stroke="#FAFAFA" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M380.974 144.867C386.06 136.263 391.147 127.658 396.234 119.053" stroke="#FAFAFA" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M629.86 104.855L611.766 105.25" stroke="#FAFAFA" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M620.165 116.967C619.632 108.834 619.099 100.7 618.565 92.567" stroke="#FAFAFA" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M599.059 47.879L609.123 40.106C609.208 40.0404 609.312 40.0025 609.419 39.9973C609.526 39.9921 609.633 40.0199 609.724 40.077C609.815 40.134 609.886 40.2176 609.928 40.3165C609.97 40.4154 609.981 40.5248 609.959 40.63L607.366 53.079C607.345 53.1807 607.355 53.2864 607.394 53.3827C607.433 53.479 607.499 53.5616 607.585 53.62L618.085 60.791C618.174 60.8515 618.242 60.9378 618.28 61.0383C618.319 61.1387 618.325 61.2485 618.299 61.3528C618.273 61.457 618.215 61.5507 618.134 61.6212C618.053 61.6917 617.952 61.7356 617.845 61.747L605.204 63.127C605.101 63.1384 605.003 63.18 604.923 63.2467C604.844 63.3135 604.786 63.4023 604.756 63.502L601.184 75.702C601.154 75.805 601.093 75.8963 601.009 75.9636C600.925 76.0308 600.823 76.0709 600.716 76.0783C600.609 76.0857 600.502 76.0601 600.41 76.005C600.317 75.9499 600.244 75.8679 600.2 75.77L594.981 64.17C594.938 64.0747 594.867 63.9944 594.778 63.9393C594.689 63.8843 594.586 63.857 594.481 63.861L581.77 64.234C581.663 64.2372 581.557 64.2074 581.467 64.1487C581.377 64.0899 581.308 64.0049 581.268 63.9053C581.227 63.8057 581.219 63.6962 581.243 63.5915C581.267 63.4868 581.323 63.3921 581.402 63.32L590.817 54.772C590.894 54.7021 590.948 54.6111 590.974 54.5105C590.999 54.4098 590.994 54.3038 590.959 54.206L586.677 42.233C586.641 42.1319 586.637 42.0222 586.665 41.9186C586.694 41.8151 586.753 41.7227 586.835 41.6538C586.918 41.5849 587.019 41.5428 587.126 41.5332C587.233 41.5236 587.34 41.5469 587.433 41.6L598.471 47.913C598.561 47.9672 598.666 47.9929 598.77 47.9869C598.875 47.9808 598.976 47.9432 599.059 47.879Z" fill="#1E1E1E"/>
|
||||||
|
<path d="M828.134 229.539L837.194 238.462C837.271 238.537 837.323 238.633 837.343 238.739C837.363 238.844 837.351 238.953 837.307 239.051C837.264 239.149 837.191 239.232 837.099 239.287C837.008 239.343 836.901 239.369 836.794 239.362L824.109 238.473C824.005 238.466 823.902 238.49 823.812 238.541C823.722 238.593 823.649 238.67 823.603 238.763L817.916 250.136C817.868 250.232 817.792 250.311 817.698 250.362C817.604 250.414 817.496 250.435 817.389 250.423C817.283 250.412 817.182 250.368 817.101 250.297C817.02 250.227 816.963 250.133 816.937 250.029L813.863 237.69C813.838 237.589 813.783 237.498 813.706 237.428C813.63 237.359 813.534 237.313 813.431 237.298L800.851 235.4C800.745 235.384 800.646 235.336 800.568 235.262C800.49 235.188 800.436 235.092 800.414 234.987C800.392 234.882 800.403 234.773 800.446 234.674C800.488 234.575 800.56 234.492 800.651 234.435L811.435 227.698C811.523 227.643 811.593 227.563 811.636 227.468C811.679 227.374 811.692 227.268 811.675 227.166L809.59 214.622C809.573 214.516 809.588 214.408 809.634 214.311C809.68 214.214 809.755 214.134 809.848 214.081C809.941 214.027 810.048 214.004 810.155 214.014C810.261 214.023 810.363 214.065 810.445 214.134L820.186 222.308C820.265 222.375 820.363 222.417 820.466 222.428C820.569 222.44 820.674 222.421 820.766 222.373L832.052 216.513C832.147 216.463 832.255 216.444 832.362 216.458C832.468 216.472 832.568 216.518 832.648 216.59C832.727 216.662 832.783 216.757 832.806 216.862C832.83 216.967 832.821 217.076 832.781 217.176L828.016 228.966C827.976 229.062 827.966 229.168 827.987 229.271C828.008 229.373 828.059 229.466 828.134 229.539Z" stroke="#1E1E1E" stroke-width="3.166" stroke-miterlimit="10"/>
|
||||||
|
<path d="M403.432 87.088C400.451 83.6449 396.385 81.3211 391.905 80.5" stroke="#FAFAFA" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M393.458 89.1201C396.132 84.5994 398.805 80.0778 401.477 75.5551" stroke="#FAFAFA" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M783.93 264.809C780.95 261.364 776.884 259.039 772.403 258.217" stroke="#FAFAFA" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M773.957 266.841C776.63 262.32 779.303 257.798 781.976 253.276" stroke="#FAFAFA" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M844.004 300.059C842.493 294.128 839.004 288.889 834.112 285.21" stroke="#FAFAFA" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M830.8 296.506L848.59 285.022" stroke="#FAFAFA" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M345.076 154.625L354.136 163.548C354.213 163.623 354.265 163.72 354.286 163.826C354.306 163.932 354.293 164.042 354.249 164.14C354.204 164.238 354.131 164.32 354.038 164.376C353.946 164.431 353.838 164.456 353.731 164.448L341.046 163.56C340.942 163.553 340.839 163.576 340.749 163.628C340.659 163.679 340.586 163.756 340.54 163.849L334.853 175.223C334.805 175.319 334.729 175.398 334.634 175.449C334.54 175.501 334.432 175.522 334.326 175.51C334.219 175.498 334.119 175.454 334.038 175.383C333.957 175.313 333.9 175.219 333.874 175.115L330.8 162.775C330.774 162.674 330.72 162.583 330.643 162.513C330.566 162.443 330.47 162.398 330.368 162.382L317.793 160.489C317.687 160.473 317.588 160.425 317.51 160.351C317.432 160.277 317.378 160.181 317.357 160.076C317.335 159.97 317.346 159.861 317.388 159.762C317.43 159.663 317.502 159.58 317.593 159.523L328.378 152.787C328.466 152.732 328.535 152.652 328.578 152.557C328.62 152.463 328.634 152.357 328.617 152.255L326.532 139.71C326.514 139.604 326.529 139.495 326.575 139.398C326.622 139.301 326.696 139.221 326.79 139.167C326.883 139.114 326.99 139.091 327.097 139.101C327.204 139.11 327.306 139.153 327.388 139.222L337.128 147.397C337.207 147.463 337.305 147.505 337.408 147.516C337.511 147.528 337.616 147.508 337.708 147.461L348.994 141.602C349.089 141.553 349.197 141.534 349.303 141.548C349.41 141.562 349.509 141.608 349.588 141.68C349.668 141.752 349.723 141.846 349.748 141.951C349.772 142.055 349.763 142.164 349.724 142.264L344.959 154.054C344.919 154.15 344.909 154.256 344.93 154.357C344.951 154.459 345.002 154.552 345.076 154.625Z" stroke="#1E1E1E" stroke-width="3.166" stroke-miterlimit="10"/>
|
||||||
|
<path d="M610.41 345.223C607.429 341.778 603.363 339.453 598.883 338.631" stroke="#FAFAFA" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M600.435 347.253C603.109 342.732 605.782 338.211 608.454 333.688" stroke="#FAFAFA" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M298.563 214.706C307.944 207.367 322.88 211.647 329.874 221.288C336.868 230.929 337.345 243.951 334.923 255.612C331.017 274.412 319.885 291.889 303.68 302.195C287.475 312.501 266.25 315.076 248.539 307.652C239.687 303.943 231.609 297.587 227.596 288.869C223.583 280.151 224.355 268.946 230.904 261.93C241.968 250.078 264.104 256.605 271.241 271.163C278.378 285.721 273.558 303.692 264.268 316.98C253.397 332.399 237.296 343.344 218.96 347.78C196.872 353.031 173.039 348.421 151.503 355.608C141.503 358.945 132.481 364.695 125.232 372.349C117.984 380.002 112.733 389.324 109.944 399.49C107.155 409.656 106.913 420.352 109.241 430.633C111.569 440.914 116.394 450.463 123.291 458.436" stroke="#FAFAFA" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M475.544 683.937C487.17 675.157 505.451 683.237 511.489 696.497C517.527 709.757 514.44 725.373 509.227 738.976C505.091 749.768 499.511 760.305 490.915 768.029C482.319 775.753 470.288 780.308 459.006 777.808C447.724 775.308 438.147 764.608 439.014 753.086C439.881 741.564 453.126 732.1 463.727 736.7C471.082 739.891 475.127 748.393 474.904 756.408C474.681 764.423 470.904 771.943 466.248 778.468C459.993 787.229 452.071 794.67 442.936 800.364C433.801 806.058 423.633 809.895 413.013 811.653C402.393 813.411 391.53 813.057 381.047 810.611C370.564 808.165 360.667 803.674 351.922 797.397C338.36 787.662 327.676 773.73 312.491 766.797C294.609 758.627 271.97 762.288 257.574 775.678" stroke="#FAFAFA" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M851.599 406.46C851.899 397.116 843.073 389.327 833.807 388.083C824.541 386.839 815.306 390.683 807.414 395.691C775.035 416.213 758.678 459.033 769.127 495.916C773.041 509.737 782.209 523.965 796.398 526.206C807.491 527.958 819.326 520.777 822.898 510.127C826.47 499.477 821.345 486.616 811.435 481.327C798.073 474.201 780.435 481.794 772.32 494.58C764.205 507.366 763.699 523.572 765.721 538.58C767.743 553.588 772.021 568.321 772.573 583.455C773.222 601.15 768.382 619.436 756.987 632.99C745.592 646.544 727.2 654.639 709.77 651.517C692.34 648.395 677.237 632.926 676.688 615.228" stroke="#FAFAFA" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M762.136 352.741C764.37 347.899 766.605 343.057 768.841 338.214" stroke="#FAFAFA" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M773.481 359.722L811.474 336.256" stroke="#FAFAFA" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M775.545 370.62C779.93 373.318 784.929 374.857 790.073 375.09" stroke="#FAFAFA" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M182.782 405.823C171.516 416.199 169.804 435.343 179.051 447.553" stroke="#FAFAFA" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M159.605 435.568C158.084 432.959 157.405 429.944 157.663 426.935C157.921 423.926 159.102 421.071 161.045 418.759" stroke="#FAFAFA" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M347.57 720.346C363.756 724.975 381.012 724.182 396.704 718.087" stroke="#FAFAFA" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M677.218 505.8C691.036 510.213 707.569 503.145 713.924 490.106" stroke="#FAFAFA" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M357.511 737.381C360.872 738.861 364.515 739.594 368.187 739.53C371.859 739.467 375.474 738.608 378.783 737.013" stroke="#FAFAFA" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M479.535 234.95L488.062 231.498" stroke="#FAFAFA" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M484.284 249.969L493.158 243.912" stroke="#FAFAFA" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M498.035 264.831C498.876 261.867 500.271 259.089 502.148 256.646" stroke="#FAFAFA" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M516.973 269.7C515.973 266.224 514.976 262.749 513.98 259.274" stroke="#FAFAFA" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M522.644 250.283C524.977 251.813 527.661 252.726 530.444 252.937" stroke="#FAFAFA" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M520.393 233.917L527.47 233.172" stroke="#FAFAFA" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M422.3 470.81C422.544 466.961 422.789 463.112 423.035 459.262" stroke="#FAFAFA" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M408.574 471.189C408.674 467.339 408.774 463.489 408.874 459.64" stroke="#FAFAFA" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M394.954 471.922C395.144 467.829 395.334 463.735 395.523 459.64" stroke="#FAFAFA" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M381.084 472.309C381.061 467.55 381.561 462.804 382.574 458.154" stroke="#FAFAFA" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M712.8 203.244C713.622 197.119 714.446 190.994 715.27 184.867" stroke="#FAFAFA" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M698.919 201.013C699.671 194.769 700.679 188.563 701.943 182.396" stroke="#FAFAFA" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M686.991 199.023C688.267 192.863 689.343 186.667 690.22 180.435" stroke="#FAFAFA" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M678.852 196.8C679.285 190.464 680.109 184.161 681.32 177.927" stroke="#FAFAFA" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M442.813 445.37C444.647 445.478 446.48 445.587 448.317 445.692C470.136 446.973 491.957 448.256 513.782 449.54L568.862 452.77L595.257 454.321C598.254 454.5 602.011 454.237 603.182 451.472C604.006 449.53 603.056 447.335 602.117 445.445C589.097 419.25 576.07 393.05 563.036 366.845C522.749 368.041 482.469 368.08 442.196 366.961L441.52 366.845C437.127 392.681 435.011 418.853 435.199 445.059L437.309 445.048C439.145 445.154 440.979 445.262 442.813 445.37ZM560.887 377.266C560.524 376.471 559.585 376.121 558.79 376.484C557.994 376.847 557.644 377.786 558.007 378.582L573.66 412.847L589.313 447.112C589.677 447.907 590.616 448.257 591.411 447.894C592.206 447.53 592.556 446.591 592.193 445.796L576.54 411.531L560.887 377.266Z" fill="#FAFAFA"/>
|
||||||
|
<g opacity="0.1">
|
||||||
|
<path d="M495.882 115.748C493.55 119.336 487.082 128.707 481.657 126.504C477.936 124.995 473.676 129.51 475.016 133.145C476.492 136.723 476.908 140.651 476.216 144.459C475.782 146.608 474.448 148.654 474.455 150.865C474.461 152.812 475.401 153.858 476.228 155.419C480.088 162.702 478.895 171.312 481.714 178.876C484.984 187.653 485.587 197.565 486.714 206.807C487.267 211.356 487.843 215.907 488.356 220.458C488.836 224.712 488.705 228.996 490.575 232.887C491.823 235.487 496.136 234.82 496.743 232.081C497.549 228.444 496.699 225.112 496.25 221.433C495.776 217.533 495.37 213.633 494.941 209.733C494.089 201.994 492.832 194.115 492.749 186.333C492.706 182.372 493.315 178.546 493.42 174.633C493.514 171.102 492.769 167.261 492.355 163.742C491.577 157.125 489.755 151.533 485.635 146.242L487.319 152.611C489.35 144.7 488.488 136.323 484.888 128.991V134.441L486.151 132.655L484.044 134.275C491.62 131.122 498.087 125.75 501.198 117.993C502.474 114.811 497.593 113.127 495.886 115.754L495.882 115.748Z" fill="#FAFAFA"/>
|
||||||
|
</g>
|
||||||
|
<g opacity="0.1">
|
||||||
|
<path d="M482.522 217.646C450.053 229.438 425.614 255.375 407.295 283.873C386.53 316.179 378.627 355.96 374.265 393.531C371.509 417.264 371.054 441.181 370.054 465.031C369.548 477.097 388.299 477.073 388.804 465.031C390.441 425.992 392.636 386.164 402.32 348.162C410.19 317.281 423.614 285.173 444.933 261.062C456.92 247.727 471.131 236.575 486.933 228.102C492.501 225.062 488.715 215.402 482.526 217.65L482.522 217.646Z" fill="#FAFAFA"/>
|
||||||
|
</g>
|
||||||
|
<g opacity="0.1">
|
||||||
|
<path d="M571.274 295.306C576.074 301.046 583.088 303.229 590.104 304.839C597.671 306.622 605.423 307.5 613.197 307.455C635.289 306.936 656.796 300.248 675.287 288.147C693.777 276.045 708.514 259.013 717.831 238.975C724.788 223.936 728.614 207.639 729.075 191.075C729.429 178.824 710.397 178.834 710.043 191.075C709.156 221.785 693.179 252.516 667.855 270.163C654.672 279.324 639.513 285.242 623.61 287.437C615.105 288.523 606.517 288.806 597.959 288.28C589.698 287.848 581.504 285.811 573.28 287.706C569.687 288.534 569.212 292.839 571.274 295.306Z" fill="#FAFAFA"/>
|
||||||
|
</g>
|
||||||
|
<g opacity="0.1">
|
||||||
|
<path d="M458.217 295.892C455.917 300.852 454.417 306.14 452.179 311.147C449.726 316.628 447.091 321.331 445.7 327.257C444.443 332.909 443.471 338.62 442.788 344.37C441.93 350.915 440.774 356.721 443.56 362.923C446.346 369.125 456.231 368.548 459.184 362.923C461.964 357.623 461.284 352.05 461.474 346.232C461.645 340.97 462.089 335.71 462.48 330.46C462.857 325.412 462.538 320.789 462.435 315.769C462.312 309.828 463.888 304.442 464.814 298.669C465.403 295.001 460.085 291.85 458.214 295.888L458.217 295.892Z" fill="#FAFAFA"/>
|
||||||
|
</g>
|
||||||
|
<g opacity="0.1">
|
||||||
|
<path d="M333.88 344.12C326.851 345.43 320.22 345.382 313.31 347.729C306.4 350.076 299.864 353.843 293.469 357.346C279.54 364.976 265.798 372.888 252.069 380.873C238.698 388.649 224.953 396.094 212.036 404.611C200.61 412.145 188.982 425.266 193.536 440.111C196.452 449.606 212.359 448.411 211.583 437.669C211.183 432.079 212.452 428.43 216.621 424.523C220.721 420.679 225.954 418.035 230.75 415.18C242.971 407.907 255.149 400.564 267.282 393.151C279.161 385.917 290.942 378.547 302.625 371.042C308.018 367.566 313.496 364.042 318.576 360.11C323.757 356.103 328.935 350.593 335.076 348.459C335.635 348.286 336.105 347.902 336.385 347.388C336.666 346.874 336.736 346.272 336.58 345.708C336.424 345.144 336.054 344.662 335.55 344.366C335.045 344.07 334.445 343.981 333.876 344.12H333.88Z" fill="#FAFAFA"/>
|
||||||
|
</g>
|
||||||
|
<g opacity="0.1">
|
||||||
|
<path d="M229.064 592.427C229.717 599.727 233.689 604.292 238.142 609.863C242.619 615.408 247.456 620.653 252.622 625.563C262.417 635.083 273.385 643.316 285.261 650.063C310.637 664.263 339.928 670.299 368.761 665.888C423.166 657.563 457.283 607.969 466.647 556.835C473.103 521.581 470.358 485.835 467.289 450.391C466.806 444.817 462.873 440.032 456.929 440.032C451.699 440.032 446.084 444.785 446.57 450.391C451.056 502.196 455.964 559.024 426.07 604.705C413.97 623.197 396.317 637.633 374.809 643.49C350.731 650.047 324.509 646.29 302.097 635.784C290.028 630.08 278.712 622.901 268.411 614.41C262.898 609.881 257.741 604.987 252.657 599.988C247.488 594.906 243.357 589.311 236.303 586.912C232.992 585.786 228.742 588.83 229.064 592.427Z" fill="#FAFAFA"/>
|
||||||
|
</g>
|
||||||
|
<g opacity="0.1">
|
||||||
|
<path d="M517.588 452.285C517.601 452.285 517.614 452.28 517.623 452.27C517.633 452.261 517.638 452.248 517.638 452.235C517.638 452.222 517.633 452.209 517.623 452.2C517.614 452.19 517.601 452.185 517.588 452.185C517.575 452.185 517.562 452.19 517.553 452.2C517.543 452.209 517.538 452.222 517.538 452.235C517.538 452.248 517.543 452.261 517.553 452.27C517.562 452.28 517.575 452.285 517.588 452.285Z" fill="#FAFAFA"/>
|
||||||
|
</g>
|
||||||
|
<g opacity="0.1">
|
||||||
|
<path d="M512.839 450.069C513.331 463.524 519.339 476.934 523.705 489.541C528.105 502.248 532.192 515.058 535.967 527.971C543.601 554.081 549.941 580.524 554.989 607.299C564.885 659.965 569.617 713.472 569.116 767.058C568.983 782.339 568.424 797.609 567.439 812.867C566.966 820.188 566.396 827.502 565.729 834.807C565.008 842.689 563.585 850.613 564.429 858.515C565.444 867.973 577.729 870.108 581.095 860.771C583.471 854.171 583.928 847.227 584.605 840.284C585.317 832.984 585.93 825.675 586.446 818.356C587.391 804.942 588.007 791.509 588.294 778.056C588.886 750.554 588.11 723.068 585.967 695.597C581.715 640.448 572.087 585.847 557.219 532.57C553.098 517.854 548.572 503.26 543.64 488.787C538.693 474.269 533.875 457.274 523.559 445.625C519.966 441.568 512.642 444.769 512.836 450.066L512.839 450.069Z" fill="#FAFAFA"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<defs>
|
||||||
|
<clipPath id="clip0_1_4977">
|
||||||
|
<rect width="960" height="960" fill="white"/>
|
||||||
|
</clipPath>
|
||||||
|
</defs>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 49 KiB |
|
@ -0,0 +1,141 @@
|
||||||
|
<svg width="960" height="960" viewBox="0 0 960 960" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<g clip-path="url(#clip0_46_7735)">
|
||||||
|
<g clip-path="url(#clip1_46_7735)">
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M566.783 838.028C566.466 842.819 566.265 848.117 568.735 852.075C569.048 852.582 569.404 853.062 569.797 853.51C573.934 858.185 581.142 858.08 587.369 857.594C595.443 856.961 604.688 855.674 609.11 848.887C611.6 845.032 611.938 840.212 612.181 835.632C616.825 746.112 612.991 656.354 600.73 567.556C595.288 528.17 587.922 488.192 568.83 453.301L568.862 452.774L513.782 449.544L513.74 450.304C513.697 453.101 513.634 455.894 513.518 458.694L514.056 458.715C558.171 579.493 575.416 709.728 566.783 838.028ZM565.392 470.282C565.116 469.452 564.22 469.003 563.391 469.279C562.561 469.554 562.112 470.45 562.387 471.28C600.838 587.068 600.097 711.733 598.948 834.085C598.939 834.959 599.642 835.675 600.516 835.683C601.39 835.691 602.105 834.989 602.114 834.115C603.262 711.853 604.036 586.652 565.392 470.282Z" fill="white"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M717.459 404.186C716.431 398.786 713.818 393.814 709.954 389.905C705.954 386.135 700.92 383.643 695.497 382.746C690.074 381.849 684.506 382.589 679.505 384.871L679.463 384.85C674.629 393.799 674.851 404.796 680.835 413.06C683.975 417.257 688.231 420.488 693.118 422.383C698.005 424.279 703.326 424.764 708.475 423.783C711.156 423.226 713.725 422.223 716.075 420.817L715.727 420.226C717.884 415.17 718.487 409.586 717.459 404.186ZM694.088 386.185C693.216 386.121 692.457 386.775 692.392 387.647C692.327 388.519 692.982 389.278 693.854 389.343C697.114 389.585 700.223 390.819 702.762 392.879C705.301 394.939 707.148 397.727 708.056 400.868C708.299 401.708 709.176 402.192 710.016 401.95C710.856 401.707 711.34 400.829 711.097 399.989C710.01 396.227 707.798 392.888 704.757 390.421C701.716 387.953 697.993 386.475 694.088 386.185Z" fill="#171717"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M535.638 91.192C535.996 82.432 530.573 73.451 522.267 70.644C513.972 67.826 503.607 72.3 500.821 80.604C494.784 74.429 486.531 70.039 477.898 70.029C469.265 70.019 460.442 74.99 457.234 83.011C456.862 83.9441 456.553 84.9228 456.244 85.9015C455.425 88.4974 454.606 91.0931 452.591 92.836C450.641 94.5181 448.026 94.9872 445.445 95.4504C444.766 95.572 444.09 95.6933 443.429 95.836C438.181 96.953 433.393 99.6288 429.691 103.513C425.989 107.397 423.547 112.309 422.683 117.605C421.82 122.901 422.576 128.334 424.852 133.193C427.128 138.052 430.819 142.11 435.441 144.836L436.369 145.85C437.21 145.376 438.117 145.031 439.061 144.826C442.027 144.15 445.129 144.636 448.136 145.111C454.609 146.148 461.079 147.179 467.545 148.203C469.884 148.662 472.132 149.496 474.204 150.673L475.915 150.662C478.204 146.979 479.481 142.757 479.616 138.423C479.751 134.089 478.74 129.795 476.684 125.977C480.516 125.94 484.294 125.067 487.754 123.419C491.213 121.771 494.272 119.388 496.715 116.436C505.339 117.977 514.593 116.943 522.15 112.489C527.629 109.26 531.862 104.283 534.171 98.358C535.033 96.061 535.528 93.6428 535.638 91.192ZM523.461 72.146C522.737 71.6553 521.753 71.844 521.262 72.5676C520.771 73.2911 520.96 74.2755 521.684 74.7662C524.413 76.6176 526.574 79.1919 527.925 82.2011C529.275 85.2104 529.762 88.536 529.33 91.806C529.215 92.6727 529.825 93.4681 530.692 93.5825C531.559 93.6969 532.354 93.087 532.469 92.2203C532.977 88.368 532.404 84.4501 530.813 80.905C529.222 77.3598 526.677 74.3271 523.461 72.146Z" fill="#171717"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M558.688 156.066C563.353 151.327 566.012 144.381 564.661 137.881C563.31 131.37 557.453 125.787 550.8 125.7C552.209 122.909 552.901 119.811 552.813 116.686C552.725 113.561 551.86 110.507 550.296 107.8C548.732 105.093 546.518 102.818 543.855 101.181C541.192 99.5441 538.162 98.5961 535.041 98.4229L534.176 98.3599C532.306 103.22 529.115 107.46 524.962 110.602L525.332 111.056C533.087 117.333 538.732 125.836 541.507 135.419C544.283 145.002 544.055 155.206 540.856 164.656L541.088 164.73C547.617 163.517 554.023 160.805 558.688 156.066ZM543.349 102.639C542.622 102.152 541.639 102.347 541.153 103.073C540.666 103.799 540.86 104.783 541.587 105.269C543.964 106.862 545.837 109.1 546.985 111.721C548.133 114.343 548.509 117.237 548.067 120.065C547.932 120.928 548.523 121.738 549.386 121.873C550.25 122.008 551.06 121.417 551.195 120.553C551.73 117.13 551.275 113.625 549.885 110.451C548.495 107.277 546.227 104.567 543.349 102.639Z" fill="#171717"/>
|
||||||
|
<path d="M757.361 367.51C759.884 372.069 757.636 377.694 755.345 382.37C739.557 414.632 722.299 446.117 703.569 476.826L701.796 475.665C681.799 464.248 662.456 451.722 643.856 438.146L644.656 437.038C662.029 402.073 678.831 368.7 696.199 333.749L697.519 331.437C699.534 332.588 701.561 333.749 703.576 334.909C719.259 343.88 734.942 352.851 750.625 361.821C753.214 363.3 755.926 364.9 757.361 367.51ZM729.067 413.71C730.1 410.213 730.518 406.564 730.301 402.924C729.826 394.418 726.175 386.144 721.183 379.147C715.442 371.105 703.59 369.638 694.583 372.34C688.22 374.374 682.583 378.208 678.352 383.379C677.74 384.107 677.152 384.846 676.589 385.616C670.12 394.416 667.133 406.185 670.5 416.581C674.51 428.939 687.629 437.509 700.6 436.707C713.571 435.905 725.362 426.157 729.067 413.714V413.71Z" fill="white"/>
|
||||||
|
<path d="M726.493 185.183C726.826 192.143 726.497 199.118 725.511 206.016L724.287 205.837C707.62 203.336 691.04 200.325 674.547 196.803L673.101 196.539C673.854 192.297 674.022 187.972 673.601 183.685C673.369 181.447 673.211 178.703 675.089 177.469C676 176.958 677.059 176.775 678.089 176.951C678.512 176.994 678.923 177.057 679.324 177.131C691.978 179.284 704.632 181.444 717.286 183.611C720.35 184.139 723.421 184.656 726.493 185.183Z" fill="white"/>
|
||||||
|
<path d="M625.851 885.889L650.515 919.389C637.245 921.313 623.712 918.726 612.087 912.043C600.461 905.36 591.416 894.969 586.399 882.533L585.85 882.786C585.069 889.224 585.586 894.48 584.15 900.801C583.761 903.247 582.839 905.578 581.45 907.63C579.16 910.553 575.213 911.756 571.498 911.608C567.783 911.46 564.248 910.141 560.776 908.854C564.671 890.123 567.329 871.155 568.733 852.075C569.049 852.582 569.405 853.062 569.799 853.51C573.936 858.185 581.144 858.08 587.371 857.594C595.445 856.961 604.69 855.673 609.112 848.887C610.01 861.89 618.126 875.388 625.851 885.889Z" fill="#171717"/>
|
||||||
|
<path d="M526.614 227.821C530.234 235.039 533.062 242.944 532.577 251.007C532.092 259.07 527.669 267.281 520.208 270.363C511.997 273.772 502.362 270.257 495.459 264.653C489.016 259.429 484.155 252.515 481.421 244.684C478.686 236.853 478.186 228.416 479.977 220.317L479.808 219.842C482.858 218.744 485.954 217.777 489.096 216.942C489.317 220.234 489.539 223.527 489.929 226.788C491.206 237.5 494.921 248.898 503.976 254.756C506.649 256.656 509.91 257.542 513.176 257.256C517.883 256.591 521.598 252.37 522.59 247.726C523.582 243.082 522.231 238.164 519.857 234.048C517.483 229.932 514.157 226.448 510.865 223.03L510.59 222.618C510.256 221.323 510.055 219.997 509.99 218.661L510.602 218.629C516.048 221.447 521.515 224.265 527.024 226.977L526.614 227.821Z" fill="white"/>
|
||||||
|
<path d="M211.744 613.138C219.997 604.547 228.25 595.949 236.503 587.344L237.157 586.775C243.652 594.335 250.55 601.54 257.822 608.357C278.222 627.357 302.696 642.836 329.988 648.514C357.28 654.192 387.58 649.052 408.856 631.048C429.162 613.866 439.156 587.44 444.929 561.488C453.372 523.45 454.522 484.155 448.317 445.688C470.142 446.976 491.963 448.26 513.782 449.54L513.74 450.3C513.697 453.1 513.634 455.894 513.518 458.69C511.439 515.075 496.528 570.244 469.92 620C456.148 645.688 438.576 670.447 413.62 685.507C379.626 706.023 335.543 705.407 298.964 689.95C262.744 674.626 233.288 646.258 210.464 614.206L211.34 613.573C211.47 613.423 211.607 613.286 211.744 613.138Z" fill="white"/>
|
||||||
|
<path d="M475.018 165.057C483.186 172.192 486.543 183.98 484.442 194.557C483.608 198.935 481.758 203.056 479.042 206.588C475.496 211.126 470.335 214.715 464.583 215.074C458.831 215.433 452.71 211.823 451.37 206.23C445.84 215.074 431.93 217.047 424.162 210.092C416.394 203.137 416.827 189.092 425.007 182.631C420.352 186.167 412.828 182.462 411.382 176.806C409.936 171.15 413.26 165.123 417.988 161.693C422.548 158.379 428.173 156.986 433.703 155.825C434.334 156.809 435.134 157.673 436.067 158.379C438.467 160.194 441.449 161.017 444.362 161.756C452.581 163.823 465.963 168 475.018 165.057Z" fill="#171717"/>
|
||||||
|
<path d="M433.7 155.823C432.654 154.285 432.256 152.397 432.592 150.567C432.848 149.557 433.318 148.613 433.97 147.799C434.622 146.986 435.44 146.321 436.37 145.85C437.211 145.376 438.118 145.031 439.061 144.826C442.027 144.15 445.13 144.636 448.137 145.111C454.607 146.145 461.077 147.176 467.546 148.203C469.884 148.662 472.133 149.496 474.205 150.673C480.369 154.039 485.582 160.023 477.055 164.234C476.395 164.554 475.715 164.829 475.018 165.057C465.963 168.002 452.581 163.823 444.359 161.757C441.446 161.018 438.459 160.195 436.064 158.38C435.132 157.673 434.331 156.808 433.7 155.823V155.823Z" fill="white"/>
|
||||||
|
<path d="M436.179 471.19L423.567 471.507C410.132 471.844 396.697 472.177 383.262 472.507C379.326 472.602 375.389 472.707 371.453 472.807C371.886 467.287 372.265 461.757 372.624 456.227L373.141 456.258C393.792 458.105 414.566 458.116 435.219 456.29L435.44 456.279C435.599 461.249 435.846 466.219 436.179 471.19Z" fill="white"/>
|
||||||
|
<path d="M363.391 503.78L364.13 504.403C354.621 515.853 344.858 527.579 335.592 538.787C326.692 537.9 317.777 535.887 309.957 531.536C302.021 527.125 295.277 520.085 292.533 511.436C288.871 499.901 292.491 486.73 287.583 475.67C284.554 468.82 278.57 463.67 272.083 459.934C265.596 456.198 258.49 453.665 251.693 450.52C241.772 445.95 232.211 439.829 225.984 430.848C219.842 422.004 217.52 409.962 222.142 400.274C237.635 391.63 253.128 382.99 268.621 374.354C267.64 383.219 272.959 391.81 279.956 397.329C286.974 402.859 295.544 405.962 303.828 409.329C312.112 412.696 320.493 416.579 326.477 423.207C335.215 432.885 337.389 446.647 339.057 459.575C340.725 472.503 342.582 486.234 350.919 496.26C354.1 500.1 358.431 503.326 363.391 503.78Z" fill="white"/>
|
||||||
|
<path d="M237.156 586.775L236.502 587.344C228.25 595.944 219.997 604.542 211.743 613.138C206.825 604.378 195.058 601.782 185.169 603.566C175.248 605.339 166.269 610.426 156.652 613.412C160.096 603.152 166.176 593.978 174.284 586.809C182.392 579.64 192.242 574.729 202.846 572.569C198.319 566.839 193.792 561.106 189.264 555.369C193.731 551.506 198.202 547.644 202.677 543.781L204.007 544.498C214.699 558.849 225.431 573.266 237.156 586.775Z" fill="#171717"/>
|
||||||
|
<path d="M525.127 124.932C520.971 124.26 516.716 125.195 513.227 127.549" stroke="#171717" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M496.315 131.95C494.195 131.372 491.969 131.303 489.818 131.748C487.666 132.194 485.651 133.142 483.936 134.515" stroke="#171717" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M507.713 136.816C510.162 139.232 512.705 141.807 513.623 145.121C514.541 148.435 513.117 152.657 509.803 153.585" stroke="#171717" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M502.742 170.661C501.379 171.145 499.903 171.218 498.499 170.871C497.094 170.524 495.823 169.772 494.842 168.709" stroke="#171717" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M474.553 164.656C474.712 164.783 474.87 164.92 475.018 165.056C483.186 172.191 486.543 183.979 484.442 194.556C483.608 198.934 481.758 203.055 479.042 206.587C475.496 211.125 470.335 214.714 464.583 215.073C458.831 215.432 452.71 211.822 451.37 206.229C445.84 215.073 431.93 217.046 424.162 210.091C416.394 203.136 416.827 189.091 425.007 182.63C420.352 186.166 412.828 182.461 411.382 176.805C409.936 171.149 413.26 165.122 417.988 161.692C422.548 158.378 428.173 156.985 433.703 155.824L434.303 155.697" stroke="#171717" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M475.018 165.057C465.963 168.002 452.581 163.823 444.359 161.757C441.446 161.018 438.459 160.195 436.064 158.38C435.132 157.674 434.332 156.81 433.7 155.826C432.654 154.288 432.256 152.4 432.592 150.57C432.848 149.56 433.318 148.616 433.97 147.802C434.622 146.989 435.44 146.324 436.37 145.853C437.211 145.38 438.118 145.034 439.061 144.829C442.027 144.153 445.13 144.639 448.137 145.114C454.607 146.148 461.077 147.179 467.546 148.206C469.884 148.665 472.133 149.499 474.205 150.676C480.369 154.042 485.582 160.026 477.055 164.237C476.395 164.556 475.714 164.83 475.018 165.057V165.057Z" stroke="#171717" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M475.914 150.662C478.204 146.979 479.481 142.757 479.616 138.423C479.751 134.089 478.74 129.795 476.684 125.977C480.516 125.94 484.294 125.067 487.754 123.419C491.213 121.771 494.272 119.388 496.715 116.436C505.338 117.977 514.593 116.943 522.15 112.489C527.629 109.26 531.862 104.283 534.171 98.358C535.033 96.061 535.528 93.6428 535.638 91.192C535.996 82.432 530.573 73.451 522.267 70.644C513.961 67.837 503.607 72.301 500.821 80.606C494.784 74.432 486.541 70.042 477.898 70.031C469.255 70.02 460.442 74.992 457.234 83.013C455.872 86.421 455.366 90.442 452.59 92.838C450.131 94.959 446.606 95.149 443.429 95.838C438.181 96.955 433.393 99.6308 429.691 103.515C425.989 107.399 423.547 112.311 422.683 117.607C421.82 122.903 422.576 128.336 424.852 133.195C427.128 138.054 430.819 142.112 435.44 144.838" stroke="#171717" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M525.327 111.054C533.082 117.331 538.727 125.834 541.503 135.417C544.278 145 544.051 155.204 540.851 164.654C539.593 168.455 537.866 172.086 535.711 175.461C530.72 183.25 523.627 189.461 518.044 196.843C513.274 203.154 509.538 210.943 509.992 218.658C510.057 219.994 510.258 221.321 510.592 222.616" stroke="#171717" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M485.655 194.808C488.072 201.908 488.578 209.425 489.096 216.94C489.317 220.232 489.539 223.525 489.929 226.786C491.206 237.498 494.921 248.896 503.976 254.754C506.649 256.654 509.91 257.54 513.176 257.254C517.883 256.589 521.598 252.368 522.59 247.724C523.582 243.08 522.231 238.162 519.857 234.046C517.483 229.93 514.157 226.446 510.865 223.028" stroke="#171717" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M541.083 164.73C547.616 163.517 554.033 160.794 558.683 156.066C563.333 151.338 566.007 144.383 564.656 137.881C563.305 131.379 557.452 125.787 550.799 125.7C552.209 122.909 552.902 119.81 552.814 116.683C552.726 113.557 551.86 110.502 550.296 107.794C548.731 105.087 546.516 102.811 543.851 101.175C541.186 99.5377 538.155 98.5906 535.032 98.419" stroke="#171717" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M489.1 216.94C485.954 217.773 482.858 218.74 479.812 219.84C464.994 225.354 451.36 233.634 439.634 244.24C428.769 253.965 419.348 265.191 411.656 277.579C393.873 306.079 384.744 339.203 379.847 372.426C377.99 385.026 376.713 397.692 375.699 410.388C375.066 418.176 374.549 425.976 374.053 433.775C373.568 441.258 373.124 448.74 372.628 456.223C372.27 461.753 371.89 467.283 371.457 472.803C375.393 472.703 379.33 472.603 383.267 472.503C396.701 472.165 410.134 471.832 423.567 471.503L436.179 471.186C435.852 466.215 435.606 461.244 435.44 456.273C435.303 452.537 435.229 448.791 435.198 445.055C435.011 418.849 437.126 392.677 441.519 366.841C442.142 363.21 442.808 359.583 443.519 355.96C447.493 335.642 452.888 315.629 459.667 296.068" stroke="#171717" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M510.604 218.628C516.05 221.446 521.517 224.264 527.026 226.976C529.084 228 531.151 229.006 533.226 229.995C546.313 236.19 559.696 241.625 573.754 244.981C596.012 250.281 620.4 249.92 640.663 239.303C642.13 238.533 643.576 237.709 644.98 236.803C649.432 234.004 653.526 230.673 657.171 226.882C665.318 218.429 671.143 207.833 673.095 196.54C673.849 192.298 674.017 187.973 673.595 183.686C673.363 181.448 673.205 178.704 675.083 177.47C675.995 176.959 677.054 176.776 678.083 176.952C678.505 176.995 678.916 177.058 679.317 177.132C691.971 179.285 704.626 181.445 717.28 183.612C720.351 184.14 723.421 184.657 726.493 185.184C726.827 192.144 726.498 199.12 725.512 206.018C721.772 232.078 709.432 256.141 690.452 274.385C687.245 277.434 683.858 280.289 680.309 282.933C677.428 285.076 674.445 287.07 671.361 288.917C642.317 306.341 605.378 310.352 573.4 299.028" stroke="#171717" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M533.052 230.375C550.817 250.386 564.233 273.868 572.452 299.333C578.245 317.266 581.451 335.934 581.972 354.772C582.077 358.272 581.872 362.254 579.217 364.523C577.148 366.296 574.204 366.476 571.481 366.571C568.663 366.666 565.856 366.761 563.038 366.845C522.776 368.038 482.496 368.076 442.198 366.961" stroke="#171717" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M479.977 220.317C478.186 228.416 478.686 236.853 481.421 244.684C484.155 252.515 489.016 259.429 495.459 264.653C502.359 270.253 511.997 273.772 520.208 270.363C527.669 267.281 532.102 259.063 532.577 251.007C533.052 242.951 530.234 235.039 526.614 227.821" stroke="#171717" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M563.025 366.813C563.025 366.824 563.036 366.834 563.036 366.845C576.07 393.05 589.097 419.25 602.117 445.445C603.056 447.335 604.006 449.53 603.182 451.472C602.011 454.237 598.254 454.5 595.257 454.321L568.862 452.77L513.782 449.54C491.956 448.253 470.135 446.969 448.317 445.688C444.644 445.477 440.982 445.255 437.309 445.044" stroke="#171717" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M448.222 445.122L448.322 445.692C454.527 484.159 453.377 523.454 444.934 561.492C439.161 587.444 429.167 613.87 408.861 631.052C387.585 649.052 357.285 654.196 329.993 648.518C302.701 642.84 278.227 627.358 257.827 608.361C250.555 601.544 243.657 594.339 237.162 586.779C225.437 573.27 214.704 558.853 204.013 544.5" stroke="#171717" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M202.677 543.779C198.203 547.641 193.732 551.504 189.264 555.367C193.792 561.1 198.319 566.834 202.846 572.567C192.242 574.727 182.392 579.638 174.284 586.807C166.176 593.975 160.096 603.15 156.652 613.41C166.267 610.424 175.252 605.337 185.169 603.564C195.058 601.78 206.825 604.376 211.743 613.136C211.746 613.152 211.753 613.166 211.764 613.178" stroke="#171717" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M211.332 613.571C211.47 613.423 211.607 613.286 211.744 613.138C219.997 604.547 228.25 595.949 236.503 587.344" stroke="#171717" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M209.8 613.286C210.022 613.592 210.233 613.898 210.454 614.204C233.282 646.256 262.738 674.624 298.954 689.948C335.533 705.409 379.616 706.021 413.61 685.505C438.57 670.445 456.142 645.686 469.91 619.998C496.517 570.245 511.429 515.08 513.51 458.698C513.626 455.898 513.689 453.105 513.732 450.308" stroke="#171717" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M568.83 453.3C587.922 488.191 595.288 528.169 600.73 567.555C612.991 656.353 616.825 746.111 612.181 835.631C611.938 840.211 611.6 845.031 609.11 848.886C604.688 855.673 595.443 856.96 587.369 857.593C581.142 858.079 573.934 858.184 569.797 853.509C569.403 853.061 569.046 852.581 568.731 852.074C566.261 848.116 566.462 842.818 566.779 838.027C575.412 709.727 558.167 579.492 514.052 458.714" stroke="#171717" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M568.755 851.864C568.754 851.935 568.747 852.005 568.734 852.075C567.33 871.155 564.672 890.123 560.777 908.854C564.249 910.141 567.795 911.454 571.499 911.608C575.203 911.762 579.161 910.553 581.451 907.63C582.84 905.578 583.761 903.247 584.151 900.801C585.586 894.48 585.069 889.224 585.851 882.786" stroke="#171717" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M586.399 882.533C591.417 894.968 600.462 905.358 612.087 912.041C623.712 918.723 637.243 921.31 650.513 919.387L625.849 885.887C618.124 875.387 610.008 861.887 609.111 848.887" stroke="#171717" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M640.015 415.424C640.669 414.024 641.345 412.638 642.015 411.266C654.204 386.211 666.394 361.16 678.584 336.113C680.184 332.813 682.14 329.189 685.633 328.071C687.889 327.478 690.283 327.717 692.377 328.746C693.725 329.319 695.034 329.981 696.293 330.73C696.704 330.962 697.116 331.205 697.528 331.437C699.543 332.588 701.57 333.749 703.585 334.909C719.268 343.88 734.951 352.851 750.634 361.822C753.22 363.299 755.934 364.903 757.367 367.51C759.89 372.069 757.642 377.694 755.352 382.37C739.563 414.632 722.304 446.117 703.575 476.826C702.33 478.873 701.078 480.913 699.818 482.947C698.91 484.414 697.781 486.029 696.071 486.247C694.75 486.253 693.466 485.818 692.42 485.012C678.468 476.485 664.516 467.952 650.563 459.412C639.73 452.8 632.4 449.418 633.7 435.529C633.806 434.452 633.953 433.397 634.143 432.342C634.375 431.033 634.671 429.735 635.019 428.447C636.306 423.97 637.977 419.613 640.015 415.424V415.424Z" stroke="#171717" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M636.047 432.447C638.675 434.389 641.278 436.289 643.857 438.147C662.456 451.723 681.8 464.249 701.797 475.666" stroke="#171717" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M730.3 402.928C729.825 394.422 726.174 386.148 721.182 379.151C715.441 371.109 703.589 369.642 694.582 372.344C688.218 374.378 682.581 378.212 678.351 383.383C677.739 384.111 677.151 384.85 676.588 385.62C670.119 394.42 667.132 406.189 670.499 416.585C674.509 428.943 687.628 437.513 700.599 436.711C713.57 435.909 725.358 426.157 729.063 413.711C730.096 410.215 730.515 406.567 730.3 402.928V402.928Z" stroke="#171717" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M679.813 384.217C679.697 384.428 679.571 384.639 679.465 384.85C674.631 393.799 674.853 404.796 680.837 413.06C683.977 417.257 688.233 420.488 693.12 422.384C698.007 424.279 703.328 424.764 708.477 423.783C711.158 423.226 713.727 422.223 716.077 420.817C719.276 418.859 722.045 416.273 724.217 413.214C726.388 410.156 727.917 406.689 728.71 403.023" stroke="#171717" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M715.728 420.226C717.985 415.189 718.642 409.581 717.61 404.159C716.578 398.737 713.906 393.762 709.956 389.907C706.007 386.052 700.969 383.502 695.524 382.601C690.078 381.7 684.488 382.493 679.507 384.871" stroke="#171717" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M644.658 437.038C662.029 402.073 678.831 368.7 696.199 333.749" stroke="#171717" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M639.599 415.234C637.816 414.97 636.581 413.408 635.315 412.121C634.049 410.834 632.215 409.651 630.565 410.39C629.503 411.035 628.712 412.044 628.339 413.229C627.157 415.909 625.964 418.58 624.782 421.25C624.448 421.815 624.325 422.481 624.434 423.128C624.674 423.682 625.098 424.137 625.634 424.416C628.501 426.3 631.676 427.665 635.016 428.447C635.037 428.447 635.058 428.458 635.08 428.458" stroke="#171717" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M704.034 334.118C706.303 330.5 708.293 326.715 709.986 322.794C710.577 321.443 711.126 319.902 710.567 318.541C710.238 317.916 709.764 317.379 709.186 316.973C708.608 316.567 707.942 316.305 707.242 316.208C705.86 315.908 704.425 315.944 703.053 315.608C702.483 315.47 701.892 315.27 701.311 315.108C700.439 314.795 699.481 314.825 698.631 315.192C697.781 315.797 697.166 316.677 696.889 317.683C696.551 318.527 696.182 319.435 695.789 320.374C694.649 323.16 693.372 326.21 692.369 328.743L692.338 328.806" stroke="#171717" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M743.335 381.008C742.835 378.908 742.335 376.797 741.835 374.697C741.328 372.576 740.835 370.465 740.326 368.344" stroke="#171717" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M734.6 376.66C737.017 376.006 739.423 375.351 741.84 374.697L748.372 372.924" stroke="#171717" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M701.7 323.691C701.679 320.82 701.549 317.96 701.309 315.111C700.002 301.022 696.33 287.253 690.448 274.384C683.589 259.308 674.534 245.33 663.58 232.907C661.728 230.616 659.572 228.589 657.172 226.881C656.612 226.509 656.027 226.175 655.422 225.881C652.16 224.298 647.992 224.097 645.111 226.271C642.23 228.445 641.51 233.363 644.286 235.696" stroke="#171717" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M672.352 290.541C677.786 301.589 685.317 311.475 694.525 319.649" stroke="#171717" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M444.876 356.228C460.901 341.29 470.814 320.938 472.696 299.111C473.762 286.162 471.757 272.59 464.738 261.656C459.082 252.843 449.794 246.068 439.631 244.242C437.164 243.79 434.65 243.648 432.148 243.82C418.64 244.749 407.379 254.395 398.588 264.695C385.047 280.547 374.852 298.911 363.56 316.43C356.035 328.102 347.86 339.595 338.136 349.43C333.328 354.356 328.058 358.81 322.4 362.73C322.358 362.762 322.305 362.793 322.263 362.83" stroke="#171717" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M318.315 355.785C319.655 358.107 321.015 360.428 322.399 362.729C337.293 387.692 354.159 411.425 372.835 433.7" stroke="#171717" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M375.5 410.369L340.637 353.22C339.866 351.954 339.043 350.656 338.137 349.431C335.868 346.331 333.092 343.69 329.419 343.173C325.652 342.645 322.019 344.566 318.697 346.413C302.001 355.721 285.308 365.033 268.619 374.349C253.126 382.982 237.633 391.622 222.14 400.269C219.64 401.662 217.148 403.055 214.647 404.448C205.001 409.83 194.347 416.553 192.326 427.413C191.144 433.777 193.339 440.384 196.885 445.787C200.431 451.19 205.276 455.602 209.993 460.024C239.794 487.886 267.266 518.138 292.133 550.48C296.164 555.715 300.903 561.456 307.489 562.047C315.108 562.723 321.24 556.232 326.095 550.322C329.177 546.565 332.353 542.702 335.595 538.787C344.861 527.579 354.624 515.853 364.133 504.403H364.143C370.486 496.741 376.734 489.195 382.643 481.997" stroke="#171717" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M406.9 492.16C406.592 495.179 406.543 498.219 406.752 501.247C407.195 506.556 408.852 511.917 412.367 515.938C415.306 506.328 416.594 496.29 416.177 486.25C417.737 490.127 420.528 493.383 424.121 495.517C427.714 497.652 431.909 498.545 436.06 498.06C432.119 495.236 428.925 491.494 426.755 487.157C424.585 482.821 423.504 478.022 423.606 473.174" stroke="#171717" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M406.899 492.16C407.205 489.881 407.472 487.601 407.699 485.321C407.409 487.59 407.114 489.881 406.899 492.16Z" stroke="#171717" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M383.3 473.67C383.247 476.435 383.3 479.211 383.469 481.976C384.009 491.006 385.704 499.93 388.514 508.529C389.105 510.344 390.15 512.455 392.049 512.571C394.649 512.729 395.638 509.278 395.754 506.693C396.081 499.21 396.411 491.73 396.746 484.255C396.577 492.846 396.408 501.49 397.769 509.964C398.097 511.991 399.279 514.564 401.294 514.164C402.772 513.864 403.373 512.116 403.694 510.649C405.024 504.528 406.097 498.365 406.913 492.159" stroke="#171717" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M268.618 374.3V374.353C267.637 383.218 272.956 391.809 279.953 397.328C286.971 402.858 295.541 405.961 303.825 409.328C312.109 412.695 320.49 416.578 326.474 423.206C335.212 432.884 337.386 446.646 339.054 459.574C340.722 472.502 342.579 486.233 350.916 496.259C354.103 500.101 358.431 503.33 363.391 503.784" stroke="#171717" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M222.34 399.847C222.266 399.984 222.203 400.121 222.14 400.269C217.518 409.957 219.84 421.999 225.982 430.843C232.209 439.824 241.77 445.943 251.691 450.515C258.491 453.66 265.591 456.193 272.081 459.929C278.571 463.665 284.555 468.815 287.581 475.665C292.489 486.725 288.869 499.896 292.531 511.431C295.275 520.085 302.019 527.125 309.955 531.531C317.776 535.879 326.693 537.895 335.59 538.782C335.738 538.792 335.875 538.813 336.023 538.824" stroke="#171717" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M678.135 176.308C675.489 172.609 673.573 168.44 672.489 164.023C672.146 162.885 672.042 161.689 672.183 160.509C672.262 159.919 672.492 159.359 672.851 158.884C673.209 158.409 673.684 158.034 674.23 157.796C675.687 157.269 677.259 158.102 678.494 159.021C681.653 161.364 684.211 164.424 685.956 167.949C686.029 168.086 686.103 168.234 686.167 168.371C686.198 168.118 686.219 167.871 686.241 167.622" stroke="#171717" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M685.934 168.3C685.945 168.184 685.945 168.068 685.956 167.952C686.365 159.83 687.736 151.785 690.04 143.985C690.435 142.324 691.212 140.777 692.309 139.468C692.87 138.825 693.623 138.379 694.457 138.195C695.29 138.011 696.161 138.098 696.942 138.444C698.542 139.344 698.942 141.431 699.106 143.256C699.473 147.577 699.439 151.922 699.006 156.237C698.594 160.583 697.853 164.891 696.789 169.124" stroke="#171717" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M696.794 169.121C697.427 164.794 698.018 160.435 699.011 156.234C700.008 151.366 701.913 146.73 704.625 142.567C705.196 141.61 705.971 140.791 706.894 140.167C707.357 139.86 707.898 139.691 708.454 139.682C709.009 139.672 709.556 139.822 710.029 140.114C711.052 140.842 711.253 142.267 711.306 143.523C711.504 147.817 711.181 152.119 710.345 156.335C709.572 160.256 708.354 164.077 706.715 167.722" stroke="#171717" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M710.355 157.089C710.387 156.847 710.429 156.604 710.471 156.361C711.029 152.67 712.809 149.274 715.526 146.715C715.955 146.25 716.487 145.891 717.078 145.667C717.67 145.444 718.306 145.362 718.935 145.427C720.951 145.913 721.299 148.594 721.194 150.673C720.634 161.481 719.369 172.24 717.405 182.883" stroke="#171717" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M373.142 456.256C393.793 458.103 414.567 458.114 435.22 456.288" stroke="#171717" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M674.547 196.8C691.032 200.325 707.612 203.337 724.287 205.834" stroke="#171717" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M399.956 141C394.284 134.444 386.546 130.019 378.02 128.456" stroke="#171717" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M380.974 144.867C386.06 136.263 391.147 127.658 396.234 119.053" stroke="#171717" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M629.86 104.855L611.766 105.25" stroke="#171717" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M620.165 116.967C619.632 108.834 619.099 100.7 618.565 92.567" stroke="#171717" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M599.059 47.879L609.123 40.106C609.208 40.0404 609.312 40.0025 609.419 39.9973C609.526 39.9921 609.633 40.0199 609.724 40.077C609.815 40.134 609.886 40.2176 609.928 40.3165C609.97 40.4154 609.981 40.5248 609.959 40.63L607.366 53.079C607.345 53.1807 607.355 53.2864 607.394 53.3827C607.433 53.479 607.499 53.5616 607.585 53.62L618.085 60.791C618.174 60.8515 618.242 60.9378 618.28 61.0383C618.319 61.1387 618.325 61.2485 618.299 61.3528C618.273 61.457 618.215 61.5507 618.134 61.6212C618.053 61.6917 617.952 61.7356 617.845 61.747L605.204 63.127C605.101 63.1384 605.003 63.18 604.923 63.2467C604.844 63.3135 604.786 63.4023 604.756 63.502L601.184 75.702C601.154 75.805 601.093 75.8963 601.009 75.9636C600.925 76.0308 600.823 76.0709 600.716 76.0783C600.609 76.0857 600.502 76.0601 600.41 76.005C600.317 75.9499 600.244 75.8679 600.2 75.77L594.981 64.17C594.938 64.0747 594.867 63.9944 594.778 63.9393C594.689 63.8843 594.586 63.857 594.481 63.861L581.77 64.234C581.663 64.2372 581.557 64.2074 581.467 64.1487C581.377 64.0899 581.308 64.0049 581.268 63.9053C581.227 63.8057 581.219 63.6962 581.243 63.5915C581.267 63.4868 581.323 63.3921 581.402 63.32L590.817 54.772C590.894 54.7021 590.948 54.6111 590.974 54.5105C590.999 54.4098 590.994 54.3038 590.959 54.206L586.677 42.233C586.641 42.1319 586.637 42.0222 586.665 41.9186C586.694 41.8151 586.753 41.7227 586.835 41.6538C586.918 41.5849 587.019 41.5428 587.126 41.5332C587.233 41.5236 587.34 41.5469 587.433 41.6L598.471 47.913C598.561 47.9672 598.666 47.9929 598.77 47.9869C598.875 47.9808 598.976 47.9432 599.059 47.879V47.879Z" fill="white"/>
|
||||||
|
<path d="M828.134 229.539L837.194 238.462C837.271 238.537 837.323 238.633 837.343 238.739C837.363 238.844 837.351 238.953 837.307 239.051C837.264 239.149 837.191 239.232 837.099 239.287C837.008 239.343 836.901 239.369 836.794 239.362L824.109 238.473C824.005 238.466 823.902 238.49 823.812 238.541C823.722 238.593 823.649 238.67 823.603 238.763L817.916 250.136C817.868 250.232 817.792 250.311 817.698 250.362C817.604 250.414 817.496 250.435 817.389 250.423C817.283 250.412 817.182 250.368 817.101 250.297C817.02 250.227 816.963 250.133 816.937 250.029L813.863 237.69C813.838 237.589 813.783 237.498 813.706 237.428C813.63 237.359 813.534 237.313 813.431 237.298L800.851 235.4C800.745 235.384 800.646 235.336 800.568 235.262C800.49 235.188 800.436 235.092 800.414 234.987C800.392 234.882 800.403 234.773 800.446 234.674C800.488 234.575 800.56 234.492 800.651 234.435L811.435 227.698C811.523 227.643 811.593 227.563 811.636 227.468C811.679 227.374 811.692 227.268 811.675 227.166L809.59 214.622C809.573 214.516 809.588 214.408 809.634 214.311C809.68 214.214 809.755 214.134 809.848 214.081C809.941 214.027 810.048 214.004 810.155 214.014C810.261 214.023 810.363 214.065 810.445 214.134L820.186 222.308C820.265 222.375 820.363 222.417 820.466 222.428C820.569 222.44 820.674 222.421 820.766 222.373L832.052 216.513C832.147 216.463 832.255 216.444 832.362 216.458C832.468 216.472 832.568 216.518 832.648 216.59C832.727 216.662 832.783 216.757 832.806 216.862C832.83 216.967 832.821 217.076 832.781 217.176L828.016 228.966C827.976 229.062 827.966 229.168 827.987 229.271C828.008 229.373 828.059 229.466 828.134 229.539V229.539Z" stroke="white" stroke-width="3.166" stroke-miterlimit="10"/>
|
||||||
|
<path d="M403.432 87.088C400.451 83.6449 396.385 81.3211 391.905 80.5" stroke="#171717" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M393.458 89.12C396.132 84.5993 398.805 80.0777 401.477 75.555" stroke="#171717" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M783.93 264.809C780.95 261.364 776.884 259.039 772.403 258.217" stroke="#171717" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M773.957 266.841C776.63 262.32 779.303 257.798 781.976 253.276" stroke="#171717" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M844.004 300.059C842.493 294.128 839.004 288.889 834.112 285.21" stroke="#171717" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M830.8 296.506L848.59 285.022" stroke="#171717" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M345.076 154.625L354.136 163.548C354.213 163.623 354.265 163.72 354.286 163.826C354.306 163.932 354.293 164.042 354.249 164.14C354.204 164.238 354.131 164.32 354.038 164.376C353.946 164.431 353.838 164.456 353.731 164.448L341.046 163.56C340.942 163.553 340.839 163.576 340.749 163.628C340.659 163.679 340.586 163.756 340.54 163.849L334.853 175.223C334.805 175.319 334.729 175.398 334.634 175.449C334.54 175.501 334.432 175.522 334.326 175.51C334.219 175.498 334.119 175.454 334.038 175.383C333.957 175.313 333.9 175.219 333.874 175.115L330.8 162.775C330.774 162.674 330.72 162.583 330.643 162.513C330.566 162.443 330.47 162.398 330.368 162.382L317.793 160.489C317.687 160.473 317.588 160.425 317.51 160.351C317.432 160.277 317.378 160.181 317.357 160.076C317.335 159.97 317.346 159.861 317.388 159.762C317.43 159.663 317.502 159.58 317.593 159.523L328.378 152.787C328.466 152.732 328.535 152.652 328.578 152.557C328.62 152.463 328.634 152.357 328.617 152.255L326.532 139.71C326.514 139.604 326.529 139.495 326.575 139.398C326.622 139.301 326.696 139.221 326.79 139.167C326.883 139.114 326.99 139.091 327.097 139.101C327.204 139.11 327.306 139.153 327.388 139.222L337.128 147.397C337.207 147.463 337.305 147.505 337.408 147.516C337.511 147.528 337.616 147.508 337.708 147.461L348.994 141.602C349.089 141.553 349.197 141.534 349.303 141.548C349.41 141.562 349.509 141.608 349.588 141.68C349.668 141.752 349.723 141.846 349.748 141.951C349.772 142.055 349.763 142.164 349.724 142.264L344.959 154.054C344.919 154.15 344.909 154.256 344.93 154.357C344.951 154.459 345.002 154.552 345.076 154.625V154.625Z" stroke="white" stroke-width="3.166" stroke-miterlimit="10"/>
|
||||||
|
<path d="M610.41 345.223C607.429 341.778 603.363 339.453 598.883 338.631" stroke="#171717" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M600.435 347.253C603.109 342.732 605.782 338.211 608.454 333.688" stroke="#171717" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M298.563 214.706C307.944 207.367 322.88 211.647 329.874 221.288C336.868 230.929 337.345 243.951 334.923 255.612C331.017 274.412 319.885 291.889 303.68 302.195C287.475 312.501 266.25 315.076 248.539 307.652C239.687 303.943 231.609 297.587 227.596 288.869C223.583 280.151 224.355 268.946 230.904 261.93C241.968 250.078 264.104 256.605 271.241 271.163C278.378 285.721 273.558 303.692 264.268 316.98C253.397 332.399 237.296 343.344 218.96 347.78C196.872 353.031 173.039 348.421 151.503 355.608C141.503 358.945 132.481 364.695 125.232 372.349C117.984 380.002 112.733 389.324 109.944 399.49C107.155 409.656 106.913 420.352 109.241 430.633C111.569 440.914 116.394 450.463 123.291 458.436" stroke="#171717" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M475.544 683.937C487.17 675.157 505.451 683.237 511.489 696.497C517.527 709.757 514.44 725.373 509.227 738.976C505.091 749.768 499.511 760.305 490.915 768.029C482.319 775.753 470.288 780.308 459.006 777.808C447.724 775.308 438.147 764.608 439.014 753.086C439.881 741.564 453.126 732.1 463.727 736.7C471.082 739.891 475.127 748.393 474.904 756.408C474.681 764.423 470.904 771.943 466.248 778.468C459.993 787.229 452.071 794.67 442.936 800.364C433.801 806.058 423.633 809.895 413.013 811.653C402.393 813.411 391.53 813.057 381.047 810.611C370.564 808.165 360.667 803.674 351.922 797.397C338.36 787.662 327.676 773.73 312.491 766.797C294.609 758.627 271.97 762.288 257.574 775.678" stroke="#171717" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M851.599 406.46C851.899 397.116 843.073 389.327 833.807 388.083C824.541 386.839 815.306 390.683 807.414 395.691C775.035 416.213 758.678 459.033 769.127 495.916C773.041 509.737 782.209 523.965 796.398 526.206C807.491 527.958 819.326 520.777 822.898 510.127C826.47 499.477 821.345 486.616 811.435 481.327C798.073 474.201 780.435 481.794 772.32 494.58C764.205 507.366 763.699 523.572 765.721 538.58C767.743 553.588 772.021 568.321 772.573 583.455C773.222 601.15 768.382 619.436 756.987 632.99C745.592 646.544 727.2 654.639 709.77 651.517C692.34 648.395 677.237 632.926 676.688 615.228" stroke="#171717" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M762.136 352.741C764.37 347.899 766.605 343.057 768.841 338.214" stroke="#171717" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M773.481 359.722L811.474 336.256" stroke="#171717" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M775.545 370.62C779.93 373.318 784.929 374.857 790.073 375.09" stroke="#171717" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M182.782 405.823C171.516 416.199 169.804 435.343 179.051 447.553" stroke="#171717" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M159.605 435.568C158.084 432.959 157.405 429.944 157.663 426.935C157.921 423.926 159.102 421.071 161.045 418.759" stroke="#171717" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M347.57 720.346C363.756 724.975 381.012 724.182 396.704 718.087" stroke="#171717" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M677.218 505.8C691.036 510.213 707.569 503.145 713.924 490.106" stroke="#171717" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M357.511 737.381C360.872 738.861 364.515 739.594 368.187 739.53C371.859 739.467 375.474 738.608 378.783 737.013" stroke="#171717" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M479.535 234.95L488.062 231.498" stroke="#171717" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M484.284 249.969L493.158 243.912" stroke="#171717" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M498.035 264.831C498.876 261.867 500.271 259.089 502.148 256.646" stroke="#171717" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M516.973 269.7C515.973 266.224 514.976 262.749 513.98 259.274" stroke="#171717" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M522.644 250.283C524.977 251.813 527.661 252.726 530.444 252.937" stroke="#171717" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M520.393 233.917L527.47 233.172" stroke="#171717" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M422.3 470.81C422.544 466.961 422.789 463.112 423.035 459.262" stroke="#171717" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M408.574 471.189C408.674 467.339 408.774 463.489 408.874 459.64" stroke="#171717" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M394.954 471.922C395.144 467.829 395.334 463.735 395.523 459.64" stroke="#171717" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M381.084 472.309C381.061 467.55 381.561 462.804 382.574 458.154" stroke="#171717" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M712.8 203.244C713.622 197.119 714.446 190.994 715.27 184.867" stroke="#171717" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M698.919 201.013C699.671 194.769 700.679 188.563 701.943 182.396" stroke="#171717" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M686.991 199.023C688.267 192.863 689.343 186.667 690.22 180.435" stroke="#171717" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M678.852 196.8C679.285 190.464 680.109 184.161 681.32 177.927" stroke="#171717" stroke-width="3.166" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M442.813 445.37C444.647 445.478 446.48 445.587 448.317 445.692C470.136 446.973 491.957 448.256 513.782 449.54L568.862 452.77L595.257 454.321C598.254 454.5 602.011 454.237 603.182 451.472C604.006 449.53 603.056 447.335 602.117 445.445C589.097 419.25 576.07 393.05 563.036 366.845C522.749 368.041 482.469 368.08 442.196 366.961L441.52 366.845C437.127 392.681 435.011 418.853 435.199 445.059L437.309 445.048C439.145 445.154 440.979 445.262 442.813 445.37ZM560.887 377.266C560.524 376.471 559.585 376.121 558.79 376.484C557.994 376.847 557.644 377.786 558.007 378.582L573.66 412.847L589.313 447.112C589.677 447.907 590.616 448.257 591.411 447.894C592.206 447.53 592.556 446.591 592.193 445.796L576.54 411.531L560.887 377.266Z" fill="#171717"/>
|
||||||
|
<g opacity="0.1">
|
||||||
|
<path d="M495.882 115.748C493.55 119.336 487.082 128.707 481.657 126.504C477.936 124.995 473.676 129.51 475.016 133.145C476.492 136.723 476.908 140.651 476.216 144.459C475.782 146.608 474.448 148.654 474.455 150.865C474.461 152.812 475.401 153.858 476.228 155.419C480.088 162.702 478.895 171.312 481.714 178.876C484.984 187.653 485.587 197.565 486.714 206.807C487.267 211.356 487.843 215.907 488.356 220.458C488.836 224.712 488.705 228.996 490.575 232.887C491.823 235.487 496.136 234.82 496.743 232.081C497.549 228.444 496.699 225.112 496.25 221.433C495.776 217.533 495.37 213.633 494.941 209.733C494.089 201.994 492.832 194.115 492.749 186.333C492.706 182.372 493.315 178.546 493.42 174.633C493.514 171.102 492.769 167.261 492.355 163.742C491.577 157.125 489.755 151.533 485.635 146.242L487.319 152.611C489.35 144.7 488.488 136.323 484.888 128.991V134.441L486.151 132.655L484.044 134.275C491.62 131.122 498.087 125.75 501.198 117.993C502.474 114.811 497.593 113.127 495.886 115.754L495.882 115.748Z" fill="#171717"/>
|
||||||
|
</g>
|
||||||
|
<g opacity="0.1">
|
||||||
|
<path d="M482.522 217.646C450.053 229.438 425.614 255.375 407.295 283.873C386.53 316.179 378.627 355.96 374.265 393.531C371.509 417.264 371.054 441.181 370.054 465.031C369.548 477.097 388.299 477.073 388.804 465.031C390.441 425.992 392.636 386.164 402.32 348.162C410.19 317.281 423.614 285.173 444.933 261.062C456.92 247.727 471.131 236.575 486.933 228.102C492.501 225.062 488.715 215.402 482.526 217.65L482.522 217.646Z" fill="#171717"/>
|
||||||
|
</g>
|
||||||
|
<g opacity="0.1">
|
||||||
|
<path d="M571.274 295.306C576.074 301.046 583.088 303.229 590.104 304.839C597.671 306.622 605.423 307.5 613.197 307.455C635.289 306.936 656.796 300.248 675.287 288.147C693.777 276.045 708.514 259.013 717.831 238.975C724.788 223.936 728.614 207.639 729.075 191.075C729.429 178.824 710.397 178.834 710.043 191.075C709.156 221.785 693.179 252.516 667.855 270.163C654.672 279.324 639.513 285.242 623.61 287.437C615.105 288.523 606.517 288.806 597.959 288.28C589.698 287.848 581.504 285.811 573.28 287.706C569.687 288.534 569.212 292.839 571.274 295.306V295.306Z" fill="#171717"/>
|
||||||
|
</g>
|
||||||
|
<g opacity="0.1">
|
||||||
|
<path d="M458.217 295.892C455.917 300.852 454.417 306.14 452.179 311.147C449.726 316.628 447.091 321.331 445.7 327.257C444.443 332.909 443.471 338.62 442.788 344.37C441.93 350.915 440.774 356.721 443.56 362.923C446.346 369.125 456.231 368.548 459.184 362.923C461.964 357.623 461.284 352.05 461.474 346.232C461.645 340.97 462.089 335.71 462.48 330.46C462.857 325.412 462.538 320.789 462.435 315.769C462.312 309.828 463.888 304.442 464.814 298.669C465.403 295.001 460.085 291.85 458.214 295.888L458.217 295.892Z" fill="#171717"/>
|
||||||
|
</g>
|
||||||
|
<g opacity="0.1">
|
||||||
|
<path d="M333.88 344.12C326.851 345.43 320.22 345.382 313.31 347.729C306.4 350.076 299.864 353.843 293.469 357.346C279.54 364.976 265.798 372.888 252.069 380.873C238.698 388.649 224.953 396.094 212.036 404.611C200.61 412.145 188.982 425.266 193.536 440.111C196.452 449.606 212.359 448.411 211.583 437.669C211.183 432.079 212.452 428.43 216.621 424.523C220.721 420.679 225.954 418.035 230.75 415.18C242.971 407.907 255.149 400.564 267.282 393.151C279.161 385.917 290.942 378.547 302.625 371.042C308.018 367.566 313.496 364.042 318.576 360.11C323.757 356.103 328.935 350.593 335.076 348.459C335.635 348.286 336.105 347.902 336.385 347.388C336.666 346.874 336.736 346.272 336.58 345.708C336.424 345.144 336.054 344.662 335.55 344.366C335.045 344.07 334.445 343.981 333.876 344.12H333.88Z" fill="#171717"/>
|
||||||
|
</g>
|
||||||
|
<g opacity="0.1">
|
||||||
|
<path d="M229.064 592.427C229.717 599.727 233.689 604.292 238.142 609.863C242.619 615.408 247.456 620.653 252.622 625.563C262.417 635.083 273.385 643.316 285.261 650.063C310.637 664.263 339.928 670.299 368.761 665.888C423.166 657.563 457.283 607.969 466.647 556.835C473.103 521.581 470.358 485.835 467.289 450.391C466.806 444.817 462.873 440.032 456.929 440.032C451.699 440.032 446.084 444.785 446.57 450.391C451.056 502.196 455.964 559.024 426.07 604.705C413.97 623.197 396.317 637.633 374.809 643.49C350.731 650.047 324.509 646.29 302.097 635.784C290.028 630.08 278.712 622.901 268.411 614.41C262.898 609.881 257.741 604.987 252.657 599.988C247.488 594.906 243.357 589.311 236.303 586.912C232.992 585.786 228.742 588.829 229.064 592.426V592.427Z" fill="#171717"/>
|
||||||
|
</g>
|
||||||
|
<g opacity="0.1">
|
||||||
|
<path d="M517.588 452.285C517.601 452.285 517.614 452.28 517.623 452.27C517.633 452.261 517.638 452.248 517.638 452.235C517.638 452.222 517.633 452.209 517.623 452.2C517.614 452.19 517.601 452.185 517.588 452.185C517.575 452.185 517.562 452.19 517.553 452.2C517.543 452.209 517.538 452.222 517.538 452.235C517.538 452.248 517.543 452.261 517.553 452.27C517.562 452.28 517.575 452.285 517.588 452.285V452.285Z" fill="#171717"/>
|
||||||
|
</g>
|
||||||
|
<g opacity="0.1">
|
||||||
|
<path d="M512.839 450.069C513.331 463.524 519.339 476.934 523.705 489.541C528.105 502.248 532.192 515.058 535.967 527.971C543.601 554.081 549.941 580.524 554.989 607.299C564.885 659.965 569.617 713.472 569.116 767.058C568.983 782.339 568.424 797.609 567.439 812.867C566.966 820.188 566.396 827.502 565.729 834.807C565.008 842.689 563.585 850.613 564.429 858.515C565.444 867.973 577.729 870.108 581.095 860.771C583.471 854.171 583.928 847.227 584.605 840.284C585.317 832.984 585.93 825.675 586.446 818.356C587.391 804.942 588.007 791.509 588.294 778.056C588.886 750.554 588.11 723.068 585.967 695.597C581.715 640.448 572.087 585.847 557.219 532.57C553.098 517.854 548.572 503.26 543.64 488.787C538.693 474.269 533.875 457.274 523.559 445.625C519.966 441.568 512.642 444.769 512.836 450.066L512.839 450.069Z" fill="#171717"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<defs>
|
||||||
|
<clipPath id="clip0_46_7735">
|
||||||
|
<rect width="960" height="960" fill="white"/>
|
||||||
|
</clipPath>
|
||||||
|
<clipPath id="clip1_46_7735">
|
||||||
|
<rect width="748" height="883" fill="white" transform="translate(106 39)"/>
|
||||||
|
</clipPath>
|
||||||
|
</defs>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 49 KiB |
After Width: | Height: | Size: 962 B |
|
@ -0,0 +1,17 @@
|
||||||
|
<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<g clip-path="url(#clip0_3_47)">
|
||||||
|
<mask id="mask0_3_47" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="0" y="0" width="48" height="48">
|
||||||
|
<path d="M36 0H12C5.37258 0 0 5.37258 0 12V36C0 42.6274 5.37258 48 12 48H36C42.6274 48 48 42.6274 48 36V12C48 5.37258 42.6274 0 36 0Z" fill="white"/>
|
||||||
|
</mask>
|
||||||
|
<g mask="url(#mask0_3_47)">
|
||||||
|
<path d="M36 0H12C5.37258 0 0 5.37258 0 12V36C0 42.6274 5.37258 48 12 48H36C42.6274 48 48 42.6274 48 36V12C48 5.37258 42.6274 0 36 0Z" fill="#B2B2B2"/>
|
||||||
|
</g>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M17.8876 27.75V20.25V12.75L11.4 16.5V24V31.5L17.8876 35.25L24.3648 39L30.8524 35.25L24.3648 31.5L17.8876 27.75Z" fill="#1E1E1E"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M24.3644 16.5V24L30.852 27.75L37.3293 31.5V24L30.852 20.25V12.75L24.3644 9V16.5Z" fill="#1E1E1E"/>
|
||||||
|
</g>
|
||||||
|
<defs>
|
||||||
|
<clipPath id="clip0_3_47">
|
||||||
|
<rect width="48" height="48" fill="white"/>
|
||||||
|
</clipPath>
|
||||||
|
</defs>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 1022 B |
After Width: | Height: | Size: 1.0 KiB |
|
@ -0,0 +1,21 @@
|
||||||
|
<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<g clip-path="url(#clip0_3_47)">
|
||||||
|
<mask id="mask0_3_47" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="0" y="0" width="48" height="48">
|
||||||
|
<path d="M36 0H12C5.37258 0 0 5.37258 0 12V36C0 42.6274 5.37258 48 12 48H36C42.6274 48 48 42.6274 48 36V12C48 5.37258 42.6274 0 36 0Z" fill="white"/>
|
||||||
|
</mask>
|
||||||
|
<g mask="url(#mask0_3_47)">
|
||||||
|
<path d="M36 0H12C5.37258 0 0 5.37258 0 12V36C0 42.6274 5.37258 48 12 48H36C42.6274 48 48 42.6274 48 36V12C48 5.37258 42.6274 0 36 0Z" fill="#1E1E1E"/>
|
||||||
|
<path d="M0 0H48V48H0V0Z" fill="url(#paint0_linear_3_47)"/>
|
||||||
|
</g>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M17.8876 27.75V20.25V12.75L11.4 16.5V24V31.5L17.8876 35.25L24.3648 39L30.8524 35.25L24.3648 31.5L17.8876 27.75Z" fill="#B6B6B6"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M24.3644 16.5V24L30.852 27.75L37.3293 31.5V24L30.852 20.25V12.75L24.3644 9V16.5Z" fill="#B6B6B6"/>
|
||||||
|
</g>
|
||||||
|
<defs>
|
||||||
|
<linearGradient id="paint0_linear_3_47" x1="24" y1="9.83477e-07" x2="26" y2="48" gradientUnits="userSpaceOnUse">
|
||||||
|
<stop offset="1" stop-color="#1E1E1E"/>
|
||||||
|
</linearGradient>
|
||||||
|
<clipPath id="clip0_3_47">
|
||||||
|
<rect width="48" height="48" fill="white"/>
|
||||||
|
</clipPath>
|
||||||
|
</defs>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 1.2 KiB |
After Width: | Height: | Size: 615 B |
|
@ -0,0 +1,4 @@
|
||||||
|
<svg width="50" height="50" viewBox="0 0 50 50" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M14.8126 31.25V18.75V6.25L4 12.5V25V37.5L14.8126 43.75L25.608 50L36.4206 43.75L25.608 37.5L14.8126 31.25Z" fill="white"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M25.6074 12.5V25L36.42 31.25L47.2155 37.5V25L36.42 18.75V6.25L25.6074 0V12.5Z" fill="white"/>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 417 B |
After Width: | Height: | Size: 876 B |
|
@ -0,0 +1,4 @@
|
||||||
|
<svg width="50" height="50" viewBox="0 0 50 50" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M14.8126 31.25V18.75V6.25L4 12.5V25V37.5L14.8126 43.75L25.608 50L36.4206 43.75L25.608 37.5L14.8126 31.25Z" fill="#171717"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M25.6074 12.5V25L36.42 31.25L47.2155 37.5V25L36.42 18.75V6.25L25.6074 0V12.5Z" fill="#171717"/>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 421 B |
After Width: | Height: | Size: 2.3 KiB |
|
@ -0,0 +1,27 @@
|
||||||
|
<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<g clip-path="url(#clip0_3_47)">
|
||||||
|
<mask id="mask0_3_47" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="0" y="0" width="48" height="48">
|
||||||
|
<path d="M36 0H12C5.37258 0 0 5.37258 0 12V36C0 42.6274 5.37258 48 12 48H36C42.6274 48 48 42.6274 48 36V12C48 5.37258 42.6274 0 36 0Z" fill="white"/>
|
||||||
|
</mask>
|
||||||
|
<g mask="url(#mask0_3_47)">
|
||||||
|
<path d="M36 0H12C5.37258 0 0 5.37258 0 12V36C0 42.6274 5.37258 48 12 48H36C42.6274 48 48 42.6274 48 36V12C48 5.37258 42.6274 0 36 0Z" fill="#0A0D12"/>
|
||||||
|
<path d="M0 0H48V48H0V0Z" fill="url(#paint0_linear_3_47)"/>
|
||||||
|
</g>
|
||||||
|
<path d="M36 1H12C5.92487 1 1 5.92487 1 12V36C1 42.0751 5.92487 47 12 47H36C42.0751 47 47 42.0751 47 36V12C47 5.92487 42.0751 1 36 1Z" stroke="url(#paint1_linear_3_47)" stroke-width="2"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M17.8876 27.75V20.25V12.75L11.4 16.5V24V31.5L17.8876 35.25L24.3648 39L30.8524 35.25L24.3648 31.5L17.8876 27.75Z" fill="#B6B6B6"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M24.3644 16.5V24L30.852 27.75L37.3293 31.5V24L30.852 20.25V12.75L24.3644 9V16.5Z" fill="#B6B6B6"/>
|
||||||
|
</g>
|
||||||
|
<defs>
|
||||||
|
<linearGradient id="paint0_linear_3_47" x1="24" y1="9.83477e-07" x2="26" y2="48" gradientUnits="userSpaceOnUse">
|
||||||
|
<stop stop-color="white" stop-opacity="0"/>
|
||||||
|
<stop offset="1" stop-color="white" stop-opacity="0.12"/>
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient id="paint1_linear_3_47" x1="24" y1="-5.05344e-08" x2="24" y2="48" gradientUnits="userSpaceOnUse">
|
||||||
|
<stop stop-color="white" stop-opacity="0.12"/>
|
||||||
|
<stop offset="1" stop-color="white" stop-opacity="0"/>
|
||||||
|
</linearGradient>
|
||||||
|
<clipPath id="clip0_3_47">
|
||||||
|
<rect width="48" height="48" fill="white"/>
|
||||||
|
</clipPath>
|
||||||
|
</defs>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 1.7 KiB |
|
@ -0,0 +1,15 @@
|
||||||
|
flutter_native_splash:
|
||||||
|
color: "#ffffff"
|
||||||
|
image: assets/logos/logo-light.png
|
||||||
|
branding: assets/logos/logo-light.png
|
||||||
|
color_dark: "#121212"
|
||||||
|
image_dark: assets/logos/logo-dark.png
|
||||||
|
branding_dark: assets/logos/logo-dark.png
|
||||||
|
|
||||||
|
android_12:
|
||||||
|
image: assets/logos/logo-light.png
|
||||||
|
icon_background_color: "#ffffff"
|
||||||
|
image_dark: assets/logos/logo-dark.png
|
||||||
|
icon_background_color_dark: "#121212"
|
||||||
|
|
||||||
|
web: false
|
BIN
sigap-mobile/ios/Runner/Assets.xcassets/BrandingImage.imageset/BrandingImage.png
vendored
Normal file
After Width: | Height: | Size: 392 B |
BIN
sigap-mobile/ios/Runner/Assets.xcassets/BrandingImage.imageset/BrandingImage@2x.png
vendored
Normal file
After Width: | Height: | Size: 669 B |
BIN
sigap-mobile/ios/Runner/Assets.xcassets/BrandingImage.imageset/BrandingImage@3x.png
vendored
Normal file
After Width: | Height: | Size: 871 B |
BIN
sigap-mobile/ios/Runner/Assets.xcassets/BrandingImage.imageset/BrandingImageDark.png
vendored
Normal file
After Width: | Height: | Size: 412 B |