elCaribe app - customization and branding
@@ -0,0 +1,4 @@
|
||||
package com.gqlabs.gsmgateway;
|
||||
|
||||
public class CallService {
|
||||
}
|
||||
102
news-app/.gitignore
vendored
Normal file
@@ -0,0 +1,102 @@
|
||||
# Miscellaneous
|
||||
*.class
|
||||
*.log
|
||||
*.pyc
|
||||
*.swp
|
||||
.DS_Store
|
||||
.atom/
|
||||
.buildlog/
|
||||
.history
|
||||
.svn/
|
||||
migrate_working_dir/
|
||||
|
||||
# IntelliJ related
|
||||
*.iml
|
||||
*.ipr
|
||||
*.iws
|
||||
.idea/
|
||||
|
||||
# VS Code related
|
||||
.vscode/
|
||||
|
||||
# Flutter/Dart/Pub related
|
||||
**/doc/api/
|
||||
**/ios/Flutter/.last_build_id
|
||||
.dart_tool/
|
||||
.flutter-plugins
|
||||
.flutter-plugins-dependencies
|
||||
.pub-cache/
|
||||
.pub/
|
||||
/build/
|
||||
|
||||
# Symbolication related
|
||||
app.*.symbols
|
||||
|
||||
# Obfuscation related
|
||||
app.*.map.json
|
||||
|
||||
# Android Studio will place build artifacts here
|
||||
/android/app/debug
|
||||
/android/app/profile
|
||||
/android/app/release
|
||||
|
||||
# iOS/XCode related
|
||||
**/ios/**/*.mode1v3
|
||||
**/ios/**/*.mode2v3
|
||||
**/ios/**/*.moved-aside
|
||||
**/ios/**/*.pbxuser
|
||||
**/ios/**/*.perspectivev3
|
||||
**/ios/**/*sync/
|
||||
**/ios/**/.sconsign.dblite
|
||||
**/ios/**/.tags*
|
||||
**/ios/**/.vagrant/
|
||||
**/ios/**/DerivedData/
|
||||
**/ios/**/Icon?
|
||||
**/ios/**/Pods/
|
||||
**/ios/**/.symlinks/
|
||||
**/ios/**/profile
|
||||
**/ios/**/xcuserdata
|
||||
**/ios/.generated/
|
||||
**/ios/Flutter/.last_build_id
|
||||
**/ios/Flutter/App.framework
|
||||
**/ios/Flutter/Flutter.framework
|
||||
**/ios/Flutter/Flutter.podspec
|
||||
**/ios/Flutter/Generated.xcconfig
|
||||
**/ios/Flutter/ephemeral
|
||||
**/ios/Flutter/app.flx
|
||||
**/ios/Flutter/app.zip
|
||||
**/ios/Flutter/flutter_assets/
|
||||
**/ios/Flutter/flutter_export_environment.sh
|
||||
**/ios/ServiceDefinitions.json
|
||||
**/ios/Runner/GeneratedPluginRegistrant.*
|
||||
|
||||
# Exceptions to above rules.
|
||||
!**/ios/**/default.mode1v3
|
||||
!**/ios/**/default.mode2v3
|
||||
!**/ios/**/default.pbxuser
|
||||
!**/ios/**/default.perspectivev3
|
||||
!/packages/flutter_tools/test/data/dart_dependencies_test/**/.packages
|
||||
!/dev/ci/**/Gemfile.lock
|
||||
|
||||
# Android related
|
||||
**/android/**/gradle-wrapper.jar
|
||||
**/android/.gradle
|
||||
**/android/captures/
|
||||
**/android/gradlew
|
||||
**/android/gradlew.bat
|
||||
**/android/local.properties
|
||||
**/android/**/GeneratedPluginRegistrant.java
|
||||
**/android/key.properties
|
||||
*.keystore
|
||||
!**/android/app/debug.keystore
|
||||
|
||||
# Generated files
|
||||
*.g.dart
|
||||
*.freezed.dart
|
||||
|
||||
# Local env files
|
||||
.env
|
||||
.env.*
|
||||
|
||||
# Coverage
|
||||
coverage/
|
||||
32
news-app/analysis_options.yaml
Normal file
@@ -0,0 +1,32 @@
|
||||
# This file configures the analyzer, which statically analyzes Dart code to
|
||||
# check for errors, warnings, and lints.
|
||||
#
|
||||
# The issues identified by the analyzer are surfaced in the UI of Dart-enabled
|
||||
# IDEs (https://dart.dev/tools#ides-and-editors). The analyzer can also be
|
||||
# invoked from the command line by running `flutter analyze`.
|
||||
|
||||
# The following line activates a set of recommended lints for Flutter apps,
|
||||
# packages, and plugins designed to encourage good coding practices.
|
||||
analyzer:
|
||||
errors:
|
||||
deprecated_member_use: ignore
|
||||
must_be_immutable: ignore
|
||||
override_on_non_overriding_member: ignore
|
||||
|
||||
linter:
|
||||
# The lint rules applied to this project can be customized in the
|
||||
# section below to disable rules from the `package:flutter_lints/flutter.yaml`
|
||||
# included above or to enable additional rules. A list of all available lints
|
||||
# and their documentation is published at
|
||||
# https://dart-lang.github.io/linter/lints/index.html.
|
||||
#
|
||||
# Instead of disabling a lint rule for the entire project in the
|
||||
# section below, it can also be suppressed for a single line of code
|
||||
# or a specific dart file by using the `// ignore: name_of_lint` and
|
||||
# producing the lint.
|
||||
rules:
|
||||
# avoid_print: false # Uncomment to disable the `avoid_print` rule
|
||||
# prefer_single_quotes: true # Uncomment to enable the `prefer_single_quotes` rule
|
||||
|
||||
# Additional information about this file can be found at
|
||||
# https://dart.dev/guides/language/analysis-options
|
||||
87
news-app/android/app/build.gradle
Normal file
@@ -0,0 +1,87 @@
|
||||
plugins {
|
||||
id "com.android.application"
|
||||
id "kotlin-android"
|
||||
id "com.google.gms.google-services"
|
||||
// The Flutter Gradle Plugin must be applied after the Android and Kotlin Gradle plugins.
|
||||
id "dev.flutter.flutter-gradle-plugin"
|
||||
}
|
||||
|
||||
|
||||
def keystoreProperties = new Properties()
|
||||
def keystorePropertiesFile = rootProject.file('key.properties')
|
||||
if (keystorePropertiesFile.exists()) {
|
||||
keystoreProperties.load(new FileInputStream(keystorePropertiesFile))
|
||||
}
|
||||
|
||||
android {
|
||||
testOptions.unitTests.includeAndroidResources = true
|
||||
namespace 'com.news_app'
|
||||
compileSdk flutter.compileSdkVersion
|
||||
ndkVersion "27.0.12077973"
|
||||
|
||||
compileOptions {
|
||||
coreLibraryDesugaringEnabled true
|
||||
sourceCompatibility = JavaVersion.VERSION_1_8
|
||||
targetCompatibility = JavaVersion.VERSION_1_8
|
||||
}
|
||||
|
||||
kotlinOptions {
|
||||
jvmTarget = JavaVersion.VERSION_1_8
|
||||
}
|
||||
|
||||
|
||||
defaultConfig {
|
||||
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
|
||||
applicationId "com.news_app"
|
||||
minSdk 27
|
||||
targetSdk flutter.targetSdkVersion
|
||||
multiDexEnabled true
|
||||
versionCode flutter.versionCode
|
||||
versionName flutter.versionName
|
||||
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
||||
}
|
||||
//Don't Change Signing Configs below.
|
||||
signingConfigs {
|
||||
release {
|
||||
keyAlias keystoreProperties['keyAlias']
|
||||
keyPassword keystoreProperties['keyPassword']
|
||||
storeFile keystoreProperties['storeFile'] ? file(keystoreProperties['storeFile']) : null
|
||||
storePassword keystoreProperties['storePassword']
|
||||
}
|
||||
}
|
||||
|
||||
buildTypes {
|
||||
release {
|
||||
// TODO: Add your own signing config for the release build.
|
||||
minifyEnabled false // Change from true to false
|
||||
shrinkResources false // Change from true to false
|
||||
// Signing with the debug keys for now, so `flutter run --release` works.
|
||||
signingConfig signingConfigs.debug //Change it to signingConfigs.release for release apk
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
flutter {
|
||||
source '../..'
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation 'com.android.support:multidex:2.0.1'
|
||||
implementation platform('com.google.firebase:firebase-bom:32.3.1')
|
||||
implementation 'com.google.firebase:firebase-auth'
|
||||
implementation 'com.google.android.gms:play-services-ads:23.6.0'
|
||||
implementation 'com.google.android.gms:play-services-measurement-api:21.6.1'
|
||||
implementation 'com.google.android.gms:play-services-auth:21.3.0'
|
||||
implementation 'com.google.firebase:firebase-analytics'
|
||||
implementation 'com.google.guava:guava:30.1.1-android'
|
||||
implementation 'com.facebook.android:facebook-android-sdk:[8,9)'
|
||||
implementation 'com.google.android.ump:user-messaging-platform:2.1.0'
|
||||
implementation 'com.google.android.recaptcha:recaptcha:18.4.0'
|
||||
testImplementation 'junit:junit:4.13.2'
|
||||
androidTestImplementation 'androidx.test:runner:1.2.0'
|
||||
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
|
||||
coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:2.1.4'
|
||||
}
|
||||
|
||||
29
news-app/android/app/google-services.json
Normal file
@@ -0,0 +1,29 @@
|
||||
{
|
||||
"project_info": {
|
||||
"project_number": "106496138088",
|
||||
"project_id": "news-demo-34c11",
|
||||
"storage_bucket": "news-demo-34c11.firebasestorage.app"
|
||||
},
|
||||
"client": [
|
||||
{
|
||||
"client_info": {
|
||||
"mobilesdk_app_id": "1:106496138088:android:ed64e0205fbece3c5514dd",
|
||||
"android_client_info": {
|
||||
"package_name": "com.news_app"
|
||||
}
|
||||
},
|
||||
"oauth_client": [],
|
||||
"api_key": [
|
||||
{
|
||||
"current_key": "AIzaSyD9qu92sCBHK2c85JPJSFRfviXDvDF9fD4"
|
||||
}
|
||||
],
|
||||
"services": {
|
||||
"appinvite_service": {
|
||||
"other_platform_oauth_client": []
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
"configuration_version": "1"
|
||||
}
|
||||
7
news-app/android/app/src/debug/AndroidManifest.xml
Normal file
@@ -0,0 +1,7 @@
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<!-- The INTERNET permission is required for development. Specifically,
|
||||
the Flutter tool needs it to communicate with the running application
|
||||
to allow setting breakpoints, to provide hot reload, etc.
|
||||
-->
|
||||
<uses-permission android:name="android.permission.INTERNET"/>
|
||||
</manifest>
|
||||
98
news-app/android/app/src/main/AndroidManifest.xml
Normal file
@@ -0,0 +1,98 @@
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:tools="http://schemas.android.com/tools">
|
||||
|
||||
<uses-permission android:name="android.permission.INTERNET" />
|
||||
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
||||
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
|
||||
<uses-permission android:name="com.google.android.gms.permission.AD_ID" />
|
||||
<uses-permission android:name="android.permission.READ_PHONE_STATE" />
|
||||
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
||||
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
|
||||
|
||||
<application
|
||||
android:label="elCaribe"
|
||||
android:name="${applicationName}"
|
||||
android:icon="@mipmap/ic_launcher"
|
||||
android:usesCleartextTraffic="true"
|
||||
android:requestLegacyExternalStorage="true"
|
||||
tools:remove="android:resource">
|
||||
|
||||
|
||||
<activity
|
||||
android:name=".MainActivity"
|
||||
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"
|
||||
android:exported="true"
|
||||
android:largeHeap="true"
|
||||
android:hardwareAccelerated="true"
|
||||
android:launchMode="singleTask"
|
||||
android:theme="@style/LaunchTheme"
|
||||
android:windowSoftInputMode="adjustResize">
|
||||
<meta-data
|
||||
android:name="io.flutter.embedding.android.NormalTheme"
|
||||
android:resource="@style/NormalTheme" />
|
||||
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
<category android:name="android.intent.category.LAUNCHER" />
|
||||
</intent-filter>
|
||||
<intent-filter>
|
||||
<action android:name="FLUTTER_NOTIFICATION_CLICK" />
|
||||
<category android:name="android.intent.category.DEFAULT" />
|
||||
</intent-filter>
|
||||
|
||||
<meta-data android:name="flutter_deeplinking_enabled" android:value="true" />
|
||||
<intent-filter android:autoVerify="true">
|
||||
<action android:name="android.intent.action.VIEW" />
|
||||
<category android:name="android.intent.category.DEFAULT" />
|
||||
<category android:name="android.intent.category.BROWSABLE" />
|
||||
<!-- without http or https -->
|
||||
|
||||
<data
|
||||
android:host="enter_your_website_url_here"
|
||||
android:scheme="news" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
<!-- Don't delete the meta-data below.
|
||||
This is used by the Flutter tool to generate GeneratedPluginRegistrant.java -->
|
||||
<meta-data
|
||||
android:name="flutterEmbedding"
|
||||
android:value="2" />
|
||||
|
||||
|
||||
|
||||
<!-- facebook login requirement -->
|
||||
<meta-data
|
||||
android:name="com.facebook.sdk.ApplicationId"
|
||||
android:value="@string/facebook_app_id" />
|
||||
<meta-data
|
||||
android:name="com.facebook.sdk.ClientToken"
|
||||
android:value="@string/facebook_client_token" />
|
||||
|
||||
<activity
|
||||
android:name="com.facebook.FacebookActivity"
|
||||
android:configChanges="keyboard|keyboardHidden|screenLayout|screenSize|orientation"
|
||||
android:label="@string/app_name" />
|
||||
<activity
|
||||
android:name="com.facebook.CustomTabActivity"
|
||||
android:exported="true">
|
||||
<!-- facebook login -->
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.VIEW" />
|
||||
<category android:name="android.intent.category.DEFAULT" />
|
||||
<category android:name="android.intent.category.BROWSABLE" />
|
||||
<data android:scheme="@string/fb_login_protocol_scheme" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
<meta-data
|
||||
android:name="com.google.firebase.messaging.default_notification_icon"
|
||||
android:resource="@drawable/notification_icon" />
|
||||
|
||||
<meta-data
|
||||
android:name="com.google.firebase.messaging.default_notification_channel_id"
|
||||
android:value="big_text_channel_id" />
|
||||
|
||||
<meta-data
|
||||
android:name="com.google.android.gms.ads.APPLICATION_ID"
|
||||
android:value="ca-app-pub-2310773470120036~3763173896" />
|
||||
</application>
|
||||
</manifest>
|
||||
@@ -0,0 +1,5 @@
|
||||
package com.news_app
|
||||
|
||||
import io.flutter.embedding.android.FlutterActivity
|
||||
|
||||
class MainActivity : FlutterActivity() {}
|
||||
@@ -0,0 +1,12 @@
|
||||
<?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">
|
||||
<item android:drawable="@color/splash_color" />
|
||||
|
||||
<!-- You can insert your own image assets here -->
|
||||
<!-- <item>
|
||||
<bitmap
|
||||
android:gravity="center"
|
||||
android:src="@mipmap/launch_image" />
|
||||
</item> -->
|
||||
</layer-list>
|
||||
BIN
news-app/android/app/src/main/res/drawable/ic_launcher.png
Normal file
|
After Width: | Height: | Size: 1.8 KiB |
@@ -0,0 +1,12 @@
|
||||
<?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">
|
||||
<item android:drawable="@color/splash_color" />
|
||||
|
||||
<!-- You can insert your own image assets here -->
|
||||
<!-- <item>
|
||||
<bitmap
|
||||
android:gravity="center"
|
||||
android:src="@mipmap/launch_image" />
|
||||
</item> -->
|
||||
</layer-list>
|
||||
BIN
news-app/android/app/src/main/res/drawable/notification_icon.png
Normal file
|
After Width: | Height: | Size: 1.8 KiB |
BIN
news-app/android/app/src/main/res/logo_caribe.png
Normal file
|
After Width: | Height: | Size: 1.8 KiB |
BIN
news-app/android/app/src/main/res/mipmap-hdpi/ic_launcher.png
Normal file
|
After Width: | Height: | Size: 1.8 KiB |
|
After Width: | Height: | Size: 1.8 KiB |
|
After Width: | Height: | Size: 1.8 KiB |
BIN
news-app/android/app/src/main/res/mipmap-ldpi/ic_launcher.png
Normal file
|
After Width: | Height: | Size: 1.8 KiB |
|
After Width: | Height: | Size: 1.8 KiB |
|
After Width: | Height: | Size: 1.8 KiB |
BIN
news-app/android/app/src/main/res/mipmap-mdpi/ic_launcher.png
Normal file
|
After Width: | Height: | Size: 1.8 KiB |
|
After Width: | Height: | Size: 1.8 KiB |
|
After Width: | Height: | Size: 1.8 KiB |
BIN
news-app/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png
Normal file
|
After Width: | Height: | Size: 1.8 KiB |
|
After Width: | Height: | Size: 1.8 KiB |
|
After Width: | Height: | Size: 1.8 KiB |
BIN
news-app/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
Normal file
|
After Width: | Height: | Size: 1.8 KiB |
|
After Width: | Height: | Size: 1.8 KiB |
|
After Width: | Height: | Size: 1.8 KiB |
BIN
news-app/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
Normal file
|
After Width: | Height: | Size: 1.8 KiB |
|
After Width: | Height: | Size: 1.8 KiB |
|
After Width: | Height: | Size: 1.8 KiB |
18
news-app/android/app/src/main/res/values-night/styles.xml
Normal file
@@ -0,0 +1,18 @@
|
||||
<?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">
|
||||
<!-- Show a splash screen on the activity. Automatically removed when
|
||||
Flutter draws its first frame -->
|
||||
<item name="android:windowBackground">@drawable/launch_background</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>
|
||||
4
news-app/android/app/src/main/res/values/colors.xml
Normal file
@@ -0,0 +1,4 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<color name="splash_color">#008DA8</color>
|
||||
</resources>
|
||||
7
news-app/android/app/src/main/res/values/strings.xml
Normal file
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<string name="app_name">elCaribe</string>
|
||||
<string name="facebook_app_id">3187011931582004</string>
|
||||
<string name="fb_login_protocol_scheme">fb3187011931582004</string>
|
||||
<string name="facebook_client_token">c5fcb2473b8557c9ff049dd807db8240</string>
|
||||
</resources>
|
||||
18
news-app/android/app/src/main/res/values/styles.xml
Normal file
@@ -0,0 +1,18 @@
|
||||
<?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">
|
||||
<!-- Show a splash screen on the activity. Automatically removed when
|
||||
Flutter draws its first frame -->
|
||||
<item name="android:windowBackground">@drawable/launch_background</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>
|
||||
7
news-app/android/app/src/profile/AndroidManifest.xml
Normal file
@@ -0,0 +1,7 @@
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<!-- The INTERNET permission is required for development. Specifically,
|
||||
the Flutter tool needs it to communicate with the running application
|
||||
to allow setting breakpoints, to provide hot reload, etc.
|
||||
-->
|
||||
<uses-permission android:name="android.permission.INTERNET"/>
|
||||
</manifest>
|
||||
33
news-app/android/build.gradle
Normal file
@@ -0,0 +1,33 @@
|
||||
allprojects {
|
||||
repositories {
|
||||
google()
|
||||
mavenCentral()
|
||||
}
|
||||
}
|
||||
|
||||
rootProject.buildDir = '../build'
|
||||
|
||||
subprojects {
|
||||
afterEvaluate { project ->
|
||||
if (project.plugins.hasPlugin("com.android.application") ||
|
||||
project.plugins.hasPlugin("com.android.library")) {
|
||||
project.android {
|
||||
compileSdkVersion 36
|
||||
}
|
||||
}
|
||||
if (project.hasProperty('android')) {
|
||||
project.android {
|
||||
if (namespace == null) {
|
||||
namespace project.group
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
project.buildDir = "${rootProject.buildDir}/${project.name}"
|
||||
project.evaluationDependsOn(':app')
|
||||
}
|
||||
|
||||
|
||||
tasks.register("clean", Delete) {
|
||||
delete rootProject.buildDir
|
||||
}
|
||||
3
news-app/android/gradle.properties
Normal file
@@ -0,0 +1,3 @@
|
||||
org.gradle.jvmargs=-Xmx2048m
|
||||
android.useAndroidX=true
|
||||
android.enableJetifier=true
|
||||
5
news-app/android/gradle/wrapper/gradle-wrapper.properties
vendored
Normal file
@@ -0,0 +1,5 @@
|
||||
distributionBase=GRADLE_USER_HOME
|
||||
distributionPath=wrapper/dists
|
||||
distributionUrl = https\://services.gradle.org/distributions/gradle-8.11.1-all.zip
|
||||
zipStoreBase=GRADLE_USER_HOME
|
||||
zipStorePath=wrapper/dists
|
||||
26
news-app/android/settings.gradle
Normal file
@@ -0,0 +1,26 @@
|
||||
pluginManagement {
|
||||
def flutterSdkPath = {
|
||||
def properties = new Properties()
|
||||
file("local.properties").withInputStream { properties.load(it) }
|
||||
def flutterSdkPath = properties.getProperty("flutter.sdk")
|
||||
assert flutterSdkPath != null, "flutter.sdk not set in local.properties"
|
||||
return flutterSdkPath
|
||||
}()
|
||||
|
||||
includeBuild("$flutterSdkPath/packages/flutter_tools/gradle")
|
||||
|
||||
repositories {
|
||||
google()
|
||||
mavenCentral()
|
||||
gradlePluginPortal()
|
||||
}
|
||||
}
|
||||
|
||||
plugins {
|
||||
id "dev.flutter.flutter-plugin-loader" version "1.0.0"
|
||||
id "com.android.application" version "8.9.1" apply false
|
||||
id "org.jetbrains.kotlin.android" version "2.1.10" apply false
|
||||
id "com.google.gms.google-services" version "4.4.2" apply false
|
||||
}
|
||||
|
||||
include ":app"
|
||||
1
news-app/assets/animations/noInternet.json
Normal file
BIN
news-app/assets/font/Roboto-Bold.ttf
Normal file
BIN
news-app/assets/font/Roboto-Light.ttf
Normal file
BIN
news-app/assets/font/Roboto-Medium.ttf
Normal file
BIN
news-app/assets/font/Roboto-Regular.ttf
Normal file
BIN
news-app/assets/images/live_news.png
Normal file
|
After Width: | Height: | Size: 1.3 KiB |
BIN
news-app/assets/images/live_news_dark.png
Normal file
|
After Width: | Height: | Size: 1.3 KiB |
BIN
news-app/assets/images/placeholder.png
Normal file
|
After Width: | Height: | Size: 18 KiB |
6
news-app/assets/images/svgImage/apple_logo.svg
Normal file
@@ -0,0 +1,6 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="87.234" height="104.7" viewBox="0 0 87.234 104.7">
|
||||
<g id="apple_logo" transform="translate(-6.748 -4.5)">
|
||||
<path id="Path_22" data-name="Path 22" d="M71.521,10.821c-9.159,0-13.03,4.415-19.408,4.415-6.542,0-11.53-4.389-19.463-4.389-7.769,0-16.055,4.79-21.316,12.952C3.947,35.307,5.2,56.983,17.168,75.448c4.28,6.61,10,14.022,17.5,14.1H34.8c6.515,0,8.45-4.308,17.418-4.362h.136c8.832,0,10.6,4.335,17.091,4.335h.136c7.5-.08,13.52-8.3,17.8-14.879a72.725,72.725,0,0,0,6.6-12.47c-17.309-6.637-20.09-31.417-2.971-40.917-5.234-6.61-12.566-10.437-19.49-10.437Z" transform="translate(0 19.65)"/>
|
||||
<path id="Path_23" data-name="Path 23" d="M39.653,4.5c-5.778.4-12.509,4.189-16.466,9.129-3.582,4.478-6.529,11.122-5.373,17.564h.462c6.153,0,12.451-3.813,16.12-8.7,3.553-4.651,6.24-11.238,5.258-18Z" transform="translate(30.301 0)"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 887 B |
4
news-app/assets/images/svgImage/cameraIcon.svg
Normal file
@@ -0,0 +1,4 @@
|
||||
<svg width="36" height="36" viewBox="0 0 36 36" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="36" height="36" rx="8" fill="#1B2D51" fill-opacity="0.1"/>
|
||||
<path d="M20.9334 19.185C20.9334 19.7686 20.7603 20.3392 20.4361 20.8244C20.1118 21.3097 19.651 21.6879 19.1118 21.9112C18.5726 22.1346 17.9793 22.193 17.4069 22.0792C16.8345 21.9653 16.3087 21.6843 15.896 21.2716C15.4833 20.8589 15.2023 20.3331 15.0884 19.7607C14.9745 19.1883 15.033 18.595 15.2563 18.0558C15.4797 17.5166 15.8579 17.0557 16.3431 16.7315C16.8284 16.4073 17.3989 16.2342 17.9825 16.2342C18.7649 16.2351 19.5149 16.5462 20.0681 17.0994C20.6213 17.6526 20.9325 18.4027 20.9334 19.185ZM27.1317 14.995V23.3767C27.1317 23.6424 27.0794 23.9055 26.9777 24.151C26.876 24.3965 26.727 24.6195 26.5391 24.8074C26.3512 24.9953 26.1282 25.1443 25.8827 25.246C25.6372 25.3477 25.3741 25.4 25.1084 25.4H10.8567C10.591 25.4 10.3279 25.3477 10.0824 25.246C9.83693 25.1443 9.61388 24.9953 9.42599 24.8074C9.23811 24.6195 9.08907 24.3965 8.98739 24.151C8.88571 23.9055 8.83337 23.6424 8.83337 23.3767V14.995C8.83337 14.4584 9.04655 13.9438 9.42599 13.5643C9.80544 13.1849 10.3201 12.9717 10.8567 12.9717H13.345V12.2717C13.3449 12.0391 13.3907 11.8088 13.4796 11.5939C13.5686 11.379 13.699 11.1837 13.8635 11.0193C14.0279 10.8548 14.2232 10.7244 14.4381 10.6354C14.653 10.5465 14.8833 10.5007 15.1159 10.5009H20.8492C21.0818 10.5007 21.3121 10.5465 21.527 10.6354C21.7419 10.7244 21.9372 10.8548 22.1016 11.0193C22.2661 11.1837 22.3965 11.379 22.4855 11.5939C22.5744 11.8088 22.6202 12.0391 22.62 12.2717V12.9709H25.1084C25.6451 12.9711 26.1597 13.1844 26.5391 13.564C26.9186 13.9436 27.1317 14.4583 27.1317 14.995ZM22.4509 19.185C22.4509 18.3013 22.1888 17.4374 21.6978 16.7025C21.2068 15.9677 20.509 15.395 19.6925 15.0568C18.876 14.7186 17.9776 14.6301 17.1108 14.8025C16.244 14.975 15.4479 15.4005 14.823 16.0254C14.198 16.6503 13.7725 17.4465 13.6001 18.3133C13.4277 19.1801 13.5161 20.0785 13.8543 20.895C14.1925 21.7115 14.7653 22.4093 15.5001 22.9003C16.2349 23.3913 17.0988 23.6534 17.9825 23.6534C19.1672 23.652 20.303 23.1808 21.1407 22.3431C21.9784 21.5055 22.4496 20.3697 22.4509 19.185Z" fill="#1B2D51"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.1 KiB |
8
news-app/assets/images/svgImage/caribe_blanco.svg
Normal file
|
After Width: | Height: | Size: 13 KiB |
10
news-app/assets/images/svgImage/deactivatedNews.svg
Normal file
@@ -0,0 +1,10 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_510_4800)">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M0.499756 8C0.499756 3.85787 3.85763 0.5 7.99976 0.5C12.1419 0.5 15.4998 3.85787 15.4998 8C15.4998 12.1421 12.1419 15.5 7.99976 15.5C3.85763 15.5 0.499756 12.1421 0.499756 8ZM11.1462 11.8535C11.3415 12.0488 11.6581 12.0488 11.8533 11.8535C12.0486 11.6583 12.0486 11.3417 11.8533 11.1464L4.78223 4.07535C4.58698 3.8801 4.27041 3.8801 4.07513 4.07535C3.87988 4.27062 3.87988 4.5872 4.07513 4.78247L11.1462 11.8535Z" fill="#BE151E"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_510_4800">
|
||||
<rect width="16" height="16" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 727 B |
26
news-app/assets/images/svgImage/deleteAccount.svg
Normal file
@@ -0,0 +1,26 @@
|
||||
<svg id="Image" xmlns="http://www.w3.org/2000/svg" width="87.311" height="70.993" viewBox="0 0 87.311 70.993">
|
||||
<g id="bg_shape" data-name="bg shape">
|
||||
<rect id="icon_bg" data-name="icon bg" width="87.311" height="70.992" fill="none"/>
|
||||
<path id="Path_17611" data-name="Path 17611" d="M65.868,8.131a8.137,8.137,0,0,1-8.124,8.124H46.165a6.887,6.887,0,0,1-5.531,10.991H6.89a6.887,6.887,0,1,1,0-13.774h5.8A8.127,8.127,0,0,1,18.807,0H57.744a8.126,8.126,0,0,1,8.124,8.131" fill="rgba(27,50,91,0.11)"/>
|
||||
<path id="Path_17612" data-name="Path 17612" d="M80.654,63.214H79.8a6.658,6.658,0,0,1-.918,8.264,6.838,6.838,0,0,1-1.64,1.206,6.269,6.269,0,0,1-2.776,11.888H58.518a6.27,6.27,0,0,1-4.437-10.7,5.938,5.938,0,0,1,.491-.442H39.2a6.655,6.655,0,0,1-1.766-13.073,8.928,8.928,0,0,1-2.04-3.645H13.16a5.65,5.65,0,1,1,0-11.3H80.654a8.9,8.9,0,0,1,0,17.8" transform="translate(-2.246 -13.58)" fill="rgba(27,50,91,0.11)"/>
|
||||
</g>
|
||||
<g id="circle" transform="translate(-138.845 -286.967)">
|
||||
<circle id="d" cx="2" cy="2" r="2" transform="translate(213 345)" fill="#ee2934"/>
|
||||
<g id="c" transform="translate(153 290)" fill="#fff" stroke="#ee2934" stroke-width="1">
|
||||
<circle cx="3" cy="3" r="3" stroke="none"/>
|
||||
<circle cx="3" cy="3" r="2.5" fill="none"/>
|
||||
</g>
|
||||
<g id="b" transform="translate(157 346)" fill="#fff" stroke="#ee2934" stroke-width="1">
|
||||
<circle cx="2" cy="2" r="2" stroke="none"/>
|
||||
<circle cx="2" cy="2" r="1.5" fill="none"/>
|
||||
</g>
|
||||
<circle id="a" cx="1.5" cy="1.5" r="1.5" transform="translate(149 297)" fill="#ee2934"/>
|
||||
</g>
|
||||
<g id="delate_front" data-name="delate front" transform="translate(22.618 7.669)">
|
||||
<path id="Path_17613" data-name="Path 17613" d="M44.834,20.521,3.9,11.767A1.784,1.784,0,0,1,2.534,9.649l.72-3.369A1.783,1.783,0,0,1,5.37,4.908L46.3,13.661a1.785,1.785,0,0,1,1.372,2.118l-.72,3.369a1.785,1.785,0,0,1-2.118,1.372" transform="translate(-0.594 -1.157)" fill="#ee2934"/>
|
||||
<rect id="red_noch" data-name="red noch" width="4.965" height="15.203" transform="translate(18.264 5.755) rotate(-77.933)" fill="#ee2934"/>
|
||||
<path id="Path_17614" data-name="Path 17614" d="M52.146,19.155a4.574,4.574,0,0,0-3.515-5.429l5.216,1.116a4.573,4.573,0,0,1,3.515,5.428l-.871,4.078,0,.008a1.161,1.161,0,0,1-1.382.888l-5.217-1.116.009,0a1.161,1.161,0,0,0,1.375-.9Z" transform="translate(-11.573 -3.263)" fill="#97070f"/>
|
||||
<path id="Path_17615" data-name="Path 17615" d="M44.038,11.3,35.05,9.236l.212-.921a5.079,5.079,0,0,0-3.807-6.08L22.3.13A5.083,5.083,0,0,0,16.22,3.938l-.212.922L7.021,2.793A5.11,5.11,0,0,0,.9,6.627l-.872,3.8A1.211,1.211,0,0,0,.94,11.874L33.3,19.313H1.987A1.211,1.211,0,0,0,.782,20.638L4.311,57.684A4.747,4.747,0,0,0,9.056,62H36.907a4.748,4.748,0,0,0,4.745-4.316l3.4-35.671.5.114a1.242,1.242,0,0,0,.273.03A1.21,1.21,0,0,0,47,21.218l.873-3.8a5.118,5.118,0,0,0-3.832-6.12Zm-4.8,46.153a2.337,2.337,0,0,1-2.336,2.124H9.056A2.337,2.337,0,0,1,6.72,57.455l-3.4-35.719H42.644ZM18.579,4.48a2.662,2.662,0,0,1,3.177-1.99l9.157,2.1A2.653,2.653,0,0,1,32.9,7.772l-.211.922L18.368,5.4Zm26.93,12.4-.6,2.616L2.662,9.786l.6-2.616A2.686,2.686,0,0,1,6.479,5.154l26.85,6.171h0L43.5,13.663A2.687,2.687,0,0,1,45.51,16.88ZM30.8,55.767l1.479-30.338a1.21,1.21,0,1,1,2.418.117L33.214,55.884a1.211,1.211,0,0,1-1.208,1.153l-.06,0a1.211,1.211,0,0,1-1.15-1.268m-18.048.117L11.269,25.547a1.211,1.211,0,1,1,2.419-.118l1.478,30.338a1.211,1.211,0,0,1-1.15,1.269l-.06,0a1.211,1.211,0,0,1-1.208-1.153m9.022-.059V25.488a1.21,1.21,0,1,1,2.421,0V55.826a1.21,1.21,0,1,1-2.421,0Z"/>
|
||||
<rect id="bg_delete" data-name="bg delete" width="48" height="62" transform="translate(0 0)" fill="none"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 3.6 KiB |
6
news-app/assets/images/svgImage/deleteMyNews.svg
Normal file
@@ -0,0 +1,6 @@
|
||||
<svg width="30" height="30" viewBox="0 0 30 30" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="30" height="30" rx="4" fill="#EE2934" fill-opacity="0.1"/>
|
||||
<rect x="0.5" y="0.5" width="29" height="29" rx="3.5" stroke="#EE2934" stroke-opacity="0.1"/>
|
||||
<path d="M17.2392 9.09067C18.3117 9.09067 19.3917 9.09067 20.4717 9.09067C20.5314 9.08164 20.5924 9.08684 20.6498 9.10585C20.7071 9.12486 20.7592 9.15714 20.8017 9.20006C20.8442 9.24299 20.876 9.29534 20.8945 9.35287C20.913 9.4104 20.9176 9.47147 20.908 9.53113V10.1059C20.908 10.4468 20.7628 10.5675 20.4308 10.5675H9.60689C9.37848 10.5675 9.21485 10.5491 9.12485 10.3391C9.10173 10.2749 9.09154 10.2068 9.09485 10.1386V9.53658C9.09485 9.24817 9.22167 9.08931 9.52167 9.08931H12.761C12.7641 9.08951 12.7672 9.08905 12.7701 9.08795C12.773 9.08686 12.7756 9.08516 12.7778 9.08296C12.78 9.08077 12.7817 9.07813 12.7828 9.07523C12.7839 9.07233 12.7844 9.06922 12.7842 9.06613C12.7842 8.83976 12.7842 8.61613 12.7842 8.39249C12.7764 8.22803 12.8237 8.06567 12.9185 7.93107C13.0133 7.79648 13.1503 7.69734 13.3078 7.64931C13.4588 7.61911 13.6128 7.60675 13.7667 7.61249C14.6503 7.61249 15.5339 7.61249 16.4176 7.61249C16.5886 7.59967 16.7588 7.64645 16.8993 7.74488C17.0397 7.84332 17.1417 7.98735 17.188 8.15249C17.2108 8.26094 17.2202 8.37176 17.216 8.48249V9.06408C17.2158 9.06718 17.2162 9.07028 17.2173 9.07318C17.2184 9.07609 17.2201 9.07873 17.2223 9.08092C17.2245 9.08311 17.2272 9.08481 17.2301 9.08591C17.233 9.087 17.2361 9.08746 17.2392 9.08726V9.09067Z" fill="#F69595" fill-opacity="0.8"/>
|
||||
<path d="M11.6146 22.3439C11.3087 22.2715 11.0337 22.1038 10.8292 21.8649C10.6248 21.6261 10.5016 21.3284 10.4774 21.015C10.4678 20.9045 10.4658 20.7661 10.4542 20.6414C10.4221 20.3093 10.4058 19.9561 10.3806 19.6445C10.3485 19.2661 10.3253 18.8598 10.3001 18.512C10.171 16.7448 10.0449 14.9782 9.92169 13.2123C9.92169 13.1659 9.90532 13.0118 9.88487 12.7534C9.86646 12.527 9.85282 12.3014 9.84328 12.0716C9.84308 12.0658 9.84509 12.0602 9.84889 12.0559C9.8527 12.0516 9.85801 12.0489 9.86374 12.0484H20.1374C20.143 12.0486 20.1484 12.0508 20.1526 12.0545C20.1568 12.0582 20.1596 12.0633 20.1606 12.0689C20.1652 12.1032 20.1652 12.1381 20.1606 12.1725C19.9574 15.068 19.7544 17.9634 19.5517 20.8589C19.5448 21.0087 19.5247 21.1577 19.4917 21.3041C19.4141 21.5824 19.2564 21.8319 19.0382 22.0213C18.82 22.2108 18.5509 22.332 18.2644 22.3698C18.111 22.3841 17.9569 22.3895 17.8028 22.3861H12.0646C11.9136 22.3872 11.7628 22.373 11.6146 22.3439ZM13.4351 16.562C13.6451 16.7741 13.8571 16.9868 14.0699 17.1988C14.072 17.2009 14.0737 17.2034 14.0748 17.2062C14.076 17.2089 14.0766 17.2119 14.0766 17.2149C14.0766 17.2178 14.076 17.2208 14.0748 17.2236C14.0737 17.2263 14.072 17.2288 14.0699 17.2309C13.6431 17.6598 13.2183 18.0893 12.7894 18.5182C12.5706 18.737 12.533 18.917 12.769 19.1502L13.0669 19.4475C13.1124 19.513 13.1781 19.5618 13.2539 19.5864C13.3298 19.6111 13.4116 19.6102 13.4869 19.5839C13.574 19.5402 13.6516 19.4797 13.7153 19.4059C14.1374 18.9859 14.5621 18.5659 14.9842 18.1459C14.9863 18.1438 14.9888 18.1421 14.9915 18.1409C14.9943 18.1398 14.9972 18.1392 15.0002 18.1392C15.0032 18.1392 15.0061 18.1398 15.0089 18.1409C15.0116 18.1421 15.0141 18.1438 15.0162 18.1459C15.4253 18.555 15.8344 18.9607 16.2435 19.3684C16.3201 19.4538 16.4107 19.5255 16.5115 19.5804C16.5804 19.6054 16.6554 19.6084 16.7261 19.589C16.7968 19.5696 16.8597 19.5287 16.9062 19.472C17.1462 19.2389 17.481 19.0084 17.3631 18.722C17.316 18.6332 17.2534 18.5535 17.1783 18.4868C16.7631 18.0668 16.3451 17.6495 15.9278 17.2295C15.9257 17.2274 15.924 17.2249 15.9229 17.2222C15.9217 17.2194 15.9211 17.2165 15.9211 17.2135C15.9211 17.2105 15.9217 17.2076 15.9229 17.2048C15.924 17.2021 15.9257 17.1996 15.9278 17.1975L17.1946 15.9238C17.2611 15.8632 17.3164 15.7914 17.3583 15.7118C17.3871 15.6404 17.3922 15.5617 17.3726 15.4872C17.3531 15.4128 17.31 15.3466 17.2499 15.2986C17.0951 15.1439 16.9771 15.0259 16.8994 14.9523C16.8526 14.8954 16.7892 14.8545 16.7181 14.8355C16.6469 14.8164 16.5716 14.82 16.5026 14.8459C16.4146 14.8951 16.3352 14.9582 16.2674 15.0327C15.8501 15.4479 15.4301 15.8659 15.0101 16.2811C15.008 16.2833 15.0055 16.2849 15.0028 16.2861C15 16.2872 14.9971 16.2878 14.9941 16.2878C14.9911 16.2878 14.9881 16.2872 14.9854 16.2861C14.9826 16.2849 14.9801 16.2833 14.9781 16.2811L13.6976 15.0075C13.6422 14.9461 13.5767 14.8947 13.504 14.8554C13.2851 14.7539 13.1487 14.8875 12.9824 15.0559C12.7335 15.3048 12.4008 15.5264 12.7656 15.8932C12.9912 16.1161 13.2128 16.3377 13.4344 16.5613L13.4351 16.562Z" fill="#F69595" fill-opacity="0.8"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 4.5 KiB |
7
news-app/assets/images/svgImage/delete_icon.svg
Normal file
@@ -0,0 +1,7 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="54" height="54" viewBox="0 0 54 54">
|
||||
<g id="delete_icon" transform="translate(-3049 24220)">
|
||||
<rect id="delete_icon-2" data-name="delete_icon" width="54" height="54" transform="translate(3049 -24220)" fill="none"/>
|
||||
<path id="Path_14595" data-name="Path 14595" d="M8.975,48.938A5.085,5.085,0,0,0,14.46,54H39.308c3.639,0,5.558-1.867,5.78-5.484.591-9.745,2.025-33.507,2.13-35.448H6.845c0,.422,1.413,24.458,2.13,35.87Z" transform="translate(3048.998 -24220)" fill="#1b2d51"/>
|
||||
<path id="Path_14596" data-name="Path 14596" d="M47.176,3.47c-2.858-.021-5.706-.042-8.554.011A3.808,3.808,0,0,0,34.836,0H19.164a3.791,3.791,0,0,0-3.776,3.48c-2.932-.053-5.875-.032-8.807-.011A3,3,0,0,0,3.554,5.7,3.212,3.212,0,0,0,6.771,10c6.761.021,13.511.011,20.261.011H47.155c2.183,0,3.438-1.223,3.449-3.259S49.349,3.48,47.176,3.47Z" transform="translate(3048.998 -24220)" fill="#1b2d51"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 937 B |
5
news-app/assets/images/svgImage/editMyNews.svg
Normal file
@@ -0,0 +1,5 @@
|
||||
<svg width="30" height="30" viewBox="0 0 30 30" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="30" height="30" rx="4" fill="#1B2D51" fill-opacity="0.1"/>
|
||||
<rect x="0.5" y="0.5" width="29" height="29" rx="3.5" stroke="#1B2D51" stroke-opacity="0.1"/>
|
||||
<path d="M16.544 12.765L17.234 13.455L10.439 20.25H9.74902V19.56L16.544 12.765ZM19.244 8.25C19.0565 8.25 18.8615 8.325 18.719 8.4675L17.3465 9.84L20.159 12.6525L21.5315 11.28C21.824 10.9875 21.824 10.515 21.5315 10.2225L19.7765 8.4675C19.6265 8.3175 19.439 8.25 19.244 8.25ZM16.544 10.6425L8.24902 18.9375V21.75H11.0615L19.3565 13.455L16.544 10.6425Z" fill="black" fill-opacity="0.8"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 655 B |
6
news-app/assets/images/svgImage/expiredNews.svg
Normal file
@@ -0,0 +1,6 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M8 8.46875C8.25888 8.46875 8.46875 8.25888 8.46875 8C8.46875 7.74112 8.25888 7.53125 8 7.53125C7.74112 7.53125 7.53125 7.74112 7.53125 8C7.53125 8.25888 7.74112 8.46875 8 8.46875Z" fill="#BE151E"/>
|
||||
<path d="M7.33106 13.8323L10.1881 8.78556C10.5622 8.12469 11.239 7.73012 11.9985 7.73012C12.7579 7.73012 13.4347 8.12469 13.8088 8.78556L14.0169 9.15309C14.0882 8.77687 14.125 8.39128 14.125 8C14.125 6.36394 13.4879 4.82584 12.3311 3.66897C11.1742 2.51212 9.63603 1.875 8 1.875C6.36397 1.875 4.82584 2.51212 3.66897 3.66894C2.51212 4.82584 1.875 6.36394 1.875 8C1.875 9.63606 2.51212 11.1742 3.66894 12.331C4.63825 13.3003 5.87528 13.9045 7.21322 14.075C7.247 13.9926 7.28622 13.9115 7.33106 13.8323ZM5.17188 8.45312C4.913 8.45312 4.70312 8.24325 4.70312 7.98438C4.70312 7.7255 4.913 7.51562 5.17188 7.51562H6.67975C6.82384 7.12406 7.13756 6.814 7.53125 6.67438V5.15625C7.53125 4.89738 7.74113 4.6875 8 4.6875C8.25887 4.6875 8.46875 4.89738 8.46875 5.15625V6.67438C9.01434 6.86788 9.40625 7.38891 9.40625 8C9.40625 8.77541 8.77544 9.40625 8 9.40625C7.38312 9.40625 6.85812 9.00681 6.66909 8.45312H5.17188Z" fill="#BE151E"/>
|
||||
<path d="M7.34425 15.9049C7.17881 15.6212 7.08506 15.3127 7.06309 15.0008C5.53178 14.7991 4.11653 14.1044 3.00606 12.9939C1.67212 11.66 0.9375 9.88647 0.9375 8C0.9375 6.11353 1.67212 4.34 3.00603 3.00603C4.34 1.67213 6.11356 0.9375 8 0.9375C9.88644 0.9375 11.66 1.67213 12.994 3.00606C14.3279 4.34 15.0625 6.11353 15.0625 8C15.0625 8.80078 14.9297 9.581 14.6753 10.3161L15.2651 11.3581C15.7461 10.3191 16 9.17913 16 8C16 5.86313 15.1678 3.85413 13.6569 2.34313C12.1458 0.832156 10.1369 0 8 0C5.86312 0 3.85416 0.832156 2.34313 2.34313C0.832156 3.85413 0 5.86313 0 8C0 10.1369 0.832156 12.1459 2.34313 13.6569C3.70906 15.0228 5.48194 15.8338 7.38831 15.977C7.37328 15.9533 7.35847 15.9294 7.34425 15.9049Z" fill="#BE151E"/>
|
||||
<path d="M15.85 14.2943L12.993 9.24754C12.7875 8.88447 12.4157 8.66772 11.9985 8.66772C11.5813 8.66772 11.2095 8.88447 11.004 9.24754L8.14696 14.2943C7.94442 14.652 7.94711 15.0777 8.15421 15.4329C8.3613 15.788 8.73039 16.0001 9.14152 16.0001H14.8555C15.2667 16.0001 15.6358 15.788 15.8429 15.4329C16.0499 15.0777 16.0526 14.652 15.85 14.2943ZM12.4577 14.4791C12.4135 14.6955 12.2194 14.8559 11.998 14.8559C11.8025 14.8559 11.6225 14.7296 11.557 14.5452C11.4916 14.3609 11.5489 14.1492 11.7008 14.025C11.8527 13.9009 12.0704 13.8851 12.2389 13.9853C12.4065 14.0851 12.4967 14.2877 12.4577 14.4791ZM12.4673 12.5654C12.4673 12.8243 12.2574 13.0342 11.9985 13.0342C11.7396 13.0342 11.5298 12.8243 11.5298 12.5654V11.0607C11.5298 10.8018 11.7396 10.5919 11.9985 10.5919C12.2574 10.5919 12.4673 10.8018 12.4673 11.0607V12.5654Z" fill="#BE151E"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.7 KiB |
4
news-app/assets/images/svgImage/facebook.svg
Normal file
@@ -0,0 +1,4 @@
|
||||
<?xml version="1.0" encoding="utf-8"?><!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools -->
|
||||
<svg width="800px" height="800px" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M20 1C21.6569 1 23 2.34315 23 4V20C23 21.6569 21.6569 23 20 23H4C2.34315 23 1 21.6569 1 20V4C1 2.34315 2.34315 1 4 1H20ZM20 3C20.5523 3 21 3.44772 21 4V20C21 20.5523 20.5523 21 20 21H15V13.9999H17.0762C17.5066 13.9999 17.8887 13.7245 18.0249 13.3161L18.4679 11.9871C18.6298 11.5014 18.2683 10.9999 17.7564 10.9999H15V8.99992C15 8.49992 15.5 7.99992 16 7.99992H18C18.5523 7.99992 19 7.5522 19 6.99992V6.31393C19 5.99091 18.7937 5.7013 18.4813 5.61887C17.1705 5.27295 16 5.27295 16 5.27295C13.5 5.27295 12 6.99992 12 8.49992V10.9999H10C9.44772 10.9999 9 11.4476 9 11.9999V12.9999C9 13.5522 9.44771 13.9999 10 13.9999H12V21H4C3.44772 21 3 20.5523 3 20V4C3 3.44772 3.44772 3 4 3H20Z" fill="#0F0F0F"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 973 B |
3
news-app/assets/images/svgImage/facebook_button.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="56.075" height="104.699" viewBox="0 0 56.075 104.699">
|
||||
<path id="facebok_button" d="M54.01,58.893l2.908-18.948H38.737v-12.3c0-5.184,2.54-10.237,10.683-10.237h8.266V1.28A100.8,100.8,0,0,0,43.013,0C28.04,0,18.253,9.075,18.253,25.5V39.945H1.609V58.893H18.253V104.7H38.737V58.893Z" transform="translate(-1.609)" fill="#3f5a9b"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 381 B |
3
news-app/assets/images/svgImage/filter.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<svg width="18" height="13" viewBox="0 0 18 13" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M7.23077 12.2769H11.0667V10.359H7.23077V12.2769ZM0.517944 0.769226V2.68717H17.7795V0.769226H0.517944ZM3.39487 7.48205H14.9026V5.5641H3.39487V7.48205Z" fill="#1B2D51"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 280 B |
6
news-app/assets/images/svgImage/flag_icon.svg
Normal file
@@ -0,0 +1,6 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="54" height="54" viewBox="0 0 54 54">
|
||||
<g id="flag_icon" transform="translate(-3049 24220)">
|
||||
<rect id="delete_icon" width="54" height="54" transform="translate(3049 -24220)" fill="none"/>
|
||||
<path id="Path_14621" data-name="Path 14621" d="M49.168,2.322a1.076,1.076,0,0,0-1.05-.048A25.248,25.248,0,0,1,37.8,4.32a24.051,24.051,0,0,1-9.124-1.914A32.425,32.425,0,0,0,16.2,0C7.381,0,4.9,2.218,4.64,2.475a1.079,1.079,0,0,0-.32.765V52.92a1.08,1.08,0,0,0,2.16,0V34.044c.855-.495,3.506-1.644,9.72-1.644a30.128,30.128,0,0,1,11.735,2.277A25.883,25.883,0,0,0,37.8,36.72a27.135,27.135,0,0,0,11.284-2.272,1.083,1.083,0,0,0,.6-.968V3.24A1.081,1.081,0,0,0,49.168,2.322Z" transform="translate(3049 -24220)" fill="#1b2d51"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 773 B |
29
news-app/assets/images/svgImage/forgot.svg
Normal file
@@ -0,0 +1,29 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 26.3.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 1024 1024" style="enable-background:new 0 0 1024 1024;" xml:space="preserve">
|
||||
<g>
|
||||
<path d="M142.8,1023.7c-18-5.8-37.1-9-53.6-17.5C34.1,977.9,2.6,931.9,1.3,869.8c-2-113.2-1.5-226.6-0.3-339.8
|
||||
c1-82.1,69.9-150.5,152-153.7c18-0.8,35.8,0,55.3,0c0-4.3,0-7.8,0-11.3c0-41.6,0.5-83.4,0-124.9C206.9,124.6,288,28.2,400.5,4.9
|
||||
c118.9-24.5,239.1,44.8,276.7,160c8,24.5,11.3,50.1,11.3,75.9c0,44.6,0,89.1,0,135.5c4.3,0,8-0.3,11.8,0
|
||||
c24.5,1.3,49.3,1.5,73.6,4.5c25.3,3.3,39.3,24.8,34.6,48.3c-4.5,21.5-25,33.8-48.8,29.8c-9.3-1.5-18.5-2.5-27.8-2.5
|
||||
c-188.3-0.3-376.6-0.3-564.6,0c-52.6,0-86.1,33.6-86.1,86.1c0,105.2,0,210.6,0,315.7c0,51.8,33.8,85.6,85.6,85.6
|
||||
c161.5,0,323.3,0,484.8,0.3c7.3,0,14.8,0.5,21.5,2.8c15,5,25.5,20,25.5,36.1c0,16.8-7.8,29.3-22.8,37.1c-3,1.5-6,2.8-9,4
|
||||
C491.9,1023.7,317.3,1023.7,142.8,1023.7z M290.3,375.2c105.7,0,211.6,0,317.5,0c0-51.3,1.3-101.9-0.8-152.5
|
||||
c-0.5-17.3-6.3-35.6-13.8-51.6c-30.8-65.9-102.4-101.7-174.5-88.6C351.4,94.6,297.3,146.4,291,214
|
||||
C286.3,267.3,290.3,321.2,290.3,375.2z"/>
|
||||
<path d="M810.4,1023.7c-2-1-4.3-1.8-6.3-2.8c-18.3-7.3-28.8-26.5-25-45.1c4-18.8,20.3-32.3,39.1-32.3c19.3,0,35.6,13.8,39.3,33.1
|
||||
c3.5,18-7,36.8-24.8,44.1c-2,0.8-4.3,1.8-6.3,2.8C821.1,1023.7,815.9,1023.7,810.4,1023.7z"/>
|
||||
<path d="M778.6,831.5c-1.8-28.3,4.8-56.1,24.3-80.1c11.5-14.3,26.5-23.8,42.8-31.8c17-8.3,28-22,32.8-40.6
|
||||
c8.5-34.3-13-68.4-47.6-75.6c-33.8-7-67.1,15.5-73.1,49.8c-0.8,4.5-1,9.3-1.5,14c-2.3,21.8-20,37.3-41.3,36.6
|
||||
c-21.3-0.8-37.8-17.8-38.6-39.6c-1.8-67.9,52.8-131.5,120.4-140.5c76.1-10,142.7,35.8,160,109.7c14,60.6-16.3,126.7-71.4,155.2
|
||||
c-3.8,2-7.8,4-11.5,6c-10.5,5.5-15.5,14.3-15.5,25.8c-0.3,11,0.3,22-0.3,33.1c-0.5,23-18,40.1-40.1,40.1
|
||||
c-21.5,0-38.8-16.8-39.8-39.3C778.3,847.5,778.6,840.5,778.6,831.5z"/>
|
||||
<path d="M264.5,691.7c0.3,21.8-18,40.1-40.1,40.1c-21.5,0-39.6-17.5-39.8-39.1c-0.3-22,17.3-40.3,39.3-40.6
|
||||
C246,651.7,264.3,669.7,264.5,691.7z"/>
|
||||
<path d="M374.2,731.8c-22-0.3-39.8-18.3-39.6-40.6c0.3-22,18.5-39.8,40.6-39.3c21.5,0.5,39.3,18.5,39.1,40.1
|
||||
C414.5,713.8,396.2,732,374.2,731.8z"/>
|
||||
<path d="M564.5,691.7c0,21.8-18.3,40.1-40.1,40.1c-21.5,0-39.3-17.8-39.8-39.3c-0.3-22,17.5-40.3,39.6-40.6
|
||||
C545.9,651.7,564.2,670,564.5,691.7z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.4 KiB |
5
news-app/assets/images/svgImage/gallaryIcon.svg
Normal file
@@ -0,0 +1,5 @@
|
||||
<svg width="36" height="36" viewBox="0 0 36 36" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="36" height="36" rx="8" fill="#1B2D51" fill-opacity="0.1"/>
|
||||
<path d="M8.83337 12.9017C8.83337 12.5355 8.97885 12.1843 9.23781 11.9253C9.49677 11.6664 9.84799 11.5209 10.2142 11.5209H10.6742V25.3259H24.4784V25.7859C24.4784 26.1521 24.3329 26.5033 24.0739 26.7623C23.815 27.0212 23.4638 27.1667 23.0975 27.1667H10.2142C9.84799 27.1667 9.49677 27.0212 9.23781 26.7623C8.97885 26.5033 8.83337 26.1521 8.83337 25.7859V12.9017Z" fill="#1B2D51"/>
|
||||
<path d="M26.2467 8.83337H13.3583C13.1157 8.8349 12.8834 8.93197 12.7118 9.10355C12.5402 9.27513 12.4432 9.5074 12.4417 9.75004V22.6384C12.4432 22.881 12.5402 23.1133 12.7118 23.2849C12.8834 23.4564 13.1157 23.5535 13.3583 23.555H26.2425C26.4851 23.5535 26.7174 23.4564 26.889 23.2849C27.0605 23.1133 27.1576 22.881 27.1591 22.6384V9.75004C27.1576 9.50811 27.0611 9.27646 26.8905 9.105C26.7198 8.93354 26.4886 8.83599 26.2467 8.83337ZM24.9308 21.7175H14.6742C14.6243 21.7195 14.5745 21.7116 14.5277 21.6942C14.4809 21.6768 14.438 21.6503 14.4016 21.6162C14.3652 21.582 14.3359 21.541 14.3154 21.4955C14.295 21.4499 14.2838 21.4008 14.2825 21.3509C14.284 21.2727 14.3106 21.197 14.3583 21.135L17.1625 18.1509C17.2387 18.0779 17.3397 18.0366 17.4452 18.0352C17.5507 18.0338 17.6527 18.0724 17.7308 18.1434L19.0175 19.5059L21.43 15.9867C21.4693 15.9357 21.52 15.8945 21.5781 15.8667C21.6362 15.8389 21.7 15.8251 21.7644 15.8265C21.8288 15.8279 21.892 15.8444 21.9488 15.8747C22.0057 15.9049 22.0546 15.9482 22.0917 16.0009L25.2808 21.1634C25.3126 21.2221 25.3281 21.2882 25.3259 21.3549C25.3236 21.4216 25.3037 21.4865 25.268 21.5429C25.2324 21.5993 25.1824 21.6453 25.1231 21.6759C25.0638 21.7066 24.9975 21.721 24.9308 21.7175Z" fill="#1B2D51"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.8 KiB |
8
news-app/assets/images/svgImage/google_button.svg
Normal file
@@ -0,0 +1,8 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="102.572" height="104.699" viewBox="0 0 102.572 104.699">
|
||||
<g id="google_button" transform="translate(-3706.25 -700.159)">
|
||||
<path id="Path_18" data-name="Path 18" d="M4048.13,983.049a38.543,38.543,0,0,1-8.078,9.826c-18.226-14.194-14.772-11.457-16.444-12.951a25.49,25.49,0,0,0,9.947-14.519c.343-1.144.237-1.59-1.179-1.578-8.433.072-16.866.036-25.3.035-1.786,0-1.788,0-1.788-1.848,0-5.716.027-11.432-.024-17.147-.01-1.1.184-1.526,1.425-1.522q23.331.068,46.662.014c.84,0,1.368.061,1.513,1.082C4056.8,958.045,4055.251,971.044,4048.13,983.049Z" transform="translate(-246.81 -200.728)" fill="#6689c9" fill-rule="evenodd"/>
|
||||
<path id="Path_19" data-name="Path 19" d="M3819.639,1087.537a43.51,43.51,0,0,1-19.6,10.714c-17.5,4.422-33.624,1.627-47.944-9.674a48.607,48.607,0,0,1-13.86-17.275l17.094-13.272a35.064,35.064,0,0,0,6.412,10.944c11.767,12.995,28.712,13.4,41.458,5.611C3804.788,1076.01,3801.384,1073.32,3819.639,1087.537Z" transform="translate(-26.397 -295.39)" fill="#4db74b" fill-rule="evenodd"/>
|
||||
<path id="Path_20" data-name="Path 20" d="M3728.928,899.162l-17.094,13.272c-7.374-13.708-7.53-32.961.043-46.876,18.921,14.573,16.048,12.4,17.18,13.137A33.07,33.07,0,0,0,3728.928,899.162Z" transform="translate(0 -136.522)" fill="#ffcd05" fill-rule="evenodd"/>
|
||||
<path id="Path_21" data-name="Path 21" d="M3819.331,714.757c-14.64,14.336-13.517,14.232-14.578,13.26-14.7-13.467-40.894-8.354-49.1,14.156-1.123-.735,1.825,1.5-17.18-13.137,5.289-11.634,18.976-25.086,37.869-28.1,16.062-2.566,30.438,1.222,42.86,11.919C3819.991,713.526,3820.185,713.921,3819.331,714.757Z" transform="translate(-26.6 0)" fill="#e22f31" fill-rule="evenodd"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.7 KiB |
8
news-app/assets/images/svgImage/intro_icon.svg
Normal file
@@ -0,0 +1,8 @@
|
||||
<svg version="1.2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 68 39" width="68" height="39">
|
||||
<defs>
|
||||
<image width="39" height="39" id="img1" href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACcAAAAnCAMAAAC7faEHAAAAAXNSR0IB2cksfwAAAklQTFRFAAAAAI2oAI2oAI2oAI2oAI2oAI2oAI2oAI2oAI2oAI2oAI2oAI2oAI2oAI2oAI2oAI2oAI2oAI2oAI2oAI2oAI2oAI2oAo6pCZGrEJOtEZStGZixEJSuFZavE5WuDpOsB5CqA46pFJWuNqS5YbfH///uRai7JpuzCJCqDpOtLaG3PKS6FJWuAY6oAY2oEZWuUK7EGZiwEZWvbL7RLqG4EZSuDZKtDpOtDJKsGJevOaO2nNPfC5KsCJGrW7fLSa/ECpKsBY+qPKe4MaS5I521E5avBI+qJp+3p9rhCpKsDJKtOqi+EJSuEZauE5WvF5ixD5Ou3vH2DJOsH5q0EZWvC5KsWrLKPai+AY6oAY2oM6O7EJWuAo6pG5iyaLPNPKi9CJCrBpCqKZ+4EpWuD5OtJJ22MaO7HZqyBpCqBY+qKKC4EJSuMqO7EZSuH5qzGpiwAY6pEJOsD5OsDZOsDZOsB5CqEZSvT6/BA46pEJSudcTSBY+qB5CrXLXKG5mxBI+qMaO7G5qyFJawXLPHFJWvBI6pCpGsHZmzarzPCpKsCJCrE5WuBo+qA4+pJJy2Y7fKLqC3G5ixHpuzIZuzP6i+GpiyD5SuR6zAOKO5CpGsBY+qLp+4LaG5BI+qW7fLJZ61BI6pGpixRKa+6vT5Ip21B5CrBpCrc7/SMaS5CZCrJJy1P6i/2Oz2q9voTLDFGJixAo6pHZmz4PD2EpSuBpCqDpOtEJSuFJawHpq0IZy1HJqzFJavD5SuBZCqBI+qF5exHZqzEpWvAY2ofyHJugAAAMN0Uk5TAAMlY57I5vr/BkGn8wFKyv4Imy/SKtz83rGPf3SBmcHr+Kk5BwARZ926MBCQ+/6gBoWVAh+X5//ZgRADxucMEtrsTlFis/AuA/HbMK/bkHiXAedXo8oEOv//NL39dAMY0/8kydJ6Zpfw/ya5N5pca//KyMjJ+54b/MoV/O4Tge8qfZgCh/rhPgPg5sfy+joCKmRtTg9jpg4fyuk5PPEiTfJrCgBO7/8OP9poEwABKar7agGU7sSXeG1tdJbK9/OVb7D7LxJ+jQAAAk5JREFUeJyNlEtIVFEYx7+/9844DmmIuGjZohZFi6AWUSRYSiBiAxMlRi8rkh6iBpGEWhJG0AN7YFQWRWGBMEgMRFZQFC0KWhVUi5ZBiKAy1jy8nnO+c+69U3fgfotz/v9zf/e8zwfyBXQ4OvyfPFkhiLxnbQHO/89VCuoPFUVMkLP/cNXIUEDEnekirgZzQRjREmfKx9ViJhgjqnJ+u1yNVRITYGFKc9VWiUH10IVpxVVG3CUsNTuIX/7F5GYlV5XVfpn4/kOpFUL99MDojOAqon/ZLccXXyerge9Gl2fnQfGo2t6VwOfiea39alQsmwHiBaVX4ZOq1/H83hNtxEcDWhmUxdWZrscb1VKHD6LcgFei3PLOcHYGVkSpTZPc0vBWFJvxXOpteG3AHGxb1vVp9k0vZbn1GbvmF4bLI2LJunGCfQt3lFImgbThCoiWqX7G2SdVT814KqudSBluAeVQfz5m36b4JPCAaC/G3D1yEJNVK0bZtz/ierfcm/vkBfe3HzfZHr1LgeHo+R28zv747WBuQa/38DD7zlv6wxF1Kte89fL+nbjI/hSusugaIurFJcPl9XmcxCA39KW+MT9AdHbIHTdnzre3jxsGIf5IrMFpogvoPwecka22e1/Oo5vBK2pix4S60XMZHSPoJHVfzP0bxqHiJd7BZMMBonsdfP/c+zwC7PGoh0D7KFqJxvbp++y+j8R2MWBSyXGhdhE9aaEJ7NDvw/feEm3ue2uSPi1Vo3lvYd9v6HwQOr+Ezleh81/ofEph87MypfP9Iqndt2hTRJAhAAAAAElFTkSuQmCC"/>
|
||||
</defs>
|
||||
<style>
|
||||
</style>
|
||||
<use id="Background" href="#img1" x="0" y="0"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.2 KiB |
7
news-app/assets/images/svgImage/linkedin.svg
Normal file
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?><!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools -->
|
||||
<svg width="800px" height="800px" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M6.5 8C7.32843 8 8 7.32843 8 6.5C8 5.67157 7.32843 5 6.5 5C5.67157 5 5 5.67157 5 6.5C5 7.32843 5.67157 8 6.5 8Z" fill="#0F0F0F"/>
|
||||
<path d="M5 10C5 9.44772 5.44772 9 6 9H7C7.55228 9 8 9.44771 8 10V18C8 18.5523 7.55228 19 7 19H6C5.44772 19 5 18.5523 5 18V10Z" fill="#0F0F0F"/>
|
||||
<path d="M11 19H12C12.5523 19 13 18.5523 13 18V13.5C13 12 16 11 16 13V18.0004C16 18.5527 16.4477 19 17 19H18C18.5523 19 19 18.5523 19 18V12C19 10 17.5 9 15.5 9C13.5 9 13 10.5 13 10.5V10C13 9.44771 12.5523 9 12 9H11C10.4477 9 10 9.44772 10 10V18C10 18.5523 10.4477 19 11 19Z" fill="#0F0F0F"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M20 1C21.6569 1 23 2.34315 23 4V20C23 21.6569 21.6569 23 20 23H4C2.34315 23 1 21.6569 1 20V4C1 2.34315 2.34315 1 4 1H20ZM20 3C20.5523 3 21 3.44772 21 4V20C21 20.5523 20.5523 21 20 21H4C3.44772 21 3 20.5523 3 20V4C3 3.44772 3.44772 3 4 3H20Z" fill="#0F0F0F"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.1 KiB |
11
news-app/assets/images/svgImage/live_news.svg
Normal file
@@ -0,0 +1,11 @@
|
||||
<svg id="live_light" xmlns="http://www.w3.org/2000/svg" width="54" height="32" viewBox="0 0 54 32">
|
||||
<rect id="back" width="54" height="32" fill="none"/>
|
||||
<g id="logo" transform="translate(-10.299 -20.939)">
|
||||
<path id="Path_151" data-name="Path 151" d="M60.432,45.023V35.861c-.567.283-1.039.567-1.606.85-1.7.85-3.306,1.7-5.006,2.645a1.494,1.494,0,0,1-2.267-1.417V31.517a2.033,2.033,0,0,0-2.172-2.172H32.57a5.146,5.146,0,0,0,0-2.928h17a4.975,4.975,0,0,1,4.911,4.25c0,.283.094.567.094.756v4.25c3.022-1.511,5.856-3.117,8.878-4.628v18.89c-.472-.283-.944-.472-1.417-.756-3.117-1.606-6.328-3.306-9.445-4.911a1.464,1.464,0,0,1-.756-2.078,1.412,1.412,0,0,1,1.983-.567c1.322.661,2.645,1.417,4.061,2.078.756.378,1.606.85,2.361,1.228C60.243,45.023,60.338,45.023,60.432,45.023Z" transform="translate(-2.119 -0.244)" fill="#ef4137"/>
|
||||
<path id="Path_152" data-name="Path 152" d="M39.678,34.479h6.706v2.078h-4.25v2.361h4.25V41h-4.25V43.83h4.25v2.078H39.678Z" transform="translate(-2.899 -1.129)"/>
|
||||
<path id="Path_153" data-name="Path 153" d="M36.995,34.468c-.378,1.039-.756,2.078-1.133,3.022-.944,2.645-1.983,5.289-2.928,7.934-.094.283-.189.378-.472.378h-1.7c-.189,0-.283,0-.283-.189-1.322-3.684-2.739-7.367-4.061-11.051v-.189h1.889c.85,0,.85,0,1.039.756.661,1.983,1.228,3.967,1.889,6.045.189.661.283,1.228.472,1.889,0,.094.094.189.094.283a40.352,40.352,0,0,1,1.7-5.761c.283-.944.661-1.983.944-2.928.094-.189.189-.283.378-.283A14.658,14.658,0,0,0,36.995,34.468Z" transform="translate(-1.443 -1.118)"/>
|
||||
<path id="Path_154" data-name="Path 154" d="M23.321,24.189a3.589,3.589,0,1,1-3.589,3.495A3.529,3.529,0,0,1,23.321,24.189Z" transform="translate(-0.71)" fill="#ef4137"/>
|
||||
<path id="Path_155" data-name="Path 155" d="M19.589,45.813H13.261V34.479h2.456v9.256h3.872Z" transform="translate(0 -1.129)"/>
|
||||
<path id="Path_156" data-name="Path 156" d="M22.067,45.813V34.479h2.456V45.813Z" transform="translate(-0.966 -1.129)"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.9 KiB |
11
news-app/assets/images/svgImage/live_news_dark.svg
Normal file
@@ -0,0 +1,11 @@
|
||||
<svg id="live" xmlns="http://www.w3.org/2000/svg" width="54" height="32" viewBox="0 0 54 32">
|
||||
<rect id="back" width="54" height="32" fill="none"/>
|
||||
<g id="logo" transform="translate(-10.299 -20.939)">
|
||||
<path id="Path_151" data-name="Path 151" d="M60.432,45.023V35.861c-.567.283-1.039.567-1.606.85-1.7.85-3.306,1.7-5.006,2.645a1.494,1.494,0,0,1-2.267-1.417V31.517a2.033,2.033,0,0,0-2.172-2.172H32.57a5.146,5.146,0,0,0,0-2.928h17a4.975,4.975,0,0,1,4.911,4.25c0,.283.094.567.094.756v4.25c3.022-1.511,5.856-3.117,8.878-4.628v18.89c-.472-.283-.944-.472-1.417-.756-3.117-1.606-6.328-3.306-9.445-4.911a1.464,1.464,0,0,1-.756-2.078,1.412,1.412,0,0,1,1.983-.567c1.322.661,2.645,1.417,4.061,2.078.756.378,1.606.85,2.361,1.228C60.243,45.023,60.338,45.023,60.432,45.023Z" transform="translate(-2.119 -0.244)" fill="#ef4137"/>
|
||||
<path id="Path_152" data-name="Path 152" d="M39.678,34.479h6.706v2.078h-4.25v2.361h4.25V41h-4.25V43.83h4.25v2.078H39.678Z" transform="translate(-2.899 -1.129)" fill="#fafafa"/>
|
||||
<path id="Path_153" data-name="Path 153" d="M36.995,34.468c-.378,1.039-.756,2.078-1.133,3.022-.944,2.645-1.983,5.289-2.928,7.934-.094.283-.189.378-.472.378h-1.7c-.189,0-.283,0-.283-.189-1.322-3.684-2.739-7.367-4.061-11.051v-.189h1.889c.85,0,.85,0,1.039.756.661,1.983,1.228,3.967,1.889,6.045.189.661.283,1.228.472,1.889,0,.094.094.189.094.283a40.352,40.352,0,0,1,1.7-5.761c.283-.944.661-1.983.944-2.928.094-.189.189-.283.378-.283A14.658,14.658,0,0,0,36.995,34.468Z" transform="translate(-1.443 -1.118)" fill="#fafafa"/>
|
||||
<path id="Path_154" data-name="Path 154" d="M23.321,24.189a3.589,3.589,0,1,1-3.589,3.495A3.529,3.529,0,0,1,23.321,24.189Z" transform="translate(-0.71)" fill="#ef4137"/>
|
||||
<path id="Path_155" data-name="Path 155" d="M19.589,45.813H13.261V34.479h2.456v9.256h3.872Z" transform="translate(0 -1.129)" fill="#fafafa"/>
|
||||
<path id="Path_156" data-name="Path 156" d="M22.067,45.813V34.479h2.456V45.813Z" transform="translate(-0.966 -1.129)" fill="#fafafa"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.9 KiB |
8
news-app/assets/images/svgImage/logo_caribe.svg
Normal file
@@ -0,0 +1,8 @@
|
||||
<svg version="1.2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" width="54" height="54">
|
||||
<defs>
|
||||
<image width="54" height="54" id="img1" href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADYAAAA2CAYAAACMRWrdAAAAAXNSR0IB2cksfwAABv1JREFUeJzdmntMU1ccxy/yflQeChUFBBFxMif4mI9NdD4y53xE/cMsGGfMNNnMwv5xL8myZQkkLgKFFlpKQUCh9PZd2tICChUEQZlDMgR1RomIL9QZRxSF/dp7USi9vacPlfQk33+ac3/n9+l5/n7nYJizyjGhG4gJWgdKA5WAWkG9oEHQCKlB8rdWsk4a+Q3TZGPSlGNCL1AyCCcdHh4Dgaph8luctOX1LoEYoBSQAfTMDhgqPSNtppjaeItAfqCDoH4nwlCpn2zL701DrST/zRdvAWpUL8g2V74pqJ2gvrcIZK4+kw9OBPIAZYCG3iHUqIZIXzwchQoEiTD7Vro3pWHSp0BHeko0CUCoJLKv54gun0w9ZannMmyF2olNjjlFpyEMeUEhlnSHVz9GjngkNE/WG1OousTIkWij+apOZr7sni8LdzZcH0a7FRCbr8FW4x6Zlc/9c/BucLx4QbH6i/2apvn6Kzd9LTVxtvcO41O8LimWr/g6lCPV+maLbrs5DmfArG7ixC6PvPlOyawcnsaR6hYd12w8pD9n8yqV1dgxZUNFbUQkV37YNxv/1wGwFybfKaCMZz/kY1IgW2JILNV91nn3oVNO5MknaqJh6KrcMu2e2/2YxbMlceikNQDDZjgwV9KwVXomwhlAY8uqkzUMgJM40HMp5lBeqHMriC1VfXiyNgTV2ey2noCPK06tSSzV708qq9mzW9nyfvfAU3eq+snCOgaMhr8cmGtjQh4iBqINPcLyFXX7qs8jnbS/0p33juApf/Bj4Q/M7QSzpT0JAtUuqm8Xl1Wv8MiqfGIH2DMTCwlljHxxuo98WPjjFG0bEwXqx6a/vaL4qgyYL5QbfAhbcrmh7+osS98fabzoHpInPW1nr+EmJowIyXvpPgBHf0OBMpbYIvX3nlmiQSpbU9mSxmVl+tnWbMQIVD+5Z1Xac/LpNTFhRL7BqgG/HPGNtXg9Um8tK6+b652N37Ni6/FaUcNMOjur8VPrfCwMYwQNm5gwIplitfIMrpKF2lvRhVW/WLM1r1grQLFzqKF9SUCu2N4TUJoRrISu4qJS/XZUsNB8eb01W3EC7bcodnZrm1dA79qbfigxgrVaq+STjT8/1nbNH8WZpjtPPANyJZRzy6gYfhUHxVZ8keYAzNPndoK1YhjNwjGdI+tAccRYUhs6Y+ga9WOJH22XNIdbs7NP3eYJW4LOTihiAcHGJzMnKDxfoUQF2yg5sxyl4ZlcZWFmyzXKIHEOv2q3e2alI2HTIEZXKZqvLkAF24DXb0Vp2Hh4DuPIJItL9ct3qVrCq64PMH5u7ApZfkK/MKpAmQ5D0PE8JV2FhBIdzwawLbY0bgSA+OyWf464G4boPzCfnzoMNAbM+mQXaJDBNksNS53mmGMapF08ZnAVUlSwjHNdTBhm7xpqBCMXD6vL/fQ8WQsq2O3HD92C2JKBSQDWSrtB+7PEg+nNPRbDfEslLE8mtMUJWP1eRvIUBXP4il9jQJE8uUlxAlWlD8vufawE6Ui1Vli/GhVsXlHVXuOqh+oELBzX14sNYeZ2YgVVqRC62HtHkIZ0CIZ9Jw8VbIvMEDQ1V9KB4gA4/l9MoTrV3Eb5tX53mAI1dkK9OgTThi1wyr77SWV9LCpcYkn1EhjCf9IMwaGZPOV3HQODE6LppBM1H3hli+xN7rwKW5ACzVk85VFUMGNJLq+dHZQruWBpWMLe9RBOF6lHDD0WE0HQVvpoXe9s0f1wrlwXxVPKIBq/hZCqIwNNY0FIDUADT9cITy+0BW4TXh88X6DeFcFTHIXe4UXwlPnxAvWBpWX6uD+ar1iE2iQ2TAPw+8Y2GbmS9pUVtfHc9sumuusraqNCOFK1FT/HpAYIMKRkDpwOBuILNR/ZAmdL2Spv8g/hyFSmtnLEA8sq6laZ19mraQ4E8EcUPpolcwg4pPQb9NzthCLtNmdDfam7MC2cq8TdMoUvje0wuQqcffG6xW2GyZXXUfiXMrG2DQlTgOt/r0i75/czXU653T9cf8kvnKcsh/n4crQNZr5CKOi46U0BprfgF0XClIBDTnHDP2u8eOiOK1Qf+FzSOGEfQikHa9qDk0p1O4LY0i5z+7C/PVh4XDdhKO7ADdNhKJqvmFZS3ASYzZcSbnA2hLl3MzRPLowTaL7ZIT+bKO685UnVREPv3YDN8sZVc4s06cEc2VWPLBFl3AXAl7bJmuePfrtdcTYyhG1x8aC5lCDgHL5GCsqVjkTwVDdgY1ctKK5WJRyvVsUJtOrZ/KqugByxTbZ8WeKhWIHmVHyxVsuwnHZAuEZ6DeeCF3+v4VzwqpYAc9HLdQLOBZ9DjO85F3vAMh7QxZ4cjYdzwUdir+Fc8FnfeEAXe4g5EdDFns6al0n22Pl/j0Qt9bpymeoAAAAASUVORK5CYII="/>
|
||||
</defs>
|
||||
<style>
|
||||
</style>
|
||||
<use id="Background" href="#img1" x="0" y="0"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.7 KiB |
26
news-app/assets/images/svgImage/logout.svg
Normal file
@@ -0,0 +1,26 @@
|
||||
<svg id="Image" xmlns="http://www.w3.org/2000/svg" width="88.324" height="73.788" viewBox="0 0 88.324 73.788">
|
||||
<g id="bg_shape" data-name="bg shape">
|
||||
<rect id="bg_shape_bg" data-name="bg shape bg" width="87.311" height="70.992" fill="none"/>
|
||||
<path id="Path_17611" data-name="Path 17611" d="M65.868,8.131a8.137,8.137,0,0,1-8.124,8.124H46.165a6.887,6.887,0,0,1-5.531,10.991H6.89a6.887,6.887,0,1,1,0-13.774h5.8A8.127,8.127,0,0,1,18.807,0H57.744a8.126,8.126,0,0,1,8.124,8.131" fill="rgba(27,50,91,0.11)"/>
|
||||
<path id="Path_17612" data-name="Path 17612" d="M80.654,63.214H79.8a6.658,6.658,0,0,1-.918,8.264,6.838,6.838,0,0,1-1.64,1.206,6.269,6.269,0,0,1-2.776,11.888H58.518a6.27,6.27,0,0,1-4.437-10.7,5.938,5.938,0,0,1,.491-.442H39.2a6.655,6.655,0,0,1-1.766-13.073,8.928,8.928,0,0,1-2.04-3.645H13.16a5.65,5.65,0,1,1,0-11.3H80.654a8.9,8.9,0,0,1,0,17.8" transform="translate(-2.246 -13.58)" fill="rgba(27,50,91,0.11)"/>
|
||||
</g>
|
||||
<g id="logout" transform="translate(26.324 8.788)">
|
||||
<rect id="logout_icon_bg" data-name="logout icon bg" width="62" height="65" fill="none"/>
|
||||
<path id="Path_17604" data-name="Path 17604" d="M44.81,51.161c.589,5.1.246,8.256.265,13.276.018,4.929-.283,9.939-.265,14.868,0,.772.265,2.509.265,3.281,0,.606-.989,1.111-1.26,1.654-.31.624-1.861-.385-2.515-.625Q31.173,79.871,21.148,75.92a19.863,19.863,0,0,1,0-3.076v-3.2c0-2.093-.015-4.187.005-6.28.041-4.217-.006-8.437-.012-12.654,0-6.824.1-13.651.1-20.469a2.276,2.276,0,0,1,.211-.888c.626-1.157,2.3.053,3.142.366q6.472,2.415,12.952,4.813c1.228.457,2.463.9,3.693,1.354.756.279,1.818.38,2.376.972.833.882.261,2.789.2,3.834-.087,1.531,1.046,3.149,1,4.682-.046,1.362-.511,2.64-.53,4" transform="translate(-19.767 -26.84)" fill="#ee2934"/>
|
||||
<path id="Path_17192" data-name="Path 17192" d="M97.775,116.876l-3.581-.885a4.9,4.9,0,0,1-3.42-4.51V68.46a2.239,2.239,0,0,1,.736-1.821,1.984,1.984,0,0,1,1.76-.273l1.131.28v43.891a7.839,7.839,0,0,0,3.374,6.339" transform="translate(-89.387 -64.596)" fill="#97070f"/>
|
||||
<path id="Path_17605" data-name="Path 17605" d="M27.425,47.762h2.444c2.4.034,6.289.559,7.408-1.1a3.665,3.665,0,0,0,.35-2.195q.076-6.322.122-12.647.012-1.465,1.7-.937a.305.305,0,0,1,.216.29c.006,4.338-.125,8.752.067,13.105.094,2.174-.477,4.176-2.5,5.11a8.792,8.792,0,0,1-3.386.443q-3.73-.009-7.46.009a.3.3,0,0,0-.3.3q-.021,2.161-.006,4.313a6.967,6.967,0,0,1-.389,2.747c-1.173,2.613-3.605,1.713-5.788.778q-7.131-3.05-14.269-6.093C1.657,50.2.006,48.629,0,44.087Q0,25.105,0,6.127A9.829,9.829,0,0,1,.465,2.491C1.465.275,3.392,0,5.8,0H33.453a10.752,10.752,0,0,1,3.721.424c2.079.91,2.645,2.94,2.566,5.141-.152,4.326-.079,8.685-.061,13.014a.3.3,0,0,1-.188.284c-1.316.534-1.806-.14-1.8-1.334q.036-6.365-.027-12.733C37.644,3.1,36.772,2,35.036,1.99q-4.578-.018-28.72,0c-.045,0-.082.028-.082.062v.005l0,.034a.07.07,0,0,0,.046.046Q14,5.431,21.728,8.712c3.429,1.456,4.338,3.95,4.341,7.555V47.46a.306.306,0,0,0,.307.305ZM6.463,50.052q7.87,3.462,15.819,6.743c.514.211,1.258.244,1.5-.3a3.626,3.626,0,0,0,.316-1.511l-.094-28.195q.031-4.881.055-9.763a11.352,11.352,0,0,0-.465-3.849c-.872-2.039-2.143-2.341-4.526-3.364q-8.138-3.5-16.3-6.957a.3.3,0,0,0-.4.164.256.256,0,0,0-.013.037L2.17,3.73a2.884,2.884,0,0,0-.112.8q-.006,19.977,0,39.957c0,3.511,1.538,4.313,4.4,5.568" fill="#212121"/>
|
||||
<path id="Path_17606" data-name="Path 17606" d="M136.558,54.025q-3.639-3.862-7.475-7.528c-.894-.852-1.137-1.615.216-2.317a.3.3,0,0,1,.353.052q4.949,4.826,9.922,9.83c1.079,1.087,1.562,1.5.255,2.8q-4.7,4.64-9.387,9.277c-.869.861-1.569,1.038-2.246-.275a.306.306,0,0,1,.055-.357l8.511-8.551q.414-.415-.173-.415l-23.172.006a.305.305,0,0,1-.283-.2c-.48-1.249.015-1.8,1.207-1.795q11,.022,22-.015.7,0,.219-.513" transform="translate(-78.617 -30.668)" fill="#212121"/>
|
||||
</g>
|
||||
<g id="circle" transform="translate(-138.845 -286.967)">
|
||||
<circle id="delete_icon_bg_c" data-name="delete icon bg c" cx="2" cy="2" r="2" transform="translate(213 345)" fill="#ee2934"/>
|
||||
<g id="delete_icon_bg_b" data-name="delete icon bg b" transform="translate(153 290)" fill="#fff" stroke="#ee2934" stroke-width="1">
|
||||
<circle cx="3" cy="3" r="3" stroke="none"/>
|
||||
<circle cx="3" cy="3" r="2.5" fill="none"/>
|
||||
</g>
|
||||
<g id="delete_icon_bg_a" data-name="delete icon bg a" transform="translate(157 346)" fill="#fff" stroke="#ee2934" stroke-width="1">
|
||||
<circle cx="2" cy="2" r="2" stroke="none"/>
|
||||
<circle cx="2" cy="2" r="1.5" fill="none"/>
|
||||
</g>
|
||||
<circle id="delete_icon_bg" data-name="delete icon bg" cx="1.5" cy="1.5" r="1.5" transform="translate(149 297)" fill="#ee2934"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 4.5 KiB |
80
news-app/assets/images/svgImage/maintenance.svg
Normal file
@@ -0,0 +1,80 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="319.824" height="320" viewBox="0 0 319.824 320">
|
||||
<g id="Mantenance_Mode" transform="translate(2147.912 8504.962)">
|
||||
<rect id="BG" width="319.824" height="320" rx="60" transform="translate(-2147.912 -8504.962)" fill="#fff" opacity="0.16"/>
|
||||
<g id="Image" transform="translate(-2113.098 -8449.594)">
|
||||
<path id="Path_100" data-name="Path 100" d="M750.344,70.822a4.261,4.261,0,0,1,1.633.019,2.821,2.821,0,0,1,1.734,1.409,3.24,3.24,0,0,1,.2,2.37,3.407,3.407,0,0,1-2.1,1.945,4.586,4.586,0,0,1-1.469-.034,3.049,3.049,0,0,1-2.077-3.76,3.6,3.6,0,0,1,2.073-1.949" transform="translate(-546.23 -51.646)" fill="#0f1f40"/>
|
||||
<path id="Path_101" data-name="Path 101" d="M753.222,74.406a3.706,3.706,0,0,1,1.059.072,2.026,2.026,0,0,1,1.234,1.069,2.065,2.065,0,0,1,.029,1.507c-.269.7-.751.923-1.4,1.238l-.863-.067a1.813,1.813,0,0,1-1.26-.854,1.891,1.891,0,0,1-.254-1.511c.2-.756.814-1.1,1.454-1.453" transform="translate(-548.832 -54.309)" fill="#fff"/>
|
||||
<path id="Path_102" data-name="Path 102" d="M789.093,647.461a4.312,4.312,0,0,1,1.58.171,3.129,3.129,0,0,1,1.692,1.517,3.171,3.171,0,0,1-2.214,4.312,4.031,4.031,0,0,1-1.776-.187,3.767,3.767,0,0,1-1.661-1.727,3.155,3.155,0,0,1,.185-2.307,3.36,3.36,0,0,1,2.194-1.779" transform="translate(-574.269 -471.874)" fill="#0f1f40"/>
|
||||
<path id="Path_103" data-name="Path 103" d="M791.85,651.365a5.008,5.008,0,0,1,.976.009,1.852,1.852,0,0,1,1.262.862,2,2,0,0,1,.235,1.523,2.456,2.456,0,0,1-1.4,1.573,3.424,3.424,0,0,1-.833-.062,1.95,1.95,0,0,1-1.435-.882,2.01,2.01,0,0,1-.141-1.722,2.377,2.377,0,0,1,1.334-1.3" transform="translate(-577.055 -474.715)" fill="#fff"/>
|
||||
<path id="Path_104" data-name="Path 104" d="M703.435,649.459a3.92,3.92,0,0,1,1.769.318,2.815,2.815,0,0,1,1.53,1.645,3.157,3.157,0,0,1-.213,2.495,3.37,3.37,0,0,1-2.159,1.629,4.44,4.44,0,0,1-1.768-.286,3.128,3.128,0,0,1-1.6-1.759,2.923,2.923,0,0,1,.151-2.323,3.515,3.515,0,0,1,2.29-1.718" transform="translate(-511.626 -473.335)" fill="#0f1f40"/>
|
||||
<path id="Path_105" data-name="Path 105" d="M706.442,652.951a4.132,4.132,0,0,1,1.111.171,1.986,1.986,0,0,1,.977,1,1.918,1.918,0,0,1,.05,1.577,2.566,2.566,0,0,1-1.61,1.378,4.478,4.478,0,0,1-.936-.1,1.98,1.98,0,0,1-1.171-1.023,2.122,2.122,0,0,1-.085-1.659,2.523,2.523,0,0,1,1.664-1.346" transform="translate(-514.417 -475.887)" fill="#fff"/>
|
||||
<path id="Path_106" data-name="Path 106" d="M90.584,350.964a4.462,4.462,0,0,1,1.847.32,2.982,2.982,0,0,1,1.5,1.884,2.929,2.929,0,0,1-.246,2.294,3.332,3.332,0,0,1-2.173,1.568,3.575,3.575,0,0,1-1.8-.265,3,3,0,0,1-1.5-1.741,2.914,2.914,0,0,1,.208-2.562,3.088,3.088,0,0,1,2.171-1.5" transform="translate(-64.214 -255.843)" fill="#0f1f40"/>
|
||||
<path id="Path_107" data-name="Path 107" d="M93.164,354.394a4.255,4.255,0,0,1,.928.069,2.169,2.169,0,0,1,1.425,1.064,2.258,2.258,0,0,1,.117,1.723,2.515,2.515,0,0,1-1.406,1.265,2.973,2.973,0,0,1-.935.01,1.985,1.985,0,0,1-1.379-1.02,2.27,2.27,0,0,1-.174-1.74,2.388,2.388,0,0,1,1.424-1.372" transform="translate(-66.869 -258.347)" fill="#fff"/>
|
||||
<path id="Path_108" data-name="Path 108" d="M61.679,225.914a3.845,3.845,0,0,1,1.73.207,3.393,3.393,0,0,1,1.662,1.816,3.107,3.107,0,0,1-.116,2.39,3.271,3.271,0,0,1-2.126,1.654,3.939,3.939,0,0,1-1.773-.178,3.1,3.1,0,0,1-1.687-1.761,3.168,3.168,0,0,1,.115-2.5,3.3,3.3,0,0,1,2.195-1.632" transform="translate(-43.171 -164.678)" fill="#0f1f40"/>
|
||||
<path id="Path_109" data-name="Path 109" d="M64.568,229.416l.835.115a2.211,2.211,0,0,1,1.356,1.2,2.016,2.016,0,0,1,.034,1.6c-.287.772-.89,1.02-1.6,1.339a2.939,2.939,0,0,1-.765-.084,2.294,2.294,0,0,1-1.461-1.167,2.126,2.126,0,0,1-.057-1.677,2.463,2.463,0,0,1,1.659-1.331" transform="translate(-45.797 -167.24)" fill="#fff"/>
|
||||
<path id="Path_110" data-name="Path 110" d="M217.951,393.315a6.067,6.067,0,0,1,1.664-.02,3.191,3.191,0,0,1,2.012,1.561,3.359,3.359,0,0,1,.289,2.6,3.668,3.668,0,0,1-2.24,2.089,3.314,3.314,0,0,1-2.042-.089,3.2,3.2,0,0,1-1.763-1.731,3.236,3.236,0,0,1-.053-2.583,3.535,3.535,0,0,1,2.133-1.832" transform="translate(-157.377 -286.664)" fill="#0f1f40"/>
|
||||
<path id="Path_111" data-name="Path 111" d="M221.217,396.462a3.525,3.525,0,0,1,1.023.214,2.32,2.32,0,0,1,1.18,1.188,2.58,2.58,0,0,1,.028,1.889,3.2,3.2,0,0,1-1.915,1.392,2.915,2.915,0,0,1-1.08-.26,2.576,2.576,0,0,1-1.292-1.5,2.186,2.186,0,0,1,.169-1.647,2.869,2.869,0,0,1,1.887-1.276" transform="translate(-159.931 -289.013)" fill="#fff"/>
|
||||
<path id="Path_112" data-name="Path 112" d="M8.216,269.138a1.3,1.3,0,0,1,.566.678,64.7,64.7,0,0,0-7.763,29.44,71.111,71.111,0,0,0,.576,10.16c.159,1.189.386,2.364.591,3.545a5.509,5.509,0,0,1,.172,1.075,2.137,2.137,0,0,1-.28.466,5.754,5.754,0,0,1-.586-.343L.238,306.105a65.743,65.743,0,0,1,5.047-31.182c.785-1.865,1.625-4.228,2.93-5.785" transform="translate(0 -196.131)" fill="#0f1f40"/>
|
||||
<path id="Path_113" data-name="Path 113" d="M286.843,18.956a4.91,4.91,0,0,1,2.36.325,3.822,3.822,0,0,1,1.742,5.39,4.207,4.207,0,0,1-2.523,1.942,4.288,4.288,0,0,1-2.527-.29,4.185,4.185,0,0,1-2.116-2.467,3.916,3.916,0,0,1,.355-3.01,4.125,4.125,0,0,1,2.709-1.889" transform="translate(-207.057 -13.824)" fill="#0f1f40"/>
|
||||
<path id="Path_114" data-name="Path 114" d="M289.847,22.4a3.374,3.374,0,0,1,1.637.219,3.278,3.278,0,0,1,1.61,1.8,2.853,2.853,0,0,1-.235,2.207,3.232,3.232,0,0,1-2.154,1.537,4.016,4.016,0,0,1-1.457-.2,3.073,3.073,0,0,1-1.628-1.493,3.024,3.024,0,0,1-.009-2.31,3.555,3.555,0,0,1,2.235-1.76" transform="translate(-209.803 -16.344)" fill="#fff"/>
|
||||
<path id="Path_115" data-name="Path 115" d="M691.316,666.719l.454.343.024.38a17.147,17.147,0,0,1-3.107,3.049,59.223,59.223,0,0,1-21.149,12.06,63.232,63.232,0,0,1-39.567-.56,75.386,75.386,0,0,1-10.132-4.434l-.3-.325c-.009-.4-.024-.389.24-.693.915.062,2.3,1.081,3.173,1.523a57.43,57.43,0,0,0,6.337,2.666,63.04,63.04,0,0,0,17.2,3.666,59.752,59.752,0,0,0,39.981-11.647c2.484-1.859,4.525-4.011,6.844-6.029" transform="translate(-450.929 -485.937)" fill="#0f1f40"/>
|
||||
<path id="Path_116" data-name="Path 116" d="M580.751.026a11.156,11.156,0,0,1,7.482,2.3,11.019,11.019,0,0,1,4.26,7.43,10.836,10.836,0,0,1-2.346,8.308,11.461,11.461,0,0,1-15.519,2,11.533,11.533,0,0,1-4.443-8.033,10.833,10.833,0,0,1,2.388-7.883A11.442,11.442,0,0,1,580.751.026" transform="translate(-416.223 0)" fill="#0f1f40"/>
|
||||
<path id="Path_117" data-name="Path 117" d="M583.515,3.414a7.1,7.1,0,0,1,2.547.137A11.548,11.548,0,0,1,590.5,5.534a10.363,10.363,0,0,1,3.943,6.659,9.963,9.963,0,0,1-2,7.538,10.279,10.279,0,0,1-7.089,3.907,10.445,10.445,0,0,1-7.285-1.937,10.2,10.2,0,0,1-3.845-6.395,10.294,10.294,0,0,1,1.726-7.836,10.789,10.789,0,0,1,7.561-4.055" transform="translate(-419.118 -2.449)" fill="#fff"/>
|
||||
<path id="Path_118" data-name="Path 118" d="M469.7,720.441c2.322-.066,4.67.052,7,.058,3.211.007,6.422,0,9.633,0,.959,0,3.034-.235,3.841.218l15.165,7.5c1.7.834,2.864,1.679,3.461,3.555.241.756.56,2.459.181,3.187l-.755.074c-7.05.1-14.11.007-21.161.042q-4.414.022-8.829.037c-1.592,0-3.224.071-4.812-.036a4.855,4.855,0,0,1-2.089-.553,5.119,5.119,0,0,1-2.367-2.9l-.041-.174a15.085,15.085,0,0,1,.133-5.57q.336-2.718.644-5.442" transform="translate(-342.195 -525.136)" fill="#0f1f40"/>
|
||||
<path id="Path_119" data-name="Path 119" d="M476.4,723.591a7.191,7.191,0,0,1,2.585.243,60.549,60.549,0,0,1,6.665,2.859c.233.483.082.649-.067,1.151a2.933,2.933,0,0,1-.961-.193c-2.268-.876-4.5-2-6.736-2.97-.5-.215-1.263-.307-1.638-.675Z" transform="translate(-347.68 -527.445)" fill="#fff"/>
|
||||
<path id="Path_120" data-name="Path 120" d="M319.463,720.6l3.291-.023c.075,1.6.21,3.2.377,4.8.225,2.149.825,4.824-.122,6.857a4.7,4.7,0,0,1-2.55,2.6l-.162.058a11.475,11.475,0,0,1-3.6.264c-2.065.025-4.131.037-6.2.047-8.1.037-16.2.013-24.3.008-.782,0-3.055.16-3.651-.249a3.971,3.971,0,0,1-.129-.862,5.117,5.117,0,0,1,1.512-4.088,10.888,10.888,0,0,1,3.389-2.091c1.327-.62,2.663-1.221,3.981-1.859,2.5-1.211,4.979-2.505,7.458-3.765a25.317,25.317,0,0,1,2.772-1.427,7.491,7.491,0,0,1,2.493-.207q2.008-.006,4.016-.008c3.806,0,7.611-.011,11.417-.054" transform="translate(-206.196 -525.247)" fill="#0f1f40"/>
|
||||
<path id="Path_121" data-name="Path 121" d="M397.83,723.774a25.041,25.041,0,0,1,3.3,0L392.9,727.1a7.6,7.6,0,0,1-1.269.5c-.441.1-.461.074-.826-.155a.794.794,0,0,1-.086-.7,8.018,8.018,0,0,1,2.538-1.193c1.521-.6,3.02-1.262,4.577-1.767" transform="translate(-285.206 -527.541)" fill="#fff"/>
|
||||
<path id="Path_122" data-name="Path 122" d="M49.207,439.887a4.36,4.36,0,0,1,3.024.521,3.548,3.548,0,0,1,1.624,2.045l.041.2.87,5.756A38.435,38.435,0,0,1,65.3,451.9c.642-.709,1.29-1.413,1.916-2.136.959-1.108,1.7-2.312,3.249-2.605a5.059,5.059,0,0,1,3.991,1.106,41.583,41.583,0,0,1,4.494,3.775,9.452,9.452,0,0,1,1.61,1.666,4.218,4.218,0,0,1,.54,1.528,3.162,3.162,0,0,1-.054,1.457,7.646,7.646,0,0,1-1.21,1.97c-.724.977-1.463,1.942-2.193,2.914a31.979,31.979,0,0,1,5.316,10.571c2-.28,4.384-1,6.127.359a4.13,4.13,0,0,1,1.595,3.18c.195,1.931.332,3.875.454,5.811a15.069,15.069,0,0,1,.059,3.291,3.643,3.643,0,0,1-.881,1.835c-1.47,1.685-4.457,1.4-6.507,1.483a35.694,35.694,0,0,1-2.959,8.836c1.579,1.366,3.788,2.849,4.18,5a4.257,4.257,0,0,1-1.037,3.5c-.75,1.021-1.582,1.984-2.378,2.971-1.269,1.574-2.811,4.033-5,4.282-2.441.278-4.621-2.078-6.416-3.472a35.635,35.635,0,0,1-8.54,4.867c.335,2.1,1.38,5.568.028,7.372a3.735,3.735,0,0,1-1.413,1.142,14.081,14.081,0,0,1-3.794.853c-1.676.251-3.349.515-5.024.772a4.316,4.316,0,0,1-2.965-.731c-2.022-1.465-2.057-4.57-2.394-6.854a32.292,32.292,0,0,1-9.828-2.867c-1.444,1.469-2.865,3.767-5.013,4.145a4.152,4.152,0,0,1-3.153-.7c-1.035-.763-2-1.725-2.97-2.572a21.628,21.628,0,0,1-3.691-3.5,4.935,4.935,0,0,1-.842-2.179c-.225-2.271,2.067-4.424,3.4-6.1-2.057-2.694-4.471-5.839-5.2-9.2-2.172.192-5.325,1.052-7.223-.241A3.85,3.85,0,0,1,9.9,490.76c-.2-1.258-.3-2.55-.461-3.815-.264-2.119-.946-4.507.521-6.343,1.435-1.8,4.857-1.618,7-1.886.193-1.293.33-2.6.627-3.875a58.649,58.649,0,0,1,2.373-7.242,24.791,24.791,0,0,0-2.193-1.776,6.339,6.339,0,0,1-1.854-1.672,3.923,3.923,0,0,1-.373-2.7l.046-.146a10.974,10.974,0,0,1,1.548-2.876,49.1,49.1,0,0,1,3.428-4.522A3.741,3.741,0,0,1,23.24,452.5c2.112-.13,4.123,2.233,5.592,3.5a31.239,31.239,0,0,1,9.594-5.731l-.138-.768c-.362-2.1-1.2-5.191.152-7a3.633,3.633,0,0,1,1.513-1.2,15.87,15.87,0,0,1,3.585-.618q2.839-.372,5.67-.793" transform="translate(-6.599 -320.309)" fill="#0f1f40"/>
|
||||
<path id="Path_123" data-name="Path 123" d="M281.241,562.187a4.853,4.853,0,0,1,.81-.214,12.974,12.974,0,0,1,3.858-.484,3.093,3.093,0,0,1,1.025.546,21.4,21.4,0,0,1-5.414.455Z" transform="translate(-205.316 -409.292)" fill="#fff"/>
|
||||
<path id="Path_124" data-name="Path 124" d="M187.425,475.471c.852-1,1.721-1.985,2.594-2.965.771-.866,1.538-2.03,2.789-2.139,2.265-.2,4.2,1.864,5.784,3.268a16.15,16.15,0,0,1,3.1,3.212,3.583,3.583,0,0,1-1.64-1.066c-1.361-1.2-3.791-4.052-5.673-3.906-2,.156-4.346,3.238-5.639,4.679a5.359,5.359,0,0,0-1.341-.944,16.442,16.442,0,0,1-2.932-1.127,32.715,32.715,0,0,0-4.706-1.342c-1.072-.223-2.81-.281-3.61-.945l.236-.436a24.977,24.977,0,0,1,8.628,2.458,12.865,12.865,0,0,1,2.411,1.252" transform="translate(-128.601 -342.875)" fill="#fff"/>
|
||||
<path id="Path_125" data-name="Path 125" d="M37.432,501.4a2.692,2.692,0,0,1-1.172-1.859c-.208-1.944,2.309-4.931,3.5-6.427.8-1,1.905-2.675,3.3-2.786a3.622,3.622,0,0,1,2.646,1.177,9.082,9.082,0,0,1-2.06.544,25.308,25.308,0,0,0-4.455,5.954c-.389.715-.734,1.446-1.069,2.187a2.988,2.988,0,0,1-.694,1.21" transform="translate(-26.448 -357.42)" fill="#fff"/>
|
||||
<path id="Path_126" data-name="Path 126" d="M119.187,451.781l-.037-.159c-.3-1.415-1.055-4.607-.227-5.836a2.812,2.812,0,0,1,1.848-1.243c1.635-.32,3.333-.456,4.984-.7a22.255,22.255,0,0,1,4.626-.578,2.889,2.889,0,0,1,2.5,2.287l-.217.079-1.185-.724a36.31,36.31,0,0,0-5.467.589,24.823,24.823,0,0,0-3.787.594,2.028,2.028,0,0,0-.793.48A7.056,7.056,0,0,0,119.66,450a8.35,8.35,0,0,1-.473,1.784" transform="translate(-86.5 -323.11)" fill="#fff"/>
|
||||
<path id="Path_127" data-name="Path 127" d="M23.64,544.795a2.2,2.2,0,0,1,.943.568,19.177,19.177,0,0,1-1.106,2.627c-1.131,2.986-2.239,6.6-2.123,9.8-1.951.428-5.424.627-6.6,2.351a4.541,4.541,0,0,0-.468,3.051c.149,2.062.62,4.125.688,6.185l-.541-.384a2.329,2.329,0,0,1-.709-.952,9.557,9.557,0,0,1-.406-2.316c-.178-1.438-.361-2.876-.537-4.315-.158-1.295-.33-2.451.571-3.525,1.292-1.544,5.242-1.442,7.2-1.617a28.159,28.159,0,0,1,3.089-11.472" transform="translate(-9.235 -397.088)" fill="#fff"/>
|
||||
<path id="Path_128" data-name="Path 128" d="M46.182,456.261a8.351,8.351,0,0,0,.473-1.784,7.056,7.056,0,0,1,1.768-3.427,2.029,2.029,0,0,1,.793-.48A24.83,24.83,0,0,1,53,449.976a36.317,36.317,0,0,1,5.467-.589l1.185.724.217-.079c.218,1.5.44,2.994.683,4.488a7.317,7.317,0,0,0,.559,2.37c.8.664,2.538.723,3.61.945a32.723,32.723,0,0,1,4.706,1.342,16.463,16.463,0,0,0,2.932,1.127,5.359,5.359,0,0,1,1.341.944c1.294-1.441,3.636-4.522,5.639-4.679,1.882-.146,4.312,2.71,5.673,3.906a3.583,3.583,0,0,0,1.639,1.066,2.213,2.213,0,0,1,.388,1.575,4.922,4.922,0,0,1-.984,1.725c-.913,1.277-1.848,2.539-2.826,3.768a26.162,26.162,0,0,1,3.644,5.54c.458.928.875,1.882,1.249,2.847.32.828.7,2.959,1.4,3.393l.279.3a21.4,21.4,0,0,0,5.414-.455,2.48,2.48,0,0,1,1.265,1.917,48.931,48.931,0,0,1,.465,5.267,21.992,21.992,0,0,1,.207,3.957,2.646,2.646,0,0,1-.39,1.165,3.065,3.065,0,0,1-2.2,1.346l-4.817.248a22.856,22.856,0,0,1-3.482,10.112c1.6,1.152,4.461,2.977,4.739,5.023.237,1.743-1.889,3.7-2.908,4.937-.806.981-1.58,1.989-2.4,2.957a3.831,3.831,0,0,1-2.6,1.6c-1.328.1-2.2-.883-3.155-1.656-.935-.759-1.87-1.536-2.845-2.243a39.671,39.671,0,0,1-3.565,2.637,42.263,42.263,0,0,1-6.113,2.916l.933,6.037a3.213,3.213,0,0,1-1.647,2.232,14.718,14.718,0,0,1-3.917.864c-1.72.279-4.512,1.082-6.169.453a3.28,3.28,0,0,1-1.761-1.58,8.9,8.9,0,0,1-.429-2c-.208-1.272-.407-2.533-.563-3.812a23.492,23.492,0,0,1-7.825-1.668c-1.055-.425-2.08-.985-3.152-1.357q-1.059,1.123-2.117,2.245c-.9.958-1.658,2.112-3.106,2.125a3.44,3.44,0,0,1-1.723-.356,19.245,19.245,0,0,1-3.163-2.6c-1.083-.955-2.281-1.877-3.281-2.917a2.1,2.1,0,0,1-.52-.707,3.932,3.932,0,0,1-.483-2.412l.035-.15a5.61,5.61,0,0,1,1.381-2.1c.75-.9,1.478-1.806,2.195-2.731a6.949,6.949,0,0,0-1.043-1.481c-.627-.837-1.238-1.684-1.8-2.567a35.324,35.324,0,0,1-3.029-6.417c-1.978.238-5.184,1.129-7.007.22-.067-2.059-.539-4.122-.688-6.185a4.541,4.541,0,0,1,.468-3.051c1.175-1.723,4.647-1.923,6.6-2.351-.116-3.2.992-6.814,2.123-9.8a19.173,19.173,0,0,0,1.106-2.627,2.2,2.2,0,0,0-.943-.568c.157-.342.29-.468.208-.85l-3.63-2.779a2.988,2.988,0,0,0,.694-1.21c.335-.741.68-1.472,1.069-2.187a25.3,25.3,0,0,1,4.455-5.954,9.085,9.085,0,0,0,2.06-.544,14.792,14.792,0,0,0,3.179,2.635,17.129,17.129,0,0,1,2.5-2.113,21.739,21.739,0,0,1,7.849-3.991,9.327,9.327,0,0,0-.1-1.9" transform="translate(-13.495 -327.293)" fill="#ee2934"/>
|
||||
<path id="Path_129" data-name="Path 129" d="M58.988,673.759l1.166,1.656a37.922,37.922,0,0,1-2.906,4.007,17.652,17.652,0,0,1-1.388,1.729,3.932,3.932,0,0,1-.483-2.412l.035-.15a5.611,5.611,0,0,1,1.381-2.1c.75-.9,1.478-1.806,2.195-2.731" transform="translate(-40.371 -491.076)" fill="#fff"/>
|
||||
<path id="Path_130" data-name="Path 130" d="M93.352,481.867l.158.886c-.2.243-.077.163-.334.244-3.317,1.039-6.735,3.586-9.216,5.972a8.439,8.439,0,0,0-.955-1,17.13,17.13,0,0,1,2.5-2.113,21.739,21.739,0,0,1,7.849-3.991" transform="translate(-60.567 -351.266)" fill="#fff"/>
|
||||
<path id="Path_131" data-name="Path 131" d="M105.748,521.377a19.946,19.946,0,0,1,14.569,4.424,20.3,20.3,0,0,1,7.294,13.461A21.441,21.441,0,0,1,123,555.031a20.408,20.408,0,0,1-13.826,7.423,19.867,19.867,0,0,1-14.184-4.047,20.562,20.562,0,0,1-7.62-13.569,21.155,21.155,0,0,1,4.173-15.583,20.52,20.52,0,0,1,14.209-7.878" transform="translate(-63.621 -379.787)" fill="#0f1f40"/>
|
||||
<path id="Path_132" data-name="Path 132" d="M108.917,525.018a18.958,18.958,0,0,1,13,4,19.462,19.462,0,0,1,7.226,13.113,20.285,20.285,0,0,1-4.273,14.784,19.322,19.322,0,0,1-13.306,7.195,19.013,19.013,0,0,1-20.784-17.478,20.608,20.608,0,0,1,4.683-14.809,19.484,19.484,0,0,1,13.457-6.807" transform="translate(-66.173 -382.479)" fill="#fff"/>
|
||||
<path id="Path_133" data-name="Path 133" d="M200.874.411A12.088,12.088,0,0,1,202.85.352a15.5,15.5,0,0,1,7.779,1.837,8.212,8.212,0,0,1,3.318,3.225,14.724,14.724,0,0,1,.785,2.521l1.563.61a9.752,9.752,0,0,1,5.111,5.385,11.516,11.516,0,0,1,.6,2.689c.262,2.559.121,5.241.16,7.818a35.242,35.242,0,0,1,.057,5,7.671,7.671,0,0,1-.749,2.307,8.776,8.776,0,0,1-5.5,4.269l-.025,4.137c25.566-.069,51.136.009,76.7.023l24.634.014q3.81,0,7.618,0c1.377,0,2.82-.081,4.189.038a6.752,6.752,0,0,1,3.946,1.723,7.9,7.9,0,0,1,2.564,5.377c.139,7.064,0,14.163,0,21.231q.019,24.239-.023,48.477c0,8.267.028,16.533.027,24.8q0,3.709-.009,7.419a40.973,40.973,0,0,1-.062,4.109,7.383,7.383,0,0,1-2.064,4.4,6.642,6.642,0,0,1-3.817,1.965,23.918,23.918,0,0,1-3.186.07l-5.821,0q-9.614-.008-19.228-.012-32.937.014-65.874.031l-2.892,32.364c-4.732.259-9.562.088-14.306.091H214.2a8.45,8.45,0,0,1-2.229-.116,2.034,2.034,0,0,1-.242-.338,7.442,7.442,0,0,1-.09-1.618c-.1-1.833-.209-3.665-.308-5.5-.448-8.261-1.033-16.534-1.356-24.8l-4.471,0-1.48,32.394-22.177-.055c-2.892-18.39-4.3-37.329-2.566-55.9l3.468-26.685c-3.268-5.8-3.846-12.26-4.021-18.8l-3.878,2.4c-.1,7.351-.043,14.706-.037,22.057q0,3.218,0,6.435c0,1.189.082,2.434-.037,3.616a.728.728,0,0,1-.18.442.625.625,0,0,1-.647-.105,20.616,20.616,0,0,1-.1-3.488q-.005-3.11-.006-6.22,0-11.116-.028-22.232a22.913,22.913,0,0,1-7.214,2.21c-7.052.751-13.545-3.867-18.749-8.085a73.244,73.244,0,0,1-7.072-6.512c-1.756-1.856-3.7-3.616-3.958-6.317-.269-2.791,1.256-5.005,2.941-7.047a12.091,12.091,0,0,1-1.743-1.885c-1.555-2.342-2.058-5.307-2.4-8.046l-2.088-.652c-.171,5.332-.16,10.674-.242,16.009-.022,1.445-.046,2.89-.082,4.335a12.737,12.737,0,0,1-.117,2.207,3.967,3.967,0,0,1-.919,1.769,3.414,3.414,0,0,1-2.533,1.245,3.875,3.875,0,0,1-3.907-3.034A19.968,19.968,0,0,1,125.8,75.8c.095-2.774.185-5.545.234-8.321l-1.476-.174c-1.5-.277-3.211-1.929-4-3.181a4.27,4.27,0,0,1-.58-3.383,2.8,2.8,0,0,1,1.361-1.638l.139-.082-.084-.313a4.29,4.29,0,0,1-.21-1.882,3.586,3.586,0,0,1,1.889-2.472,4.048,4.048,0,0,1,.885-2.225,4.371,4.371,0,0,1,3.29-1.374l-.026-3.666-.182-.034c-3.017-.61-5.909-3.138-7.525-5.675a12.814,12.814,0,0,1-1.836-9.58,14.353,14.353,0,0,1,4.023-7.284c.618-.619,1.685-1.744,2.611-1.741.661.7,1.413,5.131,1.673,6.334a7.581,7.581,0,0,0-1.156,4.137,6.479,6.479,0,0,0,2.3,4.568,6.321,6.321,0,0,0,4.981,1.257,6.7,6.7,0,0,0,4.426-2.968,5.779,5.779,0,0,0,.293-5.987,15.517,15.517,0,0,1-1.2-1.925,17.057,17.057,0,0,1-.48-2.15c-.279-1.254-.653-2.49-.9-3.752-.086-.44-.224-.732.038-1.117a6.869,6.869,0,0,1,2.9.847,12.988,12.988,0,0,1,6.827,7.26,13.386,13.386,0,0,1-6.1,16.421,24.673,24.673,0,0,1-3.264,1.334l-.079,2.6c2.4.449,4.82.835,6.865,2.271,3.327,2.336,5.433,6.89,6.132,10.823a7.153,7.153,0,0,1,3.558.094,7.663,7.663,0,0,1,2.323,1.615c2.825,2.472,5.036,4.6,9.006,4.52,6.071-.117,9.185-5.741,12.674-9.858a46.059,46.059,0,0,1,7.066-6.937,33.208,33.208,0,0,1,5.458-3.293,11.288,11.288,0,0,0,2.759-1.372l.137-.178c.606-.581,2.2-.826,3.021-1.036a28.666,28.666,0,0,1,5.5-1.272l.053-4.261a14.934,14.934,0,0,1-7.706-6.618c-3.048-5.478-2.463-12.232-.82-18.044A8.546,8.546,0,0,1,188,10.664a6.77,6.77,0,0,1,1.609-4.816C192.376,2.359,196.6.887,200.874.411" transform="translate(-85.662 -0.249)" fill="#0f1f40"/>
|
||||
<path id="Path_134" data-name="Path 134" d="M798.5,361.843l.529-.072c.417.232.609.834.831,1.258a30.044,30.044,0,0,1-4.405.923l-1.562-.014a3.516,3.516,0,0,1,.171-1.567,22.792,22.792,0,0,0,4.436-.529" transform="translate(-579.575 -263.728)" fill="#ee2934"/>
|
||||
<path id="Path_135" data-name="Path 135" d="M505.249,428.539c1.07.237,1.137,1.446,1.836,2.2,1.1,1.176,2.226,1.231,3.724,1.308.427.313.383.353.488.846l-.322.429a4.853,4.853,0,0,1-3.329-.421,5.188,5.188,0,0,1-2.669-2.933,1.479,1.479,0,0,1,.272-1.424" transform="translate(-368.591 -312.396)" fill="#fff"/>
|
||||
<path id="Path_136" data-name="Path 136" d="M375.283,429.723a2.475,2.475,0,0,1,.575.166c.212.129.332.234.346.484a3.137,3.137,0,0,1-1.1,1.99,6.358,6.358,0,0,1-4.951,1.91c-.418-.148-.588-.142-.838-.52a1.583,1.583,0,0,1,.224-.794c.175-.237,1.568-.167,1.927-.223,1.924-.3,2.753-1.587,3.818-3.013" transform="translate(-269.613 -313.26)" fill="#fff"/>
|
||||
<path id="Path_137" data-name="Path 137" d="M145.072,189.42l.193.061a5.771,5.771,0,0,0,.719,3.255,16.135,16.135,0,0,0,1.414,1.471c-.163.309-.242.53-.563.7l-1.192-.8a11.544,11.544,0,0,0-3.141-1.817l-.169-.057a2.074,2.074,0,0,1,.285-1.269,3.779,3.779,0,0,1,2.455-1.547" transform="translate(-103.846 -138.083)" fill="#fff"/>
|
||||
<path id="Path_138" data-name="Path 138" d="M673.247,438.621a3.956,3.956,0,0,1,1.351.686l-8.96,11.333-.252.042c-.37-.01-.545-.257-.78-.5-.041-.421.022-.471.25-.831a44.122,44.122,0,0,1,2.837-3.565c1.884-2.367,3.742-4.748,5.554-7.17" transform="translate(-485.182 -319.73)" fill="#fff"/>
|
||||
<path id="Path_139" data-name="Path 139" d="M136.1,203.3a9.1,9.1,0,0,1,4.519,2.574,3.334,3.334,0,0,1,.969,2.3,2.625,2.625,0,0,1-1.242,1.9,14.148,14.148,0,0,1-4.941-3.7,1.794,1.794,0,0,1-.4-1.412,2.37,2.37,0,0,1,1.1-1.663" transform="translate(-98.485 -148.199)" fill="#fff"/>
|
||||
<path id="Path_140" data-name="Path 140" d="M131.284,219.588a20.084,20.084,0,0,1,2.913,2.106,12.63,12.63,0,0,1,2.266,1.433,2.126,2.126,0,0,1,.243,1.209,2.484,2.484,0,0,1-1.068,1.885l-.278.017a5.231,5.231,0,0,1-3.76-1.709,4.214,4.214,0,0,1-1.508-2.876,2.826,2.826,0,0,1,1.192-2.065" transform="translate(-94.924 -160.073)" fill="#fff"/>
|
||||
<path id="Path_141" data-name="Path 141" d="M438.663,192.244a3.966,3.966,0,0,1,.989.849q1.187,1.136,2.372,2.274l-2.106,3.122-1.135-.011-2.148.029-1.572-3.026Z" transform="translate(-317.613 -140.141)" fill="#ee2934"/>
|
||||
<path id="Path_142" data-name="Path 142" d="M717.7,411.808c2.169-.185,5.051,1.155,7.084,1.895.784.285,1.951.56,2.279,1.408a1.616,1.616,0,0,1-.109,1.232,2.547,2.547,0,0,1-1.858.978,36.859,36.859,0,0,1-9.707-2.694,5.941,5.941,0,0,1,2.31-2.818" transform="translate(-522.264 -300.186)" fill="#fff"/>
|
||||
<path id="Path_143" data-name="Path 143" d="M731.018,394.341a5.037,5.037,0,0,1,1.5.021,25.589,25.589,0,0,1,3.83,1.454,18.252,18.252,0,0,1,3.178,1.312,2.7,2.7,0,0,1,.909.91,1.4,1.4,0,0,1-.019,1.068,2.692,2.692,0,0,1-1.542,1.482,4.4,4.4,0,0,1-1.206.072,17.641,17.641,0,0,1-2.818-1.048c-1.528-.569-3.206-1-4.669-1.691a1.535,1.535,0,0,1-.578-.5,2.487,2.487,0,0,1-.035-1.621,2.708,2.708,0,0,1,1.447-1.457" transform="translate(-532.532 -287.43)" fill="#fff"/>
|
||||
<path id="Path_144" data-name="Path 144" d="M790.475,256.977a16.445,16.445,0,0,1,7.733,1.149,15.658,15.658,0,0,1,4.257,2.716,3.1,3.1,0,0,1,.912,1.078,2.044,2.044,0,0,1-.263.473,2.122,2.122,0,0,1-1.361.543,13.748,13.748,0,0,0-3.238,1.9,37.951,37.951,0,0,0-7.357-2.886Z" transform="translate(-577.118 -187.295)" fill="#ee2934"/>
|
||||
<path id="Path_145" data-name="Path 145" d="M445.608,496.816l.812.192a1.6,1.6,0,0,1,.286.37,4.907,4.907,0,0,1,.063.962c.06.9.119,1.8.185,2.706.478,6.556.947,13.125,1.357,19.685h-4.4q.311-9.1.739-18.2c.054-1.154.09-2.31.137-3.464a7.144,7.144,0,0,1,.132-1.628c.128-.426.326-.441.692-.629" transform="translate(-324.068 -362.119)" fill="#fff"/>
|
||||
<path id="Path_146" data-name="Path 146" d="M460.041,168.888l6.347,2.173L460,182.1l-.816-.756-7.214-6.719Z" transform="translate(-329.964 -123.109)" fill="#fff"/>
|
||||
<path id="Path_147" data-name="Path 147" d="M399.459,169.041c.718.076,6.32,4.841,7.256,5.6l-7.856,6.671-1.074.937-5.328-11.447Z" transform="translate(-286.513 -123.221)" fill="#fff"/>
|
||||
<path id="Path_148" data-name="Path 148" d="M437.875,131.926c.258.345.106,8.126.106,9.21l-8.118,5.782-4.194-3.242-2.743-2.319a20.271,20.271,0,0,0,.251-4.417,15.1,15.1,0,0,0,4.252.519c4.355-.116,7.584-2.524,10.447-5.533" transform="translate(-308.758 -96.165)" fill="#fff"/>
|
||||
<path id="Path_149" data-name="Path 149" d="M158.735,184.784a16.8,16.8,0,0,1,4.494.283c2.4.324,4.612.594,6.682,1.956,3.325,2.188,5.139,6.622,5.882,10.379l-3.426,2.1-2.738,2.045-.422-.377c-2.484-2.262-3.268-6.019-3.422-9.242a16.292,16.292,0,0,0-3.81-1.176c-1.431-.346-3.564-.949-4.316-2.3a3.42,3.42,0,0,1-.191-2.673,3.318,3.318,0,0,1,1.268-.992" transform="translate(-114.827 -134.641)" fill="#fff"/>
|
||||
<path id="Path_150" data-name="Path 150" d="M773.157,279.456a43.97,43.97,0,0,1,6.578,2.566l2.707,8.572a36.709,36.709,0,0,1-2.733,2.46,24.357,24.357,0,0,1-3.131,2.762c-.417.26-.569.123-1.008,0l-6.167-3.107-3.66-8.2c2.792-.752,5.134-3.323,7.414-5.057" transform="translate(-559.072 -203.701)" fill="#ee2934"/>
|
||||
<path id="Path_151" data-name="Path 151" d="M680.688,377.415a7.123,7.123,0,0,1-.356-4.308,15.574,15.574,0,0,1,6.728-9.779c1.7-1.113,4.388-2.4,6.468-1.935l.181.045c3.156.76,6.607,3.438,8.765,5.838a3.459,3.459,0,0,1,1.107,2.926,4.6,4.6,0,0,1-.884,1.111c-1.857-.527-3.617-1.465-5.433-2.121a4.227,4.227,0,0,0,.215-1.591c-.369-.24-.371-.2-.812-.135a2.244,2.244,0,0,0-.341.405c-.109.221.053.984-.072,1.143a8.563,8.563,0,0,1-1.264.208,3.372,3.372,0,0,0-2.649,3.424,1.939,1.939,0,0,0,.308.87c.1.181.065.095.1.323l-.166.023a3.365,3.365,0,0,0-2.52,1.356,8.306,8.306,0,0,0-1.607,2.915c1.461,1.838,7.4,2.8,9.716,3.283a4.471,4.471,0,0,1-2.979,2.75,4.328,4.328,0,0,1-1.555.355,9.833,9.833,0,0,1-2.311-.694,34.272,34.272,0,0,1-4.026-1.537c-2.332-1.146-5.072-2.741-6.615-4.875" transform="translate(-496.562 -263.341)" fill="#fff"/>
|
||||
<path id="Path_152" data-name="Path 152" d="M138.2,81.618a10.1,10.1,0,0,1,2.219.906,12.1,12.1,0,0,1,5.9,7.278,12.511,12.511,0,0,1-1.056,9.25c-2,3.536-4.94,5.325-8.764,6.387l-.046,3.17c-1.831-.092-3.556-.362-5.283.377l-.139-3.43-2.66-.987c-3.276-1.426-5.3-4.258-6.583-7.485a13.169,13.169,0,0,1-.375-5.264l.162-1.013a12.248,12.248,0,0,1,5.116-7.465L127.8,88.2a7.876,7.876,0,0,0-.846,1.806,7.291,7.291,0,0,0,.681,5.73A7.077,7.077,0,0,0,131.99,99.1a7.763,7.763,0,0,0,5.894-.859,7.536,7.536,0,0,0,3.407-4.958,7.049,7.049,0,0,0-1.389-5.612,6.971,6.971,0,0,1-.94-2.73q-.378-1.663-.763-3.325" transform="translate(-88.508 -59.578)" fill="#fff"/>
|
||||
<path id="Path_153" data-name="Path 153" d="M482.308,150.854l74.067-.031a42.665,42.665,0,0,1-.026,4.789l-69.535.023a12.121,12.121,0,0,1-4.537-.971Z" transform="translate(-352.149 -109.947)" fill="#fff"/>
|
||||
<path id="Path_154" data-name="Path 154" d="M505.625,172.138l66.133.051a57.272,57.272,0,0,1-.093,6.942l-1.7.072-48.01-.1c-.966-.666-1.863-1.4-2.864-2.023a27.5,27.5,0,0,0-9.977-3.868c-1.186-.188-2.419-.117-3.59-.327a15.687,15.687,0,0,1-2.222-.674Z" transform="translate(-367.494 -125.483)" fill="#e7e7e7"/>
|
||||
<path id="Path_155" data-name="Path 155" d="M388.559,60.513c4.833,2.4,10.738,1.513,15.762.184a16.2,16.2,0,0,1,3.057,1.185,4.709,4.709,0,0,1,2.35,2.656l.047.2c.353,1.424-.153,5.175.552,6a5.1,5.1,0,0,0,2.32-.4,4.231,4.231,0,0,1,1.16-1.584,2.619,2.619,0,0,1,2.108-.22,3.327,3.327,0,0,1,2.1,1.706,5.687,5.687,0,0,1-.106,4.213c-.9,2.312-2.8,3.488-4.983,4.425l.655-2.027a2.144,2.144,0,0,0,.155-1.454c-.348-.1-.378-.148-.7,0a13.378,13.378,0,0,1-6.39,7.4,12.188,12.188,0,0,1-9.631.9A13.522,13.522,0,0,1,389.134,77c-2.552-4.847-2.189-11.408-.575-16.488" transform="translate(-282.747 -44.172)" fill="#fff"/>
|
||||
<path id="Path_156" data-name="Path 156" d="M443.239,81.1a1.6,1.6,0,0,1,.971.553,1.536,1.536,0,0,1-.261,1.031,1.814,1.814,0,0,1-1.055-.426,1.508,1.508,0,0,1,.346-1.158" transform="translate(-323.322 -59.199)" fill="#0f1f40"/>
|
||||
<path id="Path_157" data-name="Path 157" d="M485.205,97.738c.523.053.648,0,1.03.38a1.976,1.976,0,0,1-.487,1.176,1.492,1.492,0,0,1-.864-.458,1.367,1.367,0,0,1,.32-1.1" transform="translate(-353.975 -71.344)" fill="#0f1f40"/>
|
||||
<path id="Path_158" data-name="Path 158" d="M403.185,80.956a1.4,1.4,0,0,1,.771.245c.2.156.169.313.213.549-.233.422-.394.47-.8.707l-.426-.146c-.374-.167-.361-.26-.494-.629.161-.519.274-.483.739-.727" transform="translate(-293.798 -59.094)" fill="#0f1f40"/>
|
||||
<path id="Path_159" data-name="Path 159" d="M441.838,92.252a1.7,1.7,0,0,1,.746.084,1.381,1.381,0,0,1,.545,1.111,1.8,1.8,0,0,1-.6,1.486,2.036,2.036,0,0,1-.462.029c-.4-.032-.566-.289-.79-.58a2.714,2.714,0,0,1,.558-2.13" transform="translate(-322.129 -67.338)" fill="#0f1f40"/>
|
||||
<path id="Path_160" data-name="Path 160" d="M402,92.187l.936.067a1.256,1.256,0,0,1,.6.935,1.628,1.628,0,0,1-.526,1.491,1.321,1.321,0,0,1-.89,0,1.24,1.24,0,0,1-.473-.821A2.037,2.037,0,0,1,402,92.187" transform="translate(-293.19 -67.292)" fill="#0f1f40"/>
|
||||
<path id="Path_161" data-name="Path 161" d="M417.03,91.152c.425.034.611-.012.942.269a10.265,10.265,0,0,1,.256,4.207,4.5,4.5,0,0,1-.559.976,3.121,3.121,0,0,0-.687,1.366,1.2,1.2,0,0,0,.629.727,2.489,2.489,0,0,0,1.887-.072,2.323,2.323,0,0,1,.895-.183,1.1,1.1,0,0,1,.368.814,5.187,5.187,0,0,1-1.153.506,3.727,3.727,0,0,1-2.81-.341,1.956,1.956,0,0,1-.849-1.384c-.108-.927.812-1.865,1.329-2.544Z" transform="translate(-303.651 -66.537)" fill="#0f1f40"/>
|
||||
<path id="Path_162" data-name="Path 162" d="M758.348,150.845q13.3,0,26.605,0,3.832,0,7.665,0a29.575,29.575,0,0,1,4.312.107,6.158,6.158,0,0,1,3.212,1.683c2.645,2.618,1.975,6.547,1.956,9.945l-.007,1.081q-14.458-.01-28.916-.024l-6.825-.006a12.543,12.543,0,0,0-2.84.064,2.911,2.911,0,0,0-.265.812l-5.6-.056a2.031,2.031,0,0,0,.618-.937,19.355,19.355,0,0,0,.1-4.086q0-4.293-.008-8.586" transform="translate(-553.161 -109.94)" fill="#b2a9a7"/>
|
||||
<path id="Path_163" data-name="Path 163" d="M866.477,163.995a4.586,4.586,0,0,1,1.976.3,3.708,3.708,0,0,1,1.838,2.093,3.449,3.449,0,0,1-.17,2.575,3.63,3.63,0,0,1-2.449,1.866,3.835,3.835,0,0,1-2.2-.4,3.7,3.7,0,0,1-1.739-2.312,3.64,3.64,0,0,1,.435-2.684,3.489,3.489,0,0,1,2.312-1.436" transform="translate(-630.506 -119.547)" fill="#0f1f40"/>
|
||||
<path id="Path_164" data-name="Path 164" d="M869.181,167.4a4.67,4.67,0,0,1,1.3.077,2.717,2.717,0,0,1,1.482,1.363,2.4,2.4,0,0,1,.1,1.9,2.648,2.648,0,0,1-1.543,1.511,4.108,4.108,0,0,1-1.49-.049,2.37,2.37,0,0,1-1.269-1.143,2.612,2.612,0,0,1-.2-2.151,2.831,2.831,0,0,1,1.61-1.513" transform="translate(-633.264 -122.027)" fill="#fff"/>
|
||||
<path id="Path_165" data-name="Path 165" d="M829.033,163.85a4.79,4.79,0,0,1,1.869.1,3.372,3.372,0,0,1,2.047,1.713,3.664,3.664,0,0,1,.195,2.88,3.711,3.711,0,0,1-2.261,2.1,4.482,4.482,0,0,1-2.2-.137,3.224,3.224,0,0,1-1.873-1.725,3.942,3.942,0,0,1-.011-2.91,3.6,3.6,0,0,1,2.238-2.014" transform="translate(-603.42 -119.409)" fill="#0f1f40"/>
|
||||
<path id="Path_166" data-name="Path 166" d="M831.912,167.386a3.948,3.948,0,0,1,1.489.154,2.542,2.542,0,0,1,1.345,1.334,2.846,2.846,0,0,1,.019,1.952,2.687,2.687,0,0,1-1.609,1.438,4.763,4.763,0,0,1-1.34-.058,2.435,2.435,0,0,1-1.5-1.3,2.576,2.576,0,0,1-.041-1.9,2.773,2.773,0,0,1,1.637-1.618" transform="translate(-606.04 -122.016)" fill="#fff"/>
|
||||
<path id="Path_167" data-name="Path 167" d="M422.2,219.086c.338-.018.33-.075.621.136l5.029,60.045-7.611,7.615-1.4-1.43-6.952-7.178,7.986-59.131Z" transform="translate(-300.7 -159.6)" fill="#ee2934"/>
|
||||
<path id="Path_168" data-name="Path 168" d="M616.519,256.246l36.211.015a31.3,31.3,0,0,0,.094,4.852,17.694,17.694,0,0,0-3.146,6.31c-1.272,4.953-.274,9.281,2.3,13.606l-1.025,4.209-2.483-1.174c-2.039-.884-3.786-.354-5.745.41-2.161-1.186-4.179-2.577-6.234-3.932a64.9,64.9,0,0,1-6.869-4.841c-5.751-4.961-10.056-12.579-13.106-19.454" transform="translate(-450.114 -186.765)" fill="#ee2934"/>
|
||||
<path id="Path_169" data-name="Path 169" d="M245.818,178.909c.291,0,.254-.06.427.2a15.168,15.168,0,0,1,.938,2.228c.855,1.975,1.769,3.935,2.693,5.879a11.215,11.215,0,0,0,1.989,3.429c.783-.115,1.462-.887,2.059-1.384,1.1-.912,2.175-1.865,3.345-2.684l.168-.117,1.7,2.936-7.669,55.09a14.344,14.344,0,0,1-3.954-.322c-3.3-.777-7.255-2.713-9.079-5.713-2.095-3.443-2.815-7.8-3.2-11.739a86.406,86.406,0,0,1,.984-22.859c.526-3.117,1.335-6.147,2.063-9.217-.219-.311-.232-.279-.61-.36-.9.62-2.032,7.291-2.334,8.764L233.9,219.56c-4.078,3.211-9.923,5.972-15.245,5.325a18.892,18.892,0,0,1-4.832-1.241,34.014,34.014,0,0,1-7.2-4.219,80.2,80.2,0,0,1-9.974-8.705c-1.2-1.223-2.728-2.555-3.371-4.164a6.09,6.09,0,0,1,.291-4.871c1.5-3.264,5.426-6.4,8.78-7.615,3.071-1.115,4.439.205,6.623,2.087a21.44,21.44,0,0,0,4.468,3.158,9.79,9.79,0,0,0,4.354.712c6.1-.288,9.155-5.064,12.631-9.371a54.59,54.59,0,0,1,5.049-5.495,30.486,30.486,0,0,1,10.341-6.251" transform="translate(-140.847 -130.345)" fill="#fff"/>
|
||||
<path id="Path_170" data-name="Path 170" d="M470.089,178.714a34.406,34.406,0,0,1,4.431.4c9.955,1.935,17.082,9.023,21.906,17.569,1.214,2.151,2.216,4.431,3.333,6.636a65.282,65.282,0,0,0,8.827,13.563c4.207,4.84,10.172,8.195,15.608,11.491a16.923,16.923,0,0,0-3.5,2.363,16.417,16.417,0,0,0-5.435,11.867,44.928,44.928,0,0,1-8.645-1.749c-7.825-2.475-14.554-8.1-19.323-14.67a70.938,70.938,0,0,1-5.4-9.109,58.379,58.379,0,0,1-3.656-8.889c-.286-.883-.572-1.78-.786-2.684a4.977,4.977,0,0,0-.515-1.816c-.154-.175-.381-.094-.593-.089l-.257.274a13.892,13.892,0,0,0,.9,3.653,68.636,68.636,0,0,0,4.425,10.917c.6,1.166,1.258,2.3,1.911,3.437a4.761,4.761,0,0,1,.792,1.65,17.664,17.664,0,0,1-.08,2.883c-.268,3.762-1.287,7.832-3.751,10.771-5,5.965-12.606,7.15-19.934,7.786l-4.638-55.681a22.352,22.352,0,0,0,2.091-3.122l5.095,4.5a27.433,27.433,0,0,0,3.06-4.8c1.382-2.381,2.774-4.752,4.134-7.146" transform="translate(-332.742 -130.204)" fill="#fff"/>
|
||||
<path id="Path_171" data-name="Path 171" d="M601.978,201.3l5.6.056c1.527.156,3.088.09,4.622.093q3.649.007,7.3.01c8.963.009,17.954-.115,26.914.055.229,21.427-.014,42.864.029,64.293q.023,11.336.014,22.672,0,3.377-.006,6.753a43.811,43.811,0,0,1-.1,4.5,5.888,5.888,0,0,1-1.7,3.387,6.193,6.193,0,0,1-3.51,1.745,29.957,29.957,0,0,1-3.268.051q-2.914,0-5.828,0-9.442,0-18.885,0c-21.95,0-43.916-.167-65.864.04a255.01,255.01,0,0,0-1.426-39.326c-.41-3.268-1.028-6.53-1.566-9.781a20.537,20.537,0,0,0,1.936-2.1c2.657-3.614,3.222-8.089,3.469-12.426l5,6.5a61.9,61.9,0,0,0,5.819,5.155,38.343,38.343,0,0,0,14.853,6.543c1.6.345,3.233.487,4.845.772l.576,1.008a7.446,7.446,0,0,0,1.179,1.311c-1.873,2.476-3.823,4.894-5.759,7.322-1.153,1.445-2.852,3.178-3.61,4.858l-.08.187a3.373,3.373,0,0,0-.285,1.452,4.2,4.2,0,0,0,1.338,3.222,4.572,4.572,0,0,0,3.417,1.334,5.354,5.354,0,0,0,2.874-.946,11.062,11.062,0,0,0,1.764-1.9c.937-1.146,1.842-2.316,2.753-3.483,1.877-2.406,3.786-4.863,5.84-7.119,2.373.947,4.147,1.827,6.68.749a5.337,5.337,0,0,0,3.172-3.457l-.011,0,.934-.126a3.166,3.166,0,0,0,2.074-1.594,2.826,2.826,0,0,0,.132-2.248c1.147-.314,2.058-.472,2.781-1.526a2.7,2.7,0,0,0,.455-2.178,2.269,2.269,0,0,0-1.211-1.612,1.419,1.419,0,0,1-.574-.454l-.085-.155.178-.15a3.244,3.244,0,0,0,.743-2.629c-.294-1.806-1.935-3.111-3.236-4.239-1-.867-2-1.727-3.052-2.525a19.5,19.5,0,0,1,.872-3.524l1.814,1.834a15.916,15.916,0,0,0,11.521,3.919,16.179,16.179,0,0,0,9.912-4.205c1.071-1,1.98-2.181,2.957-3.272l-.4-.405c-.344-.07-.453-.15-.746.09a14.985,14.985,0,0,0-1.293,1.665,16.661,16.661,0,0,1-5.386,3.961l-.09-.328a2.376,2.376,0,0,0-.617-1.391,2.148,2.148,0,0,0-.791-.132c-1.012.072-2.034.459-3.051.593-.822.108-1.647,0-2.463.154-.629.543-.66,1.551-.787,2.331a18.364,18.364,0,0,1-5.976-2.135,15.613,15.613,0,0,1-7.021-9.855,15.3,15.3,0,0,1,1.99-11.244,15.841,15.841,0,0,1,10.224-6.978l.834,5.326c-1.766,1.35-3.51,2.811-5.324,4.085-.682.479-1.567.281-2.1.965a1.745,1.745,0,0,0-.152.971,18.345,18.345,0,0,0,1.637,3.282c.759,1.549,1.461,3.128,2.173,4.7-.635.715-1.177,1.517-1.765,2.271a6.079,6.079,0,0,0-.97,1.374c-.08.213,0,.248.1.43l.324.072c1.079-.421,2.233-2.443,2.918-3.389,2.346,1.135,4.6,2.652,7.071,3.5,1.189-.576,6.4-4.84,6.945-5.926a1.891,1.891,0,0,0,.141-1.136,17.266,17.266,0,0,0-.79-2.533c-.588-1.8-1.2-3.584-1.748-5.391a12.944,12.944,0,0,1,3.5-1.834,13.562,13.562,0,0,1,1.384-1.846,15.02,15.02,0,0,1,3.759,9.865c-.01.937-.259,1.844-.248,2.775,0,.2.184.283.321.414l.338-.045c.522-.588.509-2.657.518-3.464a15.425,15.425,0,0,0-4.479-10.636,16.662,16.662,0,0,0-11.774-4.948c-4.865-.008-8.992,2.284-12.367,5.658a31.289,31.289,0,0,1-.094-4.852l-36.211-.015c-.957-1.7-1.8-3.46-2.821-5.128a56.02,56.02,0,0,0-7.627-9.546c11.222-.172,22.465-.023,33.689-.026q4.678,0,9.356-.009a45.008,45.008,0,0,0,5.553-.13" transform="translate(-397.497 -146.559)" fill="#fff"/>
|
||||
<path id="Path_172" data-name="Path 172" d="M653.663,345.147a38.176,38.176,0,0,1,.18,5.4q.028,4.323.051,8.647.083,12.017.08,24.033,0,2.9,0,5.8a16.325,16.325,0,0,1-.209,4.008l-.052.211a6.038,6.038,0,0,1-2.7,3.628,6.194,6.194,0,0,1-2.954.881c-4.083.226-8.255.082-12.348.078q-10.618-.011-21.237,0-9.467.007-18.934,0-2.914,0-5.828-.009a13.93,13.93,0,0,1-3.694-.251,5.8,5.8,0,0,1-3.4-2.669,6.3,6.3,0,0,1-.749-2.547c-.109-1.477.01-3.034.028-4.517.034-2.645.038-5.29.041-7.936.012-9.025-.027-18.051.153-27.075a61.879,61.879,0,0,0,5.819,5.155,38.341,38.341,0,0,0,14.853,6.544c1.6.345,3.233.486,4.845.772l.575,1.007a7.45,7.45,0,0,0,1.179,1.311c-1.873,2.476-3.823,4.894-5.758,7.322-1.153,1.446-2.852,3.179-3.61,4.858l-.079.187a3.371,3.371,0,0,0-.285,1.452,4.2,4.2,0,0,0,1.338,3.222,4.575,4.575,0,0,0,3.417,1.333,5.355,5.355,0,0,0,2.874-.945,11.067,11.067,0,0,0,1.764-1.9c.937-1.146,1.842-2.316,2.753-3.483,1.878-2.406,3.786-4.863,5.84-7.119,2.372.947,4.147,1.827,6.68.749a5.337,5.337,0,0,0,3.172-3.457l-.011,0,.934-.127a3.165,3.165,0,0,0,2.074-1.594,2.826,2.826,0,0,0,.132-2.248c1.147-.314,2.058-.472,2.781-1.526a2.694,2.694,0,0,0,.455-2.178,2.268,2.268,0,0,0-1.211-1.612,1.421,1.421,0,0,1-.574-.454l-.085-.155.178-.15a3.245,3.245,0,0,0,.743-2.63c-.294-1.806-1.935-3.11-3.236-4.238-1-.867-2-1.727-3.052-2.526a19.513,19.513,0,0,1,.872-3.524l1.814,1.834a15.916,15.916,0,0,0,11.521,3.918,16.177,16.177,0,0,0,9.912-4.2c1.071-1,1.98-2.181,2.957-3.272" transform="translate(-424.864 -251.503)" fill="#fb4b57"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 36 KiB |
9
news-app/assets/images/svgImage/news.svg
Normal file
@@ -0,0 +1,9 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="1240" height="391" viewBox="0 0 1240 391">
|
||||
<g id="news" transform="translate(-2250 23412)">
|
||||
<rect id="news-2" data-name="news" width="1240" height="391" transform="translate(2250 -23412)" fill="none"/>
|
||||
<path id="Path_14599" data-name="Path 14599" d="M118.682,55.824c-.07,95.341-.472,190.8.652,286.253a1.34,1.34,0,0,0,1.114,1.294l30.777,5.379a.606.606,0,0,1,.552.662V388.6a.5.5,0,0,1-.5.5H43.36a.863.863,0,0,1-.853-.723l-6.573-38.935a.521.521,0,0,1,.462-.682l34.419-7.074a.537.537,0,0,0,.432-.522V47.374a.552.552,0,0,0-.552-.612L38.042,43.521a.452.452,0,0,1-.411-.452V1a.5.5,0,0,1,.5-.5H154.727a.8.8,0,0,1,.733.482L296.117,333.105a.211.211,0,0,0,.411-.08V47.154a.381.381,0,0,0-.331-.381L262.239,42.4a.607.607,0,0,1-.582-.672V1a.5.5,0,0,1,.5-.5H372.241a.489.489,0,0,1,.532.452L379.867,41.9a.907.907,0,0,1-.823,1.194l-34.63,6.462a.531.531,0,0,0-.472.582V388.6a.5.5,0,0,1-.5.5H260.885a.341.341,0,0,1-.311-.2L119.163,55.723a.251.251,0,0,0-.482.1Z" transform="translate(2229.958 -23412.502)" fill="#fff"/>
|
||||
<path id="Path_14600" data-name="Path 14600" d="M840.454,191.233,789.2,390.153a.607.607,0,0,1-.582.452H722.6a.848.848,0,0,1-.823-.662l-50.284-234.1a.7.7,0,0,0-.682-.552H647.214a.548.548,0,0,1-.612-.542l-3.873-34.038a.435.435,0,0,1,.462-.542l73.575-5.549a.946.946,0,0,1,1.114.833L761.23,328.4a.194.194,0,0,0,.193.161.219.219,0,0,0,.208-.161l52.3-205.944a.707.707,0,0,1,.682-.532h60.309a.791.791,0,0,1,.843.642l56.777,206.516a.211.211,0,0,0,.411,0l42.718-173.12q.171-.672-.522-.672H951.088a.461.461,0,0,1-.512-.462l-3.813-33.707a.8.8,0,0,1,.823-1l61.172-4.957a.847.847,0,0,1,.833.421l11.8,18.775a1.394,1.394,0,0,1,.181,1.1L960.581,390.053a.653.653,0,0,1-.7.552H894.09a.321.321,0,0,1-.311-.241L840.8,191.233a.181.181,0,0,0-.341,0Z" transform="translate(2229.958 -23412.502)" fill="#fff"/>
|
||||
<path id="Path_14601" data-name="Path 14601" d="M466.889,286.152c6.1,35.794,32.5,60.821,69.21,62.647,25.288,1.264,49.522-5.68,69.551-21.484a.241.241,0,0,1,.381.11L618.083,365.8a1.37,1.37,0,0,1-.462,1.5c-13.818,10.938-32.663,17.079-49.672,20.712q-45.919,9.794-87.624-7.847c-60.911-25.779-76.315-93.023-68.367-152.559,6.864-51.388,41.574-98.783,94.548-109.49,65.768-13.3,132.1,26.211,108.717,102.235-17.1,55.613-100.248,65.437-147.712,65.076a.622.622,0,0,0-.622.733Zm69.22-127.311c-49.251-3.241-69.451,43.39-72.2,84.112a.677.677,0,0,0,.753.823,283.349,283.349,0,0,0,39.186-2.228c27.084-3.462,65.086-16.347,62.376-50.264C564.778,173.281,555.436,160.115,536.109,158.841Z" transform="translate(2229.958 -23412.502)" fill="#fff"/>
|
||||
<path id="Path_14602" data-name="Path 14602" d="M1121.107,342.969q19.317,8.409,41.153,3.412c32.141-7.355,32.934-46.11,4.054-58.824q-16.035-7.064-43.069-19.518c-15.253-7.024-32.342-16.577-43.37-28.71-16.066-17.661-20.933-42.106-16.367-65.417,5.83-29.854,34.51-49.582,62.848-55.583,47.926-10.145,94.076,9.081,117.748,52.643a.512.512,0,0,1-.271.722l-56.717,21.7a.479.479,0,0,1-.682-.281l-12.4-27.535a2.084,2.084,0,0,0-1-1.024c-15.855-7.626-35.995-7.727-49.682,4.486-9.543,8.52-10.015,24.886-3.01,34.921q3.242,4.646,10.938,9.643c17.5,11.369,42.568,20.541,56.536,27.024,38.885,18.023,60.931,49.462,50.4,93.5-7.165,29.984-35.594,48.348-63.861,54.348q-42.487,9-81.111-10.105c-19.578-9.684-36.727-24.8-44.163-45.849a.47.47,0,0,1,.311-.672l57.329-21.7a.366.366,0,0,1,.472.2l13.166,31.84A1.377,1.377,0,0,0,1121.107,342.969Z" transform="translate(2229.958 -23412.502)" fill="#fff"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 3.4 KiB |
262
news-app/assets/images/svgImage/onboarding1.svg
Normal file
@@ -0,0 +1,262 @@
|
||||
<svg id="Component_56_1" data-name="Component 56 – 1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="247.671" height="246.787" viewBox="0 0 247.671 246.787">
|
||||
<defs>
|
||||
<clipPath id="clip-path">
|
||||
<rect id="Rectangle_1124" data-name="Rectangle 1124" width="48.476" height="9.167" fill="none"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-path-2">
|
||||
<rect id="Rectangle_1125" data-name="Rectangle 1125" width="33.83" height="20.476" fill="none"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-path-3">
|
||||
<rect id="Rectangle_1126" data-name="Rectangle 1126" width="33.83" height="11.715" fill="none"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-path-4">
|
||||
<rect id="Rectangle_1127" data-name="Rectangle 1127" width="20.48" height="22.954" fill="none"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-path-5">
|
||||
<rect id="Rectangle_1128" data-name="Rectangle 1128" width="32.589" height="18.217" fill="none"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-path-6">
|
||||
<rect id="Rectangle_1129" data-name="Rectangle 1129" width="24.079" height="24.741" fill="none"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-path-8">
|
||||
<rect id="Rectangle_1131" data-name="Rectangle 1131" width="2.837" height="1.369" fill="none"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-path-9">
|
||||
<rect id="Rectangle_1132" data-name="Rectangle 1132" width="150.784" height="154.941" fill="none"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-path-10">
|
||||
<rect id="Rectangle_1133" data-name="Rectangle 1133" width="7.035" height="17.635" fill="none"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-path-11">
|
||||
<rect id="Rectangle_1134" data-name="Rectangle 1134" width="74.768" height="39.191" fill="none"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-path-12">
|
||||
<rect id="Rectangle_1135" data-name="Rectangle 1135" width="23.015" height="29.283" fill="none"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
<g id="image_1" data-name="image 1" transform="translate(0)">
|
||||
<path id="Path_18763" data-name="Path 18763" d="M241.21,282.44,99.352,200.56a9.481,9.481,0,0,0-8.547,0L10.67,246.72c-3.19,1.838-3.193,4.855-.007,6.694L151.5,334.707a8.354,8.354,0,0,0,7.541,0l82.166-47.327c2.351-1.356,2.353-3.577,0-4.935" transform="translate(-3.684 -88.817)" fill="#ebebeb"/>
|
||||
<path id="Path_18764" data-name="Path 18764" d="M112.18,405.323l-36.962-7.8L63.7,406.693Z" transform="translate(-28.355 -176.94)" fill="#ee2934"/>
|
||||
<g id="Group_17590" data-name="Group 17590" transform="translate(35.349 220.586)" opacity="0.15">
|
||||
<g id="Group_17589" data-name="Group 17589">
|
||||
<g id="Group_17588" data-name="Group 17588" clip-path="url(#clip-path)">
|
||||
<path id="Path_18765" data-name="Path 18765" d="M112.18,405.323l-36.962-7.8L63.7,406.693Z" transform="translate(-63.704 -397.526)" fill="#fff"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<path id="Path_18766" data-name="Path 18766" d="M123.929,395.152,90.1,383.437l3.218-8.761Z" transform="translate(-40.104 -166.77)" fill="#ee2934"/>
|
||||
<g id="Group_17593" data-name="Group 17593" transform="translate(49.996 207.907)" opacity="0.15">
|
||||
<g id="Group_17592" data-name="Group 17592">
|
||||
<g id="Group_17591" data-name="Group 17591" clip-path="url(#clip-path-2)">
|
||||
<path id="Path_18767" data-name="Path 18767" d="M123.929,395.152,90.1,383.437l3.218-8.761Z" transform="translate(-90.1 -374.676)" fill="#fff"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<path id="Path_18768" data-name="Path 18768" d="M90.1,390.465l1.883,4.976,31.946,6.739Z" transform="translate(-40.104 -173.797)"/>
|
||||
<g id="Group_17596" data-name="Group 17596" transform="translate(49.996 216.667)" opacity="0.72">
|
||||
<g id="Group_17595" data-name="Group 17595">
|
||||
<g id="Group_17594" data-name="Group 17594" clip-path="url(#clip-path-3)">
|
||||
<path id="Path_18769" data-name="Path 18769" d="M90.1,390.465l1.883,4.976,31.946,6.739Z" transform="translate(-90.099 -390.465)" fill="#ee2934"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<path id="Path_18770" data-name="Path 18770" d="M81.638,390.541a.317.317,0,0,0,.2-.131.4.4,0,0,0-.067-.521c-.269-.233-.535-.467-.8-.7a.31.31,0,0,0-.471.047.4.4,0,0,0,.06.521q.4.357.807.71a.32.32,0,0,0,.272.077" transform="translate(-35.799 -173.19)" fill="#455a64"/>
|
||||
<path id="Path_18771" data-name="Path 18771" d="M63.556,345.828q-.757-.75-1.484-1.52a.4.4,0,0,1-.019-.524.316.316,0,0,1,.475,0q.718.762,1.467,1.5a.4.4,0,0,1,.035.523.309.309,0,0,1-.183.112.323.323,0,0,1-.29-.093m-3.85-4.178q-.691-.826-1.346-1.672a.392.392,0,0,1,.031-.52.317.317,0,0,1,.474.053q.647.835,1.328,1.648a.4.4,0,0,1-.011.523.314.314,0,0,1-.161.087.329.329,0,0,1-.314-.119m-3.451-4.584c-.4-.6-.8-1.214-1.172-1.823a.388.388,0,0,1,.085-.511.324.324,0,0,1,.468.114c.367.6.756,1.2,1.154,1.8a.389.389,0,0,1-.064.515.3.3,0,0,1-.133.062.333.333,0,0,1-.338-.152M53.3,332.085c-.337-.651-.659-1.312-.958-1.964a.376.376,0,0,1,.144-.492.331.331,0,0,1,.452.178c.295.64.611,1.29.943,1.93a.38.38,0,0,1-.122.5.315.315,0,0,1-.1.038.341.341,0,0,1-.362-.191m-2.358-5.337c-.252-.681-.492-1.381-.713-2.079a.365.365,0,0,1,.2-.463.347.347,0,0,1,.428.244c.218.685.453,1.373.7,2.041a.371.371,0,0,1-.183.476.3.3,0,0,1-.058.018.347.347,0,0,1-.381-.237m-1.683-5.616q-.195-.838-.361-1.69l-.088-.466a.353.353,0,0,1,.258-.423h0a.355.355,0,0,1,.4.306l.086.456q.164.837.356,1.662a.357.357,0,0,1-.241.44l-.013,0a.352.352,0,0,1-.4-.286m-.6-5.446a.363.363,0,0,1-.373-.34c-.078-.724-.141-1.461-.187-2.191a.342.342,0,0,1,.312-.381.367.367,0,0,1,.358.358c.046.719.108,1.444.184,2.155a.35.35,0,0,1-.262.393.21.21,0,0,1-.032,0m-.326-5.8A.373.373,0,0,1,48,309.5c.008-.727.037-1.464.084-2.189a.331.331,0,0,1,.359-.327.379.379,0,0,1,.312.408c-.047.711-.074,1.434-.083,2.147a.344.344,0,0,1-.265.346.309.309,0,0,1-.075,0m.427-5.754a.385.385,0,0,1-.275-.438c.112-.711.244-1.43.394-2.135a.324.324,0,0,1,.4-.26.39.39,0,0,1,.252.454c-.148.692-.277,1.4-.387,2.093a.337.337,0,0,1-.26.289.3.3,0,0,1-.128,0M50,298.558a.394.394,0,0,1-.21-.478c.213-.683.447-1.365.7-2.028a.316.316,0,0,1,.438-.185.4.4,0,0,1,.185.49c-.245.65-.474,1.318-.684,1.987a.329.329,0,0,1-.247.232.306.306,0,0,1-.179-.019" transform="translate(-21.364 -131.677)" fill="#1b2d51"/>
|
||||
<path id="Path_18772" data-name="Path 18772" d="M401.617,179.244l-20.481-20.488,11.971,22.954Z" transform="translate(-169.645 -70.663)" fill="#ee2934"/>
|
||||
<g id="Group_17599" data-name="Group 17599" transform="translate(211.492 88.093)" opacity="0.15">
|
||||
<g id="Group_17598" data-name="Group 17598">
|
||||
<g id="Group_17597" data-name="Group 17597" clip-path="url(#clip-path-4)">
|
||||
<path id="Path_18773" data-name="Path 18773" d="M401.617,179.244l-20.481-20.488,11.971,22.954Z" transform="translate(-381.137 -158.755)" fill="#fff"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<path id="Path_18774" data-name="Path 18774" d="M381.136,158.755l24.08,18.217,8.509-2.465Z" transform="translate(-169.645 -70.663)" fill="#ee2934"/>
|
||||
<g id="Group_17602" data-name="Group 17602" transform="translate(211.492 88.093)" opacity="0.15">
|
||||
<g id="Group_17601" data-name="Group 17601">
|
||||
<g id="Group_17600" data-name="Group 17600" clip-path="url(#clip-path-5)">
|
||||
<path id="Path_18775" data-name="Path 18775" d="M381.136,158.755l24.08,18.217,8.509-2.465Z" transform="translate(-381.137 -158.755)" fill="#fff"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<path id="Path_18776" data-name="Path 18776" d="M405.216,176.972l-3.431,6.524-.168-4.253-20.481-20.488Z" transform="translate(-169.645 -70.662)" fill="#020202"/>
|
||||
<g id="Group_17605" data-name="Group 17605" transform="translate(211.492 88.093)" opacity="0.95">
|
||||
<g id="Group_17604" data-name="Group 17604">
|
||||
<g id="Group_17603" data-name="Group 17603" clip-path="url(#clip-path-6)">
|
||||
<path id="Path_18777" data-name="Path 18777" d="M405.216,176.972l-3.431,6.524-.168-4.253-20.481-20.488Z" transform="translate(-381.137 -158.755)" fill="#ee2934"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Group_17608" data-name="Group 17608" transform="translate(211.492 88.093)" opacity="0.2">
|
||||
<g id="Group_17607" data-name="Group 17607">
|
||||
<g id="Group_17606" data-name="Group 17606" clip-path="url(#clip-path-6)">
|
||||
<path id="Path_18778" data-name="Path 18778" d="M405.216,176.972l-3.431,6.524-.168-4.253-20.481-20.488Z" transform="translate(-381.137 -158.755)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<path id="Path_18779" data-name="Path 18779" d="M415.938,199.931l-3-3.431,2.837-.822Z" transform="translate(-183.798 -87.097)" fill="#ee2934"/>
|
||||
<g id="Group_17611" data-name="Group 17611" transform="translate(229.135 108.581)" opacity="0.2">
|
||||
<g id="Group_17610" data-name="Group 17610">
|
||||
<g id="Group_17609" data-name="Group 17609" clip-path="url(#clip-path-8)">
|
||||
<path id="Path_18780" data-name="Path 18780" d="M415.77,195.678l-2.837.822.479.547Z" transform="translate(-412.933 -195.678)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<path id="Path_18781" data-name="Path 18781" d="M425.526,201.34a.3.3,0,0,0-.208.084.378.378,0,0,0-.035.495q.308.4.609.8a.294.294,0,0,0,.445.045.377.377,0,0,0,.041-.493q-.3-.405-.614-.808a.3.3,0,0,0-.238-.122" transform="translate(-189.261 -89.617)" fill="#1b2d51"/>
|
||||
<path id="Path_18782" data-name="Path 18782" d="M430.33,207.8q.561.836,1.089,1.685a.376.376,0,0,1-.081.488.3.3,0,0,1-.44-.088q-.522-.839-1.076-1.666a.376.376,0,0,1,.065-.491.3.3,0,0,1,.191-.069.305.305,0,0,1,.251.141m2.782,4.59q.484.893.933,1.8a.37.37,0,0,1-.125.476.3.3,0,0,1-.429-.138q-.442-.894-.921-1.775a.374.374,0,0,1,.108-.482.29.29,0,0,1,.166-.05.31.31,0,0,1,.269.169m2.337,4.89c.262.632.512,1.273.744,1.908a.366.366,0,0,1-.174.457.307.307,0,0,1-.412-.193c-.228-.624-.474-1.256-.731-1.878a.368.368,0,0,1,.155-.465.28.28,0,0,1,.134-.033.315.315,0,0,1,.285.2m1.8,5.164c.19.666.365,1.338.52,2a.356.356,0,0,1-.226.428.313.313,0,0,1-.386-.25c-.153-.648-.325-1.309-.511-1.964a.36.36,0,0,1,.206-.441.289.289,0,0,1,.1-.017.322.322,0,0,1,.3.245m1.183,5.383c.106.678.2,1.371.271,2.058a.345.345,0,0,1-.276.39.328.328,0,0,1-.351-.306c-.073-.675-.163-1.355-.267-2.021a.35.35,0,0,1,.258-.406.286.286,0,0,1,.057-.006.328.328,0,0,1,.308.291m.507,5.514q.023.813.018,1.633l-.006.448a.334.334,0,0,1-.318.343h0a.336.336,0,0,1-.309-.357l.006-.438q.005-.806-.018-1.605a.338.338,0,0,1,.306-.362h.013a.333.333,0,0,1,.314.339m-.461,5.156a.343.343,0,0,1,.282.384c-.064.685-.144,1.379-.237,2.064a.323.323,0,0,1-.36.295.347.347,0,0,1-.265-.4c.093-.674.171-1.357.234-2.03a.33.33,0,0,1,.316-.315.186.186,0,0,1,.03,0m-.785,5.429a.352.352,0,0,1,.234.422c-.144.673-.309,1.349-.488,2.012a.313.313,0,0,1-.394.236.358.358,0,0,1-.212-.437c.176-.65.337-1.313.479-1.972a.325.325,0,0,1,.31-.27.286.286,0,0,1,.071.01m-1.473,5.247a.365.365,0,0,1,.173.457c-.236.638-.494,1.278-.765,1.9a.307.307,0,0,1-.422.165.369.369,0,0,1-.148-.468c.266-.613.519-1.24.75-1.866a.319.319,0,0,1,.3-.218.3.3,0,0,1,.118.026m-2.195,4.93a.372.372,0,0,1,.1.482c-.325.592-.67,1.179-1.025,1.747a.3.3,0,0,1-.44.089.376.376,0,0,1-.079-.488c.348-.557.686-1.132,1-1.712a.311.311,0,0,1,.272-.168.291.291,0,0,1,.162.051" transform="translate(-191.288 -92.429)" fill="#1b2d51"/>
|
||||
<path id="Path_18783" data-name="Path 18783" d="M94.254,116.1,238.5,229.406c3.621,2.844,3.206,5.859,2.874,8.564s-1.839,6.405-4.932,8.191L157.25,291.883c-3.093,1.786-7.725,1.565-10.346-.493L2.657,178.081c-2.62-2.058-2.874-5.311-2.541-8.016s1.507-6.954,4.6-8.74L83.908,115.6c3.093-1.786,6.7-2.372,10.346.494" transform="translate(0 -50.789)" fill="#37474f"/>
|
||||
<path id="Path_18784" data-name="Path 18784" d="M90.018,119.633,8.585,166.649,153.454,280.412,151.9,293.076a8.853,8.853,0,0,1-4.995-1.689L2.657,178.078C.037,176.02-.217,172.768.115,170.062s1.507-6.954,4.6-8.74L83.908,115.6a9.186,9.186,0,0,1,6.765-1.3l-.048.392Z" transform="translate(0 -50.787)" fill="#263238"/>
|
||||
<path id="Path_18785" data-name="Path 18785" d="M240.9,231.248,96.9,118.131a7.964,7.964,0,0,0-8.227-.392l-77.3,44.634c-3.324,1.916-3.743,5.3-.929,7.509l143.1,112.411a7.017,7.017,0,0,0,7.259.341l79.42-45.851c2.45-1.413,2.758-3.9.68-5.536" transform="translate(-3.815 -51.981)" fill="#455a64"/>
|
||||
<path id="Path_18786" data-name="Path 18786" d="M71.066,266.086a4.894,4.894,0,0,1,1.554,4.041,1.705,1.705,0,0,1-.732,1.358c-.265.146-1.271.749-1.547.9a1.29,1.29,0,0,1-1.447-.266l-11.466-9.007a4.892,4.892,0,0,1-1.554-4.041,1.755,1.755,0,0,1,.681-1.329c.275-.173,1.32-.776,1.594-.929a1.288,1.288,0,0,1,1.449.264Z" transform="translate(-24.858 -114.254)" fill="#455a64"/>
|
||||
<path id="Path_18787" data-name="Path 18787" d="M69.528,267.689l-11.466-9.007c-1.033-.811-2.011-.316-2.185,1.1a4.893,4.893,0,0,0,1.553,4.041L68.9,272.834c1.033.811,2.011.317,2.186-1.1a4.895,4.895,0,0,0-1.554-4.041" transform="translate(-24.859 -114.967)" fill="#37474f"/>
|
||||
<path id="Path_18788" data-name="Path 18788" d="M34.9,237.679a4.893,4.893,0,0,1,1.554,4.041,1.705,1.705,0,0,1-.732,1.358c-.265.146-1.271.749-1.547.9a1.29,1.29,0,0,1-1.447-.266l-11.466-9.007a4.891,4.891,0,0,1-1.554-4.041,1.755,1.755,0,0,1,.681-1.329c.275-.173,1.32-.776,1.594-.929a1.288,1.288,0,0,1,1.449.264Z" transform="translate(-8.761 -101.61)" fill="#455a64"/>
|
||||
<path id="Path_18789" data-name="Path 18789" d="M33.361,239.282l-11.466-9.007c-1.033-.811-2.011-.316-2.186,1.1a4.9,4.9,0,0,0,1.554,4.041l11.466,9.006c1.032.811,2.011.317,2.186-1.1a4.895,4.895,0,0,0-1.554-4.041" transform="translate(-8.761 -102.323)" fill="#37474f"/>
|
||||
<path id="Path_18790" data-name="Path 18790" d="M106.194,129.1,240.663,234.726c1.986,1.56,1.7,3.935-.642,5.28l-71.854,41.486a7.54,7.54,0,0,1-7.838-.372L24.9,174.735a2.817,2.817,0,0,1-.454-4.417c.1-.1.2-.207.306-.308a5.772,5.772,0,0,1,.8-.552l20.21-11.669s.588-.342,1.318-.76a2.34,2.34,0,0,1,2.433.115,2.437,2.437,0,0,0,2.524.063l23.555-13.6c.771-.447.909-1.2.3-1.687a.912.912,0,0,1,.062-1.561,1.364,1.364,0,0,1,.132-.082l19.773-11.411.42-.245c2.961-1.708,7.422-1.494,9.927.473" transform="translate(-10.493 -56.737)"/>
|
||||
<path id="Path_18791" data-name="Path 18791" d="M49.413,163.006a2.34,2.34,0,0,0-2.433-.115c-.73.417-1.318.76-1.318.76L25.451,175.32a5.812,5.812,0,0,0-.8.552c-.108.1-.2.2-.306.308-.034.035-.055.074-.087.109a3.769,3.769,0,0,0,.941,1.055L160.635,283.729a7.541,7.541,0,0,0,7.838.372l71.854-41.486a4.616,4.616,0,0,0,1.186-.958,3.72,3.72,0,0,0-.944-1.07L106.1,134.958c-2.505-1.968-6.966-2.181-9.927-.473l-.42.245L76.5,145.842s-.3,2.466-.336,2.758a1.246,1.246,0,0,1-.674.872l-23.555,13.6a2.437,2.437,0,0,1-2.524-.063" transform="translate(-10.799 -59.346)" fill="#ebebeb"/>
|
||||
<path id="Path_18792" data-name="Path 18792" d="M59.187,205.393a.163.163,0,0,1-.089-.047l-.287-.264-.9.517a.1.1,0,0,1-.135-.014l-.1-.094a.208.208,0,0,1-.046-.055.239.239,0,0,1-.015-.06l-.075-1.494a.126.126,0,0,1,.008-.061.121.121,0,0,1,.052-.045l.124-.072a.165.165,0,0,1,.1-.027.179.179,0,0,1,.1.05l1,.922.2-.114a.158.158,0,0,1,.1-.026.184.184,0,0,1,.093.05l.068.063c.031.028.044.052.042.073s-.021.043-.059.064l-.2.114.287.264c.031.028.044.053.042.074s-.024.044-.063.067l-.151.087a.171.171,0,0,1-.1.028m-.562-.569-.715-.658.064,1.033Z" transform="translate(-25.612 -90.657)" fill="#1b2d51"/>
|
||||
<path id="Path_18793" data-name="Path 18793" d="M61.051,203.688a1.658,1.658,0,0,1-.926-.457.965.965,0,0,1-.4-.761.867.867,0,0,1,.509-.642,1.882,1.882,0,0,1,.395-.175,1.334,1.334,0,0,1,.377-.068.08.08,0,0,1,.058.016.075.075,0,0,1,.019.034l.044.163c0,.02,0,.034-.011.04a.2.2,0,0,1-.049.01,1.3,1.3,0,0,0-.554.176.59.59,0,0,0-.345.442.737.737,0,0,0,.309.559,1.248,1.248,0,0,0,.672.351,1,1,0,0,0,.65-.134,1.343,1.343,0,0,0,.2-.142.576.576,0,0,0,.129-.144l-.466-.428-.373.215a.151.151,0,0,1-.1.026.173.173,0,0,1-.092-.05l-.065-.06c-.032-.029-.047-.054-.043-.074s.022-.041.059-.063l.6-.345a.177.177,0,0,1,.116-.027.213.213,0,0,1,.109.06l.665.611a.207.207,0,0,1,.048.057.06.06,0,0,1,0,.052,1.224,1.224,0,0,1-.561.543,1.535,1.535,0,0,1-.975.216" transform="translate(-26.584 -89.727)" fill="#1b2d51"/>
|
||||
<path id="Path_18794" data-name="Path 18794" d="M74.587,197.2a.4.4,0,0,1-.119.669.83.83,0,0,1-.921-.068.4.4,0,0,1,.118-.669.832.832,0,0,1,.922.069" transform="translate(-32.675 -87.697)" fill="#1b2d51"/>
|
||||
<path id="Path_18795" data-name="Path 18795" d="M72.146,195.906a1.133,1.133,0,0,0-.65,1.213.244.244,0,0,0,.254.15h0c.158,0,.281-.107.255-.219a.792.792,0,0,1,.454-.855,1.611,1.611,0,0,1,1.247-.128.288.288,0,0,0,.352-.131h0c.031-.088-.03-.179-.144-.214a2.3,2.3,0,0,0-1.77.184" transform="translate(-31.813 -87.073)" fill="#1b2d51"/>
|
||||
<path id="Path_18796" data-name="Path 18796" d="M70.662,194.706a1.868,1.868,0,0,0-1.07,1.8.234.234,0,0,0,.255.17h0c.154,0,.272-.1.257-.21a1.514,1.514,0,0,1,.87-1.467,3.01,3.01,0,0,1,2.161-.283.286.286,0,0,0,.338-.134c.033-.1-.042-.189-.169-.22a3.692,3.692,0,0,0-2.646.347" transform="translate(-30.971 -86.464)" fill="#1b2d51"/>
|
||||
<path id="Path_18797" data-name="Path 18797" d="M42.614,216.57l-.553-.508.956-.552.553.508Z" transform="translate(-18.721 -95.924)" fill="#1b2d51"/>
|
||||
<path id="Path_18798" data-name="Path 18798" d="M44.755,214.67l-1.106-1.017.956-.552,1.106,1.017Z" transform="translate(-19.428 -94.852)" fill="#1b2d51"/>
|
||||
<path id="Path_18799" data-name="Path 18799" d="M46.9,212.77l-1.66-1.525.956-.552,1.66,1.525Z" transform="translate(-20.135 -93.78)" fill="#1b2d51"/>
|
||||
<path id="Path_18800" data-name="Path 18800" d="M49.036,210.869l-2.213-2.034.957-.552,2.212,2.034Z" transform="translate(-20.841 -92.708)" fill="#1b2d51"/>
|
||||
<path id="Path_18801" data-name="Path 18801" d="M152.317,147.557a.771.771,0,0,0-.515.058l-3.575,2.058c-.232.134-.227.409.011.628l1.005.924a1.059,1.059,0,0,0,.521.246,1.031,1.031,0,0,0,.251.016.61.61,0,0,0,.264-.074l3.575-2.058c.231-.134.227-.41-.012-.628l-1.005-.924a1.055,1.055,0,0,0-.52-.246m-2.555,3.764a.457.457,0,0,1-.221-.117l-1.006-.924c-.175-.161-.179-.381-.008-.478l3.575-2.058a.326.326,0,0,1,.138-.042.321.321,0,0,1,.08,0,.46.46,0,0,1,.221.117l1.005.924c.176.161.18.381.009.479l-3.575,2.058a.318.318,0,0,1-.219.037" transform="translate(-65.9 -65.67)" fill="#1b2d51"/>
|
||||
<path id="Path_18802" data-name="Path 18802" d="M150.019,151.2l1.19,1.094-.562.323a.2.2,0,0,1-.172.006l-.885-.813c-.127-.117-.129-.283-.008-.356Z" transform="translate(-66.539 -67.3)" fill="#1b2d51"/>
|
||||
<path id="Path_18803" data-name="Path 18803" d="M150.915,150.623l.669-.388,1.19,1.094-.673.386Z" transform="translate(-67.173 -66.87)" fill="#1b2d51"/>
|
||||
<path id="Path_18804" data-name="Path 18804" d="M152.595,149.658l.669-.388,1.193,1.1-.673.385Z" transform="translate(-67.92 -66.44)" fill="#1b2d51"/>
|
||||
<path id="Path_18805" data-name="Path 18805" d="M155.023,148.418l.857.788c.158.145.084.334-.189.492l-.226.13-1.19-1.094.534-.308a.244.244,0,0,1,.214-.008" transform="translate(-68.668 -66.052)" fill="#1b2d51"/>
|
||||
<path id="Path_18806" data-name="Path 18806" d="M156.783,147.874c.1-.058.345.049.552.239l.187.171c.206.19.3.395.2.457l-.173.113-.946-.876.178-.1" transform="translate(-69.706 -65.813)" fill="#1b2d51"/>
|
||||
<path id="Path_18807" data-name="Path 18807" d="M139.055,156.557l2.932-2.5.883,2.414-1.594-.708Z" transform="translate(-61.894 -68.571)" fill="#1b2d51"/>
|
||||
<path id="Path_18808" data-name="Path 18808" d="M74.08,166.814l10.8-6.234a2.024,2.024,0,0,1,2.094.055c.512.4.4,1.029-.239,1.4l-10.8,6.234a2.023,2.023,0,0,1-2.093-.055c-.512-.4-.405-1.03.239-1.4" transform="translate(-32.723 -71.357)" fill="#263238"/>
|
||||
<path id="Path_18809" data-name="Path 18809" d="M102.809,154.268a2.344,2.344,0,0,1,2.427.116.925.925,0,0,1-.2,1.633,2.341,2.341,0,0,1-2.427-.115.925.925,0,0,1,.2-1.634" transform="translate(-45.49 -68.54)" fill="#263238"/>
|
||||
<path id="Path_18810" data-name="Path 18810" d="M127.455,189.953l-.012.007-1.275-1a1.614,1.614,0,0,0-1.665-.161l-1.564.9a.637.637,0,0,0-.018,1.133l1.275,1-.012.007a.487.487,0,0,0-.014.865l2.572,2.02a1.231,1.231,0,0,0,1.272.123l3.271-1.889a.486.486,0,0,0,.014-.865l-2.572-2.02a1.23,1.23,0,0,0-1.271-.123m-4.172.671a.362.362,0,0,1,.011-.644l1.564-.9a.919.919,0,0,1,.947.091l1.275,1-2.521,1.456Z" transform="translate(-54.563 -83.962)" fill="#1b2d51"/>
|
||||
<path id="Path_18811" data-name="Path 18811" d="M135.574,241.964c.277.218.251.42-.075.608l-.422.244a.746.746,0,0,1-.9-.043l-11.224-8.817-1.382,4.339c-.1.283-.357.4-.764.338l-.509-.065a.73.73,0,0,1-.421-.18.3.3,0,0,1-.073-.33l1.646-5.161a.582.582,0,0,1,.176-.255,2.107,2.107,0,0,1,.271-.182l.422-.244a.747.747,0,0,1,.9.043Z" transform="translate(-53.313 -103.302)" fill="#1b2d51"/>
|
||||
<path id="Path_18812" data-name="Path 18812" d="M136.539,228.107a4.489,4.489,0,0,1-1.026-1.23,2.875,2.875,0,0,1-.393-1.507,2.983,2.983,0,0,1,.559-1.605,5.325,5.325,0,0,1,1.811-1.547,8.7,8.7,0,0,1,2.476-.994,7.993,7.993,0,0,1,2.3-.174,6.61,6.61,0,0,1,2.047.488,7.27,7.27,0,0,1,1.686.976,3.971,3.971,0,0,1,1.471,1.974,5.559,5.559,0,0,1,.042,2.516l-.719,6.524,7.447-4.3a.778.778,0,0,1,.944.045l.282.222q.415.325-.1.62l-9.115,5.263a.747.747,0,0,1-.9-.043l-.283-.222a.677.677,0,0,1-.245-.36,1.388,1.388,0,0,1,.01-.583l.879-7.155a8.062,8.062,0,0,0,.138-1.286,3.1,3.1,0,0,0-.13-.965,2.257,2.257,0,0,0-.412-.763,4.6,4.6,0,0,0-.711-.68,4.85,4.85,0,0,0-2.822-1.066,5.734,5.734,0,0,0-3.161.85,2.838,2.838,0,0,0-1.657,1.97,2.637,2.637,0,0,0,.923,2.149.378.378,0,0,1,.119.381.461.461,0,0,1-.2.254l-.444.257a.684.684,0,0,1-.825-.011" transform="translate(-60.142 -98.38)" fill="#1b2d51"/>
|
||||
<path id="Path_18813" data-name="Path 18813" d="M166.207,221.169a.324.324,0,0,1,.155.32.46.46,0,0,1-.253.3l-1.067.617a.748.748,0,0,1-.9-.043l-.9-.711a.378.378,0,0,1-.176-.321.389.389,0,0,1,.232-.3l1.066-.616a.879.879,0,0,1,.491-.115.775.775,0,0,1,.455.16Zm6.593,5.177a.329.329,0,0,1,.156.321.458.458,0,0,1-.254.3l-1.067.616a.746.746,0,0,1-.9-.043l-.9-.71a.381.381,0,0,1-.178-.322.39.39,0,0,1,.233-.3l1.067-.616a.885.885,0,0,1,.49-.114.777.777,0,0,1,.456.161Z" transform="translate(-72.578 -98.055)" fill="#1b2d51"/>
|
||||
<path id="Path_18814" data-name="Path 18814" d="M172.614,200.386a.78.78,0,0,1,.945.045l.281.222a.383.383,0,0,1,.143.187,1.12,1.12,0,0,1,.038.2l-.039,6.362.445-.257a11.517,11.517,0,0,1,2.3-1.023,8.239,8.239,0,0,1,2.3-.39,6.749,6.749,0,0,1,2.2.321,6.386,6.386,0,0,1,2.013,1.083,3.881,3.881,0,0,1,1.267,1.54,2.474,2.474,0,0,1,.113,1.6,3.767,3.767,0,0,1-.927,1.574,7.847,7.847,0,0,1-1.846,1.427,10.855,10.855,0,0,1-2.5,1.069,10.034,10.034,0,0,1-2.379.386,7.381,7.381,0,0,1-2.072-.2,4.5,4.5,0,0,1-1.586-.714.27.27,0,0,1-.13-.285.459.459,0,0,1,.239-.266l.311-.18a1.213,1.213,0,0,1,.421-.14,1.132,1.132,0,0,1,.614.133,4.482,4.482,0,0,0,1.6.451,6.04,6.04,0,0,0,1.569-.07,7.09,7.09,0,0,0,1.477-.429,11.264,11.264,0,0,0,1.309-.639,6.716,6.716,0,0,0,1.408-1.044,2.727,2.727,0,0,0,.716-1.12,1.677,1.677,0,0,0-.064-1.156,2.888,2.888,0,0,0-.936-1.128,4.294,4.294,0,0,0-2.986-1,7.564,7.564,0,0,0-3.3,1.085l-1.957,1.13a.746.746,0,0,1-.9-.043l-.282-.222a.633.633,0,0,1-.2-.231.714.714,0,0,1-.053-.24l0-6.238-6.714,3.876a.748.748,0,0,1-.9-.043l-.282-.222q-.433-.341.056-.623Z" transform="translate(-73.025 -89.131)" fill="#1b2d51"/>
|
||||
<path id="Path_18815" data-name="Path 18815" d="M205.882,201.372q.414.327-.075.608l-.423.244a.748.748,0,0,1-.9-.043l-11.226-8.817-1.381,4.338c-.1.282-.357.4-.764.339l-.509-.065a.724.724,0,0,1-.421-.181.3.3,0,0,1-.073-.328l1.646-5.161a.577.577,0,0,1,.176-.255,2.134,2.134,0,0,1,.27-.182l.423-.244a.746.746,0,0,1,.9.043Z" transform="translate(-84.608 -85.234)" fill="#1b2d51"/>
|
||||
<path id="Path_18816" data-name="Path 18816" d="M150.8,254.435l57-32.911a4.952,4.952,0,0,1,5.133.245l12.96,10.18c1.3,1.021,1.11,2.568-.424,3.454l-57,32.91a4.951,4.951,0,0,1-5.133-.245l-12.96-10.179c-1.3-1.022-1.11-2.568.424-3.454" transform="translate(-66.547 -98.334)" fill="#fff"/>
|
||||
<path id="Path_18817" data-name="Path 18817" d="M192.882,287.5l57-32.911a4.952,4.952,0,0,1,5.133.245l12.96,10.18c1.3,1.021,1.11,2.567-.424,3.454l-57,32.91a4.95,4.95,0,0,1-5.133-.245l-12.96-10.179c-1.3-1.022-1.11-2.567.424-3.454" transform="translate(-85.279 -113.051)" fill="#fff"/>
|
||||
<path id="Path_18818" data-name="Path 18818" d="M234.966,320.561l57-32.911a4.952,4.952,0,0,1,5.133.245l12.96,10.18c1.3,1.021,1.11,2.568-.424,3.454l-57,32.91a4.952,4.952,0,0,1-5.133-.245l-12.96-10.179c-1.3-1.022-1.11-2.568.425-3.454" transform="translate(-104.011 -127.768)" fill="#fff"/>
|
||||
<path id="Path_18819" data-name="Path 18819" d="M265.968,347.263h-.028a5.64,5.64,0,0,1-3.635-.963l-1.665-1.308a7.233,7.233,0,0,0-7.5-.358h0c-2.241,1.294-2.519,3.552-.619,5.045l1.488,1.169a2.514,2.514,0,0,1,1.038,2.677l.305.7a1.823,1.823,0,0,0,1.889.09l9.48-5.474a.719.719,0,0,0,.156-1.271,1.622,1.622,0,0,0-.912-.309m-1.679,6.127a1.371,1.371,0,0,0,.3-2.422l-3.9,2.25a3.472,3.472,0,0,0,3.6.172" transform="translate(-111.837 -153.008)" fill="#e0e0e0"/>
|
||||
<path id="Path_18820" data-name="Path 18820" d="M223.952,313.423h-.028a5.638,5.638,0,0,1-3.635-.963l-1.665-1.308a7.233,7.233,0,0,0-7.5-.358h0c-2.241,1.294-2.519,3.552-.619,5.045l1.488,1.169a2.515,2.515,0,0,1,1.038,2.677l.305.7a1.823,1.823,0,0,0,1.889.09l9.48-5.474a.719.719,0,0,0,.156-1.271,1.617,1.617,0,0,0-.912-.309m-1.679,6.127a1.371,1.371,0,0,0,.3-2.422l-3.9,2.25a3.472,3.472,0,0,0,3.6.172" transform="translate(-93.136 -137.946)" fill="#e0e0e0"/>
|
||||
<g id="Group_17614" data-name="Group 17614" transform="translate(52.035 70.733)" opacity="0.3">
|
||||
<g id="Group_17613" data-name="Group 17613">
|
||||
<g id="Group_17612" data-name="Group 17612" clip-path="url(#clip-path-9)">
|
||||
<path id="Path_18821" data-name="Path 18821" d="M236.269,197.816,219.1,184.328l-27.458,87.926,17.173,13.488Z" transform="translate(-137.334 -152.778)" fill="#fff"/>
|
||||
<path id="Path_18822" data-name="Path 18822" d="M320.852,270.129l-29.105-22.863-26.565,85.066,2.687,2.11a7.541,7.541,0,0,0,7.839.372l30.432-17.57Z" transform="translate(-170.068 -180.792)" fill="#fff"/>
|
||||
<path id="Path_18823" data-name="Path 18823" d="M132.454,234.674l27.458-87.926L137.44,129.1c-2.505-1.968-6.966-2.181-9.927-.473l-.42.245-11.912,6.875-21.407,68.55Z" transform="translate(-93.774 -127.47)" fill="#fff"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<path id="Path_18824" data-name="Path 18824" d="M310.923,29.663a.675.675,0,0,1,.942-.077l2.379,2.021a.676.676,0,0,1,.077.943l-1.62,1.906a.679.679,0,0,1-.942.077l-2.379-2.021a.676.676,0,0,1-.077-.942Zm8.741-10.288a.677.677,0,0,1,.942-.077l2.379,2.021a.678.678,0,0,1,.077.942L316.148,30.4a.677.677,0,0,1-.942.076l-2.379-2.021a.676.676,0,0,1-.077-.942Z" transform="translate(-137.602 -8.52)" fill="#ee2934"/>
|
||||
<path id="Path_18825" data-name="Path 18825" d="M299.443,13.879a.676.676,0,0,1,.769-.55l3.08.51a.679.679,0,0,1,.551.769l-.41,2.469a.678.678,0,0,1-.769.55l-3.08-.511a.678.678,0,0,1-.55-.769ZM301.65.561a.644.644,0,0,1,.273-.432.639.639,0,0,1,.5-.119L305.5.52a.643.643,0,0,1,.432.273.637.637,0,0,1,.119.5L304.3,11.822a.678.678,0,0,1-.769.55l-3.08-.511a.65.65,0,0,1-.432-.272.642.642,0,0,1-.118-.5Z" transform="translate(-133.097)" fill="#ee2934"/>
|
||||
<g id="Group_17617" data-name="Group 17617" transform="translate(165.927)" opacity="0.3">
|
||||
<g id="Group_17616" data-name="Group 17616">
|
||||
<g id="Group_17615" data-name="Group 17615" clip-path="url(#clip-path-10)">
|
||||
<path id="Path_18826" data-name="Path 18826" d="M299.443,13.879a.676.676,0,0,1,.769-.55l3.08.51a.679.679,0,0,1,.551.769l-.41,2.469a.678.678,0,0,1-.769.55l-3.08-.511a.678.678,0,0,1-.55-.769ZM301.65.561a.644.644,0,0,1,.273-.432.639.639,0,0,1,.5-.119L305.5.52a.643.643,0,0,1,.432.273.637.637,0,0,1,.119.5L304.3,11.822a.678.678,0,0,1-.769.55l-3.08-.511a.65.65,0,0,1-.432-.272.642.642,0,0,1-.118-.5Z" transform="translate(-299.024 0)" fill="#fff"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Group_17620" data-name="Group 17620" transform="translate(98.339 136.477)" opacity="0.2">
|
||||
<g id="Group_17619" data-name="Group 17619">
|
||||
<g id="Group_17618" data-name="Group 17618" clip-path="url(#clip-path-11)">
|
||||
<path id="Path_18827" data-name="Path 18827" d="M241.039,251.689c14.6,7.653,14.6,20.06,0,27.712s-38.27,7.653-52.869,0-14.6-20.06,0-27.712,38.27-7.653,52.869,0" transform="translate(-177.221 -245.95)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<path id="Path_18828" data-name="Path 18828" d="M267.918,277.428s11.624-4.189,15.414-10.333c-.35-6.807-1.008-19.031-1.107-18.95l-21.908,2.268,4.629,19.207Z" transform="translate(-115.868 -110.45)" fill="#fff"/>
|
||||
<g id="Group_17623" data-name="Group 17623" transform="translate(144.449 137.695)" opacity="0.78">
|
||||
<g id="Group_17622" data-name="Group 17622">
|
||||
<g id="Group_17621" data-name="Group 17621" clip-path="url(#clip-path-12)">
|
||||
<path id="Path_18829" data-name="Path 18829" d="M267.918,277.428s11.624-4.189,15.414-10.333c-.35-6.807-1.008-19.031-1.107-18.95l-21.908,2.268,4.629,19.207Z" transform="translate(-260.317 -248.145)" fill="#1b2d51"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<path id="Path_18830" data-name="Path 18830" d="M244.138,267.239c2.054-3.559,3.839-12.1,3.845-15h-59.27s-1.1,12.806-1.011,17.956c0,.021.006.038.006.059l0,.01c1.237,3.055,4.149,4.932,10.788,7.812,12.285,5.323,28.956,4.511,37.1,1.174v-2.714s6.487-5.739,8.541-9.3" transform="translate(-83.544 -112.272)" fill="#1b2d51"/>
|
||||
<path id="Path_18831" data-name="Path 18831" d="M300.855,125.147c9.653,8.423,11.428,10.144,11.428,10.144,2.658-11.057,4.854-18.792,5.189-23.486s6.4-14.976,6.4-14.976c4.837,1.251,8.634,8.849,6.185,16.621-1.781,5.652,1.586,19.4-1.877,37.6-1.812,9.52-7.086,11.775-17.318,6-7.17-4.048-20.116-13.416-20.116-13.416l-9.826-32.683c8.226,1.494,10.527,5.988,19.931,14.194" transform="translate(-125.04 -43.099)" fill="#ffa8a7"/>
|
||||
<path id="Path_18832" data-name="Path 18832" d="M283.817,122.065c4.669.92,7.881,3.3,13.215,8.63s16.613,15.517,16.613,15.517a27.293,27.293,0,0,0-.5,15.765c2,7.678,5.088,8.97,5.088,8.97s-2.433.706-8.9-3.449-20.786-14.42-20.786-14.42Z" transform="translate(-126.328 -54.332)" fill="#1b2d51"/>
|
||||
<path id="Path_18833" data-name="Path 18833" d="M334.561,161.587s-1.128,17.628,4.291,22.537,8.858,1.677,8.858,1.677-.284,5.009-3.566,4.845-3.8.092-5.726.033-4.962-.329-6.332-4.184c-4.04-7.809-2.555-18.055.256-24.228.957.469.949-.879,2.22-.68" transform="translate(-146.708 -71.914)" fill="#fff"/>
|
||||
<g id="heand" transform="translate(182.896 89.652)" opacity="0.77">
|
||||
<path id="Path_18834" data-name="Path 18834" d="M334.561,161.587s-1.128,17.628,4.291,22.537,8.858,1.677,8.858,1.677-.284,5.009-3.566,4.845-3.8.092-5.726.033-4.962-.329-6.332-4.184c-4.04-7.809-2.555-18.055.256-24.228.957.469.949-.879,2.22-.68" transform="translate(-329.604 -161.566)" fill="#1b2d51"/>
|
||||
</g>
|
||||
<path id="Path_18835" data-name="Path 18835" d="M371.645,95.442a18.686,18.686,0,0,1-2,6.945c-2.5,6.313-3.9,5.569-6.378,10.424l-5.235-13.537c-2.282-4-.483-5.776,3.041-6.613Z" transform="translate(-158.907 -41.244)" fill="#f28f8f"/>
|
||||
<path id="Path_18836" data-name="Path 18836" d="M325.136,76.535a7.664,7.664,0,1,0-2.11-10.631,7.663,7.663,0,0,0,2.11,10.631" transform="translate(-143.204 -27.819)" fill="#455a64"/>
|
||||
<path id="Path_18837" data-name="Path 18837" d="M328.527,79.486l8.957-4.413a7.664,7.664,0,0,1-14.726,3.588c1.245,1.655,2.889,2.244,5.769.825" transform="translate(-143.661 -33.415)" fill="#37474f"/>
|
||||
<path id="Path_18838" data-name="Path 18838" d="M344.978,74.421l.4-6.154A78.839,78.839,0,0,0,362.643,82.38l-.163,2.461c-4.086-1.229-11.163-5.624-17.5-10.42" transform="translate(-153.551 -30.386)" fill="#37474f"/>
|
||||
<path id="Path_18839" data-name="Path 18839" d="M338.4,84.724l3.634-.277,7.005,4.617a10.7,10.7,0,0,0,10.515.714c-4.749-1.639-11.694-6.108-17.5-10.42Z" transform="translate(-150.622 -35.322)" fill="#455a64"/>
|
||||
<path id="Path_18840" data-name="Path 18840" d="M358.235,87.716c0,.062-.008.123-.012.181a1.007,1.007,0,0,1-.507.757l-1.267.624a.278.278,0,0,0-.034.525l.149.1a1.007,1.007,0,0,0,.909.06l1.288-.633a.984.984,0,0,0,.5-.757l.009-.17a1.027,1.027,0,0,0-.411-.818l-.151-.1c-.241-.161-.453-.057-.472.233" transform="translate(-158.565 -38.905)" fill="#ee2934"/>
|
||||
<path id="Path_18841" data-name="Path 18841" d="M362.543,90.182c0,.062-.008.122-.012.181a1.006,1.006,0,0,1-.506.757l-1.267.624a.278.278,0,0,0-.034.525l.149.1a1.007,1.007,0,0,0,.909.06l1.288-.633a.986.986,0,0,0,.5-.757l.008-.17a1.026,1.026,0,0,0-.411-.817l-.151-.1c-.241-.161-.453-.057-.472.232" transform="translate(-160.483 -40.003)" fill="#ee2934"/>
|
||||
<path id="Path_18842" data-name="Path 18842" d="M366.852,92.648c0,.062-.008.123-.012.181a1.006,1.006,0,0,1-.506.757l-1.267.624a.277.277,0,0,0-.034.524l.149.1a1.007,1.007,0,0,0,.909.06l1.288-.633a.983.983,0,0,0,.5-.757l.009-.171a1.028,1.028,0,0,0-.411-.817l-.151-.1c-.241-.161-.453-.057-.472.232" transform="translate(-162.401 -41.101)" fill="#ee2934"/>
|
||||
<path id="Path_18843" data-name="Path 18843" d="M333.314,56.732v0a4.148,4.148,0,0,0-2.036,3.375c-.026.175-.044.359-.058.55-.014.225-.021.447-.017.678a9.975,9.975,0,0,0,.077,1.153,12.677,12.677,0,0,0,.456,2.155,15.077,15.077,0,0,0,2.9,5.338,10.648,10.648,0,0,0,2.129,1.924c1.62,1.083,3.142,1.3,4.306.77l-3.995,1.973,0-.009a4.988,4.988,0,0,1-4.843-.5,10.526,10.526,0,0,1-2.041-1.823,15.033,15.033,0,0,1-2.984-5.437,12.444,12.444,0,0,1-.456-2.156,9.4,9.4,0,0,1-.078-1.151c0-.231,0-.458.018-.679.012-.188.034-.373.063-.552a4.942,4.942,0,0,1,2.491-3.594v0l.11-.057c.047-.022.095-.047.144-.068Z" transform="translate(-145.401 -25.251)" fill="#ee2934"/>
|
||||
<g id="sound" transform="translate(184.786 44.734)" opacity="0.1">
|
||||
<path id="Path_18844" data-name="Path 18844" d="M339.9,85.282l0-.009a4.99,4.99,0,0,1-4.843-.5,10.529,10.529,0,0,1-2.041-1.823l4.448-2.333a10.649,10.649,0,0,0,2.129,1.924c1.62,1.083,3.142,1.3,4.306.77Z" transform="translate(-333.009 -80.617)"/>
|
||||
</g>
|
||||
<path id="Path_18845" data-name="Path 18845" d="M341.351,57.207a13.853,13.853,0,0,1,5.542,11.247c-.13,2.007-.933,3.367-2.122,3.939-.021.012-.043.022-.065.032-1.163.528-2.686.313-4.305-.77a13.861,13.861,0,0,1-5.544-11.248c.132-1.989.922-3.346,2.094-3.925s2.736-.388,4.4.726" transform="translate(-149.037 -24.997)" fill="#ee2934"/>
|
||||
<g id="sound-2" data-name="sound" transform="translate(185.8 31.164)" opacity="0.2">
|
||||
<path id="Path_18846" data-name="Path 18846" d="M341.351,57.207a13.853,13.853,0,0,1,5.542,11.247c-.13,2.007-.933,3.367-2.122,3.939-.021.012-.043.022-.065.032-1.163.528-2.686.313-4.305-.77a13.861,13.861,0,0,1-5.544-11.248c.132-1.989.922-3.346,2.094-3.925s2.736-.388,4.4.726" transform="translate(-334.837 -56.161)"/>
|
||||
</g>
|
||||
<path id="Path_18847" data-name="Path 18847" d="M351.5,28.216s-.818,7.062,3.956,16.753A42.59,42.59,0,0,0,358.369,50c4.024,5.955,7.959,8.315,7.959,8.315-4.885-1-10.162-1.709-15.378-.493a59.623,59.623,0,0,0-6.014,1.761l0,0c-1.074.527-2.495.3-3.989-.7a10.868,10.868,0,0,1-2.667-2.637,14.317,14.317,0,0,1-1.313-2.166A12.414,12.414,0,0,1,335.582,48c.119-1.793.807-3.056,1.879-3.587l0,0a59.627,59.627,0,0,0,5.061-3.7c4.142-3.395,6.8-8.01,8.98-12.493" transform="translate(-149.36 -12.559)" fill="#ee2934"/>
|
||||
<g id="sound-3" data-name="sound" transform="translate(186.204 15.657)" opacity="0.6">
|
||||
<path id="Path_18848" data-name="Path 18848" d="M351.5,28.216s-.818,7.062,3.956,16.753A42.59,42.59,0,0,0,358.369,50c4.024,5.955,7.959,8.315,7.959,8.315-4.885-1-10.162-1.709-15.378-.493a59.623,59.623,0,0,0-6.014,1.761l0,0c-1.074.527-2.495.3-3.989-.7a10.868,10.868,0,0,1-2.667-2.637,14.317,14.317,0,0,1-1.313-2.166A12.414,12.414,0,0,1,335.582,48c.119-1.793.807-3.056,1.879-3.587l0,0a59.627,59.627,0,0,0,5.061-3.7c4.142-3.395,6.8-8.01,8.98-12.493" transform="translate(-335.564 -28.216)" fill="#fff"/>
|
||||
</g>
|
||||
<g id="sound-4" data-name="sound" transform="translate(188.917 37.414)" opacity="0.1">
|
||||
<path id="Path_18849" data-name="Path 18849" d="M360.546,67.452c4.024,5.955,7.959,8.315,7.959,8.315-4.886-1-10.162-1.709-15.378-.493a59.391,59.391,0,0,0-6.014,1.761l0,0c-1.075.527-2.495.3-3.989-.7a10.871,10.871,0,0,1-2.668-2.637c4.659-2.65,12.649-6.635,20.092-6.246" transform="translate(-340.455 -67.425)"/>
|
||||
</g>
|
||||
<path id="Path_18850" data-name="Path 18850" d="M377.307,17.41a29.452,29.452,0,0,1,8.862,10.041l0,0c2.964,5.278,4.672,11.392,4.32,16.723-.627,9.493-7.545,12.9-15.452,7.613a25.309,25.309,0,0,1-5.058-4.568,35.546,35.546,0,0,1-7.71-16.03q-.228-1.205-.345-2.394c-.033-.328-.059-.659-.078-.985v0c-.028-.464-.043-.924-.042-1.379,0-.474.014-.943.045-1.406.627-9.493,7.544-12.9,15.454-7.614" transform="translate(-161.042 -6.641)" fill="#ee2934"/>
|
||||
<g id="sound-5" data-name="sound" transform="translate(208.939 20.813)" opacity="0.1">
|
||||
<path id="Path_18851" data-name="Path 18851" d="M392.727,37.507c2.964,5.278,4.672,11.392,4.32,16.723-.627,9.493-7.546,12.9-15.452,7.613a25.307,25.307,0,0,1-5.058-4.568l0,0c1.333.221,3.906-.468,3.382-1.9a22.844,22.844,0,0,0,4.491,4.044A10.219,10.219,0,0,0,390.7,61.5,4.879,4.879,0,0,0,394.47,59.2a11.367,11.367,0,0,0,1.616-5.523c.3-4.534-1.083-9.811-3.5-14.515,0,0,.646-.185.143-1.651" transform="translate(-376.537 -37.507)"/>
|
||||
</g>
|
||||
<path id="Path_18852" data-name="Path 18852" d="M380.119,19.79a28.326,28.326,0,0,1,8.847,10.55c2.418,4.7,3.8,9.981,3.5,14.516a11.362,11.362,0,0,1-1.615,5.523,4.883,4.883,0,0,1-3.773,2.307,10.222,10.222,0,0,1-6.286-2.085,22.843,22.843,0,0,1-4.491-4.044q-.788-.907-1.519-1.9a33.189,33.189,0,0,1-2.342-3.682q-.218-.4-.426-.8c-.232-.443-.456-.893-.665-1.346a33.521,33.521,0,0,1-1.8-4.746c-.006-.016-.009-.038-.017-.055a29.722,29.722,0,0,1-.748-3.18q-.2-1.134-.294-2.243c-.027-.309-.047-.616-.06-.922q-.021-.55-.018-1.094c0-.351.018-.7.039-1.043a11.382,11.382,0,0,1,1.614-5.531c2.011-3.007,5.773-3.089,10.056-.224" transform="translate(-163.98 -7.878)" fill="#ee2934"/>
|
||||
<g id="sound-6" data-name="sound" transform="translate(204.429 9.821)" opacity="0.4">
|
||||
<path id="Path_18853" data-name="Path 18853" d="M380.119,19.79a28.326,28.326,0,0,1,8.847,10.55c2.418,4.7,3.8,9.981,3.5,14.516a11.362,11.362,0,0,1-1.615,5.523,4.883,4.883,0,0,1-3.773,2.307,10.222,10.222,0,0,1-6.286-2.085,22.843,22.843,0,0,1-4.491-4.044q-.788-.907-1.519-1.9a33.189,33.189,0,0,1-2.342-3.682q-.218-.4-.426-.8c-.232-.443-.456-.893-.665-1.346a33.521,33.521,0,0,1-1.8-4.746c-.006-.016-.009-.038-.017-.055a29.722,29.722,0,0,1-.748-3.18q-.2-1.134-.294-2.243c-.027-.309-.047-.616-.06-.922q-.021-.55-.018-1.094c0-.351.018-.7.039-1.043a11.382,11.382,0,0,1,1.614-5.531c2.011-3.007,5.773-3.089,10.056-.224" transform="translate(-368.409 -17.699)"/>
|
||||
</g>
|
||||
<path id="Path_18854" data-name="Path 18854" d="M377.875,41.26l4.654,9.231c-2.127,1.147-4.743,2.525-6.51,5.3-.168-.213-.33-.429-.491-.651a33.11,33.11,0,0,1-2.342-3.682q-.219-.4-.426-.8c-.232-.443-.456-.893-.665-1.346a33.48,33.48,0,0,1-1.8-4.746c-.005-.016-.009-.038-.017-.055-.068-.235-.135-.47-.2-.7,3.33.261,7.8-2.549,7.8-2.549" transform="translate(-164.723 -18.365)" fill="#37474f"/>
|
||||
<path id="Path_18855" data-name="Path 18855" d="M388.381,49.871c-.617.923-1.731.975-2.979.14l-.038-.026a8.205,8.205,0,0,1-3.277-6.651l0-.046a3.2,3.2,0,0,1,.461-1.555c.617-.922,1.731-.974,2.979-.14l.038.026a8.206,8.206,0,0,1,3.277,6.652l0,.045A3.2,3.2,0,0,1,388.381,49.871Z" transform="translate(-170.063 -18.25)" fill="#ee2934"/>
|
||||
<path id="Path_18856" data-name="Path 18856" d="M362.241,82.832s1.57-.465,2.123-.585c1.324-.286,2.305-.767,3.3.207.338.333.534.959.917,1.226.434.3,1.3.178,1.823.29a2.47,2.47,0,0,1,1.546.921c.247.347.319.986.653,1.194.42.262,1.135.214,1.609.419,1.064.463,1.363,1.879,1.757,2.85.425,1.048,1.137,2.5.684,3.625a4.952,4.952,0,0,1-1.736,2.033,26.948,26.948,0,0,1-2.683,1.835,1.641,1.641,0,0,1-2.15-.567c-.664-.861-1.929-.54-2.73-1.291-.346-.325-.449-.816-.788-1.149a2.613,2.613,0,0,1-.917-1.23c-.272-1.008.217-2.091.419-3.068a6.029,6.029,0,0,0-.277-2.691,4.213,4.213,0,0,0-1.042-2.073l-2.5-1.946" transform="translate(-161.234 -36.442)" fill="#ffa8a7"/>
|
||||
<path id="Path_18857" data-name="Path 18857" d="M346.616,106c.134-5.909-.224-8.451-.214-11.242.012-3.178,2.216-4.98,4.842-7.105a30.723,30.723,0,0,0,3.926-3.648c.981-1.091,1.851,2.278,1.654,3.543-.238,1.522-1.654,3.257-2.592,4.612-2.135,3.086,6.28,7.39,4.309,16.7C356.579,111.89,346.616,106,346.616,106" transform="translate(-154.185 -37.296)" fill="#ffa8a7"/>
|
||||
<path id="Path_18858" data-name="Path 18858" d="M251.148,144.433c-.516-18.449-8.689-23.509-11.91-24.843l-13.106-2.615c-4,.443-21.041,5.553-25.737,6.714-3.024.748-2.879,6.627-4.406,16.316-1.241,7.871-1.93,14.5-2.677,25.47-.626,9.194-1.363,19.666.264,32.675,20.73,6.326,40.623,9.352,56.02-2.46-.36-2.592,1.209-24.176,1.34-30.542s.353-15.721.214-20.715" transform="translate(-85.722 -52.066)" fill="#fafafa"/>
|
||||
<path id="Path_18859" data-name="Path 18859" d="M194.056,125.606l16.595-5.267s1.4,4.318,4.5,12.639,2.918,13.451,1.994,27.391-1.225,43.915-2.553,56.391c-6.205.288-23.214-4.665-28.292-11.539,0,0,1.756-25.267,2.55-39.53s-2.12-36.708,5.209-40.085" transform="translate(-82.921 -53.563)" fill="#fff"/>
|
||||
<g id="jecket" transform="translate(103.375 66.776)" opacity="0.72">
|
||||
<path id="Path_18860" data-name="Path 18860" d="M194.056,125.606l16.595-5.267s1.4,4.318,4.5,12.639,2.918,13.451,1.994,27.391-1.225,43.915-2.553,56.391c-6.205.288-23.214-4.665-28.292-11.539,0,0,1.756-25.267,2.55-39.53s-2.12-36.708,5.209-40.085" transform="translate(-186.296 -120.339)" fill="#ee2934"/>
|
||||
</g>
|
||||
<path id="Path_18861" data-name="Path 18861" d="M263.527,120.074c5.426,2.71,8.724,9.314,9.257,18.082s2.477,26.307,2.787,32.919c1.348,28.724,2.813,36.444,2.813,36.444,2.7-1.384,6.047-3.031,6.527-6.982-.606-6.149-.986-29.648-1.034-35.137s-.357-18.176-.565-24.885-1.817-15.166-7.432-19.714a55.769,55.769,0,0,0-12.152-2.22Z" transform="translate(-117.297 -52.78)" fill="#fff"/>
|
||||
<g id="jecket-2" data-name="jecket" transform="translate(146.23 65.8)" opacity="0.72">
|
||||
<path id="Path_18862" data-name="Path 18862" d="M263.527,120.074c5.426,2.71,8.724,9.314,9.257,18.082s2.477,26.307,2.787,32.919c1.348,28.724,2.813,36.444,2.813,36.444,2.7-1.384,6.047-3.031,6.527-6.982-.606-6.149-.986-29.648-1.034-35.137s-.357-18.176-.565-24.885-1.817-15.166-7.432-19.714a55.769,55.769,0,0,0-12.152-2.22Z" transform="translate(-263.527 -118.581)" fill="#ee2934"/>
|
||||
</g>
|
||||
<path id="Path_18863" data-name="Path 18863" d="M273.166,141.783c-.184-6.433-2.753-18.148-9.431-21.1a5.545,5.545,0,0,1-.222-2.053l.367-3.3a28.275,28.275,0,0,1,5.611,3.407c2.794,2.2,7.363,8.81,8.232,13.886-2.749-2.809-4.312,1.2-4.556,9.159" transform="translate(-117.283 -51.334)" fill="#ee2934"/>
|
||||
<g id="colar_2" data-name="colar 2" transform="translate(146.214 63.997)" opacity="0.45">
|
||||
<path id="Path_18864" data-name="Path 18864" d="M273.166,141.783c-.184-6.433-2.753-18.148-9.431-21.1a5.545,5.545,0,0,1-.222-2.053l.367-3.3a28.275,28.275,0,0,1,5.611,3.407c2.794,2.2,7.363,8.81,8.232,13.886-2.749-2.809-4.312,1.2-4.556,9.159" transform="translate(-263.497 -115.331)" fill="#fff"/>
|
||||
</g>
|
||||
<path id="Path_18865" data-name="Path 18865" d="M221.958,70.644c-1.178-4.378-6.047-8.6-8.409-12.29-2.279-3.558-3.7-6.351-3.815-9.889-.069-2.1.976-5.043,2.464-5.782a9.717,9.717,0,0,1,5.961-12.744,33.093,33.093,0,0,0,4.156-1.6c1.61-.861,1.861-2.246,3.1-3.522,2.14-2.2,6.057-2.616,7.835.235,1.359-2.151,3.466-2.3,5.954-1.913a4.163,4.163,0,0,1,3.623,4.384c3.073-2.125,6.271-.116,6.75,1.765.354,1.387.167,2.6,1.209,3.778,1.173,1.323,3.133,1.112,3.62-.093.525,1.969-.11,3.567-2.291,3.663a4.567,4.567,0,0,1,.928,3.764,4.164,4.164,0,0,1-3.476,3.216,6.363,6.363,0,0,1-3.011,5.688c-3.136,1.878-6.72,2.732-10.188,3.8l-4.117,1.269c-.24.074-1.5.271-1.63.5l-8.664,15.765" transform="translate(-93.352 -10.226)" fill="#263238"/>
|
||||
<path id="Path_18866" data-name="Path 18866" d="M217.52,76.322a4.33,4.33,0,0,0,5.233-.653l.362,7.84L223.3,92s8.893,9.49,20.935,8.916c.609-2.7-.271-7.457-2.212-9.785l-.3-6.946a42.948,42.948,0,0,0,5.27-.739,9.275,9.275,0,0,0,6.766-7.723,40.253,40.253,0,0,0-.969-15.179,13.094,13.094,0,0,1-.537-3.647,17.291,17.291,0,0,0-1.832-7.756c-4.133-2.728-15.055-2.339-22.857,3.48,2.175,4.053,1.468,8.452-1.937,10.67.294,1.315.779,4.66-1.414,4.805-1.579.1-1.872-1.862-3.654-3.449-1.819-1.62-5.6-1.7-6.82,1.009-1.7,3.785.165,8.942,3.786,10.663" transform="translate(-94.85 -21.147)" fill="#ffa8a7"/>
|
||||
<path id="Path_18867" data-name="Path 18867" d="M250.976,105.336c-5.6-.128-9.858-.33-13.122-4.066a34.784,34.784,0,0,1-3.958-6.243,27.123,27.123,0,0,0,3.153,8c1.635,2.427,5.259,4.234,14.006,4.158Z" transform="translate(-104.108 -42.297)" fill="#f28f8f"/>
|
||||
<path id="Path_18868" data-name="Path 18868" d="M254.239,73.33a1.565,1.565,0,1,1-1.691-1.5,1.591,1.591,0,0,1,1.691,1.5" transform="translate(-111.772 -31.97)" fill="#263238"/>
|
||||
<path id="Path_18869" data-name="Path 18869" d="M251.014,65.6l-3.236,2.035a2.005,2.005,0,0,1,.627-2.7,1.865,1.865,0,0,1,2.609.669" transform="translate(-110.163 -28.775)" fill="#263238"/>
|
||||
<path id="Path_18870" data-name="Path 18870" d="M277.008,63.416l-3.794-.664a1.848,1.848,0,0,1,2.16-1.592,2.023,2.023,0,0,1,1.634,2.256" transform="translate(-121.608 -27.209)" fill="#263238"/>
|
||||
<path id="Path_18871" data-name="Path 18871" d="M276.938,70.442a1.565,1.565,0,1,1-1.691-1.5,1.59,1.59,0,0,1,1.691,1.5" transform="translate(-121.875 -30.685)" fill="#263238"/>
|
||||
<path id="Path_18872" data-name="Path 18872" d="M270.439,76.5l-5.189,2.92-2.681-10.465c1.944-.911,5,3.726,7.87,7.545" transform="translate(-116.87 -30.64)" fill="#f28f8f"/>
|
||||
<path id="Path_18873" data-name="Path 18873" d="M257.826,93.367l6.645.773a3.287,3.287,0,0,1-3.63,3.039,3.5,3.5,0,0,1-3.015-3.812" transform="translate(-114.752 -41.558)" fill="#b16668"/>
|
||||
<path id="Path_18874" data-name="Path 18874" d="M258.791,95.145a3.654,3.654,0,0,0-.806.088,3.458,3.458,0,0,0,2.933,2.738,3.208,3.208,0,0,0,1.07-.069,3.063,3.063,0,0,0-3.2-2.756" transform="translate(-114.83 -42.349)" fill="#f28f8f"/>
|
||||
<path id="Path_18875" data-name="Path 18875" d="M234.427,142.814c-.388-12.63-5.561-13.759-7.149-9.766a25.491,25.491,0,0,1-3.284-15.4,46.611,46.611,0,0,0,2.489-4.076,2.514,2.514,0,0,1,1.412-1.182l.152,3.175s.391,3.7,3.7,8.636c2.43,3.621,3,8.022,2.68,18.617" transform="translate(-99.63 -50.023)" fill="#ee2934"/>
|
||||
<g id="colar" transform="translate(124.206 62.363)" opacity="0.45">
|
||||
<path id="Path_18876" data-name="Path 18876" d="M234.427,142.814c-.388-12.63-5.561-13.759-7.149-9.766a25.491,25.491,0,0,1-3.284-15.4,46.611,46.611,0,0,0,2.489-4.076,2.514,2.514,0,0,1,1.412-1.182l.152,3.175s.391,3.7,3.7,8.636c2.43,3.621,3,8.022,2.68,18.617" transform="translate(-223.835 -112.386)" fill="#fff"/>
|
||||
</g>
|
||||
<path id="Path_18877" data-name="Path 18877" d="M179.677,127.92c-10.069,3.046-14.563,4.727-17.837,11.239S152.871,161.8,149.7,171.578c-2.722,8.378-4.211,16.009-2.4,19.867l19.608-6.38,10.351-25.342s6.726-15.725,2.427-31.8" transform="translate(-65.207 -56.938)" fill="#1b2d51"/>
|
||||
<path id="Path_18878" data-name="Path 18878" d="M164.836,211.083c1.432-.18,2.862.043,4.226-.458a1.918,1.918,0,0,0,.669-3.6,12.641,12.641,0,0,0-6.386-3.3,19.713,19.713,0,0,0-13.593,2.135c-2.46,1.325-5.469,3.122-5.642,6.255a11.3,11.3,0,0,1-.128,2.809c-.19.6-.586,1.114-.8,1.7a5.957,5.957,0,0,0-.28,1.666,4.427,4.427,0,0,0,.181,2.019c.17.4.454.75.627,1.152a15.6,15.6,0,0,1,.431,1.915c.369,1.291,1.768,2.778,2.935,1.482,1.06-1.176,1.422-2.781,2.116-4.166a12.143,12.143,0,0,1,3.722-3.9,37.193,37.193,0,0,1,6.147-3.608,24.076,24.076,0,0,1,5.122-1.989,6.635,6.635,0,0,1,.658-.115" transform="translate(-63.59 -90.497)" fill="#fff"/>
|
||||
<g id="head" transform="translate(79.275 112.82)" opacity="0.77">
|
||||
<path id="Path_18879" data-name="Path 18879" d="M164.836,211.083c1.432-.18,2.862.043,4.226-.458a1.918,1.918,0,0,0,.669-3.6,12.641,12.641,0,0,0-6.386-3.3,19.713,19.713,0,0,0-13.593,2.135c-2.46,1.325-5.469,3.122-5.642,6.255a11.3,11.3,0,0,1-.128,2.809c-.19.6-.586,1.114-.8,1.7a5.957,5.957,0,0,0-.28,1.666,4.427,4.427,0,0,0,.181,2.019c.17.4.454.75.627,1.152a15.6,15.6,0,0,1,.431,1.915c.369,1.291,1.768,2.778,2.935,1.482,1.06-1.176,1.422-2.781,2.116-4.166a12.143,12.143,0,0,1,3.722-3.9,37.193,37.193,0,0,1,6.147-3.608,24.076,24.076,0,0,1,5.122-1.989,6.635,6.635,0,0,1,.658-.115" transform="translate(-142.865 -203.317)" fill="#1b2d51"/>
|
||||
</g>
|
||||
<path id="Path_18880" data-name="Path 18880" d="M174.049,205.91c-1.857,2.222-7.464,2.883-11.409,3.983s-8.8,2.98-11.5,7.1c-2.375,3.628-4.882,6.612-3.7,9.463.815,1.963,5.307,3.01,10.577,3.044s10-4.762,15.554-8.127c4.765-2.886,6.95-4.228,6.95-4.228Z" transform="translate(-65.493 -91.651)" fill="#f28f8f"/>
|
||||
<path id="Path_18881" data-name="Path 18881" d="M191.612,203.72c-1.716-1.786-2-3.575-4.568-5.1s-4.2-1.5-6.937-2.965-4.959-2.223-7.056-1.586-1.793,1.839-.245,2.856,4.211,2.361,6.052,3.759,3.652,2.207,3.612,4.573a105.282,105.282,0,0,1-1.042,11.189c-.585,3.955-1.431,7.151-1.141,7.584s1.987.661,3.074-1.534,2.6-10.239,2.6-10.239.663,5.614.9,9.477.315,6.81.407,7.636,2.839.244,3.334-2.656.087-11.537.087-11.537,2.2,3.969,3.611,6.542,3.156,6.074,3.736,6.941,2.342-.617,1.969-2.937-3.233-8.042-3.233-8.042,3.514,3.816,4.135,4.2,2.534.117,1.927-2.45c-.406-1.715-1.474-2.824-4.293-6.172s-2.758-4.712-3.625-6.236c-1.138-2-2.055-2-3.3-3.3" transform="translate(-76.362 -86.278)" fill="#ffa8a7"/>
|
||||
<path id="Path_18882" data-name="Path 18882" d="M194.778,213.325c2.84,1.323,5.672.089,6.073-.615-.226,1.969-4.181,3.049-6.073.615" transform="translate(-86.696 -94.678)" fill="#f28f8f"/>
|
||||
<path id="Path_18883" data-name="Path 18883" d="M221.148,236.185a1.3,1.3,0,0,1-1.8-.158c-.714-.619-2.456-2.65-3.246-3.589s-3.5-4.265-3.5-4.265l2.434,4.787s3.514,3.816,4.135,4.2a1.4,1.4,0,0,0,1.977-.971" transform="translate(-94.63 -101.561)" fill="#f28f8f"/>
|
||||
<path id="Path_18884" data-name="Path 18884" d="M413.634,125.284a.3.3,0,0,1-.309-.236l-2.2-10.054a.306.306,0,0,1,.04-.228.3.3,0,0,1,.19-.132l3.329-.729a.3.3,0,0,1,.36.23l2.2,10.054a.305.305,0,0,1-.041.228.3.3,0,0,1-.189.132l-3.329.729a.268.268,0,0,1-.051.007m-1.856-10.125,2.071,9.464,2.74-.6-2.072-9.465Zm6.028,7.991a.3.3,0,0,1-.309-.237l-1.892-8.639a.3.3,0,0,1,.014-.176c.565-1.417,1.431-3.661,1.493-4.037a12.091,12.091,0,0,0-.524-2.421c-.073-.259-.13-.461-.151-.56-.027-.125-.034-.44.486-.666a2.3,2.3,0,0,1,2.751.781,6.258,6.258,0,0,1,1.234,3.726l4.246-.929a1.761,1.761,0,0,1,2.051,1.378,1.868,1.868,0,0,1-.222,1.394,1.637,1.637,0,0,1,.976,1.214,1.82,1.82,0,0,1-.65,1.781,2.514,2.514,0,0,1,.373.9,2.023,2.023,0,0,1-.864,1.839,3.305,3.305,0,0,1,.29.8,1.923,1.923,0,0,1-1.61,2.179l-7.642,1.672a.27.27,0,0,1-.051.007m-1.591-8.915,1.807,8.254,7.346-1.608a1.342,1.342,0,0,0,1.151-1.46,2.631,2.631,0,0,0-.378-.892.3.3,0,0,1,.18-.472,1.357,1.357,0,0,0,.773-1.274,1.55,1.55,0,0,0-.431-.86.3.3,0,0,1-.112-.274.3.3,0,0,1,.173-.238,1.18,1.18,0,0,0,.647-1.3,1.006,1.006,0,0,0-.92-.86.3.3,0,0,1-.2-.521,1.3,1.3,0,0,0,.367-1.228,1.152,1.152,0,0,0-1.332-.917l-4.618,1.01a.3.3,0,0,1-.258-.063.3.3,0,0,1-.108-.242,5.731,5.731,0,0,0-1.121-3.746,1.63,1.63,0,0,0-1.33-.692,1.455,1.455,0,0,0-.8.183c.027.1.07.26.123.447a9.555,9.555,0,0,1,.539,2.683c-.088.528-1.243,3.445-1.493,4.075" transform="translate(-182.99 -47.288)" fill="#e0e0e0"/>
|
||||
<path id="Path_18885" data-name="Path 18885" d="M19.034,358.251l-3.954-.865a.358.358,0,0,1-.273-.427l2.614-11.939a.354.354,0,0,1,.427-.273l3.953.865a.358.358,0,0,1,.273.427l-2.613,11.94a.359.359,0,0,1-.367.281.317.317,0,0,1-.06-.008m-.99-12.728-2.459,11.239,3.253.711,2.46-11.239Zm-3.965,10.193-9.074-1.987a2.283,2.283,0,0,1-1.912-2.588,3.92,3.92,0,0,1,.343-.948,2.4,2.4,0,0,1-1.025-2.184,2.982,2.982,0,0,1,.442-1.064,2.16,2.16,0,0,1-.771-2.115,1.943,1.943,0,0,1,1.158-1.442,2.223,2.223,0,0,1-.263-1.656A2.09,2.09,0,0,1,5.413,340.1l5.042,1.1a7.433,7.433,0,0,1,1.465-4.425,2.732,2.732,0,0,1,3.266-.928c.618.27.609.644.578.792-.026.118-.093.358-.179.665a14.245,14.245,0,0,0-.622,2.876c.073.446,1.1,3.111,1.772,4.793a.377.377,0,0,1,.017.21l-2.246,10.258a.359.359,0,0,1-.367.281.318.318,0,0,1-.06-.008m.176-15.418a11.349,11.349,0,0,1,.64-3.187c.062-.222.114-.407.145-.53a1.728,1.728,0,0,0-.953-.217,1.932,1.932,0,0,0-1.578.822,6.793,6.793,0,0,0-1.331,4.448.359.359,0,0,1-.129.288.352.352,0,0,1-.306.075l-5.485-1.2a1.369,1.369,0,0,0-1.581,1.09,1.537,1.537,0,0,0,.436,1.458.358.358,0,0,1-.237.618,1.2,1.2,0,0,0-1.094,1.021,1.4,1.4,0,0,0,.769,1.55.355.355,0,0,1,.2.282.36.36,0,0,1-.132.326,1.829,1.829,0,0,0-.512,1.02,1.611,1.611,0,0,0,.918,1.513.356.356,0,0,1,.258.223.36.36,0,0,1-.044.338,3.086,3.086,0,0,0-.449,1.059,1.593,1.593,0,0,0,1.366,1.735l8.724,1.909,2.146-9.8c-.3-.747-1.669-4.212-1.773-4.839" transform="translate(-0.907 -149.396)" fill="#e0e0e0"/>
|
||||
<path id="Path_18886" data-name="Path 18886" d="M390.066,237.307s-.718-4.051-.694-4.642a17.581,17.581,0,0,1,1.388-3.11c.179-.4-1.66-1.4-2.911-.218a6.46,6.46,0,0,0-2.093,3.878l-4.638-2.071a1.56,1.56,0,0,0-2.03.838,1.718,1.718,0,0,0,.148,1.69,1.418,1.418,0,0,0-1.51.889,1.6,1.6,0,0,0,.5,1.908,1.933,1.933,0,0,0-.794.969,1.744,1.744,0,0,0,.7,1.937,3.118,3.118,0,0,0-.671.964,1.76,1.76,0,0,0,1.056,2.216l7.674,3.427Z" transform="translate(-167.958 -101.83)" fill="#e0e0e0"/>
|
||||
<path id="Path_18887" data-name="Path 18887" d="M394.328,254.686l3.349,1.493,4.5-10.1-3.342-1.493Zm1.717-.826a.654.654,0,1,1,.654.654.651.651,0,0,1-.654-.654" transform="translate(-175.517 -108.866)" fill="#e0e0e0"/>
|
||||
<path id="Path_18888" data-name="Path 18888" d="M16.688,136.129s.718-4.051.694-4.642a17.623,17.623,0,0,0-1.388-3.11c-.179-.4,1.66-1.4,2.911-.218A6.461,6.461,0,0,1,21,132.039l4.638-2.071a1.56,1.56,0,0,1,2.03.838,1.718,1.718,0,0,1-.148,1.69,1.418,1.418,0,0,1,1.51.889,1.6,1.6,0,0,1-.5,1.908,1.933,1.933,0,0,1,.794.969,1.744,1.744,0,0,1-.7,1.937,3.118,3.118,0,0,1,.671.964,1.76,1.76,0,0,1-1.056,2.216l-7.674,3.428Z" transform="translate(-7.114 -56.795)" fill="#e0e0e0"/>
|
||||
<path id="Path_18889" data-name="Path 18889" d="M12.384,143.408,9.042,144.9l4.5,10.1,3.349-1.493Zm2.14,9.927a.654.654,0,1,1,.654-.654.651.651,0,0,1-.654.654" transform="translate(-4.024 -63.832)" fill="#e0e0e0"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 52 KiB |
948
news-app/assets/images/svgImage/onboarding2.svg
Normal file
@@ -0,0 +1,948 @@
|
||||
<svg id="Component_57_1" data-name="Component 57 – 1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="247.242" height="244.637" viewBox="0 0 247.242 244.637">
|
||||
<defs>
|
||||
<clipPath id="clip-path">
|
||||
<rect id="Rectangle_1123" data-name="Rectangle 1123" width="247.242" height="244.637" fill="none"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-path-3">
|
||||
<rect id="Rectangle_1056" data-name="Rectangle 1056" width="40.382" height="48.594" fill="none"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-path-4">
|
||||
<rect id="Rectangle_1057" data-name="Rectangle 1057" width="72.738" height="110.047" fill="none"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-path-5">
|
||||
<rect id="Rectangle_1058" data-name="Rectangle 1058" width="26.7" height="32.131" fill="none"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-path-6">
|
||||
<rect id="Rectangle_1059" data-name="Rectangle 1059" width="20.01" height="25.614" fill="none"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-path-7">
|
||||
<rect id="Rectangle_1060" data-name="Rectangle 1060" width="15.31" height="89.374" fill="none"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-path-8">
|
||||
<rect id="Rectangle_1061" data-name="Rectangle 1061" width="11.248" height="5.987" fill="none"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-path-9">
|
||||
<rect id="Rectangle_1062" data-name="Rectangle 1062" width="10.916" height="5.303" fill="none"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-path-12">
|
||||
<rect id="Rectangle_1065" data-name="Rectangle 1065" width="35.7" height="47.735" fill="none"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-path-13">
|
||||
<rect id="Rectangle_1066" data-name="Rectangle 1066" width="12.33" height="6.055" fill="none"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-path-14">
|
||||
<rect id="Rectangle_1067" data-name="Rectangle 1067" width="6.021" height="10.068" fill="none"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-path-15">
|
||||
<rect id="Rectangle_1068" data-name="Rectangle 1068" width="2.967" height="5.299" fill="none"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-path-16">
|
||||
<rect id="Rectangle_1069" data-name="Rectangle 1069" width="9.423" height="7.434" fill="none"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-path-17">
|
||||
<rect id="Rectangle_1070" data-name="Rectangle 1070" width="21.394" height="21.535" fill="none"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-path-18">
|
||||
<rect id="Rectangle_1071" data-name="Rectangle 1071" width="1.724" height="9.975" fill="none"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-path-19">
|
||||
<rect id="Rectangle_1072" data-name="Rectangle 1072" width="0.685" height="1.487" fill="none"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-path-20">
|
||||
<rect id="Rectangle_1073" data-name="Rectangle 1073" width="2.177" height="1.286" fill="none"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-path-25">
|
||||
<rect id="Rectangle_1078" data-name="Rectangle 1078" width="0.492" height="0.584" fill="none"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-path-26">
|
||||
<rect id="Rectangle_1079" data-name="Rectangle 1079" width="1.081" height="1.281" fill="none"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-path-27">
|
||||
<rect id="Rectangle_1080" data-name="Rectangle 1080" width="0.492" height="0.583" fill="none"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-path-28">
|
||||
<rect id="Rectangle_1081" data-name="Rectangle 1081" width="4.511" height="2.593" fill="none"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-path-29">
|
||||
<rect id="Rectangle_1082" data-name="Rectangle 1082" width="2.034" height="1.59" fill="none"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-path-30">
|
||||
<rect id="Rectangle_1083" data-name="Rectangle 1083" width="3.172" height="2.462" fill="none"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-path-31">
|
||||
<rect id="Rectangle_1084" data-name="Rectangle 1084" width="1.933" height="1.541" fill="none"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-path-32">
|
||||
<rect id="Rectangle_1085" data-name="Rectangle 1085" width="1.177" height="0.963" fill="none"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-path-33">
|
||||
<rect id="Rectangle_1086" data-name="Rectangle 1086" width="2.29" height="1.337" fill="none"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-path-34">
|
||||
<rect id="Rectangle_1087" data-name="Rectangle 1087" width="2.458" height="1.731" fill="none"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-path-35">
|
||||
<rect id="Rectangle_1088" data-name="Rectangle 1088" width="1.131" height="0.797" fill="none"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-path-37">
|
||||
<rect id="Rectangle_1090" data-name="Rectangle 1090" width="10.163" height="11.45" fill="none"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-path-38">
|
||||
<rect id="Rectangle_1091" data-name="Rectangle 1091" width="4.545" height="10.555" fill="none"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-path-39">
|
||||
<rect id="Rectangle_1092" data-name="Rectangle 1092" width="18.27" height="9.674" fill="none"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-path-40">
|
||||
<rect id="Rectangle_1093" data-name="Rectangle 1093" width="3.389" height="1.953" fill="none"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-path-41">
|
||||
<rect id="Rectangle_1094" data-name="Rectangle 1094" width="2.033" height="1.59" fill="none"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-path-42">
|
||||
<rect id="Rectangle_1095" data-name="Rectangle 1095" width="3.389" height="1.954" fill="none"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-path-44">
|
||||
<rect id="Rectangle_1097" data-name="Rectangle 1097" width="10.959" height="11.795" fill="none"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-path-45">
|
||||
<rect id="Rectangle_1103" data-name="Rectangle 1103" width="7.443" height="8.041" fill="none"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-path-46">
|
||||
<rect id="Rectangle_1098" data-name="Rectangle 1098" width="0.695" height="0.692" fill="none"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-path-47">
|
||||
<rect id="Rectangle_1099" data-name="Rectangle 1099" width="0.696" height="0.692" fill="none"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-path-51">
|
||||
<rect id="Rectangle_1104" data-name="Rectangle 1104" width="0.539" height="0.536" fill="none"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-path-59">
|
||||
<rect id="Rectangle_1112" data-name="Rectangle 1112" width="4.172" height="17.591" fill="none"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-path-60">
|
||||
<rect id="Rectangle_1113" data-name="Rectangle 1113" width="11.003" height="6.358" fill="none"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-path-61">
|
||||
<rect id="Rectangle_1114" data-name="Rectangle 1114" width="7.537" height="12.169" fill="none"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-path-62">
|
||||
<rect id="Rectangle_1115" data-name="Rectangle 1115" width="26.058" height="50.98" fill="none"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-path-63">
|
||||
<rect id="Rectangle_1116" data-name="Rectangle 1116" width="37.723" height="54.353" fill="none"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-path-64">
|
||||
<rect id="Rectangle_1117" data-name="Rectangle 1117" width="19.424" height="45.341" fill="none"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-path-65">
|
||||
<rect id="Rectangle_1118" data-name="Rectangle 1118" width="1.675" height="16.247" fill="none"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-path-66">
|
||||
<rect id="Rectangle_1119" data-name="Rectangle 1119" width="2.687" height="1.524" fill="none"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-path-67">
|
||||
<rect id="Rectangle_1120" data-name="Rectangle 1120" width="4.71" height="2.858" fill="none"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-path-68">
|
||||
<rect id="Rectangle_1121" data-name="Rectangle 1121" width="2.958" height="0.913" fill="none"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
<g id="Group_17586" data-name="Group 17586" clip-path="url(#clip-path)">
|
||||
<g id="Group_17585" data-name="Group 17585">
|
||||
<g id="Group_17584" data-name="Group 17584" clip-path="url(#clip-path)">
|
||||
<path id="Path_18368" data-name="Path 18368" d="M38.649,316.585c-48.006-27.717-48.007-72.653,0-100.37s125.838-27.716,173.844,0,48.006,72.654,0,100.37-125.838,27.716-173.844,0" transform="translate(-1.255 -92.736)" fill="#fafafa"/>
|
||||
<path id="Path_18369" data-name="Path 18369" d="M90.659,363.447l4.5,2.6a4.606,4.606,0,0,0,4.167,0l89.464-51.689a1.27,1.27,0,0,0,0-2.406l-4.5-2.6a4.606,4.606,0,0,0-4.167,0L90.659,361.041a1.27,1.27,0,0,0,0,2.406" transform="translate(-42.61 -146.559)" fill="#ebebeb"/>
|
||||
<path id="Path_18370" data-name="Path 18370" d="M212.791,377.115c-14.861,8.534-14.861,22.37,0,30.9s38.955,8.534,53.815,0,14.861-22.37,0-30.9-38.954-8.534-53.815,0" transform="translate(-95.686 -175.914)" fill="#ebebeb"/>
|
||||
<path id="Path_18371" data-name="Path 18371" d="M329.6,377.115c-14.86,8.534-14.861,22.37,0,30.9s38.954,8.534,53.815,0,14.861-22.37,0-30.9-38.954-8.534-53.815,0" transform="translate(-151.117 -175.914)" fill="#ebebeb"/>
|
||||
<path id="Path_18372" data-name="Path 18372" d="M15.017,336.869,1.249,328.92c-1.665-.962-1.665-2.52,0-3.482L97.04,270.133a6.665,6.665,0,0,1,6.03,0l13.768,7.949c1.665.961,1.665,2.52,0,3.481L21.047,336.869a6.665,6.665,0,0,1-6.03,0" transform="translate(0 -127.843)" fill="#ebebeb"/>
|
||||
<path id="Path_18373" data-name="Path 18373" d="M109.018,87.133v1.548l-5.349,3.089h-.007l-8.024,4.638L24.817,137.3a2.943,2.943,0,0,0-1.007,1.06,2.879,2.879,0,0,0-.422,1.41V233.9c0,5.119-3.6,7.193-8.023,4.631a17.734,17.734,0,0,1-8.03-13.9V130.5a3.158,3.158,0,0,1,1.429-2.47L87.608,82.5l7.622-4.4a2.914,2.914,0,0,1,.408,1.416l.007,1.436L11.432,129.675a2.809,2.809,0,0,0-.955.988,2.9,2.9,0,0,0-.468,1.482v94.036a11.814,11.814,0,0,0,5.356,9.262c2.951,1.706,5.349.323,5.349-3.089V138.219a3.136,3.136,0,0,1,1.43-2.471l86.48-49.933a2.741,2.741,0,0,1,.4,1.317" transform="translate(-3.48 -37.061)" fill="#e0e0e0"/>
|
||||
<path id="Path_18374" data-name="Path 18374" d="M105.824,85.391v4.532L24.3,137a3.154,3.154,0,0,0-1.429,2.47V233.6c0,1.706-1.192,2.4-2.668,1.542a5.889,5.889,0,0,1-2.675-4.631V136.378a2.941,2.941,0,0,1,.415-1.409,3.065,3.065,0,0,1,1.008-1.061l86.473-49.926a2.951,2.951,0,0,1,.4,1.41" transform="translate(-8.317 -39.851)" fill="#e0e0e0"/>
|
||||
<path id="Path_18375" data-name="Path 18375" d="M24.062,184.557a2.9,2.9,0,0,0-.415,1.4v93.325a15.219,15.219,0,0,1-.132,2.029q-.039.266-.079.513c-.033.158-.059.31-.092.468-.033.138-.066.276-.105.408s-.066.257-.106.382a6.6,6.6,0,0,1-2.872,3.86c-1.917,1.1-4.486.969-7.312-.665-5.915-3.412-10.7-12.081-10.7-19.354V173.6a2.9,2.9,0,0,1,.415-1.4l2.681,1.542a2.876,2.876,0,0,0-.421,1.409v94.135a17.734,17.734,0,0,0,8.03,13.9c4.427,2.562,8.023.488,8.023-4.631V184.419a2.881,2.881,0,0,1,.422-1.41Z" transform="translate(-1.065 -81.713)" fill="#ebebeb"/>
|
||||
<path id="Path_18376" data-name="Path 18376" d="M23.544,184.281a2.917,2.917,0,0,0-.415,1.4v94.135c0,3.412-2.4,4.8-5.349,3.09a11.814,11.814,0,0,1-5.356-9.262V179.61a2.9,2.9,0,0,1,.468-1.482l2.628,1.515a2.94,2.94,0,0,0-.415,1.409v94.135a5.889,5.889,0,0,0,2.675,4.631c1.476.857,2.668.165,2.668-1.541V184.143a2.885,2.885,0,0,1,.421-1.41Z" transform="translate(-5.896 -84.526)" fill="#ebebeb"/>
|
||||
<path id="Path_18377" data-name="Path 18377" d="M93.19,76.916l-7.621,4.4L6.723,126.842A2.9,2.9,0,0,0,5.715,127.9l-2.681-1.542a2.923,2.923,0,0,1,1.008-1.067c9.078-5.237,59.109-34.129,78.852-45.526l1.522-.883,1.509-.869,1.324-.765.784-.455,1.456-.837a3.059,3.059,0,0,1,2.767-.053,2.67,2.67,0,0,1,.935,1.008" transform="translate(-1.44 -35.876)" fill="#fafafa"/>
|
||||
<path id="Path_18378" data-name="Path 18378" d="M128.837,97.488v.006l-7.621,4.4-13.38,7.72-65.466,37.8a3,3,0,0,0-1.015,1.067l-2.668-1.548a2.958,2.958,0,0,1,1.008-1.06l70.822-40.889,8.023-4.637h.006l5.349-3.09,1.245-.718.1-.059a3.053,3.053,0,0,1,2.635-.013c.013.006.019.006.026.013a1.519,1.519,0,0,1,.138.086,2.81,2.81,0,0,1,.8.922" transform="translate(-18.358 -45.637)" fill="#fafafa"/>
|
||||
<path id="Path_18379" data-name="Path 18379" d="M103.424,82.8,16.95,132.721a3.066,3.066,0,0,0-1.008,1.061l-2.628-1.515a2.81,2.81,0,0,1,.955-.988L98.483,82.558l1.238-.718a3.06,3.06,0,0,1,2.767-.053,2.725,2.725,0,0,1,.935,1.008" transform="translate(-6.318 -38.665)" fill="#fafafa"/>
|
||||
<path id="Path_18380" data-name="Path 18380" d="M118.664,91.6l-86.48,49.934a2.935,2.935,0,0,0-1.015,1.067l-2.674-1.548A2.9,2.9,0,0,1,29.5,140l81.526-47.073,3.926-2.266a3.059,3.059,0,0,1,2.767-.046,2.645,2.645,0,0,1,.942.994" transform="translate(-13.522 -42.851)" fill="#fafafa"/>
|
||||
<path id="Path_18381" data-name="Path 18381" d="M39.957,251.041a7.552,7.552,0,0,0,1.4-2.884c.038-.126.071-.266.1-.406l.1-.481.081-.526a15.585,15.585,0,0,0,.134-2.062V151.358a2.686,2.686,0,0,1,.385-1.29,2.763,2.763,0,0,1,.933-.986l65.466-37.8,20.8-12a2.593,2.593,0,0,1,.273,1.1V193.7c0,3.582-1.214,6.315-3.329,7.5Z" transform="translate(-18.961 -47.111)" fill="#fafafa"/>
|
||||
<path id="Path_18382" data-name="Path 18382" d="M127.5,99.319a2.248,2.248,0,0,1,.153.777V193.42c0,3.5-1.171,6.159-3.22,7.3l-85.47,49.342a8.1,8.1,0,0,0,.858-2.118c.042-.138.076-.283.115-.446.017-.081.032-.162.047-.242s.029-.15.048-.247c.027-.166.053-.339.081-.525a15.541,15.541,0,0,0,.136-2.089V151.076a2.448,2.448,0,0,1,.353-1.175,2.532,2.532,0,0,1,.851-.905l65.467-37.8,13.379-7.721Zm.2-.633-7.622,4.4L106.7,110.807l-65.466,37.8a2.992,2.992,0,0,0-1.015,1.067,2.9,2.9,0,0,0-.415,1.4V244.4a15.212,15.212,0,0,1-.132,2.029c-.026.178-.053.349-.079.514s-.059.31-.092.468c-.033.139-.066.277-.106.409a6.741,6.741,0,0,1-3.1,4.312l88.373-51.018c2.121-1.185,3.445-3.866,3.445-7.694V100.1a2.891,2.891,0,0,0-.408-1.41" transform="translate(-17.221 -46.829)" fill="#e0e0e0"/>
|
||||
<path id="Path_18383" data-name="Path 18383" d="M63.2,201.741a6.231,6.231,0,0,1,.048,1.027,6.926,6.926,0,0,1-.048,1.08l-4.9,2.829a6.368,6.368,0,0,1-.047-1.027,8.216,8.216,0,0,1,.047-1.08l1.518-.875V193.033l-1.265.73a6.38,6.38,0,0,1-.047-1.026,8.225,8.225,0,0,1,.047-1.081l4.236-2.446,4.031,7.661V188.99l-1.265.73a6.323,6.323,0,0,1-.047-1.027,8.12,8.12,0,0,1,.047-1.081l4.805-2.775a6.316,6.316,0,0,1,.047,1.027,7.01,7.01,0,0,1-.047,1.081l-1.422.821v12.77l-2.356,1.36-4.647-8.738v9.314Z" transform="translate(-27.644 -87.711)" fill="#455a64"/>
|
||||
<path id="Path_18384" data-name="Path 18384" d="M91.53,174.249v3.666a8.181,8.181,0,0,1-.774.51,6.187,6.187,0,0,1-.806.4v-1.559l-3.809,2.2v3.877l1.817-1.049v-1.539a6.834,6.834,0,0,1,.79-.52,3.519,3.519,0,0,1,.758-.374v5.2a3.988,3.988,0,0,1-.758.5,4.794,4.794,0,0,1-.79.393v-1.6l-1.817,1.049v4.72l3.967-2.29v-1.981a7.766,7.766,0,0,1,.806-.528,6.725,6.725,0,0,1,.774-.385v4.089L82.6,194.281a8.507,8.507,0,0,1-.048-1.026,9.323,9.323,0,0,1,.048-1.081l1.422-.821V180.691l-1.264.73a7.4,7.4,0,0,1-.047-1.027c0-.612.047-1.082.047-1.082Z" transform="translate(-39.174 -82.686)" fill="#455a64"/>
|
||||
<path id="Path_18385" data-name="Path 18385" d="M107.993,164.36l2.2-1.268,1.975,8.679.111-.065s.869-7.118,1.185-11.135l-1.264.73s-.033-.362-.033-1.077c0-.7.033-1.03.033-1.03l4.3-2.482a7.016,7.016,0,0,1,.047.985,8.962,8.962,0,0,1-.047,1.123l-1.107.638c-.395,4.548-1.517,13.645-1.517,13.645l-3.225,1.862-1.627-7.173-1.629,9.053-3.224,1.861s-1.2-7.588-1.5-11.9l-1.107.638s-.032-.361-.032-1.078c0-.7.032-1.029.032-1.029l4.473-2.583a7,7,0,0,1,.047.984,8.947,8.947,0,0,1-.047,1.123l-1.264.73c.221,3.791,1.153,9.785,1.153,9.785l.111-.064Z" transform="translate(-48.178 -74.364)" fill="#455a64"/>
|
||||
<path id="Path_18386" data-name="Path 18386" d="M138.152,152.995a6.379,6.379,0,0,1-.837.547,5.826,5.826,0,0,1-.9.457v-1.5s-.553-.25-1.613.362a3.946,3.946,0,0,0-1.865,3.058c0,.737.174,1.417.886,1.3l2.07-.311c1.106-.154,2.782-.047,2.782,2.757a7.585,7.585,0,0,1-4.11,6.67c-2.544,1.47-3.7.345-3.7.345V163.86a8.14,8.14,0,0,1,.837-.547,7.044,7.044,0,0,1,.9-.457v1.58s.585.421,1.961-.373a3.664,3.664,0,0,0,1.992-3.173c0-1.075-.679-1.419-1.407-1.316l-2.26.337c-1.564.228-2.07-.954-2.07-2.788a8.3,8.3,0,0,1,3.983-6.534,3.71,3.71,0,0,1,3.35-.249Z" transform="translate(-62.077 -71.205)" fill="#455a64"/>
|
||||
<path id="Path_18387" data-name="Path 18387" d="M175.5,118.107l-22.424,12.947v15.221L175.5,133.328Z" transform="translate(-72.638 -56.045)" fill="#e0e0e0"/>
|
||||
<path id="Path_18388" data-name="Path 18388" d="M130.59,160.385,58.437,202.043v-3.937l72.154-41.658Z" transform="translate(-27.73 -74.238)" fill="#ee2934"/>
|
||||
<path id="Path_18389" data-name="Path 18389" d="M81.318,263.477l-22.882,13.21V240.661L81.318,227.45Z" transform="translate(-27.73 -107.931)" fill="#455a64"/>
|
||||
<path id="Path_18390" data-name="Path 18390" d="M62.613,247.475a.255.255,0,0,1-.128-.477l18.25-10.537a.256.256,0,0,1,.256.442l-18.25,10.537a.256.256,0,0,1-.128.034" transform="translate(-29.59 -112.191)" fill="#fafafa"/>
|
||||
<path id="Path_18391" data-name="Path 18391" d="M62.613,253.556a.255.255,0,0,1-.128-.477l18.25-10.537a.256.256,0,0,1,.256.442l-18.25,10.537a.256.256,0,0,1-.128.034" transform="translate(-29.59 -115.077)" fill="#fafafa"/>
|
||||
<path id="Path_18392" data-name="Path 18392" d="M62.613,259.636a.255.255,0,0,1-.128-.477l18.25-10.537a.256.256,0,0,1,.256.442L62.741,259.6a.256.256,0,0,1-.128.034" transform="translate(-29.59 -117.962)" fill="#fafafa"/>
|
||||
<path id="Path_18393" data-name="Path 18393" d="M62.613,265.717a.255.255,0,0,1-.128-.477L80.735,254.7a.256.256,0,0,1,.256.442l-18.25,10.537a.256.256,0,0,1-.128.034" transform="translate(-29.59 -120.847)" fill="#fafafa"/>
|
||||
<path id="Path_18394" data-name="Path 18394" d="M62.613,271.8a.255.255,0,0,1-.128-.477l18.25-10.537a.256.256,0,0,1,.256.442l-18.25,10.537a.256.256,0,0,1-.128.034" transform="translate(-29.59 -123.733)" fill="#fafafa"/>
|
||||
<path id="Path_18395" data-name="Path 18395" d="M62.613,277.878a.255.255,0,0,1-.128-.477l18.25-10.537a.256.256,0,0,1,.256.442l-18.25,10.536a.251.251,0,0,1-.128.035" transform="translate(-29.59 -126.618)" fill="#fafafa"/>
|
||||
<path id="Path_18396" data-name="Path 18396" d="M62.613,283.958a.255.255,0,0,1-.128-.477l18.25-10.537a.256.256,0,0,1,.256.442l-18.25,10.537a.256.256,0,0,1-.128.034" transform="translate(-29.59 -129.503)" fill="#fafafa"/>
|
||||
<path id="Path_18397" data-name="Path 18397" d="M62.613,290.039a.255.255,0,0,1-.128-.477l18.25-10.537a.256.256,0,0,1,.256.442L62.741,290a.256.256,0,0,1-.128.034" transform="translate(-29.59 -132.389)" fill="#fafafa"/>
|
||||
<path id="Path_18398" data-name="Path 18398" d="M62.613,296.119a.255.255,0,0,1-.128-.477l18.25-10.537a.256.256,0,0,1,.256.443l-18.25,10.537a.256.256,0,0,1-.128.034" transform="translate(-29.59 -135.274)" fill="#fafafa"/>
|
||||
<path id="Path_18399" data-name="Path 18399" d="M62.613,302.2a.255.255,0,0,1-.128-.477l18.25-10.537a.256.256,0,0,1,.256.442l-18.25,10.537a.256.256,0,0,1-.128.034" transform="translate(-29.59 -138.16)" fill="#fafafa"/>
|
||||
<path id="Path_18400" data-name="Path 18400" d="M155.823,233.442l-44.212,25.526V198.839l44.212-25.526Z" transform="translate(-52.962 -82.242)" fill="#e0e0e0"/>
|
||||
<path id="Path_18401" data-name="Path 18401" d="M116.655,203.673l38.426-22.184c.54-.312.978-.059.978.565v31.538a2.162,2.162,0,0,1-.978,1.694l-38.425,22.185c-.54.312-.978.059-.978-.565V205.368a2.163,2.163,0,0,1,.978-1.695" transform="translate(-54.892 -86.058)" fill="#fff"/>
|
||||
<path id="Path_18402" data-name="Path 18402" d="M145.341,206.6l-6.42,11.363,4.512,5.849-14.907-12.845-12.848,27.816v5.034c0,.624.438.877.978.565L155.082,222.2a2.162,2.162,0,0,0,.978-1.695v-4.1Zm4.434-5.968A4.258,4.258,0,0,0,151.7,197.3c0-1.228-.862-1.726-1.926-1.111a4.257,4.257,0,0,0-1.925,3.335c0,1.229.862,1.726,1.925,1.112" transform="translate(-54.893 -92.971)" fill="#ee2934"/>
|
||||
<g id="Group_17388" data-name="Group 17388" transform="translate(60.786 102.953)" opacity="0.5">
|
||||
<g id="Group_17387" data-name="Group 17387">
|
||||
<g id="Group_17386" data-name="Group 17386" clip-path="url(#clip-path-3)">
|
||||
<path id="Path_18403" data-name="Path 18403" d="M145.341,206.6l-6.42,11.363,4.512,5.849-14.907-12.845-12.848,27.816v5.034c0,.624.438.877.978.565L155.082,222.2a2.162,2.162,0,0,0,.978-1.695v-4.1Zm4.434-5.968A4.258,4.258,0,0,0,151.7,197.3c0-1.228-.862-1.726-1.926-1.111a4.257,4.257,0,0,0-1.925,3.335c0,1.229.862,1.726,1.925,1.112" transform="translate(-115.679 -195.924)" fill="#fff"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<path id="Path_18404" data-name="Path 18404" d="M130.688,274.154l32.35-18.677V268.42L130.688,287.1Z" transform="translate(-62.015 -121.23)" fill="#fafafa"/>
|
||||
<path id="Path_18405" data-name="Path 18405" d="M93.461,307.2,58.437,327.419V314.481L93.461,294.26Z" transform="translate(-27.73 -139.634)" fill="#ee2934"/>
|
||||
<path id="Path_18406" data-name="Path 18406" d="M187.084,248.32l-82.352,47.536a3.571,3.571,0,0,1-4.233-.111,4.334,4.334,0,0,1-2.213-3.61l.006-70.189a5.92,5.92,0,0,1,2.678-4.638l82.352-47.536a3.759,3.759,0,0,1,3.927.171c1.04.6,2.519,1.842,2.519,3.55l-.007,70.189a5.037,5.037,0,0,1-2.678,4.638" transform="translate(-46.64 -80.333)" fill="#263238"/>
|
||||
<path id="Path_18407" data-name="Path 18407" d="M187.346,245.8l.007-71.426-82.689,47.745-4.871-2.812a5.476,5.476,0,0,1,1.893-2l82.352-47.536a3.759,3.759,0,0,1,3.927.171c1.04.6,2.519,1.843,2.519,3.551l-.007,70.189a5.107,5.107,0,0,1-1.081,3.3l-.151-.087Z" transform="translate(-47.354 -80.333)" fill="#37474f"/>
|
||||
<path id="Path_18408" data-name="Path 18408" d="M108.763,298.225l82.213-47.457a4.723,4.723,0,0,0,2.129-3.688l.006-69.147c0-1.834-1.3-2.587-2.887-1.671l-81.707,47.164a4.163,4.163,0,0,0-1.876,3.255L106.634,297c0,1.353.957,1.906,2.129,1.23" transform="translate(-50.601 -83.456)" fill="#455a64"/>
|
||||
<path id="Path_18409" data-name="Path 18409" d="M119.565,296.833l71.566-41.309a4.535,4.535,0,0,0,2.051-3.549l.007-66.772c0-1.307-.913-1.837-2.046-1.183L119.03,225.645a4.576,4.576,0,0,0-1.955,2.788c-.018.087-.039.17-.055.255a3.459,3.459,0,0,0-.039.5l-.007,65.908,0,.236c0,1.648,1.166,2.32,2.592,1.5" transform="translate(-55.507 -87.189)"/>
|
||||
<path id="Path_18410" data-name="Path 18410" d="M189.705,251.548a4.537,4.537,0,0,1-2.051,3.549l-70.679,40.8.007-65.7a3.528,3.528,0,0,1,.038-.5c.016-.085.036-.169.055-.256a4.576,4.576,0,0,1,1.955-2.788l70.682-40.8Z" transform="translate(-55.508 -88.189)" fill="#ee2934"/>
|
||||
<g id="Group_17391" data-name="Group 17391" transform="translate(61.467 97.658)" opacity="0.5">
|
||||
<g id="Group_17390" data-name="Group 17390">
|
||||
<g id="Group_17389" data-name="Group 17389" clip-path="url(#clip-path-4)">
|
||||
<path id="Path_18411" data-name="Path 18411" d="M189.705,251.548a4.537,4.537,0,0,1-2.051,3.549l-70.679,40.8.007-65.7a3.528,3.528,0,0,1,.038-.5c.016-.085.036-.169.055-.256a4.576,4.576,0,0,1,1.955-2.788l70.682-40.8Z" transform="translate(-116.975 -185.847)" fill="#fff"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<path id="Path_18412" data-name="Path 18412" d="M111.372,319.69l-.02,10.04c0,.354.233.507.521.34a1.191,1.191,0,0,0,.522-.943l.019-10.04c0-.355-.233-.507-.521-.341a1.191,1.191,0,0,0-.521.943" transform="translate(-52.839 -151.222)" fill="#263238"/>
|
||||
<path id="Path_18413" data-name="Path 18413" d="M110.95,344.684c0,.4.28.561.625.362a1.384,1.384,0,0,0,.626-1.084c0-.4-.28-.561-.626-.362a1.383,1.383,0,0,0-.625,1.084" transform="translate(-52.649 -163.007)" fill="#263238"/>
|
||||
<path id="Path_18414" data-name="Path 18414" d="M122.667,250.582a2.263,2.263,0,0,1-2.045.038.657.657,0,0,1-.388-.56c0-.145-.006-.7,0-.855a.775.775,0,0,1,.456-.616l6.47-3.736a2.263,2.263,0,0,1,2.045-.038.671.671,0,0,1,.387.532c.006.154.006.731,0,.881a.774.774,0,0,1-.456.617Z" transform="translate(-57.053 -116.065)" fill="#263238"/>
|
||||
<path id="Path_18415" data-name="Path 18415" d="M122.667,249.731l6.47-3.736c.583-.336.612-.865.066-1.18a2.262,2.262,0,0,0-2.045.037l-6.471,3.736c-.583.336-.612.865-.065,1.181a2.263,2.263,0,0,0,2.045-.038" transform="translate(-57.053 -116.064)" fill="#455a64"/>
|
||||
<path id="Path_18416" data-name="Path 18416" d="M144.218,238.139a2.263,2.263,0,0,1-2.045.038.656.656,0,0,1-.388-.56c0-.145-.006-.7,0-.855a.775.775,0,0,1,.456-.616l6.471-3.736a2.263,2.263,0,0,1,2.045-.038.671.671,0,0,1,.387.532c.006.154.006.731,0,.881a.774.774,0,0,1-.456.617Z" transform="translate(-67.279 -110.16)" fill="#263238"/>
|
||||
<path id="Path_18417" data-name="Path 18417" d="M144.217,237.289l6.47-3.736c.583-.336.612-.865.066-1.18a2.262,2.262,0,0,0-2.045.037l-6.471,3.736c-.583.336-.612.865-.065,1.181a2.263,2.263,0,0,0,2.045-.038" transform="translate(-67.279 -110.16)" fill="#455a64"/>
|
||||
<path id="Path_18418" data-name="Path 18418" d="M135.492,235.971l55.129-31.828v62.735l-55.129,31.829Z" transform="translate(-64.295 -96.871)" fill="#fafafa"/>
|
||||
<path id="Path_18419" data-name="Path 18419" d="M190.193,204.18v62.215l-54.68,31.569V235.749Zm.45-.78-55.58,32.089v63.254l55.58-32.089Z" transform="translate(-64.091 -96.519)" fill="#e0e0e0"/>
|
||||
<path id="Path_18420" data-name="Path 18420" d="M188.971,202.434l-1.852-1.07-55.58,32.089,1.853,1.07Z" transform="translate(-62.418 -95.553)" fill="#f0f0f0"/>
|
||||
<path id="Path_18421" data-name="Path 18421" d="M131.538,262.432l1.853,1.069v63.255l-1.852,1.069Z" transform="translate(-62.418 -124.531)" fill="#e0e0e0"/>
|
||||
<path id="Path_18422" data-name="Path 18422" d="M144.93,271.684a4.132,4.132,0,0,1,.032.679,4.589,4.589,0,0,1-.032.714l-3.24,1.871a4.2,4.2,0,0,1-.031-.678,5.427,5.427,0,0,1,.031-.715l1-.579v-7.05l-.836.482a4.2,4.2,0,0,1-.031-.678,5.421,5.421,0,0,1,.031-.715l2.8-1.617,2.665,5.066v-5.211l-.837.482a4.2,4.2,0,0,1-.031-.678,5.421,5.421,0,0,1,.031-.715l3.178-1.834a4.147,4.147,0,0,1,.032.679,4.6,4.6,0,0,1-.032.715l-.941.543v8.443l-1.557.9-3.072-5.778v6.158Z" transform="translate(-67.221 -123.617)" fill="#455a64"/>
|
||||
<path id="Path_18423" data-name="Path 18423" d="M163.661,253.505v2.425a5.415,5.415,0,0,1-.512.337,4.071,4.071,0,0,1-.533.266V255.5l-2.518,1.453v2.563l1.2-.693v-1.017a4.541,4.541,0,0,1,.522-.344,2.309,2.309,0,0,1,.5-.247v3.441a2.664,2.664,0,0,1-.5.331,3.176,3.176,0,0,1-.522.26v-1.058l-1.2.694v3.121l2.623-1.514v-1.31a5.108,5.108,0,0,1,.533-.349,4.5,4.5,0,0,1,.512-.254v2.7l-6.009,3.469a5.64,5.64,0,0,1-.032-.678,6.184,6.184,0,0,1,.032-.715l.94-.542v-7.05l-.836.482a4.921,4.921,0,0,1-.031-.678c0-.4.031-.716.031-.716Z" transform="translate(-74.845 -120.295)" fill="#455a64"/>
|
||||
<path id="Path_18424" data-name="Path 18424" d="M174.546,246.967l1.453-.838,1.306,5.739.074-.043s.575-4.706.784-7.362l-.836.482s-.022-.239-.022-.712.022-.682.022-.682l2.842-1.641a4.593,4.593,0,0,1,.032.651,5.88,5.88,0,0,1-.032.743l-.731.422c-.261,3.007-1,9.022-1,9.022l-2.132,1.231-1.076-4.742-1.077,5.986-2.132,1.231s-.794-5.018-.993-7.87l-.732.422s-.021-.239-.021-.713.021-.681.021-.681l2.958-1.707a4.588,4.588,0,0,1,.031.651,5.869,5.869,0,0,1-.031.742l-.836.483c.146,2.507.762,6.47.762,6.47l.074-.042Z" transform="translate(-80.798 -114.793)" fill="#455a64"/>
|
||||
<path id="Path_18425" data-name="Path 18425" d="M194.488,239.452a4.223,4.223,0,0,1-.554.362,3.835,3.835,0,0,1-.6.3v-.989s-.366-.165-1.066.24a2.607,2.607,0,0,0-1.233,2.022c0,.488.115.937.585.86l1.369-.205c.731-.1,1.84-.031,1.84,1.823a5.016,5.016,0,0,1-2.717,4.41c-1.683.972-2.446.228-2.446.228v-1.867a5.426,5.426,0,0,1,.554-.362,4.649,4.649,0,0,1,.6-.3v1.045s.387.279,1.3-.246a2.424,2.424,0,0,0,1.317-2.1c0-.71-.449-.938-.931-.87l-1.494.223c-1.035.151-1.369-.631-1.369-1.843a5.488,5.488,0,0,1,2.633-4.321,2.455,2.455,0,0,1,2.215-.164Z" transform="translate(-89.989 -112.704)" fill="#455a64"/>
|
||||
<path id="Path_18426" data-name="Path 18426" d="M219.182,216.384l-14.827,8.561v10.064l14.827-8.561Z" transform="translate(-96.972 -102.68)" fill="#e0e0e0"/>
|
||||
<path id="Path_18427" data-name="Path 18427" d="M189.488,244.338l-47.709,27.545v-2.6l47.709-27.545Z" transform="translate(-67.278 -114.709)" fill="#ee2934"/>
|
||||
<path id="Path_18428" data-name="Path 18428" d="M156.908,312.5l-15.129,8.735V297.417l15.129-8.735Z" transform="translate(-67.278 -136.987)" fill="#455a64"/>
|
||||
<path id="Path_18429" data-name="Path 18429" d="M144.541,301.923a.169.169,0,0,1-.084-.315l12.067-6.967a.169.169,0,1,1,.168.292L144.625,301.9a.167.167,0,0,1-.084.023" transform="translate(-68.508 -139.804)" fill="#fafafa"/>
|
||||
<path id="Path_18430" data-name="Path 18430" d="M144.541,305.943a.169.169,0,0,1-.084-.315l12.067-6.966a.169.169,0,1,1,.168.292l-12.067,6.967a.167.167,0,0,1-.084.023" transform="translate(-68.508 -141.712)" fill="#fafafa"/>
|
||||
<path id="Path_18431" data-name="Path 18431" d="M144.541,309.964a.169.169,0,0,1-.084-.315l12.067-6.966a.169.169,0,0,1,.168.292l-12.067,6.967a.167.167,0,0,1-.084.023" transform="translate(-68.508 -143.62)" fill="#fafafa"/>
|
||||
<path id="Path_18432" data-name="Path 18432" d="M144.541,313.984a.169.169,0,0,1-.084-.315l12.067-6.966a.169.169,0,1,1,.168.292l-12.067,6.967a.167.167,0,0,1-.084.023" transform="translate(-68.508 -145.528)" fill="#fafafa"/>
|
||||
<path id="Path_18433" data-name="Path 18433" d="M144.541,318a.169.169,0,0,1-.084-.315l12.067-6.966a.169.169,0,1,1,.168.292l-12.067,6.967a.167.167,0,0,1-.084.023" transform="translate(-68.508 -147.436)" fill="#fafafa"/>
|
||||
<path id="Path_18434" data-name="Path 18434" d="M144.541,322.025a.169.169,0,0,1-.084-.315l12.067-6.966a.169.169,0,1,1,.168.292L144.625,322a.167.167,0,0,1-.084.023" transform="translate(-68.508 -149.343)" fill="#fafafa"/>
|
||||
<path id="Path_18435" data-name="Path 18435" d="M144.541,326.046a.169.169,0,0,1-.084-.315l12.067-6.966a.169.169,0,1,1,.168.292l-12.067,6.967a.167.167,0,0,1-.084.023" transform="translate(-68.508 -151.251)" fill="#fafafa"/>
|
||||
<path id="Path_18436" data-name="Path 18436" d="M144.541,330.067a.169.169,0,0,1-.084-.315l12.067-6.966a.169.169,0,0,1,.168.292l-12.067,6.967a.167.167,0,0,1-.084.023" transform="translate(-68.508 -153.16)" fill="#fafafa"/>
|
||||
<path id="Path_18437" data-name="Path 18437" d="M144.541,334.088a.169.169,0,0,1-.084-.315l12.067-6.967a.169.169,0,1,1,.168.292l-12.067,6.967a.167.167,0,0,1-.084.023" transform="translate(-68.508 -155.067)" fill="#fafafa"/>
|
||||
<path id="Path_18438" data-name="Path 18438" d="M144.541,338.108a.169.169,0,0,1-.084-.315l12.067-6.967a.169.169,0,0,1,.168.292l-12.067,6.967a.166.166,0,0,1-.084.023" transform="translate(-68.508 -156.975)" fill="#fafafa"/>
|
||||
<path id="Path_18439" data-name="Path 18439" d="M206.172,292.645l-29.234,16.878V269.765l29.234-16.878Z" transform="translate(-83.962 -120.002)" fill="#e0e0e0"/>
|
||||
<path id="Path_18440" data-name="Path 18440" d="M180.274,272.961l25.408-14.669c.357-.206.647-.039.647.374v20.853a1.431,1.431,0,0,1-.647,1.121l-25.407,14.669c-.357.207-.647.039-.647-.374V274.081a1.43,1.43,0,0,1,.647-1.12" transform="translate(-85.238 -122.525)" fill="#fff"/>
|
||||
<path id="Path_18441" data-name="Path 18441" d="M199.241,274.9,195,282.411l2.983,3.867-9.856-8.493-8.5,18.393v3.328c0,.412.29.58.647.373l25.407-14.669a1.43,1.43,0,0,0,.646-1.12v-2.712Zm2.932-3.946a2.815,2.815,0,0,0,1.273-2.205c0-.812-.57-1.141-1.273-.735a2.815,2.815,0,0,0-1.273,2.205c0,.812.57,1.141,1.273.735" transform="translate(-85.238 -127.096)" fill="#ee2934"/>
|
||||
<g id="Group_17394" data-name="Group 17394" transform="translate(94.39 140.741)" opacity="0.5">
|
||||
<g id="Group_17393" data-name="Group 17393">
|
||||
<g id="Group_17392" data-name="Group 17392" clip-path="url(#clip-path-5)">
|
||||
<path id="Path_18442" data-name="Path 18442" d="M199.241,274.9,195,282.411l2.983,3.867-9.856-8.493-8.5,18.393v3.328c0,.412.29.58.647.373l25.407-14.669a1.43,1.43,0,0,0,.646-1.12v-2.712Zm2.932-3.946a2.815,2.815,0,0,0,1.273-2.205c0-.812-.57-1.141-1.273-.735a2.815,2.815,0,0,0-1.273,2.205c0,.812.57,1.141,1.273.735" transform="translate(-179.628 -267.837)" fill="#fff"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<path id="Path_18443" data-name="Path 18443" d="M189.552,319.564l21.39-12.35v8.558l-21.39,12.349Z" transform="translate(-89.947 -145.781)" fill="#fafafa"/>
|
||||
<path id="Path_18444" data-name="Path 18444" d="M164.937,341.413l-23.158,13.37v-8.554l23.158-13.371Z" transform="translate(-67.278 -157.95)" fill="#ee2934"/>
|
||||
<path id="Path_18445" data-name="Path 18445" d="M36.822,374.792l-4.808,2.79a34.339,34.339,0,0,0-2.407-18.175c-2.013-4.474-5.189-7.642-6.633-10.128-3.132-5.4,2.694-8.962,7.711-5.676,4.221,2.764,7.213,8.762,7.639,16.017.364,6.2-.83,13.4-1.5,15.17" transform="translate(-10.483 -162.45)" fill="#ee2934"/>
|
||||
<path id="Path_18446" data-name="Path 18446" d="M39.358,377.268a.234.234,0,0,0,.054.012.267.267,0,0,0,.3-.232c1.949-15.4-1.97-23.862-7.266-28.678a.268.268,0,1,0-.361.4c5.224,4.751,9.016,13.036,7.095,28.213a.268.268,0,0,0,.179.287" transform="translate(-15.183 -165.277)" fill="#fff"/>
|
||||
<path id="Path_18447" data-name="Path 18447" d="M10.912,369.573c-.071,1.793,2.237,2.737,2.348,4.478s-1.721,2.261-2.074,4.519c-.218,1.4,1.4,2.612,2.818,2.941,6.887,1.6.5,8.28,6.7,11.364l7.765-4.484c2.123-1.584,3.206-5.084,1.854-7.516-.811-1.46-2.683-1.917-3.438-3.369-.677-1.3.081-2.913-.237-4.346-.323-1.45-1.644-2.114-2.928-2.547-1.323-.446-2.769-.106-3.985-.775a39.912,39.912,0,0,0-3.577-2.156c-1.811-.871-4.935-.459-5.245,1.892" transform="translate(-5.177 -174.275)" fill="#ee2934"/>
|
||||
<g id="Group_17397" data-name="Group 17397" transform="translate(5.733 192.985)" opacity="0.5">
|
||||
<g id="Group_17396" data-name="Group 17396">
|
||||
<g id="Group_17395" data-name="Group 17395" clip-path="url(#clip-path-6)">
|
||||
<path id="Path_18448" data-name="Path 18448" d="M10.912,369.573c-.071,1.793,2.237,2.737,2.348,4.478s-1.721,2.261-2.074,4.519c-.218,1.4,1.4,2.612,2.818,2.941,6.887,1.6.5,8.28,6.7,11.364l7.765-4.484c2.123-1.584,3.206-5.084,1.854-7.516-.811-1.46-2.683-1.917-3.438-3.369-.677-1.3.081-2.913-.237-4.346-.323-1.45-1.644-2.114-2.928-2.547-1.323-.446-2.769-.106-3.985-.775a39.912,39.912,0,0,0-3.577-2.156c-1.811-.871-4.935-.459-5.245,1.892" transform="translate(-10.91 -367.26)" fill="#fff"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<path id="Path_18449" data-name="Path 18449" d="M26.168,379.845a.191.191,0,0,0-.046-.088,20.987,20.987,0,0,0-9.523-9.291.194.194,0,0,0-.142.362,20.562,20.562,0,0,1,9.065,8.6,10.714,10.714,0,0,0-8.547-.573.194.194,0,1,0,.159.355,10.336,10.336,0,0,1,8.7.813,16.258,16.258,0,0,1,1.345,10.33.193.193,0,0,0,.14.223l.016,0a.194.194,0,0,0,.226-.156,16.609,16.609,0,0,0-1.388-10.583" transform="translate(-7.751 -175.79)" fill="#fff"/>
|
||||
<path id="Path_18450" data-name="Path 18450" d="M31.629,120.234l-1.564-.228a2.347,2.347,0,0,1-1.692-2.872,67.353,67.353,0,0,1,1.854-8.007,2.305,2.305,0,0,1,2.766-1.779l1.5.483a2.311,2.311,0,0,1,1.34,2.9,62.421,62.421,0,0,0-1.72,7.427,2.346,2.346,0,0,1-2.489,2.072m.841-11.192a.657.657,0,0,0-.775.5,66.13,66.13,0,0,0-1.819,7.855.666.666,0,0,0,.471.808l1.559.264a.655.655,0,0,0,.708-.582,63.826,63.826,0,0,1,1.755-7.578.648.648,0,0,0-.384-.823l-1.515-.449" transform="translate(-13.441 -50.899)" fill="#e0e0e0"/>
|
||||
<path id="Path_18451" data-name="Path 18451" d="M36.14,104.265a.827.827,0,0,1-.5-1.057,65.028,65.028,0,0,1,3.535-9.961.77.77,0,1,1,1.4.607,63.707,63.707,0,0,0-3.467,9.767.831.831,0,0,1-.968.644" transform="translate(-16.893 -43.988)" fill="#e0e0e0"/>
|
||||
<path id="Path_18452" data-name="Path 18452" d="M41.1,87.727l-1.468-.589a2.289,2.289,0,0,1-1.01-3.1,66.764,66.764,0,0,1,3.555-7.14,2.273,2.273,0,0,1,3.071-1.041l1.354.816a2.274,2.274,0,0,1,.664,3.083,61.756,61.756,0,0,0-3.3,6.621,2.29,2.29,0,0,1-2.87,1.352m3.271-10.381a.648.648,0,0,0-.862.3,65.377,65.377,0,0,0-3.488,7.005.648.648,0,0,0,.281.87l1.453.621a.639.639,0,0,0,.814-.377,63.017,63.017,0,0,1,3.365-6.758.637.637,0,0,0-.192-.873l-1.371-.786" transform="translate(-18.218 -35.868)" fill="#e0e0e0"/>
|
||||
<path id="Path_18453" data-name="Path 18453" d="M48.946,73.7a.813.813,0,0,1-.255-1.123A65.129,65.129,0,0,1,54.3,63.878a.768.768,0,1,1,1.226.911,63.9,63.9,0,0,0-5.5,8.524.817.817,0,0,1-1.08.383" transform="translate(-23.048 -30.138)" fill="#e0e0e0"/>
|
||||
<path id="Path_18454" data-name="Path 18454" d="M57.116,59.9l-1.3-.9a2.263,2.263,0,0,1-.317-3.215A67.062,67.062,0,0,1,60.48,49.7a2.26,2.26,0,0,1,3.209-.321l1.141,1.094a2.26,2.26,0,0,1-.016,3.136,62.218,62.218,0,0,0-4.62,5.646,2.27,2.27,0,0,1-3.078.648m5.4-9.275a.642.642,0,0,0-.9.095,65.726,65.726,0,0,0-4.886,5.972.644.644,0,0,0,.085.9l1.28.929a.636.636,0,0,0,.873-.18,63.529,63.529,0,0,1,4.714-5.762.633.633,0,0,0,0-.889l-1.164-1.069" transform="translate(-26.091 -23.18)" fill="#e0e0e0"/>
|
||||
<path id="Path_18455" data-name="Path 18455" d="M67.782,48.227a.806.806,0,0,1-.007-1.144A65.448,65.448,0,0,1,75.1,39.894a.768.768,0,1,1,1,1.157A64.211,64.211,0,0,0,68.914,48.1a.813.813,0,0,1-1.132.127" transform="translate(-32.05 -18.825)" fill="#e0e0e0"/>
|
||||
<path id="Path_18456" data-name="Path 18456" d="M95.741,24.564l-.889-1.307A2.256,2.256,0,0,1,95.7,20.15a67.248,67.248,0,0,1,6.82-3.887,2.259,2.259,0,0,1,3.11.852l.671,1.431a2.263,2.263,0,0,1-1.143,2.923,62.5,62.5,0,0,0-6.325,3.6,2.26,2.26,0,0,1-3.094-.509m8.346-6.7a.642.642,0,0,0-.875-.235,66.144,66.144,0,0,0-6.69,3.813.642.642,0,0,0-.243.873l.86,1.326a.633.633,0,0,0,.876.148,63.73,63.73,0,0,1,6.454-3.679.634.634,0,0,0,.321-.83l-.7-1.416" transform="translate(-44.855 -7.581)" fill="#e0e0e0"/>
|
||||
<path id="Path_18457" data-name="Path 18457" d="M110.079,17.85a.807.807,0,0,1,.4-1.071,65.4,65.4,0,0,1,9.442-4.091.768.768,0,1,1,.513,1.439,64.021,64.021,0,0,0-9.258,4.011.811.811,0,0,1-1.1-.288" transform="translate(-52.197 -5.995)" fill="#e0e0e0"/>
|
||||
<path id="Path_18458" data-name="Path 18458" d="M125.5,10.911c-.229-.589-.343-.884-.572-1.473a2.265,2.265,0,0,1,1.538-2.843,66.886,66.886,0,0,1,7.583-2.268,2.277,2.277,0,0,1,2.864,1.528l.329,1.546a2.28,2.28,0,0,1-1.8,2.594,61.977,61.977,0,0,0-7.032,2.1,2.264,2.264,0,0,1-2.91-1.188m9.72-4.675a.647.647,0,0,0-.807-.426,65.553,65.553,0,0,0-7.439,2.225.645.645,0,0,0-.437.8l.539,1.486a.635.635,0,0,0,.824.34,63.384,63.384,0,0,1,7.176-2.147.638.638,0,0,0,.507-.738l-.364-1.538" transform="translate(-59.22 -2.015)" fill="#e0e0e0"/>
|
||||
<path id="Path_18459" data-name="Path 18459" d="M141.386,7.832a.812.812,0,0,1,.644-.954A64.931,64.931,0,0,1,152.3,5.015a.82.82,0,0,1,.95.666.823.823,0,0,1-.778.851A63.723,63.723,0,0,0,142.4,8.359a.816.816,0,0,1-1.016-.527" transform="translate(-67.081 -2.377)" fill="#e0e0e0"/>
|
||||
<path id="Path_18460" data-name="Path 18460" d="M157.434,4.517c-.092-.626-.139-.938-.231-1.564A2.286,2.286,0,0,1,159.377.519,66.822,66.822,0,0,1,167.441,0a2.318,2.318,0,0,1,2.512,2.135c-.011.632-.016.948-.027,1.581a2.314,2.314,0,0,1-2.4,2.12,62.043,62.043,0,0,0-7.48.481,2.289,2.289,0,0,1-2.613-1.8m10.738-2.392a.659.659,0,0,0-.708-.6,65.591,65.591,0,0,0-7.912.509.651.651,0,0,0-.615.681c.078.627.117.941.195,1.569a.643.643,0,0,0,.739.514,63.167,63.167,0,0,1,7.633-.491.647.647,0,0,0,.676-.6c0-.632-.006-.948-.009-1.581" transform="translate(-74.588 0)" fill="#e0e0e0"/>
|
||||
<path id="Path_18461" data-name="Path 18461" d="M174.343,4.877a.823.823,0,0,1,.862-.785,65.543,65.543,0,0,1,10.74.533.838.838,0,0,1,.8.869.843.843,0,0,1-.983.647,64.2,64.2,0,0,0-10.53-.523.829.829,0,0,1-.893-.741" transform="translate(-82.73 -1.93)" fill="#e0e0e0"/>
|
||||
<path id="Path_18462" data-name="Path 18462" d="M83.132,26.5a.347.347,0,0,1,.611-.3l1.382,1.834a.347.347,0,1,1-.554.418l-1.383-1.834a.355.355,0,0,1-.056-.114" transform="translate(-39.442 -12.363)" fill="#e0e0e0"/>
|
||||
<path id="Path_18463" data-name="Path 18463" d="M79.944,32.627a.355.355,0,0,1-.011-.142.348.348,0,0,1,.391-.3l2.3.313a.347.347,0,0,1-.094.688l-2.3-.314a.347.347,0,0,1-.287-.249" transform="translate(-37.929 -15.273)" fill="#e0e0e0"/>
|
||||
<path id="Path_18464" data-name="Path 18464" d="M89.861,27.1a.369.369,0,0,1-.013-.091l-.025-2.385a.347.347,0,0,1,.694-.007L90.542,27a.347.347,0,0,1-.681.1" transform="translate(-42.623 -11.519)" fill="#e0e0e0"/>
|
||||
<path id="Path_18465" data-name="Path 18465" d="M93.142,39.82a.347.347,0,0,1,.637-.263l1.006,1.807a.347.347,0,1,1-.606.338L93.173,39.9a.339.339,0,0,1-.031-.075" transform="translate(-44.192 -18.686)" fill="#e0e0e0"/>
|
||||
<path id="Path_18466" data-name="Path 18466" d="M95.011,36.811a.347.347,0,0,1,.428-.429l2.03.569a.347.347,0,1,1-.187.668l-2.03-.569a.348.348,0,0,1-.241-.24" transform="translate(-45.079 -17.258)" fill="#e0e0e0"/>
|
||||
<path id="Path_18467" data-name="Path 18467" d="M88.442,42.108a.341.341,0,0,1-.011-.139l.272-2.13a.347.347,0,1,1,.689.088l-.273,2.13a.347.347,0,0,1-.678.051" transform="translate(-41.962 -18.761)" fill="#e0e0e0"/>
|
||||
<path id="Path_18468" data-name="Path 18468" d="M415.32,350.334c-.088-3.1.445-28.238.445-28.238L403.5,329.734c1.952,13.789,3.549,20.289,3.756,22.677a2.646,2.646,0,0,1,.086.487c.042,2.731,3.321,4.171,5.887,5.966a47.821,47.821,0,0,0,6.931,4.175c1.859.859,5.615.9,6.067-.228-3.123-2.2-6.735-4.608-9.227-7.134-1.19-1.206-1.594-2.47-1.676-5.344" transform="translate(-191.47 -152.843)" fill="#c8856a"/>
|
||||
<path id="Path_18469" data-name="Path 18469" d="M433.723,399.714a2.237,2.237,0,0,1-.437,2.361,11.1,11.1,0,0,1-7.76,1.75,13.966,13.966,0,0,1-7.53-2.747c-1.559-1.207-3.744-2.908-5.495-3.254a10.916,10.916,0,0,1-3.921-1.467c-.524-.468-.476-2.576-.476-2.576Z" transform="translate(-193.656 -186.86)" fill="#263238"/>
|
||||
<path id="Path_18470" data-name="Path 18470" d="M409.323,378.389s-.268-.025-.362.464c-.112.582-.222,2.271-.466,3.226a16.13,16.13,0,0,0-.322,5.123c.225,1.077,2.879,1.8,4.576,2.391a21.768,21.768,0,0,1,5.513,3.212,16.519,16.519,0,0,0,8.181,2.784c3.842.014,6.319-1,7.073-2.308.932-1.624.177-2.552-4.261-4.44-.84-.357-3.794-1.969-4.8-2.554a14.634,14.634,0,0,1-6.238-6.557,1.6,1.6,0,0,0-.645-.865,1.488,1.488,0,0,0-.859-.065,10.96,10.96,0,0,0-2.59.551c-.59.273-1.427.592-1.406,1.309a2.278,2.278,0,0,0,.174.727c.055.146.1.34-.036.428s-.3-.008-.415-.1a11.075,11.075,0,0,1-1.205-1.338,4.178,4.178,0,0,0-.706-.665,7.617,7.617,0,0,1-.761-.456,1.43,1.43,0,0,1-.444-.864" transform="translate(-193.645 -179.555)" fill="#1b2d51"/>
|
||||
<path id="Path_18471" data-name="Path 18471" d="M442.979,398.874c-5.558.418-7.273,3.682-7.486,5.693a13.81,13.81,0,0,0,3.958.744c3.843.014,6.478-1,7.231-2.308.879-1.532.256-2.755-3.7-4.129" transform="translate(-206.653 -189.276)" fill="#fafafa"/>
|
||||
<path id="Path_18472" data-name="Path 18472" d="M433.625,397a.279.279,0,0,1-.172-.056.248.248,0,0,1-.043-.361,6.728,6.728,0,0,1,5.008-1.924.26.26,0,0,1,.244.28.266.266,0,0,1-.3.231,6.237,6.237,0,0,0-4.532,1.735.274.274,0,0,1-.209.1" transform="translate(-205.637 -187.269)" fill="#f0f0f0"/>
|
||||
<path id="Path_18473" data-name="Path 18473" d="M429.038,394.54a.278.278,0,0,1-.172-.056.247.247,0,0,1-.043-.361,6.716,6.716,0,0,1,5.008-1.924.261.261,0,0,1,.244.28.265.265,0,0,1-.3.231,6.226,6.226,0,0,0-4.532,1.735.275.275,0,0,1-.209.1" transform="translate(-203.46 -186.099)" fill="#f0f0f0"/>
|
||||
<path id="Path_18474" data-name="Path 18474" d="M424.782,391.717a.281.281,0,0,1-.173-.057.247.247,0,0,1-.043-.361,6.737,6.737,0,0,1,5.008-1.925.261.261,0,0,1,.244.28.266.266,0,0,1-.3.231,6.236,6.236,0,0,0-4.531,1.735.277.277,0,0,1-.209.1" transform="translate(-201.44 -184.759)" fill="#f0f0f0"/>
|
||||
<path id="Path_18475" data-name="Path 18475" d="M420.611,388.861a.278.278,0,0,1-.169-.054.247.247,0,0,1-.048-.36,6.88,6.88,0,0,1,5.471-1.955.26.26,0,0,1,.244.28.268.268,0,0,1-.3.231,6.38,6.38,0,0,0-4.989,1.759.276.276,0,0,1-.212.1" transform="translate(-199.461 -183.388)" fill="#f0f0f0"/>
|
||||
<path id="Path_18476" data-name="Path 18476" d="M364.207,349.2l-11.748-1.32c-.615,7.44-.244,15.8-.781,22.783-.1,1.315-1.119,10.185-.883,12.932.355,4.128,5.5,4.065,6.033,1.665s1.808-12.878,1.938-13.946c.43-4.471,2.674-11.743,4.689-19.651.1-.389.656-2.085.751-2.463" transform="translate(-166.445 -165.081)" fill="#c8856a"/>
|
||||
<path id="Path_18477" data-name="Path 18477" d="M356.148,420.362a10.611,10.611,0,0,1-1.439,5.38,3.84,3.84,0,0,1-4.308,1.433c-1.716-.411-3.914-1.509-4.406-3.572a12.425,12.425,0,0,1,0-5.7Z" transform="translate(-164.025 -198.308)" fill="#263238"/>
|
||||
<path id="Path_18478" data-name="Path 18478" d="M349.5,389.617c-.707.053-.916,3.264-1.323,6.48-.437,3.447-1.526,4.873-1.917,7.7-.446,3.229-.266,4.671.931,6.624s5.435,3.867,7.524,1.071c1.7-2.279,1.773-4.807,1.618-8.031a67.673,67.673,0,0,1,.228-8.17c.138-2.418.7-4.855.09-5.124-.047.355-.094.806-.143,1.154-.038.267-.109,1.576-.506,1.589a4.8,4.8,0,0,1-.008-.911,1.03,1.03,0,0,0-.193-.779,1.366,1.366,0,0,0-.785-.332c-.7-.13-2.17-.189-2.877-.249-.352-.029-.705-.046-1.059-.042a2.959,2.959,0,0,0-.9.121.616.616,0,0,0-.383.328,1.009,1.009,0,0,0-.037.369,2.548,2.548,0,0,1-.088.663c-.026.1-.1.212-.2.189-.082-.019-.115-.116-.115-.2,0-.389.05-.673.069-1.126.009-.209.045-.5.048-.705s.005-.414.02-.62" transform="translate(-164.202 -184.884)" fill="#1b2d51"/>
|
||||
<path id="Path_18479" data-name="Path 18479" d="M346.049,419.28a7.561,7.561,0,0,0,.936,4.906c1.2,1.952,5.777,3.874,7.866,1.078a8.8,8.8,0,0,0,1.461-4.714c-1.252-2.155-8.288-3.1-10.263-1.27" transform="translate(-164.191 -198.498)" fill="#fafafa"/>
|
||||
<path id="Path_18480" data-name="Path 18480" d="M356.288,414.7a.3.3,0,0,1-.087-.023,10.872,10.872,0,0,0-6.1-.594.265.265,0,0,1-.314-.186.248.248,0,0,1,.2-.3,11.258,11.258,0,0,1,6.443.631.243.243,0,0,1,.124.331.267.267,0,0,1-.263.14" transform="translate(-165.98 -196.158)" fill="#f0f0f0"/>
|
||||
<path id="Path_18481" data-name="Path 18481" d="M350.506,409.391a.261.261,0,0,1-.222-.167.245.245,0,0,1,.164-.315,9.456,9.456,0,0,1,6.434.574.24.24,0,0,1,.11.334.274.274,0,0,1-.354.1,9.05,9.05,0,0,0-6.022-.543.277.277,0,0,1-.111.012" transform="translate(-166.212 -193.874)" fill="#f0f0f0"/>
|
||||
<path id="Path_18482" data-name="Path 18482" d="M350.852,405.008a.261.261,0,0,1-.22-.162.244.244,0,0,1,.158-.317,8.535,8.535,0,0,1,6.564.555.239.239,0,0,1,.088.34.27.27,0,0,1-.36.083,8.127,8.127,0,0,0-6.114-.512.272.272,0,0,1-.115.014" transform="translate(-166.377 -191.759)" fill="#f0f0f0"/>
|
||||
<path id="Path_18483" data-name="Path 18483" d="M351.261,400.177a.261.261,0,0,1-.219-.159.243.243,0,0,1,.153-.319,8.916,8.916,0,0,1,6.611.624.239.239,0,0,1,.1.338.266.266,0,0,1-.357.091,8.508,8.508,0,0,0-6.165-.59.272.272,0,0,1-.118.015" transform="translate(-166.571 -189.478)" fill="#ebebeb"/>
|
||||
<path id="Path_18484" data-name="Path 18484" d="M362.027,192.184a5.631,5.631,0,0,1-1.135,2.716c-3.111,4.365-5.542,8.561-5.792,16.478-.618,19.585-.138,39.877-.138,39.877-.135,1.727-1.6,4.788-2.263,13.738-.584,7.832-.377,18.563-.377,18.563s5.687,2.669,10.576.79c1.946-6.366,5.993-22.889,8.116-31.413a183,183,0,0,0,3.21-19.126l3.385,15.78a45.716,45.716,0,0,0,.129,10.2c.624,5.241,3.029,20.263,3.029,20.263s6.257,1.839,10.458-1.106c0,0,1.052-26.173,1.1-32.514.085-11.8.227-33.739-3.829-50.9-.166-.7-.629-3.553-.629-3.553-4.116,3.433-20.316,3.885-25.84.206" transform="translate(-167.169 -91.098)" fill="#1b2d51"/>
|
||||
<g id="Group_17400" data-name="Group 17400" transform="translate(186.276 103.879)" opacity="0.72">
|
||||
<g id="Group_17399" data-name="Group 17399">
|
||||
<g id="Group_17398" data-name="Group 17398" clip-path="url(#clip-path-7)">
|
||||
<path id="Path_18485" data-name="Path 18485" d="M369.625,200.437a.232.232,0,0,0-.276.162c-.228.911-.4,1.73-.57,2.522-.609,2.863-1.048,4.933-3.214,7.153a7.566,7.566,0,0,1-5.45,2.162,29.338,29.338,0,0,1,6.071-14.4.21.21,0,0,0-.042-.305.24.24,0,0,0-.323.039,29.853,29.853,0,0,0-6.2,14.821.2.2,0,0,0-.009.027c0,.006,0,.012,0,.018a54.645,54.645,0,0,0-.592,7.278c-.2,11.016-.508,27.663-.674,32.035a31.709,31.709,0,0,1-1.281,6.944c-.574,2.217-1.225,4.73-1.8,8.171-1.249,7.442-.613,19.666-.606,19.789a.225.225,0,0,0,.23.207h.012a.221.221,0,0,0,.218-.228c-.006-.122-.64-12.3.6-19.7.575-3.422,1.223-5.926,1.8-8.135a31.982,31.982,0,0,0,1.294-7.031c.166-4.376.472-21.026.674-32.043a54.5,54.5,0,0,1,.56-7.05c.068,0,.146,0,.242,0a7.917,7.917,0,0,0,5.616-2.307c2.254-2.31,2.7-4.429,3.328-7.362.168-.788.341-1.6.566-2.508a.217.217,0,0,0-.171-.262" transform="translate(-354.492 -197.686)" fill="#ee2934"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Group_17403" data-name="Group 17403" transform="translate(185.118 190.041)" opacity="0.72">
|
||||
<g id="Group_17402" data-name="Group 17402">
|
||||
<g id="Group_17401" data-name="Group 17401" clip-path="url(#clip-path-8)">
|
||||
<path id="Path_18486" data-name="Path 18486" d="M352.288,361.657c1.674,1.574,8.683,2.409,11.248,1.028l-1.074,4.2s-1.667,1.032-5.392.7c-4.321-.39-4.782-1.768-4.782-1.768Z" transform="translate(-352.288 -361.657)" fill="#fff"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Group_17406" data-name="Group 17406" transform="translate(213.237 185.448)" opacity="0.72">
|
||||
<g id="Group_17405" data-name="Group 17405">
|
||||
<g id="Group_17404" data-name="Group 17404" clip-path="url(#clip-path-9)">
|
||||
<path id="Path_18487" data-name="Path 18487" d="M405.8,354.14c2.221.734,8.5.28,10.916-1.223l-.1,3.5s-1.362,1.31-5.081,1.706-5.232-.618-5.232-.618Z" transform="translate(-405.8 -352.917)" fill="#fff"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Group_17409" data-name="Group 17409" transform="translate(185.118 190.041)" opacity="0.72">
|
||||
<g id="Group_17408" data-name="Group 17408">
|
||||
<g id="Group_17407" data-name="Group 17407" clip-path="url(#clip-path-8)">
|
||||
<path id="Path_18488" data-name="Path 18488" d="M352.288,361.657c1.674,1.574,8.683,2.409,11.248,1.028l-1.074,4.2s-1.667,1.032-5.392.7c-4.321-.39-4.782-1.768-4.782-1.768Z" transform="translate(-352.288 -361.657)" fill="#ee2934"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Group_17412" data-name="Group 17412" transform="translate(213.237 185.448)" opacity="0.72">
|
||||
<g id="Group_17411" data-name="Group 17411">
|
||||
<g id="Group_17410" data-name="Group 17410" clip-path="url(#clip-path-9)">
|
||||
<path id="Path_18489" data-name="Path 18489" d="M405.8,354.14c2.221.734,8.5.28,10.916-1.223l-.1,3.5s-1.362,1.31-5.081,1.706-5.232-.618-5.232-.618Z" transform="translate(-405.8 -352.917)" fill="#ee2934"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<path id="Path_18490" data-name="Path 18490" d="M394.036,249.861l2.431-19.341a12.227,12.227,0,0,0,9.765-4.709s.162,4.835-7.785,7.057L395.536,250.7l1.885,14.943Z" transform="translate(-186.981 -107.154)" fill="#0f1a2d"/>
|
||||
<path id="Path_18491" data-name="Path 18491" d="M371.712,79.307a8.62,8.62,0,0,0-7.477-.111c-3.212,1.654-3.823,3.451-4.139,7.231-.474,5.676-.878,7.388-1.561,8.675a4.771,4.771,0,0,1-2.829,2.36,3.306,3.306,0,0,0,3.216.163c-.6,2.725-1.414,5.012-.733,7.906a11.609,11.609,0,0,0,2.938,5.568c1.264,1.2,3.086,1.579,4.613,2.264a9.219,9.219,0,0,1-.813-6.823c.814-2.746,2.682-5.075,3.527-7.842,1.169-3.829,2.505-7.793,2.863-11.8a75.9,75.9,0,0,0,.394-7.595" transform="translate(-168.792 -37.202)" fill="#263238"/>
|
||||
<path id="Path_18492" data-name="Path 18492" d="M381.192,79.2c-.356-.585-2.572-.883-4.284.3s-3.1,3.2-1.864,4.834c1.159,1.529,8.511-2.877,6.148-5.132" transform="translate(-177.744 -37.338)" fill="#ee2934"/>
|
||||
<path id="Path_18493" data-name="Path 18493" d="M431.411,43.309c.775-2.192,1.526-2.5,2.206-2.253a1.34,1.34,0,0,1,.949,1.618,1.066,1.066,0,0,1,1.52-.4c.664.388.568,1.436.568,1.436a1.032,1.032,0,0,1,1.383-.157,1.383,1.383,0,0,1,.6,1.352s.483-.451,1.112.157a2.307,2.307,0,0,1,.7,1.822l-.643-.259a1.505,1.505,0,0,1-.4.542,4.44,4.44,0,0,0-.709,1.627c-.195.616-.341,1.362-.936,1.51a.848.848,0,0,1-1.116-.571,2.509,2.509,0,0,1,.036-.774s-.329.907-1.161.773-.821-.883-.851-1.366c-.484.192-.992.325-1.258-.049a6.05,6.05,0,0,1-.25-1.989l-1.339-.269a1.591,1.591,0,0,1-.768-1.386,3.57,3.57,0,0,1,.359-1.367" transform="translate(-204.543 -19.449)" fill="#c8856a"/>
|
||||
<path id="Path_18494" data-name="Path 18494" d="M426.89,52.475a1.091,1.091,0,0,1-.824.384c-.489-.028-.612-1.5-.612-1.5s-.644.778-1.3.682-.748-.943-.83-1.493c-.552.463-.808.37-1.143.064s-.268-1.808-.268-1.808a1.491,1.491,0,0,0,.9-.119c.544-.222.555-.969.555-.969l-2.294-1.657a3.311,3.311,0,0,0-1.367.112,2.959,2.959,0,0,0-1.478.9,17.2,17.2,0,0,0-.764,4.557,4.367,4.367,0,0,0,.94,3.376c.843,1.088,1.133,2.549,1.146,4.947s.606,16.725.606,16.725-6.674,10.611-8.321,12.128-3.163,2.211-4.449,3.386l8.555,10.188c.47-1.922,1.29-3.093,2.826-5.37,4.562-6.764,6.525-10.01,7.432-11.451,3.43-5.449,3.525-5.79,3.125-9.2-.809-6.878-1.751-13.674-2.039-16.475a6.6,6.6,0,0,1,.419-3.771,24.678,24.678,0,0,0,1.512-6.835l-1.4-1.009Z" transform="translate(-193.32 -21.844)" fill="#c8856a"/>
|
||||
<path id="Path_18495" data-name="Path 18495" d="M406.981,108.775c.8-.8,3.168-2.34,4.134-3.174s3.744-4.751,5.828-7.927,2.869-4.308,2.869-4.308L419.5,81.35a12.963,12.963,0,0,0,4.39.7,8.125,8.125,0,0,0,3.763-.852S429,89.31,429.431,92.946s.272,3.793-1.507,6.687c-2.217,3.608-10.107,15.617-10.893,17.219a11.987,11.987,0,0,0-1,3.34Z" transform="translate(-193.123 -38.529)" fill="#1b2d51"/>
|
||||
<path id="Path_18496" data-name="Path 18496" d="M430.353,49.4a9.636,9.636,0,0,1,2.558,1.628,10.579,10.579,0,0,1,2.28,3.1,6.578,6.578,0,0,0-1.531-3.036.951.951,0,0,0,.49-.184c-.006.693.1,1.349.975,1.366a1.108,1.108,0,0,0,1.017-.458.958.958,0,0,0,.519.929.884.884,0,0,0,1.136-.232,1.53,1.53,0,0,0,.127-.23.109.109,0,0,0,.012-.043c0-.006,0-.014-.025-.014l-.1.09a1.011,1.011,0,0,1-.877.291.812.812,0,0,1-.4-.585,3.462,3.462,0,0,1,.028-1.134.068.068,0,0,0-.007-.045c-.022-.033-.074-.006-.1.024-.152.167-.258.372-.4.549a.918.918,0,0,1-.778.364c-.622-.015-.765-.778-.743-1.278.007-.166.025-.331.025-.5,0-.023-.008-.055-.032-.054a.043.043,0,0,0-.02.009.807.807,0,0,0-.207.245,1.428,1.428,0,0,1-.231.266.767.767,0,0,1-.391.212c-.33.051-.466-.251-.576-.506a2.6,2.6,0,0,1-.183-1.333c0-.014,0-.028,0-.042l.12.018c1.2.172,1.628-1,1.247-1.308a12.982,12.982,0,0,0-2.41-1.622,3.015,3.015,0,0,0-1.274.2l1.212-.045s2.321,1.533,2.291,1.8a.857.857,0,0,1-.91.713,7.513,7.513,0,0,1-1.753-.353c-.052.471-1.1,1.192-1.1,1.192m.738-.426a.95.95,0,0,0,.415-.422s.281.075,1.2.214a5.138,5.138,0,0,0-.238.592,1.035,1.035,0,0,1-.184.3.388.388,0,0,1-.079.058,8.77,8.77,0,0,0-1.117-.744" transform="translate(-204.214 -21.768)" fill="#af6152"/>
|
||||
<path id="Path_18497" data-name="Path 18497" d="M392.289,155.7c-.452,3.738-.782,8.15-.782,8.15,1.421,7.423,2.349,14.129,2.349,14.129-12.772,6.815-32.1,1.853-34.526-.956,1.2-6.325,5.112-12.028,4.4-15.41l-3.079-12.865s5.884-3.006,5.384-12.3c0,0,5.344-.75,8.773-1.085a40.607,40.607,0,0,0,9.559-1.685c2.051,1.121,6.213,5.608,8.653,9.546,2.482,4.007,3.117,8.443-.734,12.476" transform="translate(-170.512 -63.436)" fill="#fff"/>
|
||||
<g id="Group_17415" data-name="Group 17415" transform="translate(188.819 70.246)" opacity="0.72">
|
||||
<g id="Group_17414" data-name="Group 17414">
|
||||
<g id="Group_17413" data-name="Group 17413" clip-path="url(#clip-path-12)">
|
||||
<path id="Path_18498" data-name="Path 18498" d="M392.289,155.7c-.452,3.738-.782,8.15-.782,8.15,1.421,7.423,2.349,14.129,2.349,14.129-12.772,6.815-32.1,1.853-34.526-.956,1.2-6.325,5.112-12.028,4.4-15.41l-3.079-12.865s5.884-3.006,5.384-12.3c0,0,5.344-.75,8.773-1.085a40.607,40.607,0,0,0,9.559-1.685c2.051,1.121,6.213,5.608,8.653,9.546,2.482,4.007,3.117,8.443-.734,12.476" transform="translate(-359.331 -133.682)" fill="#ee2934"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Group_17418" data-name="Group 17418" transform="translate(199.638 89.096)" opacity="0.1">
|
||||
<g id="Group_17417" data-name="Group 17417">
|
||||
<g id="Group_17416" data-name="Group 17416" clip-path="url(#clip-path-13)">
|
||||
<path id="Path_18499" data-name="Path 18499" d="M392.25,172.394s-3.333,2.947-7.427,1.784a6.867,6.867,0,0,1-4.9-4.625,6.058,6.058,0,0,0,5.018,5.84,6.63,6.63,0,0,0,7.311-3" transform="translate(-379.92 -169.553)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<path id="Path_18500" data-name="Path 18500" d="M392.511,91.671c2.27-9.216-6.28-13.7-14.646-12.031-2.755.551-6.29,2.216-6.581,6.168-3.628,1.231-5.272,6.164-2.894,11.334,1.726,3.751,5.041,5.563,6.578,7.855Z" transform="translate(-174.282 -37.628)" fill="#263238"/>
|
||||
<path id="Path_18501" data-name="Path 18501" d="M373.344,98.718c2.324-1.08,3.564,1.351,3.564,1.351,1.549.917,2.357-2.166,2.671-3.1.548-1.625,1.048-3.934,2.818-4.643a4.816,4.816,0,0,1,4.058.63,3.088,3.088,0,0,0,2.438.266c.721-.215.924-1.357,1.579-1.728,1.885-1.069,3.439,2.036,3.736,3.537a30.694,30.694,0,0,1,.582,6.077c.019,6.827-1.38,9.179-3.347,10.307-1.141.655-2.569.854-4.856.719l.262,3.093a15.029,15.029,0,0,1,2.883,7.471,32.892,32.892,0,0,1-12.637-6.687l-.913-10.068c-.409.9-2.107,1.059-3.4-.515-1.671-2.04-1.668-5.678.56-6.713" transform="translate(-176.331 -43.314)" fill="#c8856a"/>
|
||||
<path id="Path_18502" data-name="Path 18502" d="M392.858,127.542a18.51,18.51,0,0,1-5.666-1.454,5.351,5.351,0,0,1-2.38-2.347A4.733,4.733,0,0,0,387.021,127c1.948,1.407,5.937,1.716,5.937,1.716Z" transform="translate(-182.604 -58.718)" fill="#af6152"/>
|
||||
<path id="Path_18503" data-name="Path 18503" d="M402.306,105.726l.781,5.893,3.216-1.6Z" transform="translate(-190.905 -50.17)" fill="#af6152"/>
|
||||
<path id="Path_18504" data-name="Path 18504" d="M396.539,107.152a.969.969,0,1,1-1.075-.889.981.981,0,0,1,1.075.889" transform="translate(-187.252 -50.422)" fill="#263238"/>
|
||||
<path id="Path_18505" data-name="Path 18505" d="M394.146,101.757l-2.342,1.317a1.4,1.4,0,0,1,.53-1.87,1.315,1.315,0,0,1,1.811.553" transform="translate(-185.844 -47.945)" fill="#263238"/>
|
||||
<path id="Path_18506" data-name="Path 18506" d="M398.34,118.591l3.23.809a1.638,1.638,0,0,1-1.99,1.258,1.733,1.733,0,0,1-1.24-2.067" transform="translate(-189.002 -56.275)" fill="#af6152"/>
|
||||
<path id="Path_18507" data-name="Path 18507" d="M399.439,120.069a1.524,1.524,0,0,0-1.056-.088,1.707,1.707,0,0,0,1.238,1.31,1.6,1.6,0,0,0,.678.021,1.514,1.514,0,0,0-.861-1.243" transform="translate(-189.043 -56.908)" fill="#f28f8f"/>
|
||||
<path id="Path_18508" data-name="Path 18508" d="M409.506,100.7l-2.526-.741a1.274,1.274,0,0,1,1.6-.872,1.332,1.332,0,0,1,.924,1.613" transform="translate(-193.123 -46.994)" fill="#263238"/>
|
||||
<path id="Path_18509" data-name="Path 18509" d="M409.516,105.378a.976.976,0,1,1-1.082-.9.988.988,0,0,1,1.082.9" transform="translate(-193.403 -49.577)" fill="#263238"/>
|
||||
<path id="Path_18510" data-name="Path 18510" d="M375.37,94.8l-3.511-.11s-.587-3.469-.778-5.541c-.038-.4-.059-.749-.06-1.012,0-.118,0-.232,0-.35a4.458,4.458,0,0,1,1.743-4.025,9.689,9.689,0,0,1,3.758-1.729,9.143,9.143,0,0,0-1.682,1.218,4.136,4.136,0,0,0-1.024,2.126,3.888,3.888,0,0,0-.046.839c.014.378.054.828.12,1.323.374,2.9,1.477,7.26,1.477,7.26" transform="translate(-176.059 -38.93)" fill="#455a64"/>
|
||||
<path id="Path_18511" data-name="Path 18511" d="M375.458,110.186a8.246,8.246,0,0,0-1.219-7.349,3.5,3.5,0,0,0-1.441-1.1,2.1,2.1,0,0,0-1.1-.117c-.2.035-1.028.168-1.238.2a2.8,2.8,0,0,0-2,1.974,8.246,8.246,0,0,0,1.219,7.349,3.5,3.5,0,0,0,1.441,1.1,2.1,2.1,0,0,0,1.106.116c.2-.036,1.016-.167,1.223-.2a2.8,2.8,0,0,0,2.006-1.976" transform="translate(-174.66 -48.207)" fill="#37474f"/>
|
||||
<path id="Path_18512" data-name="Path 18512" d="M371.123,112.43a3.5,3.5,0,0,1-1.441-1.1,8.243,8.243,0,0,1-1.219-7.349c.6-1.61,1.823-2.338,3.1-1.858a3.507,3.507,0,0,1,1.441,1.1,8.245,8.245,0,0,1,1.22,7.349c-.6,1.61-1.823,2.339-3.1,1.858" transform="translate(-174.66 -48.39)" fill="#263238"/>
|
||||
<path id="Path_18513" data-name="Path 18513" d="M373.659,110.721a7.939,7.939,0,0,0-1.176-7.087,2.521,2.521,0,0,0-2.291-1.127l-.612.1a2.521,2.521,0,0,0-1.8,1.807,7.936,7.936,0,0,0,1.175,7.086,2.522,2.522,0,0,0,2.289,1.127l.616-.1a2.523,2.523,0,0,0,1.8-1.806" transform="translate(-174.341 -48.632)" fill="#f0f0f0"/>
|
||||
<path id="Path_18514" data-name="Path 18514" d="M371.868,103.828a7.939,7.939,0,0,1,1.176,7.086c-.805,2.144-2.637,2.449-4.091.679a7.938,7.938,0,0,1-1.176-7.086c.8-2.144,2.637-2.448,4.091-.679" transform="translate(-174.341 -48.723)" fill="#e0e0e0"/>
|
||||
<path id="Path_18515" data-name="Path 18515" d="M372.33,110.915a7.939,7.939,0,0,0-1.176-7.087,2.523,2.523,0,0,0-2.286-1.127c-.207.034-.589.123-.8.158a2.521,2.521,0,0,0-1.8,1.806,7.94,7.94,0,0,0,1.176,7.086,2.525,2.525,0,0,0,2.286,1.128c.208-.034.588-.124.8-.158a2.521,2.521,0,0,0,1.8-1.806" transform="translate(-173.627 -48.724)" fill="#ee2934"/>
|
||||
<path id="Path_18516" data-name="Path 18516" d="M370.364,104.127a7.939,7.939,0,0,1,1.176,7.087c-.805,2.144-2.637,2.448-4.091.678a7.938,7.938,0,0,1-1.176-7.086c.805-2.144,2.637-2.448,4.091-.679" transform="translate(-173.627 -48.865)" fill="#fff"/>
|
||||
<g id="Group_17421" data-name="Group 17421" transform="translate(192.268 54.111)" opacity="0.72">
|
||||
<g id="Group_17420" data-name="Group 17420">
|
||||
<g id="Group_17419" data-name="Group 17419" clip-path="url(#clip-path-14)">
|
||||
<path id="Path_18517" data-name="Path 18517" d="M370.364,104.127a7.939,7.939,0,0,1,1.176,7.087c-.805,2.144-2.637,2.448-4.091.678a7.938,7.938,0,0,1-1.176-7.086c.805-2.144,2.637-2.448,4.091-.679" transform="translate(-365.895 -102.976)" fill="#ee2934"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<path id="Path_18518" data-name="Path 18518" d="M370.107,108.408a4.168,4.168,0,0,1,.617,3.722,1.15,1.15,0,0,1-2.149.357,4.171,4.171,0,0,1-.618-3.722,1.15,1.15,0,0,1,2.149-.357" transform="translate(-174.512 -51.155)" fill="#263238"/>
|
||||
<path id="Path_18519" data-name="Path 18519" d="M371.631,109.827l-1.436.651-.436-2.629a1.32,1.32,0,0,1,1.2.591,3.689,3.689,0,0,1,.671,1.388" transform="translate(-175.46 -51.171)" fill="#455a64"/>
|
||||
<path id="Path_18520" data-name="Path 18520" d="M371.973,113.96a1.32,1.32,0,0,1-.946.947l-.437-2.631,1.437-.651a4.044,4.044,0,0,1-.053,2.335" transform="translate(-175.854 -52.969)" fill="#37474f"/>
|
||||
<path id="Path_18521" data-name="Path 18521" d="M369.73,115.5a1.323,1.323,0,0,1-1.2-.591,3.631,3.631,0,0,1-.669-1.389l1.435-.652Z" transform="translate(-174.558 -53.557)" fill="#455a64"/>
|
||||
<path id="Path_18522" data-name="Path 18522" d="M369.161,110.489l-1.435.652a4.03,4.03,0,0,1,.052-2.333,1.324,1.324,0,0,1,.947-.948Z" transform="translate(-174.427 -51.182)" fill="#37474f"/>
|
||||
<path id="Path_18523" data-name="Path 18523" d="M415.462,115.474a11.685,11.685,0,0,1,2.212,1.519,2.139,2.139,0,0,1,.26,2.983l-.883-.33s.646-.991.192-1.653a6.381,6.381,0,0,0-1.89-1.368c.046-.365.081-.751.109-1.151" transform="translate(-197.096 -54.795)"/>
|
||||
<path id="Path_18524" data-name="Path 18524" d="M417.678,122.617c-.68-.481-1.11-.078-1.84,1.089s-.427,1.571.167,1.923,1.15.017,1.712-.956c.632-1.094.694-1.538-.039-2.056" transform="translate(-197.123 -58.091)" fill="#ba68c8"/>
|
||||
<path id="Path_18525" data-name="Path 18525" d="M417.677,122.617c-.68-.481-1.11-.078-1.84,1.089s-.427,1.571.167,1.923,1.15.017,1.712-.956c.632-1.094.694-1.538-.039-2.056" transform="translate(-197.123 -58.091)" fill="#ee2934"/>
|
||||
<path id="Path_18526" data-name="Path 18526" d="M297.141,265.661a1.929,1.929,0,0,0-1.946.187,6.09,6.09,0,0,0-2.764,4.766,1.948,1.948,0,0,0,.775,1.763c.162.1,2.105,1.094,2.258,1.184a1.927,1.927,0,0,0,1.948-.185,6.09,6.09,0,0,0,2.764-4.766,1.941,1.941,0,0,0-.786-1.77c-.159-.1-2.1-1.088-2.25-1.179" transform="translate(-138.766 -125.975)" fill="#455a64"/>
|
||||
<path id="Path_18527" data-name="Path 18527" d="M293.036,277.73c.015.025.031.049.048.072-.018-.024-.036-.049-.053-.075l0,0,0,0" transform="translate(-139.051 -131.789)" fill="#455a64"/>
|
||||
<path id="Path_18528" data-name="Path 18528" d="M296.675,272.832c0,1.757,1.229,2.471,2.751,1.6a6.087,6.087,0,0,0,2.764-4.766c0-1.757-1.229-2.471-2.751-1.6a6.089,6.089,0,0,0-2.764,4.766" transform="translate(-140.78 -127.027)" fill="#263238"/>
|
||||
<g id="Group_17424" data-name="Group 17424" transform="translate(153.665 142.248)" opacity="0.15">
|
||||
<g id="Group_17423" data-name="Group 17423">
|
||||
<g id="Group_17422" data-name="Group 17422" clip-path="url(#clip-path-15)">
|
||||
<path id="Path_18529" data-name="Path 18529" d="M295.4,276l-.028-.015-.022-.013-.046-.024a.3.3,0,0,0-.037-.022l-.083-.045c-.057-.033-.12-.068-.186-.1-.218-.12-1.33-.666-1.519-.77-.058-.034-.11-.063-.153-.086l-.119-.069a1.147,1.147,0,0,1-.173-.128c-.026-.022-.051-.046-.076-.07a1.036,1.036,0,0,1-.114-.131.722.722,0,0,1-.045-.058c-.017-.023-.032-.048-.048-.072l0,0,0,0a2.443,2.443,0,0,1-.315-1.3,5.054,5.054,0,0,1,.378-1.817c.03-.079.063-.156.1-.231.025-.057.049-.114.077-.169s.054-.112.081-.168l0,0,2.217,1.195a5.412,5.412,0,0,0-.623,2.361,2.461,2.461,0,0,0,.306,1.288,1.427,1.427,0,0,0,.432.455" transform="translate(-292.432 -270.705)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<path id="Path_18530" data-name="Path 18530" d="M312.677,277.258a4.133,4.133,0,0,1-1.876,3.236,1.706,1.706,0,0,1-.836.255.981.981,0,0,1-.484-.125l0,0h0l-9.653-5.462-.027-.015a1,1,0,0,1-.145-.111,1.442,1.442,0,0,1-.387-1.1,4.132,4.132,0,0,1,1.876-3.235,1.442,1.442,0,0,1,1.141-.207.747.747,0,0,1,.152.064l.008,0,.053.032,9.633,5.449h0a1.311,1.311,0,0,1,.548,1.212" transform="translate(-142.009 -128.336)" fill="#37474f"/>
|
||||
<g id="Group_17427" data-name="Group 17427" transform="translate(157.27 144.377)" opacity="0.15">
|
||||
<g id="Group_17426" data-name="Group 17426">
|
||||
<g id="Group_17425" data-name="Group 17425" clip-path="url(#clip-path-16)">
|
||||
<path id="Path_18531" data-name="Path 18531" d="M308.715,279.951a3.633,3.633,0,0,0-.272,1.3,1.758,1.758,0,0,0,.227.934l-1.248-.722-.027-.016h0l-6.841-3.84-.031-.018-.009-.005s0,0-.006,0h0l-.662-.384,0,0-.007,0a1.321,1.321,0,0,1-.537-1.207,3.436,3.436,0,0,1,.254-1.23Z" transform="translate(-299.292 -274.757)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<path id="Path_18532" data-name="Path 18532" d="M346.47,249.854h0a.445.445,0,0,0-.262-.366L323.7,236.5a1.4,1.4,0,0,0-1.267,0l-14.184,8.19a.445.445,0,0,0-.263.366v5.49a.445.445,0,0,0,.263.366l22.5,12.993a1.4,1.4,0,0,0,1.267,0l14.184-8.19a.445.445,0,0,0,.262-.366v-2.531l.1-.057a.741.741,0,0,1-.1-.369Zm-2.006,1.373ZM310,246.423Z" transform="translate(-146.149 -112.152)" fill="#37474f"/>
|
||||
<path id="Path_18533" data-name="Path 18533" d="M308.252,245.416l22.505,12.993a1.4,1.4,0,0,0,1.267,0l14.184-8.189a.386.386,0,0,0,0-.731L323.7,236.5a1.4,1.4,0,0,0-1.267,0l-14.185,8.19a.386.386,0,0,0,0,.731" transform="translate(-146.149 -112.152)" fill="#455a64"/>
|
||||
<path id="Path_18534" data-name="Path 18534" d="M330.759,266.272l-22.507-12.992a.449.449,0,0,1-.261-.366v5.49a.449.449,0,0,0,.261.366l22.507,12.992a1.269,1.269,0,0,0,.632.152v-5.489a1.269,1.269,0,0,1-.632-.152" transform="translate(-146.15 -120.015)" fill="#263238"/>
|
||||
<path id="Path_18535" data-name="Path 18535" d="M372.358,271.109v15.007a1.409,1.409,0,0,1-.632,1.1l-13.817,7.974a1.4,1.4,0,0,1-1.264,0l-.389-.225-.846-.488v-.2l-1.018-.585-.167.1h0l-.845-.488-.17-.1s0,0-.006,0l-.044-.026a1.162,1.162,0,0,1-.354-.328,1.3,1.3,0,0,1-.208-.389c-.009-.026-.018-.056-.026-.085a.944.944,0,0,1-.047-.3V276.34l.1-.055,15.081-8.708a.725.725,0,0,0,.266.266l3.757,2.168a1.407,1.407,0,0,1,.632,1.1" transform="translate(-167.281 -126.972)" fill="#455a64"/>
|
||||
<path id="Path_18536" data-name="Path 18536" d="M357.853,300.43a1.252,1.252,0,0,1-1.264,0l-.389-.225-.845-.489v-.2l-1.018-.585-.167.1h0l-.845-.489-.17-.1s0,0-.006,0a1.374,1.374,0,0,1-.4-.354,1.307,1.307,0,0,1-.208-.389c-.009-.026-.018-.056-.026-.085a1.3,1.3,0,0,1-.047-.357l-.061-18.636.061,2.537a.719.719,0,0,0,.1.366.728.728,0,0,0,.266.266l4.573,2.642a1.311,1.311,0,0,0-.184.623v15Z" transform="translate(-167.226 -132.215)" fill="#263238"/>
|
||||
<path id="Path_18537" data-name="Path 18537" d="M313.595,286.24a1.4,1.4,0,0,1-.634-1.1V279.7l21.977,12.688v6.176Z" transform="translate(-148.508 -132.724)" fill="#263238"/>
|
||||
<path id="Path_18538" data-name="Path 18538" d="M376.019,273.524,362.2,281.5a1.4,1.4,0,0,0-.633,1.1V297.6c0,.4.284.568.634.366l13.815-7.976a1.4,1.4,0,0,0,.634-1.1V273.89c0-.4-.284-.568-.634-.366" transform="translate(-171.575 -129.753)" fill="#37474f"/>
|
||||
<path id="Path_18539" data-name="Path 18539" d="M312.4,265.2a1.358,1.358,0,0,0-.594,1.075v8.144a1.4,1.4,0,0,0,.634,1.1l18.939,10.935a1.309,1.309,0,0,0,1.228-.008,1.443,1.443,0,0,0,.594-1.1v-8.113a1.4,1.4,0,0,0-.634-1.1l-18.939-10.906a1.359,1.359,0,0,0-1.228-.022" transform="translate(-147.961 -125.778)" fill="#ee2934"/>
|
||||
<g id="Group_17430" data-name="Group 17430" transform="translate(163.847 139.282)" opacity="0.2">
|
||||
<g id="Group_17429" data-name="Group 17429">
|
||||
<g id="Group_17428" data-name="Group 17428" clip-path="url(#clip-path-17)">
|
||||
<path id="Path_18540" data-name="Path 18540" d="M312.4,265.2a1.358,1.358,0,0,0-.594,1.075v8.144a1.4,1.4,0,0,0,.634,1.1l18.939,10.935a1.309,1.309,0,0,0,1.228-.008,1.443,1.443,0,0,0,.594-1.1v-8.113a1.4,1.4,0,0,0-.634-1.1l-18.939-10.906a1.359,1.359,0,0,0-1.228-.022" transform="translate(-311.808 -265.061)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<path id="Path_18541" data-name="Path 18541" d="M312.441,266.59l18.941,10.935a1.4,1.4,0,0,1,.633,1.1l0,8.144c0,.4-.284.568-.633.366L312.441,276.2a1.4,1.4,0,0,1-.634-1.1v-8.144c0-.4.284-.568.634-.366" transform="translate(-147.961 -126.463)"/>
|
||||
<path id="Path_18542" data-name="Path 18542" d="M312.441,266.59l18.941,10.935a1.4,1.4,0,0,1,.633,1.1l0,8.144c0,.4-.284.568-.633.366L312.441,276.2a1.4,1.4,0,0,1-.634-1.1v-8.144c0-.4.284-.568.634-.366" transform="translate(-147.961 -126.463)" fill="#ee2934"/>
|
||||
<g id="Group_17433" data-name="Group 17433" transform="translate(183.517 150.843)" opacity="0.15">
|
||||
<g id="Group_17432" data-name="Group 17432">
|
||||
<g id="Group_17431" data-name="Group 17431" clip-path="url(#clip-path-18)">
|
||||
<path id="Path_18543" data-name="Path 18543" d="M350.966,287.661v8.114a1.439,1.439,0,0,1-.594,1.1,1.3,1.3,0,0,1-1.13.055c.3.123.535-.047.535-.412l0-8.143a1.26,1.26,0,0,0-.188-.623v0l1.2-.69a1.286,1.286,0,0,1,.173.6" transform="translate(-349.242 -287.061)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<path id="Path_18544" data-name="Path 18544" d="M325.759,276.79l5.182,2.992a.836.836,0,0,1,.378.659l0,.49c0,.242-.172.341-.383.22l-5.175-2.988a.84.84,0,0,1-.38-.658v-.494c0-.243.17-.341.38-.22" transform="translate(-154.401 -131.32)" fill="#e6e6e6"/>
|
||||
<path id="Path_18545" data-name="Path 18545" d="M323.232,292.957a.7.7,0,0,0-.317-.549l-1.146-.662a.222.222,0,0,0-.224-.023l-.6.344a.224.224,0,0,0-.091.2v.641a.7.7,0,0,0,.317.549l1.146.662a.223.223,0,0,0,.224.022l.594-.343a.222.222,0,0,0,.093-.2Z" transform="translate(-152.256 -138.421)" fill="#ee2934"/>
|
||||
<path id="Path_18546" data-name="Path 18546" d="M321.175,292.4l1.146.662a.7.7,0,0,1,.317.549v.641c0,.2-.142.284-.317.183l-1.146-.662a.7.7,0,0,1-.317-.549v-.641c0-.2.142-.284.317-.183" transform="translate(-152.256 -138.731)" fill="#ee2934"/>
|
||||
<g id="Group_17436" data-name="Group 17436" transform="translate(170.291 154.226)" opacity="0.15">
|
||||
<g id="Group_17435" data-name="Group 17435">
|
||||
<g id="Group_17434" data-name="Group 17434" clip-path="url(#clip-path-19)">
|
||||
<path id="Path_18547" data-name="Path 18547" d="M324.757,293.809v.641a.221.221,0,0,1-.094.2c-.053.029-.466.27-.574.33a.234.234,0,0,0,.074-.193v-.64a.662.662,0,0,0-.091-.311l.594-.342a.662.662,0,0,1,.091.31" transform="translate(-324.072 -293.499)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Group_17439" data-name="Group 17439" transform="translate(168.708 153.282)" opacity="0.25">
|
||||
<g id="Group_17438" data-name="Group 17438">
|
||||
<g id="Group_17437" data-name="Group 17437" clip-path="url(#clip-path-20)">
|
||||
<path id="Path_18548" data-name="Path 18548" d="M323.236,292.646l-.594.343a.625.625,0,0,0-.225-.237l-1.147-.662a.239.239,0,0,0-.211-.032c.1-.059.526-.3.582-.334a.215.215,0,0,1,.222.021l1.147.661a.69.69,0,0,1,.225.24" transform="translate(-321.06 -291.703)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<path id="Path_18549" data-name="Path 18549" d="M330.018,296.879a.7.7,0,0,0-.317-.549l-1.146-.662a.223.223,0,0,0-.224-.023c-.057.033-.539.31-.6.344a.223.223,0,0,0-.091.2v.641a.7.7,0,0,0,.317.549l1.146.662a.223.223,0,0,0,.224.022l.594-.343a.224.224,0,0,0,.092-.2Z" transform="translate(-155.476 -140.282)" fill="#ee2934"/>
|
||||
<path id="Path_18550" data-name="Path 18550" d="M327.961,296.322l1.146.662a.7.7,0,0,1,.317.549v.641c0,.2-.142.284-.317.183l-1.146-.662a.7.7,0,0,1-.317-.549V296.5c0-.2.142-.284.317-.183" transform="translate(-155.476 -140.592)" fill="#ee2934"/>
|
||||
<g id="Group_17442" data-name="Group 17442" transform="translate(173.857 156.287)" opacity="0.15">
|
||||
<g id="Group_17441" data-name="Group 17441">
|
||||
<g id="Group_17440" data-name="Group 17440" clip-path="url(#clip-path-19)">
|
||||
<path id="Path_18551" data-name="Path 18551" d="M331.543,297.731v.641a.22.22,0,0,1-.094.2c-.053.029-.466.27-.574.331a.235.235,0,0,0,.073-.193v-.641a.661.661,0,0,0-.09-.31l.594-.342a.662.662,0,0,1,.091.31" transform="translate(-330.858 -297.421)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Group_17445" data-name="Group 17445" transform="translate(172.274 155.343)" opacity="0.25">
|
||||
<g id="Group_17444" data-name="Group 17444">
|
||||
<g id="Group_17443" data-name="Group 17443" clip-path="url(#clip-path-20)">
|
||||
<path id="Path_18552" data-name="Path 18552" d="M330.022,296.568l-.594.343a.63.63,0,0,0-.225-.237l-1.147-.661a.239.239,0,0,0-.211-.032c.1-.059.526-.3.582-.334a.215.215,0,0,1,.222.021l1.147.661a.689.689,0,0,1,.225.24" transform="translate(-327.845 -295.625)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<path id="Path_18553" data-name="Path 18553" d="M336.8,300.8a.7.7,0,0,0-.317-.549l-1.146-.662a.223.223,0,0,0-.224-.023c-.057.033-.539.31-.6.344a.223.223,0,0,0-.091.2v.641a.7.7,0,0,0,.317.549l1.146.662a.223.223,0,0,0,.224.022l.594-.343a.222.222,0,0,0,.093-.2Z" transform="translate(-158.696 -142.143)" fill="#ee2934"/>
|
||||
<path id="Path_18554" data-name="Path 18554" d="M334.747,300.243l1.146.662a.7.7,0,0,1,.317.549v.641c0,.2-.142.284-.317.183l-1.146-.661a.7.7,0,0,1-.317-.549v-.641c0-.2.142-.284.317-.183" transform="translate(-158.696 -142.453)" fill="#ee2934"/>
|
||||
<g id="Group_17448" data-name="Group 17448" transform="translate(177.423 158.348)" opacity="0.15">
|
||||
<g id="Group_17447" data-name="Group 17447">
|
||||
<g id="Group_17446" data-name="Group 17446" clip-path="url(#clip-path-19)">
|
||||
<path id="Path_18555" data-name="Path 18555" d="M338.329,301.653v.641a.221.221,0,0,1-.094.2l-.574.33a.236.236,0,0,0,.074-.193V302a.662.662,0,0,0-.091-.31l.594-.342a.661.661,0,0,1,.091.31" transform="translate(-337.644 -301.343)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Group_17451" data-name="Group 17451" transform="translate(175.84 157.404)" opacity="0.25">
|
||||
<g id="Group_17450" data-name="Group 17450">
|
||||
<g id="Group_17449" data-name="Group 17449" clip-path="url(#clip-path-20)">
|
||||
<path id="Path_18556" data-name="Path 18556" d="M336.808,300.49l-.594.342a.633.633,0,0,0-.225-.237l-1.147-.661a.239.239,0,0,0-.211-.032c.1-.059.526-.3.582-.334a.215.215,0,0,1,.222.021l1.147.661a.69.69,0,0,1,.225.24" transform="translate(-334.631 -299.547)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<path id="Path_18557" data-name="Path 18557" d="M357.027,298.285v10.247l-.845-.489v-.2l-1.018-.585-.167.1h0l-.845-.489V296.62c0-.4.284-.568.632-.366l1.615.934a1.4,1.4,0,0,1,.632,1.1" transform="translate(-168.053 -140.539)" fill="#455a64"/>
|
||||
<path id="Path_18558" data-name="Path 18558" d="M356.945,310.728v3.616l-1.018-.585-.167.1h0v-3.815c0-.132.074-.2.179-.176a.213.213,0,0,1,.073.029l.685.4a.559.559,0,0,1,.252.439" transform="translate(-168.816 -147.037)" fill="#263238"/>
|
||||
<path id="Path_18559" data-name="Path 18559" d="M357.1,310.732v3.616l-1.018-.585v-3.815a.334.334,0,0,1,.009-.079.213.213,0,0,1,.073.029l.685.4a.559.559,0,0,1,.252.439" transform="translate(-168.969 -147.041)" fill="#37474f"/>
|
||||
<path id="Path_18560" data-name="Path 18560" d="M356.607,311.276l-.131.076.006.011a.182.182,0,0,0-.023.1.447.447,0,0,0,.2.35.178.178,0,0,0,.094.027l.006.011.131-.076a.142.142,0,0,0,.059-.131.446.446,0,0,0-.2-.349.143.143,0,0,0-.143-.014" transform="translate(-169.149 -147.702)" fill="#ee2934"/>
|
||||
<g id="Group_17454" data-name="Group 17454" transform="translate(187.31 163.56)" opacity="0.2">
|
||||
<g id="Group_17453" data-name="Group 17453">
|
||||
<g id="Group_17452" data-name="Group 17452" clip-path="url(#clip-path-25)">
|
||||
<path id="Path_18561" data-name="Path 18561" d="M356.607,311.276l-.131.076.006.011a.182.182,0,0,0-.023.1.447.447,0,0,0,.2.35.178.178,0,0,0,.094.027l.006.011.131-.076a.142.142,0,0,0,.059-.131.446.446,0,0,0-.2-.349.143.143,0,0,0-.143-.014" transform="translate(-356.459 -311.263)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<path id="Path_18562" data-name="Path 18562" d="M356.783,311.784c0,.129-.09.181-.2.117a.447.447,0,0,1-.2-.35c0-.129.09-.181.2-.116a.446.446,0,0,1,.2.349" transform="translate(-169.111 -147.771)" fill="#ee2934"/>
|
||||
<path id="Path_18563" data-name="Path 18563" d="M356.272,299.955l-.288.166.014.025a.4.4,0,0,0-.051.209.98.98,0,0,0,.443.768.39.39,0,0,0,.206.06l.014.025.288-.166a.312.312,0,0,0,.13-.287.98.98,0,0,0-.443-.768.312.312,0,0,0-.313-.031" transform="translate(-168.906 -142.323)" fill="#ee2934"/>
|
||||
<g id="Group_17457" data-name="Group 17457" transform="translate(187.041 157.603)" opacity="0.2">
|
||||
<g id="Group_17456" data-name="Group 17456">
|
||||
<g id="Group_17455" data-name="Group 17455" clip-path="url(#clip-path-26)">
|
||||
<path id="Path_18564" data-name="Path 18564" d="M356.272,299.955l-.288.166.014.025a.4.4,0,0,0-.051.209.98.98,0,0,0,.443.768.39.39,0,0,0,.206.06l.014.025.288-.166a.312.312,0,0,0,.13-.287.98.98,0,0,0-.443-.768.312.312,0,0,0-.313-.031" transform="translate(-355.947 -299.926)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<path id="Path_18565" data-name="Path 18565" d="M356.656,301.07c0,.283-.2.4-.443.256a.98.98,0,0,1-.444-.768c0-.283.2-.4.444-.255a.979.979,0,0,1,.443.767" transform="translate(-168.822 -142.473)" fill="#ee2934"/>
|
||||
<path id="Path_18566" data-name="Path 18566" d="M356.607,313.917l-.131.076.006.012a.179.179,0,0,0-.023.095.447.447,0,0,0,.2.35.178.178,0,0,0,.094.027l.006.011.131-.076a.142.142,0,0,0,.059-.131.445.445,0,0,0-.2-.349.143.143,0,0,0-.143-.014" transform="translate(-169.149 -148.956)" fill="#ee2934"/>
|
||||
<g id="Group_17460" data-name="Group 17460" transform="translate(187.31 164.948)" opacity="0.2">
|
||||
<g id="Group_17459" data-name="Group 17459">
|
||||
<g id="Group_17458" data-name="Group 17458" clip-path="url(#clip-path-27)">
|
||||
<path id="Path_18567" data-name="Path 18567" d="M356.607,313.917l-.131.076.006.012a.179.179,0,0,0-.023.095.447.447,0,0,0,.2.35.178.178,0,0,0,.094.027l.006.011.131-.076a.142.142,0,0,0,.059-.131.445.445,0,0,0-.2-.349.143.143,0,0,0-.143-.014" transform="translate(-356.459 -313.904)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<path id="Path_18568" data-name="Path 18568" d="M356.783,314.425c0,.129-.09.181-.2.117a.447.447,0,0,1-.2-.35c0-.129.09-.181.2-.116a.445.445,0,0,1,.2.349" transform="translate(-169.111 -149.024)" fill="#ee2934"/>
|
||||
<path id="Path_18569" data-name="Path 18569" d="M356.507,303.863l-.178.1.009.015a.243.243,0,0,0-.032.129.606.606,0,0,0,.274.475.242.242,0,0,0,.127.037l.009.015.178-.1a.193.193,0,0,0,.08-.178.606.606,0,0,0-.274-.475.193.193,0,0,0-.194-.019" transform="translate(-169.077 -144.182)" fill="#263238"/>
|
||||
<path id="Path_18570" data-name="Path 18570" d="M356.745,304.552c0,.175-.123.246-.274.158a.606.606,0,0,1-.274-.475c0-.175.123-.246.274-.159a.606.606,0,0,1,.274.475" transform="translate(-169.024 -144.275)" fill="#37474f"/>
|
||||
<path id="Path_18571" data-name="Path 18571" d="M356.507,306.717l-.178.1.009.015a.243.243,0,0,0-.032.129.606.606,0,0,0,.274.475.242.242,0,0,0,.127.037l.009.015.178-.1a.193.193,0,0,0,.08-.178.607.607,0,0,0-.274-.475.192.192,0,0,0-.194-.019" transform="translate(-169.077 -145.537)" fill="#263238"/>
|
||||
<path id="Path_18572" data-name="Path 18572" d="M356.745,307.407c0,.175-.123.246-.274.158a.606.606,0,0,1-.274-.474c0-.175.123-.246.274-.159a.605.605,0,0,1,.274.475" transform="translate(-169.024 -145.63)" fill="#37474f"/>
|
||||
<path id="Path_18573" data-name="Path 18573" d="M362.4,282.382a.381.381,0,0,0-.179-.3l-1.683-.968a.4.4,0,0,0-.358,0l-2.322,1.333a.37.37,0,0,0-.172.3.409.409,0,0,0,.186.3l1.676.963a.393.393,0,0,0,.357,0l2.315-1.337a.383.383,0,0,0,.179-.3" transform="translate(-169.731 -133.378)" fill="#ee2934"/>
|
||||
<path id="Path_18574" data-name="Path 18574" d="M362.4,282.382a.381.381,0,0,0-.179-.3l-1.683-.968a.4.4,0,0,0-.358,0l-2.322,1.333a.37.37,0,0,0-.172.3.409.409,0,0,0,.186.3l1.676.963a.393.393,0,0,0,.357,0l2.315-1.337a.383.383,0,0,0,.179-.3" transform="translate(-169.731 -133.378)" fill="#ee2934"/>
|
||||
<path id="Path_18575" data-name="Path 18575" d="M362.308,282.291l-2.323,1.334a.4.4,0,0,1-.357,0l-1.684-.968a.109.109,0,0,1,0-.206l2.322-1.333a.4.4,0,0,1,.357,0l1.684.967a.109.109,0,0,1,0,.207" transform="translate(-169.819 -133.378)" fill="#fff"/>
|
||||
<g id="Group_17463" data-name="Group 17463" transform="translate(188.052 147.697)" opacity="0.4">
|
||||
<g id="Group_17462" data-name="Group 17462">
|
||||
<g id="Group_17461" data-name="Group 17461" clip-path="url(#clip-path-28)">
|
||||
<path id="Path_18576" data-name="Path 18576" d="M362.308,282.291l-2.323,1.334a.4.4,0,0,1-.357,0l-1.684-.968a.109.109,0,0,1,0-.206l2.322-1.333a.4.4,0,0,1,.357,0l1.684.967a.109.109,0,0,1,0,.207" transform="translate(-357.871 -281.074)" fill="#ee2934"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Group_17466" data-name="Group 17466" transform="translate(187.954 149.09)" opacity="0.3">
|
||||
<g id="Group_17465" data-name="Group 17465">
|
||||
<g id="Group_17464" data-name="Group 17464" clip-path="url(#clip-path-29)">
|
||||
<path id="Path_18577" data-name="Path 18577" d="M359.549,285.274l-1.676-.963a.405.405,0,0,1-.185-.3.367.367,0,0,1,.146-.283c-.073.057-.064.137.025.189l1.683.968a.356.356,0,0,0,.179.042h0v.39a.362.362,0,0,1-.171-.043" transform="translate(-357.686 -283.726)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<path id="Path_18578" data-name="Path 18578" d="M362.324,281.394v.432a.279.279,0,0,1-.127.219l-1.73,1a.279.279,0,0,1-.253,0l-.935-.54a.234.234,0,0,1,0-.416l.935-.54a1.051,1.051,0,0,0,.223-.183l.6-.693a.185.185,0,0,1,.223-.037l.935.54a.28.28,0,0,1,.127.22" transform="translate(-170.427 -133.158)" fill="#ee2934"/>
|
||||
<g id="Group_17469" data-name="Group 17469" transform="translate(188.725 147.455)" opacity="0.3">
|
||||
<g id="Group_17468" data-name="Group 17468">
|
||||
<g id="Group_17467" data-name="Group 17467" clip-path="url(#clip-path-30)">
|
||||
<path id="Path_18579" data-name="Path 18579" d="M362.324,281.394v.432a.279.279,0,0,1-.127.219l-1.73,1a.279.279,0,0,1-.253,0l-.935-.54a.234.234,0,0,1,0-.416l.935-.54a1.051,1.051,0,0,0,.223-.183l.6-.693a.185.185,0,0,1,.223-.037l.935.54a.28.28,0,0,1,.127.22" transform="translate(-359.152 -280.613)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<path id="Path_18580" data-name="Path 18580" d="M360.534,282.776l.935-.54a1.056,1.056,0,0,0,.223-.184l.6-.693a.116.116,0,0,0-.031-.183l-.935-.54a.184.184,0,0,0-.223.037l-.6.693a1.04,1.04,0,0,1-.222.184l-.935.54a.077.077,0,0,0,0,.147l.935.54a.279.279,0,0,0,.253,0" transform="translate(-170.494 -133.159)" fill="#ee2934"/>
|
||||
<g id="Group_17472" data-name="Group 17472" transform="translate(189.9 147.455)" opacity="0.15">
|
||||
<g id="Group_17471" data-name="Group 17471">
|
||||
<g id="Group_17470" data-name="Group 17470" clip-path="url(#clip-path-31)">
|
||||
<path id="Path_18581" data-name="Path 18581" d="M363.259,281.176l-.935-.54a.184.184,0,0,0-.222.037l-.6.693a.943.943,0,0,1-.109.1l1.189.686a.947.947,0,0,0,.109-.1l.6-.693a.116.116,0,0,0-.031-.183" transform="translate(-361.389 -280.613)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Group_17475" data-name="Group 17475" transform="translate(188.724 148.952)" opacity="0.15">
|
||||
<g id="Group_17474" data-name="Group 17474">
|
||||
<g id="Group_17473" data-name="Group 17473" clip-path="url(#clip-path-32)">
|
||||
<path id="Path_18582" data-name="Path 18582" d="M360.327,284.156v.269a.24.24,0,0,1-.114-.029l-.933-.539a.273.273,0,0,1-.129-.208.254.254,0,0,1,.105-.188c-.047.035-.038.091.024.126l.933.538a.24.24,0,0,0,.114.029" transform="translate(-359.151 -283.463)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Group_17478" data-name="Group 17478" transform="translate(188.799 148.31)" opacity="0.05">
|
||||
<g id="Group_17477" data-name="Group 17477">
|
||||
<g id="Group_17476" data-name="Group 17476" clip-path="url(#clip-path-33)">
|
||||
<path id="Path_18583" data-name="Path 18583" d="M361.584,282.926l-1.189-.686a.867.867,0,0,1-.113.081l-.935.54a.077.077,0,0,0,0,.147l.935.54a.279.279,0,0,0,.253,0l.935-.54a.9.9,0,0,0,.114-.081" transform="translate(-359.294 -282.24)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<path id="Path_18584" data-name="Path 18584" d="M370.748,261.85v-.3h.072a1,1,0,0,1,.392-.376,2.478,2.478,0,0,1,2.242,0,1,1,0,0,1,.393.376h.072v.3a.789.789,0,0,1-.464.647,2.478,2.478,0,0,1-2.242,0,.788.788,0,0,1-.465-.647" transform="translate(-175.93 -123.806)" fill="#263238"/>
|
||||
<path id="Path_18585" data-name="Path 18585" d="M373.453,261.95a.683.683,0,0,0,0-1.294,2.478,2.478,0,0,0-2.242,0,.683.683,0,0,0,0,1.294,2.478,2.478,0,0,0,2.242,0" transform="translate(-175.93 -123.561)" fill="#37474f"/>
|
||||
<path id="Path_18586" data-name="Path 18586" d="M371.426,260.979v-.523h.056a.78.78,0,0,1,.3-.291,1.924,1.924,0,0,1,1.738,0,.78.78,0,0,1,.3.291h.056v.523a.61.61,0,0,1-.36.5,1.921,1.921,0,0,1-1.738,0,.61.61,0,0,1-.36-.5" transform="translate(-176.251 -123.357)"/>
|
||||
<g id="Group_17481" data-name="Group 17481" transform="translate(195.174 136.6)" opacity="0.72">
|
||||
<g id="Group_17480" data-name="Group 17480">
|
||||
<g id="Group_17479" data-name="Group 17479" clip-path="url(#clip-path-34)">
|
||||
<path id="Path_18587" data-name="Path 18587" d="M371.426,260.979v-.523h.056a.78.78,0,0,1,.3-.291,1.924,1.924,0,0,1,1.738,0,.78.78,0,0,1,.3.291h.056v.523a.61.61,0,0,1-.36.5,1.921,1.921,0,0,1-1.738,0,.61.61,0,0,1-.36-.5" transform="translate(-371.426 -259.957)" fill="#ee2934"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<path id="Path_18588" data-name="Path 18588" d="M373.524,260.768a.529.529,0,0,0,0-1,1.918,1.918,0,0,0-1.738,0,.529.529,0,0,0,0,1,1.921,1.921,0,0,0,1.738,0" transform="translate(-176.252 -123.167)" fill="#ee2934"/>
|
||||
<path id="Path_18589" data-name="Path 18589" d="M363.372,267.758l-1.3.75a.531.531,0,0,1-.473,0l-1.3-.75c-.131-.076-.131-.2,0-.272l1.3-.75a.518.518,0,0,1,.473,0l1.3.75c.131.074.131.2,0,.272" transform="translate(-170.927 -126.546)" fill="#263238"/>
|
||||
<path id="Path_18590" data-name="Path 18590" d="M363.461,268.006l-1.3.75a.531.531,0,0,1-.473,0l-1.3-.75,1.3-.75a.531.531,0,0,1,.473,0Z" transform="translate(-171.016 -126.794)" fill="#37474f"/>
|
||||
<path id="Path_18591" data-name="Path 18591" d="M362.235,268.276v-.241h.026a.355.355,0,0,1,.14-.134.884.884,0,0,1,.8,0,.355.355,0,0,1,.14.134h.026v.241a.282.282,0,0,1-.166.231.887.887,0,0,1-.8,0,.282.282,0,0,1-.165-.231" transform="translate(-171.89 -127.081)"/>
|
||||
<g id="Group_17484" data-name="Group 17484" transform="translate(190.345 140.725)" opacity="0.72">
|
||||
<g id="Group_17483" data-name="Group 17483">
|
||||
<g id="Group_17482" data-name="Group 17482" clip-path="url(#clip-path-35)">
|
||||
<path id="Path_18592" data-name="Path 18592" d="M362.235,268.276v-.241h.026a.355.355,0,0,1,.14-.134.884.884,0,0,1,.8,0,.355.355,0,0,1,.14.134h.026v.241a.282.282,0,0,1-.166.231.887.887,0,0,1-.8,0,.282.282,0,0,1-.165-.231" transform="translate(-362.235 -267.806)" fill="#ee2934"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<path id="Path_18593" data-name="Path 18593" d="M363.2,268.179a.244.244,0,0,0,0-.462.883.883,0,0,0-.8,0,.244.244,0,0,0,0,.462.883.883,0,0,0,.8,0" transform="translate(-171.89 -126.994)" fill="#ee2934"/>
|
||||
<path id="Path_18594" data-name="Path 18594" d="M368.235,264.95l-1.3.75a.531.531,0,0,1-.473,0l-1.3-.75c-.131-.076-.131-.2,0-.272l1.3-.75a.518.518,0,0,1,.473,0l1.3.75c.131.074.131.2,0,.272" transform="translate(-173.235 -125.214)" fill="#263238"/>
|
||||
<path id="Path_18595" data-name="Path 18595" d="M368.324,265.2l-1.3.75a.531.531,0,0,1-.473,0l-1.3-.75,1.3-.75a.531.531,0,0,1,.473,0Z" transform="translate(-173.323 -125.461)" fill="#37474f"/>
|
||||
<path id="Path_18596" data-name="Path 18596" d="M367.1,265.469v-.24h.026a.356.356,0,0,1,.14-.135.887.887,0,0,1,.8,0,.356.356,0,0,1,.14.135h.026v.24a.281.281,0,0,1-.166.231.884.884,0,0,1-.8,0,.281.281,0,0,1-.165-.231" transform="translate(-174.198 -125.749)"/>
|
||||
<g id="Group_17487" data-name="Group 17487" transform="translate(192.901 139.249)" opacity="0.72">
|
||||
<g id="Group_17486" data-name="Group 17486">
|
||||
<g id="Group_17485" data-name="Group 17485" clip-path="url(#clip-path-35)">
|
||||
<path id="Path_18597" data-name="Path 18597" d="M367.1,265.469v-.24h.026a.356.356,0,0,1,.14-.135.887.887,0,0,1,.8,0,.356.356,0,0,1,.14.135h.026v.24a.281.281,0,0,1-.166.231.884.884,0,0,1-.8,0,.281.281,0,0,1-.165-.231" transform="translate(-367.099 -264.998)" fill="#ee2934"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<path id="Path_18598" data-name="Path 18598" d="M368.064,265.371a.244.244,0,0,0,0-.462.883.883,0,0,0-.8,0,.244.244,0,0,0,0,.462.883.883,0,0,0,.8,0" transform="translate(-174.198 -125.661)" fill="#ee2934"/>
|
||||
<path id="Path_18599" data-name="Path 18599" d="M379.231,287.019l0,0-.151-.087a3.538,3.538,0,0,0-3.42.386,10.959,10.959,0,0,0-4.974,8.577,5.179,5.179,0,0,0,.214,1.556,3.015,3.015,0,0,0,.887,1.415,2.4,2.4,0,0,0,.305.22l.007,0,.018.009.022.013.082.047,3.327,1.928a2.551,2.551,0,0,1-.383-.294,3.819,3.819,0,0,1-1.026-2.9,10.955,10.955,0,0,1,4.974-8.575,3.817,3.817,0,0,1,3.026-.549,2.087,2.087,0,0,1,.4.167Z" transform="translate(-175.9 -136.02)" fill="#ba68c8"/>
|
||||
<path id="Path_18600" data-name="Path 18600" d="M379.231,287.019l0,0-.151-.087a3.538,3.538,0,0,0-3.42.386,10.959,10.959,0,0,0-4.974,8.577,5.179,5.179,0,0,0,.214,1.556,3.015,3.015,0,0,0,.887,1.415,2.4,2.4,0,0,0,.305.22l.007,0,.018.009.022.013.082.047,3.327,1.928a2.551,2.551,0,0,1-.383-.294,3.819,3.819,0,0,1-1.026-2.9,10.955,10.955,0,0,1,4.974-8.575,3.817,3.817,0,0,1,3.026-.549,2.087,2.087,0,0,1,.4.167Z" transform="translate(-175.9 -136.02)" fill="#ee2934"/>
|
||||
<path id="Path_18601" data-name="Path 18601" d="M370.161,297.925a2.227,2.227,0,0,0,.306.22l-1.755-1.017a.021.021,0,0,1-.009-.007l-.02-.011a3.5,3.5,0,0,1-1.423-3.2,10.955,10.955,0,0,1,4.974-8.574,4.482,4.482,0,0,1,2.214-.673,2.551,2.551,0,0,1,1.293.333l1.713.993a3.538,3.538,0,0,0-3.42.386,10.959,10.959,0,0,0-4.974,8.577,5.2,5.2,0,0,0,.214,1.556,2.953,2.953,0,0,0,.887,1.415" transform="translate(-174.275 -135.081)" fill="#455a64"/>
|
||||
<path id="Path_18602" data-name="Path 18602" d="M392.583,297.126a10.952,10.952,0,0,1-4.974,8.575,4.5,4.5,0,0,1-2.213.675,2.571,2.571,0,0,1-1.284-.329l-.006,0h0l-5.363-3.11-.073-.04a2.6,2.6,0,0,1-.384-.294,3.818,3.818,0,0,1-1.026-2.9,10.952,10.952,0,0,1,4.974-8.575,3.816,3.816,0,0,1,3.025-.549,2.141,2.141,0,0,1,.4.167l.022.012.14.083,5.31,3.077v0a3.471,3.471,0,0,1,1.451,3.213" transform="translate(-179.019 -137.827)" fill="#37474f"/>
|
||||
<path id="Path_18603" data-name="Path 18603" d="M374.844,310.214a.152.152,0,0,1-.075-.02l-1.877-1.079a.149.149,0,0,1,.149-.259l1.877,1.079a.15.15,0,0,1-.075.279" transform="translate(-176.912 -146.551)" fill="#37474f"/>
|
||||
<path id="Path_18604" data-name="Path 18604" d="M374.138,307.682a.149.149,0,0,1-.075-.02l-1.878-1.079a.149.149,0,0,1,.149-.259l1.878,1.079a.15.15,0,0,1-.075.279" transform="translate(-176.576 -145.349)" fill="#37474f"/>
|
||||
<path id="Path_18605" data-name="Path 18605" d="M373.88,305.274a.149.149,0,0,1-.075-.02l-1.878-1.079a.15.15,0,0,1,.149-.259L373.955,305a.15.15,0,0,1-.075.279" transform="translate(-176.454 -144.207)" fill="#37474f"/>
|
||||
<path id="Path_18606" data-name="Path 18606" d="M374.017,303.086a.149.149,0,0,1-.075-.02l-1.878-1.08a.149.149,0,0,1,.149-.259l1.878,1.08a.15.15,0,0,1-.075.279" transform="translate(-176.519 -143.168)" fill="#37474f"/>
|
||||
<path id="Path_18607" data-name="Path 18607" d="M374.622,300.99a.149.149,0,0,1-.075-.02l-1.878-1.079a.15.15,0,0,1,.15-.259l1.877,1.079a.149.149,0,0,1-.075.279" transform="translate(-176.806 -142.174)" fill="#37474f"/>
|
||||
<path id="Path_18608" data-name="Path 18608" d="M375.461,298.919a.149.149,0,0,1-.075-.02l-1.878-1.08a.15.15,0,0,1,.15-.259l1.878,1.08a.15.15,0,0,1-.075.279" transform="translate(-177.204 -141.191)" fill="#37474f"/>
|
||||
<path id="Path_18609" data-name="Path 18609" d="M376.508,296.913a.149.149,0,0,1-.075-.02l-1.878-1.079a.15.15,0,0,1,.15-.259l1.878,1.079a.15.15,0,0,1-.075.279" transform="translate(-177.701 -140.239)" fill="#37474f"/>
|
||||
<path id="Path_18610" data-name="Path 18610" d="M377.739,295.015a.149.149,0,0,1-.075-.02l-1.878-1.079a.149.149,0,0,1,.149-.259l1.877,1.079a.15.15,0,0,1-.075.279" transform="translate(-178.286 -139.338)" fill="#37474f"/>
|
||||
<path id="Path_18611" data-name="Path 18611" d="M379.13,293.268a.149.149,0,0,1-.075-.02l-1.878-1.08a.15.15,0,0,1,.15-.259l1.878,1.08a.15.15,0,0,1-.075.279" transform="translate(-178.945 -138.509)" fill="#37474f"/>
|
||||
<path id="Path_18612" data-name="Path 18612" d="M380.655,291.715a.148.148,0,0,1-.075-.02l-1.878-1.079a.149.149,0,0,1,.149-.259l1.878,1.079a.15.15,0,0,1-.075.279" transform="translate(-179.669 -137.773)" fill="#37474f"/>
|
||||
<path id="Path_18613" data-name="Path 18613" d="M382.29,290.4a.149.149,0,0,1-.075-.02l-1.878-1.079a.149.149,0,0,1,.149-.259l1.878,1.079a.15.15,0,0,1-.075.279" transform="translate(-180.445 -137.147)" fill="#37474f"/>
|
||||
<path id="Path_18614" data-name="Path 18614" d="M384.238,289.246a.149.149,0,0,1-.075-.02l-1.878-1.08a.149.149,0,0,1,.149-.259l1.878,1.08a.15.15,0,0,1-.075.279" transform="translate(-181.369 -136.6)" fill="#37474f"/>
|
||||
<path id="Path_18615" data-name="Path 18615" d="M386.513,288.481a.149.149,0,0,1-.075-.02l-1.877-1.079a.149.149,0,0,1,.149-.259l1.878,1.079a.15.15,0,0,1-.075.279" transform="translate(-182.449 -136.238)" fill="#37474f"/>
|
||||
<g id="Group_17490" data-name="Group 17490" transform="translate(192.986 155.571)" opacity="0.15">
|
||||
<g id="Group_17489" data-name="Group 17489">
|
||||
<g id="Group_17488" data-name="Group 17488" clip-path="url(#clip-path-37)">
|
||||
<path id="Path_18616" data-name="Path 18616" d="M377.423,301.575a9.635,9.635,0,0,0-.72,3.459,4.659,4.659,0,0,0,.6,2.476L374,305.6l-.073-.041s0,0-.006,0l-3.321-1.925-.082-.047-.024-.015c-.006,0-.012,0-.017-.008l-.006,0-1.756-1.018c-.006,0-.006-.006-.009-.006l-.02-.012a3.5,3.5,0,0,1-1.422-3.2,9.137,9.137,0,0,1,.676-3.26Z" transform="translate(-367.261 -296.059)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<path id="Path_18617" data-name="Path 18617" d="M393.727,293.027c-1.074-.625-2.556-.543-4.2.4a13.139,13.139,0,0,0-5.964,10.283,4.2,4.2,0,0,0,1.672,3.805c.349.214,2.685,1.481,3.015,1.674,1.073.628,2.559.548,4.2-.4a13.139,13.139,0,0,0,5.964-10.284c0-1.871-.644-3.19-1.7-3.82-.343-.206-2.664-1.469-3-1.662" transform="translate(-182.011 -138.858)" fill="#455a64"/>
|
||||
<path id="Path_18618" data-name="Path 18618" d="M384.868,319.068c.033.053.066.106.1.156-.04-.053-.077-.106-.113-.163l.007,0a0,0,0,0,0,0,0" transform="translate(-182.625 -151.403)" fill="#455a64"/>
|
||||
<path id="Path_18619" data-name="Path 18619" d="M389.184,306.825c-.007,3.791,2.651,5.332,5.937,3.443a13.139,13.139,0,0,0,5.964-10.284c.007-3.791-2.651-5.333-5.937-3.443a13.138,13.138,0,0,0-5.964,10.284" transform="translate(-184.678 -140.334)" fill="#37474f"/>
|
||||
<path id="Path_18620" data-name="Path 18620" d="M393.79,310.933c-1.648,0-1.822-1.948-1.821-2.784a11.714,11.714,0,0,1,5.23-9.018,4.006,4.006,0,0,1,1.924-.612c1.648,0,1.822,1.948,1.821,2.784a11.716,11.716,0,0,1-5.23,9.018,4.009,4.009,0,0,1-1.924.612" transform="translate(-186 -141.655)" fill="#263238"/>
|
||||
<path id="Path_18621" data-name="Path 18621" d="M399,299.363a5.705,5.705,0,0,0-.056-.813,4.209,4.209,0,0,0-1.741.6,11.715,11.715,0,0,0-5.23,9.018,5.7,5.7,0,0,0,.056.813,4.2,4.2,0,0,0,1.741-.6,11.714,11.714,0,0,0,5.23-9.018" transform="translate(-185.999 -141.67)" fill="#ba68c8"/>
|
||||
<path id="Path_18622" data-name="Path 18622" d="M399,299.363a5.705,5.705,0,0,0-.056-.813,4.209,4.209,0,0,0-1.741.6,11.715,11.715,0,0,0-5.23,9.018,5.7,5.7,0,0,0,.056.813,4.2,4.2,0,0,0,1.741-.6,11.714,11.714,0,0,0,5.23-9.018" transform="translate(-185.999 -141.67)" fill="#ee2934"/>
|
||||
<path id="Path_18623" data-name="Path 18623" d="M396.826,301.82c1.116-1.349,2.557-1.8,2.78-1.3s-.487,5.37-5.2,8.23a16.559,16.559,0,0,0,3.788-4.964c.726-1.619.066-2.947-1.372-1.97" transform="translate(-187.158 -142.512)" fill="#e0e0e0"/>
|
||||
<g id="Group_17493" data-name="Group 17493" transform="translate(201.553 159.697)" opacity="0.15">
|
||||
<g id="Group_17492" data-name="Group 17492">
|
||||
<g id="Group_17491" data-name="Group 17491" clip-path="url(#clip-path-38)">
|
||||
<path id="Path_18624" data-name="Path 18624" d="M388.108,314.466c-.02-.01-.04-.023-.06-.033l-.046-.027-.1-.053c-.024-.016-.05-.029-.08-.046l-.179-.1c-.122-.07-.259-.146-.4-.222l-1.42-.783c-.126-.073-.239-.136-.332-.185-.116-.067-.205-.12-.255-.149a2.56,2.56,0,0,1-.375-.275c-.057-.047-.11-.1-.163-.153a2.231,2.231,0,0,1-.245-.282c-.036-.043-.066-.083-.1-.126s-.069-.1-.1-.156a0,0,0,0,1,0,0l-.006,0a5.28,5.28,0,0,1-.681-2.806,10.928,10.928,0,0,1,.816-3.921q.1-.254.209-.5c.053-.123.106-.245.166-.365s.116-.242.176-.362a.012.012,0,0,1,0-.01l2.926,1.7a11.689,11.689,0,0,0-1.344,5.095,5.314,5.314,0,0,0,.66,2.78,3.081,3.081,0,0,0,.932.982" transform="translate(-383.563 -303.911)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<path id="Path_18625" data-name="Path 18625" d="M312.628,252.192v-.42h.1a1.384,1.384,0,0,1,.546-.523,3.451,3.451,0,0,1,3.122,0,1.382,1.382,0,0,1,.546.523h.1v.42a1.1,1.1,0,0,1-.646.9,3.451,3.451,0,0,1-3.122,0,1.1,1.1,0,0,1-.647-.9" transform="translate(-148.35 -119.047)" fill="#263238"/>
|
||||
<path id="Path_18626" data-name="Path 18626" d="M316.4,252.332a.951.951,0,0,0,0-1.8,3.451,3.451,0,0,0-3.122,0,.951.951,0,0,0,0,1.8,3.451,3.451,0,0,0,3.122,0" transform="translate(-148.35 -118.706)" fill="#37474f"/>
|
||||
<path id="Path_18627" data-name="Path 18627" d="M328.507,245.363l-10.086-5.823a1.713,1.713,0,0,0-2.569,1.483v5.071a.248.248,0,0,0,.152.2.79.79,0,0,0,.723,0,.251.251,0,0,0,.15-.2v-5.071a.689.689,0,0,1,1.033-.594L328,246.252a.513.513,0,0,0,.512-.89" transform="translate(-149.88 -113.559)" fill="#263238"/>
|
||||
<path id="Path_18628" data-name="Path 18628" d="M349.825,255.338h0c-.628-1.086-12.2-8.536-15.2-10.275a1.159,1.159,0,0,0-1.221.1,3.72,3.72,0,0,0-1.683,2.915,1.16,1.16,0,0,0,.525,1.105c3.026,1.743,14.98,8.107,16.61,8.033a1.186,1.186,0,0,0,.968-1.874" transform="translate(-157.41 -116.226)" fill="#ee2934"/>
|
||||
<g id="Group_17496" data-name="Group 17496" transform="translate(174.311 131.313)" opacity="0.27">
|
||||
<g id="Group_17495" data-name="Group 17495">
|
||||
<g id="Group_17494" data-name="Group 17494" clip-path="url(#clip-path-39)">
|
||||
<path id="Path_18629" data-name="Path 18629" d="M349.991,258.714c-.337.475-.933.719-2.8-.094-1.737-.756-11.835-6.651-15.41-8.727a2.671,2.671,0,0,0-.059.535,1.16,1.16,0,0,0,.525,1.105c3.026,1.744,14.98,8.106,16.609,8.033a1.185,1.185,0,0,0,1.135-.853" transform="translate(-331.721 -249.894)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<path id="Path_18630" data-name="Path 18630" d="M357.307,245.011a3.466,3.466,0,0,0,.92-1.334,4.256,4.256,0,0,0-.476-2.731c-.451-.5-2.434-2.567-3.083-2.386s-1.336,3.619-.769,4.925a2.657,2.657,0,0,0,3.408,1.526" transform="translate(-167.835 -113.198)" fill="#af6152"/>
|
||||
<path id="Path_18631" data-name="Path 18631" d="M358.176,244.419a4.024,4.024,0,0,0,.076,1.266,1.252,1.252,0,0,1,.735.12,1.3,1.3,0,0,0-.8.035l-.657.684.524-.82s-.166-1.044.122-1.285" transform="translate(-169.658 -115.983)" fill="#c8856a"/>
|
||||
<path id="Path_18632" data-name="Path 18632" d="M362.326,256.6a.382.382,0,0,1,.179-.3l1.684-.968a.4.4,0,0,1,.357,0l1.2.694a.369.369,0,0,1,.171.3.4.4,0,0,1-.186.3l-1.676.964a.4.4,0,0,1-.357,0l-1.193-.7a.384.384,0,0,1-.179-.3" transform="translate(-171.933 -121.143)" fill="#fff"/>
|
||||
<path id="Path_18633" data-name="Path 18633" d="M362.326,256.6a.382.382,0,0,1,.179-.3l1.684-.968a.4.4,0,0,1,.357,0l1.2.694a.369.369,0,0,1,.171.3.4.4,0,0,1-.186.3l-1.676.964a.4.4,0,0,1-.357,0l-1.193-.7a.384.384,0,0,1-.179-.3" transform="translate(-171.933 -121.143)" fill="#ee2934"/>
|
||||
<path id="Path_18634" data-name="Path 18634" d="M362.6,256.509l1.2.694a.4.4,0,0,0,.357,0l1.684-.968a.109.109,0,0,0,0-.207l-1.2-.694a.4.4,0,0,0-.357,0l-1.684.967a.109.109,0,0,0,0,.207" transform="translate(-172.028 -121.143)" fill="#fff"/>
|
||||
<g id="Group_17499" data-name="Group 17499" transform="translate(190.497 134.15)" opacity="0.49">
|
||||
<g id="Group_17498" data-name="Group 17498">
|
||||
<g id="Group_17497" data-name="Group 17497" clip-path="url(#clip-path-40)">
|
||||
<path id="Path_18635" data-name="Path 18635" d="M362.6,256.509l1.2.694a.4.4,0,0,0,.357,0l1.684-.968a.109.109,0,0,0,0-.207l-1.2-.694a.4.4,0,0,0-.357,0l-1.684.967a.109.109,0,0,0,0,.207" transform="translate(-362.525 -255.293)" fill="#ee2934"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Group_17502" data-name="Group 17502" transform="translate(191.951 134.903)" opacity="0.32">
|
||||
<g id="Group_17501" data-name="Group 17501">
|
||||
<g id="Group_17500" data-name="Group 17500" clip-path="url(#clip-path-41)">
|
||||
<path id="Path_18636" data-name="Path 18636" d="M365.462,258.274l1.676-.964a.4.4,0,0,0,.185-.3.366.366,0,0,0-.146-.284c.073.057.064.137-.025.189l-1.683.968a.356.356,0,0,1-.179.042h0v.39a.361.361,0,0,0,.171-.043" transform="translate(-365.291 -256.727)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<path id="Path_18637" data-name="Path 18637" d="M341.917,244.877a.382.382,0,0,1,.179-.3l1.684-.968a.4.4,0,0,1,.357,0l1.2.694a.371.371,0,0,1,.171.3.407.407,0,0,1-.187.3l-1.676.964a.4.4,0,0,1-.357,0l-1.193-.7a.384.384,0,0,1-.179-.3" transform="translate(-162.249 -115.58)" fill="#fff"/>
|
||||
<path id="Path_18638" data-name="Path 18638" d="M341.917,244.877a.382.382,0,0,1,.179-.3l1.684-.968a.4.4,0,0,1,.357,0l1.2.694a.371.371,0,0,1,.171.3.407.407,0,0,1-.187.3l-1.676.964a.4.4,0,0,1-.357,0l-1.193-.7a.384.384,0,0,1-.179-.3" transform="translate(-162.249 -115.58)" fill="#ee2934"/>
|
||||
<path id="Path_18639" data-name="Path 18639" d="M342.19,244.786l1.2.694a.4.4,0,0,0,.357,0l1.684-.968a.109.109,0,0,0,0-.207l-1.2-.694a.4.4,0,0,0-.357,0l-1.684.968a.109.109,0,0,0,0,.206" transform="translate(-162.343 -115.58)" fill="#fff"/>
|
||||
<g id="Group_17505" data-name="Group 17505" transform="translate(179.773 127.989)" opacity="0.49">
|
||||
<g id="Group_17504" data-name="Group 17504">
|
||||
<g id="Group_17503" data-name="Group 17503" clip-path="url(#clip-path-42)">
|
||||
<path id="Path_18640" data-name="Path 18640" d="M342.19,244.786l1.2.694a.4.4,0,0,0,.357,0l1.684-.968a.109.109,0,0,0,0-.207l-1.2-.694a.4.4,0,0,0-.357,0l-1.684.968a.109.109,0,0,0,0,.206" transform="translate(-342.116 -243.569)" fill="#ee2934"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Group_17508" data-name="Group 17508" transform="translate(181.226 128.743)" opacity="0.32">
|
||||
<g id="Group_17507" data-name="Group 17507">
|
||||
<g id="Group_17506" data-name="Group 17506" clip-path="url(#clip-path-41)">
|
||||
<path id="Path_18641" data-name="Path 18641" d="M345.053,246.552l1.676-.963a.406.406,0,0,0,.186-.3.368.368,0,0,0-.146-.283c.073.057.064.137-.025.189l-1.683.968a.355.355,0,0,1-.179.042h0v.39a.364.364,0,0,0,.171-.043" transform="translate(-344.882 -245.004)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<path id="Path_18642" data-name="Path 18642" d="M346.192,239.485v2.725l-1.066.615v-3.618c0-.188.13-.262.292-.169Z" transform="translate(-163.771 -113.411)"/>
|
||||
<path id="Path_18643" data-name="Path 18643" d="M356.222,242.371v4.411l-1.017.589-.685-.4v-3.618a.648.648,0,0,0-.292-.506l-8.351-4.82-1.078-.622c-.162-.093-.292-.019-.292.169v3.618l-.686-.4v-4.409a.351.351,0,0,1,0-.057.649.649,0,0,1,.288-.449l.434-.251a.644.644,0,0,1,.583,0l10.8,6.233a.647.647,0,0,1,.292.506" transform="translate(-163.152 -111.781)" fill="#37474f"/>
|
||||
<path id="Path_18644" data-name="Path 18644" d="M355.2,243.518v4.411l-.685-.4v-3.618a.65.65,0,0,0-.292-.506l-8.351-4.82-1.078-.623c-.162-.092-.292-.018-.292.169v3.618l-.686-.4v-4.409a.353.353,0,0,1,0-.057c.026-.143.145-.194.288-.111l10.8,6.234a.652.652,0,0,1,.292.506" transform="translate(-163.152 -112.339)" fill="#263238"/>
|
||||
<path id="Path_18645" data-name="Path 18645" d="M357.242,139.6c-3.866.557-6.761,1.38-8.559,6.031-2.155,5.575-3.98,10.075-6.584,17.26a12.3,12.3,0,0,0-.862,4.226c-.1,6.961.113,12.634.1,17.305,0,1.5-.111,3.57-.041,5.071a35.43,35.43,0,0,0,.635,4.921,2.3,2.3,0,0,0,1.286,1.79,3.075,3.075,0,0,1,.57.237c.328.217.468.626.736.914a1.823,1.823,0,0,0,1.222.506,5.53,5.53,0,0,1,.606.043c.739.132,1.262.807,1.966,1.069a2.186,2.186,0,0,0,1.639.089,4.827,4.827,0,0,0,.793-.456c.14-.1.514-.447.633-.551a2.3,2.3,0,0,1-2.062-1.576,7.339,7.339,0,0,1-.613-2.921,1.568,1.568,0,0,1,.12-.69.315.315,0,0,1,.26-.205c.128,0,.212.131.274.244a7.075,7.075,0,0,0,1.532,2.134,1.579,1.579,0,0,0,.973.446.717.717,0,0,0,.743-.642,1.1,1.1,0,0,0-.119-.416,19.16,19.16,0,0,1-1.08-3.321,12.587,12.587,0,0,0-.984-3.074c-.524-1.017-1.387-2.189-1.4-3.354-.047-5.627,1.916-18.154,1.916-18.154s5.142-10.162,7.28-14.383c1.785-4.344.441-11.349-.988-12.544" transform="translate(-161.914 -66.245)" fill="#c8856a"/>
|
||||
<path id="Path_18646" data-name="Path 18646" d="M357.266,138.953a12.735,12.735,0,0,0-6.707,2.454c-1.5,1.286-2.534,4.421-4.172,8.506S343.2,158.439,342.252,161a15.465,15.465,0,0,0-1.4,7.026c-.033,3.669.189,7.945.189,7.945a8.988,8.988,0,0,1,5.131-1.545c3,.055,3.337,1.21,3.337,1.21l1.6-9.3,7.454-14.206s2.814-7.14-1.293-13.175" transform="translate(-161.74 -65.937)" fill="#1b2d51"/>
|
||||
<path id="Path_18647" data-name="Path 18647" d="M250.607,402l-3.184-1.208,1.053-2.143,1.955,1.826Z" transform="translate(-117.409 -189.17)"/>
|
||||
<path id="Path_18648" data-name="Path 18648" d="M237.666,394.163s.117,2.066.142,2.717-2.774,2.661-3.468,2.992l-.177-1.525a11.8,11.8,0,0,0-1.61,2.458,11.99,11.99,0,0,1-2.716,3.867c-2.2,1.766-5.619,2.652-9.1,2.761s-5.475-.751-6.462-1.507a2.284,2.284,0,0,1-1.045-2.516c.252-.879,24.439-9.248,24.439-9.248" transform="translate(-101.142 -187.041)" fill="#263238"/>
|
||||
<path id="Path_18649" data-name="Path 18649" d="M228.105,379.581l-.036-1.2c-.642-.022-.728,1.714-1.673,3.232a31,31,0,0,1-4.933,6.214c-3.548,3.185-6.71,5.181-8.294,6.616-2.119,1.919,1.573,5,7.262,4.712,2.823-.145,7.844-1.532,9.26-3.185s2.294-4.234,3.428-5.434,3.562-2.4,4.272-3.863c.389-.8.195-2.679-.028-4.274-.2-1.464-.237-3.707-1.068-3.529l-.063.752c-.342.638-1.132,1.691-3.41,2.062-1.138.185-4.527.271-4.718-2.1" transform="translate(-100.868 -179.552)" fill="#37474f"/>
|
||||
<g id="Group_17511" data-name="Group 17511" transform="translate(119.175 200.716)" opacity="0.15">
|
||||
<g id="Group_17510" data-name="Group 17510">
|
||||
<g id="Group_17509" data-name="Group 17509" clip-path="url(#clip-path-44)">
|
||||
<path id="Path_18650" data-name="Path 18650" d="M237.748,383.44a3.109,3.109,0,0,1-2.7-1.438c-.006-.012-.015-.019-.019-.031a2.731,2.731,0,0,1-.745,2.3c-1.022,1.179-7.485,9.494-7.485,9.494s6.011-6.856,7.164-8.147c1.7-1.909,2.243-2.13,3.794-2.176l-.005,0" transform="translate(-226.795 -381.971)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Group_17529" data-name="Group 17529" transform="translate(121.948 204.007)">
|
||||
<g id="Group_17528" data-name="Group 17528">
|
||||
<g id="Group_17527" data-name="Group 17527" clip-path="url(#clip-path-45)">
|
||||
<g id="Group_17514" data-name="Group 17514" transform="translate(6.748)" opacity="0.15">
|
||||
<g id="Group_17513" data-name="Group 17513">
|
||||
<g id="Group_17512" data-name="Group 17512" clip-path="url(#clip-path-46)">
|
||||
<path id="Path_18651" data-name="Path 18651" d="M244.916,388.618a.348.348,0,1,0,.309-.38.347.347,0,0,0-.309.38" transform="translate(-244.915 -388.235)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Group_17517" data-name="Group 17517" transform="translate(5.061 1.837)" opacity="0.15">
|
||||
<g id="Group_17516" data-name="Group 17516">
|
||||
<g id="Group_17515" data-name="Group 17515" clip-path="url(#clip-path-47)">
|
||||
<path id="Path_18652" data-name="Path 18652" d="M241.706,392.114a.348.348,0,1,0,.309-.38.347.347,0,0,0-.309.38" transform="translate(-241.704 -391.731)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Group_17520" data-name="Group 17520" transform="translate(3.374 3.675)" opacity="0.15">
|
||||
<g id="Group_17519" data-name="Group 17519">
|
||||
<g id="Group_17518" data-name="Group 17518" clip-path="url(#clip-path-46)">
|
||||
<path id="Path_18653" data-name="Path 18653" d="M238.5,395.611a.348.348,0,1,0,.309-.38.347.347,0,0,0-.309.38" transform="translate(-238.494 -395.228)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Group_17523" data-name="Group 17523" transform="translate(1.687 5.512)" opacity="0.15">
|
||||
<g id="Group_17522" data-name="Group 17522">
|
||||
<g id="Group_17521" data-name="Group 17521" clip-path="url(#clip-path-47)">
|
||||
<path id="Path_18654" data-name="Path 18654" d="M235.285,399.107a.348.348,0,1,0,.309-.38.348.348,0,0,0-.309.38" transform="translate(-235.283 -398.724)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Group_17526" data-name="Group 17526" transform="translate(0 7.349)" opacity="0.15">
|
||||
<g id="Group_17525" data-name="Group 17525">
|
||||
<g id="Group_17524" data-name="Group 17524" clip-path="url(#clip-path-46)">
|
||||
<path id="Path_18655" data-name="Path 18655" d="M232.075,402.6a.348.348,0,1,0,.309-.38.347.347,0,0,0-.309.38" transform="translate(-232.073 -402.221)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<path id="Path_18656" data-name="Path 18656" d="M242.012,387.524a.139.139,0,0,0,.089-.041.138.138,0,0,0,0-.2,5.73,5.73,0,0,0-3.924-1.566h0a.139.139,0,0,0,.018.278,5.547,5.547,0,0,1,3.712,1.486.141.141,0,0,0,.109.04" transform="translate(-112.958 -183.032)" fill="#263238"/>
|
||||
<path id="Path_18657" data-name="Path 18657" d="M238.8,391.008a.14.14,0,0,0,.089-.041.138.138,0,0,0,0-.2,5.728,5.728,0,0,0-3.924-1.566h0a.139.139,0,0,0,.018.278,5.553,5.553,0,0,1,3.712,1.486.141.141,0,0,0,.109.04" transform="translate(-111.434 -184.685)" fill="#263238"/>
|
||||
<path id="Path_18658" data-name="Path 18658" d="M235.591,394.516a.14.14,0,0,0,.089-.041.138.138,0,0,0,0-.2,5.728,5.728,0,0,0-3.924-1.566h0a.139.139,0,0,0,.018.278,5.553,5.553,0,0,1,3.712,1.486.141.141,0,0,0,.109.04" transform="translate(-109.911 -186.35)" fill="#263238"/>
|
||||
<path id="Path_18659" data-name="Path 18659" d="M232.381,398.013a.14.14,0,0,0,.089-.041.138.138,0,0,0,0-.2,5.735,5.735,0,0,0-3.925-1.566h0a.139.139,0,0,0,.018.278,5.551,5.551,0,0,1,3.712,1.486.139.139,0,0,0,.109.04" transform="translate(-108.388 -188.009)" fill="#263238"/>
|
||||
<path id="Path_18660" data-name="Path 18660" d="M229.17,401.509a.139.139,0,0,0,.089-.041.138.138,0,0,0,0-.2,5.728,5.728,0,0,0-3.924-1.566h0a.139.139,0,0,0,.018.278,5.553,5.553,0,0,1,3.712,1.486.139.139,0,0,0,.109.04" transform="translate(-106.864 -189.668)" fill="#263238"/>
|
||||
<path id="Path_18661" data-name="Path 18661" d="M303.086,420.164a12.673,12.673,0,0,0,2.288,5.94c1.162,1.482,3.25,1.651,4.8,1.327a6.634,6.634,0,0,0,5.155-5.061c.5-1.865.156-4-.568-6.477Z" transform="translate(-143.822 -197.352)" fill="#263238"/>
|
||||
<path id="Path_18662" data-name="Path 18662" d="M307.261,384.5c.771-.031,1.435,3.6,2.313,7.206.942,3.867,2.411,5.918,3.121,8.517.983,3.6.924,5.283-.1,7.658s-6.379,5.274-9.018,2.359c-2.152-2.376-2.572-5.245-2.843-8.934a93.325,93.325,0,0,0-.947-9.36c-.478-2.734-.988-5.379-.361-5.763.1.4.211.9.313,1.295.078.3.333,1.781.762,1.744a5.7,5.7,0,0,0-.116-1.037,1.228,1.228,0,0,1,.1-.912,1.447,1.447,0,0,1,.8-.478,21.876,21.876,0,0,1,2.232-.618c.376-.079.757-.142,1.139-.184a12.974,12.974,0,0,1,2.014-.154.682.682,0,0,1,.459.324,1.188,1.188,0,0,1,.09.415,3.021,3.021,0,0,0,.187.743c.04.105.132.229.238.19.086-.032.108-.146.1-.237-.05-.444-.145-.76-.228-1.273-.038-.238-.116-.558-.148-.8s-.062-.47-.106-.7" transform="translate(-141.945 -182.457)" fill="#37474f"/>
|
||||
<g id="Group_17532" data-name="Group 17532" transform="translate(167.524 218.8)" opacity="0.15">
|
||||
<g id="Group_17531" data-name="Group 17531">
|
||||
<g id="Group_17530" data-name="Group 17530" clip-path="url(#clip-path-51)">
|
||||
<path id="Path_18663" data-name="Path 18663" d="M319.339,416.6a.269.269,0,1,1-.322-.2.268.268,0,0,1,.322.2" transform="translate(-318.806 -416.386)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Group_17535" data-name="Group 17535" transform="translate(166.964 216.294)" opacity="0.15">
|
||||
<g id="Group_17534" data-name="Group 17534">
|
||||
<g id="Group_17533" data-name="Group 17533" clip-path="url(#clip-path-51)">
|
||||
<path id="Path_18664" data-name="Path 18664" d="M318.272,411.828a.269.269,0,1,1-.321-.2.268.268,0,0,1,.321.2" transform="translate(-317.74 -411.617)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Group_17538" data-name="Group 17538" transform="translate(166.436 213.929)" opacity="0.15">
|
||||
<g id="Group_17537" data-name="Group 17537">
|
||||
<g id="Group_17536" data-name="Group 17536" clip-path="url(#clip-path-51)">
|
||||
<path id="Path_18665" data-name="Path 18665" d="M317.267,407.328a.269.269,0,1,1-.321-.2.268.268,0,0,1,.321.2" transform="translate(-316.735 -407.118)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Group_17541" data-name="Group 17541" transform="translate(165.915 211.598)" opacity="0.15">
|
||||
<g id="Group_17540" data-name="Group 17540">
|
||||
<g id="Group_17539" data-name="Group 17539" clip-path="url(#clip-path-51)">
|
||||
<path id="Path_18666" data-name="Path 18666" d="M316.276,402.889a.269.269,0,1,1-.321-.2.267.267,0,0,1,.321.2" transform="translate(-315.744 -402.68)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Group_17544" data-name="Group 17544" transform="translate(159.909 212.689)" opacity="0.15">
|
||||
<g id="Group_17543" data-name="Group 17543">
|
||||
<g id="Group_17542" data-name="Group 17542" clip-path="url(#clip-path-51)">
|
||||
<path id="Path_18667" data-name="Path 18667" d="M304.848,404.967a.269.269,0,1,1-.322-.2.268.268,0,0,1,.322.2" transform="translate(-304.315 -404.757)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Group_17547" data-name="Group 17547" transform="translate(160.434 215.037)" opacity="0.15">
|
||||
<g id="Group_17546" data-name="Group 17546">
|
||||
<g id="Group_17545" data-name="Group 17545" clip-path="url(#clip-path-51)">
|
||||
<path id="Path_18668" data-name="Path 18668" d="M305.845,409.434a.269.269,0,1,1-.321-.2.268.268,0,0,1,.321.2" transform="translate(-305.313 -409.225)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Group_17550" data-name="Group 17550" transform="translate(160.962 217.402)" opacity="0.15">
|
||||
<g id="Group_17549" data-name="Group 17549">
|
||||
<g id="Group_17548" data-name="Group 17548" clip-path="url(#clip-path-51)">
|
||||
<path id="Path_18669" data-name="Path 18669" d="M306.851,413.937a.269.269,0,1,1-.321-.2.268.268,0,0,1,.321.2" transform="translate(-306.319 -413.727)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Group_17553" data-name="Group 17553" transform="translate(161.523 219.909)" opacity="0.15">
|
||||
<g id="Group_17552" data-name="Group 17552">
|
||||
<g id="Group_17551" data-name="Group 17551" clip-path="url(#clip-path-51)">
|
||||
<path id="Path_18670" data-name="Path 18670" d="M307.917,418.708a.269.269,0,1,1-.322-.2.268.268,0,0,1,.322.2" transform="translate(-307.385 -418.498)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Group_17556" data-name="Group 17556" transform="translate(160.275 203.457)" opacity="0.15">
|
||||
<g id="Group_17555" data-name="Group 17555">
|
||||
<g id="Group_17554" data-name="Group 17554" clip-path="url(#clip-path-59)">
|
||||
<path id="Path_18671" data-name="Path 18671" d="M309.183,404.78l-4.172-17.455.984-.137Z" transform="translate(-305.011 -387.188)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<path id="Path_18672" data-name="Path 18672" d="M313.8,416.873a.137.137,0,0,1-.042,0,12.136,12.136,0,0,0-5.918,1.07.136.136,0,1,1-.148-.228,12.212,12.212,0,0,1,6.093-1.112.136.136,0,0,1,.014.268" transform="translate(-145.978 -197.672)" fill="#263238"/>
|
||||
<path id="Path_18673" data-name="Path 18673" d="M312.734,412a.139.139,0,0,1-.071,0c-1.424-.475-4.617.262-5.888,1.077a.136.136,0,1,1-.148-.228c1.325-.851,4.621-1.608,6.123-1.107a.136.136,0,0,1-.015.262" transform="translate(-145.472 -195.304)" fill="#263238"/>
|
||||
<path id="Path_18674" data-name="Path 18674" d="M311.728,407.5a.138.138,0,0,1-.071,0c-1.424-.475-4.617.262-5.888,1.077a.136.136,0,1,1-.148-.228c1.324-.852,4.62-1.608,6.122-1.107a.136.136,0,0,1-.015.262" transform="translate(-144.995 -193.168)" fill="#263238"/>
|
||||
<path id="Path_18675" data-name="Path 18675" d="M310.737,403.062a.14.14,0,0,1-.072,0c-1.424-.475-4.617.263-5.887,1.078a.137.137,0,0,1-.19-.041.135.135,0,0,1,.041-.188c1.325-.85,4.62-1.608,6.123-1.107a.136.136,0,0,1-.015.262" transform="translate(-144.525 -191.063)" fill="#263238"/>
|
||||
<path id="Path_18676" data-name="Path 18676" d="M272,212.6c1.784,22.492,3.54,53.5,3.54,53.5.16,1.708,1.811,9,2.64,17.423.874,8.889,1.586,25.535,1.586,25.535s-6.252,3.344-11.315,1.664c0,0-5.428-28.038-8.026-38.514-2.458-9.914-6.3-28.7-6.3-28.7l-2.62,18.592s.349,6.411.158,10.9c-.223,5.217-3.57,30.289-3.57,30.289s-6.8,3.983-12.057-.024c0,0-.91-34.58-1.057-40.856-.29-12.31,1.765-35.947,2.216-51.84Z" transform="translate(-111.492 -99.915)" fill="#1b2d51"/>
|
||||
<path id="Path_18677" data-name="Path 18677" d="M289.225,264.423q.708,8.086,1.581,16.157.426,4.036.889,8.068l.46,4.033.238,2.015c.075.673.212,1.336.315,2,.892,5.336,2.265,15.029,3.238,20.352s2.007,10.637,3.114,15.935q-1.056-8.049-2.319-16.059c-.838-5.341-2.15-15.039-3.069-20.367-.107-.667-.249-1.33-.327-2l-.249-2.012-.511-4.022q-.511-4.022-1.054-8.04-1.077-8.038-2.306-16.061" transform="translate(-137.245 -125.476)" fill="#0f1a2d"/>
|
||||
<path id="Path_18678" data-name="Path 18678" d="M240.315,261.517c-.568,5.029-.868,10.085-1.085,15.138-.2,5.046-.416,10.124-.225,15.177.121,5.056.255,13.53.446,18.583s.419,10.107.724,15.157q.119-7.587.048-15.168c-.034-5.055-.126-13.527-.23-18.579l-.1-3.79-.024-.946.01-.94.022-1.894.094-7.578.124-7.578c.028-2.528.111-5.052.193-7.581" transform="translate(-113.379 -124.097)" fill="#0f1a2d"/>
|
||||
<path id="Path_18679" data-name="Path 18679" d="M261.067,258.785l-2.209-12.319s-6.137-.889-9.284-3.7c0,0,2.029,3.715,7.818,5.17l2.195,10.883-1.141,18.557Z" transform="translate(-118.43 -115.2)" fill="#0f1a2d"/>
|
||||
<path id="Path_18680" data-name="Path 18680" d="M220.219,36l7.654-4.419a4.351,4.351,0,1,0-4.351-7.537l-7.654,4.419Z" transform="translate(-102.435 -11.132)" fill="#37474f"/>
|
||||
<path id="Path_18681" data-name="Path 18681" d="M224.746,28.728h0a1.375,1.375,0,0,0,1.878.5l3.626-2.094a1.375,1.375,0,1,0-1.375-2.381l-3.626,2.093a1.375,1.375,0,0,0-.5,1.878" transform="translate(-106.56 -11.66)" fill="#455a64"/>
|
||||
<path id="Path_18682" data-name="Path 18682" d="M213.61,33V26.613a2.222,2.222,0,0,1,1-1.74l1.76-1.016a2.217,2.217,0,0,1,2.008,0l5.529,3.192a2.22,2.22,0,0,1,1,1.739v6.383a2.22,2.22,0,0,1-1,1.74l-1.76,1.016a2.219,2.219,0,0,1-2.008,0l-5.529-3.192a2.22,2.22,0,0,1-1-1.739" transform="translate(-101.364 -11.207)" fill="#ee2934"/>
|
||||
<g id="Group_17559" data-name="Group 17559" transform="translate(112.256 12.408)" opacity="0.5">
|
||||
<g id="Group_17558" data-name="Group 17558">
|
||||
<g id="Group_17557" data-name="Group 17557" clip-path="url(#clip-path-60)">
|
||||
<path id="Path_18683" data-name="Path 18683" d="M213.628,26.45c.069-.52.492-.71.993-.417l5.529,3.191a2.041,2.041,0,0,1,.71.747l3.771-2.175a2.045,2.045,0,0,0-.71-.747l0,0-5.524-3.191a2.219,2.219,0,0,0-2.009,0l-1.762,1.02a2.25,2.25,0,0,0-.993,1.577" transform="translate(-213.628 -23.613)" fill="#fff"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Group_17562" data-name="Group 17562" transform="translate(112.246 14.689)" opacity="0.2">
|
||||
<g id="Group_17561" data-name="Group 17561">
|
||||
<g id="Group_17560" data-name="Group 17560" clip-path="url(#clip-path-61)">
|
||||
<path id="Path_18684" data-name="Path 18684" d="M220.143,31.283l-5.529-3.192c-.554-.32-1-.06-1,.58v6.384a2.219,2.219,0,0,0,1,1.739l5.529,3.192c.554.32,1,.06,1-.58V33.022a2.22,2.22,0,0,0-1-1.739" transform="translate(-213.61 -27.954)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<path id="Path_18685" data-name="Path 18685" d="M207.022,36.151a.982.982,0,0,1,1.048.074,3.232,3.232,0,0,1,1.45,2.539,1.041,1.041,0,0,1-.436.962h0L196.327,47.1,194.311,43.5Z" transform="translate(-92.206 -17.098)" fill="#455a64"/>
|
||||
<path id="Path_18686" data-name="Path 18686" d="M210.2,38.862a2.907,2.907,0,0,1,.323,1.244,1.04,1.04,0,0,1-.436.962v0L197.33,48.447l-.905-1.62Z" transform="translate(-93.209 -18.441)" fill="#37474f"/>
|
||||
<path id="Path_18687" data-name="Path 18687" d="M194.935,50.249a3.232,3.232,0,0,1,1.449,2.538c0,.94-.649,1.326-1.449.863a3.233,3.233,0,0,1-1.449-2.539c0-.939.649-1.325,1.449-.863" transform="translate(-91.814 -23.752)" fill="#263238"/>
|
||||
<path id="Path_18688" data-name="Path 18688" d="M205.457,37.044c-1.173-2.216-2.024-2.424-2.711-2.056a1.446,1.446,0,0,0-.757,1.878,1.15,1.15,0,0,0-1.685-.184c-.648.519-.379,1.623-.379,1.623a1.113,1.113,0,0,0-1.5.051A1.492,1.492,0,0,0,198,39.892s-.587-.405-1.162.344a2.488,2.488,0,0,0-.462,2.056l.646-.378a1.62,1.62,0,0,0,.515.515,4.8,4.8,0,0,1,1.014,1.625c.305.627.579,1.4,1.239,1.464a.915.915,0,0,0,1.1-.786,2.707,2.707,0,0,0-.161-.82,1.228,1.228,0,0,0,1.361.641c.866-.275.737-1.072.692-1.593.547.129,1.11.19,1.335-.251a6.524,6.524,0,0,0-.048-2.162l1.387-.5a1.717,1.717,0,0,0,.6-1.6,3.848,3.848,0,0,0-.6-1.4" transform="translate(-93.161 -16.533)" fill="#ffa8a7"/>
|
||||
<path id="Path_18689" data-name="Path 18689" d="M199.591,48.453a8.863,8.863,0,0,0,1.184,2.592c.558.718.857,1.525,1.158,3.954.163,1.319,1.03,17.515,1.03,17.515l9.62-4.306L209.131,53.7a9.436,9.436,0,0,1,1.134-5.371c.96-1.709,1.029-2.665.793-3.461a21.413,21.413,0,0,0-1.754-4.318,3.19,3.19,0,0,0-1.72-.73,3.564,3.564,0,0,0-1.476.1l-2.186,2.131s.129.8.746.946a1.606,1.606,0,0,0,.984-.016s.309,1.592,0,1.972-.568.519-1.23.112c0,.6.033,1.518-.649,1.725s-1.492-.522-1.492-.522.1,1.592-.416,1.7a1.177,1.177,0,0,1-.94-.28Z" transform="translate(-94.711 -18.886)" fill="#ffa8a7"/>
|
||||
<path id="Path_18690" data-name="Path 18690" d="M213.336,77.065l-.669-3.049a8.054,8.054,0,0,1-4.124,1.3,12.247,12.247,0,0,1-4.225-.209l.164,3.42s4.907,1.717,8.854-1.46" transform="translate(-96.954 -35.123)" fill="#fafafa"/>
|
||||
<path id="Path_18691" data-name="Path 18691" d="M208.061,42.156a8.108,8.108,0,0,1-1.816.654.924.924,0,0,1-1.084-.617c-.075-.283,2.16-2.286,2.16-2.286l1.3-.145a3.267,3.267,0,0,0-1.392-.017,14.07,14.07,0,0,0-2.316,2.113c-.358.388.285,1.572,1.538,1.2l.125-.038c0,.015,0,.03.007.045a2.812,2.812,0,0,1,.016,1.451c-.078.289-.174.633-.535.631a.829.829,0,0,1-.452-.164,1.576,1.576,0,0,1-.288-.247.851.851,0,0,0-.259-.229.045.045,0,0,0-.023-.006c-.025,0-.029.037-.025.063.027.177.072.35.106.525.1.53.07,1.367-.591,1.482a.991.991,0,0,1-.887-.265c-.178-.167-.323-.369-.512-.523-.034-.027-.093-.048-.112-.009a.078.078,0,0,0,0,.049,3.74,3.74,0,0,1,.209,1.206.877.877,0,0,1-.329.687,1.091,1.091,0,0,1-.982-.172l-.119-.081c-.024,0-.026.012-.025.019a.116.116,0,0,0,.019.044,1.653,1.653,0,0,0,.172.225.954.954,0,0,0,1.249.068,1.033,1.033,0,0,0,.407-1.074,1.2,1.2,0,0,0,1.158.328c.929-.156.941-.873.824-1.612a1.033,1.033,0,0,0,.552.119A7.1,7.1,0,0,0,205,49.062a11.407,11.407,0,0,1,1.944-3.664,10.373,10.373,0,0,1,2.472-2.142s-1.228-.605-1.357-1.1m-.572,1.731a.421.421,0,0,1-.094-.049,1.1,1.1,0,0,1-.244-.293,5.562,5.562,0,0,0-.348-.594c.962-.294,1.25-.418,1.25-.418a1.028,1.028,0,0,0,.51.385,9.449,9.449,0,0,0-1.074.97" transform="translate(-95.747 -18.831)" fill="#f28f8f"/>
|
||||
<path id="Path_18692" data-name="Path 18692" d="M229.7,106.676a43.634,43.634,0,0,0-4.748-3.582c-2-1.359-8.189-10.267-8.189-10.267L213.335,77.4c-1.127,1.608-6.679,2.315-9.018,1.474,0,0-.048,5.83.5,13.742.254,3.694.6,4.1,3.6,9.377,1.663,2.919,4.1,6.176,7.069,11.182,2.249,3.784,6.606,10.543,7.721,13.466.3.785.469,1.879,1.583,1.726,1.715-.234,3.817-6.127,4.631-8.727a26.523,26.523,0,0,0,.285-12.963" transform="translate(-96.953 -36.728)" fill="#ee2934"/>
|
||||
<g id="Group_17565" data-name="Group 17565" transform="translate(107.363 40.672)" opacity="0.2">
|
||||
<g id="Group_17564" data-name="Group 17564">
|
||||
<g id="Group_17563" data-name="Group 17563" clip-path="url(#clip-path-62)">
|
||||
<path id="Path_18693" data-name="Path 18693" d="M229.7,106.676a43.634,43.634,0,0,0-4.748-3.582c-2-1.359-8.189-10.267-8.189-10.267L213.335,77.4c-1.127,1.608-6.679,2.315-9.018,1.474,0,0-.048,5.83.5,13.742.254,3.694.6,4.1,3.6,9.377,1.663,2.919,4.1,6.176,7.069,11.182,2.249,3.784,6.606,10.543,7.721,13.466.3.785.469,1.879,1.583,1.726,1.715-.234,3.817-6.127,4.631-8.727a26.523,26.523,0,0,0,.285-12.963" transform="translate(-204.316 -77.4)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<path id="Path_18694" data-name="Path 18694" d="M263.419,134.164c5.518,1.23,7.173,1.764,9.783,2.368,0,0,4.858,13.681,2.521,23.216a76.235,76.235,0,0,0-1.763,13.275c0,3.849.045,5.1.454,10.567,0,0-7.381,5.149-22.813,3.577-12.117-1.234-12.964-5.5-12.964-5.5s.67-16.68.955-25.59c.353-11.037,2.152-19.6,6.4-22.966a43.187,43.187,0,0,0,7.133,1.222Z" transform="translate(-113.239 -63.166)" fill="#fff"/>
|
||||
<g id="Group_17568" data-name="Group 17568" transform="translate(125.397 69.947)" opacity="0.72">
|
||||
<g id="Group_17567" data-name="Group 17567">
|
||||
<g id="Group_17566" data-name="Group 17566" clip-path="url(#clip-path-63)">
|
||||
<path id="Path_18695" data-name="Path 18695" d="M263.419,134.164c5.518,1.23,7.173,1.764,9.783,2.368,0,0,4.858,13.681,2.521,23.216a76.235,76.235,0,0,0-1.763,13.275c0,3.849.045,5.1.454,10.567,0,0-7.381,5.149-22.813,3.577-12.117-1.234-12.964-5.5-12.964-5.5s.67-16.68.955-25.59c.353-11.037,2.152-19.6,6.4-22.966a43.187,43.187,0,0,0,7.133,1.222Z" transform="translate(-238.637 -133.113)" fill="#ee2934"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<path id="Path_18696" data-name="Path 18696" d="M318.848,167.812c.92,3.018.782,4.3-.2,7.3q-.927,2.825-1.82,5.66c-.8,2.508-2.17,6.7-2.425,7.682a8.372,8.372,0,0,0-.376,3.126,19.064,19.064,0,0,1,.2,3.254,13.5,13.5,0,0,1-.675,3.813c-.28.854-.432,1.775-.768,2.6a9.555,9.555,0,0,1-1.094,1.6,12.448,12.448,0,0,1-1.017,1.852,8.414,8.414,0,0,1-2.735,1.587c-.353.582-.928,1.8-1.328,2.349-1.022,1.4-1.417-.765-1.426-1.505a10.92,10.92,0,0,1,.3-2.372,53.381,53.381,0,0,0,.99-5.92c.037-.352.37-1.823-.215-1.783a.707.707,0,0,0-.464.309,17.244,17.244,0,0,0-.932,1.547,9.341,9.341,0,0,1-.883,1.107,3.123,3.123,0,0,1-.908.791c-.368.181-1.755.374-1.856-.262a.623.623,0,0,1,.054-.3c.244-.678.549-1.334.795-2.01a18.271,18.271,0,0,0,.683-2.056,16.232,16.232,0,0,1,2.123-5.849c2.155-3.335,3.935-19.041,3.935-19.041l-4.31-12.253a22.182,22.182,0,0,1-3.771-11.1c-.191-6.181,2.058-7.969,2.058-7.969,5.206.859,7.722,2.353,9.288,6.675s5.85,18.1,6.783,21.16" transform="translate(-142.694 -66.423)" fill="#ffa8a7"/>
|
||||
<path id="Path_18697" data-name="Path 18697" d="M312.769,217.941l-.655,3.339s1.339-.36,4.679.837a13.035,13.035,0,0,1,3.55,1.783l1.083-3.374Z" transform="translate(-148.106 -103.419)" fill="#fafafa"/>
|
||||
<path id="Path_18698" data-name="Path 18698" d="M319.539,169.724c-.213-1.134-1.787-7.713-4.374-15.791s-3.152-8.7-5.11-11.067-5.088-2.763-7.643-3.264c0,0-2.063,1.662-2.167,7.143a21.958,21.958,0,0,0,3.289,11.922l4.888,12.451-1.512,10.555a12.658,12.658,0,0,1,8.456,3.271l2.974-8.587c1.541-4.77,1.41-5.5,1.2-6.632" transform="translate(-142.473 -66.245)" fill="#ee2934"/>
|
||||
<g id="Group_17571" data-name="Group 17571" transform="translate(157.769 73.357)" opacity="0.2">
|
||||
<g id="Group_17570" data-name="Group 17570">
|
||||
<g id="Group_17569" data-name="Group 17569" clip-path="url(#clip-path-64)">
|
||||
<path id="Path_18699" data-name="Path 18699" d="M319.539,169.724c-.213-1.134-1.787-7.713-4.374-15.791s-3.152-8.7-5.11-11.067-5.088-2.763-7.643-3.264c0,0-2.063,1.662-2.167,7.143a21.958,21.958,0,0,0,3.289,11.922l4.888,12.451-1.512,10.555a12.658,12.658,0,0,1,8.456,3.271l2.974-8.587c1.541-4.77,1.41-5.5,1.2-6.632" transform="translate(-300.242 -139.602)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<path id="Path_18700" data-name="Path 18700" d="M263.508,134.251s-3.715,3.223-2.557,6.329,6.425,3.742,10.6.9,3.877-6.272,3.877-6.272l-1.541-.509a5.045,5.045,0,0,1-.892,2.072c-.662.764-8.346,3.8-8.528,4.732,0,0-1.134-2.269-1.466-3.121s1.412-4.245,1.412-4.245Z" transform="translate(-123.722 -63.65)" fill="#fafafa"/>
|
||||
<path id="Path_18701" data-name="Path 18701" d="M251.6,81.275a2.029,2.029,0,0,0,.693.747,2.161,2.161,0,0,0-1.094,2.453,4.246,4.246,0,0,0,1.67,2.32c.769.6,1.636,1.055,2.4,1.656a11.638,11.638,0,0,1,2.568,2.989c.35.553.639,1.149,1,1.695a2.023,2.023,0,0,0,.929.673c.473.236.91.551,1.365.82a29.561,29.561,0,0,0,4.245,2.09,16.677,16.677,0,0,0,4.6.9l-.287,3.932s.486-1.035,1.148-2.267c.57-1.061,2.966-6.468,2.966-6.468.944-2.128,2.1-4.346,2.043-6.74a4.31,4.31,0,0,0-2.245-3.882,5.76,5.76,0,0,0-1.51-4.357,1.669,1.669,0,0,0-.5-.443,3.1,3.1,0,0,1-.361-.258,6.238,6.238,0,0,0-1.644-.828,12.194,12.194,0,0,0-3.745-.531c-.189,0-.379,0-.568,0-2.24.016-4.58.173-6.616-.759-.625-.286-1.2-.671-1.845-.923a2.655,2.655,0,0,0-2.009-.086,2.427,2.427,0,0,0-1.288,1.848,7.169,7.169,0,0,0,.111,2.334,2.066,2.066,0,0,0-2.025,3.087" transform="translate(-119.177 -35.041)" fill="#37474f"/>
|
||||
<path id="Path_18702" data-name="Path 18702" d="M267.887,88.416a7.638,7.638,0,0,0,2.55,5.558,14.048,14.048,0,0,0-.2,4.767,2.59,2.59,0,0,0,.343.963,1.172,1.172,0,0,0,.833.548c.462.043.658-.234.808-.592a11.574,11.574,0,0,1,.729-1.327,2.644,2.644,0,0,1,.421-.509,2.276,2.276,0,0,1,3.741.841c.956,2.3-.936,5.329-2.633,5.729a2.685,2.685,0,0,1-2.925-1.073l-.473,10.115c-1.6,1.6-8.461,3.734-10.21,5.634-.744-1.33-2.887-4.6.052-6.384l.133-3.307s-2.807.091-4.073-.717a8.552,8.552,0,0,1-3.716-6.462,45.386,45.386,0,0,1,.425-10.414,11.791,11.791,0,0,1,2.055-4.919c-.041.583,1.06,2.216,3.972,2.673a15.781,15.781,0,0,0,8.172-1.124" transform="translate(-120.126 -41.221)" fill="#ffa8a7"/>
|
||||
<path id="Path_18703" data-name="Path 18703" d="M268.14,125.281A16.266,16.266,0,0,0,274.255,124c1.115-.558,2.089-2.989,2.388-3.622,0,0-.38,2.873-1.427,4.073-1.282,1.467-7.13,2.183-7.13,2.183Z" transform="translate(-127.213 -57.123)" fill="#f28f8f"/>
|
||||
<path id="Path_18704" data-name="Path 18704" d="M272.347,103.589a.949.949,0,1,0,1-.933.961.961,0,0,0-1,.933" transform="translate(-129.235 -48.712)" fill="#263238"/>
|
||||
<path id="Path_18705" data-name="Path 18705" d="M273.389,95.642l2.486,1.206a1.44,1.44,0,0,0-.66-1.887,1.353,1.353,0,0,0-1.826.68" transform="translate(-129.73 -44.997)" fill="#263238"/>
|
||||
<path id="Path_18706" data-name="Path 18706" d="M268.513,116.046l-3.266,1.032a1.685,1.685,0,0,0,2.122,1.168,1.782,1.782,0,0,0,1.144-2.2" transform="translate(-125.867 -55.067)" fill="#b16668"/>
|
||||
<path id="Path_18707" data-name="Path 18707" d="M268.768,117.649a1.57,1.57,0,0,1,1.079-.156,1.757,1.757,0,0,1-1.19,1.422,1.653,1.653,0,0,1-.7.064,1.556,1.556,0,0,1,.806-1.33" transform="translate(-127.155 -55.737)" fill="#f28f8f"/>
|
||||
<path id="Path_18708" data-name="Path 18708" d="M256.115,95.793l2.548-.919a1.31,1.31,0,0,0-1.7-.8,1.37,1.37,0,0,0-.848,1.714" transform="translate(-121.5 -44.604)" fill="#263238"/>
|
||||
<path id="Path_18709" data-name="Path 18709" d="M257.325,102.769a.956.956,0,1,0,1.005-.94.968.968,0,0,0-1.005.94" transform="translate(-122.107 -48.32)" fill="#263238"/>
|
||||
<path id="Path_18710" data-name="Path 18710" d="M249.147,97.658a2.2,2.2,0,0,0,.49,1.081.989.989,0,0,1,.2.386,19.744,19.744,0,0,0,.711,2.887,3.443,3.443,0,0,0,3.1,2.192,4.416,4.416,0,0,0,1.044-.031l.078-.013a2.812,2.812,0,0,0,.844-.288c.017-.009.034-.018.05-.028s.049-.027.072-.042.043-.026.09-.058c.029-.019.056-.038.084-.059s.061-.046.091-.07.059-.047.087-.074c.057-.05.11-.1.161-.158a3.591,3.591,0,0,0,.666-1.047c.427-.973.291-2.374,1.017-2.495a.638.638,0,0,1,.087-.008.812.812,0,0,1,.094,0c.992.068.906,1.581,1.477,2.7a4.036,4.036,0,0,0,3.655,2.372c.1.006.189.01.278.013s.15,0,.221,0a3.7,3.7,0,0,0,.517-.045c.056-.009.11-.018.162-.029s.105-.024.155-.036c.033-.007.065-.016.1-.026a2.707,2.707,0,0,0,.578-.242c.067-.039.13-.079.193-.121a2.431,2.431,0,0,0,.332-.277,3.118,3.118,0,0,0,.636-.972,17.118,17.118,0,0,0,.543-2.795,1.148,1.148,0,0,1,.158-.4,1.783,1.783,0,0,0,.468-.993.961.961,0,0,0-.613-.927c-.169-.033-.346-.066-.529-.1a16.165,16.165,0,0,0-5.231-.221c-1.652.364-2.22.863-3.145.8-.865-.068-1.436-.648-3.016-1.247a14.459,14.459,0,0,0-4.905-.517c-.168.006-.332.015-.488.024-.27.018-.55.412-.51.869m10.931,1.629a1.271,1.271,0,0,1,.467-.36.784.784,0,0,1,.084-.043l.046-.022c.074-.034.151-.067.233-.1.067-.026.139-.052.214-.077a5.967,5.967,0,0,1,.7-.184c.092-.018.187-.036.282-.05a6.42,6.42,0,0,1,.727-.075c.059,0,.116-.006.17,0a4.43,4.43,0,0,1,2.966.734c.381.36.234,1.825.094,2.565,0,.018-.007.037-.011.055s-.007.038-.01.057c-.017.089-.037.191-.064.3-.015.059-.032.121-.049.185a.027.027,0,0,1,0,.007c-.027.1-.061.2-.1.307v0c-.014.034-.028.07-.043.1a.609.609,0,0,1-.027.062c-.009.024-.02.046-.032.07s-.028.058-.043.087-.033.065-.052.1-.039.067-.062.1-.044.068-.068.1a2.332,2.332,0,0,1-2.217.931,3.308,3.308,0,0,1-2.373-1.026h0a3.622,3.622,0,0,1-.8-1.554,3.417,3.417,0,0,1-.035-2.272M250.669,98a1.24,1.24,0,0,1,.386-.226l.03-.012a1.684,1.684,0,0,1,.172-.058c.033-.009.069-.02.105-.028s.059-.015.087-.019.04-.009.059-.013a.094.094,0,0,1,.023,0l.086-.015a3.512,3.512,0,0,1,.367-.04c.065,0,.131-.008.2-.009l.12,0h.092c.082,0,.168.005.255.012l.094.007.087.007a7.413,7.413,0,0,1,.738.109,4.907,4.907,0,0,1,2.657,1.3,3.732,3.732,0,0,1,.128,2.278,3.646,3.646,0,0,1-.136.55c0,.013-.009.028-.014.043s-.012.037-.019.056-.008.024-.013.037-.017.044-.027.066c-.018.046-.038.09-.059.135s-.037.077-.057.115l-.023.04c-.014.025-.029.051-.046.077s-.026.044-.042.066a.078.078,0,0,1-.006.011,2.328,2.328,0,0,1-2.356.954,2.954,2.954,0,0,1-1.2-.351,3.694,3.694,0,0,1-1.594-2.52c-.182-.764-.427-2.259-.093-2.565" transform="translate(-118.225 -45.911)" fill="#37474f"/>
|
||||
<path id="Path_18711" data-name="Path 18711" d="M283.208,99.477l4.846.826a4.215,4.215,0,0,0-.942,1.068l-3.928-.669Z" transform="translate(-134.378 -47.204)" fill="#37474f"/>
|
||||
<path id="Path_18712" data-name="Path 18712" d="M263.267,102.772l-.644,5.918-3.482-1.223,3.781-4.831a.789.789,0,0,1,.345.136" transform="translate(-122.969 -48.704)" fill="#f28f8f"/>
|
||||
<path id="Path_18713" data-name="Path 18713" d="M262.818,132.825s-1.836.792-2.659,4.8a41.322,41.322,0,0,0-.6,13.574l.737-1.862s-.274-7.739.975-11.636c1.21-3.772,2.585-4.509,2.585-4.509L263.9,132a3.962,3.962,0,0,0-1.081.827" transform="translate(-123.028 -62.637)" fill="#263238"/>
|
||||
<path id="Path_18714" data-name="Path 18714" d="M275.974,133.113a11.452,11.452,0,0,1-2.288,5.315c-2.143,3.015-11.454,11.658-11.454,11.658l-.355,1.971s10.284-9.364,12.427-12.38a11.453,11.453,0,0,0,2.288-5.315Z" transform="translate(-124.267 -63.166)" fill="#263238"/>
|
||||
<path id="Path_18715" data-name="Path 18715" d="M252.449,168.3l-1.061,15.179a.558.558,0,0,0,.372.581l6.813,1.751a.315.315,0,0,0,.141,0,.228.228,0,0,0,.094-.029.239.239,0,0,0,.044-.029.076.076,0,0,0,.02-.014l.448-.382a.426.426,0,0,0,.144-.307l1.061-15.175a.566.566,0,0,0-.372-.584l-6.814-1.747a.315.315,0,0,0-.295.064c-.077.062-.294.247-.432.366l-.02.018a.235.235,0,0,0-.054.058.451.451,0,0,0-.043.062.057.057,0,0,1-.009.022c-.005.017-.014.038-.019.059a.481.481,0,0,0-.019.107m3.123,1.074,1.528.393a.6.6,0,0,1,.41.423l-1.528-.4a.6.6,0,0,1-.41-.419" transform="translate(-119.29 -79.498)" fill="#e0e0e0"/>
|
||||
<g id="Group_17574" data-name="Group 17574" transform="translate(139.563 90.008)" opacity="0.2">
|
||||
<g id="Group_17573" data-name="Group 17573">
|
||||
<g id="Group_17572" data-name="Group 17572" clip-path="url(#clip-path-65)">
|
||||
<path id="Path_18716" data-name="Path 18716" d="M265.594,187.537a.064.064,0,0,0,.02-.014l.449-.383a.428.428,0,0,0,.144-.307l1.061-15.175a.6.6,0,0,0-.1-.369l-.452.383a.6.6,0,0,1,.1.369l-1.061,15.175a.427.427,0,0,1-.16.32" transform="translate(-265.594 -171.29)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<path id="Path_18717" data-name="Path 18717" d="M252.448,168.644l-1.061,15.179a.558.558,0,0,0,.373.581l6.813,1.751a.3.3,0,0,0,.141,0,.23.23,0,0,0,.094-.029.264.264,0,0,0,.044-.029.428.428,0,0,0,.16-.32l1.061-15.175a.57.57,0,0,0-.371-.584l-1.919-.489-1.727-.445-3.169-.813a.321.321,0,0,0-.274.046l-.02.018a.235.235,0,0,0-.054.058.445.445,0,0,0-.042.062.056.056,0,0,1-.009.022c0,.016-.014.038-.019.058a.485.485,0,0,0-.019.107m5.061,1.89-1.528-.4a.6.6,0,0,1-.41-.419l1.528.393a.6.6,0,0,1,.41.423" transform="translate(-119.289 -79.844)" fill="#f5f5f5"/>
|
||||
<g id="Group_17577" data-name="Group 17577" transform="translate(135.565 89.808)" opacity="0.2">
|
||||
<g id="Group_17576" data-name="Group 17576">
|
||||
<g id="Group_17575" data-name="Group 17575" clip-path="url(#clip-path-66)">
|
||||
<path id="Path_18718" data-name="Path 18718" d="M257.989,171.325a.637.637,0,0,0,.439.648l1.731.444a.41.41,0,0,0,.513-.4.554.554,0,0,0-.03-.226l-1.528-.4a.6.6,0,0,1-.41-.419l-.2-.052a.408.408,0,0,0-.513.4" transform="translate(-257.987 -170.908)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<path id="Path_18719" data-name="Path 18719" d="M260.055,175.088l-4.848-1.246a.141.141,0,0,0-.17.145l-.439,6.282a.218.218,0,0,0,.145.225l4.848,1.241a.14.14,0,0,0,.17-.145l.439-6.276a.218.218,0,0,0-.145-.225" transform="translate(-120.813 -82.491)" fill="#fafafa"/>
|
||||
<g id="Group_17580" data-name="Group 17580" transform="translate(134.092 96.331)" opacity="0.72">
|
||||
<g id="Group_17579" data-name="Group 17579">
|
||||
<g id="Group_17578" data-name="Group 17578" clip-path="url(#clip-path-67)">
|
||||
<path id="Path_18720" data-name="Path 18720" d="M257.018,183.323a5.9,5.9,0,0,0-.984.115,2.326,2.326,0,0,0-.852,1.6l4.471,1.144a7.38,7.38,0,0,0,.236-1.945,4.383,4.383,0,0,0-1.521-.833Z" transform="translate(-255.182 -183.323)" fill="#ee2934"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<path id="Path_18721" data-name="Path 18721" d="M258.288,183.174s-.518.386-.4.8.805.553,1.379.221a.983.983,0,0,0,.569-.784l-.2-.081a.657.657,0,0,1-.137.263c-.094.094-1.13.417-1.163.537,0,0-.126-.308-.161-.423s.227-.542.227-.542Z" transform="translate(-122.368 -86.918)" fill="#fafafa"/>
|
||||
<path id="Path_18722" data-name="Path 18722" d="M257.2,176.125a.266.266,0,0,0,.084.1.283.283,0,0,0-.167.311.555.555,0,0,0,.2.321c.095.085.2.154.3.24a1.518,1.518,0,0,1,.307.417c.04.076.073.157.114.232a.266.266,0,0,0,.115.1c.06.036.114.081.171.121a3.919,3.919,0,0,0,.536.315,2.185,2.185,0,0,0,.593.163l-.076.512s.074-.131.173-.286c.085-.133.451-.818.451-.818a2.113,2.113,0,0,0,.334-.863.567.567,0,0,0-.256-.531.756.756,0,0,0-.156-.585.2.2,0,0,0-.061-.063.431.431,0,0,1-.045-.038.822.822,0,0,0-.207-.125,1.616,1.616,0,0,0-.486-.106l-.074-.006a2.039,2.039,0,0,1-.859-.164c-.079-.044-.151-.1-.233-.139a.35.35,0,0,0-.262-.03.319.319,0,0,0-.187.23.936.936,0,0,0-.008.306.271.271,0,0,0-.3.385" transform="translate(-122.009 -83.132)" fill="#37474f"/>
|
||||
<path id="Path_18723" data-name="Path 18723" d="M259.235,177.2a1,1,0,0,0,.28.754,1.844,1.844,0,0,0-.074.622.344.344,0,0,0,.036.13.154.154,0,0,0,.1.08c.06.01.088-.024.111-.069a1.494,1.494,0,0,1,.109-.167.357.357,0,0,1,.06-.063.3.3,0,0,1,.482.147.62.62,0,0,1-.4.725.354.354,0,0,1-.373-.169l-.161,1.32c-.225.195-1.144.407-1.392.638-.085-.182-.333-.631.069-.836l.05-.431a1.233,1.233,0,0,1-.526-.134,1.125,1.125,0,0,1-.424-.883,5.948,5.948,0,0,1,.158-1.36,1.545,1.545,0,0,1,.317-.624c-.011.076.117.3.494.389a2.07,2.07,0,0,0,1.081-.068" transform="translate(-122.041 -83.935)" fill="#ffa8a7"/>
|
||||
<path id="Path_18724" data-name="Path 18724" d="M258.974,182.087a2.132,2.132,0,0,0,.813-.108c.151-.062.3-.371.348-.451a1.3,1.3,0,0,1-.227.52c-.182.18-.955.216-.955.216Z" transform="translate(-122.881 -86.14)" fill="#f28f8f"/>
|
||||
<path id="Path_18725" data-name="Path 18725" d="M259.692,179.344a.126.126,0,0,0,.107.143.129.129,0,1,0-.107-.143" transform="translate(-123.23 -85.05)" fill="#263238"/>
|
||||
<path id="Path_18726" data-name="Path 18726" d="M259.9,178.346l.314.182a.189.189,0,0,0-.068-.254.178.178,0,0,0-.246.071" transform="translate(-123.332 -84.585)" fill="#263238"/>
|
||||
<path id="Path_18727" data-name="Path 18727" d="M259.161,180.834l-.438.1a.221.221,0,0,0,.266.174.234.234,0,0,0,.172-.277" transform="translate(-122.771 -85.811)" fill="#b16668"/>
|
||||
<path id="Path_18728" data-name="Path 18728" d="M259.173,181.031a.2.2,0,0,1,.143-.01.231.231,0,0,1-.17.175.217.217,0,0,1-.092,0,.2.2,0,0,1,.119-.167" transform="translate(-122.928 -85.896)" fill="#f28f8f"/>
|
||||
<path id="Path_18729" data-name="Path 18729" d="M257.753,178.147l.343-.1a.172.172,0,0,0-.215-.12.18.18,0,0,0-.128.216" transform="translate(-122.308 -84.43)" fill="#263238"/>
|
||||
<path id="Path_18730" data-name="Path 18730" d="M257.749,179.027a.126.126,0,1,0,.141-.113.127.127,0,0,0-.141.113" transform="translate(-122.308 -84.899)" fill="#263238"/>
|
||||
<path id="Path_18731" data-name="Path 18731" d="M256.8,178.217a.284.284,0,0,0,.054.147.13.13,0,0,1,.022.053,2.582,2.582,0,0,0,.065.385.452.452,0,0,0,.385.317.6.6,0,0,0,.137.006h.01a.358.358,0,0,0,.113-.029l.007,0,.01,0,.013-.007.012-.007.013-.008.012-.009a.2.2,0,0,0,.023-.019.479.479,0,0,0,.1-.131c.066-.123.061-.308.158-.317h.024c.129.019.1.216.167.368a.532.532,0,0,0,.456.346l.036,0,.029,0a.483.483,0,0,0,.068,0l.022,0,.02,0,.013,0a.352.352,0,0,0,.078-.026l.026-.014a.322.322,0,0,0,.046-.033.411.411,0,0,0,.093-.121,2.226,2.226,0,0,0,.1-.361.143.143,0,0,1,.025-.051.238.238,0,0,0,.071-.126.127.127,0,0,0-.071-.128l-.068-.018a2.118,2.118,0,0,0-.683-.08c-.22.032-.3.091-.42.074s-.182-.1-.383-.193a1.914,1.914,0,0,0-.637-.116l-.064,0c-.035,0-.076.049-.075.109m1.416.321a.162.162,0,0,1,.064-.043l.012,0,.006,0,.032-.011.029-.008a.8.8,0,0,1,.094-.017l.037,0a.841.841,0,0,1,.1,0h.022a.583.583,0,0,1,.381.125c.046.051.013.241-.013.337l0,.007,0,.007-.011.038-.008.024h0a.384.384,0,0,1-.016.039l-.006.013,0,.008,0,.009-.007.011-.007.012-.009.013-.01.013a.3.3,0,0,1-.3.1.433.433,0,0,1-.3-.158.469.469,0,0,1-.089-.211.448.448,0,0,1,.018-.3m-1.22-.261a.172.172,0,0,1,.053-.026l0,0,.023-.006.014,0,.012,0h.022a.367.367,0,0,1,.049,0h.054l.033,0,.012,0,.012,0c.029.005.061.012.1.022a.645.645,0,0,1,.335.2.632.632,0,0,1-.029.37l0,.006,0,.007,0,0,0,.008-.009.017-.009.015,0,0-.007.01-.006.008v0a.307.307,0,0,1-.318.1.389.389,0,0,1-.154-.058.482.482,0,0,1-.184-.346c-.017-.1-.034-.3.013-.337" transform="translate(-121.861 -84.517)" fill="#37474f"/>
|
||||
<path id="Path_18732" data-name="Path 18732" d="M261.245,178.779l.627.156a.551.551,0,0,0-.134.131l-.508-.126Z" transform="translate(-123.961 -84.835)" fill="#37474f"/>
|
||||
<path id="Path_18733" data-name="Path 18733" d="M258.569,179.049l-.142.769-.444-.194.542-.6a.1.1,0,0,1,.044.021" transform="translate(-122.42 -84.954)" fill="#f28f8f"/>
|
||||
<path id="Path_18734" data-name="Path 18734" d="M258.766,183.913c.163-.078.487-.255.618-.048s.219.441.333.42a1.558,1.558,0,0,0,.721-.548,1.2,1.2,0,0,0,.158-.458,3.406,3.406,0,0,1-.182-.365c-.05-.13-.09-.193-.187-.21l-.038.311a1.245,1.245,0,0,1-.346.322c-.291.166-.836.164-1.078.576" transform="translate(-122.791 -86.698)" fill="#ebebeb"/>
|
||||
<path id="Path_18735" data-name="Path 18735" d="M258.15,183.924c-.083-.092-.133-.243-.286-.215s-.4.346-.4.265a2.559,2.559,0,0,1,.286-.795c.13-.157.406-.467.508-.451l-.042.36s-.2.206-.191.343.116.36.122.492" transform="translate(-122.175 -86.709)" fill="#ebebeb"/>
|
||||
<path id="Path_18736" data-name="Path 18736" d="M259.327,189.2l-3.195-.821a.188.188,0,0,0-.228.193l-.006.085a.291.291,0,0,0,.193.3l3.195.821a.188.188,0,0,0,.227-.193l.006-.085a.291.291,0,0,0-.193-.3" transform="translate(-121.43 -89.388)" fill="#455a64"/>
|
||||
<path id="Path_18737" data-name="Path 18737" d="M262.562,193.367l-1.139-.295a.075.075,0,0,0-.095.074.118.118,0,0,0,.081.119l1.139.295a.076.076,0,0,0,.095-.074.117.117,0,0,0-.081-.119" transform="translate(-124.007 -91.617)" fill="#455a64"/>
|
||||
<path id="Path_18738" data-name="Path 18738" d="M257.325,192.024l-2.783-.715a.075.075,0,0,0-.094.074.117.117,0,0,0,.081.119l2.782.715a.076.076,0,0,0,.095-.074.117.117,0,0,0-.081-.119" transform="translate(-120.742 -90.78)" fill="#455a64"/>
|
||||
<path id="Path_18739" data-name="Path 18739" d="M262.51,194.1l-1.139-.295a.076.076,0,0,0-.095.074.118.118,0,0,0,.081.119l1.139.295a.076.076,0,0,0,.095-.074.117.117,0,0,0-.081-.119" transform="translate(-123.982 -91.966)" fill="#455a64"/>
|
||||
<path id="Path_18740" data-name="Path 18740" d="M257.274,192.759l-2.783-.715a.075.075,0,0,0-.094.074.117.117,0,0,0,.08.119l2.783.715a.076.076,0,0,0,.095-.074.117.117,0,0,0-.081-.119" transform="translate(-120.718 -91.129)" fill="#455a64"/>
|
||||
<path id="Path_18741" data-name="Path 18741" d="M262.459,194.837l-1.139-.295a.075.075,0,0,0-.095.074.118.118,0,0,0,.081.119l1.139.295a.075.075,0,0,0,.095-.074.117.117,0,0,0-.081-.119" transform="translate(-123.958 -92.314)" fill="#455a64"/>
|
||||
<path id="Path_18742" data-name="Path 18742" d="M257.222,193.494l-2.783-.715a.075.075,0,0,0-.094.074.117.117,0,0,0,.081.119l2.782.715a.076.076,0,0,0,.095-.074.117.117,0,0,0-.081-.119" transform="translate(-120.693 -91.477)" fill="#455a64"/>
|
||||
<path id="Path_18743" data-name="Path 18743" d="M262.407,195.573l-1.14-.295a.076.076,0,0,0-.095.074.119.119,0,0,0,.081.119l1.139.295a.076.076,0,0,0,.095-.074.118.118,0,0,0-.081-.119" transform="translate(-123.933 -92.664)" fill="#455a64"/>
|
||||
<path id="Path_18744" data-name="Path 18744" d="M257.171,194.23l-2.783-.715a.075.075,0,0,0-.094.074.117.117,0,0,0,.081.119l2.782.715a.076.076,0,0,0,.095-.074.117.117,0,0,0-.081-.119" transform="translate(-120.669 -91.827)" fill="#455a64"/>
|
||||
<path id="Path_18745" data-name="Path 18745" d="M262.241,197.326l-.085,1.21-.343-.088.085-1.21Z" transform="translate(-124.237 -93.594)" fill="#455a64"/>
|
||||
<path id="Path_18746" data-name="Path 18746" d="M260.283,196.822l-.085,1.21-.343-.088.085-1.21Z" transform="translate(-123.308 -93.356)" fill="#455a64"/>
|
||||
<path id="Path_18747" data-name="Path 18747" d="M257.671,196.151l-.085,1.21-.343-.088.085-1.21Z" transform="translate(-122.069 -93.037)" fill="#455a64"/>
|
||||
<path id="Path_18748" data-name="Path 18748" d="M255.388,195.565l-.085,1.21-.343-.088.085-1.21Z" transform="translate(-120.985 -92.759)" fill="#455a64"/>
|
||||
<path id="Path_18749" data-name="Path 18749" d="M261.417,197.114l-.085,1.21-.171-.044.085-1.21Z" transform="translate(-123.928 -93.515)" fill="#455a64"/>
|
||||
<path id="Path_18750" data-name="Path 18750" d="M256.848,195.94l-.085,1.21-.171-.044.085-1.21Z" transform="translate(-121.76 -92.958)" fill="#455a64"/>
|
||||
<path id="Path_18751" data-name="Path 18751" d="M258.806,196.443l-.085,1.21-.171-.044.084-1.21Z" transform="translate(-122.689 -93.197)" fill="#455a64"/>
|
||||
<path id="Path_18752" data-name="Path 18752" d="M260.842,196.966l-.085,1.21-.086-.022.085-1.21Z" transform="translate(-123.695 -93.455)" fill="#455a64"/>
|
||||
<path id="Path_18753" data-name="Path 18753" d="M258.335,196.322l-.085,1.21-.086-.022.085-1.21Z" transform="translate(-122.506 -93.15)" fill="#455a64"/>
|
||||
<path id="Path_18754" data-name="Path 18754" d="M259.373,196.589l-.085,1.21-.086-.022.085-1.21Z" transform="translate(-122.998 -93.276)" fill="#455a64"/>
|
||||
<path id="Path_18755" data-name="Path 18755" d="M256.109,195.75l-.085,1.209-.086-.022.085-1.21Z" transform="translate(-121.45 -92.878)" fill="#455a64"/>
|
||||
<path id="Path_18756" data-name="Path 18756" d="M259.7,196.671l-.085,1.21-.086-.022.085-1.21Z" transform="translate(-123.153 -93.315)" fill="#455a64"/>
|
||||
<path id="Path_18757" data-name="Path 18757" d="M256.436,195.835l-.085,1.21-.086-.022.085-1.21Z" transform="translate(-121.605 -92.918)" fill="#455a64"/>
|
||||
<g id="Group_17583" data-name="Group 17583" transform="translate(134.748 99.962)" opacity="0.3">
|
||||
<g id="Group_17582" data-name="Group 17582">
|
||||
<g id="Group_17581" data-name="Group 17581" clip-path="url(#clip-path-68)">
|
||||
<path id="Path_18758" data-name="Path 18758" d="M259.31,190.95l-2.783-.715a.075.075,0,0,0-.094.074.117.117,0,0,0,.08.119l2.783.715a.076.076,0,0,0,.095-.074.117.117,0,0,0-.081-.119" transform="translate(-256.432 -190.232)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<path id="Path_18759" data-name="Path 18759" d="M260.706,168.62c-.156-.038-.073-.634-.012-1,.136-.814.427-2.407.427-2.407l-1.089-.22c-.172.981-.294,1.524-.441,2.456-.057.364-.1.858.055.9Z" transform="translate(-123.158 -78.295)" fill="#455a64"/>
|
||||
<path id="Path_18760" data-name="Path 18760" d="M261.672,168.818c.042.009.09-.009.164-.077l-.1-.025a.032.032,0,0,1-.008-.014.27.27,0,0,1-.014-.133l0-.042c.017-.14.051-.445.079-.607.157-.913.451-2.464.451-2.464l-.161-.042c-.18.9-.343,1.88-.449,2.552-.058.367-.126.817.033.853" transform="translate(-124.124 -78.493)" fill="#37474f"/>
|
||||
<path id="Path_18761" data-name="Path 18761" d="M267.836,139.115c1.191-.686,3.551-2.212,4.668-.712,1.15,1.545,1.912,3.226,2.768,3a11.826,11.826,0,0,0,5.168-4.57,9.144,9.144,0,0,0,.936-3.563,26.081,26.081,0,0,1-1.593-2.669c-.457-.959-.79-1.418-1.533-1.488l-.111,2.381a9.5,9.5,0,0,1-2.446,2.643c-2.113,1.419-6.257,1.724-7.857,4.982" transform="translate(-127.095 -61.266)" fill="#ebebeb"/>
|
||||
<path id="Path_18762" data-name="Path 18762" d="M263.18,139.9c-.682-.651-1.146-1.768-2.295-1.471s-2.842,2.852-2.861,2.243.828-4.931,1.724-6.195,2.816-3.779,3.594-3.714l-.111,2.753s-1.387,1.683-1.256,2.714,1.086,2.67,1.2,3.67" transform="translate(-122.439 -62.049)" fill="#ebebeb"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 148 KiB |
895
news-app/assets/images/svgImage/onboarding3.svg
Normal file
@@ -0,0 +1,895 @@
|
||||
<svg id="Component_58_1" data-name="Component 58 – 1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="277.457" height="247.714" viewBox="0 0 277.457 247.714">
|
||||
<defs>
|
||||
<clipPath id="clip-path">
|
||||
<rect id="Rectangle_1222" data-name="Rectangle 1222" width="277.457" height="247.714" fill="none"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-path-3">
|
||||
<rect id="Rectangle_1150" data-name="Rectangle 1150" width="18.572" height="99.694" fill="none"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-path-4">
|
||||
<rect id="Rectangle_1151" data-name="Rectangle 1151" width="134.799" height="77.312" fill="none"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-path-5">
|
||||
<rect id="Rectangle_1152" data-name="Rectangle 1152" width="4.118" height="9.713" fill="none"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-path-6">
|
||||
<rect id="Rectangle_1153" data-name="Rectangle 1153" width="4.319" height="9.915" fill="none"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-path-7">
|
||||
<rect id="Rectangle_1154" data-name="Rectangle 1154" width="3.097" height="3.588" fill="none"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-path-9">
|
||||
<rect id="Rectangle_1156" data-name="Rectangle 1156" width="2.699" height="5.202" fill="none"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-path-10">
|
||||
<rect id="Rectangle_1157" data-name="Rectangle 1157" width="2.897" height="4.739" fill="none"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-path-11">
|
||||
<rect id="Rectangle_1161" data-name="Rectangle 1161" width="5.713" height="7.544" fill="none"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-path-12">
|
||||
<rect id="Rectangle_1158" data-name="Rectangle 1158" width="5.102" height="3.244" fill="none"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-path-15">
|
||||
<rect id="Rectangle_1162" data-name="Rectangle 1162" width="45.771" height="51.147" fill="none"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-path-16">
|
||||
<rect id="Rectangle_1163" data-name="Rectangle 1163" width="40.579" height="50.507" fill="none"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-path-18">
|
||||
<rect id="Rectangle_1165" data-name="Rectangle 1165" width="6.13" height="19.222" fill="none"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-path-19">
|
||||
<rect id="Rectangle_1166" data-name="Rectangle 1166" width="4.826" height="10.116" fill="none"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-path-20">
|
||||
<rect id="Rectangle_1167" data-name="Rectangle 1167" width="4.796" height="9.906" fill="none"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-path-23">
|
||||
<rect id="Rectangle_1170" data-name="Rectangle 1170" width="31.099" height="28.229" fill="none"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-path-24">
|
||||
<rect id="Rectangle_1171" data-name="Rectangle 1171" width="37.017" height="89.427" fill="none"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-path-25">
|
||||
<rect id="Rectangle_1172" data-name="Rectangle 1172" width="27.584" height="27.207" fill="none"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-path-26">
|
||||
<rect id="Rectangle_1173" data-name="Rectangle 1173" width="3.083" height="7.03" fill="none"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-path-27">
|
||||
<rect id="Rectangle_1174" data-name="Rectangle 1174" width="15.249" height="46.39" fill="none"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-path-28">
|
||||
<rect id="Rectangle_1175" data-name="Rectangle 1175" width="13.947" height="48.446" fill="none"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-path-29">
|
||||
<rect id="Rectangle_1176" data-name="Rectangle 1176" width="35.94" height="39.49" fill="none"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-path-30">
|
||||
<rect id="Rectangle_1177" data-name="Rectangle 1177" width="5.637" height="29.336" fill="none"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-path-31">
|
||||
<rect id="Rectangle_1178" data-name="Rectangle 1178" width="17.316" height="44.371" fill="none"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-path-32">
|
||||
<rect id="Rectangle_1179" data-name="Rectangle 1179" width="24.039" height="14.035" fill="none"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-path-33">
|
||||
<rect id="Rectangle_1180" data-name="Rectangle 1180" width="14.792" height="17.111" fill="none"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-path-34">
|
||||
<rect id="Rectangle_1181" data-name="Rectangle 1181" width="10.219" height="22.488" fill="none"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-path-35">
|
||||
<rect id="Rectangle_1182" data-name="Rectangle 1182" width="12.582" height="14.951" fill="none"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-path-36">
|
||||
<rect id="Rectangle_1183" data-name="Rectangle 1183" width="4.628" height="42.237" fill="none"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-path-37">
|
||||
<rect id="Rectangle_1184" data-name="Rectangle 1184" width="13.53" height="17.509" fill="none"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-path-38">
|
||||
<rect id="Rectangle_1185" data-name="Rectangle 1185" width="9.339" height="21.382" fill="none"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-path-39">
|
||||
<rect id="Rectangle_1186" data-name="Rectangle 1186" width="12.297" height="12.007" fill="none"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-path-40">
|
||||
<rect id="Rectangle_1187" data-name="Rectangle 1187" width="6.02" height="8.046" fill="none"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-path-41">
|
||||
<rect id="Rectangle_1188" data-name="Rectangle 1188" width="14.066" height="12.856" fill="none"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-path-42">
|
||||
<rect id="Rectangle_1189" data-name="Rectangle 1189" width="11.964" height="5.658" fill="none"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-path-43">
|
||||
<rect id="Rectangle_1190" data-name="Rectangle 1190" width="18.995" height="12.664" fill="none"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-path-44">
|
||||
<rect id="Rectangle_1191" data-name="Rectangle 1191" width="16.599" height="10.237" fill="none"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-path-45">
|
||||
<rect id="Rectangle_1192" data-name="Rectangle 1192" width="19.595" height="11.782" fill="none"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-path-46">
|
||||
<rect id="Rectangle_1193" data-name="Rectangle 1193" width="11.406" height="6.954" fill="none"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-path-47">
|
||||
<rect id="Rectangle_1194" data-name="Rectangle 1194" width="10.163" height="9.382" fill="none"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-path-48">
|
||||
<rect id="Rectangle_1195" data-name="Rectangle 1195" width="2.76" height="6.522" fill="none"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-path-49">
|
||||
<rect id="Rectangle_1196" data-name="Rectangle 1196" width="19.709" height="11.945" fill="none"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-path-50">
|
||||
<rect id="Rectangle_1197" data-name="Rectangle 1197" width="14.385" height="2.276" fill="none"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-path-51">
|
||||
<rect id="Rectangle_1198" data-name="Rectangle 1198" width="21.889" height="11.11" fill="none"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-path-52">
|
||||
<rect id="Rectangle_1199" data-name="Rectangle 1199" width="16.756" height="2.466" fill="none"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-path-53">
|
||||
<rect id="Rectangle_1200" data-name="Rectangle 1200" width="5.117" height="6.594" fill="none"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-path-54">
|
||||
<rect id="Rectangle_1201" data-name="Rectangle 1201" width="9.412" height="7.663" fill="none"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-path-55">
|
||||
<rect id="Rectangle_1202" data-name="Rectangle 1202" width="6.755" height="4.644" fill="none"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-path-56">
|
||||
<rect id="Rectangle_1203" data-name="Rectangle 1203" width="35.717" height="21.618" fill="none"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-path-57">
|
||||
<rect id="Rectangle_1204" data-name="Rectangle 1204" width="58.461" height="38.203" fill="none"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-path-58">
|
||||
<rect id="Rectangle_1205" data-name="Rectangle 1205" width="58.46" height="33.648" fill="none"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-path-59">
|
||||
<rect id="Rectangle_1206" data-name="Rectangle 1206" width="51.886" height="15.196" fill="none"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-path-60">
|
||||
<rect id="Rectangle_1207" data-name="Rectangle 1207" width="51.781" height="25.411" fill="none"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-path-61">
|
||||
<rect id="Rectangle_1208" data-name="Rectangle 1208" width="30.529" height="13.417" fill="none"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-path-62">
|
||||
<rect id="Rectangle_1209" data-name="Rectangle 1209" width="18.371" height="19.849" fill="none"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-path-63">
|
||||
<rect id="Rectangle_1210" data-name="Rectangle 1210" width="18.371" height="15.133" fill="none"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-path-64">
|
||||
<rect id="Rectangle_1211" data-name="Rectangle 1211" width="21.323" height="30.794" fill="none"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-path-65">
|
||||
<rect id="Rectangle_1212" data-name="Rectangle 1212" width="19.95" height="7.173" fill="none"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-path-66">
|
||||
<rect id="Rectangle_1213" data-name="Rectangle 1213" width="18.047" height="27.341" fill="none"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-path-67">
|
||||
<rect id="Rectangle_1214" data-name="Rectangle 1214" width="3.605" height="33.041" fill="none"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-path-68">
|
||||
<rect id="Rectangle_1215" data-name="Rectangle 1215" width="40.856" height="54.698" fill="none"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-path-69">
|
||||
<rect id="Rectangle_1216" data-name="Rectangle 1216" width="21.354" height="6.089" fill="none"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-path-70">
|
||||
<rect id="Rectangle_1217" data-name="Rectangle 1217" width="40.377" height="29.336" fill="none"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-path-71">
|
||||
<rect id="Rectangle_1218" data-name="Rectangle 1218" width="0.769" height="3.149" fill="none"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-path-72">
|
||||
<rect id="Rectangle_1219" data-name="Rectangle 1219" width="18.559" height="7.367" fill="none"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-path-73">
|
||||
<rect id="Rectangle_1220" data-name="Rectangle 1220" width="19.065" height="28.288" fill="none"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
<g id="Group_17879" data-name="Group 17879" clip-path="url(#clip-path)">
|
||||
<g id="Group_17878" data-name="Group 17878">
|
||||
<g id="Group_17877" data-name="Group 17877" clip-path="url(#clip-path)">
|
||||
<path id="Path_18890" data-name="Path 18890" d="M40.631,174.781c-54.176,31.279-54.175,81.992,0,113.27s142.016,31.279,196.192,0,54.175-81.992,0-113.27-142.015-31.279-196.192,0" transform="translate(0 -63.796)" fill="#fafafa"/>
|
||||
<path id="Path_18891" data-name="Path 18891" d="M62.719,301.347l-54.971-31.4a.8.8,0,0,1,0-1.508L165.432,177.4a2.886,2.886,0,0,1,2.611,0l54.97,31.4a.8.8,0,0,1,0,1.508L65.33,301.347a2.884,2.884,0,0,1-2.611,0" transform="translate(-3.038 -74.66)" fill="#e0e0e0"/>
|
||||
<path id="Path_18892" data-name="Path 18892" d="M395.683,329.787c12.094,6.982,12.093,18.3,0,25.285s-31.7,6.983-43.8,0-12.093-18.3,0-25.285,31.7-6.982,43.795,0" transform="translate(-144.529 -136.828)" fill="#e0e0e0"/>
|
||||
<path id="Path_18893" data-name="Path 18893" d="M49.243,373.5c5.047,2.946,5.047,7.724,0,10.671s-13.23,2.947-18.277,0-5.047-7.724,0-10.671,13.23-2.946,18.277,0" transform="translate(-11.459 -156.532)" fill="#e0e0e0"/>
|
||||
<path id="Path_18894" data-name="Path 18894" d="M270.918,324.171l-5.9-3.407a4.547,4.547,0,0,0-4.321.106L230.232,340.52c-5.947-3.47-14.161-5.617-23.234-5.617-18.149,0-32.863,8.589-32.863,19.185S188.849,373.272,207,373.272s32.863-8.589,32.863-19.185a13.521,13.521,0,0,0-4.149-9.33l35.15-18.158c1.242-.641,1.268-1.729.057-2.428" transform="translate(-73.414 -135.023)" fill="#e0e0e0"/>
|
||||
<path id="Path_18895" data-name="Path 18895" d="M172.5,146.513l2.883-1.665s21.557-46.36,22.983-49.256-1.152-4.373-3.91-2.781l-143.773,82.9c-2.758,1.592-3.625,3.782-6.078,8.547s-22.337,46.675-22.337,46.675a2.629,2.629,0,0,0,1.043,3.092l38.977,22.564,150.38-86.818Z" transform="translate(-9.315 -38.854)" fill="#455a64"/>
|
||||
<path id="Path_18896" data-name="Path 18896" d="M47.725,186.239c-1.865,3.612-22.507,46.893-22.507,46.893l153.3-88.508s21.446-44.05,22.966-47.052-1.152-4.373-3.91-2.78L53.8,177.693c-2.758,1.592-4.213,4.935-6.078,8.547" transform="translate(-10.632 -39.681)" fill="#263238"/>
|
||||
<path id="Path_18897" data-name="Path 18897" d="M175.6,184.356,25.218,271.175l39.544,22.836,150.381-86.818Z" transform="translate(-10.632 -77.723)" fill="#37474f"/>
|
||||
<path id="Path_18898" data-name="Path 18898" d="M205.762.741,60.88,84.237c-3.177,1.834-4.169,4.8-3.609,8.716L74.415,213.278c.56,3.913,3.677,6.2,6.854,4.368l143.6-82.873c3.177-1.835,5.3-6.493,4.738-10.406L212.529,4.5c-.56-3.912-3.59-5.6-6.767-3.763" transform="translate(-24.083 0)" fill="#ee2934"/>
|
||||
<path id="Path_18899" data-name="Path 18899" d="M217.418,4.289a4.473,4.473,0,0,0-3.906.485L69.907,87.653a9.658,9.658,0,0,0-3.664,4.2l-4.636-1.965c1.02-2.223,2.8-3.036,4.318-3.923l143.6-82.878a4.42,4.42,0,0,1,4.057-.416V2.668Z" transform="translate(-25.973 -0.993)" fill="#37474f"/>
|
||||
<path id="Path_18900" data-name="Path 18900" d="M80.467,283.653l0-.008a5.034,5.034,0,0,1-2.789-4.213L60.686,160.178c-.349-2.444-.463-4.637.425-6.483l4.635,1.965c-.122.254-.235.516-.346.785q-.125.323-.225.645a.465.465,0,0,0-.03.1,7.407,7.407,0,0,0-.219.75c-.068.26-.127.527-.169.786a4.779,4.779,0,0,0-.082.593,9.207,9.207,0,0,0,0,2.541l17.077,119.86a5.047,5.047,0,0,0,2.828,4.241Z" transform="translate(-25.475 -64.796)" fill="#263238"/>
|
||||
<path id="Path_18901" data-name="Path 18901" d="M215.888,6.009,71.005,89.505c-3.177,1.835-4.169,4.8-3.608,8.716l17.23,120.93c.56,3.913,3.59,5.6,6.767,3.764l143.6-82.873c3.177-1.835,5.3-6.493,4.738-10.406L222.654,9.773c-.56-3.912-3.59-5.6-6.767-3.763" transform="translate(-28.351 -2.221)" fill="#455a64"/>
|
||||
<path id="Path_18902" data-name="Path 18902" d="M233.677,145.229,105.5,219.2c-1.646.951-3.216.078-3.506-1.95L85.084,98.626a5.71,5.71,0,0,1,2.455-5.393L215.718,19.265c1.646-.951,3.216-.078,3.506,1.95l16.909,118.622a5.71,5.71,0,0,1-2.455,5.393" transform="translate(-35.851 -7.96)" fill="#37474f"/>
|
||||
<path id="Path_18903" data-name="Path 18903" d="M247.873,232.489a4.907,4.907,0,0,1-1.8,1.987L117.894,308.444c-1.577.914-3.086.145-3.458-1.715l128.172-73.967a4.987,4.987,0,0,0,1.907-2.191Z" transform="translate(-48.245 -97.207)" fill="#263238"/>
|
||||
<path id="Path_18904" data-name="Path 18904" d="M85.084,98.906l16.909,118.622c.012.081.028.157.044.234l128.178-73.969a5.71,5.71,0,0,0,2.456-5.393L215.717,19.545,87.539,93.514a5.711,5.711,0,0,0-2.455,5.393" transform="translate(-35.851 -8.24)" fill="#fafafa"/>
|
||||
<path id="Path_18905" data-name="Path 18905" d="M94.218,282.884a2.873,2.873,0,0,1-1.235,2.712c-.828.478-1.618.039-1.764-.981a2.871,2.871,0,0,1,1.235-2.712c.828-.478,1.618-.039,1.764.981" transform="translate(-38.447 -118.766)" fill="#263238"/>
|
||||
<path id="Path_18906" data-name="Path 18906" d="M86.016,235.608h0a2.232,2.232,0,0,0-.96,2.109l2.8,19.531c.113.792.728,1.134,1.371.762a2.233,2.233,0,0,0,.96-2.109l-2.8-19.531c-.114-.793-.728-1.134-1.371-.762" transform="translate(-35.851 -99.267)" fill="#263238"/>
|
||||
<path id="Path_18907" data-name="Path 18907" d="M118.441,286.066a2.7,2.7,0,0,1-1.165.364,3.622,3.622,0,0,1-1.809-.195,3.158,3.158,0,0,1-1.762-2.184L99.869,186.771l3.1,1.318L116.8,285.364a.951.951,0,0,0,.989.91,1.587,1.587,0,0,0,.656-.208" transform="translate(-42.104 -78.741)" fill="#ee2934"/>
|
||||
<g id="Group_17666" data-name="Group 17666" transform="translate(57.765 108.031)" opacity="0.5">
|
||||
<g id="Group_17665" data-name="Group 17665">
|
||||
<g id="Group_17664" data-name="Group 17664" clip-path="url(#clip-path-3)">
|
||||
<path id="Path_18908" data-name="Path 18908" d="M118.441,286.066a2.7,2.7,0,0,1-1.165.364,3.622,3.622,0,0,1-1.809-.195,3.158,3.158,0,0,1-1.762-2.184L99.869,186.771l3.1,1.318L116.8,285.364a.951.951,0,0,0,.989.91,1.587,1.587,0,0,0,.656-.208" transform="translate(-99.869 -186.772)" fill="#fff"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<path id="Path_18909" data-name="Path 18909" d="M119.275,225.505c-.441.018-.552-.423-.579-.614l-15.024-105.7L235.014,43.364,249.987,148.7a2.285,2.285,0,0,1-1.068,2.077l-129.16,74.566a1.087,1.087,0,0,1-.484.159" transform="translate(-43.707 -18.282)" fill="#fafafa"/>
|
||||
<path id="Path_18910" data-name="Path 18910" d="M312.938,85.5,291.389,98.016,288.922,81.8l21.549-12.517Z" transform="translate(-121.807 -29.211)" fill="#e0e0e0"/>
|
||||
<path id="Path_18911" data-name="Path 18911" d="M280.37,138.928l-74.715,43.4-4.23-29.793,74.715-43.4Z" transform="translate(-84.919 -46.01)" fill="#e0e0e0"/>
|
||||
<line id="Line_47" data-name="Line 47" y1="11.585" x2="19.944" transform="translate(120.149 96.692)" fill="none" stroke="#455a64" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
|
||||
<line id="Line_48" data-name="Line 48" y1="39.988" x2="68.842" transform="translate(120.605 71.567)" fill="none" stroke="#fafafa" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
|
||||
<line id="Line_49" data-name="Line 49" y1="39.988" x2="68.842" transform="translate(121.061 74.846)" fill="none" stroke="#fafafa" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
|
||||
<line id="Line_50" data-name="Line 50" y1="39.988" x2="68.842" transform="translate(121.516 78.124)" fill="none" stroke="#fafafa" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
|
||||
<line id="Line_51" data-name="Line 51" y1="39.988" x2="68.842" transform="translate(121.972 81.403)" fill="none" stroke="#fafafa" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
|
||||
<line id="Line_52" data-name="Line 52" y1="39.988" x2="68.842" transform="translate(122.428 84.681)" fill="none" stroke="#fafafa" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
|
||||
<line id="Line_53" data-name="Line 53" y1="39.988" x2="68.842" transform="translate(122.884 87.96)" fill="none" stroke="#fafafa" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
|
||||
<line id="Line_54" data-name="Line 54" y1="27.685" x2="47.661" transform="translate(123.34 103.542)" fill="none" stroke="#fafafa" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
|
||||
<path id="Path_18912" data-name="Path 18912" d="M209.044,248.021l-74.715,43.4-4.23-29.793,74.715-43.4Z" transform="translate(-54.849 -92.003)" fill="#e0e0e0"/>
|
||||
<line id="Line_55" data-name="Line 55" y1="11.585" x2="19.944" transform="translate(78.893 159.793)" fill="none" stroke="#455a64" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
|
||||
<line id="Line_56" data-name="Line 56" y1="39.988" x2="68.842" transform="translate(79.349 134.668)" fill="none" stroke="#fafafa" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
|
||||
<line id="Line_57" data-name="Line 57" y1="39.988" x2="68.842" transform="translate(79.805 137.947)" fill="none" stroke="#fafafa" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
|
||||
<line id="Line_58" data-name="Line 58" y1="39.988" x2="68.842" transform="translate(80.261 141.225)" fill="none" stroke="#fafafa" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
|
||||
<line id="Line_59" data-name="Line 59" y1="39.988" x2="68.842" transform="translate(80.717 144.504)" fill="none" stroke="#fafafa" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
|
||||
<line id="Line_60" data-name="Line 60" y1="39.988" x2="68.842" transform="translate(81.172 147.782)" fill="none" stroke="#fafafa" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
|
||||
<line id="Line_61" data-name="Line 61" y1="39.988" x2="68.842" transform="translate(81.628 151.06)" fill="none" stroke="#fafafa" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
|
||||
<line id="Line_62" data-name="Line 62" y1="27.685" x2="47.661" transform="translate(82.084 166.642)" fill="none" stroke="#fafafa" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
|
||||
<path id="Path_18913" data-name="Path 18913" d="M118.5,176.951l-.025-.205a1.363,1.363,0,0,1,.648-1.256l95.614-55.14c.422-.244.816-.076.88.374l.025.205a1.363,1.363,0,0,1-.648,1.256l-95.614,55.14c-.422.244-.816.076-.88-.374" transform="translate(-49.945 -50.691)" fill="#455a64"/>
|
||||
<path id="Path_18914" data-name="Path 18914" d="M234.559,43.513l1.068,7.524,13.829,97.275a2.011,2.011,0,0,1-.925,1.8L119.369,224.678a.705.705,0,0,1-.307.109c-.126.005-.172-.313-.172-.316l-15-105.518Zm.572-1.109L103.114,118.623,118.164,224.5a.948.948,0,0,0,.986.91,1.435,1.435,0,0,0,.659-.208l129.16-74.566a2.547,2.547,0,0,0,1.212-2.355L236.352,51.007Z" transform="translate(-43.472 -17.877)" fill="#ee2934"/>
|
||||
<path id="Path_18915" data-name="Path 18915" d="M231.288,28.209a1,1,0,0,0-1.6-.488l-129.16,74.566a2.633,2.633,0,0,0-.947,1.034L96.489,102a2.575,2.575,0,0,1,.949-1.029L226.6,26.409a3.745,3.745,0,0,1,2.973-.169,3.235,3.235,0,0,1,1.718,1.97" transform="translate(-40.679 -10.965)" fill="#ee2934"/>
|
||||
<g id="Group_17669" data-name="Group 17669" transform="translate(55.81 15.044)" opacity="0.2">
|
||||
<g id="Group_17668" data-name="Group 17668">
|
||||
<g id="Group_17667" data-name="Group 17667" clip-path="url(#clip-path-4)">
|
||||
<path id="Path_18916" data-name="Path 18916" d="M231.288,28.209a1,1,0,0,0-1.6-.488l-129.16,74.566a2.633,2.633,0,0,0-.947,1.034L96.489,102a2.575,2.575,0,0,1,.949-1.029L226.6,26.409a3.745,3.745,0,0,1,2.973-.169,3.235,3.235,0,0,1,1.718,1.97" transform="translate(-96.489 -26.009)" fill="#fff"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<path id="Path_18917" data-name="Path 18917" d="M99.373,158.712a2.251,2.251,0,0,0-.263,1.319l1,7.076-3.1-1.318-1-7.07c-.008-.055-.012-.1-.015-.16a1.918,1.918,0,0,1,.013-.33,2.522,2.522,0,0,1,.27-.834Z" transform="translate(-40.471 -66.356)" fill="#ee2934"/>
|
||||
<g id="Group_17672" data-name="Group 17672" transform="translate(55.525 91.038)" opacity="0.2">
|
||||
<g id="Group_17671" data-name="Group 17671">
|
||||
<g id="Group_17670" data-name="Group 17670" clip-path="url(#clip-path-5)">
|
||||
<path id="Path_18918" data-name="Path 18918" d="M99.373,158.712a2.251,2.251,0,0,0-.263,1.319l1,7.076-3.1-1.318-1-7.07c-.008-.055-.012-.1-.015-.16a1.918,1.918,0,0,1,.013-.33,2.522,2.522,0,0,1,.27-.834Z" transform="translate(-95.996 -157.394)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<path id="Path_18919" data-name="Path 18919" d="M233.382,29.518l1,7.069L144.1,88.752a1,1,0,0,1-1.645-.7l-.38-2.676c-.12-.843-.858-1.157-1.652-.7l-32.069,18.475c-.686.361-.618,1.191-.663,2.334l-.175,2.7a2.65,2.65,0,0,1-1.211,2.354l-3.94,2.274-1-7.069a2.56,2.56,0,0,1,1.211-2.354l129.16-74.566a1,1,0,0,1,1.645.7" transform="translate(-42.728 -12.061)" fill="#ee2934"/>
|
||||
<path id="Path_18920" data-name="Path 18920" d="M322.234,36.93c.606-.35,1.172-.109,1.264.538a1.959,1.959,0,0,1-.932,1.806c-.606.35-1.172.109-1.264-.538a1.96,1.96,0,0,1,.932-1.806" transform="translate(-135.453 -15.502)" fill="#fff"/>
|
||||
<path id="Path_18921" data-name="Path 18921" d="M315.4,40.87c.606-.35,1.172-.109,1.264.538a1.959,1.959,0,0,1-.932,1.806c-.606.35-1.172.109-1.264-.538a1.96,1.96,0,0,1,.932-1.806" transform="translate(-132.571 -17.163)" fill="#fff"/>
|
||||
<path id="Path_18922" data-name="Path 18922" d="M308.564,44.811c.606-.35,1.172-.109,1.264.538a1.959,1.959,0,0,1-.932,1.806c-.606.35-1.172.109-1.264-.538a1.959,1.959,0,0,1,.932-1.806" transform="translate(-129.69 -18.824)" fill="#fff"/>
|
||||
<path id="Path_18923" data-name="Path 18923" d="M235.131,42.4l1.222,8.6L104.336,127.225l-1.222-8.6,2.942-1.7c.787-.456.98-1.109,1.211-2.354l.618-3.247c.18-1.126.424-1.9,1.218-2.354l33.256-19.152a1.523,1.523,0,0,1,2.233.366l1.609,2c.585.7.886,1.109,1.673.653Z" transform="translate(-43.472 -17.877)" fill="#e0e0e0"/>
|
||||
<path id="Path_18924" data-name="Path 18924" d="M100.856,173.221l1.222,8.6-3.1-1.318-1.22-8.6Z" transform="translate(-41.214 -72.475)" fill="#e0e0e0"/>
|
||||
<g id="Group_17675" data-name="Group 17675" transform="translate(56.544 99.433)" opacity="0.15">
|
||||
<g id="Group_17674" data-name="Group 17674">
|
||||
<g id="Group_17673" data-name="Group 17673" clip-path="url(#clip-path-6)">
|
||||
<path id="Path_18925" data-name="Path 18925" d="M100.856,173.221l1.222,8.6-3.1-1.318-1.22-8.6Z" transform="translate(-97.759 -171.908)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Group_17678" data-name="Group 17678" transform="translate(63.917 100.413)" opacity="0.2">
|
||||
<g id="Group_17677" data-name="Group 17677">
|
||||
<g id="Group_17676" data-name="Group 17676" clip-path="url(#clip-path-7)">
|
||||
<path id="Path_18926" data-name="Path 18926" d="M113.381,174.268l-2.248,1.3L111.84,174a.34.34,0,0,0-.035-.373c-.081-.07-.2-.013-.258.123l-1,2.221,0,.008a.488.488,0,0,0-.024.082.233.233,0,0,0-.007.027.384.384,0,0,0,0,.112.291.291,0,0,0,.031.095c0,.006.009.009.013.015a.154.154,0,0,0,.042.044l0,0,1.435.813a.126.126,0,0,0,.128-.005.307.307,0,0,0,.123-.167.3.3,0,0,0-.069-.353l-1.008-.571,2.247-1.3a.381.381,0,0,0,.145-.362c-.021-.142-.118-.211-.217-.153" transform="translate(-110.505 -173.602)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Group_17681" data-name="Group 17681" transform="translate(68.522 97.586)" opacity="0.2">
|
||||
<g id="Group_17680" data-name="Group 17680">
|
||||
<g id="Group_17679" data-name="Group 17679" clip-path="url(#clip-path-7)">
|
||||
<path id="Path_18927" data-name="Path 18927" d="M118.615,171.124l2.247-1.3-1.008-.571a.3.3,0,0,1-.069-.353c.05-.145.164-.221.251-.172l1.434.813.005,0a.165.165,0,0,1,.041.043c0,.006.01.009.013.016a.258.258,0,0,1,.031.094.369.369,0,0,1,0,.113c0,.009-.005.017-.007.027a.416.416,0,0,1-.024.082l0,.008-1,2.221a.285.285,0,0,1-.11.132.122.122,0,0,1-.148-.01.337.337,0,0,1-.034-.372l.7-1.56-2.247,1.3c-.1.058-.2-.01-.217-.153a.376.376,0,0,1,.144-.362" transform="translate(-118.467 -168.715)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Group_17684" data-name="Group 17684" transform="translate(73.542 93.61)" opacity="0.2">
|
||||
<g id="Group_17683" data-name="Group 17683">
|
||||
<g id="Group_17682" data-name="Group 17682" clip-path="url(#clip-path-9)">
|
||||
<path id="Path_18928" data-name="Path 18928" d="M129.354,161.922c-.033-.125-.157-.1-.2.035l-.233.709c-.572-.03-1.189.472-1.532,1.331a2.548,2.548,0,0,0,.408,2.872.976.976,0,0,0,1.094.011,2.331,2.331,0,0,0,.925-1.176.323.323,0,0,0-.051-.364c-.085-.06-.2.006-.256.148-.332.83-1.008,1.222-1.507.87a1.9,1.9,0,0,1-.3-2.145,1.416,1.416,0,0,1,1.042-.989l-.175.534c-.046.138.032.263.125.2l.907-.593a.235.235,0,0,0,.078-.237Z" transform="translate(-127.145 -161.84)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Group_17687" data-name="Group 17687" transform="translate(97.387 73.247)" opacity="0.2">
|
||||
<g id="Group_17686" data-name="Group 17686">
|
||||
<g id="Group_17685" data-name="Group 17685" clip-path="url(#clip-path-10)">
|
||||
<path id="Path_18929" data-name="Path 18929" d="M170.17,128.8l.654-1.639a.441.441,0,0,0-.071-.5c-.116-.082-.273.009-.351.2l-.654,1.639-.984-.693c-.116-.082-.273.009-.351.2a.44.44,0,0,0,.071.5l.984.693-.654,1.639a.441.441,0,0,0,.071.5.17.17,0,0,0,.19,0,.4.4,0,0,0,.16-.2l.654-1.638.984.692a.17.17,0,0,0,.19,0,.409.409,0,0,0,.161-.2.442.442,0,0,0-.071-.5Z" transform="translate(-168.371 -126.636)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<path id="Path_18930" data-name="Path 18930" d="M136.7,118.317l-.38-2.677a2.555,2.555,0,0,1,1.215-2.354L239.847,54.255c.791-.456,1.529-.142,1.648.7l.38,2.677a2.555,2.555,0,0,1-1.215,2.354L138.352,119.018c-.791.456-1.529.142-1.648-.7" transform="translate(-57.466 -22.785)" fill="#fafafa"/>
|
||||
<path id="Path_18931" data-name="Path 18931" d="M312.212,61.285a.433.433,0,0,1-.142-.017.4.4,0,0,1-.288-.391l0-1.092-.645-.344a.39.39,0,0,1-.206-.287.515.515,0,0,1,.188-.474l.82-.636a.122.122,0,0,0,.032-.064l.242-1.155a.473.473,0,0,1,.4-.388.418.418,0,0,1,.38.168l.428.606.728-.283a.425.425,0,0,1,.42.064.439.439,0,0,1,.1.534l-.5,1.082a.124.124,0,0,0-.012.066l.29.947a.512.512,0,0,1-.126.485.424.424,0,0,1-.342.134l-.75-.049-.674.908a.43.43,0,0,1-.335.184m-.75-2.192.644.343a.4.4,0,0,1,.211.36l0,.726.451-.607a.421.421,0,0,1,.382-.183l.75.049a.129.129,0,0,0,.017-.072l-.29-.949a.493.493,0,0,1,.031-.345l.441-.946-.562.218a.418.418,0,0,1-.492-.142l-.335-.475-.216,1.027a.518.518,0,0,1-.183.3l-.82.636a.12.12,0,0,0-.032.064m1.825-1.829h0Z" transform="translate(-131.083 -23.793)" fill="#e0e0e0"/>
|
||||
<g id="Group_17699" data-name="Group 17699" transform="translate(185.087 27.764)" opacity="0.2">
|
||||
<g id="Group_17698" data-name="Group 17698">
|
||||
<g id="Group_17697" data-name="Group 17697" clip-path="url(#clip-path-11)">
|
||||
<g id="Group_17690" data-name="Group 17690">
|
||||
<g id="Group_17689" data-name="Group 17689">
|
||||
<g id="Group_17688" data-name="Group 17688" clip-path="url(#clip-path-12)">
|
||||
<path id="Path_18932" data-name="Path 18932" d="M320.6,51.244a.618.618,0,0,1-.5-.211.406.406,0,0,1,.106-.634l4.028-2.326a.616.616,0,0,1,.753.138.406.406,0,0,1-.106.634l-4.028,2.326a.557.557,0,0,1-.257.072" transform="translate(-319.994 -48.001)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Group_17693" data-name="Group 17693" transform="translate(0.305 2.15)">
|
||||
<g id="Group_17692" data-name="Group 17692">
|
||||
<g id="Group_17691" data-name="Group 17691" clip-path="url(#clip-path-12)">
|
||||
<path id="Path_18933" data-name="Path 18933" d="M321.125,54.961a.618.618,0,0,1-.5-.211.406.406,0,0,1,.106-.634l4.028-2.326a.615.615,0,0,1,.752.138.406.406,0,0,1-.106.634l-4.028,2.326a.557.557,0,0,1-.257.072" transform="translate(-320.522 -51.718)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Group_17696" data-name="Group 17696" transform="translate(0.611 4.3)">
|
||||
<g id="Group_17695" data-name="Group 17695">
|
||||
<g id="Group_17694" data-name="Group 17694" clip-path="url(#clip-path-12)">
|
||||
<path id="Path_18934" data-name="Path 18934" d="M321.653,58.678a.618.618,0,0,1-.5-.211.406.406,0,0,1,.106-.634l4.028-2.325a.615.615,0,0,1,.753.138.406.406,0,0,1-.106.634l-4.028,2.326a.557.557,0,0,1-.257.072" transform="translate(-321.05 -55.435)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<path id="Path_18935" data-name="Path 18935" d="M310.233,176.113a1.15,1.15,0,0,0-.682-.968v0l-1.483-.622,0,0a1.372,1.372,0,0,0-1.254.146l-37.347,21.586a2.928,2.928,0,0,0-1.392,2.7l3.57,24.935a1.153,1.153,0,0,0,.667.964h0l1.517.637a1.389,1.389,0,0,0,1.238-.156l37.347-21.586a2.929,2.929,0,0,0,1.392-2.7Z" transform="translate(-113.009 -73.538)" fill="#fff"/>
|
||||
<g id="Group_17702" data-name="Group 17702" transform="translate(155.044 100.891)" opacity="0.25">
|
||||
<g id="Group_17701" data-name="Group 17701">
|
||||
<g id="Group_17700" data-name="Group 17700" clip-path="url(#clip-path-15)">
|
||||
<path id="Path_18936" data-name="Path 18936" d="M310.233,176.113a1.15,1.15,0,0,0-.682-.968v0l-1.483-.622,0,0a1.372,1.372,0,0,0-1.254.146l-37.347,21.586a2.928,2.928,0,0,0-1.392,2.7l3.57,24.935a1.153,1.153,0,0,0,.667.964h0l1.517.637a1.389,1.389,0,0,0,1.238-.156l37.347-21.586a2.929,2.929,0,0,0,1.392-2.7Z" transform="translate(-268.053 -174.429)" fill="#ee2934"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Group_17705" data-name="Group 17705" transform="translate(160.234 101.533)" opacity="0.4">
|
||||
<g id="Group_17704" data-name="Group 17704">
|
||||
<g id="Group_17703" data-name="Group 17703" clip-path="url(#clip-path-16)">
|
||||
<path id="Path_18937" data-name="Path 18937" d="M314.016,176.582l3.57,24.936a2.921,2.921,0,0,1-1.391,2.7L278.846,225.8a1.151,1.151,0,0,1-1.82-.5,1.578,1.578,0,0,0,.294-.135l37.35-21.586a2.927,2.927,0,0,0,1.391-2.7l-3.571-24.935a1.375,1.375,0,0,0-.074-.3,1.11,1.11,0,0,1,1.6.944" transform="translate(-277.026 -175.538)" fill="#fff"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Group_17708" data-name="Group 17708" transform="translate(160.234 101.533)" opacity="0.44">
|
||||
<g id="Group_17707" data-name="Group 17707">
|
||||
<g id="Group_17706" data-name="Group 17706" clip-path="url(#clip-path-16)">
|
||||
<path id="Path_18938" data-name="Path 18938" d="M314.016,176.582l3.57,24.936a2.921,2.921,0,0,1-1.391,2.7L278.846,225.8a1.151,1.151,0,0,1-1.82-.5,1.578,1.578,0,0,0,.294-.135l37.35-21.586a2.927,2.927,0,0,0,1.391-2.7l-3.571-24.935a1.375,1.375,0,0,0-.074-.3,1.11,1.11,0,0,1,1.6.944" transform="translate(-277.026 -175.538)" fill="#ee2934"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<path id="Path_18939" data-name="Path 18939" d="M309.229,175.951l-33.372,19.636-2.242,1.29-1.122.645c-.177.105-.4.22-.539.317a2.562,2.562,0,0,0-.426.368,2.652,2.652,0,0,0-.73,2s1.53,12.22,3.263,24.965c-1.916-12.737-3.882-24.944-3.882-24.944a3.177,3.177,0,0,1,1.362-2.822c.211-.139.379-.224.571-.34l1.119-.648,2.237-1.3,8.949-5.185Z" transform="translate(-113.899 -74.179)" fill="#fff"/>
|
||||
<path id="Path_18940" data-name="Path 18940" d="M311.365,197.317l-3.682,2.126,2.584,18.051,3.682-2.126Z" transform="translate(-129.716 -83.187)" fill="#fff"/>
|
||||
<path id="Path_18941" data-name="Path 18941" d="M311.365,197.317l-3.682,2.126,2.584,18.051,3.682-2.126Z" transform="translate(-129.716 -83.187)" fill="#ee2934"/>
|
||||
<path id="Path_18942" data-name="Path 18942" d="M279.368,239.019c-.116.067-.23-.012-.253-.178l-3.082-21.523a.442.442,0,0,1,.168-.421c.116-.067.23.013.253.178l3.082,21.523a.441.441,0,0,1-.168.421" transform="translate(-116.371 -91.432)" fill="#fafafa"/>
|
||||
<path id="Path_18943" data-name="Path 18943" d="M314.967,220.648,279.892,240.91c-.116.067-.23-.012-.253-.178a.442.442,0,0,1,.168-.421l35.075-20.262c.116-.068.23.012.253.178a.441.441,0,0,1-.168.421" transform="translate(-117.891 -92.761)" fill="#fafafa"/>
|
||||
<path id="Path_18944" data-name="Path 18944" d="M284.47,214.632l-3.682,2.126,2.447,17.1,3.683-2.126Z" transform="translate(-118.378 -90.487)" fill="#ee2934"/>
|
||||
<g id="Group_17711" data-name="Group 17711" transform="translate(162.41 124.145)" opacity="0.2">
|
||||
<g id="Group_17710" data-name="Group 17710">
|
||||
<g id="Group_17709" data-name="Group 17709" clip-path="url(#clip-path-18)">
|
||||
<path id="Path_18945" data-name="Path 18945" d="M284.47,214.632l-3.682,2.126,2.447,17.1,3.683-2.126Z" transform="translate(-280.787 -214.632)" fill="#fff"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<path id="Path_18946" data-name="Path 18946" d="M331.008,197.739l-3.682,2.126,1.684,11.767,3.683-2.126Z" transform="translate(-137.998 -83.365)" fill="#ee2934"/>
|
||||
<path id="Path_18947" data-name="Path 18947" d="M296.449,229.914l-3.682,2.126.75,5.236,3.682-2.126Z" transform="translate(-123.428 -96.93)" fill="#ee2934"/>
|
||||
<path id="Path_18948" data-name="Path 18948" d="M304.812,219.932l-3.682,2.126,1.144,7.99,3.683-2.126Z" transform="translate(-126.954 -92.722)" fill="#ee2934"/>
|
||||
<g id="Group_17714" data-name="Group 17714" transform="translate(174.176 127.211)" opacity="0.3">
|
||||
<g id="Group_17713" data-name="Group 17713">
|
||||
<g id="Group_17712" data-name="Group 17712" clip-path="url(#clip-path-19)">
|
||||
<path id="Path_18949" data-name="Path 18949" d="M304.812,219.932l-3.682,2.126,1.144,7.99,3.683-2.126Z" transform="translate(-301.129 -219.932)" fill="#fff"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<path id="Path_18950" data-name="Path 18950" d="M322.951,209.851l-3.682,2.126,1.114,7.781,3.682-2.126Z" transform="translate(-134.601 -88.472)" fill="#ee2934"/>
|
||||
<g id="Group_17717" data-name="Group 17717" transform="translate(184.668 121.38)" opacity="0.4">
|
||||
<g id="Group_17716" data-name="Group 17716">
|
||||
<g id="Group_17715" data-name="Group 17715" clip-path="url(#clip-path-20)">
|
||||
<path id="Path_18951" data-name="Path 18951" d="M322.951,209.851l-3.682,2.126,1.114,7.781,3.682-2.126Z" transform="translate(-319.269 -209.851)" fill="#fff"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<path id="Path_18952" data-name="Path 18952" d="M162.971,192.883a1.148,1.148,0,0,0-.681-.968v0l-1.483-.623,0,0a1.374,1.374,0,0,0-1.254.146L122.2,213.025a2.926,2.926,0,0,0-1.392,2.7l3.571,24.935a1.153,1.153,0,0,0,.667.964v0l1.517.636a1.387,1.387,0,0,0,1.237-.156L165.15,220.52a2.929,2.929,0,0,0,1.392-2.7Z" transform="translate(-50.924 -80.608)" fill="#fff"/>
|
||||
<g id="Group_17720" data-name="Group 17720" transform="translate(69.866 110.591)" opacity="0.25">
|
||||
<g id="Group_17719" data-name="Group 17719">
|
||||
<g id="Group_17718" data-name="Group 17718" clip-path="url(#clip-path-15)">
|
||||
<path id="Path_18953" data-name="Path 18953" d="M162.971,192.883a1.148,1.148,0,0,0-.681-.968v0l-1.483-.623,0,0a1.374,1.374,0,0,0-1.254.146L122.2,213.025a2.926,2.926,0,0,0-1.392,2.7l3.571,24.935a1.153,1.153,0,0,0,.667.964v0l1.517.636a1.387,1.387,0,0,0,1.237-.156L165.15,220.52a2.929,2.929,0,0,0,1.392-2.7Z" transform="translate(-120.79 -191.199)" fill="#ee2934"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<path id="Path_18954" data-name="Path 18954" d="M166.753,193.352l3.571,24.935a2.923,2.923,0,0,1-1.392,2.7l-37.349,21.586a1.151,1.151,0,0,1-1.82-.5,1.576,1.576,0,0,0,.294-.135l37.35-21.586a2.927,2.927,0,0,0,1.391-2.7l-3.57-24.935a1.375,1.375,0,0,0-.074-.3,1.11,1.11,0,0,1,1.6.944" transform="translate(-54.707 -81.075)" fill="#fff"/>
|
||||
<g id="Group_17723" data-name="Group 17723" transform="translate(75.056 111.233)" opacity="0.44">
|
||||
<g id="Group_17722" data-name="Group 17722">
|
||||
<g id="Group_17721" data-name="Group 17721" clip-path="url(#clip-path-16)">
|
||||
<path id="Path_18955" data-name="Path 18955" d="M166.753,193.352l3.571,24.935a2.923,2.923,0,0,1-1.392,2.7l-37.349,21.586a1.151,1.151,0,0,1-1.82-.5,1.576,1.576,0,0,0,.294-.135l37.35-21.586a2.927,2.927,0,0,0,1.391-2.7l-3.57-24.935a1.375,1.375,0,0,0-.074-.3,1.11,1.11,0,0,1,1.6.944" transform="translate(-129.763 -192.308)" fill="#ee2934"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<path id="Path_18956" data-name="Path 18956" d="M161.966,192.721l-33.372,19.636-2.242,1.29-1.122.645c-.177.105-.4.22-.539.317a2.56,2.56,0,0,0-.426.368,2.652,2.652,0,0,0-.73,2s1.53,12.221,3.263,24.965C124.882,229.206,122.916,217,122.916,217a3.174,3.174,0,0,1,1.362-2.822c.21-.139.379-.224.571-.34l1.119-.648,2.237-1.3,8.949-5.185Z" transform="translate(-51.814 -81.25)" fill="#fff"/>
|
||||
<path id="Path_18957" data-name="Path 18957" d="M133.746,247.211a.27.27,0,0,1-.216-.091.177.177,0,0,1,.046-.277l1.127-.65a.27.27,0,0,1,.329.06.177.177,0,0,1-.046.277l-1.126.651a.25.25,0,0,1-.113.031m2.253-1.3a.273.273,0,0,1-.216-.092.177.177,0,0,1,.046-.277l1.126-.65a.271.271,0,0,1,.329.06.176.176,0,0,1-.046.276l-1.126.651a.258.258,0,0,1-.113.032m2.252-1.3a.271.271,0,0,1-.216-.092.177.177,0,0,1,.046-.277l1.126-.65a.272.272,0,0,1,.329.06.177.177,0,0,1-.046.277l-1.126.65a.251.251,0,0,1-.113.032m2.253-1.3a.271.271,0,0,1-.216-.092.176.176,0,0,1,.046-.277l1.126-.65a.269.269,0,0,1,.329.06.177.177,0,0,1-.046.277l-1.126.65a.249.249,0,0,1-.113.032m2.252-1.3a.273.273,0,0,1-.216-.092.177.177,0,0,1,.046-.277l1.127-.65a.27.27,0,0,1,.329.06.176.176,0,0,1-.046.276l-1.127.651a.256.256,0,0,1-.113.032m2.253-1.3a.272.272,0,0,1-.216-.092.177.177,0,0,1,.046-.277l1.127-.65a.272.272,0,0,1,.329.06.177.177,0,0,1-.046.277l-1.126.65a.251.251,0,0,1-.113.032m2.252-1.3a.27.27,0,0,1-.216-.092.176.176,0,0,1,.046-.276l1.127-.651a.271.271,0,0,1,.329.06.177.177,0,0,1-.046.277l-1.126.65a.251.251,0,0,1-.113.032m2.253-1.3a.272.272,0,0,1-.216-.091.177.177,0,0,1,.046-.277l1.126-.651a.272.272,0,0,1,.329.06.177.177,0,0,1-.046.277l-1.127.65a.244.244,0,0,1-.113.032m2.252-1.3a.273.273,0,0,1-.216-.092.177.177,0,0,1,.046-.277l1.126-.65a.271.271,0,0,1,.329.06.176.176,0,0,1-.046.276l-1.127.651a.258.258,0,0,1-.113.032m2.253-1.3a.272.272,0,0,1-.216-.092.177.177,0,0,1,.046-.277l1.127-.65a.269.269,0,0,1,.329.06.177.177,0,0,1-.046.277l-1.127.65a.242.242,0,0,1-.113.032m2.252-1.3a.271.271,0,0,1-.216-.092.176.176,0,0,1,.046-.276l1.127-.651a.271.271,0,0,1,.329.06.177.177,0,0,1-.046.277l-1.127.65a.248.248,0,0,1-.113.032m2.253-1.3a.27.27,0,0,1-.216-.091.177.177,0,0,1,.046-.277l1.127-.65a.271.271,0,0,1,.329.06.177.177,0,0,1-.046.277l-1.126.651a.25.25,0,0,1-.113.031m2.253-1.3a.273.273,0,0,1-.216-.092.177.177,0,0,1,.046-.277l1.126-.65a.272.272,0,0,1,.329.06.177.177,0,0,1-.046.277l-1.126.65a.251.251,0,0,1-.113.032m2.252-1.3a.271.271,0,0,1-.216-.092.177.177,0,0,1,.046-.277l1.126-.65a.271.271,0,0,1,.329.06.177.177,0,0,1-.046.277l-1.126.65a.251.251,0,0,1-.113.032m2.253-1.3a.271.271,0,0,1-.216-.092.176.176,0,0,1,.046-.276l.412-.238a.271.271,0,0,1,.329.06.176.176,0,0,1-.046.276l-.412.238a.249.249,0,0,1-.113.032" transform="translate(-56.275 -96.277)" fill="#fafafa"/>
|
||||
<path id="Path_18958" data-name="Path 18958" d="M132.618,239.333a.268.268,0,0,1-.216-.091.177.177,0,0,1,.046-.277l1.127-.651a.272.272,0,0,1,.329.06.177.177,0,0,1-.046.277l-1.127.651a.247.247,0,0,1-.113.031m2.253-1.3a.273.273,0,0,1-.216-.092.177.177,0,0,1,.046-.277l1.126-.65a.269.269,0,0,1,.329.06.176.176,0,0,1-.046.276l-1.126.651a.258.258,0,0,1-.113.032m2.252-1.3a.273.273,0,0,1-.216-.092.177.177,0,0,1,.046-.277l1.126-.65a.272.272,0,0,1,.329.06.176.176,0,0,1-.046.276l-1.126.651a.251.251,0,0,1-.113.032m2.253-1.3a.271.271,0,0,1-.216-.092.177.177,0,0,1,.046-.277l1.126-.65a.267.267,0,0,1,.329.06.177.177,0,0,1-.046.277l-1.126.65a.248.248,0,0,1-.113.032m2.252-1.3a.273.273,0,0,1-.216-.092.177.177,0,0,1,.046-.277l1.127-.65a.27.27,0,0,1,.329.06.176.176,0,0,1-.046.276l-1.127.651a.256.256,0,0,1-.113.032m2.253-1.3a.274.274,0,0,1-.216-.092.177.177,0,0,1,.046-.277l1.127-.65a.272.272,0,0,1,.329.06.177.177,0,0,1-.046.277L144,232.8a.251.251,0,0,1-.113.032m2.252-1.3a.272.272,0,0,1-.216-.092.177.177,0,0,1,.046-.277l1.127-.65a.272.272,0,0,1,.329.06.177.177,0,0,1-.046.277l-1.127.65a.247.247,0,0,1-.113.032m2.253-1.3a.271.271,0,0,1-.216-.092.176.176,0,0,1,.046-.276l1.126-.651a.271.271,0,0,1,.329.06.177.177,0,0,1-.046.277l-1.126.65a.251.251,0,0,1-.113.032m2.252-1.3a.27.27,0,0,1-.216-.091.177.177,0,0,1,.046-.277l1.126-.65a.271.271,0,0,1,.329.06.177.177,0,0,1-.046.277l-1.126.651a.25.25,0,0,1-.113.031m2.253-1.3a.272.272,0,0,1-.216-.092.177.177,0,0,1,.046-.277l1.127-.65a.266.266,0,0,1,.329.06.177.177,0,0,1-.046.277l-1.127.65a.241.241,0,0,1-.113.032m2.252-1.3a.271.271,0,0,1-.216-.092.177.177,0,0,1,.046-.277l1.127-.65a.272.272,0,0,1,.329.06.177.177,0,0,1-.046.277l-1.127.65a.251.251,0,0,1-.113.032m2.253-1.3a.272.272,0,0,1-.216-.091.177.177,0,0,1,.046-.277l1.127-.651a.271.271,0,0,1,.329.06.177.177,0,0,1-.046.277l-1.127.65a.249.249,0,0,1-.113.032m2.253-1.3a.27.27,0,0,1-.216-.091.177.177,0,0,1,.046-.277l1.126-.65a.271.271,0,0,1,.329.06.176.176,0,0,1-.046.276l-1.126.651a.25.25,0,0,1-.113.031m2.252-1.3a.27.27,0,0,1-.216-.092.177.177,0,0,1,.046-.277l1.127-.65a.272.272,0,0,1,.329.06.177.177,0,0,1-.046.277l-1.126.65a.251.251,0,0,1-.113.032m2.253-1.3a.271.271,0,0,1-.216-.092.177.177,0,0,1,.046-.277l.412-.238a.272.272,0,0,1,.329.06.177.177,0,0,1-.046.277l-.412.238a.251.251,0,0,1-.113.032" transform="translate(-55.8 -92.956)" fill="#fafafa"/>
|
||||
<path id="Path_18959" data-name="Path 18959" d="M131.49,231.457a.271.271,0,0,1-.216-.092.176.176,0,0,1,.046-.276l1.126-.651a.272.272,0,0,1,.329.06.177.177,0,0,1-.046.277l-1.127.65a.25.25,0,0,1-.113.032m2.253-1.3a.27.27,0,0,1-.216-.091.177.177,0,0,1,.046-.277l1.126-.65a.27.27,0,0,1,.329.06.176.176,0,0,1-.046.276l-1.126.651a.248.248,0,0,1-.113.031m2.252-1.3a.273.273,0,0,1-.216-.092.177.177,0,0,1,.046-.277l1.127-.65a.269.269,0,0,1,.329.06.177.177,0,0,1-.046.277l-1.127.65a.249.249,0,0,1-.113.032m2.253-1.3a.269.269,0,0,1-.216-.092.177.177,0,0,1,.046-.277l1.126-.65a.271.271,0,0,1,.329.06.177.177,0,0,1-.046.277l-1.126.65a.246.246,0,0,1-.112.032m2.252-1.3a.268.268,0,0,1-.216-.092.176.176,0,0,1,.046-.276l1.127-.65a.269.269,0,0,1,.329.06.177.177,0,0,1-.046.277l-1.126.65a.244.244,0,0,1-.113.032m2.253-1.3a.273.273,0,0,1-.216-.092.177.177,0,0,1,.046-.277l1.126-.65a.272.272,0,0,1,.329.06.176.176,0,0,1-.046.276l-1.126.651a.259.259,0,0,1-.113.032m2.252-1.3a.271.271,0,0,1-.216-.092.177.177,0,0,1,.046-.277l1.126-.65a.271.271,0,0,1,.329.06.177.177,0,0,1-.046.277l-1.127.65a.251.251,0,0,1-.113.032m2.253-1.3a.271.271,0,0,1-.216-.092.177.177,0,0,1,.046-.277l1.126-.65a.272.272,0,0,1,.329.06.177.177,0,0,1-.046.277l-1.126.65a.249.249,0,0,1-.113.032m2.252-1.3a.27.27,0,0,1-.216-.091.177.177,0,0,1,.046-.277l1.127-.651a.27.27,0,0,1,.329.06.177.177,0,0,1-.046.277l-1.127.651a.248.248,0,0,1-.113.031m2.253-1.3a.273.273,0,0,1-.216-.092.177.177,0,0,1,.046-.277l1.126-.65a.271.271,0,0,1,.329.06.176.176,0,0,1-.046.276l-1.126.651a.259.259,0,0,1-.113.032m2.252-1.3a.272.272,0,0,1-.216-.092.177.177,0,0,1,.046-.277l1.127-.65a.272.272,0,0,1,.329.06.177.177,0,0,1-.046.277l-1.127.65a.247.247,0,0,1-.113.032m2.253-1.3a.27.27,0,0,1-.216-.092.176.176,0,0,1,.046-.277l1.126-.651a.272.272,0,0,1,.329.06.177.177,0,0,1-.046.277l-1.126.65a.25.25,0,0,1-.113.032m2.252-1.3a.272.272,0,0,1-.216-.091.177.177,0,0,1,.046-.277l1.126-.651a.272.272,0,0,1,.329.06.177.177,0,0,1-.046.277l-1.126.65a.244.244,0,0,1-.113.032m2.253-1.3a.273.273,0,0,1-.216-.092.177.177,0,0,1,.046-.277l1.126-.65a.272.272,0,0,1,.329.06.177.177,0,0,1-.046.277l-1.126.65a.249.249,0,0,1-.113.032m2.252-1.3a.271.271,0,0,1-.216-.092.177.177,0,0,1,.046-.277l.412-.238a.272.272,0,0,1,.329.06.177.177,0,0,1-.046.277l-.412.238a.248.248,0,0,1-.113.032" transform="translate(-55.324 -89.635)" fill="#fafafa"/>
|
||||
<path id="Path_18960" data-name="Path 18960" d="M130.363,223.581a.27.27,0,0,1-.216-.091.177.177,0,0,1,.046-.277l1.126-.651a.272.272,0,0,1,.329.06.177.177,0,0,1-.046.277l-1.127.651a.25.25,0,0,1-.113.031m2.253-1.3a.273.273,0,0,1-.216-.092.177.177,0,0,1,.046-.277l1.126-.65a.27.27,0,0,1,.329.06.176.176,0,0,1-.046.276l-1.126.651a.256.256,0,0,1-.113.032m2.252-1.3a.273.273,0,0,1-.216-.092.177.177,0,0,1,.046-.277l1.127-.65a.272.272,0,0,1,.329.06.177.177,0,0,1-.046.277l-1.127.65a.249.249,0,0,1-.113.032m2.254-1.3a.269.269,0,0,1-.216-.092.177.177,0,0,1,.046-.277l1.126-.65a.27.27,0,0,1,.329.06.176.176,0,0,1-.046.277l-1.126.65a.246.246,0,0,1-.112.032m2.252-1.3a.268.268,0,0,1-.216-.092.176.176,0,0,1,.046-.276l1.127-.65a.268.268,0,0,1,.329.06.177.177,0,0,1-.046.277l-1.126.65a.244.244,0,0,1-.113.032m2.254-1.3a.273.273,0,0,1-.216-.092.177.177,0,0,1,.046-.277l1.126-.65a.272.272,0,0,1,.329.06.177.177,0,0,1-.046.277l-1.126.65a.251.251,0,0,1-.113.032m2.252-1.3a.271.271,0,0,1-.216-.092.177.177,0,0,1,.046-.277l1.126-.65a.272.272,0,0,1,.329.06.177.177,0,0,1-.046.277l-1.127.65a.251.251,0,0,1-.113.032m2.253-1.3a.271.271,0,0,1-.216-.092.176.176,0,0,1,.046-.276l1.126-.651a.271.271,0,0,1,.329.06.177.177,0,0,1-.046.277l-1.126.65a.249.249,0,0,1-.113.032m2.252-1.3a.27.27,0,0,1-.216-.091.177.177,0,0,1,.046-.277l1.127-.651a.272.272,0,0,1,.329.06.177.177,0,0,1-.046.277l-1.127.651a.248.248,0,0,1-.113.031m2.253-1.3a.272.272,0,0,1-.216-.092.177.177,0,0,1,.046-.277l1.126-.65a.269.269,0,0,1,.329.06.177.177,0,0,1-.046.277l-1.126.65a.258.258,0,0,1-.113.032m2.252-1.3a.273.273,0,0,1-.216-.092.177.177,0,0,1,.046-.277l1.127-.65a.272.272,0,0,1,.329.06.177.177,0,0,1-.046.277l-1.127.65a.247.247,0,0,1-.113.032m2.253-1.3a.27.27,0,0,1-.216-.092.177.177,0,0,1,.046-.277l1.126-.65a.271.271,0,0,1,.329.06.177.177,0,0,1-.046.277l-1.126.65a.251.251,0,0,1-.113.032m2.252-1.3a.271.271,0,0,1-.216-.092.176.176,0,0,1,.046-.276l1.126-.651a.272.272,0,0,1,.329.06.177.177,0,0,1-.046.277l-1.126.65a.251.251,0,0,1-.113.032m2.253-1.3a.273.273,0,0,1-.216-.092.177.177,0,0,1,.046-.277l1.126-.65a.271.271,0,0,1,.329.06.177.177,0,0,1-.046.277l-1.126.65a.242.242,0,0,1-.113.032m2.252-1.3a.271.271,0,0,1-.216-.092.177.177,0,0,1,.046-.277l.412-.238a.271.271,0,0,1,.329.06.177.177,0,0,1-.046.277l-.412.238a.248.248,0,0,1-.113.032" transform="translate(-54.849 -86.314)" fill="#fafafa"/>
|
||||
<path id="Path_18961" data-name="Path 18961" d="M133.138,236.187a.291.291,0,0,1-.121-.021.211.211,0,0,1-.135-.279L136,229.5c1.163-2.385,3.236-4.023,5.18-4.1l.073,0,.127,0,.064,0c1.887-.077,3.922-1.824,4.967-4.274L147.7,218.1c1.38-3.236,4.277-5.15,6.6-4.351l1.558.535c1.462.5,3.331-.32,4.762-2.094a10.259,10.259,0,0,0,1.05-1.827c.574-1.17,1.117-2.276,2-2.4a.268.268,0,0,1,.294.173.2.2,0,0,1-.182.239c-.636.087-1.155,1.145-1.658,2.169a10.423,10.423,0,0,1-1.093,1.9c-1.556,1.928-3.645,2.8-5.325,2.225l-1.558-.534c-2.023-.695-4.713,1.157-5.982,4.134l-1.288,3.018c-1.1,2.591-3.306,4.439-5.372,4.523l-.073,0-.127,0-.065,0c-1.77.072-3.684,1.618-4.782,3.87l-3.115,6.39a.225.225,0,0,1-.2.116" transform="translate(-56.014 -87.674)" fill="#ee2934"/>
|
||||
<g id="Group_17726" data-name="Group 17726" transform="translate(76.85 120.284)" opacity="0.4">
|
||||
<g id="Group_17725" data-name="Group 17725">
|
||||
<g id="Group_17724" data-name="Group 17724" clip-path="url(#clip-path-23)">
|
||||
<path id="Path_18962" data-name="Path 18962" d="M133.138,236.186a.29.29,0,0,1-.121-.021.211.211,0,0,1-.135-.279L136,229.5c1.163-2.385,3.236-4.023,5.18-4.1l.073,0,.127,0,.064,0c1.887-.078,3.922-1.824,4.967-4.274l1.288-3.018c1.38-3.236,4.277-5.15,6.6-4.351l1.558.535c1.462.5,3.331-.32,4.762-2.094a10.618,10.618,0,0,0,1.035-1.778c.594-1.178,1.155-2.29,2-2.443a.263.263,0,0,1,.3.162.192.192,0,0,1-.168.246c-.621.112-1.186,1.233-1.685,2.223a10.912,10.912,0,0,1-1.078,1.843c-1.556,1.928-3.645,2.8-5.325,2.225l-1.558-.534c-2.023-.695-4.713,1.157-5.982,4.134l-1.288,3.018c-1.1,2.591-3.306,4.439-5.372,4.523l-.073,0-.127,0-.065,0c-1.77.072-3.684,1.618-4.782,3.87l-3.115,6.39a.225.225,0,0,1-.2.116" transform="translate(-132.864 -207.957)" fill="#fff"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<path id="Path_18963" data-name="Path 18963" d="M141.153,240.421a1.185,1.185,0,0,1,.541-1.108.468.468,0,0,1,.751.361,1.188,1.188,0,0,1-.541,1.108.468.468,0,0,1-.751-.362" transform="translate(-59.505 -100.855)" fill="#ee2934"/>
|
||||
<path id="Path_18964" data-name="Path 18964" d="M162.418,219.366a1.186,1.186,0,0,1,.541-1.108.468.468,0,0,1,.751.361,1.187,1.187,0,0,1-.541,1.108.468.468,0,0,1-.751-.362" transform="translate(-68.47 -91.978)" fill="#ee2934"/>
|
||||
<path id="Path_18965" data-name="Path 18965" d="M185.084,208.092a1.186,1.186,0,0,1,.541-1.108.468.468,0,0,1,.751.361,1.187,1.187,0,0,1-.541,1.108.468.468,0,0,1-.751-.362" transform="translate(-78.026 -87.225)" fill="#ee2934"/>
|
||||
<path id="Path_18966" data-name="Path 18966" d="M140.491,262.91,137.05,264.9c-.313.181-.6.077-.648-.232l-.062-.43a.98.98,0,0,1,.488-.887l3.441-1.987c.313-.181.6-.078.648.232l.062.429a.981.981,0,0,1-.488.888" transform="translate(-57.477 -110.15)" fill="#fafafa"/>
|
||||
<path id="Path_18967" data-name="Path 18967" d="M162.991,249.92l-3.441,1.987c-.313.181-.6.077-.648-.232l-.062-.43a.98.98,0,0,1,.488-.887l3.441-1.987c.314-.181.6-.078.648.232l.062.429a.98.98,0,0,1-.488.888" transform="translate(-66.963 -104.674)" fill="#fafafa"/>
|
||||
<path id="Path_18968" data-name="Path 18968" d="M185.491,236.929l-3.441,1.986c-.313.182-.6.077-.648-.231l-.062-.43a.98.98,0,0,1,.488-.887l3.441-1.987c.313-.181.6-.077.648.232l.062.429a.98.98,0,0,1-.488.888" transform="translate(-76.449 -99.197)" fill="#fafafa"/>
|
||||
<path id="Path_18969" data-name="Path 18969" d="M116.765,200.034a.217.217,0,0,1-.228.013.26.26,0,0,1-.128-.21l-1.278-8.924a.55.55,0,0,1,.053-.314.488.488,0,0,1,.2-.234l3.309-1.91a2.672,2.672,0,0,1,1.238-.423,1.466,1.466,0,0,1,.871.23,1.627,1.627,0,0,1,.547.641,2.718,2.718,0,0,1,.256.817,3.094,3.094,0,0,1,.016.791,3.49,3.49,0,0,1-.14.678,4.277,4.277,0,0,1-.2.529,2.509,2.509,0,0,1-.178.327,1.607,1.607,0,0,1,.757.452,2.037,2.037,0,0,1,.484,1.178,4.076,4.076,0,0,1-.008,1.134,4.867,4.867,0,0,1-.326,1.2,4.5,4.5,0,0,1-.662,1.106,3.6,3.6,0,0,1-1.012.861Zm3.333-9.372q-.075-.524-.383-.639a1.145,1.145,0,0,0-.891.223l-1.985,1.146.3,2.129,1.986-1.147a2.065,2.065,0,0,0,.814-.761,1.5,1.5,0,0,0,.156-.95m-2.37,6.947,2.075-1.2a2.04,2.04,0,0,0,.857-.846,1.712,1.712,0,0,0,.164-1.015.814.814,0,0,0-.42-.685,1.053,1.053,0,0,0-.939.185l-2.075,1.2Z" transform="translate(-48.536 -79.272)" fill="#ee2934"/>
|
||||
<path id="Path_18970" data-name="Path 18970" d="M134.408,178.6a.221.221,0,0,1,.229-.012.267.267,0,0,1,.127.211l.811,5.663a6.182,6.182,0,0,1,.02,1.664,5.317,5.317,0,0,1-.436,1.537,5.145,5.145,0,0,1-.9,1.349,5.678,5.678,0,0,1-1.363,1.079,3.93,3.93,0,0,1-1.447.544,1.794,1.794,0,0,1-1.114-.187,1.933,1.933,0,0,1-.77-.841,4.6,4.6,0,0,1-.418-1.434l-.81-5.663a.561.561,0,0,1,.052-.315.491.491,0,0,1,.2-.234l.908-.525a.221.221,0,0,1,.229-.012.267.267,0,0,1,.127.211l.8,5.594a2.7,2.7,0,0,0,.261.9,1.038,1.038,0,0,0,.442.455.93.93,0,0,0,.592.062,2.3,2.3,0,0,0,.7-.278,3.27,3.27,0,0,0,.673-.516,2.536,2.536,0,0,0,.491-.687,2.974,2.974,0,0,0,.259-.86,3.561,3.561,0,0,0-.009-1.041l-.8-5.594a.554.554,0,0,1,.051-.314.494.494,0,0,1,.2-.234Z" transform="translate(-54.104 -75.281)" fill="#ee2934"/>
|
||||
<path id="Path_18971" data-name="Path 18971" d="M145.029,173.317a3.793,3.793,0,0,1,1.36-.515,2.25,2.25,0,0,1,1.042.071,1.483,1.483,0,0,1,.7.489,1.751,1.751,0,0,1,.34.724.464.464,0,0,1-.045.318.536.536,0,0,1-.2.23l-.785.454a.4.4,0,0,1-.3.075.5.5,0,0,1-.209-.142.949.949,0,0,0-.6-.306,1.777,1.777,0,0,0-1.052.331,3.205,3.205,0,0,0-.544.4,2.723,2.723,0,0,0-.429.486,1.984,1.984,0,0,0-.257.53,1.23,1.23,0,0,0-.045.535.813.813,0,0,0,.18.456.543.543,0,0,0,.409.138,2.894,2.894,0,0,0,.706-.116q.433-.115,1.074-.306a6,6,0,0,1,1.222-.249,1.8,1.8,0,0,1,.879.121,1.271,1.271,0,0,1,.572.515,2.458,2.458,0,0,1,.3.921,3.531,3.531,0,0,1-.059,1.284,4.509,4.509,0,0,1-.509,1.28,5.777,5.777,0,0,1-.935,1.19,6.433,6.433,0,0,1-1.325,1,4.645,4.645,0,0,1-1.227.507,2.576,2.576,0,0,1-1.092.046,1.572,1.572,0,0,1-.834-.438,1.8,1.8,0,0,1-.461-.931.456.456,0,0,1,.046-.317.526.526,0,0,1,.2-.231l.785-.453a.458.458,0,0,1,.3-.086.353.353,0,0,1,.2.151,1.638,1.638,0,0,0,.242.25.665.665,0,0,0,.349.142,1.358,1.358,0,0,0,.509-.047,2.955,2.955,0,0,0,.725-.321,5.123,5.123,0,0,0,.641-.438,2.992,2.992,0,0,0,.52-.525,2.319,2.319,0,0,0,.33-.579,1.2,1.2,0,0,0,.069-.615.513.513,0,0,0-.228-.407.848.848,0,0,0-.524-.057,5.613,5.613,0,0,0-.828.194q-.489.147-1.133.311a4.664,4.664,0,0,1-1.038.173,1.516,1.516,0,0,1-.776-.158,1.279,1.279,0,0,1-.521-.544,3.036,3.036,0,0,1-.287-.993,3.465,3.465,0,0,1,.06-1.277,4.612,4.612,0,0,1,.488-1.254,5.51,5.51,0,0,1,.852-1.127,5.265,5.265,0,0,1,1.141-.891" transform="translate(-60.057 -72.839)" fill="#ee2934"/>
|
||||
<path id="Path_18972" data-name="Path 18972" d="M156.577,178.34a.218.218,0,0,1-.229.012.261.261,0,0,1-.128-.21l-1.278-8.923a.552.552,0,0,1,.053-.315.5.5,0,0,1,.2-.234l.909-.525a.218.218,0,0,1,.228-.012.264.264,0,0,1,.128.211l1.278,8.923a.554.554,0,0,1-.053.314.493.493,0,0,1-.2.234Z" transform="translate(-65.32 -70.873)" fill="#ee2934"/>
|
||||
<path id="Path_18973" data-name="Path 18973" d="M167.007,170.354a.312.312,0,0,1-.309.044,1.569,1.569,0,0,1-.174-.109l-3.963-3.934.815,5.692a.555.555,0,0,1-.053.314.494.494,0,0,1-.2.234l-.908.524a.221.221,0,0,1-.23.013.265.265,0,0,1-.127-.21L160.584,164a.551.551,0,0,1,.052-.315.5.5,0,0,1,.2-.234l.785-.453a.316.316,0,0,1,.309-.044,1.55,1.55,0,0,1,.173.11l3.964,3.933-.815-5.691a.555.555,0,0,1,.052-.314.5.5,0,0,1,.2-.234l.909-.524a.218.218,0,0,1,.229-.012.267.267,0,0,1,.127.211l1.278,8.924a.567.567,0,0,1-.052.313.5.5,0,0,1-.2.234Z" transform="translate(-67.699 -67.536)" fill="#ee2934"/>
|
||||
<path id="Path_18974" data-name="Path 18974" d="M180.6,160.946a.218.218,0,0,1,.229-.013.266.266,0,0,1,.128.211l.141.981a.559.559,0,0,1-.053.314.488.488,0,0,1-.2.234l-4.924,2.842a.217.217,0,0,1-.228.013.263.263,0,0,1-.128-.21l-1.278-8.924a.55.55,0,0,1,.053-.314.489.489,0,0,1,.2-.234l4.834-2.792a.22.22,0,0,1,.228-.012.267.267,0,0,1,.127.211l.141.981a.556.556,0,0,1-.052.313.494.494,0,0,1-.2.234L176,156.872l.314,2.2,3.377-1.95a.217.217,0,0,1,.228-.012.266.266,0,0,1,.128.21l.141.981a.559.559,0,0,1-.053.314.492.492,0,0,1-.2.233l-3.376,1.95.328,2.293Z" transform="translate(-73.479 -64.51)" fill="#ee2934"/>
|
||||
<path id="Path_18975" data-name="Path 18975" d="M188.913,147.981a3.789,3.789,0,0,1,1.36-.515,2.239,2.239,0,0,1,1.042.071,1.479,1.479,0,0,1,.7.488,1.76,1.76,0,0,1,.34.724.465.465,0,0,1-.046.318.533.533,0,0,1-.2.23l-.785.454a.393.393,0,0,1-.3.075.507.507,0,0,1-.209-.142.949.949,0,0,0-.6-.306,1.777,1.777,0,0,0-1.052.331,3.188,3.188,0,0,0-.545.4,2.7,2.7,0,0,0-.428.486,1.949,1.949,0,0,0-.257.53,1.221,1.221,0,0,0-.045.535.813.813,0,0,0,.18.456.544.544,0,0,0,.409.138,2.9,2.9,0,0,0,.706-.116q.432-.115,1.073-.306a6.006,6.006,0,0,1,1.222-.249,1.8,1.8,0,0,1,.879.121,1.267,1.267,0,0,1,.571.515,2.437,2.437,0,0,1,.3.921,3.531,3.531,0,0,1-.059,1.283,4.492,4.492,0,0,1-.509,1.28,5.792,5.792,0,0,1-.934,1.19,6.436,6.436,0,0,1-1.326,1,4.65,4.65,0,0,1-1.227.507,2.576,2.576,0,0,1-1.092.046,1.574,1.574,0,0,1-.835-.438,1.789,1.789,0,0,1-.46-.931.459.459,0,0,1,.045-.317.527.527,0,0,1,.2-.231l.785-.453a.456.456,0,0,1,.3-.086.357.357,0,0,1,.2.151,1.588,1.588,0,0,0,.242.25.663.663,0,0,0,.348.142,1.356,1.356,0,0,0,.509-.047,2.946,2.946,0,0,0,.725-.321,5.124,5.124,0,0,0,.641-.438,3,3,0,0,0,.521-.525,2.335,2.335,0,0,0,.329-.579,1.193,1.193,0,0,0,.07-.615.515.515,0,0,0-.228-.407.855.855,0,0,0-.525-.057,5.615,5.615,0,0,0-.828.194q-.489.148-1.133.311a4.656,4.656,0,0,1-1.038.173,1.511,1.511,0,0,1-.776-.158,1.278,1.278,0,0,1-.521-.544,3.02,3.02,0,0,1-.288-.993,3.477,3.477,0,0,1,.06-1.277A4.594,4.594,0,0,1,186.92,150a5.524,5.524,0,0,1,.851-1.127,5.255,5.255,0,0,1,1.142-.891" transform="translate(-78.558 -62.158)" fill="#ee2934"/>
|
||||
<path id="Path_18976" data-name="Path 18976" d="M201.479,140.726a3.791,3.791,0,0,1,1.36-.516,2.257,2.257,0,0,1,1.042.071,1.49,1.49,0,0,1,.7.488,1.748,1.748,0,0,1,.34.724.461.461,0,0,1-.046.318.531.531,0,0,1-.2.23l-.785.453a.4.4,0,0,1-.3.076.517.517,0,0,1-.209-.142.954.954,0,0,0-.6-.307,1.789,1.789,0,0,0-1.052.331,3.278,3.278,0,0,0-.545.4,2.742,2.742,0,0,0-.428.486,1.974,1.974,0,0,0-.257.53,1.218,1.218,0,0,0-.045.534.8.8,0,0,0,.18.456.544.544,0,0,0,.408.138,2.928,2.928,0,0,0,.706-.116q.433-.115,1.074-.306a5.917,5.917,0,0,1,1.222-.249,1.784,1.784,0,0,1,.879.121,1.253,1.253,0,0,1,.571.514,2.44,2.44,0,0,1,.3.922,3.529,3.529,0,0,1-.059,1.283,4.5,4.5,0,0,1-.508,1.281,5.793,5.793,0,0,1-.935,1.189,6.421,6.421,0,0,1-1.326,1.005,4.612,4.612,0,0,1-1.227.507,2.55,2.55,0,0,1-1.092.047,1.568,1.568,0,0,1-.835-.438,1.8,1.8,0,0,1-.46-.931.455.455,0,0,1,.046-.316.529.529,0,0,1,.2-.231l.785-.453a.451.451,0,0,1,.3-.084.347.347,0,0,1,.2.151,1.579,1.579,0,0,0,.242.249.666.666,0,0,0,.348.143,1.348,1.348,0,0,0,.51-.047,2.921,2.921,0,0,0,.725-.321,5.07,5.07,0,0,0,.642-.438,2.991,2.991,0,0,0,.52-.525,2.336,2.336,0,0,0,.33-.578,1.2,1.2,0,0,0,.069-.615.513.513,0,0,0-.228-.407.849.849,0,0,0-.524-.057,5.606,5.606,0,0,0-.828.194q-.489.149-1.134.311a4.62,4.62,0,0,1-1.038.173,1.5,1.5,0,0,1-.776-.158,1.276,1.276,0,0,1-.521-.544,3.048,3.048,0,0,1-.288-.993A3.475,3.475,0,0,1,199,144a4.629,4.629,0,0,1,.488-1.255,5.521,5.521,0,0,1,.852-1.127,5.269,5.269,0,0,1,1.141-.89" transform="translate(-83.856 -59.1)" fill="#ee2934"/>
|
||||
<path id="Path_18977" data-name="Path 18977" d="M222.235,138.468a.311.311,0,0,1-.309.044,1.378,1.378,0,0,1-.174-.109l-3.963-3.934.814,5.692a.56.56,0,0,1-.052.314.493.493,0,0,1-.2.233l-.909.525a.218.218,0,0,1-.229.013.266.266,0,0,1-.127-.211l-1.278-8.923a.551.551,0,0,1,.052-.315.5.5,0,0,1,.2-.234l.785-.453a.311.311,0,0,1,.309-.044,1.458,1.458,0,0,1,.174.11l3.963,3.932-.815-5.69a.559.559,0,0,1,.052-.314.5.5,0,0,1,.2-.234l.908-.525a.222.222,0,0,1,.229-.013.269.269,0,0,1,.127.212l1.277,8.923a.556.556,0,0,1-.052.315.491.491,0,0,1-.2.234Z" transform="translate(-90.982 -54.093)" fill="#ee2934"/>
|
||||
<path id="Path_18978" data-name="Path 18978" d="M235.833,129.06a.217.217,0,0,1,.228-.012.263.263,0,0,1,.128.21l.141.982a.55.55,0,0,1-.053.314.49.49,0,0,1-.2.234l-4.924,2.842a.219.219,0,0,1-.228.013.261.261,0,0,1-.128-.21l-1.278-8.924a.552.552,0,0,1,.053-.315.493.493,0,0,1,.2-.234l4.834-2.791a.222.222,0,0,1,.229-.012.267.267,0,0,1,.127.211l.14.981a.553.553,0,0,1-.052.313.5.5,0,0,1-.2.234l-3.623,2.092.314,2.2,3.377-1.949a.218.218,0,0,1,.228-.013.267.267,0,0,1,.128.211l.141.98a.548.548,0,0,1-.053.314.5.5,0,0,1-.2.234l-3.377,1.949.328,2.293Z" transform="translate(-96.762 -51.068)" fill="#ee2934"/>
|
||||
<path id="Path_18979" data-name="Path 18979" d="M245.43,119.243l-.373,4.687a1.837,1.837,0,0,1-.092.42.512.512,0,0,1-.234.277l-.908.525a.256.256,0,0,1-.283.021.5.5,0,0,1-.178-.264l-2.684-7.887a.647.647,0,0,1-.027-.1.556.556,0,0,1,.052-.314.5.5,0,0,1,.2-.234l.829-.479a.306.306,0,0,1,.226-.039c.075.016.134.087.176.212l1.78,5.313.3-4.167a1.566,1.566,0,0,1,.071-.311.552.552,0,0,1,.264-.317l.92-.531c.135-.077.237-.082.308-.013a.634.634,0,0,1,.142.187l1.358,3.208.1-6.4a.715.715,0,0,1,.093-.368.6.6,0,0,1,.2-.206l.83-.48a.221.221,0,0,1,.229-.012.269.269,0,0,1,.128.211,1.043,1.043,0,0,1,0,.117l-.187,9.545a1.147,1.147,0,0,1-.081.413.565.565,0,0,1-.245.284l-.909.525c-.112.064-.2.07-.27.014a.734.734,0,0,1-.189-.257Z" transform="translate(-101.455 -47.193)" fill="#ee2934"/>
|
||||
<path id="Path_18980" data-name="Path 18980" d="M259.6,107.173a3.789,3.789,0,0,1,1.36-.515,2.247,2.247,0,0,1,1.042.071,1.479,1.479,0,0,1,.7.489,1.745,1.745,0,0,1,.34.724.465.465,0,0,1-.045.318.533.533,0,0,1-.2.23l-.785.454a.393.393,0,0,1-.3.075.5.5,0,0,1-.209-.142.947.947,0,0,0-.6-.306,1.776,1.776,0,0,0-1.052.331,3.187,3.187,0,0,0-.545.4,2.721,2.721,0,0,0-.428.486,1.952,1.952,0,0,0-.257.53,1.221,1.221,0,0,0-.045.535.809.809,0,0,0,.18.456.54.54,0,0,0,.408.138,2.894,2.894,0,0,0,.706-.116q.434-.115,1.074-.306a6.008,6.008,0,0,1,1.222-.249,1.8,1.8,0,0,1,.879.121,1.267,1.267,0,0,1,.571.515,2.447,2.447,0,0,1,.3.921,3.531,3.531,0,0,1-.059,1.283,4.491,4.491,0,0,1-.509,1.28,5.794,5.794,0,0,1-.934,1.19,6.409,6.409,0,0,1-1.326,1,4.635,4.635,0,0,1-1.227.507,2.576,2.576,0,0,1-1.092.046,1.572,1.572,0,0,1-.834-.438,1.79,1.79,0,0,1-.461-.931.459.459,0,0,1,.046-.317.527.527,0,0,1,.2-.231l.785-.453a.458.458,0,0,1,.3-.086.354.354,0,0,1,.2.151,1.617,1.617,0,0,0,.242.25.668.668,0,0,0,.349.142,1.358,1.358,0,0,0,.509-.047,2.946,2.946,0,0,0,.725-.321,5.125,5.125,0,0,0,.641-.438,3.014,3.014,0,0,0,.521-.525,2.338,2.338,0,0,0,.33-.579,1.205,1.205,0,0,0,.069-.615.512.512,0,0,0-.228-.407.853.853,0,0,0-.524-.057,5.62,5.62,0,0,0-.828.194q-.489.148-1.133.311a4.659,4.659,0,0,1-1.038.173,1.508,1.508,0,0,1-.776-.158,1.277,1.277,0,0,1-.522-.544,3.049,3.049,0,0,1-.288-.993,3.49,3.49,0,0,1,.061-1.277,4.615,4.615,0,0,1,.489-1.254,5.488,5.488,0,0,1,.851-1.127,5.241,5.241,0,0,1,1.142-.891" transform="translate(-108.357 -44.954)" fill="#ee2934"/>
|
||||
<path id="Path_18981" data-name="Path 18981" d="M384.13,342.01l-1.725-.8,1.7-.451Z" transform="translate(-161.218 -143.662)" fill="#1b2d51"/>
|
||||
<path id="Path_18982" data-name="Path 18982" d="M355.651,342.655s20.382-8.724,20.636-7.426a1.818,1.818,0,0,1-.01.781c.017-.024.039-.046.055-.071l-.377,2.423a6.231,6.231,0,0,1-3.173,1.26c0-.117-.014-.838-.021-1.25a10.652,10.652,0,0,0-1.8.9c-1.307.82-2.147,2.25-3.534,3.912-1.011,1.211-2.812,1.779-5.482,2.141-2.872.39-5.4-.128-6.117-.856a1.832,1.832,0,0,1-.18-1.819" transform="translate(-149.871 -141.274)" fill="#1b2d51"/>
|
||||
<path id="Path_18983" data-name="Path 18983" d="M356.344,330.37c.2-.194.923-.953,1.907-1.779.86-.723,1.862-1.636,2.941-2.374a11.23,11.23,0,0,0,1.46-1.141c.356-.362.7-.736,1.013-1.128a20.73,20.73,0,0,0,2.46-3.948,9.233,9.233,0,0,0,.735-4.794c-.25-4.07-.6-5.537-.617-8.183l9.721,1.24c-.283,1.467-.587,4.739-.736,6.406-.227,2.535-.62,2.776.426,5.3a7.1,7.1,0,0,1,.807,2.256,3.616,3.616,0,0,1-2.218,3.054c-1,.527-2.148.754-3.117,1.316a9.8,9.8,0,0,0-2.538,2.36,9.61,9.61,0,0,1-2.2,2.4,9.3,9.3,0,0,1-3.321,1.09,18.929,18.929,0,0,1-4.461.219c-2.116-.153-3.692-.879-2.265-2.293" transform="translate(-150.001 -129.438)" fill="#c8856a"/>
|
||||
<path id="Path_18984" data-name="Path 18984" d="M364.121,335.428a4.038,4.038,0,0,0-3.162-.267c-1.5,1.127-2.748,2.129-3.626,2.828-1.066.85-2,1.625-1.96,2.6.061,1.523,6.323,1.972,9.821.523a4.259,4.259,0,0,0,2.472-2.048s-.516-2.131-3.545-3.632m11.9-5.49c-.534-.979-.738-1.479-.738-1.479a5.886,5.886,0,0,0-2.359,6.39,4.679,4.679,0,0,0,3.067-1.974,2.623,2.623,0,0,0,.03-2.937" transform="translate(-149.822 -138.476)" fill="#1b2d51"/>
|
||||
<path id="Path_18985" data-name="Path 18985" d="M417.111,341.065c-.07,1.117.035,4.455-.18,6.951-.195,2.268-.783,5.792-.3,8.481.5,2.755,2.721,5.748,6,3.4,2.03-1.455,2.889-3.28,3.262-6.541.26-2.266-.567-5.454-1.275-8.281-.827-3.3-1.126-5.061-1.126-5.061Z" transform="translate(-175.57 -143.348)" fill="#263238"/>
|
||||
<path id="Path_18986" data-name="Path 18986" d="M422.421,313.357c-.017,3.071-.341,8.149-.485,11.543a32.868,32.868,0,0,0,.253,5.484c.386,2.188.811,5.219,1.091,6.638.392,1.983.7,3.236-.067,5.4a2.561,2.561,0,0,1-.242.486c-1.024,1.769-3.527,3.026-4.308,2.771a1.357,1.357,0,0,1-1.4.41,1.911,1.911,0,0,1-.26-.075,2.1,2.1,0,0,1-.26-.116,2.7,2.7,0,0,1-1.256-1.727,4.717,4.717,0,0,1-.111-.486,18.355,18.355,0,0,1-.147-5.358c.067-1.3.108-3.156.06-5.15s-2.417-12.05-3.069-18.322Z" transform="translate(-173.789 -132.109)" fill="#c8856a"/>
|
||||
<path id="Path_18987" data-name="Path 18987" d="M425.669,358.251c-1.913-.927-7.718-1.2-8.7,1.441-.1,2.522.012,4.127,1.57,6.4,2.07,3.017,4.99.054,6.134-1.861a9.89,9.89,0,0,0,.994-5.978" transform="translate(-175.78 -150.76)" fill="#1b2d51"/>
|
||||
<path id="Path_18988" data-name="Path 18988" d="M395.845,180.568c3.052,4.708,5.851,9.709,6.2,20.48.456,14.192-1.081,26.8-.941,28.531s.909,4.531,2.247,13.014-.189,24.943-.189,24.943-.987,1.95-4.459,2.387c-3.2.4-4.152-.979-4.152-.979s-6.05-22.675-7.506-27.757-3.642-23.272-3.642-23.272l-.544,9.652a40.051,40.051,0,0,1,.56,12.175c-.637,7.514-3.364,22.364-3.364,22.364s-1,1.124-4.412,1.054c-3.125-.065-4.281-.883-4.281-.883.134-.176-3.08-28.406-3.922-36.282-.9-8.431-.89-31.107,1.385-43.766Z" transform="translate(-154.673 -76.126)" fill="#fff"/>
|
||||
<g id="Group_17729" data-name="Group 17729" transform="translate(212.207 104.442)" opacity="0.95">
|
||||
<g id="Group_17728" data-name="Group 17728">
|
||||
<g id="Group_17727" data-name="Group 17727" clip-path="url(#clip-path-24)">
|
||||
<path id="Path_18989" data-name="Path 18989" d="M395.845,180.568c3.052,4.708,5.851,9.709,6.2,20.48.456,14.192-1.081,26.8-.941,28.531s.909,4.531,2.247,13.014-.189,24.943-.189,24.943-.987,1.95-4.459,2.387c-3.2.4-4.152-.979-4.152-.979s-6.05-22.675-7.506-27.757-3.642-23.272-3.642-23.272l-.544,9.652a40.051,40.051,0,0,1,.56,12.175c-.637,7.514-3.364,22.364-3.364,22.364s-1,1.124-4.412,1.054c-3.125-.065-4.281-.883-4.281-.883.134-.176-3.08-28.406-3.922-36.282-.9-8.431-.89-31.107,1.385-43.766Z" transform="translate(-366.88 -180.568)" fill="#1b2d51"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<path id="Path_18990" data-name="Path 18990" d="M373.534,204.341c.542,3.437,6.26,6.922,8.467,7.321l3,15.959.271,9.968.544-9.652-2.1-17.641s-7.057-1.533-10.188-5.955m21.635,44.185c-.747-4.416-1.555-14.431-2.041-18.89-.469-4.462-.935-8.928-1.466-13.391.16,4.486.374,8.969.718,13.448s1.1,14.516,1.835,18.969c.794,4.444,1.6,8.852,2.455,13.271s1.753,8.824,2.722,13.225q-.9-6.681-1.978-13.339c-.707-4.436-1.473-8.882-2.244-13.293M373.645,223.79l.245-11.716c-.466,3.887-.788,7.788-1,11.694s-.373,7.8-.2,11.754c.322,3.924.82,7.79,1.341,11.671s1.116,7.744,1.785,11.6q-.443-5.849-1.035-11.682l-.584-5.831c-.194-1.94-.411-3.889-.542-5.817s-.09-3.878-.084-5.825.05-3.9.075-5.852" transform="translate(-157.094 -86.148)" fill="#1b2d51"/>
|
||||
<path id="Path_18991" data-name="Path 18991" d="M353.526,131.18a12.832,12.832,0,0,0-7.194,4.441c-1.4,1.639-3.05,3.68-5.778,7.032-1.62,1.99-3.433,4.174-3.433,4.174-1.989-1.91-7.451-7.548-8.766-9.113a21.378,21.378,0,0,0-2.4-2.766c-1.194-.961-2.122-1.268-2.846-1.8-.763-.566-1.543-1.109-2.3-1.679-.191-.143-.388,0-.508.174a1.354,1.354,0,0,0-.127,1.147,3.02,3.02,0,0,0,.6,1.019,8.146,8.146,0,0,0,.732.777c.271.253.678.578.234.939a2.3,2.3,0,0,1-1.455.233,25.7,25.7,0,0,1-6.331-2.227c-1.091-.5-1.439-.2-1.418.356a1.475,1.475,0,0,0,.516.743c-.594-.3-1.138-.468-1.508-.26-.467.263.057.869.308,1.115.307.3.654.656.654.656-.212.086-.272.471-.273.607a.982.982,0,0,0,.163.459,6,6,0,0,0,2.162,1.733,4.7,4.7,0,0,0-1.183-.3.433.433,0,0,0-.434.341c-.051.254.818.913,1.034,1.058a11.952,11.952,0,0,0,2.865,1.64,19.3,19.3,0,0,0,4.635.938,8.536,8.536,0,0,1,2.068.234,4.845,4.845,0,0,1,1.526.826A6.205,6.205,0,0,1,326.3,145c1.073,1.783,1.979,3.377,3.5,5.687,2.157,3.281,2.955,4.459,5.436,6.389,2.238,1.74,3.855.431,5.639-1.062a63.262,63.262,0,0,0,5.185-5.151c2.5-2.7,5.532-6.066,5.532-6.066,1.708-5.679,3.483-9.654,1.934-13.617" transform="translate(-131.263 -55.304)" fill="#c8856a"/>
|
||||
<path id="Path_18992" data-name="Path 18992" d="M364.866,130.725c-3.548.735-5.808,2.356-9.3,6.712s-7.059,8.78-7.059,8.78l-4.932-4.575a4.212,4.212,0,0,1-1.57,3.526,3.94,3.94,0,0,1-3.638.809s1.476,2.82,2.355,4.1a55.09,55.09,0,0,0,3.966,5.375c1.227,1.292,2.491,2.417,4.051,2.482s2.956-.973,5.087-3.039,9.816-10.509,9.816-10.509,4.25-11.163,1.218-13.656" transform="translate(-142.655 -55.113)" fill="#fff"/>
|
||||
<g id="Group_17732" data-name="Group 17732" transform="translate(195.718 75.612)" opacity="0.7">
|
||||
<g id="Group_17731" data-name="Group 17731">
|
||||
<g id="Group_17730" data-name="Group 17730" clip-path="url(#clip-path-25)">
|
||||
<path id="Path_18993" data-name="Path 18993" d="M364.866,130.725c-3.548.735-5.808,2.356-9.3,6.712s-7.059,8.78-7.059,8.78l-4.932-4.575a4.212,4.212,0,0,1-1.57,3.526,3.94,3.94,0,0,1-3.638.809s1.476,2.82,2.355,4.1a55.09,55.09,0,0,0,3.966,5.375c1.227,1.292,2.491,2.417,4.051,2.482s2.956-.973,5.087-3.039,9.816-10.509,9.816-10.509,4.25-11.163,1.218-13.656" transform="translate(-338.373 -130.725)" fill="#ee2934"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<path id="Path_18994" data-name="Path 18994" d="M316.886,144.588a11.349,11.349,0,0,0,1.663.53c.561.15,1.139.232,1.713.385a6.722,6.722,0,0,1-1.765-.174,4.314,4.314,0,0,1-1.611-.741" transform="translate(-133.596 -60.957)" fill="#af6152"/>
|
||||
<path id="Path_18995" data-name="Path 18995" d="M333.416,145.117a1.362,1.362,0,0,0-.089-.329,2.2,2.2,0,0,0-.357-.559,2.865,2.865,0,0,0-1.053-.768,2.825,2.825,0,0,0-2.746.318c-.021.017-.04.106.008.093a3.892,3.892,0,0,1,2.613-.073,2.976,2.976,0,0,1,1.494,1.695c.027.066.1.039.1-.023a1.186,1.186,0,0,0,.027-.353" transform="translate(-138.766 -60.391)" fill="#af6152"/>
|
||||
<path id="Path_18996" data-name="Path 18996" d="M319.865,139.322a19.916,19.916,0,0,1-2.743-.919c-.853-.33-1.685-.723-2.517-1.1-.01,0-.02.02-.012.025a11.542,11.542,0,0,0,2.634,1.354,16.465,16.465,0,0,0,2.631.661c.008,0,.016-.017.008-.019" transform="translate(-132.628 -57.885)" fill="#af6152"/>
|
||||
<path id="Path_18997" data-name="Path 18997" d="M319.583,141.966a19.884,19.884,0,0,1-2.743-.919c-.342-.132-.68-.274-1.016-.421a10.58,10.58,0,0,1-.981-.458l-.289-.165a2.36,2.36,0,0,0-.371-.2,1.193,1.193,0,0,0-.434-.07c-.014,0-.033.01-.026.022a1.459,1.459,0,0,1,.522.185,3.22,3.22,0,0,1,.312.2c.091.065.183.116.278.174.295.18.6.345.91.5.391.19.792.358,1.2.511a16.467,16.467,0,0,0,2.631.661c.008,0,.016-.017.008-.019" transform="translate(-132.263 -58.911)" fill="#af6152"/>
|
||||
<g id="Group_17735" data-name="Group 17735" transform="translate(205.857 90.118)" opacity="0.15">
|
||||
<g id="Group_17734" data-name="Group 17734">
|
||||
<g id="Group_17733" data-name="Group 17733" clip-path="url(#clip-path-26)">
|
||||
<path id="Path_18998" data-name="Path 18998" d="M355.9,156.789a13.441,13.441,0,0,1,3.005,6.044c.417-2.662-.922-5.317-2.21-7.03Z" transform="translate(-355.903 -155.803)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<path id="Path_18999" data-name="Path 18999" d="M400.161,168.2c-1.932-6.327-3.187-9.987-3.162-11.97,0,0,2.277-9.876,2.642-12.211.95-6.076-.052-8.987-1.286-9.687a46.022,46.022,0,0,0-4.615-1.687c-4.291-1.378-10.51-1.782-14.557-1.887-1.52.016-1.99.047-1.99.047a37.085,37.085,0,0,0-5.66,4.615c-3.37,3.5-4.482,5.9-4.129,9.651a8.849,8.849,0,0,0,1.939,4.48c.171,1.816.355,6.953.355,6.953a37.883,37.883,0,0,1-1.437,8.735c2.4,8.871,25.711,9.164,31.9,2.961" transform="translate(-154.869 -55.126)" fill="#fafafa"/>
|
||||
<path id="Path_19000" data-name="Path 19000" d="M379.175,95.188a7.808,7.808,0,0,1-.046-9.2c2.639-3.37,6.456-4.463,11.436-3.844,3.512.437,7.815,2.144,7.767,5.956,3.251,1.693,3.524,6.417,2.629,8.319-1.879,3.993-6.26,8.108-6.332,10.241Z" transform="translate(-159.215 -34.56)" fill="#263238"/>
|
||||
<path id="Path_19001" data-name="Path 19001" d="M382.056,92.044a5.032,5.032,0,0,0-1.436,1.74,7.825,7.825,0,0,0-.72,3.666c.064.96-.357,2.129-.365,3.92-.03,6.619,1.534,8.254,3.331,9.13a6.822,6.822,0,0,0,3.412.676l-.131,3.137s-2.695,1.963-1.116,7.449c8.444-5.225,10.805-7.539,10.813-7.551l.416-8.616a2.41,2.41,0,0,0,2.788.141c1.884-.92,2.732-4,1.581-5.482a2.425,2.425,0,0,0-3.993.392c-1.138,2.224-2.286,1.038-1.822.057-.038.079-.764-.627-.818-.7a2.631,2.631,0,0,1-.409-.943c-.15-.654-.008-1.181-.73-1.46a11.721,11.721,0,0,1-2.536-1.058c-.644-.429-1.919-1.165-2.154-1.9a5.154,5.154,0,0,0,1.05,2.756c-2.081-.2-3.715-.658-5-2.476a8.858,8.858,0,0,1-1.177-3.571,9.154,9.154,0,0,0-.979.7" transform="translate(-160.009 -38.512)" fill="#c8856a"/>
|
||||
<path id="Path_19002" data-name="Path 19002" d="M392.272,114.692l-3.173.971a1.593,1.593,0,0,0,2.016,1.132,1.744,1.744,0,0,0,1.157-2.1" transform="translate(-164.041 -48.353)" fill="#af6152"/>
|
||||
<path id="Path_19003" data-name="Path 19003" d="M391.327,117.374a1.487,1.487,0,0,1,1.539-1.414,1.459,1.459,0,0,1,.358.062,1.728,1.728,0,0,1-1.17,1.306,1.589,1.589,0,0,1-.728.046" transform="translate(-164.98 -48.887)" fill="#ffa8a7"/>
|
||||
<path id="Path_19004" data-name="Path 19004" d="M388.114,102.6l-.674,6.021-2.957-1.551Z" transform="translate(-162.095 -43.253)" fill="#af6152"/>
|
||||
<path id="Path_19005" data-name="Path 19005" d="M391.171,122.815c2.177-.031,6.865-1.026,8.114-3.861,0,0-.254,2.048-2.984,3.531a14,14,0,0,1-5.161,1.307Z" transform="translate(-164.901 -50.15)" fill="#af6152"/>
|
||||
<path id="Path_19006" data-name="Path 19006" d="M394.685,104.664a.918.918,0,1,0,.872-.963.918.918,0,0,0-.872.963" transform="translate(-166.395 -43.719)" fill="#263238"/>
|
||||
<path id="Path_19007" data-name="Path 19007" d="M382.9,104.275a.919.919,0,1,0,.872-.963.918.918,0,0,0-.872.963" transform="translate(-161.425 -43.555)" fill="#263238"/>
|
||||
<path id="Path_19008" data-name="Path 19008" d="M382.595,98.634a1.375,1.375,0,0,1,1.616,1.082l-2.7.533a1.375,1.375,0,0,1,1.082-1.615" transform="translate(-160.831 -41.572)" fill="#263238"/>
|
||||
<path id="Path_19009" data-name="Path 19009" d="M397.608,99.154a1.375,1.375,0,0,1,.65,1.832L395.775,99.8a1.376,1.376,0,0,1,1.833-.65" transform="translate(-166.855 -41.746)" fill="#263238"/>
|
||||
<path id="Path_19010" data-name="Path 19010" d="M404.684,129.724a21.46,21.46,0,0,1-1.148,3.893c-.984,2.684-1.4,4.849-1.817,10.669s-.1,20.819.013,31.8c4.453.18,11.557-.431,15.024-3.788a54.134,54.134,0,0,0-2.071-7.327c-1.758-5.067-2.8-7.507-2.322-10.649s3.623-15.295,1.267-21.8c0,0-1.3-.36-4.347-1.211-4.181-1.167-4.6-1.582-4.6-1.582" transform="translate(-169.272 -54.691)" fill="#ee2934"/>
|
||||
<g id="Group_17738" data-name="Group 17738" transform="translate(232.235 75.033)" opacity="0.4">
|
||||
<g id="Group_17737" data-name="Group 17737">
|
||||
<g id="Group_17736" data-name="Group 17736" clip-path="url(#clip-path-27)">
|
||||
<path id="Path_19011" data-name="Path 19011" d="M404.684,129.724a21.46,21.46,0,0,1-1.148,3.893c-.984,2.684-1.4,4.849-1.817,10.669s-.1,20.819.013,31.8c4.453.18,11.557-.431,15.024-3.788a54.134,54.134,0,0,0-2.071-7.327c-1.758-5.067-2.8-7.507-2.322-10.649s3.623-15.295,1.267-21.8c0,0-1.3-.36-4.347-1.211-4.181-1.167-4.6-1.582-4.6-1.582" transform="translate(-401.507 -129.723)" fill="#fff"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<path id="Path_19012" data-name="Path 19012" d="M380.456,128.524l-.183.58c-.072,1.67-3.725,4.184-6.367,8.023s-3.206,7.663-3.255,12.7a67.966,67.966,0,0,1-1.123,10.618c-1.386,6.5-2.345,12.9-2.755,16.523a60.814,60.814,0,0,1-.12-9.17c.432-3.817,1.705-8.523,1.865-12.246.128-2.983.132-6.172.132-6.172a10.215,10.215,0,0,1-1.552-9.228c1.669-5.429,9.631-10.358,9.631-10.358s.368-.093,1.519-.391a14.082,14.082,0,0,0,2.208-.882" transform="translate(-154.517 -54.185)" fill="#ee2934"/>
|
||||
<g id="Group_17741" data-name="Group 17741" transform="translate(211.992 74.339)" opacity="0.4">
|
||||
<g id="Group_17740" data-name="Group 17740">
|
||||
<g id="Group_17739" data-name="Group 17739" clip-path="url(#clip-path-28)">
|
||||
<path id="Path_19013" data-name="Path 19013" d="M380.456,128.524l-.183.58c-.072,1.67-3.725,4.184-6.367,8.023s-3.206,7.663-3.255,12.7a67.966,67.966,0,0,1-1.123,10.618c-1.386,6.5-2.345,12.9-2.755,16.523a60.814,60.814,0,0,1-.12-9.17c.432-3.817,1.705-8.523,1.865-12.246.128-2.983.132-6.172.132-6.172a10.215,10.215,0,0,1-1.552-9.228c1.669-5.429,9.631-10.358,9.631-10.358s.368-.093,1.519-.391a14.082,14.082,0,0,0,2.208-.882" transform="translate(-366.509 -128.524)" fill="#fff"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<path id="Path_19014" data-name="Path 19014" d="M405.014,125.355c.609.6,3.049,3.831,3.049,3.831s-.737,5.058-.964,8.612c-.166,2.606-.133,5.146-.868,5.1a20.155,20.155,0,0,1-2.933-.8s1.67,2.606,1.465,3.393-3.5,9.863-3.5,9.863-.557-10.634-.247-13.656,1.111-8.555,2.352-11.694c.873-2.207,1.65-4.65,1.65-4.65" transform="translate(-169.023 -52.849)" fill="#ee2934"/>
|
||||
<path id="Path_19015" data-name="Path 19015" d="M372.153,153.806c-.031-2.913-1.28-10.264-1.42-11.73s2.039-2.7,2.039-2.7-1.293.267-1.7-.069,2.323-3.865,4.627-6.172,6.835-5.815,6.835-5.815l-.1,2.16a27.48,27.48,0,0,0-3.559,3.784c-2.049,3.008-5.782,6.215-6.722,20.543" transform="translate(-156.295 -53.677)" fill="#ee2934"/>
|
||||
<path id="Path_19016" data-name="Path 19016" d="M446.285,256.636l-2.35-26.779a2.2,2.2,0,0,0-.99-1.437l-.774-.478a.819.819,0,0,0-.677-.142v0l-31.145,10.185,4.587,29.281,31.13-10.178h0c.154-.054.24-.208.22-.449" transform="translate(-172.999 -96.027)" fill="#fff"/>
|
||||
<g id="Group_17744" data-name="Group 17744" transform="translate(237.349 131.746)" opacity="0.85">
|
||||
<g id="Group_17743" data-name="Group 17743">
|
||||
<g id="Group_17742" data-name="Group 17742" clip-path="url(#clip-path-29)">
|
||||
<path id="Path_19017" data-name="Path 19017" d="M446.285,256.636l-2.35-26.779a2.2,2.2,0,0,0-.99-1.437l-.774-.478a.819.819,0,0,0-.677-.142v0l-31.145,10.185,4.587,29.281,31.13-10.178h0c.154-.054.24-.208.22-.449" transform="translate(-410.348 -227.773)" fill="#1b2d51"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<path id="Path_19018" data-name="Path 19018" d="M418.278,288.628q3.925-1.169,7.83-2.4l7.8-2.5,7.769-2.588q3.878-1.311,7.734-2.69-3.925,1.168-7.83,2.4l-7.8,2.5-7.767,2.588q-3.879,1.31-7.736,2.69" transform="translate(-176.342 -117.392)" fill="#1b2d51"/>
|
||||
<path id="Path_19019" data-name="Path 19019" d="M409.823,272.114l3.907,2.411c.507.313.886.178.847-.3l-2.351-26.779a2.2,2.2,0,0,0-.99-1.437l-.773-.477c-.507-.314-.935-.185-.956.287l-.563,24.876a1.842,1.842,0,0,0,.88,1.421" transform="translate(-172.406 -103.441)" fill="#fff"/>
|
||||
<g id="Group_17747" data-name="Group 17747" transform="translate(236.536 141.918)" opacity="0.8">
|
||||
<g id="Group_17746" data-name="Group 17746">
|
||||
<g id="Group_17745" data-name="Group 17745" clip-path="url(#clip-path-30)">
|
||||
<path id="Path_19020" data-name="Path 19020" d="M409.823,272.114l3.907,2.411c.507.313.886.178.847-.3l-2.351-26.779a2.2,2.2,0,0,0-.99-1.437l-.773-.477c-.507-.314-.935-.185-.956.287l-.563,24.876a1.842,1.842,0,0,0,.88,1.421" transform="translate(-408.942 -245.359)" fill="#1b2d51"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<path id="Path_19021" data-name="Path 19021" d="M432.245,277.881a.405.405,0,0,1-.355-.323l-1.234-12.731c-.014-.16.132-.274.325-.255a.409.409,0,0,1,.375.326l1.234,12.731c.014.16-.132.274-.325.254l-.021,0" transform="translate(-181.561 -111.54)" fill="#ee2934"/>
|
||||
<path id="Path_19022" data-name="Path 19022" d="M456.708,270.126a.4.4,0,0,1-.355-.323l-1.233-12.731c-.014-.16.131-.274.324-.255a.412.412,0,0,1,.375.325l1.233,12.731c.014.16-.132.274-.325.255l-.02,0" transform="translate(-191.875 -108.271)" fill="#ee2934"/>
|
||||
<path id="Path_19023" data-name="Path 19023" d="M416.639,253.066a2.233,2.233,0,0,1-2.809-1.651l-.949-11.386a2.211,2.211,0,0,0-1-1.433l-.77-.476a.864.864,0,0,0-.626-.162l31.066-10.16v.006a.783.783,0,0,1,.674.141l.777.477a2.215,2.215,0,0,1,.989,1.438l.94,11.28a3.352,3.352,0,0,1-2.5,3.5Z" transform="translate(-173.059 -96.027)" fill="#fff"/>
|
||||
<path id="Path_19024" data-name="Path 19024" d="M416.639,253.066a2.233,2.233,0,0,1-2.809-1.651l-.949-11.386a2.211,2.211,0,0,0-1-1.433l-.77-.476a.864.864,0,0,0-.626-.162l31.066-10.16v.006a.783.783,0,0,1,.674.141l.777.477a2.215,2.215,0,0,1,.989,1.438l.94,11.28a3.352,3.352,0,0,1-2.5,3.5Z" transform="translate(-173.059 -96.027)" fill="#1b2d51"/>
|
||||
<path id="Path_19025" data-name="Path 19025" d="M440.518,262.65l3.695-1.207.185,1.713-3.7,1.211Z" transform="translate(-185.719 -110.222)" fill="#ee2934"/>
|
||||
<path id="Path_19026" data-name="Path 19026" d="M443.29,228.765c-.576-2.4-1.411-6.218-2.166-6.391l.619-.931s.779.024,1.476,2.159c.572,1.75,1.327,4.753,1.327,4.753Z" transform="translate(-185.974 -93.358)" fill="#1b2d51"/>
|
||||
<path id="Path_19027" data-name="Path 19027" d="M429.714,227.565a3.636,3.636,0,0,1-1.917-2.109,3.719,3.719,0,0,1,.715-2.319c.447-.383,2.4-1.96,2.941-1.731s.764,3.292.123,4.361a6.12,6.12,0,0,1-1.862,1.8" transform="translate(-180.348 -93.334)" fill="#af6152"/>
|
||||
<path id="Path_19028" data-name="Path 19028" d="M437.024,208.927a31.185,31.185,0,0,0,1.094-4.2,27.676,27.676,0,0,0,.263-3.82c.124-3.156.178-11.777-.082-16.7l-8.205,2.894s2,10.713,2.041,12.431c.024,1.019-1.216,2.088-1.784,2.912a11.056,11.056,0,0,0-1.194,2.561,16.783,16.783,0,0,1-1.306,2.764.977.977,0,0,0-.149.348.627.627,0,0,0,.574.64,1.384,1.384,0,0,0,.895-.279,6.2,6.2,0,0,0,1.566-1.684c.066-.091.153-.192.265-.182s.17.11.2.207a3.093,3.093,0,0,1,.06.924,5.129,5.129,0,0,1-.887,2.157,2.013,2.013,0,0,1-1.965,1.141c.092.1.378.449.489.548a4.254,4.254,0,0,0,.639.484,1.915,1.915,0,0,0,1.434.1c.64-.15,1.168-.678,1.825-.711a4.8,4.8,0,0,1,.531.031,1.6,1.6,0,0,0,1.117-.3c.265-.22.431-.56.74-.712a2.731,2.731,0,0,1,.521-.143,2.014,2.014,0,0,0,1.315-1.412" transform="translate(-180.314 -77.661)" fill="#c8856a"/>
|
||||
<path id="Path_19029" data-name="Path 19029" d="M429.856,223.858a5.691,5.691,0,0,0-1.16,3.951c.1,1.426.548,4.468.548,4.468l1.23-.4s-.145-1.082-.429-3.35a4.992,4.992,0,0,1,.554-3.625,2.207,2.207,0,0,1,1.082-.821s.267-1.037-.171-1.134c-.493.005-.867.111-1.655.915" transform="translate(-180.729 -93.991)" fill="#1b2d51"/>
|
||||
<path id="Path_19030" data-name="Path 19030" d="M424.48,162.93s-5.435-11.068-6.54-13.5-1.747-10.458,2.253-14.632c4.744,1.1,4.907,1.81,7.088,7.173s4.657,12.892,5.611,15.714a23.566,23.566,0,0,1,1.321,8.3c.071,3.007.2,12.115.2,12.115s-.692,1.05-3.727,1.069c-2.8.017-3.174-.652-3.174-.652Z" transform="translate(-175.847 -56.83)" fill="#fff"/>
|
||||
<g id="Group_17750" data-name="Group 17750" transform="translate(241.255 77.969)" opacity="0.7">
|
||||
<g id="Group_17749" data-name="Group 17749">
|
||||
<g id="Group_17748" data-name="Group 17748" clip-path="url(#clip-path-31)">
|
||||
<path id="Path_19031" data-name="Path 19031" d="M424.48,162.93s-5.435-11.068-6.54-13.5-1.747-10.458,2.253-14.632c4.744,1.1,4.907,1.81,7.088,7.173s4.657,12.892,5.611,15.714a23.566,23.566,0,0,1,1.321,8.3c.071,3.007.2,12.115.2,12.115s-.692,1.05-3.727,1.069c-2.8.017-3.174-.652-3.174-.652Z" transform="translate(-417.102 -134.799)" fill="#ee2934"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<path id="Path_19032" data-name="Path 19032" d="M32.769,371.592c-4.145-4.277-6.58-15.031-2.537-18.423H50.8c4.042,3.391,1.61,14.139-2.533,18.419-.035.04-.076.078-.113.118l-.143.141c-.117.115-.241.227-.375.337-.033.028-.066.052-.1.079-.1.08-.2.161-.313.239a5.771,5.771,0,0,1-.536.346,13.511,13.511,0,0,1-12.348,0h0a5.765,5.765,0,0,1-.54-.349c-.1-.072-.2-.148-.292-.223-.04-.033-.082-.063-.122-.1-.129-.106-.248-.215-.362-.325-.056-.053-.11-.108-.165-.163-.031-.033-.065-.065-.1-.1" transform="translate(-11.873 -148.893)" fill="#1b2d51"/>
|
||||
<path id="Path_19033" data-name="Path 19033" d="M49.263,349.308c4.694,2.741,4.694,7.184,0,9.924s-12.3,2.741-17,0-4.694-7.184,0-9.924,12.3-2.741,17,0" transform="translate(-12.118 -146.399)" fill="#fff"/>
|
||||
<g id="Group_17753" data-name="Group 17753" transform="translate(16.626 200.854)" opacity="0.7">
|
||||
<g id="Group_17752" data-name="Group 17752">
|
||||
<g id="Group_17751" data-name="Group 17751" clip-path="url(#clip-path-32)">
|
||||
<path id="Path_19034" data-name="Path 19034" d="M49.263,349.308c4.694,2.741,4.694,7.184,0,9.924s-12.3,2.741-17,0-4.694-7.184,0-9.924,12.3-2.741,17,0" transform="translate(-28.744 -347.253)" fill="#1b2d51"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<path id="Path_19035" data-name="Path 19035" d="M49.333,351.985c3.447,2.013,3.447,5.276,0,7.288a13.659,13.659,0,0,1-12.483,0c-3.447-2.013-3.447-5.276,0-7.288a13.661,13.661,0,0,1,12.483,0" transform="translate(-14.445 -147.758)" fill="#1b2d51"/>
|
||||
<path id="Path_19036" data-name="Path 19036" d="M37.229,357.966a13.658,13.658,0,0,1,12.483,0,5.754,5.754,0,0,1,2.065,1.915,5.764,5.764,0,0,1-2.065,1.915,13.658,13.658,0,0,1-12.483,0,5.754,5.754,0,0,1-2.065-1.915,5.744,5.744,0,0,1,2.065-1.915" transform="translate(-14.825 -150.279)" fill="#fafafa"/>
|
||||
<path id="Path_19037" data-name="Path 19037" d="M38.428,300.046c-1.577,1.709-5.958,2.178-7.773-2.437-1.7-4.329-3.538-8.433-4.062-10.021a1.634,1.634,0,0,1,1.047-2.113s.125-2.378,4.156-.767a14.84,14.84,0,0,1,8.632,8.014c1.732,3.9.7,6.793-2,7.325" transform="translate(-11.167 -119.794)" fill="#ee2934"/>
|
||||
<g id="Group_17756" data-name="Group 17756" transform="translate(15.321 164.353)" opacity="0.45">
|
||||
<g id="Group_17755" data-name="Group 17755">
|
||||
<g id="Group_17754" data-name="Group 17754" clip-path="url(#clip-path-33)">
|
||||
<path id="Path_19038" data-name="Path 19038" d="M38.428,300.046c-1.577,1.709-5.958,2.178-7.773-2.437-1.7-4.329-3.538-8.433-4.062-10.021a1.634,1.634,0,0,1,1.047-2.113s.125-2.378,4.156-.767a14.84,14.84,0,0,1,8.632,8.014c1.732,3.9.7,6.793-2,7.325" transform="translate(-26.488 -284.147)" fill="#fff"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<path id="Path_19039" data-name="Path 19039" d="M42.8,307.718a21.641,21.641,0,0,0-.349-2.407,33.372,33.372,0,0,0-1.337-4.644,34.162,34.162,0,0,0-4.671-8.622,29.564,29.564,0,0,0-3.671-4.165c-.041-.038-.073.054-.046.084a36.63,36.63,0,0,1,5.75,7.943,37.013,37.013,0,0,1,3.326,9.008c.2.877.386,1.758.548,2.643s.257,1.808.409,2.708c.015.09.154.145.162.023a16.975,16.975,0,0,0-.12-2.57" transform="translate(-13.792 -121.364)" fill="#ee2934"/>
|
||||
<g id="Group_17759" data-name="Group 17759" transform="translate(18.922 166.508)" opacity="0.3">
|
||||
<g id="Group_17758" data-name="Group 17758">
|
||||
<g id="Group_17757" data-name="Group 17757" clip-path="url(#clip-path-34)">
|
||||
<path id="Path_19040" data-name="Path 19040" d="M42.8,307.718a21.641,21.641,0,0,0-.349-2.407,33.372,33.372,0,0,0-1.337-4.644,34.162,34.162,0,0,0-4.671-8.622,29.564,29.564,0,0,0-3.671-4.165c-.041-.038-.073.054-.046.084a36.63,36.63,0,0,1,5.75,7.943,37.013,37.013,0,0,1,3.326,9.008c.2.877.386,1.758.548,2.643s.257,1.808.409,2.708c.015.09.154.145.162.023a16.975,16.975,0,0,0-.12-2.57" transform="translate(-32.714 -287.872)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<path id="Path_19041" data-name="Path 19041" d="M48.421,298.846c-3.62,1.119-6.309-1.706-5.379-6.137s5.586-9.35,7.344-8.029c1.1-1.1,3.517-.7,4.654,2.895s.1,12.841-6.62,11.271" transform="translate(-18.068 -119.791)" fill="#ee2934"/>
|
||||
<g id="Group_17762" data-name="Group 17762" transform="translate(24.789 164.349)" opacity="0.25">
|
||||
<g id="Group_17761" data-name="Group 17761">
|
||||
<g id="Group_17760" data-name="Group 17760" clip-path="url(#clip-path-35)">
|
||||
<path id="Path_19042" data-name="Path 19042" d="M48.421,298.846c-3.62,1.119-6.309-1.706-5.379-6.137s5.586-9.35,7.344-8.029c1.1-1.1,3.517-.7,4.654,2.895s.1,12.841-6.62,11.271" transform="translate(-42.857 -284.14)" fill="#fff"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<path id="Path_19043" data-name="Path 19043" d="M52.843,289.708a48.589,48.589,0,0,0-2.407,7.961,77.675,77.675,0,0,0-1.4,8.337,130.265,130.265,0,0,0-.725,16.338q.014,2.262.06,4.523c.029,1.55,0,3.121.138,4.665.051.592.894.434.9-.108.053-2.714-.1-5.439-.123-8.154-.027-2.684-.018-5.368.05-8.051A113.221,113.221,0,0,1,50.809,298.9c.259-1.5.545-3,.895-4.486.368-1.561.82-3.1,1.23-4.649.016-.061-.055-.142-.09-.059" transform="translate(-20.366 -122.123)" fill="#ee2934"/>
|
||||
<g id="Group_17765" data-name="Group 17765" transform="translate(27.941 167.549)" opacity="0.3">
|
||||
<g id="Group_17764" data-name="Group 17764">
|
||||
<g id="Group_17763" data-name="Group 17763" clip-path="url(#clip-path-36)">
|
||||
<path id="Path_19044" data-name="Path 19044" d="M52.843,289.708a48.589,48.589,0,0,0-2.407,7.961,77.675,77.675,0,0,0-1.4,8.337,130.265,130.265,0,0,0-.725,16.338q.014,2.262.06,4.523c.029,1.55,0,3.121.138,4.665.051.592.894.434.9-.108.053-2.714-.1-5.439-.123-8.154-.027-2.684-.018-5.368.05-8.051A113.221,113.221,0,0,1,50.809,298.9c.259-1.5.545-3,.895-4.486.368-1.561.82-3.1,1.23-4.649.016-.061-.055-.142-.09-.059" transform="translate(-48.308 -289.672)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<path id="Path_19045" data-name="Path 19045" d="M34.913,320.1c-1.582,1.79-5.206,1.632-7.637-1.563s-3.89-15.209-.47-14.443c.725-1.6,10.178,2.247,11.391,10.087.881,5.7-3.284,5.919-3.284,5.919" transform="translate(-10.451 -128.053)" fill="#ee2934"/>
|
||||
<g id="Group_17768" data-name="Group 17768" transform="translate(14.338 175.685)" opacity="0.25">
|
||||
<g id="Group_17767" data-name="Group 17767">
|
||||
<g id="Group_17766" data-name="Group 17766" clip-path="url(#clip-path-37)">
|
||||
<path id="Path_19046" data-name="Path 19046" d="M34.913,320.1c-1.582,1.79-5.206,1.632-7.637-1.563s-3.89-15.209-.47-14.443c.725-1.6,10.178,2.247,11.391,10.087.881,5.7-3.284,5.919-3.284,5.919" transform="translate(-24.789 -303.738)" fill="#fff"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<path id="Path_19047" data-name="Path 19047" d="M40.517,327.944a17.083,17.083,0,0,0-.466-2.191,45.625,45.625,0,0,0-1.407-4.346,45.768,45.768,0,0,0-4.224-8.289,40.618,40.618,0,0,0-3-4.236c-.031-.037-.059.046-.042.072.844,1.231,1.7,2.448,2.461,3.735.787,1.333,1.493,2.716,2.143,4.121a57.125,57.125,0,0,1,3.118,8.364c.232.813.422,1.638.662,2.45.249.842.564,1.668.776,2.521.031.124.189.169.173.005-.073-.734-.1-1.471-.2-2.2" transform="translate(-13.228 -130.218)" fill="#ee2934"/>
|
||||
<g id="Group_17771" data-name="Group 17771" transform="translate(18.148 178.655)" opacity="0.3">
|
||||
<g id="Group_17770" data-name="Group 17770">
|
||||
<g id="Group_17769" data-name="Group 17769" clip-path="url(#clip-path-38)">
|
||||
<path id="Path_19048" data-name="Path 19048" d="M40.517,327.944a17.083,17.083,0,0,0-.466-2.191,45.625,45.625,0,0,0-1.407-4.346,45.768,45.768,0,0,0-4.224-8.289,40.618,40.618,0,0,0-3-4.236c-.031-.037-.059.046-.042.072.844,1.231,1.7,2.448,2.461,3.735.787,1.333,1.493,2.716,2.143,4.121a57.125,57.125,0,0,1,3.118,8.364c.232.813.422,1.638.662,2.45.249.842.564,1.668.776,2.521.031.124.189.169.173.005-.073-.734-.1-1.471-.2-2.2" transform="translate(-31.376 -308.873)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<path id="Path_19049" data-name="Path 19049" d="M51.176,321.972c-2.07-.471-2.173-2.957.413-6.007s9.1-4.379,9.413-3.094c1.448,0,1.448,4.536-1.758,8.7s-7.874,3.2-8.068.4" transform="translate(-20.926 -131.698)" fill="#ee2934"/>
|
||||
<g id="Group_17774" data-name="Group 17774" transform="translate(28.709 180.686)" opacity="0.25">
|
||||
<g id="Group_17773" data-name="Group 17773">
|
||||
<g id="Group_17772" data-name="Group 17772" clip-path="url(#clip-path-39)">
|
||||
<path id="Path_19050" data-name="Path 19050" d="M51.176,321.972c-2.07-.471-2.173-2.957.413-6.007s9.1-4.379,9.413-3.094c1.448,0,1.448,4.536-1.758,8.7s-7.874,3.2-8.068.4" transform="translate(-49.635 -312.384)" fill="#fff"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<path id="Path_19051" data-name="Path 19051" d="M54.934,321.291a16.347,16.347,0,0,0-5.989,7.73c-.067.177.239.437.312.244a19.038,19.038,0,0,1,5.688-7.932c.016-.013.014-.06-.011-.042" transform="translate(-20.631 -135.452)" fill="#ee2934"/>
|
||||
<g id="Group_17777" data-name="Group 17777" transform="translate(28.305 185.835)" opacity="0.3">
|
||||
<g id="Group_17776" data-name="Group 17776">
|
||||
<g id="Group_17775" data-name="Group 17775" clip-path="url(#clip-path-40)">
|
||||
<path id="Path_19052" data-name="Path 19052" d="M54.934,321.291a16.347,16.347,0,0,0-5.989,7.73c-.067.177.239.437.312.244a19.038,19.038,0,0,1,5.688-7.932c.016-.013.014-.06-.011-.042" transform="translate(-48.936 -321.286)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<path id="Path_19053" data-name="Path 19053" d="M55.193,353.285c-2.866,1.16-1.638,4.572,1.16,7.165a12.792,12.792,0,0,0,8.722,3.139,7.343,7.343,0,0,0,2.416-.4,21.886,21.886,0,0,0-.014-4.744,9.172,9.172,0,0,0-6.755-7.276c-4.457-1.208-5.528.41-5.528,2.116" transform="translate(-22.579 -147.873)" fill="#ee2934"/>
|
||||
<g id="Group_17780" data-name="Group 17780" transform="translate(30.978 202.877)" opacity="0.45">
|
||||
<g id="Group_17779" data-name="Group 17779">
|
||||
<g id="Group_17778" data-name="Group 17778" clip-path="url(#clip-path-41)">
|
||||
<path id="Path_19054" data-name="Path 19054" d="M55.193,353.285c-2.866,1.16-1.638,4.572,1.16,7.165a12.792,12.792,0,0,0,8.722,3.139,7.343,7.343,0,0,0,2.416-.4,21.886,21.886,0,0,0-.014-4.744,9.172,9.172,0,0,0-6.755-7.276c-4.457-1.208-5.528.41-5.528,2.116" transform="translate(-53.557 -350.75)" fill="#fff"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<path id="Path_19055" data-name="Path 19055" d="M61.385,359.757A23.2,23.2,0,0,0,57,355.7c-1.632-1.074-3.808-1.99-5.765-1.321-.758.259-1.937,1.015-1.795,1.954.014.094.18.325.292.2a7.782,7.782,0,0,1,1.032-1.2,3.063,3.063,0,0,1,1.539-.584,7.115,7.115,0,0,1,4.018.914,22.419,22.419,0,0,1,5.045,4.15c.017.017.036-.031.023-.046" transform="translate(-20.837 -149.306)" fill="#ee2934"/>
|
||||
<g id="Group_17783" data-name="Group 17783" transform="translate(28.588 204.842)" opacity="0.3">
|
||||
<g id="Group_17782" data-name="Group 17782">
|
||||
<g id="Group_17781" data-name="Group 17781" clip-path="url(#clip-path-42)">
|
||||
<path id="Path_19056" data-name="Path 19056" d="M61.385,359.757A23.2,23.2,0,0,0,57,355.7c-1.632-1.074-3.808-1.99-5.765-1.321-.758.259-1.937,1.015-1.795,1.954.014.094.18.325.292.2a7.782,7.782,0,0,1,1.032-1.2,3.063,3.063,0,0,1,1.539-.584,7.115,7.115,0,0,1,4.018.914,22.419,22.419,0,0,1,5.045,4.15c.017.017.036-.031.023-.046" transform="translate(-49.425 -354.148)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<path id="Path_19057" data-name="Path 19057" d="M26.964,330.72c.56-1.16-.473-4.529-5.84-6.467s-10.076-.632-11.174.227-1.8,1.878-.87,2.407,4.286,1.724,6.286,3.328,5.823,5.823,9.185,5.693,3.668-3.584,2.413-5.188" transform="translate(-3.646 -136.278)" fill="#ee2934"/>
|
||||
<g id="Group_17786" data-name="Group 17786" transform="translate(5.002 186.969)" opacity="0.45">
|
||||
<g id="Group_17785" data-name="Group 17785">
|
||||
<g id="Group_17784" data-name="Group 17784" clip-path="url(#clip-path-43)">
|
||||
<path id="Path_19058" data-name="Path 19058" d="M26.964,330.72c.56-1.16-.473-4.529-5.84-6.467s-10.076-.632-11.174.227-1.8,1.878-.87,2.407,4.286,1.724,6.286,3.328,5.823,5.823,9.185,5.693,3.668-3.584,2.413-5.188" transform="translate(-8.649 -323.247)" fill="#fff"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<path id="Path_19059" data-name="Path 19059" d="M33.613,337.98c-1.124-5.377-6.744-8.337-11.643-9.533a19.83,19.83,0,0,0-4.926-.572c-.023,0-.04.053-.012.055a26.128,26.128,0,0,1,7.991,1.911A17.042,17.042,0,0,1,31.6,334.47a10.208,10.208,0,0,1,1.875,3.573c.04.134.157.047.134-.063" transform="translate(-7.174 -138.229)" fill="#ee2934"/>
|
||||
<g id="Group_17789" data-name="Group 17789" transform="translate(9.843 189.645)" opacity="0.3">
|
||||
<g id="Group_17788" data-name="Group 17788">
|
||||
<g id="Group_17787" data-name="Group 17787" clip-path="url(#clip-path-44)">
|
||||
<path id="Path_19060" data-name="Path 19060" d="M33.613,337.98c-1.124-5.377-6.744-8.337-11.643-9.533a19.83,19.83,0,0,0-4.926-.572c-.023,0-.04.053-.012.055a26.128,26.128,0,0,1,7.991,1.911A17.042,17.042,0,0,1,31.6,334.47a10.208,10.208,0,0,1,1.875,3.573c.04.134.157.047.134-.063" transform="translate(-17.017 -327.874)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<path id="Path_19061" data-name="Path 19061" d="M59.437,311.021c-.075,2.056,2.817,3.248,5.616,1.471s5.734-3.507,8.327-4.177,3.822-2.786,3-3.809-2.121-3.607-8.94-2.764-9.233,3.916-10.168,6.085,1.137,3.786,2.163,3.193" transform="translate(-24.047 -127.142)" fill="#ee2934"/>
|
||||
<g id="Group_17792" data-name="Group 17792" transform="translate(32.992 174.434)" opacity="0.45">
|
||||
<g id="Group_17791" data-name="Group 17791">
|
||||
<g id="Group_17790" data-name="Group 17790" clip-path="url(#clip-path-45)">
|
||||
<path id="Path_19062" data-name="Path 19062" d="M59.437,311.021c-.075,2.056,2.817,3.248,5.616,1.471s5.734-3.507,8.327-4.177,3.822-2.786,3-3.809-2.121-3.607-8.94-2.764-9.233,3.916-10.168,6.085,1.137,3.786,2.163,3.193" transform="translate(-57.039 -301.576)" fill="#fff"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<path id="Path_19063" data-name="Path 19063" d="M72.071,306.589a7.413,7.413,0,0,0-2.924.307,14.622,14.622,0,0,0-2.5.9,13.83,13.83,0,0,0-4.263,3.088,11.74,11.74,0,0,0-.963,1.159,4.962,4.962,0,0,0-.728,1.193c-.046.135.151.355.271.218.337-.389.591-.865.908-1.275a13.56,13.56,0,0,1,1.1-1.256,13.875,13.875,0,0,1,2.627-2.07,16.16,16.16,0,0,1,2.911-1.417,17.322,17.322,0,0,1,1.7-.509,5.849,5.849,0,0,1,1.854-.258c.033,0,.05-.07.017-.076" transform="translate(-25.583 -129.234)" fill="#ee2934"/>
|
||||
<g id="Group_17795" data-name="Group 17795" transform="translate(35.1 177.305)" opacity="0.3">
|
||||
<g id="Group_17794" data-name="Group 17794">
|
||||
<g id="Group_17793" data-name="Group 17793" clip-path="url(#clip-path-46)">
|
||||
<path id="Path_19064" data-name="Path 19064" d="M72.071,306.589a7.413,7.413,0,0,0-2.924.307,14.622,14.622,0,0,0-2.5.9,13.83,13.83,0,0,0-4.263,3.088,11.74,11.74,0,0,0-.963,1.159,4.962,4.962,0,0,0-.728,1.193c-.046.135.151.355.271.218.337-.389.591-.865.908-1.275a13.56,13.56,0,0,1,1.1-1.256,13.875,13.875,0,0,1,2.627-2.07,16.16,16.16,0,0,1,2.911-1.417,17.322,17.322,0,0,1,1.7-.509,5.849,5.849,0,0,1,1.854-.258c.033,0,.05-.07.017-.076" transform="translate(-60.683 -306.54)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<path id="Path_19065" data-name="Path 19065" d="M49.006,336.709c-.956-.956-3.549-.733-4.777,2.09s1.349,5.913,1.638,6.782c1.185-.684,2.106-.276,4.192-.684a5.205,5.205,0,0,0,4-5.192c-.137-2.586-1.229-4.292-5.05-3" transform="translate(-18.507 -141.738)" fill="#ee2934"/>
|
||||
<g id="Group_17798" data-name="Group 17798" transform="translate(25.391 194.46)" opacity="0.45">
|
||||
<g id="Group_17797" data-name="Group 17797">
|
||||
<g id="Group_17796" data-name="Group 17796" clip-path="url(#clip-path-47)">
|
||||
<path id="Path_19066" data-name="Path 19066" d="M49.006,336.709c-.956-.956-3.549-.733-4.777,2.09s1.349,5.913,1.638,6.782c1.185-.684,2.106-.276,4.192-.684a5.205,5.205,0,0,0,4-5.192c-.137-2.586-1.229-4.292-5.05-3" transform="translate(-43.899 -336.199)" fill="#fff"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<path id="Path_19067" data-name="Path 19067" d="M50.805,336.579a3.915,3.915,0,0,0-1.266,1.31,7.226,7.226,0,0,0-.82,1.583,6.726,6.726,0,0,0-.361,3.6c.009.046.047,0,.045-.025a7.4,7.4,0,0,1,.6-3.554,7.161,7.161,0,0,1,.861-1.427,7.513,7.513,0,0,1,.576-.666,3.716,3.716,0,0,0,.549-.547c.067-.108-.042-.341-.187-.27" transform="translate(-20.343 -141.893)" fill="#ee2934"/>
|
||||
<g id="Group_17801" data-name="Group 17801" transform="translate(27.91 194.673)" opacity="0.3">
|
||||
<g id="Group_17800" data-name="Group 17800">
|
||||
<g id="Group_17799" data-name="Group 17799" clip-path="url(#clip-path-48)">
|
||||
<path id="Path_19068" data-name="Path 19068" d="M50.805,336.579a3.915,3.915,0,0,0-1.266,1.31,7.226,7.226,0,0,0-.82,1.583,6.726,6.726,0,0,0-.361,3.6c.009.046.047,0,.045-.025a7.4,7.4,0,0,1,.6-3.554,7.161,7.161,0,0,1,.861-1.427,7.513,7.513,0,0,1,.576-.666,3.716,3.716,0,0,0,.549-.547c.067-.108-.042-.341-.187-.27" transform="translate(-48.253 -336.566)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<path id="Path_19069" data-name="Path 19069" d="M32.073,343.24c-.088-2.1-2.365-3.766-5.605-4.73a8.816,8.816,0,0,0-9.109,2.421c-2.365,2.571-3.591,4.761-2.628,5.374a59.318,59.318,0,0,0,8.058,3.066c2.8.876,6.481,1.138,9.284-.526s2.628-4.554,0-5.605" transform="translate(-6.072 -142.548)" fill="#ee2934"/>
|
||||
<g id="Group_17804" data-name="Group 17804" transform="translate(8.33 195.57)" opacity="0.25">
|
||||
<g id="Group_17803" data-name="Group 17803">
|
||||
<g id="Group_17802" data-name="Group 17802" clip-path="url(#clip-path-49)">
|
||||
<path id="Path_19070" data-name="Path 19070" d="M32.073,343.24c-.088-2.1-2.365-3.766-5.605-4.73a8.816,8.816,0,0,0-9.109,2.421c-2.365,2.571-3.591,4.761-2.628,5.374a59.318,59.318,0,0,0,8.058,3.066c2.8.876,6.481,1.138,9.284-.526s2.628-4.554,0-5.605" transform="translate(-14.402 -338.118)" fill="#fff"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<path id="Path_19071" data-name="Path 19071" d="M34.866,345.824a8.885,8.885,0,0,0-3.521-.941,16.19,16.19,0,0,0-3.527.042,22.1,22.1,0,0,0-3.651.772q-.936.276-1.854.614a12.551,12.551,0,0,0-1.695.7c-.021.012-.033.081,0,.073.594-.124,1.175-.356,1.754-.534.626-.193,1.253-.377,1.887-.542a24.57,24.57,0,0,1,3.6-.68,16.044,16.044,0,0,1,3.657.013,21.694,21.694,0,0,1,3.315.81c.227.065.16-.251.032-.325" transform="translate(-8.684 -145.367)" fill="#ee2934"/>
|
||||
<g id="Group_17807" data-name="Group 17807" transform="translate(11.914 199.439)" opacity="0.3">
|
||||
<g id="Group_17806" data-name="Group 17806">
|
||||
<g id="Group_17805" data-name="Group 17805" clip-path="url(#clip-path-50)">
|
||||
<path id="Path_19072" data-name="Path 19072" d="M34.866,345.824a8.885,8.885,0,0,0-3.521-.941,16.19,16.19,0,0,0-3.527.042,22.1,22.1,0,0,0-3.651.772q-.936.276-1.854.614a12.551,12.551,0,0,0-1.695.7c-.021.012-.033.081,0,.073.594-.124,1.175-.356,1.754-.534.626-.193,1.253-.377,1.887-.542a24.57,24.57,0,0,1,3.6-.68,16.044,16.044,0,0,1,3.657.013,21.694,21.694,0,0,1,3.315.81c.227.065.16-.251.032-.325" transform="translate(-20.598 -344.806)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<path id="Path_19073" data-name="Path 19073" d="M55.685,336.817c-2.316-1.84-1.544-6.253,6.563-6.491s13.9,1.878,13.639,4.487c1.3,1.3.643,4.96-5.919,6.1s-15.955.574-14.283-4.1" transform="translate(-22.997 -139.255)" fill="#ee2934"/>
|
||||
<g id="Group_17810" data-name="Group 17810" transform="translate(31.551 191.053)" opacity="0.25">
|
||||
<g id="Group_17809" data-name="Group 17809">
|
||||
<g id="Group_17808" data-name="Group 17808" clip-path="url(#clip-path-51)">
|
||||
<path id="Path_19074" data-name="Path 19074" d="M55.685,336.817c-2.316-1.84-1.544-6.253,6.563-6.491s13.9,1.878,13.639,4.487c1.3,1.3.643,4.96-5.919,6.1s-15.955.574-14.283-4.1" transform="translate(-54.548 -330.307)" fill="#fff"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<path id="Path_19075" data-name="Path 19075" d="M72.652,337.821a34.719,34.719,0,0,0-7.242-.422,27.936,27.936,0,0,0-6.686.768,9.969,9.969,0,0,0-1.631.606,8,8,0,0,0-.711.381c-.184.112-.389.209-.456.425a.221.221,0,0,0,.241.258,8.824,8.824,0,0,0,1.418-.7,11.392,11.392,0,0,1,1.4-.511,17.6,17.6,0,0,1,2.817-.555,50.1,50.1,0,0,1,6.843-.377c1.333.018,2.66.119,3.988.224.04,0,.056-.086.016-.094" transform="translate(-23.576 -142.234)" fill="#ee2934"/>
|
||||
<g id="Group_17813" data-name="Group 17813" transform="translate(32.345 195.14)" opacity="0.3">
|
||||
<g id="Group_17812" data-name="Group 17812">
|
||||
<g id="Group_17811" data-name="Group 17811" clip-path="url(#clip-path-52)">
|
||||
<path id="Path_19076" data-name="Path 19076" d="M72.652,337.821a34.719,34.719,0,0,0-7.242-.422,27.936,27.936,0,0,0-6.686.768,9.969,9.969,0,0,0-1.631.606,8,8,0,0,0-.711.381c-.184.112-.389.209-.456.425a.221.221,0,0,0,.241.258,8.824,8.824,0,0,0,1.418-.7,11.392,11.392,0,0,1,1.4-.511,17.6,17.6,0,0,1,2.817-.555,50.1,50.1,0,0,1,6.843-.377c1.333.018,2.66.119,3.988.224.04,0,.056-.086.016-.094" transform="translate(-55.92 -337.374)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<path id="Path_19077" data-name="Path 19077" d="M275.2,332.779h0a1.8,1.8,0,0,1-1.808-.175,5.648,5.648,0,0,1-2.565-4.42,1.8,1.8,0,0,1,.745-1.656l31.795-20.108,0,0a2.442,2.442,0,0,1,2.617.182,7.894,7.894,0,0,1,3.586,6.178,2.441,2.441,0,0,1-1.141,2.362l0,.008Z" transform="translate(-114.177 -129.059)" fill="#1b2d51"/>
|
||||
<path id="Path_19078" data-name="Path 19078" d="M270.823,342.932c0-1.629,1.139-2.293,2.552-1.481a5.647,5.647,0,0,1,2.565,4.42c0,1.63-1.139,2.293-2.552,1.481a5.648,5.648,0,0,1-2.565-4.42" transform="translate(-114.177 -143.807)" fill="#fff"/>
|
||||
<g id="Group_17816" data-name="Group 17816" transform="translate(156.646 197.298)" opacity="0.88">
|
||||
<g id="Group_17815" data-name="Group 17815">
|
||||
<g id="Group_17814" data-name="Group 17814" clip-path="url(#clip-path-53)">
|
||||
<path id="Path_19079" data-name="Path 19079" d="M270.823,342.932c0-1.629,1.139-2.293,2.552-1.481a5.647,5.647,0,0,1,2.565,4.42c0,1.63-1.139,2.293-2.552,1.481a5.648,5.648,0,0,1-2.565-4.42" transform="translate(-270.823 -341.104)" fill="#1b2d51"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<path id="Path_19080" data-name="Path 19080" d="M263.2,350.811a3.414,3.414,0,0,1-1.551-2.673,1.086,1.086,0,0,1,.45-1h0l6.319-3.676h0a1.086,1.086,0,0,1,1.093.106,3.414,3.414,0,0,1,1.551,2.673,1.085,1.085,0,0,1-.451,1l-6.319,3.676a1.086,1.086,0,0,1-1.093-.106" transform="translate(-110.309 -144.757)" fill="#ee2934"/>
|
||||
<g id="Group_17819" data-name="Group 17819" transform="translate(151.339 198.601)" opacity="0.2">
|
||||
<g id="Group_17818" data-name="Group 17818">
|
||||
<g id="Group_17817" data-name="Group 17817" clip-path="url(#clip-path-54)">
|
||||
<path id="Path_19081" data-name="Path 19081" d="M263.2,350.811a3.414,3.414,0,0,1-1.551-2.673,1.086,1.086,0,0,1,.45-1h0l6.319-3.676h0a1.086,1.086,0,0,1,1.093.106,3.414,3.414,0,0,1,1.551,2.673,1.085,1.085,0,0,1-.451,1l-6.319,3.676a1.086,1.086,0,0,1-1.093-.106" transform="translate(-261.648 -343.358)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Group_17822" data-name="Group 17822" transform="translate(151.809 200.626)" opacity="0.2">
|
||||
<g id="Group_17821" data-name="Group 17821">
|
||||
<g id="Group_17820" data-name="Group 17820" clip-path="url(#clip-path-55)">
|
||||
<path id="Path_19082" data-name="Path 19082" d="M265.457,346.859l-3,1.742a19.2,19.2,0,0,1,3.706,2.9l3.049-1.771c-.084-.095-.158-.193-.246-.287a11.516,11.516,0,0,0-3.51-2.586" transform="translate(-262.459 -346.859)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Group_17825" data-name="Group 17825" transform="translate(157.392 177.065)" opacity="0.18">
|
||||
<g id="Group_17824" data-name="Group 17824">
|
||||
<g id="Group_17823" data-name="Group 17823" clip-path="url(#clip-path-56)">
|
||||
<path id="Path_19083" data-name="Path 19083" d="M275.12,327.742l32.71-20.1a6.186,6.186,0,0,0-1.307-1.039,2.437,2.437,0,0,0-2.617-.179l0,0-31.791,20.1a1.793,1.793,0,0,1,1.807.177,4.717,4.717,0,0,1,1.2,1.039" transform="translate(-272.113 -306.124)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<path id="Path_19084" data-name="Path 19084" d="M238.309,356.972c.005-.13,0-.234,0-.306q0-.187-.016-.374c-.016-.3-.047-.6-.088-.893-.016-.109-.036-.218-.057-.332a10.19,10.19,0,0,0-.3-1.219c-.036-.114-.073-.223-.109-.337-.109-.3-.223-.6-.357-.887-.047-.1-.094-.207-.146-.311l-.14-.28c-.067-.13-.135-.26-.212-.389s-.146-.259-.228-.389-.161-.255-.244-.384a13.956,13.956,0,0,0-1.478-1.878,17.948,17.948,0,0,0-2.334-2.132,25.19,25.19,0,0,0-2.937-1.951c-11.481-6.553-29.986-6.553-41.333,0-.285.166-.56.332-.83.5a22.53,22.53,0,0,0-2.879,2.116c-.259.229-.508.457-.747.69a16.5,16.5,0,0,0-1.645,1.868c-.088.115-.171.234-.254.353-.114.156-.218.316-.322.478-.14.223-.275.446-.4.669-.14.249-.264.5-.383.747-.052.109-.1.218-.146.327-.067.15-.13.3-.187.457q-.069.171-.124.342a10.154,10.154,0,0,0-.524,2.443c-.005.089-.016.176-.016.265-.01.192-.02.383-.02.57,0,.711,0,3.927,0,4.519-.016,4.332,2.853,8.679,8.6,12,11.414,6.589,29.919,6.589,41.332,0,5.764-3.326,8.6-7.689,8.524-12.036-.01-.5.01-3.2,0-4.249m-48.342-9.214c5-2.885,11.735-4.472,18.972-4.472s14.028,1.588,19.092,4.477c4.5,2.568,6.983,5.785,6.993,9.064.005,3.253-2.438,6.459-6.884,9.027-5.027,2.9-11.782,4.5-19.024,4.5s-13.992-1.6-19.019-4.5c-4.488-2.589-6.957-5.826-6.957-9.116,0-3.253,2.428-6.438,6.828-8.98" transform="translate(-75.824 -143.339)" fill="#ee2934"/>
|
||||
<g id="Group_17828" data-name="Group 17828" transform="translate(104.027 196.656)" opacity="0.25">
|
||||
<g id="Group_17827" data-name="Group 17827">
|
||||
<g id="Group_17826" data-name="Group 17826" clip-path="url(#clip-path-57)">
|
||||
<path id="Path_19085" data-name="Path 19085" d="M238.309,356.972c.005-.13,0-.234,0-.306q0-.187-.016-.374c-.016-.3-.047-.6-.088-.893-.016-.109-.036-.218-.057-.332a10.19,10.19,0,0,0-.3-1.219c-.036-.114-.073-.223-.109-.337-.109-.3-.223-.6-.357-.887-.047-.1-.094-.207-.146-.311l-.14-.28c-.067-.13-.135-.26-.212-.389s-.146-.259-.228-.389-.161-.255-.244-.384a13.956,13.956,0,0,0-1.478-1.878,17.948,17.948,0,0,0-2.334-2.132,25.19,25.19,0,0,0-2.937-1.951c-11.481-6.553-29.986-6.553-41.333,0-.285.166-.56.332-.83.5a22.53,22.53,0,0,0-2.879,2.116c-.259.229-.508.457-.747.69a16.5,16.5,0,0,0-1.645,1.868c-.088.115-.171.234-.254.353-.114.156-.218.316-.322.478-.14.223-.275.446-.4.669-.14.249-.264.5-.383.747-.052.109-.1.218-.146.327-.067.15-.13.3-.187.457q-.069.171-.124.342a10.154,10.154,0,0,0-.524,2.443c-.005.089-.016.176-.016.265-.01.192-.02.383-.02.57,0,.711,0,3.927,0,4.519-.016,4.332,2.853,8.679,8.6,12,11.414,6.589,29.919,6.589,41.332,0,5.764-3.326,8.6-7.689,8.524-12.036-.01-.5.01-3.2,0-4.249m-48.342-9.214c5-2.885,11.735-4.472,18.972-4.472s14.028,1.588,19.092,4.477c4.5,2.568,6.983,5.785,6.993,9.064.005,3.253-2.438,6.459-6.884,9.027-5.027,2.9-11.782,4.5-19.024,4.5s-13.992-1.6-19.019-4.5c-4.488-2.589-6.957-5.826-6.957-9.116,0-3.253,2.428-6.438,6.828-8.98" transform="translate(-179.851 -339.995)" fill="#fff"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<path id="Path_19086" data-name="Path 19086" d="M260.109,369.346h-3.284c.005,3.253-2.438,6.314-6.884,8.882-4.878,2.819-11.383,4.4-18.381,4.494v7.841c7.265-.091,14.482-1.732,20.025-4.933,5.764-3.325,8.6-7.689,8.524-12.036-.01-.5.01-3.2,0-4.249" transform="translate(-97.624 -155.713)" fill="#ee2934"/>
|
||||
<path id="Path_19087" data-name="Path 19087" d="M238.309,356.665q0-.187-.016-.374c-.016-.3-.046-.6-.088-.892-.016-.109-.036-.218-.057-.332a10.132,10.132,0,0,0-.3-1.219c-.036-.115-.073-.223-.109-.337-.109-.3-.223-.6-.358-.887-.047-.1-.094-.208-.146-.311l-.14-.28c-.067-.13-.135-.259-.212-.389s-.146-.26-.228-.389-.161-.255-.244-.384a13.949,13.949,0,0,0-1.478-1.878,18.776,18.776,0,0,0-2.334-2.132,25.331,25.331,0,0,0-2.937-1.951c-11.481-6.552-29.986-6.552-41.332,0-.286.166-.56.332-.831.5a22.475,22.475,0,0,0-2.879,2.117c-.259.228-.508.456-.747.69a16.444,16.444,0,0,0-1.645,1.868c-.088.114-.171.233-.254.353-.114.156-.218.316-.322.477-.14.223-.275.446-.4.669-.14.249-.264.5-.383.747-.052.109-.1.217-.145.327-.068.15-.13.3-.187.456-.047.114-.089.228-.125.342a10.155,10.155,0,0,0-.524,2.444c-.005.088-.016.176-.016.264-.01.192-.02.384-.02.571,0,4.327,2.869,8.659,8.6,11.963,11.414,6.589,29.919,6.589,41.333,0,5.628-3.248,8.471-7.481,8.523-11.73.005-.13,0-.233,0-.306m-10.168,9.188c-5.027,2.905-11.782,4.5-19.024,4.5s-13.992-1.6-19.019-4.5c-4.487-2.589-6.957-5.826-6.957-9.115,0-3.253,2.428-6.438,6.828-8.981,5-2.884,11.735-4.472,18.972-4.472s14.028,1.588,19.092,4.477c4.5,2.568,6.983,5.784,6.993,9.063.005,3.253-2.438,6.459-6.884,9.027" transform="translate(-75.824 -143.339)" fill="#ee2934"/>
|
||||
<g id="Group_17831" data-name="Group 17831" transform="translate(104.027 196.656)" opacity="0.45">
|
||||
<g id="Group_17830" data-name="Group 17830">
|
||||
<g id="Group_17829" data-name="Group 17829" clip-path="url(#clip-path-58)">
|
||||
<path id="Path_19088" data-name="Path 19088" d="M238.309,356.665q0-.187-.016-.374c-.016-.3-.046-.6-.088-.892-.016-.109-.036-.218-.057-.332a10.132,10.132,0,0,0-.3-1.219c-.036-.115-.073-.223-.109-.337-.109-.3-.223-.6-.358-.887-.047-.1-.094-.208-.146-.311l-.14-.28c-.067-.13-.135-.259-.212-.389s-.146-.26-.228-.389-.161-.255-.244-.384a13.949,13.949,0,0,0-1.478-1.878,18.776,18.776,0,0,0-2.334-2.132,25.331,25.331,0,0,0-2.937-1.951c-11.481-6.552-29.986-6.552-41.332,0-.286.166-.56.332-.831.5a22.475,22.475,0,0,0-2.879,2.117c-.259.228-.508.456-.747.69a16.444,16.444,0,0,0-1.645,1.868c-.088.114-.171.233-.254.353-.114.156-.218.316-.322.477-.14.223-.275.446-.4.669-.14.249-.264.5-.383.747-.052.109-.1.217-.145.327-.068.15-.13.3-.187.456-.047.114-.089.228-.125.342a10.155,10.155,0,0,0-.524,2.444c-.005.088-.016.176-.016.264-.01.192-.02.384-.02.571,0,4.327,2.869,8.659,8.6,11.963,11.414,6.589,29.919,6.589,41.333,0,5.628-3.248,8.471-7.481,8.523-11.73.005-.13,0-.233,0-.306m-10.168,9.188c-5.027,2.905-11.782,4.5-19.024,4.5s-13.992-1.6-19.019-4.5c-4.487-2.589-6.957-5.826-6.957-9.115,0-3.253,2.428-6.438,6.828-8.981,5-2.884,11.735-4.472,18.972-4.472s14.028,1.588,19.092,4.477c4.5,2.568,6.983,5.784,6.993,9.063.005,3.253-2.438,6.459-6.884,9.027" transform="translate(-179.851 -339.995)" fill="#fff"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<path id="Path_19089" data-name="Path 19089" d="M237.423,359.226a6.667,6.667,0,0,1-.208,1.655c-.685-2.7-3.035-5.292-6.786-7.429-5.063-2.89-11.844-4.477-19.091-4.477s-13.977,1.588-18.972,4.472c-3.658,2.107-5.951,4.664-6.62,7.331a6.553,6.553,0,0,1-.207-1.639c0-3.253,2.428-6.439,6.828-8.981,5-2.884,11.735-4.472,18.972-4.472s14.028,1.587,19.091,4.477c4.5,2.568,6.983,5.785,6.994,9.064" transform="translate(-78.221 -145.738)" fill="#ee2934"/>
|
||||
<g id="Group_17834" data-name="Group 17834" transform="translate(107.316 199.947)" opacity="0.25">
|
||||
<g id="Group_17833" data-name="Group 17833">
|
||||
<g id="Group_17832" data-name="Group 17832" clip-path="url(#clip-path-59)">
|
||||
<path id="Path_19090" data-name="Path 19090" d="M237.423,359.226a6.667,6.667,0,0,1-.208,1.655c-.685-2.7-3.035-5.292-6.786-7.429-5.063-2.89-11.844-4.477-19.091-4.477s-13.977,1.588-18.972,4.472c-3.658,2.107-5.951,4.664-6.62,7.331a6.553,6.553,0,0,1-.207-1.639c0-3.253,2.428-6.439,6.828-8.981,5-2.884,11.735-4.472,18.972-4.472s14.028,1.587,19.091,4.477c4.5,2.568,6.983,5.785,6.994,9.064" transform="translate(-185.537 -345.685)" fill="#fff"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Group_17837" data-name="Group 17837" transform="translate(107.368 201.607)" opacity="0.55">
|
||||
<g id="Group_17836" data-name="Group 17836">
|
||||
<g id="Group_17835" data-name="Group 17835" clip-path="url(#clip-path-60)">
|
||||
<path id="Path_19091" data-name="Path 19091" d="M237.408,361.292c-.389,2.952-2.776,5.832-6.833,8.171-5.027,2.905-11.782,4.5-19.024,4.5s-13.992-1.6-19.019-4.5c-4.108-2.371-6.526-5.287-6.905-8.285.379-2.963,2.75-5.826,6.775-8.15,5-2.884,11.735-4.472,18.972-4.472s14.029,1.588,19.092,4.478c4.134,2.355,6.563,5.261,6.941,8.259" transform="translate(-185.627 -348.555)" fill="#fff"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<path id="Path_19092" data-name="Path 19092" d="M152.494,34.4l21.23-13.417,9.3,3.047Z" transform="translate(-64.29 -8.845)" fill="#ee2934"/>
|
||||
<g id="Group_17840" data-name="Group 17840" transform="translate(88.204 12.134)" opacity="0.15">
|
||||
<g id="Group_17839" data-name="Group 17839">
|
||||
<g id="Group_17838" data-name="Group 17838" clip-path="url(#clip-path-61)">
|
||||
<path id="Path_19093" data-name="Path 19093" d="M152.494,34.4l21.23-13.417,9.3,3.047Z" transform="translate(-152.494 -20.979)" fill="#fff"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<path id="Path_19094" data-name="Path 19094" d="M152.494,29.708l18.371-15.133-4.034-4.715Z" transform="translate(-64.29 -4.156)" fill="#ee2934"/>
|
||||
<g id="Group_17843" data-name="Group 17843" transform="translate(88.204 5.703)" opacity="0.15">
|
||||
<g id="Group_17842" data-name="Group 17842">
|
||||
<g id="Group_17841" data-name="Group 17841" clip-path="url(#clip-path-62)">
|
||||
<path id="Path_19095" data-name="Path 19095" d="M152.494,29.708l18.371-15.133-4.034-4.715Z" transform="translate(-152.494 -9.859)" fill="#fff"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<path id="Path_19096" data-name="Path 19096" d="M170.865,18.011l-.021,3.538-18.35,11.6Z" transform="translate(-64.29 -7.593)" fill="#ee2934"/>
|
||||
<g id="Group_17846" data-name="Group 17846" transform="translate(88.204 10.418)" opacity="0.2">
|
||||
<g id="Group_17845" data-name="Group 17845">
|
||||
<g id="Group_17844" data-name="Group 17844" clip-path="url(#clip-path-63)">
|
||||
<path id="Path_19097" data-name="Path 19097" d="M170.865,18.011l-.021,3.538-18.35,11.6Z" transform="translate(-152.494 -18.011)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<path id="Path_19098" data-name="Path 19098" d="M191.563,15.333a.213.213,0,0,0,.064.145.266.266,0,0,0,.349.014c.182-.15.366-.3.549-.446a.206.206,0,0,0,.022-.313.266.266,0,0,0-.348-.019c-.186.148-.371.3-.555.449a.211.211,0,0,0-.081.17" transform="translate(-80.761 -6.179)" fill="#1b2d51"/>
|
||||
<path id="Path_19099" data-name="Path 19099" d="M195.825,7.451q.576-.412,1.162-.8a.265.265,0,0,1,.345.046.21.21,0,0,1-.053.311q-.579.386-1.149.794a.265.265,0,0,1-.346-.035.21.21,0,0,1-.053-.133.214.214,0,0,1,.094-.18m3.169-2.056q.618-.361,1.246-.7a.261.261,0,0,1,.338.078.211.211,0,0,1-.089.3q-.619.331-1.228.687a.265.265,0,0,1-.342-.065.211.211,0,0,1-.039-.116.218.218,0,0,1,.113-.193m3.39-1.75c.439-.2.884-.388,1.326-.565a.257.257,0,0,1,.325.113.216.216,0,0,1-.126.294c-.434.174-.874.36-1.306.555a.259.259,0,0,1-.331-.1.2.2,0,0,1-.025-.094.222.222,0,0,1,.138-.2m3.594-1.38c.465-.148.934-.286,1.395-.409a.25.25,0,0,1,.306.149.22.22,0,0,1-.167.277c-.453.121-.914.256-1.371.4a.253.253,0,0,1-.314-.135.205.205,0,0,1-.014-.068.226.226,0,0,1,.165-.216m3.762-.949c.474-.089.96-.168,1.441-.235a.243.243,0,0,1,.281.186.231.231,0,0,1-.208.254c-.473.066-.95.143-1.417.231a.246.246,0,0,1-.291-.172.216.216,0,0,1,.193-.263M213.607.84q.572-.034,1.149-.048l.315-.006a.235.235,0,0,1,.249.217v0a.236.236,0,0,1-.245.225l-.308.005q-.567.014-1.128.048a.238.238,0,0,1-.261-.208V1.068a.234.234,0,0,1,.231-.228m3.637.212a.242.242,0,0,1,.264-.207c.483.03.973.071,1.457.123a.227.227,0,0,1,.215.247.243.243,0,0,1-.275.195c-.476-.05-.958-.091-1.433-.12a.233.233,0,0,1-.228-.216.132.132,0,0,1,0-.021m3.837.434a.248.248,0,0,1,.292-.174c.476.087.955.187,1.425.3a.22.22,0,0,1,.175.272.253.253,0,0,1-.3.159c-.461-.11-.931-.209-1.4-.295a.228.228,0,0,1-.2-.212.214.214,0,0,1,.006-.05m3.723.923a.256.256,0,0,1,.318-.131c.453.152.91.319,1.355.5a.215.215,0,0,1,.125.293.259.259,0,0,1-.326.115c-.437-.174-.884-.338-1.329-.487a.226.226,0,0,1-.16-.2.207.207,0,0,1,.016-.083m3.516,1.437a.262.262,0,0,1,.337-.084c.423.216.844.446,1.251.683a.21.21,0,0,1,.072.308.265.265,0,0,1-.342.067c-.4-.233-.811-.458-1.226-.67a.22.22,0,0,1-.124-.188.2.2,0,0,1,.032-.115m3.108,1.875a.262.262,0,0,1,.346-.025c.38.285.755.584,1.115.888a.211.211,0,0,1,.018.316.265.265,0,0,1-.348.007c-.353-.3-.72-.591-1.093-.872a.217.217,0,0,1-.09-.206.2.2,0,0,1,.051-.108" transform="translate(-82.518 -0.331)" fill="#1b2d51"/>
|
||||
<path id="Path_19100" data-name="Path 19100" d="M46.6,57.013,87.455,33.424l1.635.944a1.705,1.705,0,0,1,.769,1.332V65.838a1.705,1.705,0,0,1-.769,1.331l-39.32,22.7a1.7,1.7,0,0,1-1.537,0l-.866-.5a1.705,1.705,0,0,1-.769-1.331Z" transform="translate(-19.646 -14.091)" fill="#ee2934"/>
|
||||
<path id="Path_19101" data-name="Path 19101" d="M87.23,23.547l.167-.091-.635-.369h0a1.067,1.067,0,0,0-.168-.08L68.613,16.344a1.237,1.237,0,0,0-1.381.439L47.118,46.157a3.478,3.478,0,0,0-.519,1.677v1.951l.624.362L87.456,26.2V24.245a1.316,1.316,0,0,0-.226-.7" transform="translate(-19.646 -6.863)" fill="#ee2934"/>
|
||||
<g id="Group_17849" data-name="Group 17849" transform="translate(27.097 9.701)" opacity="0.4">
|
||||
<g id="Group_17848" data-name="Group 17848">
|
||||
<g id="Group_17847" data-name="Group 17847" clip-path="url(#clip-path-64)">
|
||||
<path id="Path_19102" data-name="Path 19102" d="M68.169,17.133a1,1,0,0,0-.208.22L47.845,46.726a3.127,3.127,0,0,0-.374.839l-.625-.362a3.962,3.962,0,0,1,.163-.444c0-.006,0-.009.006-.012.028-.061.055-.12.086-.178.006-.009.009-.019.016-.028a1.638,1.638,0,0,1,.107-.178L67.336,16.991a1.036,1.036,0,0,1,.1-.123c.034-.034.071-.067.108-.1Z" transform="translate(-46.847 -16.771)" fill="#fff"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Group_17852" data-name="Group 17852" transform="translate(47.794 9.416)" opacity="0.7">
|
||||
<g id="Group_17851" data-name="Group 17851">
|
||||
<g id="Group_17850" data-name="Group 17850" clip-path="url(#clip-path-65)">
|
||||
<path id="Path_19103" data-name="Path 19103" d="M102.58,23.454a.976.976,0,0,0-.172-.083L84.425,16.705a1.233,1.233,0,0,0-1.17.221l-.625-.362a1.249,1.249,0,0,1,1.174-.221l17.98,6.663a.946.946,0,0,1,.168.083Z" transform="translate(-82.63 -16.28)" fill="#fff"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<path id="Path_19104" data-name="Path 19104" d="M68.31,17.409,48.2,46.783a3.483,3.483,0,0,0-.519,1.677v1.951L88.534,26.82V24.871a1.418,1.418,0,0,0-.862-1.238L69.691,16.97a1.237,1.237,0,0,0-1.381.439" transform="translate(-20.1 -7.127)" fill="#ee2934"/>
|
||||
<path id="Path_19105" data-name="Path 19105" d="M89.56,59.278V14.686L52.74,35.945V80.537Z" transform="translate(-22.235 -6.191)" fill="#fafafa"/>
|
||||
<path id="Path_19106" data-name="Path 19106" d="M89.379,14.735V59.086L52.768,80.224V35.874Zm.209-.362L52.559,35.753V80.586L89.588,59.207Z" transform="translate(-22.158 -6.06)" fill="#ebebeb"/>
|
||||
<path id="Path_19107" data-name="Path 19107" d="M51.958,35.407l-.824-.476,37.029-21.38.824.475Z" transform="translate(-21.558 -5.713)" fill="#f5f5f5"/>
|
||||
<path id="Path_19108" data-name="Path 19108" d="M51.134,50.514V95.346l.825.477V50.99Z" transform="translate(-21.557 -21.296)" fill="#e0e0e0"/>
|
||||
<path id="Path_19109" data-name="Path 19109" d="M58.168,47.91a.365.365,0,0,0,.185-.05L88.581,30.407a.371.371,0,0,0-.372-.643L57.982,47.217a.371.371,0,0,0,.186.693" transform="translate(-24.366 -12.527)" fill="#e0e0e0"/>
|
||||
<path id="Path_19110" data-name="Path 19110" d="M58.168,58.1a.365.365,0,0,0,.185-.05L88.581,40.6a.371.371,0,0,0-.372-.643L57.982,57.407a.371.371,0,0,0,.186.693" transform="translate(-24.366 -16.823)" fill="#e0e0e0"/>
|
||||
<path id="Path_19111" data-name="Path 19111" d="M58.168,68.29a.365.365,0,0,0,.185-.05L88.581,50.787a.371.371,0,0,0-.372-.643L57.982,67.6a.371.371,0,0,0,.186.693" transform="translate(-24.366 -21.119)" fill="#e0e0e0"/>
|
||||
<path id="Path_19112" data-name="Path 19112" d="M91.89,35.77h0c-.037-.22-.153-.282-.3-.178a.9.9,0,0,0-.2.2l-.086.12L74.5,61.457l-2.509,3.495a1.431,1.431,0,0,1-1.381.518l-2.166-.515L51.913,58.87a.846.846,0,0,0-.337-.013.634.634,0,0,0-.126.04l.623-.36,15.85,5.808,2.087.745a1.422,1.422,0,0,0,1.381-.518L73.9,61.08,90.785,35.418a.68.68,0,0,1,.19-.175L89.513,34.4l.613-.352,1.01.582a1.751,1.751,0,0,1,.754,1.139" transform="translate(-21.691 -14.355)" fill="#ee2934"/>
|
||||
<path id="Path_19113" data-name="Path 19113" d="M90.335,85.8a.357.357,0,0,1-.043.061l-17.025-5.4A2.933,2.933,0,0,0,69.588,81.6l-18.2,27.053-.673.389-.006,0a.548.548,0,0,1-.521.058L68.905,81.217a2.941,2.941,0,0,1,3.682-1.136Z" transform="translate(-21.158 -33.656)" fill="#ee2934"/>
|
||||
<g id="Group_17855" data-name="Group 17855" transform="translate(52.151 19.693)" opacity="0.4">
|
||||
<g id="Group_17854" data-name="Group 17854">
|
||||
<g id="Group_17853" data-name="Group 17853" clip-path="url(#clip-path-66)">
|
||||
<path id="Path_19114" data-name="Path 19114" d="M107.456,34.628l-1.012-.582-.613.352,1.461.842,0,0h0a.672.672,0,0,0-.19.174L90.247,61.037l-.085.123.114.037.589.189,16.756-25.475.086-.12a.908.908,0,0,1,.2-.2c.15-.1.267-.043.3.178h0a1.757,1.757,0,0,0-.753-1.139" transform="translate(-90.162 -34.046)" fill="#fff"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<path id="Path_19115" data-name="Path 19115" d="M50.2,76.289l-3.6-2.082v31.026a1.7,1.7,0,0,0,.769,1.331l.866.5a1.7,1.7,0,0,0,1.537,0l.433-.25Z" transform="translate(-19.646 -31.285)" fill="#ee2934"/>
|
||||
<g id="Group_17858" data-name="Group 17858" transform="translate(26.953 42.921)" opacity="0.25">
|
||||
<g id="Group_17857" data-name="Group 17857">
|
||||
<g id="Group_17856" data-name="Group 17856" clip-path="url(#clip-path-67)">
|
||||
<path id="Path_19116" data-name="Path 19116" d="M50.2,76.289l-3.6-2.082v31.026a1.7,1.7,0,0,0,.769,1.331l.866.5a1.7,1.7,0,0,0,1.537,0l.433-.25Z" transform="translate(-46.599 -74.206)" fill="#fff"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<path id="Path_19117" data-name="Path 19117" d="M91.614,37.05V67.188a1.569,1.569,0,0,1-.239.779,1.676,1.676,0,0,1-.451.5l-.031.016a.487.487,0,0,1-.049.034l-39.318,22.7a.554.554,0,0,1-.53.064.468.468,0,0,1-.23-.367,1.033,1.033,0,0,1-.009-.138V60.637a.668.668,0,0,1,.864-.68l16.532,6.086,2.166.515A1.433,1.433,0,0,0,71.7,66.04l2.509-3.5L91.011,37l.086-.119c.285-.4.518-.322.518.168" transform="translate(-21.399 -15.442)" fill="#ee2934"/>
|
||||
<g id="Group_17861" data-name="Group 17861" transform="translate(29.358 21.186)" opacity="0.5">
|
||||
<g id="Group_17860" data-name="Group 17860">
|
||||
<g id="Group_17859" data-name="Group 17859" clip-path="url(#clip-path-68)">
|
||||
<path id="Path_19118" data-name="Path 19118" d="M91.614,37.05V67.188a1.569,1.569,0,0,1-.239.779,1.676,1.676,0,0,1-.451.5l-.031.016a.487.487,0,0,1-.049.034l-39.318,22.7a.554.554,0,0,1-.53.064.468.468,0,0,1-.23-.367,1.033,1.033,0,0,1-.009-.138V60.637a.668.668,0,0,1,.864-.68l16.532,6.086,2.166.515A1.433,1.433,0,0,0,71.7,66.04l2.509-3.5L91.011,37l.086-.119c.285-.4.518-.322.518.168" transform="translate(-50.758 -36.628)" fill="#fff"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<path id="Path_19119" data-name="Path 19119" d="M103.916,85.892l-16.958-5.44a2.988,2.988,0,0,0-3.722,1.135l-.674-.392a3.024,3.024,0,0,1,3.721-1.189Z" transform="translate(-34.807 -33.644)" fill="#ee2934"/>
|
||||
<g id="Group_17864" data-name="Group 17864" transform="translate(47.755 46.159)" opacity="0.8">
|
||||
<g id="Group_17863" data-name="Group 17863">
|
||||
<g id="Group_17862" data-name="Group 17862" clip-path="url(#clip-path-69)">
|
||||
<path id="Path_19120" data-name="Path 19120" d="M103.916,85.892l-16.958-5.44a2.988,2.988,0,0,0-3.722,1.135l-.674-.392a3.024,3.024,0,0,1,3.721-1.189Z" transform="translate(-82.562 -79.803)" fill="#fff"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<path id="Path_19121" data-name="Path 19121" d="M107.938,87.412a.49.49,0,0,0,.05-.032l.029-.018a1.656,1.656,0,0,0,.45-.5,1.579,1.579,0,0,0,.238-.765L91.3,81.436l11.654,8.851Z" transform="translate(-38.493 -34.333)" fill="#ee2934"/>
|
||||
<path id="Path_19122" data-name="Path 19122" d="M91.548,86.454a1.658,1.658,0,0,1-.449.5l-.029.017L51.7,109.706l-.006,0a.546.546,0,0,1-.523.059L70,81.864a2.958,2.958,0,0,1,3.7-1.136Z" transform="translate(-21.573 -33.928)" fill="#ee2934"/>
|
||||
<g id="Group_17867" data-name="Group 17867" transform="translate(29.597 46.547)" opacity="0.6">
|
||||
<g id="Group_17866" data-name="Group 17866">
|
||||
<g id="Group_17865" data-name="Group 17865" clip-path="url(#clip-path-70)">
|
||||
<path id="Path_19123" data-name="Path 19123" d="M91.548,86.454a1.658,1.658,0,0,1-.449.5h0L51.733,109.69l-.039.02a.546.546,0,0,1-.523.059L70,81.864a2.958,2.958,0,0,1,3.7-1.136Z" transform="translate(-51.17 -80.475)" fill="#fff"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Group_17870" data-name="Group 17870" transform="translate(26.953 40.133)" opacity="0.25">
|
||||
<g id="Group_17869" data-name="Group 17869">
|
||||
<g id="Group_17868" data-name="Group 17868" clip-path="url(#clip-path-71)">
|
||||
<path id="Path_19124" data-name="Path 19124" d="M46.742,69.385l.625.362a3.065,3.065,0,0,0-.144.839v1.948l-.625-.362V70.221a3.042,3.042,0,0,1,.144-.836" transform="translate(-46.598 -69.385)" fill="#fff"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<path id="Path_19125" data-name="Path 19125" d="M50.482,75.469l-.623.36-.631-.365-1.553-.894.6-.358Z" transform="translate(-20.099 -31.287)" fill="#ee2934"/>
|
||||
<g id="Group_17873" data-name="Group 17873" transform="translate(27.576 42.925)" opacity="0.4">
|
||||
<g id="Group_17872" data-name="Group 17872">
|
||||
<g id="Group_17871" data-name="Group 17871" clip-path="url(#clip-path-72)">
|
||||
<path id="Path_19126" data-name="Path 19126" d="M50.51,75.481l-2.231-1.269-.6.359,1.553.894.631.364.006,0a.6.6,0,0,1,.118-.038.86.86,0,0,1,.337.012l1.256.464,14.437,5.314.22-.337Z" transform="translate(-47.675 -74.212)" fill="#fff"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<path id="Path_19127" data-name="Path 19127" d="M69.82,82.6,50.994,110.5a.531.531,0,0,1-.239-.506v-.5l18.39-27.273s0-.006.006-.009Z" transform="translate(-21.398 -34.659)" fill="#ee2934"/>
|
||||
<g id="Group_17876" data-name="Group 17876" transform="translate(29.357 47.552)" opacity="0.3">
|
||||
<g id="Group_17875" data-name="Group 17875">
|
||||
<g id="Group_17874" data-name="Group 17874" clip-path="url(#clip-path-73)">
|
||||
<path id="Path_19128" data-name="Path 19128" d="M69.82,82.6,50.994,110.5a.531.531,0,0,1-.239-.506v-.5l18.39-27.273s0-.006.006-.009Z" transform="translate(-50.755 -82.211)" fill="#fff"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<path id="Path_19129" data-name="Path 19129" d="M407.01,27.923a14.449,14.449,0,0,1-3.9,9.891l-1.2,1.141A14.463,14.463,0,0,1,381.494,18.6l1.142-1.2A14.462,14.462,0,0,1,407.01,27.923" transform="translate(-159.386 -5.678)" fill="#fff"/>
|
||||
<path id="Path_19130" data-name="Path 19130" d="M391.616,11.348a15.7,15.7,0,0,0-2.566,31.185l1.769,4.546a.912.912,0,0,0,1.7,0l1.756-4.553a15.7,15.7,0,0,0-2.66-31.177m14.5,15.681a14.451,14.451,0,0,1-3.9,9.891l-1.2,1.141A14.463,14.463,0,0,1,380.6,17.705l1.142-1.2a14.462,14.462,0,0,1,24.374,10.524" transform="translate(-158.492 -4.784)" fill="#ee2934"/>
|
||||
<path id="Path_19131" data-name="Path 19131" d="M407.01,27.923a14.451,14.451,0,0,1-3.9,9.891l-1.2,1.141A14.463,14.463,0,0,1,381.494,18.6l1.142-1.2A14.462,14.462,0,0,1,407.01,27.923" transform="translate(-159.386 -5.678)" fill="#fff"/>
|
||||
<path id="Path_19132" data-name="Path 19132" d="M402.985,22.424c-.048-.05-.1-.1-.147-.15l-.025-.025a11.295,11.295,0,0,0-15.684-.232c-.06.056-.118.112-.177.169l-.089.088a11.3,11.3,0,1,0,16.122.15m-6.907,17.851c-.25.03-.5.055-.754.067l-.09,0V35.163a10.353,10.353,0,0,1,1.382.109c.077.011.148.023.218.035a10.214,10.214,0,0,1,2.266.67,12.311,12.311,0,0,1-.67,1.635,5.757,5.757,0,0,1-2.351,2.664m-2.455-20.027c.249-.031.5-.055.753-.067l.076,0v5.157a10.39,10.39,0,0,1-1.349-.159c-.076-.015-.148-.029-.218-.045a10.233,10.233,0,0,1-2.222-.761,12.024,12.024,0,0,1,.608-1.459,5.749,5.749,0,0,1,2.351-2.664m1.611-.069.092,0c.251.012.5.036.752.067a5.754,5.754,0,0,1,2.351,2.664,12.335,12.335,0,0,1,.67,1.634,10.2,10.2,0,0,1-2.267.67c-.068.012-.139.024-.217.035a10.422,10.422,0,0,1-1.381.109Zm-2.477,5.674c.084.019.16.034.229.046a11.129,11.129,0,0,0,1.466.167v3.824h-4.7a18.551,18.551,0,0,1,.691-4.814,10.9,10.9,0,0,0,2.316.776m1.695,4.82v3.784a11.2,11.2,0,0,0-1.465.167l-.23.046a10.9,10.9,0,0,0-2.316.777,18.528,18.528,0,0,1-.69-4.774Zm-1.566,4.718c.071-.015.142-.03.217-.045a10.391,10.391,0,0,1,1.349-.16v5.157l-.078,0c-.25-.012-.5-.036-.751-.067a5.752,5.752,0,0,1-2.351-2.664,12.1,12.1,0,0,1-.608-1.459,10.2,10.2,0,0,1,2.223-.762m4.056-.807-.231-.036a11.2,11.2,0,0,0-1.477-.113V30.673h4.716a18.685,18.685,0,0,1-.637,4.6,10.932,10.932,0,0,0-2.37-.687m-1.708-4.693v-3.8a11.194,11.194,0,0,0,1.477-.114c.09-.013.163-.024.23-.036a10.94,10.94,0,0,0,2.372-.687,18.749,18.749,0,0,1,.639,4.638Zm3.711-7.379a8.306,8.306,0,0,0-1.33-1.95,10.012,10.012,0,0,1,4.134,2.35,10.33,10.33,0,0,1-1.594,1.116c-.071.04-.135.076-.2.109-.095.051-.193.093-.289.141a13.027,13.027,0,0,0-.726-1.766m-6.859-1.95a8.313,8.313,0,0,0-1.33,1.95,12.708,12.708,0,0,0-.656,1.565c-.088-.048-.178-.091-.263-.142-.065-.038-.13-.078-.193-.117a10.406,10.406,0,0,1-1.46-1.117,10.038,10.038,0,0,1,3.9-2.139m-4.435,2.646a11.113,11.113,0,0,0,1.636,1.256c.071.044.138.084.2.122.125.073.255.137.383.2a19.413,19.413,0,0,0-.74,5.1h-4.359a10,10,0,0,1,2.876-6.683m1.484,7.465a19.384,19.384,0,0,0,.739,5.06c-.127.068-.257.131-.382.2-.065.038-.134.079-.2.122a11.123,11.123,0,0,0-1.657,1.256,10.051,10.051,0,0,1-2.855-6.642Zm.507,6.033.193-.117c.086-.051.176-.093.264-.142a12.708,12.708,0,0,0,.656,1.565,8.324,8.324,0,0,0,1.33,1.95,10.042,10.042,0,0,1-3.921-2.141,10.4,10.4,0,0,1,1.478-1.115m9.3,1.305a13.019,13.019,0,0,0,.726-1.766c.1.047.194.09.289.141.061.032.125.068.2.108a10.343,10.343,0,0,1,1.592,1.135,10.034,10.034,0,0,1-4.133,2.331,8.306,8.306,0,0,0,1.33-1.95m3.321-.9a11.059,11.059,0,0,0-1.776-1.268c-.065-.037-.132-.074-.207-.114-.13-.069-.263-.127-.4-.191a19.562,19.562,0,0,0,.677-4.86h4.359a10.057,10.057,0,0,1-2.659,6.434m-1.7-7.216a19.578,19.578,0,0,0-.678-4.9c.132-.064.266-.122.4-.191.074-.039.142-.076.207-.113a11.081,11.081,0,0,0,1.776-1.25,10.035,10.035,0,0,1,2.661,6.455Z" transform="translate(-161.703 -7.995)" fill="#1b2d51"/>
|
||||
<path id="Path_19133" data-name="Path 19133" d="M403.374,38.013a3.806,3.806,0,0,1-2.218,1v1.427h-1.543V39.061a8.106,8.106,0,0,1-1.826-.328,5.258,5.258,0,0,1-1.427-.65l.836-1.877a5.385,5.385,0,0,0,1.4.643,5.329,5.329,0,0,0,1.569.245q1.466,0,1.466-.733a.607.607,0,0,0-.418-.572,7.679,7.679,0,0,0-1.344-.392,12.9,12.9,0,0,1-1.7-.469,2.852,2.852,0,0,1-1.17-.8,2.169,2.169,0,0,1-.488-1.491,2.575,2.575,0,0,1,.8-1.9,3.8,3.8,0,0,1,2.3-.971V28.351h1.543V29.74a7.512,7.512,0,0,1,1.408.257,5.232,5.232,0,0,1,1.2.5l-.784,1.89a5.233,5.233,0,0,0-2.494-.694,2.1,2.1,0,0,0-1.106.224.677.677,0,0,0-.347.585.579.579,0,0,0,.412.54,7.389,7.389,0,0,0,1.324.373,12.425,12.425,0,0,1,1.7.469,2.937,2.937,0,0,1,1.17.8,2.129,2.129,0,0,1,.5,1.485,2.54,2.54,0,0,1-.765,1.845" transform="translate(-167.102 -11.953)" fill="#ee2934"/>
|
||||
<path id="Path_19134" data-name="Path 19134" d="M400.637,27.936v1.389a7.513,7.513,0,0,1,1.408.257,5.222,5.222,0,0,1,1.2.5l-.784,1.89a5.235,5.235,0,0,0-2.494-.695,2.1,2.1,0,0,0-1.106.225.677.677,0,0,0-.347.585.58.58,0,0,0,.412.54,7.439,7.439,0,0,0,1.324.373,12.421,12.421,0,0,1,1.7.469,2.943,2.943,0,0,1,1.17.8,2.131,2.131,0,0,1,.5,1.485,2.542,2.542,0,0,1-.765,1.845,3.8,3.8,0,0,1-2.218,1v1.428h-1.543V38.645a8.042,8.042,0,0,1-1.826-.328,5.241,5.241,0,0,1-1.427-.649l.836-1.877a5.4,5.4,0,0,0,1.4.643,5.326,5.326,0,0,0,1.569.245q1.465,0,1.465-.733a.607.607,0,0,0-.418-.573,7.741,7.741,0,0,0-1.344-.392,12.8,12.8,0,0,1-1.7-.47,2.848,2.848,0,0,1-1.17-.8A2.169,2.169,0,0,1,396,32.218a2.577,2.577,0,0,1,.8-1.9,3.809,3.809,0,0,1,2.3-.971V27.936Zm.569-.569h-2.681v1.5a4.091,4.091,0,0,0-2.133,1.053,3.135,3.135,0,0,0-.965,2.3,2.729,2.729,0,0,0,.631,1.868,3.432,3.432,0,0,0,1.4.961,13.507,13.507,0,0,0,1.773.492,6.977,6.977,0,0,1,1.232.355.253.253,0,0,1,.085.053s-.155.163-.9.163a4.783,4.783,0,0,1-1.4-.219,4.842,4.842,0,0,1-1.255-.574l-.56-.37-.273.614-.836,1.877-.193.434.393.268a5.834,5.834,0,0,0,1.581.724,8.419,8.419,0,0,0,1.423.3v1.428h2.681V39.066A4.1,4.1,0,0,0,403.26,38a3.1,3.1,0,0,0,.928-2.244,2.687,2.687,0,0,0-.643-1.867,3.521,3.521,0,0,0-1.393-.949,13.1,13.1,0,0,0-1.783-.492,6.743,6.743,0,0,1-1.214-.337.44.44,0,0,1-.069-.037c0-.021.021-.047.086-.089a1.546,1.546,0,0,1,.8-.134,4.7,4.7,0,0,1,2.223.626l.555.3.242-.582.784-1.89.19-.459-.429-.25a5.777,5.777,0,0,0-1.333-.558,7.882,7.882,0,0,0-.995-.215V27.367Z" transform="translate(-166.583 -11.538)" fill="#fff"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 134 KiB |
3
news-app/assets/images/svgImage/phone_button.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="67.307" height="104.7" viewBox="0 0 67.307 104.7">
|
||||
<path id="phone_button" d="M65.567,2.25H17.49a9.6,9.6,0,0,0-9.615,9.518V97.432a9.6,9.6,0,0,0,9.615,9.518H65.567a9.6,9.6,0,0,0,9.616-9.518V11.768A9.6,9.6,0,0,0,65.567,2.25Zm1.2,86H16.288V20.946h50.48Z" transform="translate(-7.875 -2.25)" fill="#08b9b7"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 361 B |
15
news-app/assets/images/svgImage/placeholder_video.svg
Normal file
@@ -0,0 +1,15 @@
|
||||
<svg width="356" height="200" viewBox="0 0 356 200" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_2287_2909)">
|
||||
<path d="M114.312 57.5853L114.377 78.4633L113.857 81.6503C113.792 81.8503 113.727 82.0403 113.467 82.1053C112.816 82.3427 112.115 82.4076 111.431 82.2937C110.748 82.1798 110.106 81.891 109.567 81.4553C109.386 81.3109 109.269 81.1006 109.242 80.8703C108.917 73.0703 109.177 65.3253 109.112 57.5853C109.047 54.5933 110.478 53.1623 113.535 54.1383C113.634 54.1634 113.721 54.223 113.781 54.3063C113.84 54.3896 113.868 54.4912 113.86 54.5933L114.312 57.5853Z" fill="#D1DBEA"/>
|
||||
<path d="M114.311 57.582C134.734 57.6487 155.2 57.6704 175.711 57.647C183.386 57.647 188.849 59.468 189.695 68.054C174.085 68.054 158.497 68.1207 142.931 68.254C133.11 68.319 129.077 69.554 124.331 78.465H114.441L114.311 57.582Z" fill="#C4CEDE"/>
|
||||
<path d="M189.699 68.0543C196.333 67.9876 202.966 68.0543 209.599 68.2543C225.274 68.7093 228.006 77.9453 227.42 91.6693C227.42 91.9943 227.485 92.8403 227.62 94.0763C227.36 102.791 227.295 111.442 227.62 120.157C227.42 124.97 227.82 130.889 226.514 135.051C224.303 142.401 218.904 146.108 210.314 146.108C177.793 146.175 155.16 146.197 142.414 146.173C131.162 146.108 123.614 141.36 123.487 129.002C123.357 114.368 123.357 99.7343 123.617 85.0343C123.659 82.8505 123.898 80.675 124.332 78.5343C129.08 69.5583 133.112 68.3233 142.932 68.2583C158.475 68.1223 174.064 68.0543 189.699 68.0543ZM166.999 92.1843C166.396 91.8447 165.714 91.6687 165.022 91.6738C164.33 91.6788 163.651 91.8647 163.053 92.2131C162.454 92.5615 161.958 93.0602 161.612 93.6598C161.266 94.2594 161.082 94.939 161.08 95.6313V118.59C161.077 119.112 161.177 119.63 161.375 120.112C161.573 120.595 161.865 121.034 162.235 121.403C162.604 121.772 163.042 122.064 163.525 122.262C164.008 122.46 164.525 122.561 165.047 122.557C165.73 122.546 166.4 122.368 166.998 122.037L187.291 110.59C188.195 110.062 188.857 109.203 189.137 108.195C189.417 107.186 189.293 106.109 188.791 105.19C188.468 104.54 187.941 104.013 187.291 103.69L166.999 92.1843Z" fill="#D1DBEA"/>
|
||||
<path d="M234.057 120.217C233.857 111.439 233.857 102.658 234.057 93.8749C235.748 92.3139 238.74 88.5419 240.691 87.8259C241.732 87.4359 243.683 87.4359 246.545 87.8909C246.745 87.9559 246.87 88.0209 246.87 88.2809L246.935 126.265C246.938 126.308 246.931 126.352 246.916 126.392C246.9 126.433 246.876 126.47 246.846 126.501C246.815 126.531 246.778 126.555 246.737 126.57C246.697 126.586 246.653 126.592 246.61 126.59L240.561 126.525C240.44 126.531 240.32 126.511 240.207 126.466C240.095 126.421 239.994 126.353 239.911 126.265L234.057 120.217Z" fill="#D1DBEA"/>
|
||||
<path d="M166.995 92.1827L187.288 103.63C188.192 104.158 188.854 105.017 189.134 106.025C189.414 107.034 189.29 108.111 188.788 109.03C188.465 109.68 187.938 110.207 187.288 110.53L166.995 121.972C166.392 122.311 165.71 122.487 165.018 122.482C164.326 122.477 163.647 122.291 163.049 121.943C162.45 121.595 161.954 121.096 161.608 120.496C161.262 119.897 161.078 119.217 161.076 118.525V95.5647C161.073 95.043 161.173 94.5258 161.371 94.0432C161.569 93.5605 161.861 93.122 162.23 92.7529C162.599 92.3839 163.037 92.0918 163.52 91.8935C164.002 91.6952 164.519 91.5947 165.041 91.5977C165.73 91.6313 166.401 91.832 166.995 92.1827Z" fill="white"/>
|
||||
<path d="M234.052 93.9395C233.857 102.72 233.857 111.501 234.052 120.281L227.552 120.151C227.292 111.436 227.292 102.785 227.552 94.0704L234.052 93.9395Z" fill="#C4CEDE"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_2287_2909">
|
||||
<rect width="356" height="200" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 3.5 KiB |
13
news-app/assets/images/svgImage/rss_feed.svg
Normal file
@@ -0,0 +1,13 @@
|
||||
<svg width="30" height="30" viewBox="0 0 30 30" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_156_12477)">
|
||||
<path d="M26 0H4C1.79086 0 0 1.79086 0 4V26C0 28.2091 1.79086 30 4 30H26C28.2091 30 30 28.2091 30 26V4C30 1.79086 28.2091 0 26 0Z" fill="#EDA918"/>
|
||||
<path d="M10.8504 21.5766C10.8504 22.9157 9.76432 24.0018 8.42519 24.0018C7.08607 24.0018 6 22.9157 6 21.5766C6 20.2375 7.08607 19.1514 8.42519 19.1514C9.76081 19.1479 10.8469 20.2304 10.8504 21.566V21.5766Z" fill="white"/>
|
||||
<path d="M16.1366 23.8572C15.3634 23.8607 14.7026 23.3018 14.5726 22.5426C14.2738 20.7641 13.4232 19.1227 12.1474 17.8504C10.8821 16.571 9.24769 15.724 7.47273 15.4182C6.71354 15.2846 6.1582 14.6274 6.1582 13.8541C6.1582 12.8735 7.0369 12.1213 8.00346 12.2865C12.9558 13.1336 16.8712 17.0561 17.7148 22.0119C17.88 22.9785 17.1278 23.8572 16.1472 23.8572H16.1366Z" fill="white"/>
|
||||
<path d="M20.8246 22.4341C20.083 15.4643 14.5437 9.91096 7.59147 9.16934C6.78307 9.08499 6.16798 8.40312 6.16798 7.59121C6.16447 6.71252 6.87445 6.00253 7.74963 5.99902C7.80587 5.99902 7.85859 6.00253 7.91482 6.00605C16.3643 6.8988 23.0987 13.6437 23.9914 22.1073C24.0793 22.9789 23.4466 23.7592 22.575 23.8471C22.5187 23.8541 22.466 23.8541 22.4098 23.8541H22.4027C21.5873 23.8576 20.9089 23.2425 20.8246 22.4341Z" fill="white"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_156_12477">
|
||||
<rect width="30" height="30" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.4 KiB |
6
news-app/assets/images/svgImage/searchbar_arrow.svg
Normal file
@@ -0,0 +1,6 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 18 18">
|
||||
<g id="searchbar_arrow" transform="translate(-2978 24102)">
|
||||
<rect id="searchbar_arrow-2" data-name="searchbar_arrow" width="18" height="18" transform="translate(2978 -24102)" fill="none"/>
|
||||
<path id="Path_14598" data-name="Path 14598" d="M23.429,8.571H7.714V24.286a1.35,1.35,0,0,0,1.429,1.429h0a1.35,1.35,0,0,0,1.429-1.429V13.429L23.286,26.143a1.381,1.381,0,0,0,2,0h0a1.381,1.381,0,0,0,0-2L12.571,11.429H23.429A1.35,1.35,0,0,0,24.857,10h0A1.35,1.35,0,0,0,23.429,8.571Z" transform="translate(2970.286 -24110.572)" fill="#1b2d51"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 637 B |
10
news-app/assets/images/svgImage/splash_icon.svg
Normal file
|
After Width: | Height: | Size: 8.4 KiB |
2
news-app/assets/images/svgImage/telegram.svg
Normal file
@@ -0,0 +1,2 @@
|
||||
<?xml version="1.0" encoding="utf-8"?><!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools -->
|
||||
<svg fill="#000000" width="800px" height="800px" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m12 0c-6.627 0-12 5.373-12 12s5.373 12 12 12 12-5.373 12-12c0-6.627-5.373-12-12-12zm5.894 8.221-1.97 9.28c-.145.658-.537.818-1.084.508l-3-2.21-1.446 1.394c-.14.18-.357.295-.6.295-.002 0-.003 0-.005 0l.213-3.054 5.56-5.022c.24-.213-.054-.334-.373-.121l-6.869 4.326-2.96-.924c-.64-.203-.658-.64.135-.954l11.566-4.458c.538-.196 1.006.128.832.941z"/></svg>
|
||||
|
After Width: | Height: | Size: 584 B |
5
news-app/assets/images/svgImage/whatsapp.svg
Normal file
@@ -0,0 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?><!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools -->
|
||||
<svg width="800px" height="800px" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M6.014 8.00613C6.12827 7.1024 7.30277 5.87414 8.23488 6.01043L8.23339 6.00894C9.14051 6.18132 9.85859 7.74261 10.2635 8.44465C10.5504 8.95402 10.3641 9.4701 10.0965 9.68787C9.7355 9.97883 9.17099 10.3803 9.28943 10.7834C9.5 11.5 12 14 13.2296 14.7107C13.695 14.9797 14.0325 14.2702 14.3207 13.9067C14.5301 13.6271 15.0466 13.46 15.5548 13.736C16.3138 14.178 17.0288 14.6917 17.69 15.27C18.0202 15.546 18.0977 15.9539 17.8689 16.385C17.4659 17.1443 16.3003 18.1456 15.4542 17.9421C13.9764 17.5868 8 15.27 6.08033 8.55801C5.97237 8.24048 5.99955 8.12044 6.014 8.00613Z" fill="#0F0F0F"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M12 23C10.7764 23 10.0994 22.8687 9 22.5L6.89443 23.5528C5.56462 24.2177 4 23.2507 4 21.7639V19.5C1.84655 17.492 1 15.1767 1 12C1 5.92487 5.92487 1 12 1C18.0751 1 23 5.92487 23 12C23 18.0751 18.0751 23 12 23ZM6 18.6303L5.36395 18.0372C3.69087 16.4772 3 14.7331 3 12C3 7.02944 7.02944 3 12 3C16.9706 3 21 7.02944 21 12C21 16.9706 16.9706 21 12 21C11.0143 21 10.552 20.911 9.63595 20.6038L8.84847 20.3397L6 21.7639V18.6303Z" fill="#0F0F0F"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.3 KiB |
10
news-app/assets/images/svgImage/wrteam_logo.svg
Normal file
|
After Width: | Height: | Size: 13 KiB |
244
news-app/assets/languages/jsonData.json
Normal file
@@ -0,0 +1,244 @@
|
||||
{
|
||||
"somethingMSg": "Something went wrong. Please try again after some time",
|
||||
"bookmarkLbl": "Bookmarks",
|
||||
"loginLbl": "Login",
|
||||
"welTitle1": "Always Up-to-Date",
|
||||
"welTitle2": "Bookmark & Share",
|
||||
"welTitle3": "New Categories",
|
||||
"welDes1": "Receive notifications for the most recent news updates and many more.",
|
||||
"welDes2": "Save and easily share news with your friends using our intuitive news app feature.",
|
||||
"welDes3": "Enjoy expertly tailored news, crafted exclusively for your interests.",
|
||||
"nameLbl": "Name",
|
||||
"emailLbl": "Email",
|
||||
"passLbl": "Password",
|
||||
"confpassLbl": "Confirm Password",
|
||||
"priPolicy": "Privacy Policy",
|
||||
"andLbl": " and ",
|
||||
"termLbl": "Terms of Service",
|
||||
"forgotPassLbl": "Forgot Password ?",
|
||||
"internetmsg": "Internet Connection not available",
|
||||
"loginMsg": "Login Successfully",
|
||||
"loginNowLbl": "Login Now",
|
||||
"logoutLbl": "Logout",
|
||||
"cancelBtn": "Cancel",
|
||||
"noNews": "News Not Available",
|
||||
"exitWR": "Double tap back button to exit",
|
||||
"shareLbl": "Share",
|
||||
"deactiveMsg": "You are deactivated by admin",
|
||||
"bookmarkNotAvail": "Bookmarks Not Available",
|
||||
"notiNotAvail": "Notifications Not Available",
|
||||
"notificationLbl": "Notifications",
|
||||
"logoutTxt": "Are you sure you want to Logout?",
|
||||
"yesLbl": "Yes",
|
||||
"noLbl": "No",
|
||||
"frgtPassHead": "Enter the email address associated with your account",
|
||||
"forgotPassSub": "We will email you a link to reset your password",
|
||||
"submitBtn": "Submit",
|
||||
"verifyEmailMsg": "Please first verify your email address!!!",
|
||||
"passReset": "Password reset link has been sent to your mail",
|
||||
"profileUpdateMsg": "Profile Data Updated Successfully",
|
||||
"bookmarkLogin": "Please Login to Access Your Bookmarks !!",
|
||||
"preferenceSave": "Your preference saved!!",
|
||||
"managePreferences": "Manage Preferences",
|
||||
"loginReqMsg": "Login Required...",
|
||||
"firstFillData": "Please First Fill Data...!",
|
||||
"deleteTxt": "Delete",
|
||||
"reportTxt": "Report",
|
||||
"nameRequired": "Name is Required",
|
||||
"nameLength": "Name should be atleast 2 character long",
|
||||
"emailRequired": "email address is Required",
|
||||
"emailValid": "Please enter a valid email Address!",
|
||||
"pwdRequired": "Password is Required",
|
||||
"confPassRequired": "Confirm Password is Required",
|
||||
"confPassNotMatch": "Confirm Password not match",
|
||||
"photoLibLbl": "Photo Library",
|
||||
"cameraLbl": "Camera",
|
||||
"verifSentMail": "Verification email sent to ",
|
||||
"cancelLogin": "Login cancelled by the user.",
|
||||
"loginTxt": "Log In",
|
||||
"loginBtn": "Login",
|
||||
"signupBtn": "Sign Up",
|
||||
"otpVerifyLbl": "OTP Verification",
|
||||
"enterMblLbl": "Enter Your Mobile Number",
|
||||
"receiveDigitLbl": "You'll Receive 6 digit code for phone number verification",
|
||||
"reqOtpLbl": "Request OTP",
|
||||
"otpSentLbl": "OTP has been sent to ",
|
||||
"resendCodeLbl": "Resend Code in",
|
||||
"mobileLbl": "Mobile",
|
||||
"darkModeLbl": "Dark Mode",
|
||||
"changeLang": "Change Language",
|
||||
"rateUs": "Rate Us",
|
||||
"shareApp": "Share App",
|
||||
"weatherLbl": "Weather Forecast",
|
||||
"categoryLbl": "Categories",
|
||||
"allLbl": "All",
|
||||
"comLbl": "Comment ",
|
||||
"saveLbl": "Save",
|
||||
"txtSizeLbl": "Text Size",
|
||||
"speakLoudLbl": "Speak Loud",
|
||||
"likeLbl": "likes",
|
||||
"comsLbl": "Comments",
|
||||
"shareThoghtLbl": "Share Your Thoughts.",
|
||||
"repliesLbl": "Replies",
|
||||
"publicReply": "Add a public reply...",
|
||||
"personalLbl": "Personal",
|
||||
"newsLbl": "News",
|
||||
"plzLbl": "Please",
|
||||
"fastTrendNewsLbl": "Porque Mereces Verdaderas Respuestas! ",
|
||||
"enterOtpTxt": "Please Enter OTP",
|
||||
"otpError": "Error validating OTP, try again",
|
||||
"otpMsg": "OTP verified successfully",
|
||||
"resendLbl": "Resend OTP",
|
||||
"otpTimeoutLbl": "Otp Retrieval Timeout!!!",
|
||||
"mblRequired": "Mobile number is Required",
|
||||
"mblValid": "Please enter a valid mobile number!",
|
||||
"codeSent": "Code Sent Successfully!!!",
|
||||
"relatedNews": "You might also like",
|
||||
"optSel": "Please Select One Option!!!",
|
||||
"madeBy": "Made by",
|
||||
"skip": "Skip",
|
||||
"nxt": "Next",
|
||||
"signInTab": "Sign In",
|
||||
"agreeTermPolicyLbl": "By Logging In, you agree to our",
|
||||
"addTCFirst": "Please Ask Admin to Add Privacy Policy & Terms and Conditions first !!",
|
||||
"orLbl": "or Log In with",
|
||||
"signupDescr": "Create\nan Account",
|
||||
"firstAccLbl": "First to access",
|
||||
"allFunLbl": "all Functions",
|
||||
"chooseLanLbl": "Select Language",
|
||||
"videosLbl": "Videos",
|
||||
"search": "Search",
|
||||
"searchHomeNews": "Search News, Categories, etc.",
|
||||
"viewMore": "View More",
|
||||
"viewFullCoverage": "View full Coverage",
|
||||
"updateName": "Update your Name",
|
||||
"loginDescr": "Let's Sign \nYou In",
|
||||
"logoutAcc": "Logout Account",
|
||||
"deleteAcc": "Delete Account",
|
||||
"deleteAlertTitle": "Re-Login",
|
||||
"deleteRelogin": "To Delete your Account, You need to Login again.\nAfter that you will be able to Delete your Account.",
|
||||
"deleteConfirm": "Are you sure?\nDo You Really Want to Delete Your Account?",
|
||||
"pwdLength": "Password should be more than 6 character long",
|
||||
"userNotFound": "No user found for given email.",
|
||||
"wrongPassword": "Wrong password provided for that user.",
|
||||
"weakPassword": "The password provided is too weak.",
|
||||
"emailAlreadyInUse": "The account already exists for that email.",
|
||||
"invalidPhoneNumber": "The provided phone number is not valid.",
|
||||
"invalidVerificationCode": "The sms verification code used to create the phone auth credential is invalid.",
|
||||
"ago": "ago",
|
||||
"years": "years",
|
||||
"months": "months",
|
||||
"minutes": "minutes",
|
||||
"seconds": "seconds",
|
||||
"hours": "hours",
|
||||
"days": "days",
|
||||
"justNow": "just now",
|
||||
"about": "about",
|
||||
"liveVideosLbl": "Live Videos",
|
||||
"stdPostLbl": "Standard Post",
|
||||
"videoYoutubeLbl": "Video (Youtube)",
|
||||
"videoOtherUrlLbl": "Video (Other Url)",
|
||||
"videoUploadLbl": "Video (Upload)",
|
||||
"createNewsLbl": "Create News",
|
||||
"step1Of2Lbl": "Step 1 of 2",
|
||||
"catLbl": "Category",
|
||||
"plzSelCatLbl": "Please select category",
|
||||
"subcatLbl": "SubCategory",
|
||||
"contentTypeLbl": "Content Type",
|
||||
"uploadVideoLbl": "Upload Video",
|
||||
"youtubeUrlLbl": "Youtube Url",
|
||||
"otherUrlLbl": "Other Url",
|
||||
"selContentTypeLbl": "Select Content Type",
|
||||
"titleLbl": "Title",
|
||||
"tagLbl": "Tag",
|
||||
"showTilledDate": "Show Till Date",
|
||||
"uploadMainImageLbl": "Upload Main Image",
|
||||
"uploadOtherImageLbl": "Upload Other Image",
|
||||
"plzUploadVideoLbl": "Please upload video!!!",
|
||||
"plzAddMainImageLbl": "Please add main image!!!",
|
||||
"selTagLbl": "Select Tag",
|
||||
"selSubCatLbl": "Select Sub Category",
|
||||
"selCatLbl": "Select Category",
|
||||
"editNewsLbl": "Edit News",
|
||||
"doYouReallyNewsLbl": "Do You Really Want to Delete this News?",
|
||||
"delNewsLbl": "Delete News",
|
||||
"newsTitleReqLbl": "News title is required!!!",
|
||||
"plzAddValidTitleLbl": "Please add valid news title!!!",
|
||||
"urlReqLbl": "Url is required!!!",
|
||||
"plzValidUrlLbl": "Please add valid url!!!",
|
||||
"manageNewsLbl": "Manage News",
|
||||
"step2of2Lbl": "Step 2 of 2",
|
||||
"descLbl": "Description",
|
||||
"RetryLbl": "Retry",
|
||||
"previewLbl": "Preview",
|
||||
"sponsoredLbl": "Sponsored",
|
||||
"searchForLbl": "Search Result for",
|
||||
"readLessLbl": "Read less",
|
||||
"readMoreLbl": "Read more",
|
||||
"myProfile": "My Profile",
|
||||
"editProfile": "Edit Profile",
|
||||
"noComments": "Be the First One to Comment !!!",
|
||||
"minute": "minute",
|
||||
"read": "read",
|
||||
"selLocationLbl": "Select Location",
|
||||
"metaKeywordLbl": "Meta Keyword",
|
||||
"metaTitleLbl": "Meta Title",
|
||||
"metaDescriptionLbl": "Meta Description",
|
||||
"slugLbl": "Slug",
|
||||
"metaTitleWarningLbl": "Meta Title length should not exceed 60 characters.",
|
||||
"metaDescriptionWarningLbl": "Meta Description length should between 50 to 160 characters.",
|
||||
"metaKeywordWarningLbl": "Meta Keywords are not more than 10 keyword phrases & should be comma separated.",
|
||||
"slugWarningLbl": "Slug only accept lowercase letters, numbers, and hyphens. No spaces or special characters allowed.",
|
||||
"metaTitleRequired": "Meta title is Required",
|
||||
"metaDescriptionRequired": "Meta Description is Required",
|
||||
"metaKeywordRequired": "Meta Keyword is Required",
|
||||
"slugRequired": "Slug is Required",
|
||||
"slugValid": "Please enter valid Slug!",
|
||||
"slugUsedAlready": "This slug is already in use. Please add any other slug.",
|
||||
"maintenanceMessageLbl": "We're Under Maintenance\nPlease try again later.",
|
||||
"notificationLogin": "Please Login to view Your Notifications !!",
|
||||
"publishDate": "Publish Date",
|
||||
"dateConfirmation": "Please change Show till date , as it can't be set before Publish date",
|
||||
"expired": "Expired",
|
||||
"deactivated": "Deactivated",
|
||||
"clearFilter": "Clear filter",
|
||||
"FilterBy": "Filter by",
|
||||
"rssFeed": "RSS Feed",
|
||||
"profile": "Profile",
|
||||
"homeLbl": "Home",
|
||||
"replyLbl": "Reply",
|
||||
"disabledCommentsMsg": "Comments are disabled for this News by admin",
|
||||
"last": "Last",
|
||||
"today": "Today",
|
||||
"clear": "Clear",
|
||||
"apply": "Apply",
|
||||
"date": "Date",
|
||||
"continueWith": "Continue with",
|
||||
"google": "Google",
|
||||
"apple": "Apple",
|
||||
"fb": "Facebook",
|
||||
"didntGetCode": "Didn't get Code?",
|
||||
"viewsLbl": "Views",
|
||||
"recentVidLbl": "Recent News Videos",
|
||||
"forceUpdateTitleLbl": "Update Required",
|
||||
"newVersionAvailableTitleLbl": "New Version Available !!!",
|
||||
"newVersionAvailableDescLbl": "Would you like to update now ?",
|
||||
"forceUpdateDescLbl": "A new version of this app is available with important improvements and features. To continue using the app, please update to the latest version.",
|
||||
"exitLbl": "Exit",
|
||||
"newsCreatedSuccessfully": "Your news has been created successfully! It will be visible to others after admin approval.",
|
||||
"summarizedDescription": "Summarized Description",
|
||||
"clickSummarizeDescription": "Click 'Summarize Description' to generate a summary of your content",
|
||||
"enterDescriptionFirst": "Add description First to generate Summarized Description",
|
||||
"authorReviewPendingLbl": "Pending Review",
|
||||
"becomeAuthorLbl": "Become an Author",
|
||||
"authorLbl": "Author",
|
||||
"saveAsDraftLbl": "Save As Draft",
|
||||
"manageNewsAllLbl": "All News",
|
||||
"manageNewsDraftLbl": "Draft News",
|
||||
"publishBtnLbl": "Publish",
|
||||
"addYourBioHintLbl": "Add your bio",
|
||||
"addLinkHereHintLbl": "Add {type} Link here",
|
||||
"noteForAuthorLbl": "You can add social media links & Bio only if you are the author.",
|
||||
"socialMediaLinksLbl": "Social media links",
|
||||
"followLbl": "Follow :"
|
||||
}
|
||||
3
news-app/devtools_options.yaml
Normal file
@@ -0,0 +1,3 @@
|
||||
description: This file stores settings for Dart & Flutter DevTools.
|
||||
documentation: https://docs.flutter.dev/tools/devtools/extensions#configure-extension-enablement-states
|
||||
extensions:
|
||||
26
news-app/ios/Flutter/AppFrameworkInfo.plist
Normal file
@@ -0,0 +1,26 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>CFBundleDevelopmentRegion</key>
|
||||
<string>en</string>
|
||||
<key>CFBundleExecutable</key>
|
||||
<string>App</string>
|
||||
<key>CFBundleIdentifier</key>
|
||||
<string>io.flutter.flutter.app</string>
|
||||
<key>CFBundleInfoDictionaryVersion</key>
|
||||
<string>6.0</string>
|
||||
<key>CFBundleName</key>
|
||||
<string>App</string>
|
||||
<key>CFBundlePackageType</key>
|
||||
<string>FMWK</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>1.0</string>
|
||||
<key>CFBundleSignature</key>
|
||||
<string>????</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>1.0</string>
|
||||
<key>MinimumOSVersion</key>
|
||||
<string>15.0</string>
|
||||
</dict>
|
||||
</plist>
|
||||
2
news-app/ios/Flutter/Debug.xcconfig
Normal file
@@ -0,0 +1,2 @@
|
||||
#include? "Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig"
|
||||
#include "Generated.xcconfig"
|
||||
3
news-app/ios/Flutter/Release.xcconfig
Normal file
@@ -0,0 +1,3 @@
|
||||
#include? "Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig"
|
||||
//#include "Target Support Files/Pods-Runner/Pods-Runner.profile.xcconfig"
|
||||
#include "Generated.xcconfig"
|
||||
46
news-app/ios/Podfile
Normal file
@@ -0,0 +1,46 @@
|
||||
# Uncomment this line to define a global platform for your project
|
||||
platform :ios, '15.0'
|
||||
|
||||
# CocoaPods analytics sends network stats synchronously affecting flutter build latency.
|
||||
ENV['COCOAPODS_DISABLE_STATS'] = 'true'
|
||||
|
||||
project 'Runner', {
|
||||
'Debug' => :debug,
|
||||
'Profile' => :release,
|
||||
'Release' => :release,
|
||||
}
|
||||
|
||||
def flutter_root
|
||||
generated_xcode_build_settings_path = File.expand_path(File.join('..', 'Flutter', 'Generated.xcconfig'), __FILE__)
|
||||
unless File.exist?(generated_xcode_build_settings_path)
|
||||
raise "#{generated_xcode_build_settings_path} must exist. If you're running pod install manually, make sure flutter pub get is executed first"
|
||||
end
|
||||
|
||||
File.foreach(generated_xcode_build_settings_path) do |line|
|
||||
matches = line.match(/FLUTTER_ROOT\=(.*)/)
|
||||
return matches[1].strip if matches
|
||||
end
|
||||
raise "FLUTTER_ROOT not found in #{generated_xcode_build_settings_path}. Try deleting Generated.xcconfig, then run flutter pub get"
|
||||
end
|
||||
|
||||
require File.expand_path(File.join('packages', 'flutter_tools', 'bin', 'podhelper'), flutter_root)
|
||||
|
||||
flutter_ios_podfile_setup
|
||||
|
||||
target 'Runner' do
|
||||
use_frameworks!
|
||||
use_modular_headers!
|
||||
|
||||
|
||||
flutter_install_all_ios_pods File.dirname(File.realpath(__FILE__))
|
||||
end
|
||||
|
||||
post_install do |installer|
|
||||
installer.pods_project.targets.each do |target|
|
||||
flutter_additional_ios_build_settings(target)
|
||||
target.build_configurations.each do |config|
|
||||
config.build_settings['ENABLE_BITCODE'] = 'NO'
|
||||
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '15.0'
|
||||
end
|
||||
end
|
||||
end
|
||||
624
news-app/ios/Runner.xcodeproj/project.pbxproj
Normal file
@@ -0,0 +1,624 @@
|
||||
// !$*UTF8*$!
|
||||
{
|
||||
archiveVersion = 1;
|
||||
classes = {
|
||||
};
|
||||
objectVersion = 54;
|
||||
objects = {
|
||||
|
||||
/* Begin PBXBuildFile section */
|
||||
1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */ = {isa = PBXBuildFile; fileRef = 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */; };
|
||||
3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */ = {isa = PBXBuildFile; fileRef = 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */; };
|
||||
6D5AA4DC1D9BE0D29BBC3D47 /* Pods_Runner.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8406A87EDAB3F42C9E9C8625 /* Pods_Runner.framework */; };
|
||||
74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 74858FAE1ED2DC5600515810 /* AppDelegate.swift */; };
|
||||
97C146FC1CF9000F007C117D /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FA1CF9000F007C117D /* Main.storyboard */; };
|
||||
97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FD1CF9000F007C117D /* Assets.xcassets */; };
|
||||
97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */; };
|
||||
C64F89812BEA00CF00945F40 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = C64F89802BEA00CF00945F40 /* PrivacyInfo.xcprivacy */; };
|
||||
C6B156C729ED4959004F7E4D /* GoogleService-Info.plist in Resources */ = {isa = PBXBuildFile; fileRef = C6B156C629ED4959004F7E4D /* GoogleService-Info.plist */; };
|
||||
/* End PBXBuildFile section */
|
||||
|
||||
/* Begin PBXCopyFilesBuildPhase section */
|
||||
9705A1C41CF9048500538489 /* Embed Frameworks */ = {
|
||||
isa = PBXCopyFilesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
dstPath = "";
|
||||
dstSubfolderSpec = 10;
|
||||
files = (
|
||||
);
|
||||
name = "Embed Frameworks";
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXCopyFilesBuildPhase section */
|
||||
|
||||
/* Begin PBXFileReference section */
|
||||
1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GeneratedPluginRegistrant.h; sourceTree = "<group>"; };
|
||||
1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GeneratedPluginRegistrant.m; sourceTree = "<group>"; };
|
||||
3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = AppFrameworkInfo.plist; path = Flutter/AppFrameworkInfo.plist; sourceTree = "<group>"; };
|
||||
3EB85B3888093677A730AD02 /* Pods-Runner.profile.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.profile.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.profile.xcconfig"; sourceTree = "<group>"; };
|
||||
62A0D45B537B579D78E7A373 /* Pods-Runner.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.debug.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig"; sourceTree = "<group>"; };
|
||||
74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Runner-Bridging-Header.h"; sourceTree = "<group>"; };
|
||||
74858FAE1ED2DC5600515810 /* AppDelegate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = "<group>"; };
|
||||
7AFA3C8E1D35360C0083082E /* Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = Release.xcconfig; path = Flutter/Release.xcconfig; sourceTree = "<group>"; };
|
||||
8406A87EDAB3F42C9E9C8625 /* Pods_Runner.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Runner.framework; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||
88E5CF1A7479A9215E46F87B /* Pods-Runner.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.release.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig"; sourceTree = "<group>"; };
|
||||
9740EEB21CF90195004384FC /* Debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Debug.xcconfig; path = Flutter/Debug.xcconfig; sourceTree = "<group>"; };
|
||||
9740EEB31CF90195004384FC /* Generated.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Generated.xcconfig; path = Flutter/Generated.xcconfig; sourceTree = "<group>"; };
|
||||
97C146EE1CF9000F007C117D /* Runner.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Runner.app; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||
97C146FB1CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = "<group>"; };
|
||||
97C146FD1CF9000F007C117D /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
|
||||
97C147001CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
|
||||
97C147021CF9000F007C117D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
|
||||
C64F89802BEA00CF00945F40 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = PrivacyInfo.xcprivacy; sourceTree = "<group>"; };
|
||||
C6B156C629ED4959004F7E4D /* GoogleService-Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = "GoogleService-Info.plist"; sourceTree = "<group>"; };
|
||||
C739818628E4631E00744836 /* Runner.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = Runner.entitlements; sourceTree = "<group>"; };
|
||||
/* End PBXFileReference section */
|
||||
|
||||
/* Begin PBXFrameworksBuildPhase section */
|
||||
97C146EB1CF9000F007C117D /* Frameworks */ = {
|
||||
isa = PBXFrameworksBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
6D5AA4DC1D9BE0D29BBC3D47 /* Pods_Runner.framework in Frameworks */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXFrameworksBuildPhase section */
|
||||
|
||||
/* Begin PBXGroup section */
|
||||
541E6B33177097DE8D31256D /* Pods */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
62A0D45B537B579D78E7A373 /* Pods-Runner.debug.xcconfig */,
|
||||
88E5CF1A7479A9215E46F87B /* Pods-Runner.release.xcconfig */,
|
||||
3EB85B3888093677A730AD02 /* Pods-Runner.profile.xcconfig */,
|
||||
);
|
||||
path = Pods;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
9740EEB11CF90186004384FC /* Flutter */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */,
|
||||
9740EEB21CF90195004384FC /* Debug.xcconfig */,
|
||||
7AFA3C8E1D35360C0083082E /* Release.xcconfig */,
|
||||
9740EEB31CF90195004384FC /* Generated.xcconfig */,
|
||||
);
|
||||
name = Flutter;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
97C146E51CF9000F007C117D = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
9740EEB11CF90186004384FC /* Flutter */,
|
||||
97C146F01CF9000F007C117D /* Runner */,
|
||||
97C146EF1CF9000F007C117D /* Products */,
|
||||
541E6B33177097DE8D31256D /* Pods */,
|
||||
CC2378898FAFB2F8CCB774D0 /* Frameworks */,
|
||||
);
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
97C146EF1CF9000F007C117D /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
97C146EE1CF9000F007C117D /* Runner.app */,
|
||||
);
|
||||
name = Products;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
97C146F01CF9000F007C117D /* Runner */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
C64F89802BEA00CF00945F40 /* PrivacyInfo.xcprivacy */,
|
||||
C6B156C629ED4959004F7E4D /* GoogleService-Info.plist */,
|
||||
C739818628E4631E00744836 /* Runner.entitlements */,
|
||||
97C146FA1CF9000F007C117D /* Main.storyboard */,
|
||||
97C146FD1CF9000F007C117D /* Assets.xcassets */,
|
||||
97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */,
|
||||
97C147021CF9000F007C117D /* Info.plist */,
|
||||
1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */,
|
||||
1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */,
|
||||
74858FAE1ED2DC5600515810 /* AppDelegate.swift */,
|
||||
74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */,
|
||||
);
|
||||
path = Runner;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
CC2378898FAFB2F8CCB774D0 /* Frameworks */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
8406A87EDAB3F42C9E9C8625 /* Pods_Runner.framework */,
|
||||
);
|
||||
name = Frameworks;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
/* End PBXGroup section */
|
||||
|
||||
/* Begin PBXNativeTarget section */
|
||||
97C146ED1CF9000F007C117D /* Runner */ = {
|
||||
isa = PBXNativeTarget;
|
||||
buildConfigurationList = 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */;
|
||||
buildPhases = (
|
||||
11FA84E1B6E74DCAB7043F8B /* [CP] Check Pods Manifest.lock */,
|
||||
9740EEB61CF901F6004384FC /* Run Script */,
|
||||
97C146EA1CF9000F007C117D /* Sources */,
|
||||
97C146EB1CF9000F007C117D /* Frameworks */,
|
||||
97C146EC1CF9000F007C117D /* Resources */,
|
||||
9705A1C41CF9048500538489 /* Embed Frameworks */,
|
||||
3B06AD1E1E4923F5004D2608 /* Thin Binary */,
|
||||
66D5C516A2D49648D98696C5 /* [CP] Embed Pods Frameworks */,
|
||||
7452FB0F6FB0AC1495261F6F /* [CP] Copy Pods Resources */,
|
||||
);
|
||||
buildRules = (
|
||||
);
|
||||
dependencies = (
|
||||
);
|
||||
name = Runner;
|
||||
productName = Runner;
|
||||
productReference = 97C146EE1CF9000F007C117D /* Runner.app */;
|
||||
productType = "com.apple.product-type.application";
|
||||
};
|
||||
/* End PBXNativeTarget section */
|
||||
|
||||
/* Begin PBXProject section */
|
||||
97C146E61CF9000F007C117D /* Project object */ = {
|
||||
isa = PBXProject;
|
||||
attributes = {
|
||||
LastUpgradeCheck = 1510;
|
||||
ORGANIZATIONNAME = "";
|
||||
TargetAttributes = {
|
||||
97C146ED1CF9000F007C117D = {
|
||||
CreatedOnToolsVersion = 7.3.1;
|
||||
LastSwiftMigration = 1100;
|
||||
};
|
||||
};
|
||||
};
|
||||
buildConfigurationList = 97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */;
|
||||
compatibilityVersion = "Xcode 9.3";
|
||||
developmentRegion = en;
|
||||
hasScannedForEncodings = 0;
|
||||
knownRegions = (
|
||||
en,
|
||||
Base,
|
||||
);
|
||||
mainGroup = 97C146E51CF9000F007C117D;
|
||||
productRefGroup = 97C146EF1CF9000F007C117D /* Products */;
|
||||
projectDirPath = "";
|
||||
projectRoot = "";
|
||||
targets = (
|
||||
97C146ED1CF9000F007C117D /* Runner */,
|
||||
);
|
||||
};
|
||||
/* End PBXProject section */
|
||||
|
||||
/* Begin PBXResourcesBuildPhase section */
|
||||
97C146EC1CF9000F007C117D /* Resources */ = {
|
||||
isa = PBXResourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
C64F89812BEA00CF00945F40 /* PrivacyInfo.xcprivacy in Resources */,
|
||||
97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */,
|
||||
3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */,
|
||||
C6B156C729ED4959004F7E4D /* GoogleService-Info.plist in Resources */,
|
||||
97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */,
|
||||
97C146FC1CF9000F007C117D /* Main.storyboard in Resources */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXResourcesBuildPhase section */
|
||||
|
||||
/* Begin PBXShellScriptBuildPhase section */
|
||||
11FA84E1B6E74DCAB7043F8B /* [CP] Check Pods Manifest.lock */ = {
|
||||
isa = PBXShellScriptBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
);
|
||||
inputFileListPaths = (
|
||||
);
|
||||
inputPaths = (
|
||||
"${PODS_PODFILE_DIR_PATH}/Podfile.lock",
|
||||
"${PODS_ROOT}/Manifest.lock",
|
||||
);
|
||||
name = "[CP] Check Pods Manifest.lock";
|
||||
outputFileListPaths = (
|
||||
);
|
||||
outputPaths = (
|
||||
"$(DERIVED_FILE_DIR)/Pods-Runner-checkManifestLockResult.txt",
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
shellPath = /bin/sh;
|
||||
shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
|
||||
showEnvVarsInLog = 0;
|
||||
};
|
||||
3B06AD1E1E4923F5004D2608 /* Thin Binary */ = {
|
||||
isa = PBXShellScriptBuildPhase;
|
||||
alwaysOutOfDate = 1;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
);
|
||||
inputPaths = (
|
||||
"${TARGET_BUILD_DIR}/${INFOPLIST_PATH}",
|
||||
);
|
||||
name = "Thin Binary";
|
||||
outputPaths = (
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
shellPath = /bin/sh;
|
||||
shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" embed_and_thin";
|
||||
};
|
||||
66D5C516A2D49648D98696C5 /* [CP] Embed Pods Frameworks */ = {
|
||||
isa = PBXShellScriptBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
);
|
||||
inputFileListPaths = (
|
||||
"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks-${CONFIGURATION}-input-files.xcfilelist",
|
||||
);
|
||||
name = "[CP] Embed Pods Frameworks";
|
||||
outputFileListPaths = (
|
||||
"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks-${CONFIGURATION}-output-files.xcfilelist",
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
shellPath = /bin/sh;
|
||||
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks.sh\"\n";
|
||||
showEnvVarsInLog = 0;
|
||||
};
|
||||
7452FB0F6FB0AC1495261F6F /* [CP] Copy Pods Resources */ = {
|
||||
isa = PBXShellScriptBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
);
|
||||
inputFileListPaths = (
|
||||
"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-resources-${CONFIGURATION}-input-files.xcfilelist",
|
||||
);
|
||||
name = "[CP] Copy Pods Resources";
|
||||
outputFileListPaths = (
|
||||
"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-resources-${CONFIGURATION}-output-files.xcfilelist",
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
shellPath = /bin/sh;
|
||||
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-resources.sh\"\n";
|
||||
showEnvVarsInLog = 0;
|
||||
};
|
||||
9740EEB61CF901F6004384FC /* Run Script */ = {
|
||||
isa = PBXShellScriptBuildPhase;
|
||||
alwaysOutOfDate = 1;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
);
|
||||
inputPaths = (
|
||||
);
|
||||
name = "Run Script";
|
||||
outputPaths = (
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
shellPath = /bin/sh;
|
||||
shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" build";
|
||||
};
|
||||
/* End PBXShellScriptBuildPhase section */
|
||||
|
||||
/* Begin PBXSourcesBuildPhase section */
|
||||
97C146EA1CF9000F007C117D /* Sources */ = {
|
||||
isa = PBXSourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */,
|
||||
1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXSourcesBuildPhase section */
|
||||
|
||||
/* Begin PBXVariantGroup section */
|
||||
97C146FA1CF9000F007C117D /* Main.storyboard */ = {
|
||||
isa = PBXVariantGroup;
|
||||
children = (
|
||||
97C146FB1CF9000F007C117D /* Base */,
|
||||
);
|
||||
name = Main.storyboard;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */ = {
|
||||
isa = PBXVariantGroup;
|
||||
children = (
|
||||
97C147001CF9000F007C117D /* Base */,
|
||||
);
|
||||
name = LaunchScreen.storyboard;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
/* End PBXVariantGroup section */
|
||||
|
||||
/* Begin XCBuildConfiguration section */
|
||||
249021D3217E4FDB00AE95B9 /* Profile */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
CLANG_ANALYZER_NONNULL = YES;
|
||||
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
|
||||
CLANG_CXX_LIBRARY = "libc++";
|
||||
CLANG_ENABLE_MODULES = YES;
|
||||
CLANG_ENABLE_OBJC_ARC = YES;
|
||||
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
|
||||
CLANG_WARN_BOOL_CONVERSION = YES;
|
||||
CLANG_WARN_COMMA = YES;
|
||||
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
||||
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
|
||||
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
|
||||
CLANG_WARN_EMPTY_BODY = YES;
|
||||
CLANG_WARN_ENUM_CONVERSION = YES;
|
||||
CLANG_WARN_INFINITE_RECURSION = YES;
|
||||
CLANG_WARN_INT_CONVERSION = YES;
|
||||
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
|
||||
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
|
||||
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
|
||||
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
||||
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
|
||||
CLANG_WARN_STRICT_PROTOTYPES = YES;
|
||||
CLANG_WARN_SUSPICIOUS_MOVE = YES;
|
||||
CLANG_WARN_UNREACHABLE_CODE = YES;
|
||||
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
||||
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
|
||||
COPY_PHASE_STRIP = NO;
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
ENABLE_NS_ASSERTIONS = NO;
|
||||
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_NO_COMMON_BLOCKS = YES;
|
||||
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
|
||||
GCC_WARN_UNDECLARED_SELECTOR = YES;
|
||||
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
||||
GCC_WARN_UNUSED_FUNCTION = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
IPHONEOS_DEPLOYMENT_TARGET = 15.6;
|
||||
MTL_ENABLE_DEBUG_INFO = NO;
|
||||
SDKROOT = iphoneos;
|
||||
SUPPORTED_PLATFORMS = iphoneos;
|
||||
TARGETED_DEVICE_FAMILY = "1,2";
|
||||
VALIDATE_PRODUCT = YES;
|
||||
};
|
||||
name = Profile;
|
||||
};
|
||||
249021D4217E4FDB00AE95B9 /* Profile */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */;
|
||||
buildSettings = {
|
||||
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
||||
CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES = YES;
|
||||
CLANG_ENABLE_MODULES = YES;
|
||||
CODE_SIGN_ENTITLEMENTS = Runner/Runner.entitlements;
|
||||
CODE_SIGN_IDENTITY = "Apple Development";
|
||||
CODE_SIGN_STYLE = Automatic;
|
||||
CURRENT_PROJECT_VERSION = 32;
|
||||
DEVELOPMENT_TEAM = 89C47N4UTZ;
|
||||
ENABLE_BITCODE = NO;
|
||||
INFOPLIST_FILE = Runner/Info.plist;
|
||||
INFOPLIST_KEY_CFBundleDisplayName = "elCaribe";
|
||||
INFOPLIST_KEY_LSApplicationCategoryType = "public.app-category.entertainment";
|
||||
IPHONEOS_DEPLOYMENT_TARGET = 15.0;
|
||||
LD_RUNPATH_SEARCH_PATHS = (
|
||||
"$(inherited)",
|
||||
"@executable_path/Frameworks",
|
||||
);
|
||||
MARKETING_VERSION = 1.0.0;
|
||||
PRODUCT_BUNDLE_IDENTIFIER = YOUR_PACKAGE_NAME_HERE;
|
||||
PRODUCT_NAME = "$(TARGET_NAME)";
|
||||
PROVISIONING_PROFILE_SPECIFIER = "";
|
||||
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
|
||||
SUPPORTS_MACCATALYST = NO;
|
||||
SUPPORTS_MAC_DESIGNED_FOR_IPHONE_IPAD = NO;
|
||||
SUPPORTS_XR_DESIGNED_FOR_IPHONE_IPAD = NO;
|
||||
SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
|
||||
SWIFT_VERSION = 5.0;
|
||||
TARGETED_DEVICE_FAMILY = "1,2";
|
||||
VERSIONING_SYSTEM = "apple-generic";
|
||||
};
|
||||
name = Profile;
|
||||
};
|
||||
97C147031CF9000F007C117D /* Debug */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
CLANG_ANALYZER_NONNULL = YES;
|
||||
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
|
||||
CLANG_CXX_LIBRARY = "libc++";
|
||||
CLANG_ENABLE_MODULES = YES;
|
||||
CLANG_ENABLE_OBJC_ARC = YES;
|
||||
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
|
||||
CLANG_WARN_BOOL_CONVERSION = YES;
|
||||
CLANG_WARN_COMMA = YES;
|
||||
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
||||
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
|
||||
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
|
||||
CLANG_WARN_EMPTY_BODY = YES;
|
||||
CLANG_WARN_ENUM_CONVERSION = YES;
|
||||
CLANG_WARN_INFINITE_RECURSION = YES;
|
||||
CLANG_WARN_INT_CONVERSION = YES;
|
||||
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
|
||||
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
|
||||
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
|
||||
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
||||
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
|
||||
CLANG_WARN_STRICT_PROTOTYPES = YES;
|
||||
CLANG_WARN_SUSPICIOUS_MOVE = YES;
|
||||
CLANG_WARN_UNREACHABLE_CODE = YES;
|
||||
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
||||
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
|
||||
COPY_PHASE_STRIP = NO;
|
||||
DEBUG_INFORMATION_FORMAT = dwarf;
|
||||
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
||||
ENABLE_TESTABILITY = YES;
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_NO_COMMON_BLOCKS = YES;
|
||||
GCC_OPTIMIZATION_LEVEL = 0;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"DEBUG=1",
|
||||
"$(inherited)",
|
||||
);
|
||||
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
|
||||
GCC_WARN_UNDECLARED_SELECTOR = YES;
|
||||
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
||||
GCC_WARN_UNUSED_FUNCTION = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
IPHONEOS_DEPLOYMENT_TARGET = 15.6;
|
||||
MTL_ENABLE_DEBUG_INFO = YES;
|
||||
ONLY_ACTIVE_ARCH = YES;
|
||||
SDKROOT = iphoneos;
|
||||
TARGETED_DEVICE_FAMILY = "1,2";
|
||||
};
|
||||
name = Debug;
|
||||
};
|
||||
97C147041CF9000F007C117D /* Release */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
CLANG_ANALYZER_NONNULL = YES;
|
||||
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
|
||||
CLANG_CXX_LIBRARY = "libc++";
|
||||
CLANG_ENABLE_MODULES = YES;
|
||||
CLANG_ENABLE_OBJC_ARC = YES;
|
||||
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
|
||||
CLANG_WARN_BOOL_CONVERSION = YES;
|
||||
CLANG_WARN_COMMA = YES;
|
||||
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
||||
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
|
||||
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
|
||||
CLANG_WARN_EMPTY_BODY = YES;
|
||||
CLANG_WARN_ENUM_CONVERSION = YES;
|
||||
CLANG_WARN_INFINITE_RECURSION = YES;
|
||||
CLANG_WARN_INT_CONVERSION = YES;
|
||||
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
|
||||
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
|
||||
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
|
||||
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
||||
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
|
||||
CLANG_WARN_STRICT_PROTOTYPES = YES;
|
||||
CLANG_WARN_SUSPICIOUS_MOVE = YES;
|
||||
CLANG_WARN_UNREACHABLE_CODE = YES;
|
||||
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
||||
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
|
||||
COPY_PHASE_STRIP = NO;
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
ENABLE_NS_ASSERTIONS = NO;
|
||||
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_NO_COMMON_BLOCKS = YES;
|
||||
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
|
||||
GCC_WARN_UNDECLARED_SELECTOR = YES;
|
||||
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
||||
GCC_WARN_UNUSED_FUNCTION = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
IPHONEOS_DEPLOYMENT_TARGET = 15.6;
|
||||
MTL_ENABLE_DEBUG_INFO = NO;
|
||||
SDKROOT = iphoneos;
|
||||
SUPPORTED_PLATFORMS = iphoneos;
|
||||
SWIFT_COMPILATION_MODE = wholemodule;
|
||||
SWIFT_OPTIMIZATION_LEVEL = "-O";
|
||||
TARGETED_DEVICE_FAMILY = "1,2";
|
||||
VALIDATE_PRODUCT = YES;
|
||||
};
|
||||
name = Release;
|
||||
};
|
||||
97C147061CF9000F007C117D /* Debug */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
baseConfigurationReference = 9740EEB21CF90195004384FC /* Debug.xcconfig */;
|
||||
buildSettings = {
|
||||
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
||||
CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES = YES;
|
||||
CLANG_ENABLE_MODULES = YES;
|
||||
CODE_SIGN_ENTITLEMENTS = Runner/Runner.entitlements;
|
||||
CODE_SIGN_IDENTITY = "Apple Development";
|
||||
CODE_SIGN_STYLE = Automatic;
|
||||
CURRENT_PROJECT_VERSION = 32;
|
||||
DEVELOPMENT_TEAM = 89C47N4UTZ;
|
||||
ENABLE_BITCODE = NO;
|
||||
INFOPLIST_FILE = Runner/Info.plist;
|
||||
INFOPLIST_KEY_CFBundleDisplayName = "elCaribe";
|
||||
INFOPLIST_KEY_LSApplicationCategoryType = "public.app-category.entertainment";
|
||||
IPHONEOS_DEPLOYMENT_TARGET = 15.0;
|
||||
LD_RUNPATH_SEARCH_PATHS = (
|
||||
"$(inherited)",
|
||||
"@executable_path/Frameworks",
|
||||
);
|
||||
MARKETING_VERSION = 1.0.0;
|
||||
PRODUCT_BUNDLE_IDENTIFIER = YOUR_PACKAGE_NAME_HERE;
|
||||
PRODUCT_NAME = "$(TARGET_NAME)";
|
||||
PROVISIONING_PROFILE_SPECIFIER = "";
|
||||
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
|
||||
SUPPORTS_MACCATALYST = NO;
|
||||
SUPPORTS_MAC_DESIGNED_FOR_IPHONE_IPAD = NO;
|
||||
SUPPORTS_XR_DESIGNED_FOR_IPHONE_IPAD = NO;
|
||||
SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
|
||||
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
|
||||
SWIFT_VERSION = 5.0;
|
||||
TARGETED_DEVICE_FAMILY = "1,2";
|
||||
VERSIONING_SYSTEM = "apple-generic";
|
||||
};
|
||||
name = Debug;
|
||||
};
|
||||
97C147071CF9000F007C117D /* Release */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */;
|
||||
buildSettings = {
|
||||
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
||||
CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES = YES;
|
||||
CLANG_ENABLE_MODULES = YES;
|
||||
CODE_SIGN_ENTITLEMENTS = Runner/Runner.entitlements;
|
||||
CODE_SIGN_IDENTITY = "Apple Development";
|
||||
CODE_SIGN_STYLE = Automatic;
|
||||
CURRENT_PROJECT_VERSION = 32;
|
||||
DEVELOPMENT_TEAM = 89C47N4UTZ;
|
||||
ENABLE_BITCODE = NO;
|
||||
INFOPLIST_FILE = Runner/Info.plist;
|
||||
INFOPLIST_KEY_CFBundleDisplayName = "elCaribe";
|
||||
INFOPLIST_KEY_LSApplicationCategoryType = "public.app-category.entertainment";
|
||||
IPHONEOS_DEPLOYMENT_TARGET = 15.0;
|
||||
LD_RUNPATH_SEARCH_PATHS = (
|
||||
"$(inherited)",
|
||||
"@executable_path/Frameworks",
|
||||
);
|
||||
MARKETING_VERSION = 1.0.0;
|
||||
PRODUCT_BUNDLE_IDENTIFIER = YOUR_PACKAGE_NAME_HERE;
|
||||
PRODUCT_NAME = "$(TARGET_NAME)";
|
||||
PROVISIONING_PROFILE_SPECIFIER = "";
|
||||
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
|
||||
SUPPORTS_MACCATALYST = NO;
|
||||
SUPPORTS_MAC_DESIGNED_FOR_IPHONE_IPAD = NO;
|
||||
SUPPORTS_XR_DESIGNED_FOR_IPHONE_IPAD = NO;
|
||||
SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
|
||||
SWIFT_VERSION = 5.0;
|
||||
TARGETED_DEVICE_FAMILY = "1,2";
|
||||
VERSIONING_SYSTEM = "apple-generic";
|
||||
};
|
||||
name = Release;
|
||||
};
|
||||
/* End XCBuildConfiguration section */
|
||||
|
||||
/* Begin XCConfigurationList section */
|
||||
97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
97C147031CF9000F007C117D /* Debug */,
|
||||
97C147041CF9000F007C117D /* Release */,
|
||||
249021D3217E4FDB00AE95B9 /* Profile */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = Release;
|
||||
};
|
||||
97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
97C147061CF9000F007C117D /* Debug */,
|
||||
97C147071CF9000F007C117D /* Release */,
|
||||
249021D4217E4FDB00AE95B9 /* Profile */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = Release;
|
||||
};
|
||||
/* End XCConfigurationList section */
|
||||
};
|
||||
rootObject = 97C146E61CF9000F007C117D /* Project object */;
|
||||
}
|
||||
7
news-app/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata
generated
Normal file
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Workspace
|
||||
version = "1.0">
|
||||
<FileRef
|
||||
location = "self:">
|
||||
</FileRef>
|
||||
</Workspace>
|
||||
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>IDEDidComputeMac32BitWarning</key>
|
||||
<true/>
|
||||
</dict>
|
||||
</plist>
|
||||
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>PreviewsEnabled</key>
|
||||
<false/>
|
||||
</dict>
|
||||
</plist>
|
||||
@@ -0,0 +1,90 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Scheme
|
||||
LastUpgradeVersion = "1510"
|
||||
version = "1.3">
|
||||
<BuildAction
|
||||
parallelizeBuildables = "YES"
|
||||
buildImplicitDependencies = "YES">
|
||||
<BuildActionEntries>
|
||||
<BuildActionEntry
|
||||
buildForTesting = "YES"
|
||||
buildForRunning = "YES"
|
||||
buildForProfiling = "YES"
|
||||
buildForArchiving = "YES"
|
||||
buildForAnalyzing = "YES">
|
||||
<BuildableReference
|
||||
BuildableIdentifier = "primary"
|
||||
BlueprintIdentifier = "97C146ED1CF9000F007C117D"
|
||||
BuildableName = "Runner.app"
|
||||
BlueprintName = "Runner"
|
||||
ReferencedContainer = "container:Runner.xcodeproj">
|
||||
</BuildableReference>
|
||||
</BuildActionEntry>
|
||||
</BuildActionEntries>
|
||||
</BuildAction>
|
||||
<TestAction
|
||||
buildConfiguration = "Debug"
|
||||
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
|
||||
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
|
||||
customLLDBInitFile = "$(SRCROOT)/Flutter/ephemeral/flutter_lldbinit"
|
||||
shouldUseLaunchSchemeArgsEnv = "YES">
|
||||
<MacroExpansion>
|
||||
<BuildableReference
|
||||
BuildableIdentifier = "primary"
|
||||
BlueprintIdentifier = "97C146ED1CF9000F007C117D"
|
||||
BuildableName = "Runner.app"
|
||||
BlueprintName = "Runner"
|
||||
ReferencedContainer = "container:Runner.xcodeproj">
|
||||
</BuildableReference>
|
||||
</MacroExpansion>
|
||||
<Testables>
|
||||
</Testables>
|
||||
</TestAction>
|
||||
<LaunchAction
|
||||
buildConfiguration = "Debug"
|
||||
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
|
||||
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
|
||||
customLLDBInitFile = "$(SRCROOT)/Flutter/ephemeral/flutter_lldbinit"
|
||||
launchStyle = "0"
|
||||
useCustomWorkingDirectory = "NO"
|
||||
ignoresPersistentStateOnLaunch = "NO"
|
||||
debugDocumentVersioning = "YES"
|
||||
debugServiceExtension = "internal"
|
||||
enableGPUValidationMode = "1"
|
||||
allowLocationSimulation = "YES">
|
||||
<BuildableProductRunnable
|
||||
runnableDebuggingMode = "0">
|
||||
<BuildableReference
|
||||
BuildableIdentifier = "primary"
|
||||
BlueprintIdentifier = "97C146ED1CF9000F007C117D"
|
||||
BuildableName = "Runner.app"
|
||||
BlueprintName = "Runner"
|
||||
ReferencedContainer = "container:Runner.xcodeproj">
|
||||
</BuildableReference>
|
||||
</BuildableProductRunnable>
|
||||
</LaunchAction>
|
||||
<ProfileAction
|
||||
buildConfiguration = "Profile"
|
||||
shouldUseLaunchSchemeArgsEnv = "YES"
|
||||
savedToolIdentifier = ""
|
||||
useCustomWorkingDirectory = "NO"
|
||||
debugDocumentVersioning = "YES">
|
||||
<BuildableProductRunnable
|
||||
runnableDebuggingMode = "0">
|
||||
<BuildableReference
|
||||
BuildableIdentifier = "primary"
|
||||
BlueprintIdentifier = "97C146ED1CF9000F007C117D"
|
||||
BuildableName = "Runner.app"
|
||||
BlueprintName = "Runner"
|
||||
ReferencedContainer = "container:Runner.xcodeproj">
|
||||
</BuildableReference>
|
||||
</BuildableProductRunnable>
|
||||
</ProfileAction>
|
||||
<AnalyzeAction
|
||||
buildConfiguration = "Debug">
|
||||
</AnalyzeAction>
|
||||
<ArchiveAction
|
||||
buildConfiguration = "Release"
|
||||
revealArchiveInOrganizer = "YES">
|
||||
</ArchiveAction>
|
||||
</Scheme>
|
||||
10
news-app/ios/Runner.xcworkspace/contents.xcworkspacedata
generated
Normal file
@@ -0,0 +1,10 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Workspace
|
||||
version = "1.0">
|
||||
<FileRef
|
||||
location = "group:Runner.xcodeproj">
|
||||
</FileRef>
|
||||
<FileRef
|
||||
location = "group:Pods/Pods.xcodeproj">
|
||||
</FileRef>
|
||||
</Workspace>
|
||||
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>IDEDidComputeMac32BitWarning</key>
|
||||
<true/>
|
||||
</dict>
|
||||
</plist>
|
||||
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>PreviewsEnabled</key>
|
||||
<false/>
|
||||
</dict>
|
||||
</plist>
|
||||
71
news-app/ios/Runner/AppDelegate.swift
Normal file
@@ -0,0 +1,71 @@
|
||||
import UIKit
|
||||
import Flutter
|
||||
import Firebase
|
||||
import AppTrackingTransparency
|
||||
import GoogleMobileAds
|
||||
|
||||
@main
|
||||
@objc class AppDelegate: FlutterAppDelegate {
|
||||
override func application(
|
||||
_ application: UIApplication,
|
||||
didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?
|
||||
) -> Bool {
|
||||
FirebaseApp.configure()
|
||||
GeneratedPluginRegistrant.register(with: self)
|
||||
if #available(iOS 10.0, *) {
|
||||
UNUserNotificationCenter.current().delegate = self as UNUserNotificationCenterDelegate
|
||||
}
|
||||
|
||||
// Disables Publisher first-party ID
|
||||
MobileAds.shared.requestConfiguration.setPublisherFirstPartyIDEnabled(false)
|
||||
|
||||
return super.application(application, didFinishLaunchingWithOptions: launchOptions)
|
||||
}
|
||||
|
||||
override func application(
|
||||
_ application: UIApplication,
|
||||
open url: URL,
|
||||
options: [UIApplication.OpenURLOptionsKey : Any] = [:]
|
||||
) -> Bool {
|
||||
let urlString = url.absoluteString
|
||||
return true
|
||||
}
|
||||
|
||||
override func applicationDidBecomeActive(_ application: UIApplication) {
|
||||
if #available(iOS 15.0, *) {
|
||||
ATTrackingManager.requestTrackingAuthorization(completionHandler: { status in
|
||||
// Tracking authorization completed. Start loading ads here.
|
||||
// loadAd
|
||||
})
|
||||
}
|
||||
}
|
||||
}
|
||||
class AppLinks {
|
||||
|
||||
var window: UIWindow?
|
||||
|
||||
func application(_ app: UIApplication, open url: URL, options: [UIApplication.OpenURLOptionsKey : Any] = [:]) -> Bool {
|
||||
return handleDeepLink(url: url)
|
||||
}
|
||||
|
||||
func application(_ application: UIApplication, continue userActivity: NSUserActivity, restorationHandler: @escaping ([UIUserActivityRestoring]?) -> Void) -> Bool {
|
||||
if userActivity.activityType == NSUserActivityTypeBrowsingWeb,
|
||||
let url = userActivity.webpageURL {
|
||||
return handleDeepLink(url: url)
|
||||
}
|
||||
return false
|
||||
}
|
||||
|
||||
private func handleDeepLink(url: URL) -> Bool {
|
||||
guard let components = URLComponents(url: url, resolvingAgainstBaseURL: true) else {
|
||||
return false
|
||||
}
|
||||
|
||||
if let urlPattern = components.path.split(separator: "/").last {
|
||||
return true
|
||||
}
|
||||
|
||||
return false
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,122 @@
|
||||
{
|
||||
"images" : [
|
||||
{
|
||||
"filename" : "Icon-App-20x20@2x.png",
|
||||
"idiom" : "iphone",
|
||||
"scale" : "2x",
|
||||
"size" : "20x20"
|
||||
},
|
||||
{
|
||||
"filename" : "Icon-App-20x20@3x.png",
|
||||
"idiom" : "iphone",
|
||||
"scale" : "3x",
|
||||
"size" : "20x20"
|
||||
},
|
||||
{
|
||||
"filename" : "Icon-App-29x29@1x.png",
|
||||
"idiom" : "iphone",
|
||||
"scale" : "1x",
|
||||
"size" : "29x29"
|
||||
},
|
||||
{
|
||||
"filename" : "Icon-App-29x29@2x.png",
|
||||
"idiom" : "iphone",
|
||||
"scale" : "2x",
|
||||
"size" : "29x29"
|
||||
},
|
||||
{
|
||||
"filename" : "Icon-App-29x29@3x.png",
|
||||
"idiom" : "iphone",
|
||||
"scale" : "3x",
|
||||
"size" : "29x29"
|
||||
},
|
||||
{
|
||||
"filename" : "Icon-App-40x40@2x.png",
|
||||
"idiom" : "iphone",
|
||||
"scale" : "2x",
|
||||
"size" : "40x40"
|
||||
},
|
||||
{
|
||||
"filename" : "Icon-App-40x40@3x.png",
|
||||
"idiom" : "iphone",
|
||||
"scale" : "3x",
|
||||
"size" : "40x40"
|
||||
},
|
||||
{
|
||||
"filename" : "Icon-App-60x60@2x.png",
|
||||
"idiom" : "iphone",
|
||||
"scale" : "2x",
|
||||
"size" : "60x60"
|
||||
},
|
||||
{
|
||||
"filename" : "Icon-App-60x60@3x.png",
|
||||
"idiom" : "iphone",
|
||||
"scale" : "3x",
|
||||
"size" : "60x60"
|
||||
},
|
||||
{
|
||||
"filename" : "Icon-App-20x20@1x.png",
|
||||
"idiom" : "ipad",
|
||||
"scale" : "1x",
|
||||
"size" : "20x20"
|
||||
},
|
||||
{
|
||||
"filename" : "Icon-App-20x20@2x.png",
|
||||
"idiom" : "ipad",
|
||||
"scale" : "2x",
|
||||
"size" : "20x20"
|
||||
},
|
||||
{
|
||||
"filename" : "Icon-App-29x29@1x.png",
|
||||
"idiom" : "ipad",
|
||||
"scale" : "1x",
|
||||
"size" : "29x29"
|
||||
},
|
||||
{
|
||||
"filename" : "Icon-App-29x29@2x.png",
|
||||
"idiom" : "ipad",
|
||||
"scale" : "2x",
|
||||
"size" : "29x29"
|
||||
},
|
||||
{
|
||||
"filename" : "Icon-App-40x40@1x.png",
|
||||
"idiom" : "ipad",
|
||||
"scale" : "1x",
|
||||
"size" : "40x40"
|
||||
},
|
||||
{
|
||||
"filename" : "Icon-App-40x40@2x.png",
|
||||
"idiom" : "ipad",
|
||||
"scale" : "2x",
|
||||
"size" : "40x40"
|
||||
},
|
||||
{
|
||||
"filename" : "Icon-App-76x76@1x.png",
|
||||
"idiom" : "ipad",
|
||||
"scale" : "1x",
|
||||
"size" : "76x76"
|
||||
},
|
||||
{
|
||||
"filename" : "Icon-App-76x76@2x.png",
|
||||
"idiom" : "ipad",
|
||||
"scale" : "2x",
|
||||
"size" : "76x76"
|
||||
},
|
||||
{
|
||||
"filename" : "Icon-App-83.5x83.5@2x.png",
|
||||
"idiom" : "ipad",
|
||||
"scale" : "2x",
|
||||
"size" : "83.5x83.5"
|
||||
},
|
||||
{
|
||||
"filename" : "Icon-App-1024x1024@1x.png",
|
||||
"idiom" : "ios-marketing",
|
||||
"scale" : "1x",
|
||||
"size" : "1024x1024"
|
||||
}
|
||||
],
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
}
|
||||
}
|
||||
|
After Width: | Height: | Size: 77 KiB |