diff --git a/.metadata b/.metadata index aa90aa8..706ff77 100644 --- a/.metadata +++ b/.metadata @@ -4,7 +4,7 @@ # This file should be version controlled and should not be manually edited. version: - revision: "ba393198430278b6595976de84fe170f553cc728" + revision: "603104015dd692ea3403755b55d07813d5cf8965" channel: "stable" project_type: app @@ -13,26 +13,11 @@ project_type: app migration: platforms: - platform: root - create_revision: ba393198430278b6595976de84fe170f553cc728 - base_revision: ba393198430278b6595976de84fe170f553cc728 + create_revision: 603104015dd692ea3403755b55d07813d5cf8965 + base_revision: 603104015dd692ea3403755b55d07813d5cf8965 - platform: android - create_revision: ba393198430278b6595976de84fe170f553cc728 - base_revision: ba393198430278b6595976de84fe170f553cc728 - - platform: ios - create_revision: ba393198430278b6595976de84fe170f553cc728 - base_revision: ba393198430278b6595976de84fe170f553cc728 - - platform: linux - create_revision: ba393198430278b6595976de84fe170f553cc728 - base_revision: ba393198430278b6595976de84fe170f553cc728 - - platform: macos - create_revision: ba393198430278b6595976de84fe170f553cc728 - base_revision: ba393198430278b6595976de84fe170f553cc728 - - platform: web - create_revision: ba393198430278b6595976de84fe170f553cc728 - base_revision: ba393198430278b6595976de84fe170f553cc728 - - platform: windows - create_revision: ba393198430278b6595976de84fe170f553cc728 - base_revision: ba393198430278b6595976de84fe170f553cc728 + create_revision: 603104015dd692ea3403755b55d07813d5cf8965 + base_revision: 603104015dd692ea3403755b55d07813d5cf8965 # User provided section diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml new file mode 100644 index 0000000..17f84e3 --- /dev/null +++ b/.pre-commit-config.yaml @@ -0,0 +1,44 @@ +repos: + - repo: local + hooks: + - id: git-stash + name: Saving unindexed files (to avoid formatting and analyze) + entry: git + args: ["stash", "--keep-index", "--include-untracked", "--message=pre-commit-auto-stash"] + language: system + pass_filenames: false + + - id: dart-fix + name: Fixing dart code + entry: dart + args: ["fix","--apply"] + language: system + pass_filenames: false + + - id: flutter-format + name: Formatting code + entry: dart + args: ["format",".", "-l", "120"] + language: system + pass_filenames: false + + - id: organise-imports + name: Organising imports + entry: flutter + args: ["pub", "run", "import_sorter:main"] + language: system + pass_filenames: false + + - id: flutter-analyze + name: flutter analyze + entry: flutter + args: ["analyze"] + language: system + pass_filenames: false + + - id: git-stash-apply + name: Applying stashed changes + entry: git + args: ["stash", "pop", "-q"] + language: system + pass_filenames: false diff --git a/README.md b/README.md index 8aad12d..c12e40a 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ -# Project Gauri +# Project Tribe ## Overview -Project Gauri is a cow and cattle wellness and wellfare app. This project is built using the Flutter framework and uses GetX for it's state management. +This project is built using the Flutter framework and uses GetX for it's state management. ## Getting Started @@ -14,8 +14,8 @@ Ensure you have the following installed: ### Installation 1. Clone the repository: ```bash - git clone https://github.com/yourusername/project-gauri.git - cd project-gauri + git clone https://github.com/yourusername/tribe_app.git + cd tribe-app ## Pre Commit Pre commit allows us to handle issues before they are committed. diff --git a/android/.gitignore b/android/.gitignore index 6f56801..55afd91 100644 --- a/android/.gitignore +++ b/android/.gitignore @@ -7,7 +7,7 @@ gradle-wrapper.jar GeneratedPluginRegistrant.java # Remember to never publicly share your keystore. -# See https://flutter.dev/docs/deployment/android#reference-the-keystore-from-the-app +# See https://flutter.dev/to/reference-keystore key.properties **/*.keystore **/*.jks diff --git a/android/app/build.gradle b/android/app/build.gradle index 1e5287b..6742154 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -1,67 +1,44 @@ plugins { id "com.android.application" id "kotlin-android" + // The Flutter Gradle Plugin must be applied after the Android and Kotlin Gradle plugins. id "dev.flutter.flutter-gradle-plugin" } -def localProperties = new Properties() -def localPropertiesFile = rootProject.file('local.properties') -if (localPropertiesFile.exists()) { - localPropertiesFile.withReader('UTF-8') { reader -> - localProperties.load(reader) - } -} - -def flutterVersionCode = localProperties.getProperty('flutter.versionCode') -if (flutterVersionCode == null) { - flutterVersionCode = '1' -} - -def flutterVersionName = localProperties.getProperty('flutter.versionName') -if (flutterVersionName == null) { - flutterVersionName = '1.0' -} - android { - namespace "com.example.project_gauri" - compileSdk flutter.compileSdkVersion - ndkVersion flutter.ndkVersion + namespace = "com.example.tribe_app" + compileSdk = flutter.compileSdkVersion + ndkVersion = flutter.ndkVersion compileOptions { - sourceCompatibility JavaVersion.VERSION_1_8 - targetCompatibility JavaVersion.VERSION_1_8 + sourceCompatibility = JavaVersion.VERSION_1_8 + targetCompatibility = JavaVersion.VERSION_1_8 } kotlinOptions { - jvmTarget = '1.8' - } - - sourceSets { - main.java.srcDirs += 'src/main/kotlin' + jvmTarget = JavaVersion.VERSION_1_8 } defaultConfig { // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html). - applicationId "com.example.project_gauri" + applicationId = "com.example.tribe_app" // You can update the following values to match your application needs. - // For more information, see: https://docs.flutter.dev/deployment/android#reviewing-the-gradle-build-configuration. - minSdkVersion flutter.minSdkVersion - targetSdkVersion flutter.targetSdkVersion - versionCode flutterVersionCode.toInteger() - versionName flutterVersionName + // For more information, see: https://flutter.dev/to/review-gradle-config. + minSdk = flutter.minSdkVersion + targetSdk = flutter.targetSdkVersion + versionCode = flutter.versionCode + versionName = flutter.versionName } buildTypes { release { // TODO: Add your own signing config for the release build. // Signing with the debug keys for now, so `flutter run --release` works. - signingConfig signingConfigs.debug + signingConfig = signingConfigs.debug } } } flutter { - source '../..' + source = "../.." } - -dependencies {} diff --git a/android/app/src/main/AndroidManifest.xml b/android/app/src/main/AndroidManifest.xml index 4e720e0..48b131c 100644 --- a/android/app/src/main/AndroidManifest.xml +++ b/android/app/src/main/AndroidManifest.xml @@ -1,12 +1,13 @@ diff --git a/android/app/src/main/kotlin/com/example/project_gauri/MainActivity.kt b/android/app/src/main/kotlin/com/example/tribe_app/MainActivity.kt similarity index 73% rename from android/app/src/main/kotlin/com/example/project_gauri/MainActivity.kt rename to android/app/src/main/kotlin/com/example/tribe_app/MainActivity.kt index d7eaa62..64248f7 100644 --- a/android/app/src/main/kotlin/com/example/project_gauri/MainActivity.kt +++ b/android/app/src/main/kotlin/com/example/tribe_app/MainActivity.kt @@ -1,4 +1,4 @@ -package com.example.project_gauri +package com.example.tribe_app import io.flutter.embedding.android.FlutterActivity diff --git a/android/build.gradle b/android/build.gradle index bc157bd..d2ffbff 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -5,12 +5,12 @@ allprojects { } } -rootProject.buildDir = '../build' +rootProject.buildDir = "../build" subprojects { project.buildDir = "${rootProject.buildDir}/${project.name}" } subprojects { - project.evaluationDependsOn(':app') + project.evaluationDependsOn(":app") } tasks.register("clean", Delete) { diff --git a/android/gradle.properties b/android/gradle.properties index 598d13f..2597170 100644 --- a/android/gradle.properties +++ b/android/gradle.properties @@ -1,3 +1,3 @@ -org.gradle.jvmargs=-Xmx4G +org.gradle.jvmargs=-Xmx4G -XX:MaxMetaspaceSize=2G -XX:+HeapDumpOnOutOfMemoryError android.useAndroidX=true android.enableJetifier=true diff --git a/android/gradle/wrapper/gradle-wrapper.properties b/android/gradle/wrapper/gradle-wrapper.properties index e1ca574..7bb2df6 100644 --- a/android/gradle/wrapper/gradle-wrapper.properties +++ b/android/gradle/wrapper/gradle-wrapper.properties @@ -2,4 +2,4 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-7.6.3-all.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-8.3-all.zip diff --git a/android/settings.gradle b/android/settings.gradle index 1d6d19b..b9e43bd 100644 --- a/android/settings.gradle +++ b/android/settings.gradle @@ -5,10 +5,9 @@ pluginManagement { def flutterSdkPath = properties.getProperty("flutter.sdk") assert flutterSdkPath != null, "flutter.sdk not set in local.properties" return flutterSdkPath - } - settings.ext.flutterSdkPath = flutterSdkPath() + }() - includeBuild("${settings.ext.flutterSdkPath}/packages/flutter_tools/gradle") + includeBuild("$flutterSdkPath/packages/flutter_tools/gradle") repositories { google() @@ -19,8 +18,8 @@ pluginManagement { plugins { id "dev.flutter.flutter-plugin-loader" version "1.0.0" - id "com.android.application" version "7.3.0" apply false - id "org.jetbrains.kotlin.android" version "1.7.10" apply false + id "com.android.application" version "8.1.0" apply false + id "org.jetbrains.kotlin.android" version "1.8.22" apply false } include ":app" diff --git a/assets/animations/bg_animation.json b/assets/animations/bg_animation.json new file mode 100644 index 0000000..9028a65 --- /dev/null +++ b/assets/animations/bg_animation.json @@ -0,0 +1 @@ +{"v":"5.5.7","fr":29.9700012207031,"ip":0,"op":600.000024438501,"w":1080,"h":1920,"nm":"Comp 1","ddd":0,"assets":[],"layers":[{"ddd":0,"ind":1,"ty":4,"nm":"land Outlines","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[348,1524,0],"ix":2},"a":{"a":0,"k":[540,960,0],"ix":1},"s":{"a":0,"k":[117.482,117.482,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-5.916,-94.332],[42.729,94.332],[-42.729,94.332]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.078000005086,0.059000000299,0.184000007779,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[264.856,642.48],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-4.93,-23.337],[-13.475,23.337],[13.476,23.337]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.078000005086,0.059000000299,0.184000007779,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[702.33,753.574],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","np":2,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[2.63,-38.456],[-23.008,38.456],[23.008,38.456]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.078000005086,0.059000000299,0.184000007779,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[636.265,719.392],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 3","np":2,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-0.986,-77.624],[-33.197,72.234],[33.197,77.624]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.078000005086,0.059000000299,0.184000007779,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[449.903,704.019],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 4","np":2,"cix":2,"bm":0,"ix":4,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-5.259,-50.716],[-22.35,50.716],[22.35,50.716]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.078000005086,0.059000000299,0.184000007779,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[381.209,653.227],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 5","np":2,"cix":2,"bm":0,"ix":5,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[0.001,-89.566],[-35.827,89.566],[35.827,89.566]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.078000005086,0.059000000299,0.184000007779,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[316.334,692.077],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 6","np":2,"cix":2,"bm":0,"ix":6,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[13.146,-3.506],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[2.629,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-13.148,3.506],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-309.478,92.143],[-178.284,86.659],[-187.487,61.241],[-22.708,61.241],[-22.708,51.6],[-31.473,40.206],[96.494,40.206],[116.653,30.564],[203.424,30.564],[241.99,24.429],[282.307,6.898],[309.478,-16.766],[271.79,-38.678],[214.818,-48.319],[134.182,-56.207],[83.346,-74.613],[-61.273,-80.749],[-79.679,-92.143],[-304.059,-92.143]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.128999986836,0.102000000898,0.349000010771,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[550.289,774.175],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 7","np":2,"cix":2,"bm":0,"ix":7,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":600.000024438501,"st":0,"bm":0},{"ddd":0,"ind":2,"ty":4,"nm":"Shape Layer 34","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[540,960,0],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[185,326],[131,330],[56,343],[-41,367],[-41,399],[-45,465],[-34,539],[-35,615],[-44,729],[-56,853],[-65,966],[132,966],[149,640],[152,541]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"bm":0,"g":{"p":3,"k":{"a":0,"k":[0,0.075,0.067,0.2,0.593,0.086,0.076,0.245,1,0.098,0.086,0.29],"ix":9}},"s":{"a":0,"k":[157.258,370.867],"ix":5},"e":{"a":0,"k":[-1.078,575.719],"ix":6},"t":1,"nm":"Gradient Fill 1","mn":"ADBE Vector Graphic - G-Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":600.000024438501,"st":0,"bm":0},{"ddd":0,"ind":3,"ty":4,"nm":"Shape Layer 35","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[540,960,0],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[24,330],[-217,391],[-204,407],[-206,418],[-194,592],[-230,847],[-253,965],[-5,984],[60,388]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"bm":0,"g":{"p":3,"k":{"a":0,"k":[0,0.071,0.071,0.204,0.593,0.084,0.078,0.247,1,0.098,0.086,0.29],"ix":9}},"s":{"a":0,"k":[-205.562,502.328],"ix":5},"e":{"a":0,"k":[43.812,461.445],"ix":6},"t":1,"nm":"Gradient Fill 1","mn":"ADBE Vector Graphic - G-Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":600.000024438501,"st":0,"bm":0},{"ddd":0,"ind":4,"ty":4,"nm":"Shape Layer 36","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[540,960,0],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-203,408],[-205,419],[-401,408],[-388,449],[-397,516],[-398,605],[-419,725],[-416,904],[-413.5,967],[-198,978.5],[-167.5,833.5],[-169,777],[-144.5,423]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"bm":0,"g":{"p":3,"k":{"a":0,"k":[0,0.071,0.071,0.204,0.593,0.088,0.09,0.235,1,0.106,0.11,0.267],"ix":9}},"s":{"a":0,"k":[-400.449,660.41],"ix":5},"e":{"a":0,"k":[-170.207,675.324],"ix":6},"t":1,"nm":"Gradient Fill 1","mn":"ADBE Vector Graphic - G-Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":600.000024438501,"st":0,"bm":0},{"ddd":0,"ind":5,"ty":4,"nm":"Shape Layer 37","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[56,1688,0],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[9,-283],[-98,-273],[-122,272],[152,280],[95,-282]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"bm":0,"g":{"p":3,"k":{"a":0,"k":[0,0.114,0.094,0.259,0.593,0.104,0.1,0.259,1,0.094,0.106,0.259],"ix":9}},"s":{"a":0,"k":[-58.633,-44.273],"ix":5},"e":{"a":0,"k":[80.797,-55.992],"ix":6},"t":1,"nm":"Gradient Fill 1","mn":"ADBE Vector Graphic - G-Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":600.000024438501,"st":0,"bm":0},{"ddd":0,"ind":6,"ty":4,"nm":"tree Outlines 2","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[836,1936,0],"ix":2},"a":{"a":0,"k":[540,960,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-3.724,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[3.726,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-3.725,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-244.616,321.601],[-244.616,335.26],[244.615,335.26],[209.848,316.494],[188.738,301.734],[227.232,290.559],[193.706,275.659],[180.047,258.275],[229.715,250.825],[189.981,235.924],[203.639,217.298],[238.406,209.848],[209.848,197.431],[180.047,192.464],[140.312,168.872],[165.147,156.455],[122.928,144.038],[126.654,130.379],[188.738,109.27],[145.28,108.029],[124.17,91.886],[136.587,79.469],[124.17,57.119],[124.17,42.218],[103.061,31.042],[124.17,16.142],[100.577,11.175],[89.404,-9.383],[100.577,-23.592],[73.26,-28.559],[88.16,-43.46],[75.743,-48.426],[60.844,-62.085],[75.743,-74.502],[59.602,-78.227],[62.085,-89.402],[88.16,-106.786],[63.326,-109.27],[47.185,-124.17],[78.227,-131.621],[45.943,-135.346],[48.426,-144.038],[68.293,-153.971],[54.635,-168.872],[68.293,-173.838],[45.943,-189.981],[33.526,-212.331],[44.701,-218.54],[33.526,-224.748],[27.318,-239.649],[52.152,-248.34],[40.977,-254.549],[23.592,-265.725],[32.284,-274.417],[22.352,-284.35],[22.352,-294.284],[12.417,-317.876],[4.967,-335.26],[-4.967,-320.359],[-9.934,-312.909],[4.967,-300.492],[-9.934,-300.492],[-17.384,-284.35],[-29.801,-273.175],[-49.669,-266.966],[-29.801,-258.274],[-45.943,-248.34],[-45.943,-233.44],[-55.877,-212.331],[-45.943,-192.464],[-63.327,-192.464],[-63.327,-185.014],[-63.327,-175.08],[-75.744,-175.08],[-68.294,-161.421],[-78.228,-161.421],[-68.294,-144.038],[-83.195,-144.038],[-68.294,-132.862],[-83.195,-125.412],[-99.337,-125.412],[-91.887,-106.786],[-111.754,-96.853],[-83.195,-96.853],[-99.337,-86.919],[-83.195,-86.919],[-89.403,-75.744],[-114.237,-70.777],[-99.337,-64.568],[-89.403,-64.568],[-89.403,-47.185],[-89.403,-37.251],[-122.929,-37.251],[-131.621,-37.251],[-145.28,-37.251],[-135.346,-28.559],[-124.171,-17.384],[-112.995,-7.45],[-127.896,8.692],[-125.412,17.384],[-101.82,17.384],[-101.82,29.801],[-136.588,38.493],[-115.479,38.493],[-115.479,49.668],[-130.379,59.602],[-165.147,59.602],[-130.379,70.778],[-152.73,70.778],[-153.971,81.953],[-175.08,91.886],[-147.763,91.886],[-139.071,99.336],[-166.388,108.029],[-177.564,108.029],[-173.839,116.72],[-151.488,122.929],[-168.872,134.104],[-160.18,140.313],[-160.18,147.763],[-208.607,157.697],[-172.597,157.697],[-183.773,168.872],[-172.597,168.872],[-172.597,178.805],[-191.223,197.431],[-199.915,197.431],[-206.123,206.123],[-222.265,206.123],[-216.057,212.331],[-199.915,227.232],[-214.815,227.232],[-199.915,240.891],[-222.265,240.891],[-222.265,249.582],[-222.265,259.516],[-222.265,268.208],[-235.924,290.559],[-244.616,316.494]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.078000005086,0.059000000299,0.184000007779,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[540.602,960.276],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":600.000024438501,"st":0,"bm":0},{"ddd":0,"ind":7,"ty":4,"nm":"tree Outlines","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[1020,1788,0],"ix":2},"a":{"a":0,"k":[540,960,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-3.724,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[3.726,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-3.725,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-244.616,321.601],[-244.616,335.26],[244.615,335.26],[209.848,316.494],[188.738,301.734],[227.232,290.559],[193.706,275.659],[180.047,258.275],[229.715,250.825],[189.981,235.924],[203.639,217.298],[238.406,209.848],[209.848,197.431],[180.047,192.464],[140.312,168.872],[165.147,156.455],[122.928,144.038],[126.654,130.379],[188.738,109.27],[145.28,108.029],[124.17,91.886],[136.587,79.469],[124.17,57.119],[124.17,42.218],[103.061,31.042],[124.17,16.142],[100.577,11.175],[89.404,-9.383],[100.577,-23.592],[73.26,-28.559],[88.16,-43.46],[75.743,-48.426],[60.844,-62.085],[75.743,-74.502],[59.602,-78.227],[62.085,-89.402],[88.16,-106.786],[63.326,-109.27],[47.185,-124.17],[78.227,-131.621],[45.943,-135.346],[48.426,-144.038],[68.293,-153.971],[54.635,-168.872],[68.293,-173.838],[45.943,-189.981],[33.526,-212.331],[44.701,-218.54],[33.526,-224.748],[27.318,-239.649],[52.152,-248.34],[40.977,-254.549],[23.592,-265.725],[32.284,-274.417],[22.352,-284.35],[22.352,-294.284],[12.417,-317.876],[4.967,-335.26],[-4.967,-320.359],[-9.934,-312.909],[4.967,-300.492],[-9.934,-300.492],[-17.384,-284.35],[-29.801,-273.175],[-49.669,-266.966],[-29.801,-258.274],[-45.943,-248.34],[-45.943,-233.44],[-55.877,-212.331],[-45.943,-192.464],[-63.327,-192.464],[-63.327,-185.014],[-63.327,-175.08],[-75.744,-175.08],[-68.294,-161.421],[-78.228,-161.421],[-68.294,-144.038],[-83.195,-144.038],[-68.294,-132.862],[-83.195,-125.412],[-99.337,-125.412],[-91.887,-106.786],[-111.754,-96.853],[-83.195,-96.853],[-99.337,-86.919],[-83.195,-86.919],[-89.403,-75.744],[-114.237,-70.777],[-99.337,-64.568],[-89.403,-64.568],[-89.403,-47.185],[-89.403,-37.251],[-122.929,-37.251],[-131.621,-37.251],[-145.28,-37.251],[-135.346,-28.559],[-124.171,-17.384],[-112.995,-7.45],[-127.896,8.692],[-125.412,17.384],[-101.82,17.384],[-101.82,29.801],[-136.588,38.493],[-115.479,38.493],[-115.479,49.668],[-130.379,59.602],[-165.147,59.602],[-130.379,70.778],[-152.73,70.778],[-153.971,81.953],[-175.08,91.886],[-147.763,91.886],[-139.071,99.336],[-166.388,108.029],[-177.564,108.029],[-173.839,116.72],[-151.488,122.929],[-168.872,134.104],[-160.18,140.313],[-160.18,147.763],[-208.607,157.697],[-172.597,157.697],[-183.773,168.872],[-172.597,168.872],[-172.597,178.805],[-191.223,197.431],[-199.915,197.431],[-206.123,206.123],[-222.265,206.123],[-216.057,212.331],[-199.915,227.232],[-214.815,227.232],[-199.915,240.891],[-222.265,240.891],[-222.265,249.582],[-222.265,259.516],[-222.265,268.208],[-235.924,290.559],[-244.616,316.494]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.078000005086,0.059000000299,0.184000007779,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[540.602,960.276],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":600.000024438501,"st":0,"bm":0},{"ddd":0,"ind":8,"ty":4,"nm":"Shape Layer 7","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[828,1244,0],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[156,-122],[-330,712],[674,700]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"bm":0,"g":{"p":3,"k":{"a":0,"k":[0,0.165,0.225,0.447,0.434,0.15,0.158,0.4,1,0.134,0.092,0.353],"ix":9}},"s":{"a":0,"k":[295.906,206.641],"ix":5},"e":{"a":0,"k":[-96.5,472.844],"ix":6},"t":1,"nm":"Gradient Fill 1","mn":"ADBE Vector Graphic - G-Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":600.000024438501,"st":0,"bm":0},{"ddd":0,"ind":9,"ty":4,"nm":"Shape Layer 39","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[-112,556,0],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[460,-244],[100,1104],[952,988]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"bm":0,"g":{"p":3,"k":{"a":0,"k":[0,0.216,0.282,0.471,0.362,0.155,0.194,0.365,1,0.094,0.106,0.259],"ix":9}},"s":{"a":0,"k":[546.141,134.328],"ix":5},"e":{"a":0,"k":[56.422,306.391],"ix":6},"t":1,"nm":"Gradient Fill 1","mn":"ADBE Vector Graphic - G-Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[653.344,404.922],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":600.000024438501,"st":0,"bm":0},{"ddd":0,"ind":10,"ty":4,"nm":"star3","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[496,1103,0],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[98.256,99.32,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[268.43,268.43],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"bm":0,"g":{"p":5,"k":{"a":0,"k":[0,0.478,0.588,0.737,0.027,0.478,0.588,0.737,0.045,0.478,0.588,0.737,0.522,0.739,0.794,0.869,1,1,1,1,0,1,0.462,0.5,1,0],"ix":9}},"s":{"a":0,"k":[-14.898,21.108],"ix":5},"e":{"a":0,"k":[99.086,-26.214],"ix":6},"t":2,"h":{"a":0,"k":0,"ix":7},"a":{"a":0,"k":0,"ix":8},"nm":"Gradient Fill 1","mn":"ADBE Vector Graphic - G-Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[158.215,-647.785],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[9.048,8.538],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 2","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":600.000024438501,"st":0,"bm":0},{"ddd":0,"ind":11,"ty":4,"nm":"star1","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[163,953,0],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[98.256,108.39,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[268.43,268.43],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"bm":0,"g":{"p":5,"k":{"a":0,"k":[0,0.478,0.588,0.737,0.027,0.478,0.588,0.737,0.045,0.478,0.588,0.737,0.522,0.739,0.794,0.869,1,1,1,1,0,1,0.462,0.5,1,0],"ix":9}},"s":{"a":0,"k":[-14.898,21.108],"ix":5},"e":{"a":0,"k":[99.086,-26.214],"ix":6},"t":2,"h":{"a":0,"k":0,"ix":7},"a":{"a":0,"k":0,"ix":8},"nm":"Gradient Fill 1","mn":"ADBE Vector Graphic - G-Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[158.215,-647.785],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[6.198,6.198],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 2","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":600.000024438501,"st":0,"bm":0},{"ddd":0,"ind":12,"ty":4,"nm":"star2","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[503,682.5,0],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[98.256,99.32,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[268.43,268.43],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"bm":0,"g":{"p":5,"k":{"a":0,"k":[0,0.478,0.588,0.737,0.027,0.478,0.588,0.737,0.045,0.478,0.588,0.737,0.522,0.739,0.794,0.869,1,1,1,1,0,1,0.462,0.5,1,0],"ix":9}},"s":{"a":0,"k":[-14.898,21.108],"ix":5},"e":{"a":0,"k":[99.086,-26.214],"ix":6},"t":2,"h":{"a":0,"k":0,"ix":7},"a":{"a":0,"k":0,"ix":8},"nm":"Gradient Fill 1","mn":"ADBE Vector Graphic - G-Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[158.215,-647.785],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[6.198,6.198],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 2","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":600.000024438501,"st":0,"bm":0},{"ddd":0,"ind":13,"ty":4,"nm":"s","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[722,745.5,0],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[98.256,99.32,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[268.43,268.43],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"bm":0,"g":{"p":5,"k":{"a":0,"k":[0,0.478,0.588,0.737,0.027,0.478,0.588,0.737,0.045,0.478,0.588,0.737,0.522,0.739,0.794,0.869,1,1,1,1,0,1,0.462,0.5,1,0],"ix":9}},"s":{"a":0,"k":[-14.898,21.108],"ix":5},"e":{"a":0,"k":[99.086,-26.214],"ix":6},"t":2,"h":{"a":0,"k":0,"ix":7},"a":{"a":0,"k":0,"ix":8},"nm":"Gradient Fill 1","mn":"ADBE Vector Graphic - G-Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[158.215,-647.785],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[6.198,6.198],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 2","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":600.000024438501,"st":0,"bm":0},{"ddd":0,"ind":14,"ty":4,"nm":"s1","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[390,930.5,0],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[98.256,99.32,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[268.43,268.43],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"bm":0,"g":{"p":5,"k":{"a":0,"k":[0,0.478,0.588,0.737,0.027,0.478,0.588,0.737,0.045,0.478,0.588,0.737,0.522,0.739,0.794,0.869,1,1,1,1,0,1,0.462,0.5,1,0],"ix":9}},"s":{"a":0,"k":[-14.898,21.108],"ix":5},"e":{"a":0,"k":[99.086,-26.214],"ix":6},"t":2,"h":{"a":0,"k":0,"ix":7},"a":{"a":0,"k":0,"ix":8},"nm":"Gradient Fill 1","mn":"ADBE Vector Graphic - G-Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[158.215,-647.785],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[6.198,6.198],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 2","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":600.000024438501,"st":0,"bm":0},{"ddd":0,"ind":15,"ty":4,"nm":"s2","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[712.5,921.5,0],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[98.256,99.32,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[268.43,268.43],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"bm":0,"g":{"p":5,"k":{"a":0,"k":[0,0.478,0.588,0.737,0.027,0.478,0.588,0.737,0.045,0.478,0.588,0.737,0.522,0.739,0.794,0.869,1,1,1,1,0,1,0.462,0.5,1,0],"ix":9}},"s":{"a":0,"k":[-14.898,21.108],"ix":5},"e":{"a":0,"k":[99.086,-26.214],"ix":6},"t":2,"h":{"a":0,"k":0,"ix":7},"a":{"a":0,"k":0,"ix":8},"nm":"Gradient Fill 1","mn":"ADBE Vector Graphic - G-Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[158.215,-647.785],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[6.198,6.198],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 2","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":600.000024438501,"st":0,"bm":0},{"ddd":0,"ind":16,"ty":4,"nm":"s7","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[465.5,1330,0],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[101.455,98.177,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[268.43,268.43],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"bm":0,"g":{"p":5,"k":{"a":0,"k":[0,0.478,0.588,0.737,0.027,0.478,0.588,0.737,0.045,0.478,0.588,0.737,0.522,0.739,0.794,0.869,1,1,1,1,0,1,0.462,0.5,1,0],"ix":9}},"s":{"a":0,"k":[-14.898,21.108],"ix":5},"e":{"a":0,"k":[99.086,-26.214],"ix":6},"t":2,"h":{"a":0,"k":0,"ix":7},"a":{"a":0,"k":0,"ix":8},"nm":"Gradient Fill 1","mn":"ADBE Vector Graphic - G-Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[158.215,-647.785],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[4.454,4.568],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 2","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":600.000024438501,"st":0,"bm":0},{"ddd":0,"ind":17,"ty":4,"nm":"s6","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[703,1557,0],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[98.256,99.32,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[268.43,268.43],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"bm":0,"g":{"p":5,"k":{"a":0,"k":[0,0.478,0.588,0.737,0.027,0.478,0.588,0.737,0.045,0.478,0.588,0.737,0.522,0.739,0.794,0.869,1,1,1,1,0,1,0.462,0.5,1,0],"ix":9}},"s":{"a":0,"k":[-14.898,21.108],"ix":5},"e":{"a":0,"k":[99.086,-26.214],"ix":6},"t":2,"h":{"a":0,"k":0,"ix":7},"a":{"a":0,"k":0,"ix":8},"nm":"Gradient Fill 1","mn":"ADBE Vector Graphic - G-Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[158.215,-647.785],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[6.198,6.198],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 2","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":600.000024438501,"st":0,"bm":0},{"ddd":0,"ind":18,"ty":4,"nm":"s3","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[536,758,0],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[98.256,99.32,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[268.43,268.43],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"bm":0,"g":{"p":5,"k":{"a":0,"k":[0,0.478,0.588,0.737,0.027,0.478,0.588,0.737,0.045,0.478,0.588,0.737,0.522,0.739,0.794,0.869,1,1,1,1,0,1,0.462,0.5,1,0],"ix":9}},"s":{"a":0,"k":[-14.898,21.108],"ix":5},"e":{"a":0,"k":[99.086,-26.214],"ix":6},"t":2,"h":{"a":0,"k":0,"ix":7},"a":{"a":0,"k":0,"ix":8},"nm":"Gradient Fill 1","mn":"ADBE Vector Graphic - G-Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[158.215,-647.785],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[6.198,6.198],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 2","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":600.000024438501,"st":0,"bm":0},{"ddd":0,"ind":19,"ty":4,"nm":"Shape Layer 2","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[540,1016,0],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-260,-198],[-618,640],[150,660]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"bm":0,"g":{"p":3,"k":{"a":0,"k":[0,0.114,0.094,0.259,0.5,0.161,0.175,0.351,1,0.208,0.255,0.443],"ix":9}},"s":{"a":0,"k":[-439.539,224.445],"ix":5},"e":{"a":0,"k":[-154.18,65.836],"ix":6},"t":1,"nm":"Gradient Fill 1","mn":"ADBE Vector Graphic - G-Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 2","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"bm":0,"g":{"p":3,"k":{"a":0,"k":[0,0.114,0.094,0.259,0.5,0.104,0.1,0.259,1,0.094,0.106,0.259],"ix":9}},"s":{"a":0,"k":[0,0],"ix":5},"e":{"a":0,"k":[100,0],"ix":6},"t":1,"nm":"Gradient Fill 1","mn":"ADBE Vector Graphic - G-Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","np":2,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":600.000024438501,"st":0,"bm":0},{"ddd":0,"ind":20,"ty":4,"nm":"s5","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[633.5,1029.75,0],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[93.083,56.863,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[11.807,10.45],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"bm":0,"g":{"p":5,"k":{"a":0,"k":[0,0.478,0.588,0.737,0.027,0.478,0.588,0.737,0.045,0.478,0.588,0.737,0.522,0.739,0.794,0.869,1,1,1,1,0,1,0.462,0.5,1,0],"ix":9}},"s":{"a":0,"k":[0,0],"ix":5},"e":{"a":0,"k":[5.51,0.608],"ix":6},"t":2,"h":{"a":0,"k":0,"ix":7},"a":{"a":0,"k":0,"ix":8},"nm":"Gradient Fill 1","mn":"ADBE Vector Graphic - G-Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[-351.848,-751.274],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[149.554,226.43],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 3","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":600.000024438501,"st":0,"bm":0},{"ddd":0,"ind":21,"ty":4,"nm":"s4","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[511.5,959.5,0],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[92.683,56.336,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[11.807,10.45],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"bm":0,"g":{"p":5,"k":{"a":0,"k":[0,0.478,0.588,0.737,0.027,0.478,0.588,0.737,0.045,0.478,0.588,0.737,0.522,0.739,0.794,0.869,1,1,1,1,0,1,0.462,0.5,1,0],"ix":9}},"s":{"a":0,"k":[0,0],"ix":5},"e":{"a":0,"k":[5.51,0.608],"ix":6},"t":2,"h":{"a":0,"k":0,"ix":7},"a":{"a":0,"k":0,"ix":8},"nm":"Gradient Fill 1","mn":"ADBE Vector Graphic - G-Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[-351.848,-751.274],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[149.554,149.554],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 3","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":600.000024438501,"st":0,"bm":0},{"ddd":0,"ind":22,"ty":4,"nm":"Shape Layer 38","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[468,910,0],"ix":2},"a":{"a":0,"k":[260,468,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[156,-64],[-306,804],[642,716]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"bm":0,"g":{"p":3,"k":{"a":0,"k":[0,0.192,0.224,0.427,0.16,0.178,0.202,0.398,1,0.165,0.18,0.369],"ix":9}},"s":{"a":0,"k":[272.641,358.016],"ix":5},"e":{"a":0,"k":[-219.922,602.906],"ix":6},"t":1,"nm":"Gradient Fill 1","mn":"ADBE Vector Graphic - G-Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[334.672,511.578],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":600.000024438501,"st":0,"bm":0},{"ddd":0,"ind":24,"ty":4,"nm":"moon Outlines","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":425,"s":[100]},{"t":598.000024357039,"s":[0]}],"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[890,1402,0],"to":[0,-167.333,0],"ti":[0,167.333,0]},{"t":423.000017229143,"s":[890,398,0]}],"ix":2},"a":{"a":0,"k":[212.5,217.5,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[97.293,0],[13.483,-3.304],[0,-78.181],[82.248,0],[26.101,22.552],[-64.394,0],[0,97.293]],"o":[[-14.502,0],[76.599,6.149],[0,82.249],[-37.201,0],[30.729,51.573],[97.293,0],[0,-97.293]],"v":[[-12.371,-176.164],[-54.437,-171.071],[82.42,-22.676],[-66.503,126.248],[-163.792,90.024],[-12.371,176.164],[163.792,0]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.705999995213,0.779999976065,0.855000035903,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[212.554,215.858],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":600.000024438501,"st":0,"bm":0},{"ddd":0,"ind":25,"ty":4,"nm":"Shape Layer 15","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[1122,1213,0],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[187.037,145.83,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0]],"o":[[0,0]],"v":[[-390.747,-739.902]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"bm":0,"g":{"p":5,"k":{"a":0,"k":[0,0.478,0.588,0.737,0.027,0.478,0.588,0.737,0.045,0.478,0.588,0.737,0.522,0.739,0.794,0.869,1,1,1,1,0,1,0.462,0.5,1,0],"ix":9}},"s":{"a":0,"k":[0,0],"ix":5},"e":{"a":0,"k":[100,0],"ix":6},"t":2,"h":{"a":0,"k":0,"ix":7},"a":{"a":0,"k":0,"ix":8},"nm":"Gradient Fill 1","mn":"ADBE Vector Graphic - G-Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[11.807,10.45],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"bm":0,"g":{"p":5,"k":{"a":0,"k":[0,0.478,0.588,0.737,0.027,0.478,0.588,0.737,0.045,0.478,0.588,0.737,0.522,0.739,0.794,0.869,1,1,1,1,0,1,0.462,0.5,1,0],"ix":9}},"s":{"a":0,"k":[0,0],"ix":5},"e":{"a":0,"k":[5.51,0.608],"ix":6},"t":2,"h":{"a":0,"k":0,"ix":7},"a":{"a":0,"k":0,"ix":8},"nm":"Gradient Fill 1","mn":"ADBE Vector Graphic - G-Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[-351.848,-751.274],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[110.146,149.554],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 3","np":3,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":600.000024438501,"st":0,"bm":0},{"ddd":0,"ind":26,"ty":4,"nm":"Shape Layer 14","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[1121,1213,0],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[186.567,60.057,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0]],"o":[[0,0]],"v":[[-349.214,-749.319]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"bm":0,"g":{"p":5,"k":{"a":0,"k":[0,0.478,0.588,0.737,0.027,0.478,0.588,0.737,0.045,0.478,0.588,0.737,0.522,0.739,0.794,0.869,1,1,1,1,0,1,0.462,0.5,1,0],"ix":9}},"s":{"a":0,"k":[0,0],"ix":5},"e":{"a":0,"k":[100,0],"ix":6},"t":2,"h":{"a":0,"k":0,"ix":7},"a":{"a":0,"k":0,"ix":8},"nm":"Gradient Fill 1","mn":"ADBE Vector Graphic - G-Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[11.807,10.45],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"bm":0,"g":{"p":5,"k":{"a":0,"k":[0,0.478,0.588,0.737,0.027,0.478,0.588,0.737,0.045,0.478,0.588,0.737,0.522,0.739,0.794,0.869,1,1,1,1,0,1,0.462,0.5,1,0],"ix":9}},"s":{"a":0,"k":[0,0],"ix":5},"e":{"a":0,"k":[5.51,0.608],"ix":6},"t":2,"h":{"a":0,"k":0,"ix":7},"a":{"a":0,"k":0,"ix":8},"nm":"Gradient Fill 1","mn":"ADBE Vector Graphic - G-Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[-351.848,-751.274],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[77.684,149.554],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 3","np":3,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":600.000024438501,"st":0,"bm":0},{"ddd":0,"ind":27,"ty":4,"nm":"Shape Layer 12","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[1122,1213,0],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[94.346,90.748,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[11.807,10.45],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"bm":0,"g":{"p":5,"k":{"a":0,"k":[0,0.478,0.588,0.737,0.027,0.478,0.588,0.737,0.045,0.478,0.588,0.737,0.522,0.739,0.794,0.869,1,1,1,1,0,1,0.462,0.5,1,0],"ix":9}},"s":{"a":0,"k":[0,0],"ix":5},"e":{"a":0,"k":[5.51,0.608],"ix":6},"t":2,"h":{"a":0,"k":0,"ix":7},"a":{"a":0,"k":0,"ix":8},"nm":"Gradient Fill 1","mn":"ADBE Vector Graphic - G-Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[-351.848,-751.274],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[149.554,149.554],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 3","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":600.000024438501,"st":0,"bm":0},{"ddd":0,"ind":28,"ty":4,"nm":"Shape Layer 13","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[773,1283,0],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[-70.344,93.609,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[11.807,10.45],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"bm":0,"g":{"p":5,"k":{"a":0,"k":[0,0.478,0.588,0.737,0.027,0.478,0.588,0.737,0.045,0.478,0.588,0.737,0.522,0.739,0.794,0.869,1,1,1,1,0,1,0.462,0.5,1,0],"ix":9}},"s":{"a":0,"k":[0,0],"ix":5},"e":{"a":0,"k":[5.51,0.608],"ix":6},"t":2,"h":{"a":0,"k":0,"ix":7},"a":{"a":0,"k":0,"ix":8},"nm":"Gradient Fill 1","mn":"ADBE Vector Graphic - G-Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[-351.848,-751.274],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[286.947,217.358],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 3","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":600.000024438501,"st":0,"bm":0},{"ddd":0,"ind":29,"ty":4,"nm":"Shape Layer 11","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[773,1283,0],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[94.346,101.777,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[11.807,10.45],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"bm":0,"g":{"p":5,"k":{"a":0,"k":[0,0.478,0.588,0.737,0.027,0.478,0.588,0.737,0.045,0.478,0.588,0.737,0.522,0.739,0.794,0.869,1,1,1,1,0,1,0.462,0.5,1,0],"ix":9}},"s":{"a":0,"k":[0,0],"ix":5},"e":{"a":0,"k":[5.51,0.608],"ix":6},"t":2,"h":{"a":0,"k":0,"ix":7},"a":{"a":0,"k":0,"ix":8},"nm":"Gradient Fill 1","mn":"ADBE Vector Graphic - G-Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[-351.848,-751.274],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[149.554,149.554],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 3","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":600.000024438501,"st":0,"bm":0},{"ddd":0,"ind":30,"ty":4,"nm":"Shape Layer 9","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[462.5,954.5,0],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[94.346,114.555,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[11.807,10.45],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"bm":0,"g":{"p":5,"k":{"a":0,"k":[0,0.478,0.588,0.737,0.027,0.478,0.588,0.737,0.045,0.478,0.588,0.737,0.522,0.739,0.794,0.869,1,1,1,1,0,1,0.462,0.5,1,0],"ix":9}},"s":{"a":0,"k":[0,0],"ix":5},"e":{"a":0,"k":[5.51,0.608],"ix":6},"t":2,"h":{"a":0,"k":0,"ix":7},"a":{"a":0,"k":0,"ix":8},"nm":"Gradient Fill 1","mn":"ADBE Vector Graphic - G-Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[-351.848,-751.274],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[149.554,149.554],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 3","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":600.000024438501,"st":0,"bm":0},{"ddd":0,"ind":31,"ty":4,"nm":"Shape Layer 29","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":294,"s":[1492,919,0],"to":[-159.333,109.333,0],"ti":[159.333,-109.333,0]},{"t":378.000015396256,"s":[536,1575,0]}],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[47.455,46.814,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[-4.5,-3],[0,0]],"o":[[0,0],[0,0],[4.5,3],[0,0]],"v":[[-172.715,-651.231],[-349,-509],[-349.25,-499.25],[-339.117,-501.195]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"bm":0,"g":{"p":5,"k":{"a":0,"k":[0,0.478,0.588,0.737,0.027,0.478,0.588,0.737,0.045,0.478,0.588,0.737,0.522,0.739,0.794,0.869,1,1,1,1,0,1,0.462,0.5,1,0],"ix":9}},"s":{"a":0,"k":[-398.399,-437.612],"ix":5},"e":{"a":0,"k":[-171.582,-613.772],"ix":6},"t":1,"nm":"Gradient Fill 1","mn":"ADBE Vector Graphic - G-Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[102.513,100.844],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":600.000024438501,"st":0,"bm":0},{"ddd":0,"ind":32,"ty":4,"nm":"Shape Layer 28","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[0]},{"t":38.0000015477717,"s":[100]}],"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[1284,832,0],"to":[-145.667,100.333,0],"ti":[145.667,-100.333,0]},{"t":38.0000015477717,"s":[410,1434,0]}],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[47.455,46.814,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[-4.5,-3],[0,0]],"o":[[0,0],[0,0],[4.5,3],[0,0]],"v":[[-172.715,-651.231],[-349,-509],[-349.25,-499.25],[-339.117,-501.195]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"bm":0,"g":{"p":5,"k":{"a":0,"k":[0,0.478,0.588,0.737,0.027,0.478,0.588,0.737,0.045,0.478,0.588,0.737,0.522,0.739,0.794,0.869,1,1,1,1,0,1,0.462,0.5,1,0],"ix":9}},"s":{"a":0,"k":[-398.399,-437.612],"ix":5},"e":{"a":0,"k":[-171.582,-613.772],"ix":6},"t":1,"nm":"Gradient Fill 1","mn":"ADBE Vector Graphic - G-Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[102.513,100.844],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":600.000024438501,"st":0,"bm":0},{"ddd":0,"ind":33,"ty":4,"nm":"Shape Layer 6","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[540,1016,0],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-494,-642],[-820,414],[-138,504]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"bm":0,"g":{"p":3,"k":{"a":0,"k":[0,0.216,0.263,0.463,0.5,0.21,0.276,0.473,1,0.204,0.29,0.482],"ix":9}},"s":{"a":0,"k":[-340.766,-9.148],"ix":5},"e":{"a":0,"k":[-744.539,129.969],"ix":6},"t":1,"nm":"Gradient Fill 1","mn":"ADBE Vector Graphic - G-Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":600.000024438501,"st":0,"bm":0},{"ddd":0,"ind":34,"ty":4,"nm":"Shape Layer 41","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":501,"s":[1116,-60,0],"to":[-8.667,13.333,0],"ti":[212.667,-168.667,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":502,"s":[1064,20,0],"to":[-212.667,168.667,0],"ti":[204,-155.333,0]},{"t":597.000024316308,"s":[-160,952,0]}],"ix":2},"a":{"a":0,"k":[-280.315,-583.002,0],"ix":1},"s":{"a":0,"k":[75.833,73.002,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[-4.5,-3],[0,0]],"o":[[0,0],[0,0],[4.5,3],[0,0]],"v":[[-172.715,-651.231],[-349,-509],[-349.25,-499.25],[-339.117,-501.195]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"bm":0,"g":{"p":5,"k":{"a":0,"k":[0,0.478,0.588,0.737,0.027,0.478,0.588,0.737,0.045,0.478,0.588,0.737,0.522,0.739,0.794,0.869,1,1,1,1,0,1,0.462,0.5,1,0],"ix":9}},"s":{"a":0,"k":[-398.399,-437.612],"ix":5},"e":{"a":0,"k":[-171.582,-613.772],"ix":6},"t":1,"nm":"Gradient Fill 1","mn":"ADBE Vector Graphic - G-Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[102.513,100.844],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":600.000024438501,"st":0,"bm":0},{"ddd":0,"ind":35,"ty":4,"nm":"Shape Layer 32","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[804,-108,0],"to":[-153.333,119.333,0],"ti":[153.333,-119.333,0]},{"t":95.0000038694293,"s":[-116,608,0]}],"ix":2},"a":{"a":0,"k":[-280.315,-583.002,0],"ix":1},"s":{"a":0,"k":[75.833,73.002,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[-4.5,-3],[0,0]],"o":[[0,0],[0,0],[4.5,3],[0,0]],"v":[[-172.715,-651.231],[-349,-509],[-349.25,-499.25],[-339.117,-501.195]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"bm":0,"g":{"p":5,"k":{"a":0,"k":[0,0.478,0.588,0.737,0.027,0.478,0.588,0.737,0.045,0.478,0.588,0.737,0.522,0.739,0.794,0.869,1,1,1,1,0,1,0.462,0.5,1,0],"ix":9}},"s":{"a":0,"k":[-398.399,-437.612],"ix":5},"e":{"a":0,"k":[-171.582,-613.772],"ix":6},"t":1,"nm":"Gradient Fill 1","mn":"ADBE Vector Graphic - G-Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[102.513,100.844],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":600.000024438501,"st":0,"bm":0},{"ddd":0,"ind":36,"ty":4,"nm":"Shape Layer 31","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":80,"s":[509,-58,0],"to":[-102,78,0],"ti":[102,-78,0]},{"t":191.000007779589,"s":[-103,410,0]}],"ix":2},"a":{"a":0,"k":[-280.315,-583.002,0],"ix":1},"s":{"a":0,"k":[45.349,45.089,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[-4.5,-3],[0,0]],"o":[[0,0],[0,0],[4.5,3],[0,0]],"v":[[-172.715,-651.231],[-349,-509],[-349.25,-499.25],[-339.117,-501.195]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"bm":0,"g":{"p":5,"k":{"a":0,"k":[0,0.478,0.588,0.737,0.027,0.478,0.588,0.737,0.045,0.478,0.588,0.737,0.522,0.739,0.794,0.869,1,1,1,1,0,1,0.462,0.5,1,0],"ix":9}},"s":{"a":0,"k":[-398.399,-437.612],"ix":5},"e":{"a":0,"k":[-171.582,-613.772],"ix":6},"t":1,"nm":"Gradient Fill 1","mn":"ADBE Vector Graphic - G-Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[102.513,100.844],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":600.000024438501,"st":0,"bm":0},{"ddd":0,"ind":37,"ty":4,"nm":"Shape Layer 27","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":150,"s":[722,479,0],"to":[-100.667,60.667,0],"ti":[100.667,-60.667,0]},{"t":250.000010182709,"s":[118,843,0]}],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[103.455,102.058,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[-4.5,-3],[0,0]],"o":[[0,0],[0,0],[4.5,3],[0,0]],"v":[[-172.715,-651.231],[-349,-509],[-349.25,-499.25],[-339.117,-501.195]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"bm":0,"g":{"p":5,"k":{"a":0,"k":[0,0.478,0.588,0.737,0.027,0.478,0.588,0.737,0.045,0.478,0.588,0.737,0.522,0.739,0.794,0.869,1,1,1,1,0,1,0.462,0.5,1,0],"ix":9}},"s":{"a":0,"k":[-398.399,-437.612],"ix":5},"e":{"a":0,"k":[-171.582,-613.772],"ix":6},"t":1,"nm":"Gradient Fill 1","mn":"ADBE Vector Graphic - G-Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[102.513,100.844],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":600.000024438501,"st":0,"bm":0},{"ddd":0,"ind":38,"ty":4,"nm":"Shape Layer 26","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":230,"s":[1510,1039,0],"to":[-160.667,120.667,0],"ti":[160.667,-120.667,0]},{"t":527.00002146515,"s":[546,1763,0]}],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[104.41,103,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[-4.5,-3],[0,0]],"o":[[0,0],[0,0],[4.5,3],[0,0]],"v":[[-172.715,-651.231],[-349,-509],[-349.25,-499.25],[-339.117,-501.195]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"bm":0,"g":{"p":5,"k":{"a":0,"k":[0,0.478,0.588,0.737,0.027,0.478,0.588,0.737,0.045,0.478,0.588,0.737,0.522,0.739,0.794,0.869,1,1,1,1,0,1,0.462,0.5,1,0],"ix":9}},"s":{"a":0,"k":[-398.399,-437.612],"ix":5},"e":{"a":0,"k":[-171.582,-613.772],"ix":6},"t":1,"nm":"Gradient Fill 1","mn":"ADBE Vector Graphic - G-Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[102.513,100.844],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":600.000024438501,"st":0,"bm":0},{"ddd":0,"ind":39,"ty":4,"nm":"Shape Layer 25","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":120,"s":[1490,947,0],"to":[-251.333,170.667,0],"ti":[251.333,-170.667,0]},{"t":303.000012341443,"s":[-18,1971,0]}],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[103.455,102.058,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[-4.5,-3],[0,0]],"o":[[0,0],[0,0],[4.5,3],[0,0]],"v":[[-172.715,-651.231],[-349,-509],[-349.25,-499.25],[-339.117,-501.195]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"bm":0,"g":{"p":5,"k":{"a":0,"k":[0,0.478,0.588,0.737,0.027,0.478,0.588,0.737,0.045,0.478,0.588,0.737,0.522,0.739,0.794,0.869,1,1,1,1,0,1,0.462,0.5,1,0],"ix":9}},"s":{"a":0,"k":[-398.399,-437.612],"ix":5},"e":{"a":0,"k":[-171.582,-613.772],"ix":6},"t":1,"nm":"Gradient Fill 1","mn":"ADBE Vector Graphic - G-Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[102.513,100.844],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":600.000024438501,"st":0,"bm":0},{"ddd":0,"ind":40,"ty":4,"nm":"Shape Layer 24","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":162,"s":[0]},{"t":278.000011323172,"s":[100]}],"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":162,"s":[1534,523,0],"to":[-220.667,165.333,0],"ti":[220.667,-165.333,0]},{"t":275.00001120098,"s":[210,1515,0]}],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[103.455,102.058,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[-4.5,-3],[0,0]],"o":[[0,0],[0,0],[4.5,3],[0,0]],"v":[[-172.715,-651.231],[-349,-509],[-349.25,-499.25],[-339.117,-501.195]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"bm":0,"g":{"p":5,"k":{"a":0,"k":[0,0.478,0.588,0.737,0.027,0.478,0.588,0.737,0.045,0.478,0.588,0.737,0.522,0.739,0.794,0.869,1,1,1,1,0,1,0.462,0.5,1,0],"ix":9}},"s":{"a":0,"k":[-398.399,-437.612],"ix":5},"e":{"a":0,"k":[-171.582,-613.772],"ix":6},"t":1,"nm":"Gradient Fill 1","mn":"ADBE Vector Graphic - G-Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[102.513,100.844],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":600.000024438501,"st":0,"bm":0},{"ddd":0,"ind":41,"ty":4,"nm":"Shape Layer 23","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":403,"s":[0]},{"t":599.00002439777,"s":[100]}],"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":403,"s":[1506,515,0],"to":[-2.128,1.559,0],"ti":[2.253,-1.651,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":404,"s":[1327.429,439.816,0],"to":[-225.053,164.946,0],"ti":[212.539,-155.774,0]},{"t":599.00002439777,"s":[-206,1627,0]}],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[103.455,102.058,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[-4.5,-3],[0,0]],"o":[[0,0],[0,0],[4.5,3],[0,0]],"v":[[-172.715,-651.231],[-349,-509],[-349.25,-499.25],[-339.117,-501.195]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"bm":0,"g":{"p":5,"k":{"a":0,"k":[0,0.478,0.588,0.737,0.027,0.478,0.588,0.737,0.045,0.478,0.588,0.737,0.522,0.739,0.794,0.869,1,1,1,1,0,1,0.462,0.5,1,0],"ix":9}},"s":{"a":0,"k":[-398.399,-437.612],"ix":5},"e":{"a":0,"k":[-171.582,-613.772],"ix":6},"t":1,"nm":"Gradient Fill 1","mn":"ADBE Vector Graphic - G-Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[102.513,100.844],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":600.000024438501,"st":0,"bm":0},{"ddd":0,"ind":42,"ty":4,"nm":"Shape Layer 40","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":551,"s":[1483.505,711.881,0],"to":[-246.32,185.088,0],"ti":[233.891,-175.749,0]},{"t":596.000024275578,"s":[-58,1835,0]}],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[103.455,102.058,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[-4.5,-3],[0,0]],"o":[[0,0],[0,0],[4.5,3],[0,0]],"v":[[-172.715,-651.231],[-349,-509],[-349.25,-499.25],[-339.117,-501.195]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"bm":0,"g":{"p":5,"k":{"a":0,"k":[0,0.478,0.588,0.737,0.027,0.478,0.588,0.737,0.045,0.478,0.588,0.737,0.522,0.739,0.794,0.869,1,1,1,1,0,1,0.462,0.5,1,0],"ix":9}},"s":{"a":0,"k":[-398.399,-437.612],"ix":5},"e":{"a":0,"k":[-171.582,-613.772],"ix":6},"t":1,"nm":"Gradient Fill 1","mn":"ADBE Vector Graphic - G-Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[102.513,100.844],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":600.000024438501,"st":0,"bm":0},{"ddd":0,"ind":43,"ty":4,"nm":"Shape Layer 22","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":226,"s":[1290,487,0],"to":[-236,177.333,0],"ti":[236,-177.333,0]},{"t":386.000015722102,"s":[-126,1551,0]}],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[103.455,102.058,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[-4.5,-3],[0,0]],"o":[[0,0],[0,0],[4.5,3],[0,0]],"v":[[-172.715,-651.231],[-349,-509],[-349.25,-499.25],[-339.117,-501.195]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"bm":0,"g":{"p":5,"k":{"a":0,"k":[0,0.478,0.588,0.737,0.027,0.478,0.588,0.737,0.045,0.478,0.588,0.737,0.522,0.739,0.794,0.869,1,1,1,1,0,1,0.462,0.5,1,0],"ix":9}},"s":{"a":0,"k":[-398.399,-437.612],"ix":5},"e":{"a":0,"k":[-171.582,-613.772],"ix":6},"t":1,"nm":"Gradient Fill 1","mn":"ADBE Vector Graphic - G-Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[102.513,100.844],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":600.000024438501,"st":0,"bm":0},{"ddd":0,"ind":44,"ty":4,"nm":"Shape Layer 33","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":54,"s":[1363,533,0],"to":[-222.667,188,0],"ti":[222.667,-188,0]},{"t":175.000007127896,"s":[27,1661,0]}],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[71.727,64.843,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[-4.5,-3],[0,0]],"o":[[0,0],[0,0],[4.5,3],[0,0]],"v":[[-172.715,-651.231],[-349,-509],[-349.25,-499.25],[-339.117,-501.195]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"bm":0,"g":{"p":5,"k":{"a":0,"k":[0,0.478,0.588,0.737,0.027,0.478,0.588,0.737,0.045,0.478,0.588,0.737,0.522,0.739,0.794,0.869,1,1,1,1,0,1,0.462,0.5,1,0],"ix":9}},"s":{"a":0,"k":[-398.399,-437.612],"ix":5},"e":{"a":0,"k":[-171.582,-613.772],"ix":6},"t":1,"nm":"Gradient Fill 1","mn":"ADBE Vector Graphic - G-Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[102.513,100.844],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":600.000024438501,"st":0,"bm":0},{"ddd":0,"ind":45,"ty":4,"nm":"Shape Layer 21","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":306,"s":[1526,691,0],"to":[-201.333,131.333,0],"ti":[201.333,-131.333,0]},{"t":406.000016536719,"s":[318,1479,0]}],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[103.455,102.058,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[-4.5,-3],[0,0]],"o":[[0,0],[0,0],[4.5,3],[0,0]],"v":[[-172.715,-651.231],[-349,-509],[-349.25,-499.25],[-339.117,-501.195]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"bm":0,"g":{"p":5,"k":{"a":0,"k":[0,0.478,0.588,0.737,0.027,0.478,0.588,0.737,0.045,0.478,0.588,0.737,0.522,0.739,0.794,0.869,1,1,1,1,0,1,0.462,0.5,1,0],"ix":9}},"s":{"a":0,"k":[-398.399,-437.612],"ix":5},"e":{"a":0,"k":[-171.582,-613.772],"ix":6},"t":1,"nm":"Gradient Fill 1","mn":"ADBE Vector Graphic - G-Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[102.513,100.844],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":600.000024438501,"st":0,"bm":0},{"ddd":0,"ind":46,"ty":4,"nm":"Shape Layer 30","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[0]},{"t":259.000010549286,"s":[100]}],"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[140,1711,0],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[103.455,102.058,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[-4.5,-3],[0,0]],"o":[[0,0],[0,0],[4.5,3],[0,0]],"v":[[-172.715,-651.231],[-349,-509],[-349.25,-499.25],[-339.117,-501.195]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"bm":0,"g":{"p":5,"k":{"a":0,"k":[0,0.478,0.588,0.737,0.027,0.478,0.588,0.737,0.045,0.478,0.588,0.737,0.522,0.739,0.794,0.869,1,1,1,1,0,1,0.462,0.5,1,0],"ix":9}},"s":{"a":0,"k":[-398.399,-437.612],"ix":5},"e":{"a":0,"k":[-171.582,-613.772],"ix":6},"t":1,"nm":"Gradient Fill 1","mn":"ADBE Vector Graphic - G-Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[102.513,100.844],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":600.000024438501,"st":0,"bm":0},{"ddd":0,"ind":47,"ty":4,"nm":"Shape Layer 8","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[0]},{"t":339.000013807753,"s":[100]}],"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[946,-85,0],"to":[-129.333,94,0],"ti":[129.333,-94,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":202,"s":[170,479,0],"to":[-129.333,94,0],"ti":[0,0,0]},{"t":340.000013848484,"s":[-279,831,0]}],"ix":2},"a":{"a":0,"k":[-327.042,-526.668,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":0,"s":[101.369,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":47,"s":[135.314,110.217,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":339,"s":[188.455,185.91,100]},{"t":426.000017351336,"s":[202.738,200,100]}],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[-4.5,-3],[0,0]],"o":[[0,0],[0,0],[4.5,3],[0,0]],"v":[[-172.715,-651.231],[-349,-509],[-349.25,-499.25],[-339.117,-501.195]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"bm":0,"g":{"p":5,"k":{"a":0,"k":[0,0.478,0.588,0.737,0.027,0.478,0.588,0.737,0.045,0.478,0.588,0.737,0.522,0.739,0.794,0.869,1,1,1,1,0,1,0.462,0.5,1,0],"ix":9}},"s":{"a":0,"k":[-398.399,-437.612],"ix":5},"e":{"a":0,"k":[-171.582,-613.772],"ix":6},"t":1,"nm":"Gradient Fill 1","mn":"ADBE Vector Graphic - G-Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[102.513,100.844],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":600.000024438501,"st":0,"bm":0},{"ddd":0,"ind":48,"ty":4,"nm":"Shape Layer 5","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[540,1016,0],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[],"ip":0,"op":600.000024438501,"st":0,"bm":0},{"ddd":0,"ind":49,"ty":4,"nm":"Shape Layer 1","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[540,960,0],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[104.56,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"rc","d":1,"s":{"a":0,"k":[1062.312,1922.766],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"r":{"a":0,"k":0,"ix":4},"nm":"Rectangle Path 1","mn":"ADBE Vector Shape - Rect","hd":false},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"bm":0,"g":{"p":3,"k":{"a":0,"k":[0,0.227,0.518,0.663,0.5,0.218,0.314,0.553,1,0.208,0.11,0.443],"ix":9}},"s":{"a":0,"k":[92.531,-102.641],"ix":5},"e":{"a":0,"k":[88.449,-951.969],"ix":6},"t":1,"nm":"Gradient Fill 1","mn":"ADBE Vector Graphic - G-Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[-4.235,1.816],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Rectangle 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":600.000024438501,"st":0,"bm":0}],"markers":[]} \ No newline at end of file diff --git a/assets/animations/bg_animation2.json b/assets/animations/bg_animation2.json new file mode 100644 index 0000000..18b2525 --- /dev/null +++ b/assets/animations/bg_animation2.json @@ -0,0 +1 @@ +{"v":"5.5.7","fr":30,"ip":0,"op":300,"w":1080,"h":1920,"nm":"Comp 1","ddd":0,"assets":[],"layers":[{"ddd":0,"ind":1,"ty":4,"nm":"구름 Outlines","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":185,"s":[100]},{"t":299,"s":[0]}],"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[508,1196,0],"ix":2},"a":{"a":0,"k":[375.5,82,0],"ix":1},"s":{"a":0,"k":[170,170,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-11.6,-0.609],[3.087,-5.631],[-16.219,-0.42],[2.156,-0.087],[19.189,-0.776],[-2.055,-0.121],[-14.346,-0.848],[2.035,-0.06],[28.759,1.881],[-2.289,-0.33],[-7.644,3.099],[1.69,0.138],[8.206,0.67],[-2.827,0.024],[-8.302,0.531],[-2.598,2.559],[-2.421,-0.049]],"o":[[-4.036,4.996],[16.219,0.42],[-1.042,1.891],[-19.189,0.776],[0.079,2.056],[14.345,0.848],[-1.49,1.387],[-28.807,0.852],[0.634,-2.225],[8.165,1.174],[-0.356,-1.657],[-8.206,-0.67],[1.73,-2.236],[8.333,0],[-2.43,-1.766],[1.952,-1.923],[11.614,0.24]],"v":[[22.732,-8.325],[5.16,-3.005],[53.818,-1.745],[48.081,0.544],[-9.486,2.872],[-4.686,5.753],[38.35,8.296],[32.597,9.885],[-53.818,8.34],[-47.786,6.465],[-23.505,3.51],[-27.65,1.238],[-52.268,-0.773],[-44.474,-3.247],[-19.341,-3.536],[-23.707,-8.814],[-12.098,-9.695]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.889999988032,0.875,0.870999983245,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[86.678,100.934],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[2.801,1.815],[-1.146,0.643],[-1.309,-0.119],[-4.81,2.058],[2.809,0.035],[-14.533,-0.255],[-4.337,-2.392],[2.97,0.5],[7.211,-1.033],[-1.104,-0.24],[-1.106,0.234],[-2.157,-1.845],[5.37,-0.01],[4.897,0.253]],"o":[[-1.104,-0.715],[1.146,-0.644],[5.211,0.474],[-2.187,-1.763],[14.534,-0.154],[4.953,0.087],[-2.128,2.13],[-7.184,-1.21],[-0.54,0.993],[1.105,0.241],[2.745,-0.579],[-3.279,4.915],[-4.904,0.008],[-3.363,-0.173]],"v":[[-34.459,2.754],[-33.93,-0.483],[-30.067,-0.827],[-14.719,-3.252],[-22.503,-6.052],[21.099,-5.902],[35.563,-3.255],[26.964,-2.161],[5.198,-2.429],[6.74,0.052],[10.078,-0.339],[18.388,1.291],[-5.628,4.212],[-20.334,3.846]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.638999968884,0.497999991623,0.74900004069,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[701.076,149.735],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","np":2,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.851,2.809],[-1.309,0.672],[-1.471,0.015],[-6.88,0.07],[-1.551,1.787],[8.2,-0.696],[2.076,0.875],[-0.987,2.025],[-26.236,0.116],[0.894,-1.849],[8.3,-0.051],[-1.092,-1.751],[-18.78,-0.366],[-0.831,-1.564],[-0.512,-0.564],[-0.866,-0.028],[-20.07,-0.633],[-2.496,-1.639],[4.14,-0.086],[6.368,-0.196],[12.563,-0.21],[25.26,1.207]],"o":[[-0.427,-1.408],[1.31,-0.671],[6.881,-0.07],[2.367,-0.024],[-8.003,-1.919],[-2.245,0.191],[-2.077,-0.875],[26.236,-0.116],[2.055,-0.009],[-8.302,0.051],[-2.065,0.013],[18.781,0.367],[1.771,0.035],[0.359,0.673],[0.583,0.642],[20.069,0.632],[2.93,0.092],[-3.888,1.629],[-6.37,0.133],[-12.559,0.384],[-25.281,0.423],[-4.2,-0.201]],"v":[[-92.612,5.077],[-90.731,1.475],[-86.417,0.759],[-65.776,0.548],[-59.186,-1.422],[-83.7,-3.271],[-90.376,-3.682],[-93.05,-9.092],[-14.341,-9.439],[-10.255,-6.366],[-35.158,-6.212],[-39.067,-3.03],[17.273,-1.931],[21.982,-0.103],[22.906,1.974],[25.322,2.715],[85.531,4.611],[94.038,6.455],[81.352,7.478],[62.243,8.095],[24.562,9.025],[-51.279,8.161]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.62400004069,0.481999984442,0.741000007181,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[625.625,122.106],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 3","np":2,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[11.11,-0.323],[17.1,1.972],[-1.798,0.051],[-6.495,0.184],[-0.081,3.735],[13.651,0.255],[1.548,2.591],[-4.697,-0.272],[-56.191,-0.731],[2.641,-0.012],[20.349,-1.863],[2.3,-1.623],[-2.552,-0.107],[-4.575,-0.173],[-9.335,-0.267],[-17.582,-2.802],[5.039,-0.146],[0,0],[19.308,-0.562]],"o":[[-17.205,0.5],[-0.785,-1.618],[6.493,-0.184],[3.735,-0.106],[-13.651,-0.256],[-3.018,-0.057],[3.935,-2.579],[56.102,3.249],[-1.187,2.36],[-20.436,0.091],[-2.804,0.257],[1.931,-1.363],[4.573,0.193],[9.332,0.351],[17.878,0.51],[-2.932,3.54],[0,0],[-19.308,0.562],[-11.111,0.324]],"v":[[-39.147,8.01],[-90.728,7.036],[-87.194,4.248],[-67.713,3.696],[-58.972,-1.365],[-99.923,-2.132],[-108.036,-5.125],[-94.332,-7.196],[74.208,-8.277],[67.199,-5.594],[5.983,-2.661],[-2.064,-0.457],[11.107,0.127],[24.829,0.676],[52.829,1.603],[108.036,2.867],[81.617,4.497],[52.109,5.355],[-5.814,7.041]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.6,0.458999992819,0.713999968884,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[620.826,20.141],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 4","np":2,"cix":2,"bm":0,"ix":4,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-4.494,0.481],[0,0],[-14.532,-0.441],[-7.046,-3.964],[11.45,0.441],[18.055,-0.247],[-5.725,1.762],[27.303,0.112]],"o":[[0,0],[0,0],[14.532,0.44],[7.045,3.963],[-11.45,-0.44],[-18.055,0.248],[5.724,-1.761],[-27.302,-0.111]],"v":[[-61.826,-2.863],[-37.165,-5.505],[25.807,-0.661],[59.275,1.542],[50.027,5.064],[14.798,5.257],[-5.899,2.422],[-21.753,-0.109]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.74900004069,0.592000026329,0.830999995213,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[269.75,50.047],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 5","np":2,"cix":2,"bm":0,"ix":5,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":306,"st":0,"bm":0},{"ddd":0,"ind":2,"ty":4,"nm":"Shape Layer 14","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":126,"s":[1232,536,0],"to":[-250.333,163,0],"ti":[250.333,-163,0]},{"t":202,"s":[-270,1514,0]}],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[2.5,-2.25],[0,0]],"o":[[0,0],[-2.5,2.25],[0,0]],"v":[[238.875,-561.625],[-69.438,-365.062],[-67.938,-361.875]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"bm":0,"g":{"p":3,"k":{"a":0,"k":[0,0.886,0.745,0.773,0.504,0.943,0.873,0.886,1,1,1,1,0,1,0.507,0.5,1,0],"ix":9}},"s":{"a":0,"k":[-4.281,-288.398],"ix":5},"e":{"a":0,"k":[275.906,-477.344],"ix":6},"t":1,"nm":"Gradient Fill 1","mn":"ADBE Vector Graphic - G-Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":122,"op":422,"st":122,"bm":0},{"ddd":0,"ind":3,"ty":4,"nm":"Shape Layer 12","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[540,960,0],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[],"ip":0,"op":306,"st":0,"bm":0},{"ddd":0,"ind":4,"ty":4,"nm":"Shape Layer 5","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[540,960,0],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[4,1],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-4,-1],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[551,761],[538,762],[519,765],[501,767],[484,764],[469,761],[456,764],[425,765],[393,767],[366,764],[322,768],[293,761],[265,767],[233,766],[204,764],[189,766],[148,773],[103,773],[79,772],[47,776],[24,780],[8,781],[-7,778],[-24,779],[-44,781],[-67,781],[-94,780],[-129,785],[-158,785],[-173,782],[-216,785],[-236,782],[-249,786],[-268,791],[-301,796],[-319,796],[-342,803],[-356,806],[-374,806],[-388,799],[-400,803],[-425,805],[-439,810],[-460,809],[-477,814],[-495,818],[-508,820],[-524,825],[-546,830],[-541,969],[551,969]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"bm":0,"g":{"p":3,"k":{"a":0,"k":[0,0.212,0.106,0.29,0.504,0.294,0.167,0.388,1,0.376,0.227,0.486],"ix":9}},"s":{"a":0,"k":[-309.617,1023.016],"ix":5},"e":{"a":0,"k":[275.539,804.734],"ix":6},"t":1,"nm":"Gradient Fill 1","mn":"ADBE Vector Graphic - G-Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":306,"st":0,"bm":0},{"ddd":0,"ind":6,"ty":4,"nm":"Shape Layer 4","parent":7,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[319.266,-285.206,0],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[58.824,58.824,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[12.642,0],[0,0]],"o":[[0,0],[0,0],[-12.118,0],[0,0]],"v":[[483,494.5],[190.875,547.75],[191.375,563.375],[409,561.5]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"bm":0,"g":{"p":3,"k":{"a":0,"k":[0,0.949,0.911,0.754,0.593,0.975,0.956,0.877,1,1,1,1,0,0.78,0.462,0.39,1,0],"ix":9}},"s":{"a":0,"k":[193.797,543.367],"ix":5},"e":{"a":0,"k":[410.883,535.523],"ix":6},"t":1,"nm":"Gradient Fill 1","mn":"ADBE Vector Graphic - G-Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":306,"st":0,"bm":0},{"ddd":0,"ind":7,"ty":4,"nm":"train Outlines","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[-415,1495,0],"to":[310,0,0],"ti":[-310,0,0]},{"t":275,"s":[1445,1495,0]}],"ix":2},"a":{"a":0,"k":[223,29.5,0],"ix":1},"s":{"a":0,"k":[170,170,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[1.299,-1.147],[0,0],[-1.348,-1.812]],"o":[[-1.517,-1.043],[0,0],[-6.605,0],[-1.299,1.148],[0,0],[0,0]],"v":[[71.59,-15.199],[68.355,-16.161],[-29.848,-16.161],[-41.902,-13.163],[-66.148,9.253],[-70.242,16.242]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[1,1,1,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1.5,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[84.189,27.098],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[9.413,6.647],[-9.413,6.647],[-9.413,-6.647],[9.413,-6.647]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.948999980852,0.694000004787,0.486000001197,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[178.887,26.947],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","np":2,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[9.413,6.647],[-9.413,6.647],[-9.413,-6.647],[9.413,-6.647]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.948999980852,0.694000004787,0.486000001197,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[202.172,26.947],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 3","np":2,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[9.413,6.647],[-9.413,6.647],[-9.413,-6.647],[9.413,-6.647]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.948999980852,0.694000004787,0.486000001197,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[225.456,26.947],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 4","np":2,"cix":2,"bm":0,"ix":4,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[9.413,6.647],[-9.413,6.647],[-9.413,-6.647],[9.413,-6.647]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.948999980852,0.694000004787,0.486000001197,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[248.74,26.947],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 5","np":2,"cix":2,"bm":0,"ix":5,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[9.413,6.647],[-9.413,6.647],[-9.413,-6.647],[9.413,-6.647]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.948999980852,0.694000004787,0.486000001197,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[272.025,26.947],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 6","np":2,"cix":2,"bm":0,"ix":6,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,1.211],[0,0],[0,0],[0,0],[0,-1.817]],"o":[[-1.266,0],[0,0],[0,-1.653],[0,0],[1.734,0],[0,0]],"v":[[-61.211,17.671],[-63.053,15.249],[-63.053,-16.018],[-61.733,-17.671],[60.082,-17.671],[63.053,-14.613]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[1,1,1,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1.5,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[225.071,28.804],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 7","np":2,"cix":2,"bm":0,"ix":7,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[2.067,0],[0,0],[0,1.211],[0,0],[0,0],[0,0],[0,-1.817],[0,0]],"o":[[0,0],[-1.266,0],[0,0],[0,-1.653],[0,0],[1.733,0],[0,0],[0,1.889]],"v":[[59.835,17.671],[-61.211,17.671],[-63.053,15.249],[-63.053,-16.018],[-61.733,-17.671],[60.083,-17.671],[63.053,-14.613],[63.053,14.616]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.411999990426,0.258999992819,0.528999956916,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[225.071,28.804],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 8","np":2,"cix":2,"bm":0,"ix":8,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-10.644,6.646],[10.644,6.646],[10.644,-6.646],[3.475,-6.646]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.948999980852,0.694000004787,0.486000001197,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[31.644,26.748],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 9","np":2,"cix":2,"bm":0,"ix":9,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-9.413,6.646],[9.413,6.646],[9.413,-6.646],[-9.413,-6.646]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.948999980852,0.694000004787,0.486000001197,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[55.168,26.749],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 10","np":2,"cix":2,"bm":0,"ix":10,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-9.413,6.646],[9.413,6.646],[9.413,-6.646],[-9.413,-6.646]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.948999980852,0.694000004787,0.486000001197,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[77.709,26.749],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 11","np":2,"cix":2,"bm":0,"ix":11,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[4.073,0],[0,0],[0,3.633],[0,0],[-6.605,0],[0,0],[0,-6.386],[0,-7.024]],"o":[[0,0],[0,0],[0,-3.633],[0,0],[0,0],[0,0],[0,3.99],[0,4.755]],"v":[[65.574,17.798],[-67.967,17.798],[-72.231,13.598],[-42.536,-15.561],[-31.637,-17.542],[66.565,-17.542],[72.07,-11.411],[72.231,11.171]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.411999990426,0.258999992819,0.528999956916,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[85.979,28.478],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 12","np":2,"cix":2,"bm":0,"ix":12,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[10.644,6.647],[-10.643,6.647],[-10.643,-6.647],[-3.475,-6.647]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.948999980852,0.694000004787,0.486000001197,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[417.501,26.947],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 13","np":2,"cix":2,"bm":0,"ix":13,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[9.413,6.647],[-9.413,6.647],[-9.413,-6.647],[9.413,-6.647]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.948999980852,0.694000004787,0.486000001197,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[393.977,26.947],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 14","np":2,"cix":2,"bm":0,"ix":14,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[9.413,6.647],[-9.413,6.647],[-9.413,-6.647],[9.413,-6.647]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.948999980852,0.694000004787,0.486000001197,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[371.436,26.947],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 15","np":2,"cix":2,"bm":0,"ix":15,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[6.606,0],[0,0],[0,-6.385],[0,-7.025]],"o":[[0,0],[0,0],[0,0],[0,3.991],[0,0]],"v":[[57.384,-12.247],[46.484,-14.229],[-51.717,-14.229],[-57.221,-8.099],[-57.383,14.484]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[1,1,1,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1.5,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[348.318,25.364],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 16","np":2,"cix":2,"bm":0,"ix":16,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-4.073,0],[0,0],[0,3.634],[0,0],[6.605,0],[0,0],[0,-6.386],[0,-7.025]],"o":[[0,0],[0,0],[0,-3.633],[0,0],[0,0],[0,0],[0,3.99],[0,4.754]],"v":[[-65.574,17.798],[67.967,17.798],[72.231,13.598],[42.536,-15.559],[31.637,-17.542],[-66.565,-17.542],[-72.069,-11.411],[-72.231,11.171]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.411999990426,0.258999992819,0.528999956916,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[363.166,28.677],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 17","np":2,"cix":2,"bm":0,"ix":17,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.025,0.024]],"o":[[0,0],[-0.025,-0.023],[0,0]],"v":[[0.04,0.038],[0.036,0.034],[-0.04,-0.038]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.736999990426,0.573000021542,0.760999971278,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[72.438,14.261],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 18","np":2,"cix":2,"bm":0,"ix":18,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":305,"st":0,"bm":0},{"ddd":0,"ind":8,"ty":4,"nm":"man Outlines","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":253,"s":[100]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":299,"s":[100]},{"t":306,"s":[0]}],"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[793.791,1669.817,0],"to":[13,0.083,0],"ti":[-13,-0.083,0]},{"t":253,"s":[871.791,1670.317,0]}],"ix":2},"a":{"a":0,"k":[37,29,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":0,"s":[100,100,100]},{"t":253,"s":[170,170,100]}],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0.052,-0.105],[4.078,-5.74],[-0.337,-1.728],[-0.361,-1.963],[0,-0.001],[-2.347,-0.896],[-1.977,-0.107],[-0.003,-0.002],[-2.824,-0.877],[0.026,-0.004],[7.122,0.122],[0,0],[1.699,1.089],[-0.021,0.005],[3.624,4.058],[0.009,-0.014],[1.552,-2.512],[1.141,-0.277],[0.148,0.978],[2.894,3.754],[-2.571,4.011],[-0.154,0.088],[-0.434,1.723],[-0.009,0.002],[-0.646,0.16],[-0.002,0.001],[-0.357,0.172],[0.003,0.002],[-1.02,1.004],[-0.008,-0.001]],"o":[[0.054,0.157],[-2.98,6.007],[-1.306,1.837],[0.383,1.959],[0,0.001],[-0.034,4.144],[1.761,0.673],[0.004,0],[2.617,1.419],[0.026,0.008],[-7.176,1.31],[0,0],[-1.699,-1.087],[-0.018,-0.011],[4.06,-0.913],[-0.011,-0.012],[-1.577,2.551],[-1.14,0.276],[-0.147,-0.979],[3.251,-3.536],[-3.981,-5.167],[0.155,-0.088],[2.277,-0.159],[0.003,-0.009],[0.647,-0.16],[0.001,0],[0.356,-0.172],[0,0],[1.764,-0.314],[0.006,-0.006],[0,0]],"v":[[0.14,-19.702],[0.29,-19.236],[-4.037,-0.181],[-3.827,5.033],[-2.739,10.921],[-2.739,10.924],[3.288,15.541],[9.177,15.975],[9.187,15.978],[17.585,18.517],[17.582,18.569],[-3.798,17.936],[-3.811,17.926],[-8.909,14.662],[-8.9,14.619],[-8.124,6.638],[-8.165,6.641],[-12.845,14.212],[-15.796,14.928],[-16.159,12.526],[-13.63,0.449],[-12.522,-12.24],[-12.081,-12.492],[-8.652,-15.857],[-8.633,-15.875],[-6.694,-16.355],[-6.689,-16.357],[-5.618,-16.874],[-5.406,-16.722],[-2.492,-19.87],[-2.471,-19.878]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.352999997606,0.231000010173,0.475,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[47.756,29.572],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.005,-0.004],[1.727,0.259],[0.211,0.917],[4.116,5.576],[-0.387,1.478],[0,0.001],[0.533,-1.436],[-0.876,-0.034],[0,0],[0.335,1.905],[0.101,1.997],[-0.002,0.003],[-1.127,1.603],[-1.426,-0.649],[0.091,-1.261],[0.004,-0.003],[0.61,-4.012],[0.407,-5.54],[0.001,-0.001],[-1.944,-0.51],[0,0],[-4.212,-0.096],[0,0],[0.01,-0.436],[7.49,1.87],[0.01,0.754],[-0.044,2.531],[1.842,0.192],[0.753,-1.381],[0.281,-0.949]],"o":[[-1.514,0.948],[-0.211,-0.916],[6.085,-3.923],[-1.01,-1.369],[0,-0.001],[1.027,-2.825],[-0.209,0.562],[-0.001,0.001],[0.388,-1.378],[-0.335,-1.905],[0,-0.004],[0.801,-1.941],[0.602,-0.857],[1.476,0.672],[0,0.005],[-2.958,3.369],[-0.862,5.671],[0,0],[-0.907,4.889],[0,0],[3.566,2.687],[0,0],[-0.01,0.432],[-7.827,0.361],[-0.761,-0.189],[2.666,0.66],[0.027,-1.536],[-2.006,-0.208],[-0.464,0.85],[-0.002,0.007]],"v":[[-10.258,14.184],[-15.144,15.085],[-15.571,13.232],[-12.654,-0.35],[-13.182,-4.576],[-13.181,-4.579],[-9.064,-9.016],[-8.265,-3.592],[-6.943,-2.831],[-7.794,-7.421],[-7.997,-13.824],[-7.994,-13.837],[-3.732,-17.564],[-1.195,-19.219],[-0.252,-15.799],[-0.258,-15.786],[-3.317,-4.173],[-1.247,12.059],[-1.248,12.062],[3.548,15.184],[3.594,15.212],[15.558,18.197],[15.571,18.206],[15.541,19.507],[-7.25,16.04],[-8.365,14.66],[-4.647,11.542],[-6.296,7.917],[-9.365,11.342],[-10.246,14.169]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.352999997606,0.231000010173,0.475,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[28.387,29.301],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","np":2,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.018,0],[0,0],[0.004,-0.005],[0,0],[0,0],[0,0],[0.001,-0.001],[0,0],[0.002,-0.006],[0,0],[0.001,-0.002],[0,0],[-0.002,-0.007],[0,0],[0,-0.002],[0,0],[-0.001,-0.004],[0,0],[0,-0.002],[0,0],[0.001,-0.003],[0,0],[0.001,-0.002],[0,0],[-0.02,0.001],[-0.457,0.185],[-0.042,0.073],[-0.001,0.003],[0,0],[0,0.001],[0,0],[0,0.001],[0,0]],"o":[[0,0],[-0.007,0],[0,0],[0,0],[0,0],[-0.001,0],[0,0],[-0.004,0.003],[0,0],[-0.001,0.002],[0,0],[-0.003,0.005],[0,0],[0,0.002],[0,0],[-0.001,0.004],[0,0],[0.001,0.002],[0,0],[0.001,0.003],[0,0],[-0.001,0.002],[0,0],[-0.01,0.016],[0.336,-0.009],[0.493,-0.201],[0.002,-0.003],[0,0],[0,-0.001],[0,0],[0,-0.001],[0,0],[0.006,-0.016]],"v":[[6.559,-15.82],[3.526,-15.82],[3.509,-15.813],[1.864,-14.204],[1.038,-13.38],[-0.776,-11.729],[-0.779,-11.727],[-2.257,-10.742],[-2.267,-10.729],[-3.584,-6.447],[-3.587,-6.441],[-5.727,-3.094],[-5.73,-3.076],[-5.391,-1.182],[-5.391,-1.176],[-5.731,2.137],[-5.73,2.15],[-3.752,6.93],[-3.75,6.936],[-3.586,9.57],[-3.587,9.579],[-4.575,12.544],[-4.577,12.55],[-6.578,15.783],[-6.559,15.82],[-3.585,15.557],[0.708,8.749],[0.709,8.744],[1.86,-1.221],[1.861,-1.225],[4.506,-10.736],[4.507,-10.738],[6.582,-15.786]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.877999997606,0.702000038297,0.745000023935,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[20.596,25.903],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 3","np":2,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,-0.001],[0,0],[0.006,0],[0,0],[0.005,-0.006],[0,0],[0,-0.003],[0,0],[0.005,-0.003],[0,0],[0.001,-0.002],[0,0],[0.001,-0.003],[0,0],[-0.002,-0.004],[0,0],[-0.001,-0.002],[0,0],[0,0],[0.001,-0.006],[0,0],[0,0],[0,-0.001],[0,0],[-0.017,0],[0,0],[-0.004,0.007],[0,0],[0,0.005],[-0.328,0.491],[-0.033,0.053],[0,0.002]],"o":[[0,0],[-0.001,0],[0,0],[-0.004,0.004],[0,0],[-0.007,0],[0,0],[-0.003,0.003],[0,0],[-0.001,0.005],[0,0],[-0.001,0.001],[0,0],[-0.002,0.003],[0,0],[-0.002,0.005],[0,0],[0.001,0.002],[0,0],[0,0],[0.003,0.005],[0,0],[0,0],[0,0.001],[0,0],[-0.005,0.016],[0,0],[0.009,0],[0,0],[0.003,-0.004],[-0.012,-0.148],[0.329,-0.494],[0.001,-0.002],[0,0]],"v":[[7.195,-16.016],[5.041,-14.34],[5.04,-14.339],[2.993,-12.499],[2.977,-12.492],[-0.083,-12.492],[-0.102,-12.482],[-1.411,-10.878],[-1.416,-10.867],[-1.76,-8.723],[-1.768,-8.71],[-3.784,-6.904],[-3.787,-6.9],[-6.14,-3.775],[-6.144,-3.766],[-7.193,0.188],[-7.193,0.202],[-6.144,3.441],[-6.141,3.447],[-4.718,5.641],[-3.732,7.285],[-3.729,7.303],[-4.223,9.605],[-4.883,12.576],[-4.884,12.579],[-6.071,15.911],[-6.048,15.943],[-3.742,16.016],[-3.72,16.004],[1.883,6.639],[1.887,6.631],[1.392,-4.266],[5.88,-11.533],[5.881,-11.536]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.877999997606,0.702000038297,0.745000023935,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[38.077,25.708],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 4","np":2,"cix":2,"bm":0,"ix":4,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":305,"st":0,"bm":0},{"ddd":0,"ind":9,"ty":4,"nm":"Shape Layer 2","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[540,960,0],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[],"ip":0,"op":305,"st":0,"bm":0},{"ddd":0,"ind":10,"ty":4,"nm":"006 Outlines","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[564,1798,0],"ix":2},"a":{"a":0,"k":[358,83,0],"ix":1},"s":{"a":0,"k":[168.959,168.959,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-1.578,-0.093],[-0.982,0.49],[-1.545,0.772],[0,0],[0,0],[0,0],[0,0],[0,0],[-1.159,1.272],[0,0],[1.6,-0.209],[2.704,0.386]],"o":[[0,0],[2.746,0.162],[1.545,-0.773],[1.546,-0.773],[0,0],[0,0],[0,0],[0,0],[0,0],[1.159,-1.273],[0.139,0.299],[-1.625,0.212],[-2.705,-0.387]],"v":[[-34.579,-2.125],[-31.817,-1.929],[-24.147,-2.125],[-19.125,-2.125],[-13.716,-1.782],[-8.694,-1.782],[1.352,-0.193],[10.624,-2.397],[22.987,-2.397],[33.419,-2.397],[27.893,-0.278],[16.233,0.314],[-10.625,3.284]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.952999997606,0.842999985639,0.779999976065,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[255.126,24.761],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[-4.844,0.881],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-3.083,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[84.55,-15.193],[62.972,-12.109],[36.55,-12.109],[28.183,-6.826],[0,-1.981],[-17.615,-4.184],[-38.312,-4.184],[-62.092,-5.064],[-76.183,-5.064],[-94.679,-6.826],[-113.735,-3.302],[-127.266,-1.981],[-44.477,5.064],[25.982,8.146],[77.945,15.193],[127.266,1.982]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.626999978458,0.375999989229,0.564999988032,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[588.424,24.157],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 3","np":2,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-54.385,-0.881],[-41.251,0.652],[-27.964,2.201],[5.945,6.165],[32.367,6.165],[54.385,8.807],[35.45,3.964],[28.844,2.201],[-9.027,-3.964],[8.146,-3.964],[45.138,-6.605],[-2.423,-8.807],[-8.146,-8.807],[-24.441,-8.807]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.952999997606,0.838999968884,0.779999976065,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[74.296,34.065],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 4","np":2,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[1.321,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-1.321,0]],"v":[[47.78,11.229],[-18.716,3.743],[-108.55,-2.863],[-155.455,-7.703],[-187.376,-11.23],[-159.126,-16.177],[-119.119,-14.312],[-79.046,-16.177],[-26.201,-11.67],[25.321,-8.147],[73.761,-2.474],[111.192,0.66],[65.394,-8.147],[33.248,-12.551],[14.913,-15.867],[28.745,-18.14],[40.734,-20.037],[58.349,-16.955],[77.284,-14.312],[126.165,-8.147],[165.357,-4.404],[187.376,0.66],[151.266,20.037]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.579999976065,0.317999985639,0.525,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[247.8,42.212],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 5","np":2,"cix":2,"bm":0,"ix":4,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-135.193,25.322],[27.302,20.917],[133.871,5.064],[142.238,-2.421],[0.88,-16.514],[-65.851,-24.029],[-101.725,-25.322],[-142.238,-14.091]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.791999966491,0.455000005984,0.579999976065,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[151.58,50.579],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 7","np":2,"cix":2,"bm":0,"ix":5,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":305,"st":0,"bm":0},{"ddd":0,"ind":11,"ty":4,"nm":"Shape Layer 6","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[540,960,0],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[187,727],[147,736],[88,737],[64,730],[47,736],[-16,737],[-34,746],[-85,746],[-131,742],[-167,747],[-219,735],[-282,748],[-122,777],[13,802],[293,792],[566,776],[490,751],[351,741],[271,736],[254,729],[218,734]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"bm":0,"g":{"p":3,"k":{"a":0,"k":[0,0.769,0.447,0.584,0.504,0.643,0.375,0.555,1,0.518,0.302,0.525],"ix":9}},"s":{"a":0,"k":[-103.281,775.219],"ix":5},"e":{"a":0,"k":[208.602,733.406],"ix":6},"t":1,"nm":"Gradient Fill 1","mn":"ADBE Vector Graphic - G-Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":306,"st":0,"bm":0},{"ddd":0,"ind":12,"ty":4,"nm":"다리 Outlines","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[518,1644,0],"ix":2},"a":{"a":0,"k":[412.5,100,0],"ix":1},"s":{"a":0,"k":[170,170,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[685.64,17.02],[685.64,28.91]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.39199999641,0.238999998803,0.513999968884,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":2,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[617.162,17.02],[617.162,28.91]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.39199999641,0.238999998803,0.513999968884,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":2,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","np":2,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[548.685,17.02],[548.685,28.91]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.39199999641,0.238999998803,0.513999968884,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":2,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 3","np":2,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[275.218,17.02],[275.218,28.91]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.39199999641,0.238999998803,0.513999968884,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":2,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 4","np":2,"cix":2,"bm":0,"ix":4,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[206.741,17.02],[206.741,28.91]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.39199999641,0.238999998803,0.513999968884,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":2,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 5","np":2,"cix":2,"bm":0,"ix":5,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[138.264,17.02],[138.264,28.91]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.39199999641,0.238999998803,0.513999968884,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":2,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 6","np":2,"cix":2,"bm":0,"ix":6,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[480.209,17.02],[480.209,28.91]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.39199999641,0.238999998803,0.513999968884,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":2,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 7","np":2,"cix":2,"bm":0,"ix":7,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[411.732,17.02],[411.732,28.91]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.39199999641,0.238999998803,0.513999968884,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":2,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 8","np":2,"cix":2,"bm":0,"ix":8,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[343.255,17.02],[343.255,28.91]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.39199999641,0.238999998803,0.513999968884,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":2,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 9","np":2,"cix":2,"bm":0,"ix":9,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[100.833,19.662],[752.795,19.662]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.39199999641,0.238999998803,0.513999968884,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":2,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 10","np":2,"cix":2,"bm":0,"ix":10,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[17.243,30.011],[768.673,30.011]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[1,0.851000019148,1,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":2,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 11","np":2,"cix":2,"bm":0,"ix":11,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[-27.452,0],[0,-27.452]],"o":[[0,0],[0,0],[0,-27.452],[27.452,0],[0,0]],"v":[[390.679,20.587],[291.266,20.587],[291.266,-9.138],[340.972,-58.844],[390.679,-9.138]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[-27.452,0],[0,-27.452]],"o":[[0,0],[0,0],[0,-27.452],[27.452,0],[0,0]],"v":[[252.624,20.587],[153.211,20.587],[153.211,-9.138],[202.917,-58.844],[252.624,-9.138]],"c":true},"ix":2},"nm":"Path 2","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[-27.453,0],[0,-27.452]],"o":[[0,0],[0,0],[0,-27.452],[27.452,0],[0,0]],"v":[[117.406,25.21],[17.993,25.21],[17.993,-9.138],[67.7,-58.844],[117.406,-9.138]],"c":true},"ix":2},"nm":"Path 3","mn":"ADBE Vector Shape - Group","hd":false},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[-27.451,0],[0,-27.452]],"o":[[0,0],[0,0],[0,-27.452],[27.452,0],[0,0]],"v":[[-18.666,30.164],[-118.079,30.164],[-118.079,-9.138],[-68.373,-58.844],[-18.666,-9.138]],"c":true},"ix":2},"nm":"Path 4","mn":"ADBE Vector Shape - Group","hd":false},{"ind":4,"ty":"sh","ix":5,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[-27.452,0],[0,-27.452]],"o":[[0,0],[0,0],[0,-27.452],[27.452,0],[0,0]],"v":[[-154.738,32.147],[-254.151,32.147],[-254.151,-9.138],[-204.445,-58.844],[-154.738,-9.138]],"c":true},"ix":2},"nm":"Path 5","mn":"ADBE Vector Shape - Group","hd":false},{"ind":5,"ty":"sh","ix":6,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[-27.452,0],[0,-27.452]],"o":[[0,0],[0,0],[0,-27.452],[27.452,0],[0,0]],"v":[[-290.811,37.21],[-390.224,37.21],[-390.224,-9.138],[-340.517,-58.844],[-290.811,-9.138]],"c":true},"ix":2},"nm":"Path 6","mn":"ADBE Vector Shape - Group","hd":false},{"ind":6,"ty":"sh","ix":7,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-393.943,-80.367],[-399.43,80.367],[399.43,80.367],[399.43,-80.367]],"c":true},"ix":2},"nm":"Path 7","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[0.411999990426,0.258999992819,0.528999956916,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[411.187,110.377],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 12","np":9,"cix":2,"bm":0,"ix":12,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":305,"st":0,"bm":0},{"ddd":0,"ind":13,"ty":4,"nm":"mnt Outlines","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[551,1312,0],"ix":2},"a":{"a":0,"k":[364.5,160,0],"ix":1},"s":{"a":0,"k":[170,170,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[27.58,23.699],[16.764,5.324],[14.699,-9.865],[-1.815,-23.699],[-27.58,-23.699],[-18.747,-7.665],[-8.634,-3.24],[-2.475,-4.725],[-4.126,5.324],[7.351,10.937],[7.351,-3.404],[14.699,15.643]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[147.872,140.46],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-0.33,-0.273],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0.33,0.273],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[28.883,-2.491],[33.177,-7.115],[33.177,-17.023],[33.177,-21.411],[29.434,-26.051],[23.268,-26.051],[12.123,-16.947],[5.603,-8.585],[2.792,-6.674],[-22.721,8.738],[-33.177,26.051],[-13.307,14.532],[-10.75,22.007],[-7.117,24.68],[3.483,11.051],[0,4.627],[10.057,0],[16.003,-12.069],[23.268,-8.585]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.980000035903,0.952999997606,0.910000011968,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[78.532,125.346],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","np":2,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.187,1.065],[-0.042,-0.957],[1.711,-1.002],[0.657,0.704],[-1.455,1.441]],"o":[[0.191,1.859],[0.059,1.338],[-0.896,0.525],[-1.303,-1.393],[0.554,-0.548]],"v":[[0.988,-4.114],[1.366,-0.346],[1.1,3.589],[-1.293,2.286],[-1.357,-2.002]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.681999954523,0.620000023935,0.736999990426,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[489.953,164.121],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 3","np":2,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.992,2.342],[-4.219,-3.459],[1.306,-0.321],[2.421,1.693]],"o":[[4.59,2.636],[-1.04,1.957],[-2.58,-1.466],[-1.346,-0.94]],"v":[[-6.503,-4.809],[7.495,2.853],[3.453,4.015],[-4.242,-0.445]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.681999954523,0.620000023935,0.736999990426,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[490.477,189.581],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 4","np":2,"cix":2,"bm":0,"ix":4,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.653,-1.812],[2.183,0.045],[-0.03,1.975],[-1.93,-0.293]],"o":[[-1.214,1.929],[-1.957,-0.039],[0.036,-2.417],[1.528,0.232]],"v":[[3.983,-0.66],[-0.52,3.199],[-3.954,-0.433],[0.056,-2.951]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.681999954523,0.620000023935,0.736999990426,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[424.33,143.967],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 6","np":2,"cix":2,"bm":0,"ix":6,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[2.291,7.165],[-4.339,-3.214],[-0.1,-1.523]],"o":[[4.777,2.688],[1.289,0.955],[-6.186,-3.306]],"v":[[-7.074,-7.145],[5.316,3.24],[7.074,7.145]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.681999954523,0.620000023935,0.736999990426,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[465.067,185.849],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 7","np":2,"cix":2,"bm":0,"ix":7,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.395,2.976],[1.922,-3.641],[0.905,0.224],[0.385,0.668],[-1.277,1.598]],"o":[[-0.047,5.214],[-0.374,0.71],[-0.63,-0.156],[-0.994,-1.725],[1.806,-2.263]],"v":[[3.68,-7.23],[0.533,5.459],[-1.118,7.006],[-2.686,5.312],[-2.342,0.26]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.681999954523,0.620000023935,0.736999990426,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[382.736,84.472],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 8","np":2,"cix":2,"bm":0,"ix":8,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-0.48,-7.19],[0.518,1.909],[4.377,2.117],[-1.19,2.704],[-1.492,-1.092],[-1.847,-1.617]],"o":[[-0.689,6.045],[-2.478,-2.252],[-1.041,-3.843],[-4.207,-2.035],[1.247,-2.832],[1.975,1.443],[0,0]],"v":[[7.436,-5.709],[6.319,13.553],[3.043,7.247],[-3.246,-2.074],[-3.027,-10.721],[1.879,-10.495],[7.453,-5.688]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.681999954523,0.620000023935,0.736999990426,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[402.523,80.516],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 9","np":2,"cix":2,"bm":0,"ix":9,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[5.583,-2.867],[6.134,-3.487],[-2.932,2.87],[-8.212,3.268]],"o":[[-5.901,2.609],[-0.108,-5.97],[7.261,-3.287],[-1.323,6.88]],"v":[[3.488,2.023],[-13.65,12.172],[-6.51,1.412],[13.759,-12.171]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.681999954523,0.620000023935,0.736999990426,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[379.53,158.944],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 10","np":2,"cix":2,"bm":0,"ix":10,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.12,3.05],[-2.131,-0.23],[-6.6,-9.225],[3.408,3.92],[1.29,0.955],[4.777,2.689]],"o":[[2.034,1.129],[14.333,1.541],[-4.948,-1.005],[-0.1,-1.523],[-4.338,-3.214],[-0.717,-2.074]],"v":[[-14.462,-13.415],[-8.348,-10.154],[15.582,13.414],[2.736,6.62],[0.977,2.715],[-11.413,-7.669]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.681999954523,0.620000023935,0.736999990426,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[469.406,186.374],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 11","np":2,"cix":2,"bm":0,"ix":11,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[2.536,-3.317],[4.123,-2.977],[0.146,0.118],[-1.356,2.98],[-3.91,7.141],[-4.797,-3.756],[-2.274,-2.952],[-0.675,-1.087],[3.139,-4.338],[1.161,0.712]],"o":[[-3.494,3.524],[-0.146,-0.121],[1.357,-2.979],[4.471,-6.765],[2.901,-5.297],[2.761,2.16],[0.381,0.495],[-6.05,-0.272],[-0.768,1.061],[-5.661,-3.473]],"v":[[-8.192,6.364],[-17.954,17.567],[-18.392,17.209],[-14.322,8.272],[-0.874,-12.001],[8.057,-13.811],[17.049,-8.724],[18.393,-6.575],[5.229,0.275],[1.892,1.941]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.681999954523,0.620000023935,0.736999990426,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[401.182,155.482],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 12","np":2,"cix":2,"bm":0,"ix":12,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[7.658,3.034],[0,0],[0,0],[-6.418,-3.968]],"o":[[0,0],[0,0],[3.45,6.415],[-3.257,-6.567]],"v":[[3.679,-0.364],[3.328,-0.473],[3.447,-0.126],[17.009,16.469]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[1.785,-0.08],[2.608,-0.733],[1.381,1.913],[-1.13,4.156],[0.491,0.363],[0.692,7.422],[-3.857,-8.237],[-0.915,-1.217],[-4.19,-1.504],[0,0],[-0.337,-0.341],[-6.824,-3.15],[-4.112,-1.094],[0,0],[-0.668,-0.335],[0,0],[-0.338,-0.421],[-8.438,-5.858],[-1.733,-5.553],[-2.566,-8.218],[-0.031,-0.288],[-0.305,-0.392],[-0.332,-1.871],[1.071,1.668],[2.562,1.383],[0.873,6.704],[0.52,2.1],[3.872,0.021],[-3.299,-12.018],[0.673,-0.287],[10.439,13.493],[1.201,-6.789],[2.65,2.102],[-1.494,-2.572],[-1.697,-8.28],[1.624,9.317],[0.465,0.85],[-4.492,3.771],[1.513,2.71],[3.681,4.794],[0,0],[-4.485,2.285],[4.329,4.118]],"o":[[-2.644,-1.653],[-0.34,-2.127],[0.296,-4.119],[0.191,-0.698],[-7.324,-5.415],[7.074,5.443],[-1.475,0.477],[2.485,3.306],[0,0],[0.336,0.342],[2.914,9.285],[-0.26,4.437],[0,0],[0.668,0.335],[0,0],[0.338,0.42],[6.11,8.453],[4.967,3.449],[2.564,8.217],[0.018,0.29],[0.305,0.392],[0.331,1.87],[-2.058,-0.769],[-1.418,-2.211],[-5.724,-3.09],[-0.277,-2.123],[-0.838,-3.382],[3.432,12.495],[-0.672,0.285],[-9.971,-13.747],[0.06,6.022],[-2.754,-2.853],[-1.035,3.254],[4.375,7.531],[-5.432,-6.906],[-0.168,-0.962],[-2.942,-5.372],[2.578,-2.165],[-2.908,-5.206],[0,0],[-0.8,-3.257],[-7.867,1.275],[-1.234,-1.175]],"v":[[-31.341,-19.214],[-39.197,-19.092],[-40.502,-25.416],[-40.672,-37.777],[-41.176,-40.094],[-47.657,-61.031],[-30.447,-41.217],[-31.365,-38.571],[-22.449,-30.171],[-22.471,-30.235],[-21.462,-29.21],[-2.618,-17.209],[3.517,-9.185],[3.549,-9.192],[5.553,-8.188],[5.541,-8.213],[6.555,-6.952],[29.039,13.951],[38.817,27.233],[46.515,51.885],[46.591,52.752],[47.506,53.928],[48.5,59.539],[44.568,55.199],[39.793,48.951],[29.397,34.676],[27.713,28.414],[20.839,23.643],[30.87,60.173],[28.853,61.031],[1.346,18.082],[2.97,36.411],[-1.923,27.879],[-1.278,36.442],[5.586,60.783],[-8.393,38.596],[-9.306,35.788],[-7.378,22.455],[-6.015,15.547],[-14.449,-0.227],[-14.432,-0.206],[-11.251,-8.915],[-26.991,-17.245]],"c":true},"ix":2},"nm":"Path 2","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[0.681999954523,0.620000023935,0.736999990426,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[424.408,75.035],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 13","np":4,"cix":2,"bm":0,"ix":13,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.239,0.228],[-11.081,9.65],[-3.849,-2.484],[0.232,-1.278],[9.788,-5.909],[3.32,-0.299],[-1.654,3.824],[1.679,-0.763]],"o":[[7.251,-12.083],[-0.497,3.847],[1.134,0.733],[-2.099,11.585],[-1.917,1.157],[1.564,-3.614],[-2.709,0.702],[-0.216,-0.251]],"v":[[-13.91,13.737],[9.969,-21.255],[12.776,-11.458],[12.594,-7.7],[-6.194,17.878],[-12.982,21.255],[-8.387,10.634],[-13.228,14.455]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.838999968884,0.816000007181,0.875,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[328.897,147.352],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 14","np":2,"cix":2,"bm":0,"ix":14,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[20.448,0.055],[-5.825,9.288],[-0.97,-1.337],[-5.617,2.333],[-2.073,-2.058],[-1.731,2.855],[-4.136,7.223],[-3.602,6.568],[-1.727,-0.545],[0.094,-1.093],[-1.342,-5.846],[-3.489,-0.7],[-5.463,4.33],[-1.397,-0.614],[-3.499,-6.403],[-1.38,-4.775],[-2.505,-7.627],[6.599,2.131],[2.87,0.018],[17.63,0.026]],"o":[[4.49,-10.205],[1.39,-2.216],[4.237,5.845],[2.441,-1.015],[3.289,3.265],[4.312,-7.12],[3.721,-6.499],[0.625,-1.14],[1.511,0.477],[-0.521,6.084],[0.741,3.225],[6.5,1.305],[1.176,-0.933],[6.133,2.696],[2.375,4.347],[2.256,7.805],[-6.549,-0.3],[-2.259,-0.729],[-17.628,-0.118],[-20.448,-0.031]],"v":[[-71.012,33.825],[-52.303,6.829],[-48.262,7.269],[-33.1,9.969],[-26.098,10.488],[-19.04,8.929],[-6.305,-12.549],[4.526,-32.24],[7.319,-34.446],[8.135,-31.402],[10.372,-13.641],[16.339,-7.847],[34.375,-10.96],[38.461,-12.436],[55.102,-1.602],[60.592,12.308],[71.013,33.811],[51.311,32.86],[43.219,34.046],[-9.669,33.984]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.585110294118,0.467432598039,0.705958946078,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[352.799,252.295],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 15","np":2,"cix":2,"bm":0,"ix":15,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[2.336,0.036],[2.981,4.648],[-0.601,0.253],[-4.71,-4.597],[-0.012,-0.324]],"o":[[-4.543,-3.633],[0.603,-0.254],[4.71,4.598],[0.049,0.321],[-2.336,-0.036]],"v":[[1.007,7.273],[-8.015,-6.618],[-6.206,-7.38],[7.924,6.413],[8.015,7.38]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.838999968884,0.816000007181,0.875,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[617.984,200.932],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 16","np":2,"cix":2,"bm":0,"ix":16,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.064,3.526],[-1.521,0.369],[1.694,-9.871],[-2.315,5.233]],"o":[[0.816,-1.065],[3.053,9.236],[-3.113,-5.27],[1.39,-3.145]],"v":[[-0.672,-11],[2.136,-13.84],[-0.236,13.84],[-2.875,-0.859]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.838999968884,0.816000007181,0.875,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[564.641,171.063],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 17","np":2,"cix":2,"bm":0,"ix":17,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-1.116,5.421],[-6.069,-3.401],[1.094,-2.081],[1.54,-1.965]],"o":[[-5.401,-2.283],[7.194,1.055],[-1.868,0.159],[-2.246,-0.127],[0,0]],"v":[[-3.111,5.393],[-8.837,-6.502],[9.953,2.486],[4.968,4.497],[-0.964,6.502]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.732999973671,0.670999983245,0.769000004787,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[569.912,151.953],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 18","np":2,"cix":2,"bm":0,"ix":18,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[3.93,1.484],[-0.414,6.087],[-1.711,0.295],[-0.655,-1.244],[-2.879,-1.938],[-2.529,-3.616]],"o":[[-4.417,-0.632],[-7.176,-2.051],[0.085,-1.257],[1.561,-0.27],[1.725,3.272],[2.523,3.615],[0,0]],"v":[[10.004,10.327],[-0.796,4.148],[-9.85,-6.721],[-8.498,-10.057],[-4.847,-7.822],[2.684,-0.794],[10.264,10.053]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.732999973671,0.670999983245,0.769000004787,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[613.737,184.213],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 19","np":2,"cix":2,"bm":0,"ix":19,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-4.134,0.587],[-5.446,-5.525],[0.978,-0.131],[0.36,-3.801],[1.509,0.96],[2.127,3.927],[4.394,3.572],[0.552,0.953]],"o":[[6.764,3.433],[-0.959,0.28],[-3.763,0.504],[-0.116,1.219],[-3.11,-1.978],[-2.578,-4.759],[-0.552,-0.953],[4.027,0.172]],"v":[[-3.626,-10.155],[15.547,1.921],[12.668,2.742],[6.594,9.037],[4.577,10.864],[-4.561,4.46],[-13.89,-8.965],[-15.547,-11.824]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.732999973671,0.670999983245,0.769000004787,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[591.338,168.349],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 20","np":2,"cix":2,"bm":0,"ix":20,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[7.782,-4.74],[-0.218,1.379],[-4.481,3.164],[-3.704,4.225],[-0.001,0],[-5.013,3.031],[3.492,-9.136],[0.324,2.222],[2.162,-1.713]],"o":[[-1.018,-1.158],[3.89,-3.96],[4.461,-3.147],[0,0],[5.623,-1.432],[-4.329,8.606],[-0.162,-2.245],[-0.29,-1.992],[-7.201,5.705]],"v":[[-19.756,15.776],[-20.455,11.88],[-7.212,2.132],[6.209,-7.254],[6.103,-7.271],[20.774,-15.777],[7.555,9.988],[7.034,3.257],[3.747,1.827]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.795999983245,0.603999956916,0.862999949736,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[539.69,183.5],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 21","np":2,"cix":2,"bm":0,"ix":21,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[4.649,-0.991],[-1.616,2.002],[-6.405,9.535],[-1.512,-0.852],[-5.402,-2.283],[-0.001,0],[0.816,-1.065],[0.995,-0.978],[3.73,-6.143],[0,0]],"o":[[-0.272,-3.067],[7.172,-8.885],[0.833,-1.241],[-1.116,5.421],[0,0],[-1.52,0.37],[-1.35,-0.21],[-5.023,4.941],[-0.001,0],[-4.65,0.992]],"v":[[-17.307,17.392],[-13.594,10.692],[8.555,-15.427],[11.855,-16.541],[17.58,-4.646],[17.522,-4.605],[14.714,-1.765],[10.918,-1.07],[-3.462,14.402],[-3.357,14.418]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.838999968884,0.816000007181,0.875,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[549.256,161.827],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 22","np":2,"cix":2,"bm":0,"ix":22,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[3.265,6.965],[5.267,-4.877],[0,0],[0,0],[-0.9,4.192],[2.875,2.38],[-1.506,-8.048],[1.52,-1.058],[1.29,0.866],[1.592,-2.201],[-4.18,-1.521],[0.807,-4.721],[0.52,-0.857],[3.898,-7.817],[-0.437,-4.109],[-4.05,2.147],[-3.24,3.024],[0.676,1.86],[-1.815,1.742],[-5.835,5.135],[-0.088,3.72]],"o":[[0.781,7.274],[0,0],[0,0],[-0.368,-4.48],[0.47,-2.184],[-1.726,7.639],[0.297,1.587],[-1.673,1.164],[-2.252,-1.512],[-1.864,2.575],[-6.486,-0.346],[-0.52,0.856],[-4.063,7.735],[-1.538,3.084],[4.812,-1.717],[3.302,-2.959],[1.296,-1.211],[-1.263,-3.476],[6.046,-4.893],[2.803,-2.468],[0.18,-7.747]],"v":[[19.026,-35.697],[12.559,-17.512],[12.387,-17.385],[12.53,-17.539],[15.382,-30.079],[13.845,-36.904],[8.098,-15.283],[7.626,-10.613],[3.3,-12.188],[-2.165,-11.188],[1.211,-5.577],[-9.017,0.854],[-10.577,3.424],[-22.71,26.658],[-25.912,36.904],[-14.032,29.268],[-4.149,20.368],[-1.618,15.881],[1.463,9.467],[19.541,-5.285],[26.169,-14.273]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.838999968884,0.642999985639,0.898000021542,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[377.215,129.972],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 23","np":2,"cix":2,"bm":0,"ix":23,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.309,10.615],[5.506,-6.546],[-1.521,-1.877],[-2.081,0.426],[-0.413,0.266]],"o":[[-7.656,5.087],[-1.337,1.59],[1.209,1.491],[0.474,-0.097],[8.062,-5.2]],"v":[[21.231,-12.589],[2.465,5.503],[0.304,10.97],[6.418,10.825],[7.773,10.219]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[2.306,-2.606],[3.727,-2.98],[3.888,-0.352],[-1.185,4.183],[0.707,-0.314],[6.397,-6.736],[0.95,-0.93],[3.795,7.839],[-1.144,1.465],[-3.524,6.049],[-0.941,2.006],[5.52,-4.081],[5.262,5.982],[5.826,7.677],[-4.736,1.637],[-16.068,9.926],[-8.111,3.011],[-1.794,2.783],[-5.679,6.973],[-1.986,1.028],[4.581,-1.882],[-0.109,-2.416],[-1.419,-0.732],[-2.327,-0.026],[0.943,-1.541],[5.062,-12.627],[4.597,-3.618]],"o":[[-3.71,3.001],[-2.446,1.955],[1.267,-4.695],[0.366,-0.763],[-6.395,6.737],[-0.915,0.965],[-6.101,5.976],[-1.194,-2.467],[4.297,-5.51],[0.403,-0.692],[-7.328,3.552],[-6.258,4.628],[-6.385,-7.259],[5.042,0.16],[17.559,-6.071],[7.345,-4.537],[3.157,-1.172],[4.867,-7.547],[1.363,-1.674],[3.838,4.385],[-1.372,0.564],[0.081,1.801],[2.138,1.102],[-0.85,1.599],[-7.113,11.611],[-2.271,5.664],[-2.756,2.168]],"v":[[22.038,26.982],[10.904,35.981],[2.019,40.053],[8.401,28.389],[7.809,27.797],[-11.377,48.007],[-14.141,50.884],[-29.202,47.982],[-27.43,42.763],[-15.387,25.649],[-13.755,22.191],[-32.261,33.668],[-43.742,32.275],[-61.144,9.189],[-46.421,6.968],[5.287,-13.725],[28.734,-24.749],[35.94,-30.463],[51.567,-52.388],[56.189,-56.86],[54.138,-39.963],[50.237,-38.11],[54.305,-35.822],[61.144,-34.819],[58.583,-30.03],[39.912,6.171],[29.568,19.804]],"c":true},"ix":2},"nm":"Path 2","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[0.933000033509,0.725,0.969000004787,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[256.368,152.467],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 24","np":4,"cix":2,"bm":0,"ix":24,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.645,-1.654],[5.614,-4.843],[1.771,0.829],[1.381,-1.098],[4.147,-7.614],[3.136,-3.307],[-1.167,-1.15],[-0.655,0.775],[-3.587,4.336],[-1.2,1.143],[1.395,-2.837],[1.741,-3.41],[-0.862,-1.308],[2.847,-1.896],[4.643,-2.072],[-0.529,0.785],[-2.889,4.478],[1.95,0.953],[0.708,-1.168],[3.117,-5.096],[-1.49,3.511],[-1.294,5.722],[2.058,0.945],[1.144,-1.281],[2.761,-0.506],[1.351,-3.319],[2.39,-2.123],[-0.078,2.001],[-3.658,11.365],[1.477,1.01],[1.108,-1.078],[4.441,-3.279],[4.279,2.97],[-5.018,5.699],[-4.294,7.625],[-1.609,0.694],[-1.001,0.82],[-2.232,2.197],[1.169,0.748],[0.447,-0.976],[1.949,0.076],[-1.534,4.764],[-4.049,5.781],[-3.996,-0.82],[-7.323,-5.414],[0.189,-0.698],[0.296,-4.118],[1.12,-2.85],[-1.178,-0.482],[-0.621,0.537],[-0.138,1.552]],"o":[[-0.486,7.295],[-1.458,-1.61],[-1.846,-0.864],[-6.947,5.528],[-2.152,3.949],[-0.746,0.787],[1.256,1.238],[3.631,-4.298],[0.512,-0.619],[-0.001,4.014],[-1.69,3.433],[-0.762,1.494],[3.082,4.683],[-4.486,2.003],[-0.514,-1.62],[2.978,-4.421],[0.834,-1.293],[-1.873,-0.916],[-3.096,5.109],[-0.51,-4.351],[2.278,-5.368],[0.424,-1.871],[-1.88,-0.864],[-1.866,2.091],[-4.736,0.867],[-1.119,2.748],[-2.484,2.206],[2.55,-11.747],[0.434,-1.35],[-1.814,-1.241],[-3.927,3.823],[-3.801,2.808],[3.977,-6.62],[6.514,-5.483],[0.805,-1.431],[0.369,1.125],[2.421,-1.984],[0.651,-0.641],[-1.004,-0.643],[-0.76,1.661],[0.853,-5.129],[3.766,-5.98],[1.498,-2.138],[0.692,7.422],[0.491,0.363],[-1.132,4.155],[-2.589,2.196],[-0.355,0.905],[0.886,0.362],[1.165,-1.007],[2.608,-0.734]],"v":[[40.13,-15.158],[31.116,3.038],[30.434,-1.585],[25.708,0.48],[10.289,21.148],[2.993,32.407],[2.16,35.332],[4.965,34.335],[15.708,21.314],[18.069,19.046],[15.516,28.832],[10.234,39.029],[9.248,43.761],[5.802,51.717],[-7.813,57.795],[-7.12,54.601],[1.816,41.341],[2.126,37.019],[-0.482,39.814],[-9.824,55.107],[-7.603,43.67],[-1.615,27.257],[-1.969,21.828],[-5.651,25.158],[-10.833,31.608],[-17.529,39.334],[-21.313,47.377],[-23.838,45.799],[-12.229,11.919],[-12.056,7.779],[-16.119,9.659],[-28.265,20.724],[-40.13,21.863],[-25.029,4.808],[-7.433,-13.516],[-4.092,-17.019],[-1.896,-15.955],[5.052,-22.284],[5.213,-24.834],[2.778,-23.847],[-0.98,-21.16],[6.01,-34.168],[17.403,-52.04],[23.814,-56.975],[30.294,-36.039],[30.8,-33.721],[30.969,-21.361],[27.24,-12.964],[28.079,-10.473],[30.274,-11.207],[32.275,-15.036]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.838999968884,0.816000007181,0.875,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[353.493,72.799],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 26","np":2,"cix":2,"bm":0,"ix":26,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[74.257,52.624],[35.945,43.706],[-0.716,28.514],[-2.697,13.321],[-23.505,-5.174],[-9.303,23.725],[-34.403,-5.174],[-46.294,-21.688],[-56.202,-36.88],[-62.807,-41.504],[-64.459,-37.211],[-68.422,-41.504],[-72.716,-41.504],[-74.257,-52.624],[-53.559,-43.816],[-20.293,-21.627],[31.871,15.633],[34.954,12.376]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.455000005984,0.325,0.607999973671,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[633.597,197.717],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 27","np":2,"cix":2,"bm":0,"ix":27,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[64.734,-21.138],[53.064,-8.808],[-5.504,-50.642],[-32.367,-68.257],[-53.064,-77.064],[-70.678,-55.487],[-86.532,-38.752],[-107.229,-21.578],[-49.54,77.064],[107.229,71.779]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57599995931,0.419999994016,0.689999988032,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[612.405,222.158],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 29","np":2,"cix":2,"bm":0,"ix":28,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":305,"st":0,"bm":0},{"ddd":0,"ind":14,"ty":4,"nm":"Shape Layer 10","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[540,960,0],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[2,-9],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[16,11],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-2,9],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-16,-11],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-401,284],[-424,294],[-442,319],[-461,347],[-498,363],[-515,362],[-550,365],[-552,388],[-526,380],[-550,404],[-557,573],[-168,588],[-217,521],[-226,496],[-251,461],[-291,423],[-312,357],[-343,312],[-378,312],[-393,310],[-413,320],[-431,325],[-409,297]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"bm":0,"g":{"p":3,"k":{"a":0,"k":[0,0.886,0.745,0.773,0.504,0.798,0.645,0.769,1,0.71,0.545,0.765],"ix":9}},"s":{"a":0,"k":[-511.148,539.672],"ix":5},"e":{"a":0,"k":[-373.504,399.348],"ix":6},"t":1,"nm":"Gradient Fill 1","mn":"ADBE Vector Graphic - G-Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":307,"st":0,"bm":0},{"ddd":0,"ind":15,"ty":4,"nm":"Shape Layer 11","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[540,960,0],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-332,304],[-318,356],[-295,427],[-273,436],[-253,457],[-240,477],[-235,508],[-207,533],[-171,548],[-119,576],[-207,471],[-217,435],[-257,398],[-290,351]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.65540747549,0.489598651961,0.756770833333,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":306,"st":0,"bm":0},{"ddd":0,"ind":16,"ty":4,"nm":"Shape Layer 7","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[540,960,0],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[32.5,110.5],[36.5,135.5],[43,145.5],[46,178.5],[52,179],[56,197.5],[47,213],[70.5,253.5],[77.5,275],[125.5,321],[165.5,393.5],[191,417.5],[244.5,462.5],[304.5,508.5],[272.5,414],[256,399],[231.5,349],[214.5,339],[202,327.5],[196,304],[175,247.5],[151.5,228.5],[120.5,197.5],[109.5,182.5],[83.5,172.5],[67.5,150]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"bm":0,"g":{"p":3,"k":{"a":0,"k":[0,0.561,0.404,0.678,0.504,0.531,0.382,0.657,1,0.502,0.361,0.635],"ix":9}},"s":{"a":0,"k":[78.344,233.344],"ix":5},"e":{"a":0,"k":[227.262,388.129],"ix":6},"t":1,"nm":"Gradient Fill 1","mn":"ADBE Vector Graphic - G-Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":306,"st":0,"bm":0},{"ddd":0,"ind":17,"ty":4,"nm":"Shape Layer 8","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[540,960,0],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[32,119],[-8,162],[-26,189],[-54,216],[-96,263],[-115,292],[-160,320],[-240,352],[-276,355],[-326,313],[-331.5,302],[-358.5,303],[-409.5,301.5],[-300.5,459.5],[-157.5,581],[64,576],[212.5,582],[345,576.5],[223,374],[88,182]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"bm":0,"g":{"p":3,"k":{"a":0,"k":[0,0.58,0.424,0.686,0.504,0.639,0.478,0.725,1,0.698,0.533,0.765],"ix":9}},"s":{"a":0,"k":[18.625,377.508],"ix":5},"e":{"a":0,"k":[-83.93,529.391],"ix":6},"t":1,"nm":"Gradient Fill 1","mn":"ADBE Vector Graphic - G-Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":306,"st":0,"bm":0},{"ddd":0,"ind":18,"ty":4,"nm":"Shape Layer 13","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[540,960,0],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-429,237],[-469,282],[-517,309],[-544,307],[-561,449],[-346,348],[-364,327],[-370,315],[-372,298],[-401,280],[-413,264],[-423,252]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.96862745098,0.796078431373,0.898039215686,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":306,"st":0,"bm":0},{"ddd":0,"ind":19,"ty":4,"nm":"Untitled-9 Outlines","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[314,1693,0],"ix":2},"a":{"a":0,"k":[226,44,0],"ix":1},"s":{"a":0,"k":[170,170,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-2.312,-1.101],[0,0],[0,0],[0,-0.99],[0,0],[0,0],[0,0],[0,0],[-1.652,0],[0,0],[-2.281,-0.991],[0,0],[-1.652,-0.66],[0,0],[0,0],[-0.796,0],[-3.734,-2.312],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-0.576,4.954],[-0.991,0.33]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[2.312,1.101],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[1.651,0],[0,0],[2.281,0.991],[0,0],[1.651,0.661],[0,0],[0,0],[0.796,0],[3.734,2.312],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0.576,-4.954],[0.99,-0.33]],"v":[[-190.899,-14.408],[-182.561,-12.757],[-178.928,-14.408],[-177.027,-24.647],[-173.612,-24.647],[-139.295,-24.647],[-125.754,-18.701],[-118.158,-24.647],[-111.552,-17.821],[-102.305,-18.701],[-102.305,-31.17],[-96.69,-24.647],[-96.69,-9.784],[-84.139,-7.803],[-74.231,-16.059],[-57.387,-11.436],[-49.13,-6.151],[-41.204,-12.096],[-37.54,-4.5],[-0.88,-8.463],[8.007,-9.124],[21.879,-4.369],[37.4,-1.307],[48.826,-4.5],[61.741,-5.491],[78.685,-1.307],[95.2,0.454],[106.429,0.454],[142.759,-1.307],[160.264,-1.307],[181.731,-9.674],[205.842,-4.5],[214.759,-1.307],[207.163,-1.307],[193.952,5.519],[140.447,17.849],[-27.002,17.849],[-150.524,19.39],[-190.899,26.216],[-214.183,26.216],[-204.359,-11.766]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.898000021542,0.677999997606,0.702000038297,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[227.4,46.639],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":303,"st":0,"bm":0},{"ddd":0,"ind":21,"ty":4,"nm":"star Outlines 2","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":-1,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":46,"s":[100]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":98,"s":[10]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0.167]},"t":175,"s":[100]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0]},"t":248,"s":[0]},{"t":297,"s":[100]}],"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[754,624,0],"ix":2},"a":{"a":0,"k":[298.5,301,0],"ix":1},"s":{"a":0,"k":[120,120,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.473,0.278],[-0.059,-1.424],[1.687,0.053],[-0.081,1.518]],"o":[[1.479,0.149],[0.071,1.68],[-1.434,-0.044],[0.077,-1.444]],"v":[[-0.043,-2.621],[2.561,-0.197],[-0.183,2.568],[-2.551,-0.022]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.88978247549,0.932598039216,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[575.294,58.597],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[1.479,0.149],[0.077,-1.444],[-1.434,-0.044],[0.071,1.68]],"o":[[-1.473,0.278],[-0.081,1.518],[1.687,0.053],[-0.059,-1.424]],"v":[[-0.096,-2.573],[-2.604,0.027],[-0.236,2.616],[2.508,-0.149]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.984,-2.448],[2.533,0.174],[-0.322,2.567],[-2.888,-0.29]],"o":[[-1.258,2.246],[-2.368,-0.162],[0.277,-2.196],[2.56,0.256]],"v":[[5.057,0.264],[-0.211,4.916],[-4.735,-0.072],[0.102,-4.801]],"c":true},"ix":2},"nm":"Path 2","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.88978247549,0.932598039216,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[575.347,58.548],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","np":4,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.036,-1.143],[1.118,0.043],[-0.219,1.381],[-1.148,-0.151]],"o":[[-0.163,1.161],[-1.395,-0.053],[0.18,-1.133],[1.16,0.153]],"v":[[2.055,0.184],[0.059,2.003],[-1.836,-0.348],[0.328,-1.895]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.88978247549,0.932598039216,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[443.605,124.101],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 3","np":2,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.378,0.656],[-0.172,-1.439],[1.316,-0.165],[0.063,1.644]],"o":[[1.553,0.402],[0.19,1.597],[-1.722,0.217],[-0.055,-1.461]],"v":[[-0.122,-3.084],[2.849,-0.221],[0.239,2.867],[-2.983,-0.076]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.88978247549,0.932598039216,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[396.363,90.797],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 4","np":2,"cix":2,"bm":0,"ix":4,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[1.267,-0.204],[0.097,1.299],[-1.4,0.168],[-0.019,-1.564]],"o":[[-1.474,-0.02],[-0.094,-1.262],[1.626,-0.196],[0.014,1.309]],"v":[[0.199,2.418],[-2.098,0.293],[-0.314,-2.222],[2.178,0.083]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.88978247549,0.932598039216,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[506.89,578.723],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 5","np":2,"cix":2,"bm":0,"ix":5,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[1.39,-0.769],[0.161,1.522],[-1.558,0.184],[-0.233,-1.486]],"o":[[-1.777,-0.565],[-0.204,-1.925],[1.8,-0.212],[0.232,1.478]],"v":[[0.306,3.577],[-3.331,0.409],[0.004,-3.364],[3.303,0.228]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.88978247549,0.932598039216,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[396.076,503.658],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 6","np":2,"cix":2,"bm":0,"ix":6,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.318,0.326],[-2.402,0.385],[-0.201,-0.976],[2.195,-0.279]],"o":[[0.205,-1.815],[1.103,-0.176],[0.668,3.229],[-0.318,-0.326]],"v":[[-2.783,1.701],[-0.184,-2.503],[2.116,-0.973],[-1.829,2.678]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.88978247549,0.932598039216,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[384.22,296.986],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 7","np":2,"cix":2,"bm":0,"ix":7,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.205,-1.815],[-1.482,1.614],[-1.981,-1.973],[2.106,-1.951],[1.623,3.263],[0.668,3.229],[1.103,-0.176]],"o":[[-3.254,-1.603],[1.95,-2.123],[1.986,1.978],[-1.595,1.478],[2.195,-0.279],[-0.201,-0.976],[-2.402,0.385]],"v":[[-2.431,1.472],[-2.552,-3.59],[3.488,-3.51],[3.579,2.533],[-1.477,2.449],[2.468,-1.202],[0.168,-2.732]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.88978247549,0.932598039216,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[383.867,297.215],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 8","np":2,"cix":2,"bm":0,"ix":8,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[1.833,-0.149],[0.131,1.31],[-1.639,-0.569],[-0.172,-3.222]],"o":[[-2.596,1.378],[-0.136,-1.361],[1.783,0.62],[0.174,3.271]],"v":[[-0.363,2.146],[-4.328,-0.029],[-0.929,-2.475],[4.29,-0.303]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.88978247549,0.932598039216,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[540.409,507.697],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 9","np":2,"cix":2,"bm":0,"ix":9,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.723,-0.315],[-0.016,1.305],[-1.11,-0.043],[-0.044,-1.285]],"o":[[-1.514,-0.208],[0.014,-1.075],[1.269,0.048],[0.041,1.168]],"v":[[0.343,2.04],[-1.993,-0.176],[-0.161,-1.997],[1.968,0.164]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.88978247549,0.932598039216,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[255.696,68.434],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 10","np":2,"cix":2,"bm":0,"ix":10,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[1.637,-0.707],[0.014,1.576],[-1.528,0.012],[0.166,-1.811]],"o":[[-1.458,-0.925],[-0.013,-1.573],[1.757,-0.013],[-0.13,1.431]],"v":[[-0.123,3.565],[-3.176,-0.082],[-0.21,-3.552],[3.023,0.044]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.88978247549,0.932598039216,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[446.403,244.363],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 11","np":2,"cix":2,"bm":0,"ix":11,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[2.37,-1.736],[1.267,0.98],[-0.012,1.371],[-1.449,-1.884]],"o":[[-2.394,3.189],[-2.497,-1.933],[1.105,-1.321],[1.335,1.737]],"v":[[2.51,1.73],[-2.384,0.612],[-1.133,-2.967],[2.268,-3.035]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.88978247549,0.932598039216,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[445.71,350.894],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 12","np":2,"cix":2,"bm":0,"ix":12,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[1.422,-1.847],[-2.862,3.688],[-1.249,-2.126]],"o":[[-2.437,-1.918],[2.432,-2.063],[2.001,3.403]],"v":[[0.106,4.718],[-2.357,-2.656],[3.218,-1.363]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.88978247549,0.932598039216,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[308.377,137.79],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 13","np":2,"cix":2,"bm":0,"ix":13,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.487,1.393],[-1.026,-0.065],[0.044,-0.604]],"o":[[1.024,0.063],[-0.043,0.605],[-1.351,-0.128]],"v":[[-1.538,-1.003],[1.538,-0.81],[1.406,1.003]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.88978247549,0.932598039216,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[31.87,454.757],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 14","np":2,"cix":2,"bm":0,"ix":14,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.624,0.039],[-0.047,-1.014],[0.135,1.343]],"o":[[0.046,1.014],[-1.391,-0.48],[0.624,-0.038]],"v":[[0.866,-1.52],[1.006,1.521],[-1.006,-1.405]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.88978247549,0.932598039216,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[27.334,450.23],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 15","np":2,"cix":2,"bm":0,"ix":15,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[1.024,0.063],[0.664,0.668],[0.047,1.013],[-2.881,-2.721],[1.64,-2.025]],"o":[[-0.665,-0.668],[-0.047,-1.014],[1.903,-1.262],[2.966,2.8],[-1.026,-0.065]],"v":[[-2.479,4.513],[-4.472,2.51],[-4.612,-0.531],[1.646,-1.984],[0.596,4.706]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.88978247549,0.932598039216,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[32.812,449.241],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 16","np":2,"cix":2,"bm":0,"ix":16,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[1.229,-0.266],[0.144,1.369],[-1.094,0.121],[-0.268,-1.364]],"o":[[-1.345,-0.037],[-0.121,-1.152],[1.225,-0.136],[0.277,1.416]],"v":[[0.206,2.048],[-2.258,0.107],[-0.556,-1.912],[2.102,-0.285]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.88978247549,0.932598039216,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[54.753,48.339],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 17","np":2,"cix":2,"bm":0,"ix":17,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[1.588,-1.991],[0.274,1.694],[-1.245,0.706]],"o":[[-1.586,0.082],[-0.281,-1.741],[1.544,1.522]],"v":[[0.989,2.532],[-2.296,0.464],[0.221,-2.614]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.88978247549,0.932598039216,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[130.117,179.168],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 18","np":2,"cix":2,"bm":0,"ix":18,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.32,-1.057],[1.361,0.013],[0.152,1.16],[-1.319,0.142]],"o":[[-0.148,1.625],[-1.096,-0.01],[-0.187,-1.424],[1.366,-0.148]],"v":[[2.3,-0.237],[-0.002,2.106],[-2.113,0.391],[-0.142,-1.971]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.88978247549,0.932598039216,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[337.187,394.161],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 19","np":2,"cix":2,"bm":0,"ix":19,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.987,-0.147],[-0.143,1.237],[-1.223,-0.09],[0.001,-0.947]],"o":[[-1.31,-0.212],[0.17,-1.48],[0.908,0.067],[-0.001,1.48]],"v":[[0.068,1.802],[-1.987,-0.093],[0.561,-1.712],[2.128,-0.18]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.88978247549,0.932598039216,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[277.653,495.67],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 20","np":2,"cix":2,"bm":0,"ix":20,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.24,-0.89],[1.396,0.106],[-0.025,1.103],[-1.403,-0.089]],"o":[[-0.203,1.478],[-1.141,-0.087],[0.031,-1.344],[1.181,0.074]],"v":[[2.067,-0.185],[-0.238,2.007],[-2.042,0.029],[0.2,-2.023]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.88978247549,0.932598039216,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[190.815,367.333],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 21","np":2,"cix":2,"bm":0,"ix":21,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[1.342,-0.231],[0.063,1.565],[-1.226,0.152],[-0.214,-1.367]],"o":[[-1.196,-0.124],[-0.057,-1.436],[1.22,-0.152],[0.267,1.702]],"v":[[-0.046,1.946],[-2.686,0.277],[-0.336,-1.794],[2.476,-0.408]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.88978247549,0.932598039216,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[69.65,180.766],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 22","np":2,"cix":2,"bm":0,"ix":22,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.655,0.592],[-0.256,-1.712],[1.673,-0.283],[0.165,1.957]],"o":[[1.873,0.193],[0.28,1.871],[-2.107,0.356],[-0.155,-1.846]],"v":[[-0.279,-3.434],[3.154,-0.43],[0.373,3.078],[-3.279,-0.016]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.88978247549,0.932598039216,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[321.365,518.896],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 23","np":2,"cix":2,"bm":0,"ix":23,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.535,-3.105],[2.766,3.177],[-1.455,1.408],[-1.761,-2.06]],"o":[[-2.769,-1.961],[-1.486,-1.708],[1.199,-1.159],[1.35,1.58]],"v":[[4.752,2.689],[-3.266,1.866],[-3.18,-2.211],[0.741,-2.983]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.88978247549,0.932598039216,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[90.684,258.856],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 24","np":2,"cix":2,"bm":0,"ix":24,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.415,-1.132],[1.559,0.291],[-0.233,1.377],[-1.309,-0.002]],"o":[[-0.572,1.1],[-1.187,-0.223],[0.199,-1.186],[1.279,0.002]],"v":[[2.558,-0.104],[0.077,2.39],[-2.324,-0.353],[0.517,-2.679]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.88978247549,0.932598039216,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[129.142,415.268],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 25","np":2,"cix":2,"bm":0,"ix":25,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.975,0.785],[0.033,-1.188],[1.205,-0.071],[0.066,1.124]],"o":[[1.261,0.42],[-0.035,1.231],[-1.286,0.076],[-0.09,-1.538]],"v":[[0.256,-2.353],[2.44,0.111],[0.088,2.277],[-2.382,0.219]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.88978247549,0.932598039216,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[255.31,526.025],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 26","np":2,"cix":2,"bm":0,"ix":26,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":305,"st":0,"bm":0},{"ddd":0,"ind":22,"ty":4,"nm":"star Outlines","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[514,496,0],"ix":2},"a":{"a":0,"k":[298.5,301,0],"ix":1},"s":{"a":0,"k":[170,170,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.473,0.278],[-0.059,-1.424],[1.687,0.053],[-0.081,1.518]],"o":[[1.479,0.149],[0.071,1.68],[-1.434,-0.044],[0.077,-1.444]],"v":[[-0.043,-2.621],[2.561,-0.197],[-0.183,2.568],[-2.551,-0.022]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.88978247549,0.932598039216,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[575.294,58.597],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[1.479,0.149],[0.077,-1.444],[-1.434,-0.044],[0.071,1.68]],"o":[[-1.473,0.278],[-0.081,1.518],[1.687,0.053],[-0.059,-1.424]],"v":[[-0.096,-2.573],[-2.604,0.027],[-0.236,2.616],[2.508,-0.149]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.984,-2.448],[2.533,0.174],[-0.322,2.567],[-2.888,-0.29]],"o":[[-1.258,2.246],[-2.368,-0.162],[0.277,-2.196],[2.56,0.256]],"v":[[5.057,0.264],[-0.211,4.916],[-4.735,-0.072],[0.102,-4.801]],"c":true},"ix":2},"nm":"Path 2","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.88978247549,0.932598039216,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[575.347,58.548],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","np":4,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.036,-1.143],[1.118,0.043],[-0.219,1.381],[-1.148,-0.151]],"o":[[-0.163,1.161],[-1.395,-0.053],[0.18,-1.133],[1.16,0.153]],"v":[[2.055,0.184],[0.059,2.003],[-1.836,-0.348],[0.328,-1.895]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.88978247549,0.932598039216,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[443.605,124.101],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 3","np":2,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.378,0.656],[-0.172,-1.439],[1.316,-0.165],[0.063,1.644]],"o":[[1.553,0.402],[0.19,1.597],[-1.722,0.217],[-0.055,-1.461]],"v":[[-0.122,-3.084],[2.849,-0.221],[0.239,2.867],[-2.983,-0.076]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.88978247549,0.932598039216,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[396.363,90.797],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 4","np":2,"cix":2,"bm":0,"ix":4,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[1.267,-0.204],[0.097,1.299],[-1.4,0.168],[-0.019,-1.564]],"o":[[-1.474,-0.02],[-0.094,-1.262],[1.626,-0.196],[0.014,1.309]],"v":[[0.199,2.418],[-2.098,0.293],[-0.314,-2.222],[2.178,0.083]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.88978247549,0.932598039216,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[506.89,578.723],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 5","np":2,"cix":2,"bm":0,"ix":5,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[1.39,-0.769],[0.161,1.522],[-1.558,0.184],[-0.233,-1.486]],"o":[[-1.777,-0.565],[-0.204,-1.925],[1.8,-0.212],[0.232,1.478]],"v":[[0.306,3.577],[-3.331,0.409],[0.004,-3.364],[3.303,0.228]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.88978247549,0.932598039216,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[396.076,503.658],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 6","np":2,"cix":2,"bm":0,"ix":6,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.318,0.326],[-2.402,0.385],[-0.201,-0.976],[2.195,-0.279]],"o":[[0.205,-1.815],[1.103,-0.176],[0.668,3.229],[-0.318,-0.326]],"v":[[-2.783,1.701],[-0.184,-2.503],[2.116,-0.973],[-1.829,2.678]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.88978247549,0.932598039216,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[384.22,296.986],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 7","np":2,"cix":2,"bm":0,"ix":7,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.205,-1.815],[-1.482,1.614],[-1.981,-1.973],[2.106,-1.951],[1.623,3.263],[0.668,3.229],[1.103,-0.176]],"o":[[-3.254,-1.603],[1.95,-2.123],[1.986,1.978],[-1.595,1.478],[2.195,-0.279],[-0.201,-0.976],[-2.402,0.385]],"v":[[-2.431,1.472],[-2.552,-3.59],[3.488,-3.51],[3.579,2.533],[-1.477,2.449],[2.468,-1.202],[0.168,-2.732]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.88978247549,0.932598039216,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[383.867,297.215],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 8","np":2,"cix":2,"bm":0,"ix":8,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[1.833,-0.149],[0.131,1.31],[-1.639,-0.569],[-0.172,-3.222]],"o":[[-2.596,1.378],[-0.136,-1.361],[1.783,0.62],[0.174,3.271]],"v":[[-0.363,2.146],[-4.328,-0.029],[-0.929,-2.475],[4.29,-0.303]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.88978247549,0.932598039216,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[540.409,507.697],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 9","np":2,"cix":2,"bm":0,"ix":9,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.723,-0.315],[-0.016,1.305],[-1.11,-0.043],[-0.044,-1.285]],"o":[[-1.514,-0.208],[0.014,-1.075],[1.269,0.048],[0.041,1.168]],"v":[[0.343,2.04],[-1.993,-0.176],[-0.161,-1.997],[1.968,0.164]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.88978247549,0.932598039216,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[255.696,68.434],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 10","np":2,"cix":2,"bm":0,"ix":10,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[1.637,-0.707],[0.014,1.576],[-1.528,0.012],[0.166,-1.811]],"o":[[-1.458,-0.925],[-0.013,-1.573],[1.757,-0.013],[-0.13,1.431]],"v":[[-0.123,3.565],[-3.176,-0.082],[-0.21,-3.552],[3.023,0.044]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.88978247549,0.932598039216,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[446.403,244.363],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 11","np":2,"cix":2,"bm":0,"ix":11,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[2.37,-1.736],[1.267,0.98],[-0.012,1.371],[-1.449,-1.884]],"o":[[-2.394,3.189],[-2.497,-1.933],[1.105,-1.321],[1.335,1.737]],"v":[[2.51,1.73],[-2.384,0.612],[-1.133,-2.967],[2.268,-3.035]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.88978247549,0.932598039216,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[445.71,350.894],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 12","np":2,"cix":2,"bm":0,"ix":12,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[1.422,-1.847],[-2.862,3.688],[-1.249,-2.126]],"o":[[-2.437,-1.918],[2.432,-2.063],[2.001,3.403]],"v":[[0.106,4.718],[-2.357,-2.656],[3.218,-1.363]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.88978247549,0.932598039216,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[308.377,137.79],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 13","np":2,"cix":2,"bm":0,"ix":13,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.487,1.393],[-1.026,-0.065],[0.044,-0.604]],"o":[[1.024,0.063],[-0.043,0.605],[-1.351,-0.128]],"v":[[-1.538,-1.003],[1.538,-0.81],[1.406,1.003]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.88978247549,0.932598039216,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[31.87,454.757],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 14","np":2,"cix":2,"bm":0,"ix":14,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.624,0.039],[-0.047,-1.014],[0.135,1.343]],"o":[[0.046,1.014],[-1.391,-0.48],[0.624,-0.038]],"v":[[0.866,-1.52],[1.006,1.521],[-1.006,-1.405]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.88978247549,0.932598039216,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[27.334,450.23],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 15","np":2,"cix":2,"bm":0,"ix":15,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[1.024,0.063],[0.664,0.668],[0.047,1.013],[-2.881,-2.721],[1.64,-2.025]],"o":[[-0.665,-0.668],[-0.047,-1.014],[1.903,-1.262],[2.966,2.8],[-1.026,-0.065]],"v":[[-2.479,4.513],[-4.472,2.51],[-4.612,-0.531],[1.646,-1.984],[0.596,4.706]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.88978247549,0.932598039216,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[32.812,449.241],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 16","np":2,"cix":2,"bm":0,"ix":16,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[1.229,-0.266],[0.144,1.369],[-1.094,0.121],[-0.268,-1.364]],"o":[[-1.345,-0.037],[-0.121,-1.152],[1.225,-0.136],[0.277,1.416]],"v":[[0.206,2.048],[-2.258,0.107],[-0.556,-1.912],[2.102,-0.285]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.88978247549,0.932598039216,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[54.753,48.339],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 17","np":2,"cix":2,"bm":0,"ix":17,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[1.588,-1.991],[0.274,1.694],[-1.245,0.706]],"o":[[-1.586,0.082],[-0.281,-1.741],[1.544,1.522]],"v":[[0.989,2.532],[-2.296,0.464],[0.221,-2.614]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.88978247549,0.932598039216,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[130.117,179.168],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 18","np":2,"cix":2,"bm":0,"ix":18,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.32,-1.057],[1.361,0.013],[0.152,1.16],[-1.319,0.142]],"o":[[-0.148,1.625],[-1.096,-0.01],[-0.187,-1.424],[1.366,-0.148]],"v":[[2.3,-0.237],[-0.002,2.106],[-2.113,0.391],[-0.142,-1.971]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.88978247549,0.932598039216,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[337.187,394.161],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 19","np":2,"cix":2,"bm":0,"ix":19,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.987,-0.147],[-0.143,1.237],[-1.223,-0.09],[0.001,-0.947]],"o":[[-1.31,-0.212],[0.17,-1.48],[0.908,0.067],[-0.001,1.48]],"v":[[0.068,1.802],[-1.987,-0.093],[0.561,-1.712],[2.128,-0.18]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.88978247549,0.932598039216,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[277.653,495.67],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 20","np":2,"cix":2,"bm":0,"ix":20,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.24,-0.89],[1.396,0.106],[-0.025,1.103],[-1.403,-0.089]],"o":[[-0.203,1.478],[-1.141,-0.087],[0.031,-1.344],[1.181,0.074]],"v":[[2.067,-0.185],[-0.238,2.007],[-2.042,0.029],[0.2,-2.023]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.88978247549,0.932598039216,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[190.815,367.333],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 21","np":2,"cix":2,"bm":0,"ix":21,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[1.342,-0.231],[0.063,1.565],[-1.226,0.152],[-0.214,-1.367]],"o":[[-1.196,-0.124],[-0.057,-1.436],[1.22,-0.152],[0.267,1.702]],"v":[[-0.046,1.946],[-2.686,0.277],[-0.336,-1.794],[2.476,-0.408]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.88978247549,0.932598039216,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[69.65,180.766],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 22","np":2,"cix":2,"bm":0,"ix":22,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.655,0.592],[-0.256,-1.712],[1.673,-0.283],[0.165,1.957]],"o":[[1.873,0.193],[0.28,1.871],[-2.107,0.356],[-0.155,-1.846]],"v":[[-0.279,-3.434],[3.154,-0.43],[0.373,3.078],[-3.279,-0.016]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.88978247549,0.932598039216,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[321.365,518.896],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 23","np":2,"cix":2,"bm":0,"ix":23,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.535,-3.105],[2.766,3.177],[-1.455,1.408],[-1.761,-2.06]],"o":[[-2.769,-1.961],[-1.486,-1.708],[1.199,-1.159],[1.35,1.58]],"v":[[4.752,2.689],[-3.266,1.866],[-3.18,-2.211],[0.741,-2.983]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.88978247549,0.932598039216,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[90.684,258.856],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 24","np":2,"cix":2,"bm":0,"ix":24,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.415,-1.132],[1.559,0.291],[-0.233,1.377],[-1.309,-0.002]],"o":[[-0.572,1.1],[-1.187,-0.223],[0.199,-1.186],[1.279,0.002]],"v":[[2.558,-0.104],[0.077,2.39],[-2.324,-0.353],[0.517,-2.679]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.88978247549,0.932598039216,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[129.142,415.268],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 25","np":2,"cix":2,"bm":0,"ix":25,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.975,0.785],[0.033,-1.188],[1.205,-0.071],[0.066,1.124]],"o":[[1.261,0.42],[-0.035,1.231],[-1.286,0.076],[-0.09,-1.538]],"v":[[0.256,-2.353],[2.44,0.111],[0.088,2.277],[-2.382,0.219]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.88978247549,0.932598039216,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[255.31,526.025],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 26","np":2,"cix":2,"bm":0,"ix":26,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":305,"st":0,"bm":0},{"ddd":0,"ind":24,"ty":4,"nm":"star Outlines 3","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":-1,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":46,"s":[100]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":98,"s":[10]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0.167]},"t":175,"s":[100]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0]},"t":248,"s":[0]},{"t":297,"s":[100]}],"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[-2,868,0],"ix":2},"a":{"a":0,"k":[298.5,301,0],"ix":1},"s":{"a":0,"k":[170,170,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.473,0.278],[-0.059,-1.424],[1.687,0.053],[-0.081,1.518]],"o":[[1.479,0.149],[0.071,1.68],[-1.434,-0.044],[0.077,-1.444]],"v":[[-0.043,-2.621],[2.561,-0.197],[-0.183,2.568],[-2.551,-0.022]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.88978247549,0.932598039216,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[575.294,58.597],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[1.479,0.149],[0.077,-1.444],[-1.434,-0.044],[0.071,1.68]],"o":[[-1.473,0.278],[-0.081,1.518],[1.687,0.053],[-0.059,-1.424]],"v":[[-0.096,-2.573],[-2.604,0.027],[-0.236,2.616],[2.508,-0.149]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.984,-2.448],[2.533,0.174],[-0.322,2.567],[-2.888,-0.29]],"o":[[-1.258,2.246],[-2.368,-0.162],[0.277,-2.196],[2.56,0.256]],"v":[[5.057,0.264],[-0.211,4.916],[-4.735,-0.072],[0.102,-4.801]],"c":true},"ix":2},"nm":"Path 2","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.88978247549,0.932598039216,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[575.347,58.548],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","np":4,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.036,-1.143],[1.118,0.043],[-0.219,1.381],[-1.148,-0.151]],"o":[[-0.163,1.161],[-1.395,-0.053],[0.18,-1.133],[1.16,0.153]],"v":[[2.055,0.184],[0.059,2.003],[-1.836,-0.348],[0.328,-1.895]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.88978247549,0.932598039216,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[443.605,124.101],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 3","np":2,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.378,0.656],[-0.172,-1.439],[1.316,-0.165],[0.063,1.644]],"o":[[1.553,0.402],[0.19,1.597],[-1.722,0.217],[-0.055,-1.461]],"v":[[-0.122,-3.084],[2.849,-0.221],[0.239,2.867],[-2.983,-0.076]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.88978247549,0.932598039216,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[396.363,90.797],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 4","np":2,"cix":2,"bm":0,"ix":4,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[1.267,-0.204],[0.097,1.299],[-1.4,0.168],[-0.019,-1.564]],"o":[[-1.474,-0.02],[-0.094,-1.262],[1.626,-0.196],[0.014,1.309]],"v":[[0.199,2.418],[-2.098,0.293],[-0.314,-2.222],[2.178,0.083]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.88978247549,0.932598039216,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[506.89,578.723],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 5","np":2,"cix":2,"bm":0,"ix":5,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[1.39,-0.769],[0.161,1.522],[-1.558,0.184],[-0.233,-1.486]],"o":[[-1.777,-0.565],[-0.204,-1.925],[1.8,-0.212],[0.232,1.478]],"v":[[0.306,3.577],[-3.331,0.409],[0.004,-3.364],[3.303,0.228]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.88978247549,0.932598039216,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[396.076,503.658],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 6","np":2,"cix":2,"bm":0,"ix":6,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.318,0.326],[-2.402,0.385],[-0.201,-0.976],[2.195,-0.279]],"o":[[0.205,-1.815],[1.103,-0.176],[0.668,3.229],[-0.318,-0.326]],"v":[[-2.783,1.701],[-0.184,-2.503],[2.116,-0.973],[-1.829,2.678]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.88978247549,0.932598039216,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[384.22,296.986],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 7","np":2,"cix":2,"bm":0,"ix":7,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.205,-1.815],[-1.482,1.614],[-1.981,-1.973],[2.106,-1.951],[1.623,3.263],[0.668,3.229],[1.103,-0.176]],"o":[[-3.254,-1.603],[1.95,-2.123],[1.986,1.978],[-1.595,1.478],[2.195,-0.279],[-0.201,-0.976],[-2.402,0.385]],"v":[[-2.431,1.472],[-2.552,-3.59],[3.488,-3.51],[3.579,2.533],[-1.477,2.449],[2.468,-1.202],[0.168,-2.732]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.88978247549,0.932598039216,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[383.867,297.215],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 8","np":2,"cix":2,"bm":0,"ix":8,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[1.833,-0.149],[0.131,1.31],[-1.639,-0.569],[-0.172,-3.222]],"o":[[-2.596,1.378],[-0.136,-1.361],[1.783,0.62],[0.174,3.271]],"v":[[-0.363,2.146],[-4.328,-0.029],[-0.929,-2.475],[4.29,-0.303]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.88978247549,0.932598039216,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[540.409,507.697],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 9","np":2,"cix":2,"bm":0,"ix":9,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.723,-0.315],[-0.016,1.305],[-1.11,-0.043],[-0.044,-1.285]],"o":[[-1.514,-0.208],[0.014,-1.075],[1.269,0.048],[0.041,1.168]],"v":[[0.343,2.04],[-1.993,-0.176],[-0.161,-1.997],[1.968,0.164]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.88978247549,0.932598039216,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[255.696,68.434],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 10","np":2,"cix":2,"bm":0,"ix":10,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[1.637,-0.707],[0.014,1.576],[-1.528,0.012],[0.166,-1.811]],"o":[[-1.458,-0.925],[-0.013,-1.573],[1.757,-0.013],[-0.13,1.431]],"v":[[-0.123,3.565],[-3.176,-0.082],[-0.21,-3.552],[3.023,0.044]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.88978247549,0.932598039216,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[446.403,244.363],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 11","np":2,"cix":2,"bm":0,"ix":11,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[2.37,-1.736],[1.267,0.98],[-0.012,1.371],[-1.449,-1.884]],"o":[[-2.394,3.189],[-2.497,-1.933],[1.105,-1.321],[1.335,1.737]],"v":[[2.51,1.73],[-2.384,0.612],[-1.133,-2.967],[2.268,-3.035]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.88978247549,0.932598039216,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[445.71,350.894],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 12","np":2,"cix":2,"bm":0,"ix":12,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[1.422,-1.847],[-2.862,3.688],[-1.249,-2.126]],"o":[[-2.437,-1.918],[2.432,-2.063],[2.001,3.403]],"v":[[0.106,4.718],[-2.357,-2.656],[3.218,-1.363]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.88978247549,0.932598039216,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[308.377,137.79],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 13","np":2,"cix":2,"bm":0,"ix":13,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.487,1.393],[-1.026,-0.065],[0.044,-0.604]],"o":[[1.024,0.063],[-0.043,0.605],[-1.351,-0.128]],"v":[[-1.538,-1.003],[1.538,-0.81],[1.406,1.003]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.88978247549,0.932598039216,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[31.87,454.757],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 14","np":2,"cix":2,"bm":0,"ix":14,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.624,0.039],[-0.047,-1.014],[0.135,1.343]],"o":[[0.046,1.014],[-1.391,-0.48],[0.624,-0.038]],"v":[[0.866,-1.52],[1.006,1.521],[-1.006,-1.405]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.88978247549,0.932598039216,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[27.334,450.23],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 15","np":2,"cix":2,"bm":0,"ix":15,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[1.024,0.063],[0.664,0.668],[0.047,1.013],[-2.881,-2.721],[1.64,-2.025]],"o":[[-0.665,-0.668],[-0.047,-1.014],[1.903,-1.262],[2.966,2.8],[-1.026,-0.065]],"v":[[-2.479,4.513],[-4.472,2.51],[-4.612,-0.531],[1.646,-1.984],[0.596,4.706]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.88978247549,0.932598039216,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[32.812,449.241],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 16","np":2,"cix":2,"bm":0,"ix":16,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[1.229,-0.266],[0.144,1.369],[-1.094,0.121],[-0.268,-1.364]],"o":[[-1.345,-0.037],[-0.121,-1.152],[1.225,-0.136],[0.277,1.416]],"v":[[0.206,2.048],[-2.258,0.107],[-0.556,-1.912],[2.102,-0.285]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.88978247549,0.932598039216,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[54.753,48.339],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 17","np":2,"cix":2,"bm":0,"ix":17,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[1.588,-1.991],[0.274,1.694],[-1.245,0.706]],"o":[[-1.586,0.082],[-0.281,-1.741],[1.544,1.522]],"v":[[0.989,2.532],[-2.296,0.464],[0.221,-2.614]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.88978247549,0.932598039216,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[130.117,179.168],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 18","np":2,"cix":2,"bm":0,"ix":18,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.32,-1.057],[1.361,0.013],[0.152,1.16],[-1.319,0.142]],"o":[[-0.148,1.625],[-1.096,-0.01],[-0.187,-1.424],[1.366,-0.148]],"v":[[2.3,-0.237],[-0.002,2.106],[-2.113,0.391],[-0.142,-1.971]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.88978247549,0.932598039216,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[337.187,394.161],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 19","np":2,"cix":2,"bm":0,"ix":19,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.987,-0.147],[-0.143,1.237],[-1.223,-0.09],[0.001,-0.947]],"o":[[-1.31,-0.212],[0.17,-1.48],[0.908,0.067],[-0.001,1.48]],"v":[[0.068,1.802],[-1.987,-0.093],[0.561,-1.712],[2.128,-0.18]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.88978247549,0.932598039216,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[277.653,495.67],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 20","np":2,"cix":2,"bm":0,"ix":20,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.24,-0.89],[1.396,0.106],[-0.025,1.103],[-1.403,-0.089]],"o":[[-0.203,1.478],[-1.141,-0.087],[0.031,-1.344],[1.181,0.074]],"v":[[2.067,-0.185],[-0.238,2.007],[-2.042,0.029],[0.2,-2.023]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.88978247549,0.932598039216,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[190.815,367.333],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 21","np":2,"cix":2,"bm":0,"ix":21,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[1.342,-0.231],[0.063,1.565],[-1.226,0.152],[-0.214,-1.367]],"o":[[-1.196,-0.124],[-0.057,-1.436],[1.22,-0.152],[0.267,1.702]],"v":[[-0.046,1.946],[-2.686,0.277],[-0.336,-1.794],[2.476,-0.408]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.88978247549,0.932598039216,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[69.65,180.766],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 22","np":2,"cix":2,"bm":0,"ix":22,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.655,0.592],[-0.256,-1.712],[1.673,-0.283],[0.165,1.957]],"o":[[1.873,0.193],[0.28,1.871],[-2.107,0.356],[-0.155,-1.846]],"v":[[-0.279,-3.434],[3.154,-0.43],[0.373,3.078],[-3.279,-0.016]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.88978247549,0.932598039216,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[321.365,518.896],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 23","np":2,"cix":2,"bm":0,"ix":23,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.535,-3.105],[2.766,3.177],[-1.455,1.408],[-1.761,-2.06]],"o":[[-2.769,-1.961],[-1.486,-1.708],[1.199,-1.159],[1.35,1.58]],"v":[[4.752,2.689],[-3.266,1.866],[-3.18,-2.211],[0.741,-2.983]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.88978247549,0.932598039216,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[90.684,258.856],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 24","np":2,"cix":2,"bm":0,"ix":24,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.415,-1.132],[1.559,0.291],[-0.233,1.377],[-1.309,-0.002]],"o":[[-0.572,1.1],[-1.187,-0.223],[0.199,-1.186],[1.279,0.002]],"v":[[2.558,-0.104],[0.077,2.39],[-2.324,-0.353],[0.517,-2.679]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.88978247549,0.932598039216,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[129.142,415.268],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 25","np":2,"cix":2,"bm":0,"ix":25,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.975,0.785],[0.033,-1.188],[1.205,-0.071],[0.066,1.124]],"o":[[1.261,0.42],[-0.035,1.231],[-1.286,0.076],[-0.09,-1.538]],"v":[[0.256,-2.353],[2.44,0.111],[0.088,2.277],[-2.382,0.219]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.88978247549,0.932598039216,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[255.31,526.025],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 26","np":2,"cix":2,"bm":0,"ix":26,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":305,"st":0,"bm":0},{"ddd":0,"ind":25,"ty":4,"nm":"Shape Layer 9","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[540,960,0],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"rc","d":1,"s":{"a":0,"k":[1364.914,327.789],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"r":{"a":0,"k":0,"ix":4},"nm":"Rectangle Path 1","mn":"ADBE Vector Shape - Rect","hd":false},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"bm":0,"g":{"p":3,"k":{"a":0,"k":[0,0.929,0.753,0.757,0.504,0.794,0.62,0.747,1,0.659,0.486,0.737],"ix":9}},"s":{"a":0,"k":[-409.211,29.547],"ix":5},"e":{"a":0,"k":[367.062,-44.945],"ix":6},"t":1,"nm":"Gradient Fill 1","mn":"ADBE Vector Graphic - G-Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[-31.543,745.895],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Rectangle 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":306,"st":0,"bm":0},{"ddd":0,"ind":26,"ty":4,"nm":"Shape Layer 3","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[0]},{"t":236,"s":[100]}],"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[540,960,0],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"rc","d":1,"s":{"a":0,"k":[1114.703,1943.859],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"r":{"a":0,"k":0,"ix":4},"nm":"Rectangle Path 1","mn":"ADBE Vector Shape - Rect","hd":false},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"bm":0,"g":{"p":3,"k":{"a":0,"k":[0,0.639,0.686,0.902,0.593,0.82,0.843,0.951,1,1,1,1,0,1,0.462,0.5,1,0],"ix":9}},"s":{"a":0,"k":[-616.59,511.094],"ix":5},"e":{"a":0,"k":[416.727,-743.922],"ix":6},"t":1,"nm":"Gradient Fill 1","mn":"ADBE Vector Graphic - G-Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1.352,3.93],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100.106,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Rectangle 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":305,"st":0,"bm":0},{"ddd":0,"ind":27,"ty":4,"nm":"Shape Layer 1","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[540,960,0],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"rc","d":1,"s":{"a":0,"k":[1082.578,1919.125],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"r":{"a":0,"k":0,"ix":4},"nm":"Rectangle Path 1","mn":"ADBE Vector Shape - Rect","hd":false},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"bm":0,"g":{"p":3,"k":{"a":0,"k":[0,0.929,0.753,0.757,0.504,0.794,0.62,0.747,1,0.659,0.486,0.737],"ix":9}},"s":{"a":0,"k":[-527.062,596.219],"ix":5},"e":{"a":0,"k":[549.125,-957.281],"ix":6},"t":1,"nm":"Gradient Fill 1","mn":"ADBE Vector Graphic - G-Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[-2.711,-0.438],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Rectangle 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":307,"st":0,"bm":0}],"markers":[]} \ No newline at end of file diff --git a/assets/animations/facebook_icon.json b/assets/animations/facebook_icon.json new file mode 100644 index 0000000..5086568 --- /dev/null +++ b/assets/animations/facebook_icon.json @@ -0,0 +1 @@ +{"v":"4.8.0","meta":{"g":"LottieFiles AE ","a":"","k":"","d":"","tc":""},"fr":30,"ip":0,"op":51,"w":500,"h":500,"nm":"Meta","ddd":0,"assets":[],"layers":[{"ddd":0,"ind":1,"ty":4,"nm":"Layer 2","parent":2,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[0,0,0],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-8.986,16.59],[-55,0],[-4.6,-37.721],[35.847,-6.326],[29,47],[43,2],[9.346,-43.928],[-41,-7]],"o":[[13,-24],[55,0],[5,41],[-42.5,7.5],[-29,-47],[-43,-2],[-10,47],[41,7]],"v":[[-11,-11],[84,-110],[171.5,1.5],[133,111],[15,-10],[-82,-103],[-169,-1],[-129,111]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.258823543787,0.521568655968,0.956862747669,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":32,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"tm","s":{"a":0,"k":0,"ix":1},"e":{"a":0,"k":40,"ix":2},"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[360]},{"t":50,"s":[0]}],"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false}],"ip":0,"op":71,"st":0,"bm":0},{"ddd":0,"ind":2,"ty":4,"nm":"Layer 1","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[250,250,0],"to":[0,-1,0],"ti":[0,0.333,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":5,"s":[250,244,0],"to":[0,-0.333,0],"ti":[0,0.167,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":10,"s":[250,248,0],"to":[0,-0.167,0],"ti":[0,-0.167,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":15,"s":[250,243,0],"to":[0,0.167,0],"ti":[0,-0.167,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":20,"s":[250,249,0],"to":[0,0.167,0],"ti":[0,-0.167,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":25,"s":[250,244,0],"to":[0,0.167,0],"ti":[0,-0.333,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[250,250,0],"to":[0,0.333,0],"ti":[0,-0.167,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":35,"s":[250,246,0],"to":[0,0.167,0],"ti":[0,-0.333,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[250,251,0],"to":[0,0.333,0],"ti":[0,0.167,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":45,"s":[250,248,0],"to":[0,-0.167,0],"ti":[0,-0.333,0]},{"t":50,"s":[250,250,0]}],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-8.986,16.59],[-55,0],[-4.6,-37.721],[35.847,-6.326],[29,47],[43,2],[9.346,-43.928],[-41,-7]],"o":[[13,-24],[55,0],[5,41],[-42.5,7.5],[-29,-47],[-43,-2],[-10,47],[41,7]],"v":[[-11,-11],[84,-110],[171.5,1.5],[133,111],[15,-10],[-82,-103],[-169,-1],[-129,111]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.942037724514,0.953522267061,0.972549019608,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":32,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":71,"st":0,"bm":0}],"markers":[]} \ No newline at end of file diff --git a/assets/animations/google_icon.json b/assets/animations/google_icon.json new file mode 100644 index 0000000..5f8b688 --- /dev/null +++ b/assets/animations/google_icon.json @@ -0,0 +1 @@ +{"v":"5.5.2","fr":50,"ip":0,"op":256,"w":500,"h":500,"nm":"Search","ddd":0,"assets":[],"layers":[{"ddd":0,"ind":1,"ty":4,"nm":"Search Outlines - Group 8","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[309.542,250.869,0],"ix":2},"a":{"a":0,"k":[80.108,50.174,0],"ix":1},"s":{"a":0,"k":[500,500,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[80.108,38.239],[80.108,62.108]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.898000021542,0.898000021542,0.898000021542,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":50,"op":56,"st":0,"bm":0},{"ddd":0,"ind":2,"ty":4,"nm":"Search Outlines - Group 1","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[309.542,250.869,0],"ix":2},"a":{"a":0,"k":[80.108,50.174,0],"ix":1},"s":{"a":0,"k":[500,500,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[80.108,38.239],[80.108,62.108]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.898000021542,0.898000021542,0.898000021542,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":75,"op":81,"st":25,"bm":0},{"ddd":0,"ind":3,"ty":4,"nm":"Search Outlines - Group 10","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[309.542,250.869,0],"ix":2},"a":{"a":0,"k":[80.108,50.174,0],"ix":1},"s":{"a":0,"k":[500,500,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[80.108,38.239],[80.108,62.108]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.898000021542,0.898000021542,0.898000021542,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":100,"op":106,"st":50,"bm":0},{"ddd":0,"ind":4,"ty":4,"nm":"Search Outlines - Group 9","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[309.542,250.869,0],"ix":2},"a":{"a":0,"k":[80.108,50.174,0],"ix":1},"s":{"a":0,"k":[500,500,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[80.108,38.239],[80.108,62.108]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.898000021542,0.898000021542,0.898000021542,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":125,"op":131,"st":75,"bm":0},{"ddd":0,"ind":5,"ty":4,"nm":"Search Outlines - Group 12","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[309.542,250.869,0],"ix":2},"a":{"a":0,"k":[80.108,50.174,0],"ix":1},"s":{"a":0,"k":[500,500,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[80.108,38.239],[80.108,62.108]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.898000021542,0.898000021542,0.898000021542,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":147,"op":153,"st":97,"bm":0},{"ddd":0,"ind":6,"ty":4,"nm":"Search Outlines - Group 11","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[309.542,250.869,0],"ix":2},"a":{"a":0,"k":[80.108,50.174,0],"ix":1},"s":{"a":0,"k":[500,500,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[80.108,38.239],[80.108,62.108]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.898000021542,0.898000021542,0.898000021542,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":172,"op":178,"st":122,"bm":0},{"ddd":0,"ind":7,"ty":4,"nm":"Merged Shape Layer","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.414,"y":1},"o":{"x":0.726,"y":0},"t":29,"s":[250,248.421,0],"to":[-10.667,0,0],"ti":[10.667,0,0]},{"i":{"x":0.414,"y":0.414},"o":{"x":0.333,"y":0.333},"t":50,"s":[186,248.421,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.54,"y":1},"o":{"x":0.728,"y":0},"t":191,"s":[186,248.421,0],"to":[10.667,0,0],"ti":[-10.667,0,0]},{"t":220,"s":[250,248.421,0]}],"ix":2},"a":{"a":0,"k":[250,248.421,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0.482,0.482,0.667],"y":[1,1,1]},"o":{"x":[0.691,0.691,0.333],"y":[0,0,0]},"t":0,"s":[100,100,100]},{"i":{"x":[0.813,0.813,0.667],"y":[0.903,0.903,1]},"o":{"x":[0.538,0.538,0.333],"y":[0,0,0]},"t":13,"s":[92,92,100]},{"i":{"x":[0.377,0.377,0.667],"y":[1,1,1]},"o":{"x":[0.311,0.311,0.333],"y":[-0.359,-0.359,0]},"t":19,"s":[106.534,106.534,100]},{"t":25,"s":[100,100,100]}],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-3.833,0],[-1.518,-1.447],[0,0],[3.65,-0.043],[2.495,-4.968],[0,0]],"o":[[2.096,-0.032],[0,0],[-2.656,-2.495],[-5.556,0],[0,0],[1.16,-3.483]],"v":[[1.65,-0.106],[7.287,2.097],[11.482,-2.098],[1.65,-5.921],[-11.482,2.178],[-6.601,5.964]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.917999982834,0.263000011444,0.208000004292,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[48.641,40.91],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"tr","p":{"a":0,"k":[243.202,204.656],"ix":2},"a":{"a":0,"k":[48.641,40.931],"ix":1},"s":{"a":0,"k":[500,500],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Search Outlines - Group 2","np":1,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.616,1.825],[0,0],[-2.085,-4.152],[0,0]],"o":[[0,0],[-2.085,4.153],[0,0],[-0.616,-1.825]],"v":[[3.483,-2.813],[-1.398,-6.598],[-1.398,6.599],[3.483,2.814]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.98400002718,0.736999988556,0.01600000076,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[38.557,49.687],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 3","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"tr","p":{"a":0,"k":[194.086,248.433],"ix":2},"a":{"a":0,"k":[38.817,49.687],"ix":1},"s":{"a":0,"k":[500,500],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Search Outlines - Group 3","np":1,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.002,-0.001],[1.979,0],[1.166,3.477],[0,0],[0,0],[-5.556,0],[-2.435,2.246],[0,0],[0,0]],"o":[[-1.316,0.894],[-3.833,0],[0,0],[0,0],[2.495,4.963],[3.964,0],[0,0],[0,0],[-0.002,0.001]],"v":[[6.696,-1.276],[1.701,0.124],[-6.549,-5.94],[-6.555,-5.94],[-11.436,-2.155],[1.696,5.94],[11.437,2.392],[11.434,2.39],[6.702,-1.28]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.203999996185,0.658999979496,0.324999988079,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[48.594,58.44],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 4","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"tr","p":{"a":0,"k":[242.973,292.201],"ix":2},"a":{"a":0,"k":[48.594,58.44],"ix":1},"s":{"a":0,"k":[500,500],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Search Outlines - Group 4","np":1,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,4.469],[0.173,0.983],[0,0],[0,0],[0,0],[1.55,-1.025],[0,0],[-0.002,0.001],[0,0]],"o":[[0,-0.999],[0,0],[0,0],[0,0],[-0.329,1.826],[0,0],[0.002,-0.001],[0,0],[2.779,-2.559]],"v":[[7.058,-3.911],[6.803,-6.897],[-7.057,-6.897],[-7.057,-1.239],[0.88,-1.239],[-2.057,3.227],[-2.057,3.231],[-2.051,3.227],[2.68,6.897]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.259000003338,0.522000014782,0.957000017166,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[57.348,53.933],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 5","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"tr","p":{"a":0,"k":[286.739,269.665],"ix":2},"a":{"a":0,"k":[57.348,53.933],"ix":1},"s":{"a":0,"k":[500,500],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Search Outlines - Group 5","np":1,"cix":2,"bm":0,"ix":4,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":500,"st":0,"bm":0},{"ddd":0,"ind":8,"ty":4,"nm":"Search Outlines - Group 6","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.414,"y":1},"o":{"x":0.726,"y":0},"t":29,"s":[250.002,248.42,0],"to":[-10.667,0,0],"ti":[10.667,0,0]},{"i":{"x":0.414,"y":0.414},"o":{"x":0.333,"y":0.333},"t":50,"s":[186.002,248.42,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.521,"y":1},"o":{"x":0.747,"y":0},"t":191,"s":[186.002,248.42,0],"to":[10.667,0,0],"ti":[-10.667,0,0]},{"t":220,"s":[250.002,248.42,0]}],"ix":2},"a":{"a":0,"k":[50,49.684,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":0,"s":[500,500,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":17,"s":[490,490,100]},{"t":29,"s":[500,500,100]}],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.388,"y":1},"o":{"x":0.585,"y":0},"t":29,"s":[{"i":[[11.837,0],[0,0],[0,11.837],[0,0],[-11.837,0],[0,0],[0,-11.838],[0,0]],"o":[[0,0],[-11.837,0],[0,0],[0,-11.838],[0,0],[11.837,0],[0,0],[0,11.837]],"v":[[0.527,22.049],[-0.527,22.049],[-22.049,0.527],[-22.049,-0.527],[-0.527,-22.049],[0.527,-22.049],[22.049,-0.527],[22.049,0.527]],"c":true}]},{"i":{"x":0.388,"y":1},"o":{"x":0.333,"y":0},"t":50,"s":[{"i":[[11.837,0],[0,0],[0,11.837],[0,0],[-11.837,0],[0,0],[0,-11.838],[0,0]],"o":[[0,0],[-11.837,0],[0,0],[0,-11.838],[0,0],[11.837,0],[0,0],[0,11.837]],"v":[[32.527,22.049],[-0.527,22.049],[-22.049,0.527],[-22.049,-0.527],[-0.527,-22.049],[32.527,-22.049],[54.049,-0.527],[54.049,0.527]],"c":true}]},{"i":{"x":0.501,"y":1},"o":{"x":0.689,"y":0},"t":191,"s":[{"i":[[11.837,0],[0,0],[0,11.837],[0,0],[-11.837,0],[0,0],[0,-11.838],[0,0]],"o":[[0,0],[-11.837,0],[0,0],[0,-11.838],[0,0],[11.837,0],[0,0],[0,11.837]],"v":[[32.527,22.049],[-0.527,22.049],[-22.049,0.527],[-22.049,-0.527],[-0.527,-22.049],[32.527,-22.049],[54.049,-0.527],[54.049,0.527]],"c":true}]},{"t":220,"s":[{"i":[[11.837,0],[0,0],[0,11.837],[0,0],[-11.837,0],[0,0],[0,-11.838],[0,0]],"o":[[0,0],[-11.837,0],[0,0],[0,-11.838],[0,0],[11.837,0],[0,0],[0,11.837]],"v":[[0.527,22.049],[-0.527,22.049],[-22.049,0.527],[-22.049,-0.527],[-0.527,-22.049],[0.527,-22.049],[22.049,-0.527],[22.049,0.527]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[50,49.684],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 6","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":500,"st":0,"bm":0},{"ddd":0,"ind":9,"ty":4,"nm":"Search Outlines - Group 7","parent":8,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[50,50.174,0],"ix":2},"a":{"a":0,"k":[50,50.174,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.388,"y":1},"o":{"x":0.585,"y":0},"t":29,"s":[{"i":[[11.837,0],[0,0],[0,11.837],[0,0],[-11.837,0],[0,0],[0,-11.837],[0,0]],"o":[[0,0],[-11.837,0],[0,0],[0,-11.837],[0,0],[11.837,0],[0,0],[0,11.837]],"v":[[0.527,22.049],[-0.527,22.049],[-22.049,0.527],[-22.049,-0.527],[-0.527,-22.049],[0.527,-22.049],[22.049,-0.527],[22.049,0.527]],"c":true}]},{"i":{"x":0.388,"y":1},"o":{"x":0.333,"y":0},"t":50,"s":[{"i":[[11.837,0],[0,0],[0,11.837],[0,0],[-11.837,0],[0,0],[0,-11.837],[0,0]],"o":[[0,0],[-11.837,0],[0,0],[0,-11.837],[0,0],[11.837,0],[0,0],[0,11.837]],"v":[[32.527,22.049],[-0.527,22.049],[-22.049,0.527],[-22.049,-0.527],[-0.527,-22.049],[32.527,-22.049],[54.049,-0.527],[54.049,0.527]],"c":true}]},{"i":{"x":0.501,"y":1},"o":{"x":0.689,"y":0},"t":191,"s":[{"i":[[11.837,0],[0,0],[0,11.837],[0,0],[-11.837,0],[0,0],[0,-11.837],[0,0]],"o":[[0,0],[-11.837,0],[0,0],[0,-11.837],[0,0],[11.837,0],[0,0],[0,11.837]],"v":[[32.527,22.049],[-0.527,22.049],[-22.049,0.527],[-22.049,-0.527],[-0.527,-22.049],[32.527,-22.049],[54.049,-0.527],[54.049,0.527]],"c":true}]},{"t":220,"s":[{"i":[[11.837,0],[0,0],[0,11.837],[0,0],[-11.837,0],[0,0],[0,-11.837],[0,0]],"o":[[0,0],[-11.837,0],[0,0],[0,-11.837],[0,0],[11.837,0],[0,0],[0,11.837]],"v":[[0.527,22.049],[-0.527,22.049],[-22.049,0.527],[-22.049,-0.527],[-0.527,-22.049],[0.527,-22.049],[22.049,-0.527],[22.049,0.527]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.913999968884,0.922000002394,0.922000002394,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[50,50.174],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 7","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":500,"st":0,"bm":0}],"markers":[]} \ No newline at end of file diff --git a/devtools_options.yaml b/devtools_options.yaml new file mode 100644 index 0000000..fa0b357 --- /dev/null +++ b/devtools_options.yaml @@ -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: diff --git a/ios/Runner.xcodeproj/project.pbxproj b/ios/Runner.xcodeproj/project.pbxproj index d434211..4ec4e71 100644 --- a/ios/Runner.xcodeproj/project.pbxproj +++ b/ios/Runner.xcodeproj/project.pbxproj @@ -368,7 +368,7 @@ "$(inherited)", "@executable_path/Frameworks", ); - PRODUCT_BUNDLE_IDENTIFIER = com.example.projectGauri; + PRODUCT_BUNDLE_IDENTIFIER = com.example.tribeApp; PRODUCT_NAME = "$(TARGET_NAME)"; SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; SWIFT_VERSION = 5.0; @@ -384,7 +384,7 @@ CURRENT_PROJECT_VERSION = 1; GENERATE_INFOPLIST_FILE = YES; MARKETING_VERSION = 1.0; - PRODUCT_BUNDLE_IDENTIFIER = com.example.projectGauri.RunnerTests; + PRODUCT_BUNDLE_IDENTIFIER = com.example.tribeApp.RunnerTests; PRODUCT_NAME = "$(TARGET_NAME)"; SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; SWIFT_OPTIMIZATION_LEVEL = "-Onone"; @@ -401,7 +401,7 @@ CURRENT_PROJECT_VERSION = 1; GENERATE_INFOPLIST_FILE = YES; MARKETING_VERSION = 1.0; - PRODUCT_BUNDLE_IDENTIFIER = com.example.projectGauri.RunnerTests; + PRODUCT_BUNDLE_IDENTIFIER = com.example.tribeApp.RunnerTests; PRODUCT_NAME = "$(TARGET_NAME)"; SWIFT_VERSION = 5.0; TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Runner.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/Runner"; @@ -416,7 +416,7 @@ CURRENT_PROJECT_VERSION = 1; GENERATE_INFOPLIST_FILE = YES; MARKETING_VERSION = 1.0; - PRODUCT_BUNDLE_IDENTIFIER = com.example.projectGauri.RunnerTests; + PRODUCT_BUNDLE_IDENTIFIER = com.example.tribeApp.RunnerTests; PRODUCT_NAME = "$(TARGET_NAME)"; SWIFT_VERSION = 5.0; TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Runner.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/Runner"; @@ -547,7 +547,7 @@ "$(inherited)", "@executable_path/Frameworks", ); - PRODUCT_BUNDLE_IDENTIFIER = com.example.projectGauri; + PRODUCT_BUNDLE_IDENTIFIER = com.example.tribeApp; PRODUCT_NAME = "$(TARGET_NAME)"; SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; SWIFT_OPTIMIZATION_LEVEL = "-Onone"; @@ -569,7 +569,7 @@ "$(inherited)", "@executable_path/Frameworks", ); - PRODUCT_BUNDLE_IDENTIFIER = com.example.projectGauri; + PRODUCT_BUNDLE_IDENTIFIER = com.example.tribeApp; PRODUCT_NAME = "$(TARGET_NAME)"; SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; SWIFT_VERSION = 5.0; diff --git a/ios/Runner/AppDelegate.swift b/ios/Runner/AppDelegate.swift index 70693e4..6266644 100644 --- a/ios/Runner/AppDelegate.swift +++ b/ios/Runner/AppDelegate.swift @@ -1,7 +1,7 @@ -import UIKit import Flutter +import UIKit -@UIApplicationMain +@main @objc class AppDelegate: FlutterAppDelegate { override func application( _ application: UIApplication, diff --git a/ios/Runner/Info.plist b/ios/Runner/Info.plist index 38178d3..c6cda63 100644 --- a/ios/Runner/Info.plist +++ b/ios/Runner/Info.plist @@ -5,7 +5,7 @@ CFBundleDevelopmentRegion $(DEVELOPMENT_LANGUAGE) CFBundleDisplayName - Project Gauri + Tribe App CFBundleExecutable $(EXECUTABLE_NAME) CFBundleIdentifier @@ -13,7 +13,7 @@ CFBundleInfoDictionaryVersion 6.0 CFBundleName - project_gauri + tribe_app CFBundlePackageType APPL CFBundleShortVersionString diff --git a/lib/core/network/endpoints.dart b/lib/core/network/endpoints.dart new file mode 100644 index 0000000..bbce5cd --- /dev/null +++ b/lib/core/network/endpoints.dart @@ -0,0 +1,5 @@ +class ApiEndpoints { + static const String baseUrl = "https://steh4uka6j6oxutbtz3hdg6kwa0loota.lambda-url.us-east-1.on.aws"; + static const String register = "/registration"; + static const String login = "/login"; +} diff --git a/lib/core/network/network_service.dart b/lib/core/network/network_service.dart new file mode 100644 index 0000000..4706e7d --- /dev/null +++ b/lib/core/network/network_service.dart @@ -0,0 +1,382 @@ +// Dart imports: +import 'dart:convert'; + +// Package imports: +import 'package:http/http.dart' as http; +import 'package:logger/logger.dart'; + +class BaseApiService { + final Logger logger = Logger(); + static const int maxRetryAttempts = 3; // Set a maximum number of retries + // So that we don't get stuck in an infinite recursions. + + // Future getRequestMethod(String url, {int retryCount = 0}) async { + // try { + // final response = await http.get( + // Uri.parse(url), + // headers: await headers, + // ); + + // if (response.statusCode == 200) { + // return json.decode(response.body); + // } else if (response.statusCode == 401 || response.statusCode == 403) { + // if (retryCount < maxRetryAttempts) { + // final bool tokenRefreshed = await _handleTokenRefresh(); + // if (tokenRefreshed) { + // debugPrint('Retrying the request $retryCount times'); + // return await getRequestMethod(url, retryCount: retryCount + 1); // Retry the request + // } else { + // await _logoutUser(); + // Utility.showErrorToast( + // context: Get.overlayContext!, + // title: tr('somethingWentWrong'), + // description: tr('tryloginAgain'), + // ); + // throw Exception('Failed to refresh token, logging out the user'); + // } + // } else { + // await _logoutUser(); + // Utility.showErrorToast( + // context: Get.overlayContext!, + // title: tr('somethingWentWrong'), + // description: tr('tryloginAgain'), + // ); + // throw Exception('Exceeded maximum retry attempts, logging out the user'); + // } + // } else { + // throw Exception( + // 'Network Error: ${response.body}, response code: ${response.statusCode}', + // ); + // } + // } catch (e) { + // logger.e('Error: $e'); + // return false; + // } + // } + + // Future postRequestMethod(String url, dynamic data, {int retryCount = 0}) async { + // try { + // final response = await http.post( + // Uri.parse(url), + // headers: await headers, + // body: jsonEncode(data), + // ); + + // if (response.statusCode == 200 || response.statusCode == 201) { + // return json.decode(response.body); + // } else if (response.statusCode == 401 || response.statusCode == 403) { + // if (retryCount < maxRetryAttempts) { + // final bool tokenRefreshed = await _handleTokenRefresh(); + // if (tokenRefreshed) { + // debugPrint('Retrying the request $retryCount times'); + // return await postRequestMethod(url, data, retryCount: retryCount + 1); // Retry the request + // } else { + // await _logoutUser(); + // Utility.showErrorToast( + // context: Get.overlayContext!, + // title: tr('somethingWentWrong'), + // description: tr('tryloginAgain'), + // ); + // throw Exception('Failed to refresh token, logging out the user'); + // } + // } else { + // await _logoutUser(); + // Utility.showErrorToast( + // context: Get.overlayContext!, + // title: tr('somethingWentWrong'), + // description: tr('tryloginAgain'), + // ); + // throw Exception('Exceeded maximum retry attempts, logging out the user'); + // } + // } else { + // throw Exception('Network Error: ${response.body}'); + // } + // } catch (e) { + // logger.e('Error: $e'); + // return false; + // } + // } + + // Future putRequestMethod(String url, dynamic data, {int retryCount = 0}) async { + // try { + // final response = await http.put( + // Uri.parse(url), + // headers: await headers, + // body: jsonEncode(data), + // ); + + // if (response.statusCode == 200 || response.statusCode == 201) { + // return json.decode(response.body); + // } else if (response.statusCode == 401) { + // if (retryCount < maxRetryAttempts) { + // final bool tokenRefreshed = await _handleTokenRefresh(); + // if (tokenRefreshed) { + // debugPrint('Retrying the request $retryCount times'); + // return await putRequestMethod(url, data, retryCount: retryCount + 1); // Retry the request + // } else { + // await _logoutUser(); + // Utility.showErrorToast( + // context: Get.overlayContext!, + // title: tr('somethingWentWrong'), + // description: tr('tryloginAgain'), + // ); + // throw Exception('Failed to refresh token, logging out the user'); + // } + // } else { + // await _logoutUser(); + // Utility.showErrorToast( + // context: Get.overlayContext!, + // title: tr('somethingWentWrong'), + // description: tr('tryloginAgain'), + // ); + // throw Exception('Exceeded maximum retry attempts, logging out the user'); + // } + // } else { + // throw Exception('Network Error: ${response.body}'); + // } + // } catch (e) { + // logger.e('Error: $e'); + // return false; + // } + // } + + // Future patchRequestMethod(String url, dynamic data, {int retryCount = 0}) async { + // try { + // final response = await http.patch( + // Uri.parse(url), + // headers: await headers, + // body: jsonEncode(data), + // ); + + // if (response.statusCode == 200 || response.statusCode == 201) { + // return json.decode(response.body); + // } else if (response.statusCode == 401 || response.statusCode == 403) { + // if (retryCount < maxRetryAttempts) { + // final bool tokenRefreshed = await _handleTokenRefresh(); + // if (tokenRefreshed) { + // debugPrint('Retrying the request $retryCount times'); + // return await patchRequestMethod(url, data, retryCount: retryCount + 1); // Retry the request + // } else { + // await _logoutUser(); + // Utility.showErrorToast( + // context: Get.overlayContext!, + // title: tr('somethingWentWrong'), + // description: tr('tryloginAgain'), + // ); + // throw Exception('Failed to refresh token, logging out the user'); + // } + // } else { + // await _logoutUser(); + // Utility.showErrorToast( + // context: Get.overlayContext!, + // title: tr('somethingWentWrong'), + // description: tr('tryloginAgain'), + // ); + // throw Exception('Exceeded maximum retry attempts, logging out the user'); + // } + // } else { + // throw Exception('Network Error: ${response.body}'); + // } + // } catch (e) { + // logger.e('Error: $e'); + // return false; + // } + // } + + // Future logOutMethod({int retryCount = 0}) async { + // final String url = '${ApiEndpoints.baseUrl}${ApiEndpoints.users}${ApiEndpoints.logout}'; + // try { + // final response = await http.post( + // Uri.parse(url), + // headers: await headers, + // ); + + // if (response.statusCode == 200 || response.statusCode == 201) { + // return true; + // } else if (response.statusCode == 401 || response.statusCode == 403) { + // if (retryCount < maxRetryAttempts) { + // final bool tokenRefreshed = await _handleTokenRefresh(); + // if (tokenRefreshed) { + // debugPrint('Retrying the request $retryCount times'); + // return await logOutMethod(); // Retry the logout request + // } else { + // await _logoutUser(); + // throw Exception('Failed to refresh token, logging out the user'); + // } + // } else { + // await _logoutUser(); + // throw Exception('Exceeded maximum retry attempts, logging out the user'); + // } + // } else { + // throw Exception('Failed to post data'); + // } + // } catch (e) { + // logger.e('Error: $e'); + // return false; + // } + // } + + // Future verifyOtp(String otp) async { + // final String url = '${ApiEndpoints.baseUrl}${ApiEndpoints.verifyOtp}'; + + // final Uri uri = Uri.parse(url).replace(queryParameters: {'verification': otp}); + // try { + // final response = await http.get( + // uri, + // ); + // if (response.statusCode == 200) { + // return 200; + // } else { + // if (response.statusCode == 400) { + // return 400; + // } + // return 500; + // } + // } catch (e) { + // logger.e('Error while verifying OTP: $e'); + // return 500; + // } + // } + + // Future _handleTokenRefresh() async { + // final refreshToken = await StorageService.getValue('refreshToken'); + // final Map data = {'refreshToken': refreshToken}; + // return refreshTokenMethod(data); + // } + + // Future refreshTokenMethod(Map data) async { + // final String url = '${ApiEndpoints.baseUrl}${ApiEndpoints.refreshToken}'; + // try { + // final res = await http.post( + // // not using previous POST method as It may laed to infinite recursive calls. + // Uri.parse(url), + // headers: { + // 'Content-Type': 'application/json', + // }, + // body: json.encode(data), + // ); + // final jsonData = json.decode(res.body); + // if (res.statusCode == 200 || res.statusCode == 201) { + // await StorageService.deleteAll(); + // final responseBody = jsonData['data'] as Map; + // debugPrint('adding data into secure storage after refresh token API hit'); + // debugPrint(ApiEndpoints.user); + // debugPrint(ApiEndpoints.envi); + // await StorageService.saveAll({ + // 'authToken': responseBody['authToken'], + // 'refreshToken': responseBody['refreshToken'], + // 'expiresIn': DateTime.now().add(Duration(minutes: responseBody['expiresIn'] ?? 0)).toString(), + // 'userType': ApiEndpoints.user, + // 'selectedEnv': ApiEndpoints.envi, + // }); + // debugPrint(StorageService.getValue('refreshToken').toString()); + // debugPrint(StorageService.getValue('userType').toString()); + // debugPrint(StorageService.getValue('selectedEnv').toString()); + // return true; + // } else { + // logger.e('Error refreshing token: $jsonData status code: ${res.statusCode}'); + // return false; + // } + // } catch (e) { + // debugPrint('Error fetching data: $e'); + // return false; + // } + // } + + // Future uploadAssetMethod(Map data, File file) async { + // final String url = '${ApiEndpoints.baseUrl}${ApiEndpoints.preSigned}'; + // try { + // // Make the POST request to get the presigned URL + // final response = await postRequestMethod(url, data); + // if (response != false) { + // final Map responseData = response as Map; + // final String presignedUrl = responseData['data']['presignedUrl'] as String; + // final String objectUrl = responseData['data']['objectUrl'] as String; + // final String fileName = responseData['data']['filename'] as String; + + // debugPrint(responseData['data']['objectUrl']); + + // // Upload the file to S3 using the presigned URL + // final res = await putFileToServer(preSignedUrl: presignedUrl, file: file); + // if (res) { + // debugPrint('File uploaded successfully1'); + // return objectUrl; + // } + // throw Exception('Failed to upload file with filename: $fileName \n $res'); + // } + // throw Exception('Failed to get presigned URL'); + // } catch (e) { + // logger.e('Error: $e'); + // return e.toString(); + // } + // } + + // Future putFileToServer({ + // required String preSignedUrl, + // required File file, + // }) async { + // try { + // final fileBytes = await file.readAsBytes(); + + // final res = await http.put( + // Uri.parse(preSignedUrl), + // body: fileBytes, + // ); + + // if (res.statusCode == 200 || res.statusCode == 201) { + // debugPrint('File uploaded successfully2'); + // return true; + // } + // throw Exception('Failed to upload file to presigned URL /n ${res.body}'); + // } catch (e) { + // logger.e('Error: $e'); + // return false; + // } + // } + + // Future deleteRequestMethod(String url) async { + // try { + // final response = await http.delete( + // Uri.parse(url), + // headers: await headers, + // ); + + // if (response.statusCode != 200) { + // throw Exception('Failed to delete data'); + // } + // } catch (e) { + // logger.e('Error: $e'); + // throw Exception('Network Error: $e'); + // } + // } + + // Future> get headers async { + // //final String token = await StorageService.getValue('authToken'); + // return { + // 'Content-Type': 'application/json', + // //'Authorization': 'Bearer $token', + // }; + // } + + Future postOnboardMethod(String url, Map data) async { + try { + final response = await http.post( + Uri.parse(url), + headers: { + 'Content-Type': 'application/json', + }, + body: json.encode(data), + ); + return response; + } catch (e) { + logger.e('Error: $e'); + throw Exception('Network Error: $e'); + } + } + + // Future _logoutUser() async { + // await HiveStorage().deleteAllBoxes(); + // await StorageService.deleteAll(); + // await Get.offAll(LoginScreen.new); + // } +} diff --git a/lib/core/routing/app_pages.dart b/lib/core/routing/app_pages.dart new file mode 100644 index 0000000..58a60a9 --- /dev/null +++ b/lib/core/routing/app_pages.dart @@ -0,0 +1,17 @@ +// Package imports: +import 'package:get/get.dart'; + +// Project imports: +import 'package:project_tribe/core/routing/routes.dart'; +import 'package:project_tribe/features/onboarding/modules/binding/registeration_binding.dart'; +import 'package:project_tribe/features/onboarding/presentation/screens/register.dart'; + +class AppPages { + static final List pages = [ + GetPage( + name: AppRoutes.splash, + page: Register.new, + binding: RegisterationBinding(), + ), + ]; +} diff --git a/lib/core/routing/routes.dart b/lib/core/routing/routes.dart new file mode 100644 index 0000000..d1c0a9e --- /dev/null +++ b/lib/core/routing/routes.dart @@ -0,0 +1,5 @@ +class AppRoutes { + static const splash = '/splash'; + static const home = '/home'; + static const register = '/register'; +} diff --git a/lib/core/tribe_color.dart b/lib/core/tribe_color.dart new file mode 100644 index 0000000..8f3417b --- /dev/null +++ b/lib/core/tribe_color.dart @@ -0,0 +1,8 @@ +// Flutter imports: +import 'package:flutter/material.dart'; + +class TribeColor { + static const Color primaryColor = Color.fromRGBO(191, 41, 240, 1); + static const Color secondaryColor = Color.fromRGBO(191, 13, 180, 1); + static const Color white = Color.fromRGBO(255, 255, 255, 1); +} diff --git a/lib/core/utils/utility.dart b/lib/core/utils/utility.dart new file mode 100644 index 0000000..66e9477 --- /dev/null +++ b/lib/core/utils/utility.dart @@ -0,0 +1,183 @@ +// Dart imports: +import 'dart:developer'; + +// Flutter imports: +import 'package:flutter/material.dart'; + +// Package imports: +import 'package:flutter_screenutil/flutter_screenutil.dart'; +import 'package:get/get.dart'; +import 'package:shimmer/shimmer.dart'; +import 'package:toastification/toastification.dart'; + +// Project imports: +import 'package:project_tribe/core/tribe_color.dart'; + +abstract class Utility { + static void showLoadingDialog( + BuildContext context, { + Color loaderColor = Colors.blue, + }) { + showDialog( + context: context, + barrierDismissible: false, + builder: (ctx) { + return Builder( + builder: (innerContext) { + return SizedBox( + width: 1.sw, + height: 1.sh, + child: Stack( + children: [ + Opacity( + opacity: 0.1, + child: ModalBarrier( + dismissible: false, + color: loaderColor, + ), + ), + Center( + child: Shimmer.fromColors( + baseColor: TribeColor.primaryColor.withOpacity(0.1), // ignore: deprecated_member_use + highlightColor: Colors.white.withOpacity(0.6), // ignore: deprecated_member_use + period: const Duration(milliseconds: 500), + child: Container( + height: 1.sh, + width: 1.sw, + decoration: BoxDecoration( + color: Colors.blue.shade50, + ), + ), + ), + ), + ], + ), + ); + }, + ); + }, + ); + } + + static void closeDialog() { + log('HIDE LOADER'); + try { + Get.back(); + } catch (e) { + log(e.toString()); + } + } + + static void showToast({ + required BuildContext context, + required String title, + required ToastificationType type, + String? description, + }) { + toastification.show( + context: context, + type: type, + style: ToastificationStyle.flat, + title: Text(title), + description: description != null + ? Text( + description, + maxLines: 3, + ) + : null, + alignment: Alignment.bottomLeft, + autoCloseDuration: const Duration(seconds: 4), + animationBuilder: ( + context, + animation, + alignment, + child, + ) { + return ScaleTransition( + scale: animation, + child: child, + ); + }, + ); + } + + static void showSuccessToast({ + required String title, + required BuildContext context, + String? description, + }) { + showToast( + title: title, + description: description, + type: ToastificationType.success, + context: context, + ); + } + + static void showInfoToast({ + required BuildContext context, + required String title, + String? description, + }) { + showToast( + title: title, + description: description, + type: ToastificationType.info, + context: context, + ); + } + + static void showWarningToast({ + required BuildContext context, + required String title, + String? description, + }) { + showToast( + title: title, + description: description, + type: ToastificationType.warning, + context: context, + ); + } + + static void showErrorToast({ + required BuildContext context, + required String title, + String? description, + }) { + showToast( + title: title, + description: description, + type: ToastificationType.error, + context: context, + ); + } + + static String convertToAMPM(DateTime dateTime) { + String trailing = 'AM'; + String time = ''; + int hour = dateTime.hour; + final minute = dateTime.minute; + if (hour > 12) { + hour = hour - 12; + trailing = 'PM'; + } + if (hour == 12) { + trailing = 'PM'; + } + if (hour == 00) { + hour = 12; + } + + if (hour < 10 && minute < 10) { + time = '0$hour:0$minute $trailing'; + } else if (hour < 10) { + time = '0$hour:$minute $trailing'; + } else if (minute < 10) { + time = '$hour:0$minute $trailing'; + } else { + time = '$hour:$minute $trailing'; + } + return time; + } +} diff --git a/lib/features/onboarding/modules/binding/registeration_binding.dart b/lib/features/onboarding/modules/binding/registeration_binding.dart new file mode 100644 index 0000000..43a3a9c --- /dev/null +++ b/lib/features/onboarding/modules/binding/registeration_binding.dart @@ -0,0 +1,12 @@ +// Package imports: +import 'package:get/get.dart'; + +// Project imports: +import 'package:project_tribe/features/onboarding/modules/controller/registeration_controller.dart'; + +class RegisterationBinding extends Bindings { + @override + void dependencies() { + Get.put(RegisterationController()); + } +} diff --git a/lib/features/onboarding/modules/controller/login_controller.dart b/lib/features/onboarding/modules/controller/login_controller.dart new file mode 100644 index 0000000..802a216 --- /dev/null +++ b/lib/features/onboarding/modules/controller/login_controller.dart @@ -0,0 +1,53 @@ +// Flutter imports: +import 'package:flutter/material.dart'; + +// Package imports: +import 'package:get/get.dart'; + +// Project imports: +import 'package:project_tribe/core/utils/utility.dart'; +import 'package:project_tribe/features/onboarding/modules/model/login_model.dart'; +import 'package:project_tribe/features/onboarding/modules/service/onboarding_service.dart'; + +class LoginController extends GetxController { + final TextEditingController emailController = TextEditingController(); + final TextEditingController passwordController = TextEditingController(); + final RxBool isPasswordVisible = false.obs; + final OnboardingService onboardingService = OnboardingService(); + + void togglePasswordVisibility() { + isPasswordVisible.value = !isPasswordVisible.value; + } + + Future loginUser() async { + final data = LoginModel( + identifier: emailController.text, + password: passwordController.text, + ).toJson(); + + try { + Utility.showLoadingDialog(Get.context!); + final respose = await onboardingService.loginUser(data); + if (respose.statusCode == 200) { + Utility.closeDialog(); + Utility.showSuccessToast(title: 'Success', context: Get.context!, description: 'User logged in successfully.'); + } else if (respose.statusCode == 404) { + Utility.closeDialog(); + Utility.showErrorToast(title: 'Error', context: Get.context!, description: 'User not found.'); + } else if (respose.statusCode == 401) { + Utility.closeDialog(); + Utility.showErrorToast(title: 'Error', context: Get.context!, description: 'Invalid Credentials, try again.'); + } else { + Utility.closeDialog(); + Utility.showErrorToast( + title: 'Error', context: Get.context!, description: 'Some issue from our side, please try again.'); + debugPrint(respose.body); + } + } catch (e) { + Utility.closeDialog(); + Utility.showErrorToast( + title: 'Error', context: Get.context!, description: 'Some issue from our side, please try again.'); + debugPrint('Error: $e'); + } + } +} diff --git a/lib/features/onboarding/modules/controller/registeration_controller.dart b/lib/features/onboarding/modules/controller/registeration_controller.dart new file mode 100644 index 0000000..962a97a --- /dev/null +++ b/lib/features/onboarding/modules/controller/registeration_controller.dart @@ -0,0 +1,70 @@ +// Flutter imports: +import 'package:flutter/material.dart'; + +// Package imports: +import 'package:get/get.dart'; + +// Project imports: +import 'package:project_tribe/core/utils/utility.dart'; +import 'package:project_tribe/features/onboarding/modules/model/registeration_model.dart'; +import 'package:project_tribe/features/onboarding/modules/service/onboarding_service.dart'; + +class RegisterationController extends GetxController { + final RxInt currentIndex = 0.obs; + final RxBool isPasswordVisible = false.obs; + final TextEditingController emailController = TextEditingController(); + final TextEditingController passwordController = TextEditingController(); + final TextEditingController confirmPasswordController = TextEditingController(); + final TextEditingController nameController = TextEditingController(); + final TextEditingController phoneController = TextEditingController(); + final TextEditingController userNameController = TextEditingController(); + final RxString selectedCountry = ''.obs; + final RxString selectedCity = ''.obs; + final RxString selectedState = ''.obs; + final OnboardingService registrationService = OnboardingService(); + + void togglePasswordVisibility() { + isPasswordVisible.value = !isPasswordVisible.value; + } + + void changeIndex(int index) { + currentIndex.value = index; + } + + Future registerUser() async { + final data = RegistrationModel( + name: nameController.text, + username: userNameController.text, + email: emailController.text, + password: passwordController.text, + phoneNumber: int.parse(phoneController.text), + city: selectedCity.value, + state: selectedState.value, + country: selectedCountry.value, + ).toJson(); + try { + Utility.showLoadingDialog(Get.context!); + final respose = await registrationService.registerUser(data); + if (respose.statusCode == 200) { + Utility.closeDialog(); + Utility.showSuccessToast(title: 'Success', context: Get.context!, description: 'User registered successfully.'); + } else if (respose.statusCode == 409) { + Utility.closeDialog(); + Utility.showErrorToast(title: 'Error', context: Get.context!, description: 'User already exists.'); + } else if (respose.statusCode == 400) { + Utility.closeDialog(); + Utility.showErrorToast( + title: 'Error', context: Get.context!, description: 'Registration failed, please try again.'); + } else { + Utility.closeDialog(); + Utility.showErrorToast( + title: 'Error', context: Get.context!, description: 'Some issue from our side, please try again.'); + } + } catch (e) { + Utility.closeDialog(); + Utility.showErrorToast( + title: 'Error', context: Get.context!, description: 'Some issue from our side, please try again.'); + debugPrint('Error: $e'); + } + } +} diff --git a/lib/features/onboarding/modules/model/login_model.dart b/lib/features/onboarding/modules/model/login_model.dart new file mode 100644 index 0000000..54476f3 --- /dev/null +++ b/lib/features/onboarding/modules/model/login_model.dart @@ -0,0 +1,13 @@ +class LoginModel { + String? identifier; + String? password; + + LoginModel({this.identifier, this.password}); + + Map toJson() { + final Map data = {}; + data['identifier'] = identifier; + data['password'] = password; + return data; + } +} diff --git a/lib/features/onboarding/modules/model/registeration_model.dart b/lib/features/onboarding/modules/model/registeration_model.dart new file mode 100644 index 0000000..f5d4b3f --- /dev/null +++ b/lib/features/onboarding/modules/model/registeration_model.dart @@ -0,0 +1,26 @@ +class RegistrationModel { + String? name; + String? username; + String? email; + String? password; + int? phoneNumber; + String? city; + String? state; + String? country; + + RegistrationModel( + {this.name, this.username, this.email, this.password, this.phoneNumber, this.city, this.state, this.country}); + + Map toJson() { + final Map data = {}; + data['name'] = name; + data['username'] = username; + data['email'] = email; + data['password'] = password; + data['phoneNumber'] = phoneNumber; + data['city'] = city; + data['state'] = state; + data['country'] = country; + return data; + } +} diff --git a/lib/features/onboarding/modules/service/onboarding_service.dart b/lib/features/onboarding/modules/service/onboarding_service.dart new file mode 100644 index 0000000..ea21788 --- /dev/null +++ b/lib/features/onboarding/modules/service/onboarding_service.dart @@ -0,0 +1,17 @@ +// Project imports: +import 'package:project_tribe/core/network/endpoints.dart'; +import 'package:project_tribe/core/network/network_service.dart'; + +class OnboardingService extends BaseApiService { + Future registerUser(Map data) async { + const url = '${ApiEndpoints.baseUrl}${ApiEndpoints.register}'; + final response = await postOnboardMethod(url, data); + return response; + } + + Future loginUser(Map data) async { + const url = '${ApiEndpoints.baseUrl}${ApiEndpoints.login}'; + final response = await postOnboardMethod(url, data); + return response; + } +} diff --git a/lib/features/onboarding/modules/service/registration_service.dart b/lib/features/onboarding/modules/service/registration_service.dart new file mode 100644 index 0000000..5f042da --- /dev/null +++ b/lib/features/onboarding/modules/service/registration_service.dart @@ -0,0 +1,11 @@ +// Project imports: +import 'package:project_tribe/core/network/endpoints.dart'; +import 'package:project_tribe/core/network/network_service.dart'; + +class RegistrationService extends BaseApiService { + Future registerUser(Map data) async { + const url = '${ApiEndpoints.baseUrl}${ApiEndpoints.register}'; + final response = await postOnboardMethod(url, data); + return response; + } +} diff --git a/lib/features/onboarding/presentation/screens/login.dart b/lib/features/onboarding/presentation/screens/login.dart new file mode 100644 index 0000000..1eb1112 --- /dev/null +++ b/lib/features/onboarding/presentation/screens/login.dart @@ -0,0 +1,261 @@ +// Flutter imports: +import 'package:flutter/material.dart'; + +// Package imports: +import 'package:flutter_screenutil/flutter_screenutil.dart'; +import 'package:get/get.dart'; +import 'package:lottie/lottie.dart'; + +// Project imports: +import 'package:project_tribe/core/tribe_color.dart'; +import 'package:project_tribe/features/onboarding/modules/controller/login_controller.dart'; +import 'package:project_tribe/features/onboarding/presentation/screens/register.dart'; + +class LoginScreen extends StatelessWidget { + LoginScreen({super.key}); + + final formKey = GlobalKey(); + final LoginController controller = Get.put(LoginController()); + + @override + Widget build(BuildContext context) { + return Scaffold( + body: Stack( + children: [ + // Lottie Animation as Background + SizedBox.expand( + child: Lottie.asset( + 'assets/animations/bg_animation.json', + fit: BoxFit.cover, + ), + ), + // Your Screen Content + SingleChildScrollView( + child: Center( + child: Column( + children: [ + SizedBox( + height: 0.25.sh, + ), + Card( + elevation: 10, + shape: RoundedRectangleBorder( + borderRadius: BorderRadius.circular(20.r), + ), + color: Colors.transparent, + child: Container( + width: 0.8.sw, + height: 0.3.sh, + decoration: BoxDecoration( + borderRadius: BorderRadius.circular(20.r), + gradient: LinearGradient( + colors: [ + // ignore: deprecated_member_use + TribeColor.secondaryColor.withOpacity(0.7), // Increased opacity + // ignore: deprecated_member_use + TribeColor.primaryColor.withOpacity(0.2), + ], + tileMode: TileMode.clamp, + transform: const GradientRotation(0.5), + ), + ), + child: Padding( + padding: EdgeInsets.symmetric(horizontal: 20.w), + child: Form( + key: formKey, + child: Column(mainAxisAlignment: MainAxisAlignment.center, children: [ + TextFormField( + controller: controller.emailController, + decoration: InputDecoration( + hintText: 'Username or Email', + hintStyle: const TextStyle(color: TribeColor.white), + border: OutlineInputBorder( + borderRadius: BorderRadius.circular(20.r), + borderSide: BorderSide.none, + ), + filled: true, + fillColor: TribeColor.primaryColor.withOpacity(0.4), + ), + validator: (value) { + if (value == null || value.isEmpty) { + return 'Email or Username is required.'; + } + if (value.length < 8) { + return 'Invalid Email or Username.'; + } + return null; + }, + style: const TextStyle(color: TribeColor.white), + ), + SizedBox( + height: 30.h, + ), + Obx(() { + return TextFormField( + controller: controller.passwordController, + decoration: InputDecoration( + hintText: 'Password', + hintStyle: const TextStyle(color: TribeColor.white), + border: OutlineInputBorder( + borderRadius: BorderRadius.circular(20.r), + borderSide: BorderSide.none, + ), + filled: true, + fillColor: TribeColor.primaryColor.withOpacity(0.4), + suffixIcon: IconButton( + onPressed: () { + controller.togglePasswordVisibility(); + }, + icon: Icon( + controller.isPasswordVisible.value ? Icons.visibility : Icons.visibility_off, + color: TribeColor.white, + ), + ), + ), + style: const TextStyle(color: TribeColor.white), + obscureText: !controller.isPasswordVisible.value, + validator: (value) { + if (!validatePassword()) { + return 'Password Not Valid'; + } else { + return null; + } + }); + }), + SizedBox( + height: 10.h, + ), + ]), + ), + ), + ), + ), + SizedBox( + height: 20.h, + ), + ElevatedButton( + onPressed: () async { + if (formKey.currentState!.validate()) { + await controller.loginUser(); + } + }, + style: ElevatedButton.styleFrom( + backgroundColor: TribeColor.primaryColor.withOpacity(0.5), + shape: RoundedRectangleBorder( + borderRadius: BorderRadius.circular(10.r), + ), + padding: EdgeInsets.symmetric(horizontal: 50.w, vertical: 10.h), + ), + child: Text( + 'Login', + style: TextStyle( + color: TribeColor.white, + fontSize: 20.sp, + ), + ), + ), + SizedBox( + height: 60.h, + ), + Row( + mainAxisAlignment: MainAxisAlignment.center, + children: [ + Text( + 'No account? ', + style: TextStyle(color: TribeColor.white, fontSize: 14.sp), + ), + SizedBox(width: 5.w), + GestureDetector( + onTap: () { + Get.off(() => Register()); + }, + child: Text( + 'Signup', + style: TextStyle(color: TribeColor.primaryColor, fontSize: 14.sp), + ), + ) + ], + ), + SizedBox( + height: 40.h, + ), + Text( + 'or login with ', + style: TextStyle(color: TribeColor.white, fontSize: 14.sp), + ), + Row( + mainAxisAlignment: MainAxisAlignment.center, + children: [ + SizedBox( + width: 70.w, + height: 70.h, + child: Lottie.asset( + 'assets/animations/google_icon.json', + fit: BoxFit.cover, + ), + ), + SizedBox(width: 70.w), + SizedBox( + width: 60.w, + height: 60.h, + child: Lottie.asset( + 'assets/animations/facebook_icon.json', + fit: BoxFit.cover, + ), + ), + ], + ), + ], + ), + )), + ], + ), + ); + } + + bool validatePassword() { + final password = controller.passwordController.text; + + if (password.length < 8) { + return false; + } + + if (password.contains(' ')) { + return false; + } + + if (!_containsUppercase(password)) { + return false; + } + + if (!_containsLowercase(password)) { + return false; + } + + if (!_containsDigit(password)) { + return false; + } + + if (!_containsSpecialCharacter(password)) { + return false; + } + + return true; + } + + bool _containsUppercase(String value) { + return value.contains(RegExp('[A-Z]')); + } + + bool _containsLowercase(String value) { + return value.contains(RegExp('[a-z]')); + } + + bool _containsDigit(String value) { + return value.contains(RegExp('[0-9]')); + } + + bool _containsSpecialCharacter(String value) { + return value.contains(RegExp(r'[!@#$%^&*(),.?":{}|<>]')); + } +} diff --git a/lib/features/onboarding/presentation/screens/register.dart b/lib/features/onboarding/presentation/screens/register.dart new file mode 100644 index 0000000..17b7bcc --- /dev/null +++ b/lib/features/onboarding/presentation/screens/register.dart @@ -0,0 +1,212 @@ +// Flutter imports: +import 'package:flutter/material.dart'; + +// Package imports: +import 'package:flutter_screenutil/flutter_screenutil.dart'; +import 'package:get/get.dart'; +import 'package:lottie/lottie.dart'; + +// Project imports: +import 'package:project_tribe/core/tribe_color.dart'; +import 'package:project_tribe/features/onboarding/modules/controller/registeration_controller.dart'; +import 'package:project_tribe/features/onboarding/presentation/screens/login.dart'; +import 'package:project_tribe/features/onboarding/presentation/widgets/register_plane.dart'; + +class Register extends StatelessWidget { + Register({super.key}); + + final RegisterationController controller = Get.put(RegisterationController()); + final formKey = GlobalKey(); + + @override + Widget build(BuildContext context) { + return Scaffold( + body: Stack( + children: [ + // Lottie Animation as Background + SizedBox.expand( + child: Lottie.asset( + 'assets/animations/bg_animation2.json', + fit: BoxFit.cover, + ), + ), + // Your Screen Content + SingleChildScrollView( + child: Center( + child: Column( + children: [ + SizedBox( + height: 0.25.sh, + ), + RegisterPlane( + controller: controller, + formKey: formKey, + ), + SizedBox( + height: 10.h, + ), + SizedBox( + height: 50.h, + child: Obx(() { + return Row( + mainAxisAlignment: MainAxisAlignment.center, + children: [ + Container( + width: 10.w, // Define width for each item + decoration: BoxDecoration( + color: controller.currentIndex.value == 0 ? TribeColor.primaryColor : TribeColor.white, + shape: BoxShape.circle, + ), + ), + SizedBox(width: 10.w), // Spacing + Container( + width: 10.w, // Define width for each item + decoration: BoxDecoration( + color: controller.currentIndex.value == 1 ? TribeColor.primaryColor : TribeColor.white, + shape: BoxShape.circle, + ), + ), + SizedBox(width: 10.w), // Spacing + Container( + width: 10.w, // Define width for each item + decoration: BoxDecoration( + color: controller.currentIndex.value == 2 ? TribeColor.primaryColor : TribeColor.white, + shape: BoxShape.circle, + ), + ), + SizedBox(width: 10.w), // Spacing + Container( + width: 10.w, // Define width for each item + decoration: BoxDecoration( + color: controller.currentIndex.value == 3 ? TribeColor.primaryColor : TribeColor.white, + shape: BoxShape.circle, + ), + ), + ], + ); + }), + ), + Obx(() { + return Visibility( + visible: controller.currentIndex.value == 3, + child: Padding( + padding: EdgeInsets.only(top: 20.h), + child: ElevatedButton( + onPressed: () async { + if (validatePassword() && validatePasswords()) { + await controller.registerUser(); + } + }, + style: ElevatedButton.styleFrom( + backgroundColor: TribeColor.primaryColor.withOpacity(0.5), + shape: RoundedRectangleBorder( + borderRadius: BorderRadius.circular(10.r), + ), + ), + child: Padding( + padding: EdgeInsets.symmetric( + horizontal: 20.w, + vertical: 10.h, + ), + child: Text( + 'Create Account', + style: TextStyle( + color: TribeColor.white, + fontSize: 16.sp, + ), + ), + ), + ), + ), + ); + }), + SizedBox( + height: 80.h, + ), + Row( + mainAxisAlignment: MainAxisAlignment.center, + children: [ + Text( + 'Already have an account? ', + style: TextStyle(color: TribeColor.white, fontSize: 14.sp), + ), + SizedBox(width: 5.w), + GestureDetector( + onTap: () { + Get.off(() => LoginScreen()); + }, + child: Text( + 'Login', + style: TextStyle(color: TribeColor.primaryColor, fontSize: 14.sp), + ), + ) + ], + ), + ], + )), + ), + ], + )); + } + + bool validatePasswords() { + final password = controller.passwordController.text; + final confirmPassword = controller.confirmPasswordController.text; + + if (password.isEmpty || confirmPassword.isEmpty) { + return false; + } + + if (password != confirmPassword) { + return false; + } + + return true; + } + + bool validatePassword() { + final password = controller.passwordController.text; + + if (password.length < 8) { + return false; + } + + if (password.contains(' ')) { + return false; + } + + if (!_containsUppercase(password)) { + return false; + } + + if (!_containsLowercase(password)) { + return false; + } + + if (!_containsDigit(password)) { + return false; + } + + if (!_containsSpecialCharacter(password)) { + return false; + } + + return true; + } + + bool _containsUppercase(String value) { + return value.contains(RegExp('[A-Z]')); + } + + bool _containsLowercase(String value) { + return value.contains(RegExp('[a-z]')); + } + + bool _containsDigit(String value) { + return value.contains(RegExp('[0-9]')); + } + + bool _containsSpecialCharacter(String value) { + return value.contains(RegExp(r'[!@#$%^&*(),.?":{}|<>]')); + } +} diff --git a/lib/features/onboarding/presentation/widgets/register_plane.dart b/lib/features/onboarding/presentation/widgets/register_plane.dart new file mode 100644 index 0000000..bb59246 --- /dev/null +++ b/lib/features/onboarding/presentation/widgets/register_plane.dart @@ -0,0 +1,670 @@ +// Flutter imports: +import 'package:flutter/material.dart'; + +// Package imports: +import 'package:csc_picker/csc_picker.dart'; +import 'package:flutter_screenutil/flutter_screenutil.dart'; +import 'package:get/get.dart'; + +// Project imports: +import 'package:project_tribe/core/tribe_color.dart'; +import 'package:project_tribe/core/utils/utility.dart'; +import 'package:project_tribe/features/onboarding/modules/controller/registeration_controller.dart'; + +class RegisterPlane extends StatefulWidget { + const RegisterPlane({required this.controller, required this.formKey, super.key}); + + final RegisterationController controller; + final GlobalKey formKey; + + @override + State createState() => _RegisterPlaneState(); +} + +class _RegisterPlaneState extends State { + bool _passwordFieldTouched = false; + bool _confirmPasswordFieldTouched = false; + @override + Widget build(BuildContext context) { + return Form( + key: widget.formKey, + child: Card( + elevation: 10, + shape: RoundedRectangleBorder( + borderRadius: BorderRadius.circular(20.r), + ), + color: Colors.transparent, + child: Container( + width: 0.8.sw, + height: 0.3.sh, + decoration: BoxDecoration( + borderRadius: BorderRadius.circular(20.r), + gradient: LinearGradient( + colors: [ + // ignore: deprecated_member_use + TribeColor.secondaryColor.withOpacity(0.7), // Increased opacity + // ignore: deprecated_member_use + TribeColor.primaryColor.withOpacity(0.2), + ], + tileMode: TileMode.clamp, + transform: const GradientRotation(0.5), + ), + ), + child: Obx(() { + return Column( + children: [ + Visibility( + visible: widget.controller.currentIndex.value == 0, + child: Expanded( + child: Column( + children: [ + SizedBox(height: 40.h), // Spacing + Container( + width: 0.7.sw, + decoration: BoxDecoration( + border: Border.all( + color: TribeColor.primaryColor, + width: 1.5, + ), + borderRadius: BorderRadius.circular(20.r), + ), + child: TextFormField( + controller: widget.controller.nameController, + keyboardType: TextInputType.name, + style: TextStyle( + color: TribeColor.white, + fontSize: 15.sp, // Matches hint text style + ), + cursorHeight: 20.h, // Adjust cursor height if necessary + decoration: InputDecoration( + hintText: 'Name', + hintStyle: TextStyle( + color: TribeColor.white, + fontSize: 14.sp, + ), + errorStyle: TextStyle( + color: TribeColor.white, + fontSize: 10.sp, + ), + border: InputBorder.none, + isDense: true, // Reduces vertical padding + contentPadding: EdgeInsets.symmetric( + vertical: 10.h, // Ensures hint text and cursor alignment + ), + icon: Padding( + padding: EdgeInsets.only(left: 5.w), // Adds spacing + child: Icon( + Icons.person, + color: TribeColor.white, + size: 18.sp, + ), + ), + ), + validator: (value) { + if (value == null || value.isEmpty) { + return 'Name is required.'; + } + if (value.length > 100) { + return 'Name is too long.'; + } + return null; + }, + ), + ), + SizedBox(height: 20.h), // Spacing + Container( + width: 0.7.sw, + decoration: BoxDecoration( + border: Border.all( + color: TribeColor.primaryColor, + width: 1.5, + ), + borderRadius: BorderRadius.circular(20.r), + ), + child: TextFormField( + controller: widget.controller.userNameController, + style: TextStyle( + color: TribeColor.white, + fontSize: 15.sp, // Matches hint text style + ), + cursorHeight: 20.h, // Adjust cursor height if necessary + decoration: InputDecoration( + hintText: 'Username', + hintStyle: TextStyle( + color: TribeColor.white, + fontSize: 14.sp, + ), + errorStyle: TextStyle( + color: TribeColor.white, + fontSize: 10.sp, + ), + border: InputBorder.none, + isDense: true, // Reduces vertical padding + contentPadding: EdgeInsets.symmetric( + vertical: 10.h, // Ensures hint text and cursor alignment + ), + icon: Padding( + padding: EdgeInsets.only(left: 5.w), // Adds spacing + child: Icon( + Icons.account_box, + color: TribeColor.white, + size: 18.sp, + ), + ), + ), + validator: (value) { + if (value!.isEmpty) { + return 'User name is required.'; + } + return null; + }, + ), + ), + const Spacer(), + + Row( + mainAxisAlignment: MainAxisAlignment.end, + children: [ + CircleAvatar( + radius: 20.w, + backgroundColor: + // ignore: deprecated_member_use + TribeColor.primaryColor.withOpacity(0.3), + child: IconButton( + color: Colors.white, + onPressed: () { + if (widget.formKey.currentState!.validate()) { + widget.controller.changeIndex(1); + } + }, + icon: Icon( + Icons.chevron_right_rounded, + size: 25.w, + ), + ), + ), + SizedBox(width: 10.w), // Spacing + ], + ), + SizedBox(height: 10.h), // Spacing + ], + ), + ), + ), + Visibility( + visible: widget.controller.currentIndex.value == 1, + child: Expanded( + child: Column( + children: [ + SizedBox(height: 40.h), // Spacing + Container( + width: 0.7.sw, + decoration: BoxDecoration( + border: Border.all( + color: TribeColor.primaryColor, + width: 1.5, + ), + borderRadius: BorderRadius.circular(20.r), + ), + child: TextFormField( + controller: widget.controller.emailController, + keyboardType: TextInputType.emailAddress, + style: TextStyle( + color: TribeColor.white, + fontSize: 15.sp, // Matches hint text style + ), + cursorHeight: 20.h, // Adjust cursor height if necessary + decoration: InputDecoration( + hintText: 'Email', + hintStyle: TextStyle( + color: TribeColor.white, + fontSize: 14.sp, + ), + errorStyle: TextStyle( + color: TribeColor.white, + fontSize: 10.sp, + ), + border: InputBorder.none, + isDense: true, // Reduces vertical padding + contentPadding: EdgeInsets.symmetric( + vertical: 10.h, // Ensures hint text and cursor alignment + ), + icon: Padding( + padding: EdgeInsets.only(left: 5.w), // Adds spacing + child: Icon( + Icons.email_rounded, + color: TribeColor.white, + size: 18.sp, + ), + ), + ), + validator: (value) { + if (value == null || value.isEmpty) { + return 'Email is required.'; + } + final emailRegex = RegExp(r'^[^@]+@[^@]+\.[^@]+'); + if (!emailRegex.hasMatch(value)) { + return 'Invalid email address.'; + } + return null; + }, + ), + ), + SizedBox(height: 20.h), // Spacing + Container( + width: 0.7.sw, + decoration: BoxDecoration( + border: Border.all( + color: TribeColor.primaryColor, + width: 1.5, + ), + borderRadius: BorderRadius.circular(20.r), + ), + child: TextFormField( + controller: widget.controller.phoneController, + keyboardType: TextInputType.phone, + style: TextStyle( + color: TribeColor.white, + fontSize: 15.sp, // Matches hint text style + ), + cursorHeight: 20.h, // Adjust cursor height if necessary + decoration: InputDecoration( + hintText: 'Phone number', + hintStyle: TextStyle( + color: TribeColor.white, + fontSize: 14.sp, + ), + errorStyle: TextStyle( + color: TribeColor.white, + fontSize: 10.sp, + ), + border: InputBorder.none, + isDense: true, // Reduces vertical padding + contentPadding: EdgeInsets.symmetric( + vertical: 10.h, // Ensures hint text and cursor alignment + ), + icon: Padding( + padding: EdgeInsets.only(left: 5.w), // Adds spacing + child: Icon( + Icons.phone, + color: TribeColor.white, + size: 18.sp, + ), + ), + ), + validator: (value) { + if (value == null || value.isEmpty) { + return 'Phone number is required.'; + } + final phoneRegex = RegExp(r'^\d{10}$'); + if (!phoneRegex.hasMatch(value)) { + return 'Invalid phone number.'; + } + return null; + }, + ), + ), + const Spacer(), + + Row( + mainAxisAlignment: MainAxisAlignment.end, + children: [ + SizedBox(width: 10.w), // Spacing + CircleAvatar( + radius: 20.w, + backgroundColor: + // ignore: deprecated_member_use + TribeColor.primaryColor.withOpacity(0.3), + child: IconButton( + color: Colors.white, + onPressed: () { + widget.controller.changeIndex(0); + }, + icon: Icon( + Icons.chevron_left_rounded, + size: 25.w, + ), + ), + ), + const Spacer(), + CircleAvatar( + radius: 20.w, + backgroundColor: + // ignore: deprecated_member_use + TribeColor.primaryColor.withOpacity(0.3), + child: IconButton( + color: Colors.white, + onPressed: () { + if (widget.formKey.currentState!.validate()) { + widget.controller.changeIndex(2); + } + }, + icon: Icon( + Icons.chevron_right_rounded, + size: 25.w, + ), + ), + ), + SizedBox(width: 10.w), // Spacing + ], + ), + SizedBox(height: 10.h), // Spacing + ], + ), + ), + ), + Visibility( + visible: widget.controller.currentIndex.value == 2, + child: Expanded( + child: Column( + children: [ + SizedBox(height: 30.h), // Spacing + Padding( + padding: EdgeInsets.symmetric(horizontal: 20.w), + child: CSCPicker( + layout: Layout.vertical, + disabledDropdownDecoration: BoxDecoration( + borderRadius: BorderRadius.circular(10), + border: Border.all(color: Colors.grey.shade700), + ), + selectedItemStyle: TextStyle( + color: TribeColor.white, + fontSize: 14.sp, + ), + dropdownDecoration: BoxDecoration( + borderRadius: BorderRadius.circular(10.w), + border: Border.all(color: TribeColor.primaryColor, width: 1.5.w), + ), + dropdownDialogRadius: 10, + searchBarRadius: 10, + defaultCountry: CscCountry.India, + onCountryChanged: (value) { + widget.controller.selectedCountry.value = value; + widget.controller.update(); + }, + onStateChanged: (value) { + widget.controller.selectedState.value = value ?? ''; + widget.controller.update(); + }, + onCityChanged: (value) { + widget.controller.selectedCity.value = value ?? ''; + widget.controller.update(); + }, + ), + ), + const Spacer(), + Row( + mainAxisAlignment: MainAxisAlignment.end, + children: [ + SizedBox(width: 10.w), // Spacing + CircleAvatar( + radius: 20.w, + backgroundColor: + // ignore: deprecated_member_use + TribeColor.primaryColor.withOpacity(0.3), + child: IconButton( + color: Colors.white, + onPressed: () { + widget.controller.changeIndex(1); + }, + icon: Icon( + Icons.chevron_left_rounded, + size: 25.w, + ), + ), + ), + const Spacer(), + CircleAvatar( + radius: 20.w, + backgroundColor: + // ignore: deprecated_member_use + TribeColor.primaryColor.withOpacity(0.3), + child: IconButton( + color: Colors.white, + onPressed: () { + if (widget.controller.selectedCountry.value.isNotEmpty && + widget.controller.selectedCity.value.isNotEmpty && + widget.controller.selectedState.value.isNotEmpty) { + widget.controller.changeIndex(3); + } else { + Utility.showErrorToast(context: context, title: "Please select all fields"); + } + }, + icon: Icon( + Icons.chevron_right_rounded, + size: 25.w, + ), + ), + ), + SizedBox(width: 10.w), // Spacing + ], + ), + SizedBox(height: 10.h), // Spacing + ], + ), + ), + ), + Visibility( + visible: widget.controller.currentIndex.value == 3, + child: Expanded( + child: Column( + children: [ + SizedBox(height: 40.h), // Spacing + Container( + width: 0.7.sw, + decoration: BoxDecoration( + border: Border.all( + color: TribeColor.primaryColor, + width: 1.5, + ), + borderRadius: BorderRadius.circular(20.r), + ), + child: TextFormField( + controller: widget.controller.passwordController, + keyboardType: TextInputType.visiblePassword, + style: TextStyle( + color: TribeColor.white, + fontSize: 14.sp, // Matches hint text style + ), + obscureText: !widget.controller.isPasswordVisible.value, + cursorHeight: 20.h, // Adjust cursor height if necessary + onChanged: (value) { + setState(() { + _passwordFieldTouched = true; + }); + }, + decoration: InputDecoration( + hintText: 'Set Password', + errorStyle: TextStyle( + color: TribeColor.white, + fontSize: 10.sp, + ), + hintStyle: TextStyle( + color: TribeColor.white, + fontSize: 14.sp, + ), + border: InputBorder.none, + errorText: _passwordFieldTouched ? _validatePasswordErrorText() : null, + isDense: true, // Reduces vertical padding + contentPadding: EdgeInsets.symmetric( + vertical: 10.h, // Ensures hint text and cursor alignment + ), + icon: Padding( + padding: EdgeInsets.only(left: 5.w), // Adds spacing + child: Icon( + Icons.password_sharp, + color: TribeColor.white, + size: 18.sp, + ), + ), + suffixIcon: IconButton( + icon: Icon( + widget.controller.isPasswordVisible.value ? Icons.visibility : Icons.visibility_off, + size: 18.sp, + ), + onPressed: () { + widget.controller.togglePasswordVisibility(); + }, + ), + ), + ), + ), + + SizedBox(height: 20.h), // Spacing + Container( + width: 0.7.sw, + decoration: BoxDecoration( + border: Border.all( + color: TribeColor.primaryColor, + width: 1.5, + ), + borderRadius: BorderRadius.circular(20.r), + ), + child: TextFormField( + controller: widget.controller.confirmPasswordController, + keyboardType: TextInputType.visiblePassword, + obscureText: !widget.controller.isPasswordVisible.value, + style: TextStyle( + color: TribeColor.white, + fontSize: 15.sp, // Matches hint text style + ), + cursorHeight: 20.h, // Adjust cursor height if necessary + onChanged: (value) { + setState(() { + _confirmPasswordFieldTouched = true; + }); + }, + decoration: InputDecoration( + hintText: 'Confirm Password', + hintStyle: TextStyle( + color: TribeColor.white, + fontSize: 14.sp, + ), + errorStyle: TextStyle( + color: TribeColor.white, + fontSize: 10.sp, + ), + border: InputBorder.none, + errorText: _confirmPasswordFieldTouched ? _validateConfirmPasswordErrorText() : null, + isDense: true, // Reduces vertical padding + contentPadding: EdgeInsets.symmetric( + vertical: 10.h, // Ensures hint text and cursor alignment + ), + icon: Padding( + padding: EdgeInsets.only(left: 5.w), // Adds spacing + child: Icon( + Icons.security_sharp, + color: TribeColor.white, + size: 18.sp, + ), + ), + suffixIcon: IconButton( + icon: Icon( + widget.controller.isPasswordVisible.value ? Icons.visibility : Icons.visibility_off, + size: 18.sp, + ), + onPressed: () { + widget.controller.togglePasswordVisibility(); + }, + ), + ), + ), + ), + + const Spacer(), + + Row( + mainAxisAlignment: MainAxisAlignment.end, + children: [ + SizedBox(width: 10.w), // Spacing + CircleAvatar( + radius: 20.w, + backgroundColor: + // ignore: deprecated_member_use + TribeColor.primaryColor.withOpacity(0.3), + child: IconButton( + color: Colors.white, + onPressed: () { + widget.controller.changeIndex(2); + }, + icon: Icon( + Icons.chevron_left_rounded, + size: 25.w, + ), + ), + ), + const Spacer(), + SizedBox(width: 10.w), // Spacing + ], + ), + SizedBox(height: 10.h), // Spacing + ], + ), + ), + ), + ], + ); + })), + ), + ); + } + + String? _validatePasswordErrorText() { + final password = widget.controller.passwordController.text; + + if (password.isEmpty) { + return 'Password is required.'; + } + if (password.length < 8) { + return 'Password must be at least 8 characters long.'; + } + if (password.contains(' ')) { + return 'Password cannot contain whitespace.'; + } + if (!_containsUppercase(password)) { + return 'Password must contain at least one uppercase letter.'; + } + if (!_containsLowercase(password)) { + return 'Password must contain at least one lowercase letter.'; + } + if (!_containsDigit(password)) { + return 'Password must contain at least one digit.'; + } + if (!_containsSpecialCharacter(password)) { + return 'Password must contain at least one special character.'; + } + return null; + } + + String? _validateConfirmPasswordErrorText() { + final confirmPassword = widget.controller.confirmPasswordController.text; + final password = widget.controller.passwordController.text; + + if (confirmPassword.isEmpty) { + return 'Confirm password is required.'; + } + if (confirmPassword.contains(' ')) { + return 'Confirm password cannot contain whitespace.'; + } + if (confirmPassword != password) { + return 'Passwords do not match.'; + } + return null; + } + + bool _containsUppercase(String value) { + return value.contains(RegExp('[A-Z]')); + } + + bool _containsLowercase(String value) { + return value.contains(RegExp('[a-z]')); + } + + bool _containsDigit(String value) { + return value.contains(RegExp('[0-9]')); + } + + bool _containsSpecialCharacter(String value) { + return value.contains(RegExp(r'[!@#$%^&*(),.?":{}|<>]')); + } +} diff --git a/lib/main.dart b/lib/main.dart index 8e94089..1739071 100644 --- a/lib/main.dart +++ b/lib/main.dart @@ -1,4 +1,14 @@ +// Flutter imports: import 'package:flutter/material.dart'; +import 'package:flutter/services.dart'; + +// Package imports: +import 'package:flutter_screenutil/flutter_screenutil.dart'; +import 'package:get/get.dart'; +import 'package:toastification/toastification.dart'; + +// Project imports: +import 'package:project_tribe/features/onboarding/presentation/screens/register.dart'; void main() { runApp(const MyApp()); @@ -7,119 +17,26 @@ void main() { class MyApp extends StatelessWidget { const MyApp({super.key}); - // This widget is the root of your application. @override Widget build(BuildContext context) { - return MaterialApp( - title: 'Flutter Demo', - theme: ThemeData( - // This is the theme of your application. - // - // TRY THIS: Try running your application with "flutter run". You'll see - // the application has a purple toolbar. Then, without quitting the app, - // try changing the seedColor in the colorScheme below to Colors.green - // and then invoke "hot reload" (save your changes or press the "hot - // reload" button in a Flutter-supported IDE, or press "r" if you used - // the command line to start the app). - // - // Notice that the counter didn't reset back to zero; the application - // state is not lost during the reload. To reset the state, use hot - // restart instead. - // - // This works for code too, not just values: Most code changes can be - // tested with just a hot reload. - colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple), - useMaterial3: true, - ), - home: const MyHomePage(title: 'Flutter Demo Home Page'), - ); - } -} - -class MyHomePage extends StatefulWidget { - const MyHomePage({super.key, required this.title}); - - // This widget is the home page of your application. It is stateful, meaning - // that it has a State object (defined below) that contains fields that affect - // how it looks. - - // This class is the configuration for the state. It holds the values (in this - // case the title) provided by the parent (in this case the App widget) and - // used by the build method of the State. Fields in a Widget subclass are - // always marked "final". - - final String title; - - @override - State createState() => _MyHomePageState(); -} - -class _MyHomePageState extends State { - int _counter = 0; - - void _incrementCounter() { - setState(() { - // This call to setState tells the Flutter framework that something has - // changed in this State, which causes it to rerun the build method below - // so that the display can reflect the updated values. If we changed - // _counter without calling setState(), then the build method would not be - // called again, and so nothing would appear to happen. - _counter++; - }); - } - - @override - Widget build(BuildContext context) { - // This method is rerun every time setState is called, for instance as done - // by the _incrementCounter method above. - // - // The Flutter framework has been optimized to make rerunning build methods - // fast, so that you can just rebuild anything that needs updating rather - // than having to individually change instances of widgets. - return Scaffold( - appBar: AppBar( - // TRY THIS: Try changing the color here to a specific color (to - // Colors.amber, perhaps?) and trigger a hot reload to see the AppBar - // change color while the other colors stay the same. - backgroundColor: Theme.of(context).colorScheme.inversePrimary, - // Here we take the value from the MyHomePage object that was created by - // the App.build method, and use it to set our appbar title. - title: Text(widget.title), - ), - body: Center( - // Center is a layout widget. It takes a single child and positions it - // in the middle of the parent. - child: Column( - // Column is also a layout widget. It takes a list of children and - // arranges them vertically. By default, it sizes itself to fit its - // children horizontally, and tries to be as tall as its parent. - // - // Column has various properties to control how it sizes itself and - // how it positions its children. Here we use mainAxisAlignment to - // center the children vertically; the main axis here is the vertical - // axis because Columns are vertical (the cross axis would be - // horizontal). - // - // TRY THIS: Invoke "debug painting" (choose the "Toggle Debug Paint" - // action in the IDE, or press "p" in the console), to see the - // wireframe for each widget. - mainAxisAlignment: MainAxisAlignment.center, - children: [ - const Text( - 'You have pushed the button this many times:', - ), - Text( - '$_counter', - style: Theme.of(context).textTheme.headlineMedium, + SystemChrome.setPreferredOrientations([ + DeviceOrientation.portraitUp, + ]); + ScreenUtil.init(context); + return ScreenUtilInit( + designSize: const Size(360, 800), + child: ToastificationWrapper( + child: GetMaterialApp( + title: 'Tribe', + theme: ThemeData.dark().copyWith( + scaffoldBackgroundColor: Colors.black, // Pitch black background + colorScheme: const ColorScheme.dark( + primary: Colors.deepPurple, // Adjust as needed ), - ], + ), + home: Register(), ), ), - floatingActionButton: FloatingActionButton( - onPressed: _incrementCounter, - tooltip: 'Increment', - child: const Icon(Icons.add), - ), // This trailing comma makes auto-formatting nicer for build methods. ); } } diff --git a/pubspec.lock b/pubspec.lock index c4bb80c..bfb6579 100644 --- a/pubspec.lock +++ b/pubspec.lock @@ -1,6 +1,43 @@ # Generated by pub # See https://dart.dev/tools/pub/glossary#lockfile packages: + _fe_analyzer_shared: + dependency: transitive + description: + name: _fe_analyzer_shared + sha256: f256b0c0ba6c7577c15e2e4e114755640a875e885099367bf6e012b19314c834 + url: "https://pub.dev" + source: hosted + version: "72.0.0" + _macros: + dependency: transitive + description: dart + source: sdk + version: "0.3.2" + analyzer: + dependency: transitive + description: + name: analyzer + sha256: b652861553cd3990d8ed361f7979dc6d7053a9ac8843fa73820ab68ce5410139 + url: "https://pub.dev" + source: hosted + version: "6.7.0" + archive: + dependency: transitive + description: + name: archive + sha256: cb6a278ef2dbb298455e1a713bda08524a175630ec643a242c399c932a0a1f7d + url: "https://pub.dev" + source: hosted + version: "3.6.1" + args: + dependency: transitive + description: + name: args + sha256: bf9f5caeea8d8fe6721a9c358dd8a5c1947b27f1cfaa18b39c301273594919e6 + url: "https://pub.dev" + source: hosted + version: "2.6.0" async: dependency: transitive description: @@ -17,6 +54,70 @@ packages: url: "https://pub.dev" source: hosted version: "2.1.1" + build: + dependency: transitive + description: + name: build + sha256: "80184af8b6cb3e5c1c4ec6d8544d27711700bc3e6d2efad04238c7b5290889f0" + url: "https://pub.dev" + source: hosted + version: "2.4.1" + build_config: + dependency: transitive + description: + name: build_config + sha256: bf80fcfb46a29945b423bd9aad884590fb1dc69b330a4d4700cac476af1708d1 + url: "https://pub.dev" + source: hosted + version: "1.1.1" + build_daemon: + dependency: transitive + description: + name: build_daemon + sha256: "79b2aef6ac2ed00046867ed354c88778c9c0f029df8a20fe10b5436826721ef9" + url: "https://pub.dev" + source: hosted + version: "4.0.2" + build_resolvers: + dependency: transitive + description: + name: build_resolvers + sha256: "339086358431fa15d7eca8b6a36e5d783728cf025e559b834f4609a1fcfb7b0a" + url: "https://pub.dev" + source: hosted + version: "2.4.2" + build_runner: + dependency: "direct main" + description: + name: build_runner + sha256: "028819cfb90051c6b5440c7e574d1896f8037e3c96cf17aaeb054c9311cfbf4d" + url: "https://pub.dev" + source: hosted + version: "2.4.13" + build_runner_core: + dependency: transitive + description: + name: build_runner_core + sha256: f8126682b87a7282a339b871298cc12009cb67109cfa1614d6436fb0289193e0 + url: "https://pub.dev" + source: hosted + version: "7.3.2" + built_collection: + dependency: transitive + description: + name: built_collection + sha256: "376e3dd27b51ea877c28d525560790aee2e6fbb5f20e2f85d5081027d94e2100" + url: "https://pub.dev" + source: hosted + version: "5.1.1" + built_value: + dependency: transitive + description: + name: built_value + sha256: "28a712df2576b63c6c005c465989a348604960c0958d28be5303ba9baa841ac2" + url: "https://pub.dev" + source: hosted + version: "8.9.3" characters: dependency: transitive description: @@ -25,6 +126,14 @@ packages: url: "https://pub.dev" source: hosted version: "1.3.0" + checked_yaml: + dependency: transitive + description: + name: checked_yaml + sha256: feb6bed21949061731a7a75fc5d2aa727cf160b91af9a3e464c5e3a32e28b5ff + url: "https://pub.dev" + source: hosted + version: "2.0.3" clock: dependency: transitive description: @@ -33,6 +142,14 @@ packages: url: "https://pub.dev" source: hosted version: "1.1.1" + code_builder: + dependency: transitive + description: + name: code_builder + sha256: "0ec10bf4a89e4c613960bf1e8b42c64127021740fb21640c29c909826a5eea3e" + url: "https://pub.dev" + source: hosted + version: "4.10.1" collection: dependency: transitive description: @@ -41,6 +158,38 @@ packages: url: "https://pub.dev" source: hosted version: "1.18.0" + color: + dependency: transitive + description: + name: color + sha256: ddcdf1b3badd7008233f5acffaf20ca9f5dc2cd0172b75f68f24526a5f5725cb + url: "https://pub.dev" + source: hosted + version: "3.0.0" + convert: + dependency: transitive + description: + name: convert + sha256: b30acd5944035672bc15c6b7a8b47d773e41e2f17de064350988c5d02adb1c68 + url: "https://pub.dev" + source: hosted + version: "3.1.2" + crypto: + dependency: transitive + description: + name: crypto + sha256: "1e445881f28f22d6140f181e07737b22f1e099a5e1ff94b0af2f9e4a463f4855" + url: "https://pub.dev" + source: hosted + version: "3.0.6" + csc_picker: + dependency: "direct main" + description: + name: csc_picker + sha256: "7e5d6023a81f53b89a7fb0369953fd4dc676f7ea20e9a0c0707973a5f0aedf14" + url: "https://pub.dev" + source: hosted + version: "0.2.7" cupertino_icons: dependency: "direct main" description: @@ -49,6 +198,30 @@ packages: url: "https://pub.dev" source: hosted version: "1.0.8" + dart_style: + dependency: transitive + description: + name: dart_style + sha256: "7856d364b589d1f08986e140938578ed36ed948581fbc3bc9aef1805039ac5ab" + url: "https://pub.dev" + source: hosted + version: "2.3.7" + dartx: + dependency: transitive + description: + name: dartx + sha256: "8b25435617027257d43e6508b5fe061012880ddfdaa75a71d607c3de2a13d244" + url: "https://pub.dev" + source: hosted + version: "1.2.0" + equatable: + dependency: transitive + description: + name: equatable + sha256: "567c64b3cb4cf82397aac55f4f0cbd3ca20d77c6c03bedbc4ceaddc08904aef7" + url: "https://pub.dev" + source: hosted + version: "2.0.7" fake_async: dependency: transitive description: @@ -57,11 +230,43 @@ packages: url: "https://pub.dev" source: hosted version: "1.3.1" + file: + dependency: transitive + description: + name: file + sha256: a3b4f84adafef897088c160faf7dfffb7696046cb13ae90b508c2cbc95d3b8d4 + url: "https://pub.dev" + source: hosted + version: "7.0.1" + fixnum: + dependency: transitive + description: + name: fixnum + sha256: b6dc7065e46c974bc7c5f143080a6764ec7a4be6da1285ececdc37be96de53be + url: "https://pub.dev" + source: hosted + version: "1.1.1" flutter: dependency: "direct main" description: flutter source: sdk version: "0.0.0" + flutter_gen: + dependency: "direct main" + description: + name: flutter_gen + sha256: d7e4e57f606d73628b97765a67fdfb5a97e24cd2183e170afa8d1f62e48a9d5c + url: "https://pub.dev" + source: hosted + version: "5.8.0" + flutter_gen_core: + dependency: transitive + description: + name: flutter_gen_core + sha256: "46ecf0e317413dd065547887c43f93f55e9653e83eb98dc13dd07d40dd225325" + url: "https://pub.dev" + source: hosted + version: "5.8.0" flutter_lints: dependency: "direct dev" description: @@ -70,35 +275,155 @@ packages: url: "https://pub.dev" source: hosted version: "3.0.2" + flutter_screenutil: + dependency: "direct main" + description: + name: flutter_screenutil + sha256: "8239210dd68bee6b0577aa4a090890342d04a136ce1c81f98ee513fc0ce891de" + url: "https://pub.dev" + source: hosted + version: "5.9.3" flutter_test: dependency: "direct dev" description: flutter source: sdk version: "0.0.0" + frontend_server_client: + dependency: transitive + description: + name: frontend_server_client + sha256: f64a0333a82f30b0cca061bc3d143813a486dc086b574bfb233b7c1372427694 + url: "https://pub.dev" + source: hosted + version: "4.0.0" + get: + dependency: "direct main" + description: + name: get + sha256: e4e7335ede17452b391ed3b2ede016545706c01a02292a6c97619705e7d2a85e + url: "https://pub.dev" + source: hosted + version: "4.6.6" + glob: + dependency: transitive + description: + name: glob + sha256: "0e7014b3b7d4dac1ca4d6114f82bf1782ee86745b9b42a92c9289c23d8a0ab63" + url: "https://pub.dev" + source: hosted + version: "2.1.2" + graphs: + dependency: transitive + description: + name: graphs + sha256: "741bbf84165310a68ff28fe9e727332eef1407342fca52759cb21ad8177bb8d0" + url: "https://pub.dev" + source: hosted + version: "2.3.2" + hashcodes: + dependency: transitive + description: + name: hashcodes + sha256: "80f9410a5b3c8e110c4b7604546034749259f5d6dcca63e0d3c17c9258f1a651" + url: "https://pub.dev" + source: hosted + version: "2.0.0" + http: + dependency: "direct main" + description: + name: http + sha256: b9c29a161230ee03d3ccf545097fccd9b87a5264228c5d348202e0f0c28f9010 + url: "https://pub.dev" + source: hosted + version: "1.2.2" + http_multi_server: + dependency: transitive + description: + name: http_multi_server + sha256: aa6199f908078bb1c5efb8d8638d4ae191aac11b311132c3ef48ce352fb52ef8 + url: "https://pub.dev" + source: hosted + version: "3.2.2" + http_parser: + dependency: transitive + description: + name: http_parser + sha256: "2aa08ce0341cc9b354a498388e30986515406668dbcc4f7c950c3e715496693b" + url: "https://pub.dev" + source: hosted + version: "4.0.2" + iconsax_flutter: + dependency: transitive + description: + name: iconsax_flutter + sha256: "95b65699da8ea98f87c5d232f06b0debaaf1ec1332b697e4d90969ec9a93037d" + url: "https://pub.dev" + source: hosted + version: "1.0.0" + image_size_getter: + dependency: transitive + description: + name: image_size_getter + sha256: "0511799498340b70993d2dfb34b55a2247b5b801d75a6cdd4543acfcafdb12b0" + url: "https://pub.dev" + source: hosted + version: "2.2.0" + import_sorter: + dependency: "direct main" + description: + name: import_sorter + sha256: eb15738ccead84e62c31e0208ea4e3104415efcd4972b86906ca64a1187d0836 + url: "https://pub.dev" + source: hosted + version: "4.6.0" + io: + dependency: transitive + description: + name: io + sha256: dfd5a80599cf0165756e3181807ed3e77daf6dd4137caaad72d0b7931597650b + url: "https://pub.dev" + source: hosted + version: "1.0.5" + js: + dependency: transitive + description: + name: js + sha256: c1b2e9b5ea78c45e1a0788d29606ba27dc5f71f019f32ca5140f61ef071838cf + url: "https://pub.dev" + source: hosted + version: "0.7.1" + json_annotation: + dependency: transitive + description: + name: json_annotation + sha256: "1ce844379ca14835a50d2f019a3099f419082cfdd231cd86a142af94dd5c6bb1" + url: "https://pub.dev" + source: hosted + version: "4.9.0" leak_tracker: dependency: transitive description: name: leak_tracker - sha256: "78eb209deea09858f5269f5a5b02be4049535f568c07b275096836f01ea323fa" + sha256: "3f87a60e8c63aecc975dda1ceedbc8f24de75f09e4856ea27daf8958f2f0ce05" url: "https://pub.dev" source: hosted - version: "10.0.0" + version: "10.0.5" leak_tracker_flutter_testing: dependency: transitive description: name: leak_tracker_flutter_testing - sha256: b46c5e37c19120a8a01918cfaf293547f47269f7cb4b0058f21531c2465d6ef0 + sha256: "932549fb305594d82d7183ecd9fa93463e9914e1b67cacc34bc40906594a1806" url: "https://pub.dev" source: hosted - version: "2.0.1" + version: "3.0.5" leak_tracker_testing: dependency: transitive description: name: leak_tracker_testing - sha256: a597f72a664dbd293f3bfc51f9ba69816f84dcd403cdac7066cb3f6003f3ab47 + sha256: "6ba465d5d76e67ddf503e1161d1f4a6bc42306f9d66ca1e8f079a47290fb06d3" url: "https://pub.dev" source: hosted - version: "2.0.1" + version: "3.0.1" lints: dependency: transitive description: @@ -107,6 +432,38 @@ packages: url: "https://pub.dev" source: hosted version: "3.0.0" + logger: + dependency: "direct main" + description: + name: logger + sha256: be4b23575aac7ebf01f225a241eb7f6b5641eeaf43c6a8613510fc2f8cf187d1 + url: "https://pub.dev" + source: hosted + version: "2.5.0" + logging: + dependency: transitive + description: + name: logging + sha256: c8245ada5f1717ed44271ed1c26b8ce85ca3228fd2ffdb75468ab01979309d61 + url: "https://pub.dev" + source: hosted + version: "1.3.0" + lottie: + dependency: "direct main" + description: + name: lottie + sha256: fa39707f36786707b01eca7626d2c16c32aa603b3f3a146518518458847dc127 + url: "https://pub.dev" + source: hosted + version: "3.2.0" + macros: + dependency: transitive + description: + name: macros + sha256: "0acaed5d6b7eab89f63350bccd82119e6c602df0f391260d0e32b5e23db79536" + url: "https://pub.dev" + source: hosted + version: "0.1.2-main.4" matcher: dependency: transitive description: @@ -119,18 +476,42 @@ packages: dependency: transitive description: name: material_color_utilities - sha256: "0e0a020085b65b6083975e499759762399b4475f766c21668c4ecca34ea74e5a" + sha256: f7142bb1154231d7ea5f96bc7bde4bda2a0945d2806bb11670e30b850d56bdec url: "https://pub.dev" source: hosted - version: "0.8.0" + version: "0.11.1" meta: dependency: transitive description: name: meta - sha256: d584fa6707a52763a52446f02cc621b077888fb63b93bbcb1143a7be5a0c0c04 + sha256: bdb68674043280c3428e9ec998512fb681678676b3c54e773629ffe74419f8c7 url: "https://pub.dev" source: hosted - version: "1.11.0" + version: "1.15.0" + mime: + dependency: transitive + description: + name: mime + sha256: "41a20518f0cb1256669420fdba0cd90d21561e560ac240f26ef8322e45bb7ed6" + url: "https://pub.dev" + source: hosted + version: "2.0.0" + nested: + dependency: transitive + description: + name: nested + sha256: "03bac4c528c64c95c722ec99280375a6f2fc708eec17c7b3f07253b626cd2a20" + url: "https://pub.dev" + source: hosted + version: "1.0.0" + package_config: + dependency: transitive + description: + name: package_config + sha256: "92d4488434b520a62570293fbd33bb556c7d49230791c1b4bbd973baf6d2dc67" + url: "https://pub.dev" + source: hosted + version: "2.1.1" path: dependency: transitive description: @@ -139,6 +520,86 @@ packages: url: "https://pub.dev" source: hosted version: "1.9.0" + path_parsing: + dependency: transitive + description: + name: path_parsing + sha256: "883402936929eac138ee0a45da5b0f2c80f89913e6dc3bf77eb65b84b409c6ca" + url: "https://pub.dev" + source: hosted + version: "1.1.0" + pausable_timer: + dependency: transitive + description: + name: pausable_timer + sha256: "6ef1a95441ec3439de6fb63f39a011b67e693198e7dae14e20675c3c00e86074" + url: "https://pub.dev" + source: hosted + version: "3.1.0+3" + petitparser: + dependency: transitive + description: + name: petitparser + sha256: c15605cd28af66339f8eb6fbe0e541bfe2d1b72d5825efc6598f3e0a31b9ad27 + url: "https://pub.dev" + source: hosted + version: "6.0.2" + pool: + dependency: transitive + description: + name: pool + sha256: "20fe868b6314b322ea036ba325e6fc0711a22948856475e2c2b6306e8ab39c2a" + url: "https://pub.dev" + source: hosted + version: "1.5.1" + provider: + dependency: "direct main" + description: + name: provider + sha256: c8a055ee5ce3fd98d6fc872478b03823ffdb448699c6ebdbbc71d59b596fd48c + url: "https://pub.dev" + source: hosted + version: "6.1.2" + pub_semver: + dependency: transitive + description: + name: pub_semver + sha256: "7b3cfbf654f3edd0c6298ecd5be782ce997ddf0e00531b9464b55245185bbbbd" + url: "https://pub.dev" + source: hosted + version: "2.1.5" + pubspec_parse: + dependency: transitive + description: + name: pubspec_parse + sha256: "81876843eb50dc2e1e5b151792c9a985c5ed2536914115ed04e9c8528f6647b0" + url: "https://pub.dev" + source: hosted + version: "1.4.0" + shelf: + dependency: transitive + description: + name: shelf + sha256: ad29c505aee705f41a4d8963641f91ac4cee3c8fad5947e033390a7bd8180fa4 + url: "https://pub.dev" + source: hosted + version: "1.4.1" + shelf_web_socket: + dependency: transitive + description: + name: shelf_web_socket + sha256: cc36c297b52866d203dbf9332263c94becc2fe0ceaa9681d07b6ef9807023b67 + url: "https://pub.dev" + source: hosted + version: "2.0.1" + shimmer: + dependency: "direct main" + description: + name: shimmer + sha256: "5f88c883a22e9f9f299e5ba0e4f7e6054857224976a5d9f839d4ebdc94a14ac9" + url: "https://pub.dev" + source: hosted + version: "3.0.0" sky_engine: dependency: transitive description: flutter @@ -152,6 +613,14 @@ packages: url: "https://pub.dev" source: hosted version: "1.10.0" + sprintf: + dependency: transitive + description: + name: sprintf + sha256: "1fc9ffe69d4df602376b52949af107d8f5703b77cda567c4d7d86a0693120f23" + url: "https://pub.dev" + source: hosted + version: "7.0.0" stack_trace: dependency: transitive description: @@ -168,6 +637,14 @@ packages: url: "https://pub.dev" source: hosted version: "2.1.2" + stream_transform: + dependency: transitive + description: + name: stream_transform + sha256: ad47125e588cfd37a9a7f86c7d6356dde8dfe89d071d293f80ca9e9273a33871 + url: "https://pub.dev" + source: hosted + version: "2.1.1" string_scanner: dependency: transitive description: @@ -188,10 +665,74 @@ packages: dependency: transitive description: name: test_api - sha256: "5c2f730018264d276c20e4f1503fd1308dfbbae39ec8ee63c5236311ac06954b" + sha256: "5b8a98dafc4d5c4c9c72d8b31ab2b23fc13422348d2997120294d3bac86b4ddb" url: "https://pub.dev" source: hosted - version: "0.6.1" + version: "0.7.2" + time: + dependency: transitive + description: + name: time + sha256: "370572cf5d1e58adcb3e354c47515da3f7469dac3a95b447117e728e7be6f461" + url: "https://pub.dev" + source: hosted + version: "2.1.5" + timing: + dependency: transitive + description: + name: timing + sha256: "62ee18aca144e4a9f29d212f5a4c6a053be252b895ab14b5821996cff4ed90fe" + url: "https://pub.dev" + source: hosted + version: "1.0.2" + tint: + dependency: transitive + description: + name: tint + sha256: "9652d9a589f4536d5e392cf790263d120474f15da3cf1bee7f1fdb31b4de5f46" + url: "https://pub.dev" + source: hosted + version: "2.0.1" + toastification: + dependency: "direct main" + description: + name: toastification + sha256: "4d97fbfa463dfe83691044cba9f37cb185a79bb9205cfecb655fa1f6be126a13" + url: "https://pub.dev" + source: hosted + version: "2.3.0" + typed_data: + dependency: transitive + description: + name: typed_data + sha256: f9049c039ebfeb4cf7a7104a675823cd72dba8297f264b6637062516699fa006 + url: "https://pub.dev" + source: hosted + version: "1.4.0" + uuid: + dependency: transitive + description: + name: uuid + sha256: a5be9ef6618a7ac1e964353ef476418026db906c4facdedaa299b7a2e71690ff + url: "https://pub.dev" + source: hosted + version: "4.5.1" + vector_graphics_codec: + dependency: transitive + description: + name: vector_graphics_codec + sha256: "2430b973a4ca3c4dbc9999b62b8c719a160100dcbae5c819bae0cacce32c9cdb" + url: "https://pub.dev" + source: hosted + version: "1.1.12" + vector_graphics_compiler: + dependency: transitive + description: + name: vector_graphics_compiler + sha256: "1b4b9e706a10294258727674a340ae0d6e64a7231980f9f9a3d12e4b42407aad" + url: "https://pub.dev" + source: hosted + version: "1.1.16" vector_math: dependency: transitive description: @@ -204,9 +745,58 @@ packages: dependency: transitive description: name: vm_service - sha256: b3d56ff4341b8f182b96aceb2fa20e3dcb336b9f867bc0eafc0de10f1048e957 + sha256: "5c5f338a667b4c644744b661f309fb8080bb94b18a7e91ef1dbd343bed00ed6d" + url: "https://pub.dev" + source: hosted + version: "14.2.5" + watcher: + dependency: transitive + description: + name: watcher + sha256: "69da27e49efa56a15f8afe8f4438c4ec02eff0a117df1b22ea4aad194fe1c104" + url: "https://pub.dev" + source: hosted + version: "1.1.1" + web: + dependency: transitive + description: + name: web + sha256: cd3543bd5798f6ad290ea73d210f423502e71900302dde696f8bff84bf89a1cb + url: "https://pub.dev" + source: hosted + version: "1.1.0" + web_socket: + dependency: transitive + description: + name: web_socket + sha256: "3c12d96c0c9a4eec095246debcea7b86c0324f22df69893d538fcc6f1b8cce83" + url: "https://pub.dev" + source: hosted + version: "0.1.6" + web_socket_channel: + dependency: transitive + description: + name: web_socket_channel + sha256: "9f187088ed104edd8662ca07af4b124465893caf063ba29758f97af57e61da8f" + url: "https://pub.dev" + source: hosted + version: "3.0.1" + xml: + dependency: transitive + description: + name: xml + sha256: b015a8ad1c488f66851d762d3090a21c600e479dc75e68328c52774040cf9226 + url: "https://pub.dev" + source: hosted + version: "6.5.0" + yaml: + dependency: transitive + description: + name: yaml + sha256: b9da305ac7c39faa3f030eccd175340f968459dae4af175130b3fc47e40d76ce url: "https://pub.dev" source: hosted - version: "13.0.0" + version: "3.1.3" sdks: - dart: ">=3.3.1 <4.0.0" + dart: ">=3.5.0 <4.0.0" + flutter: ">=3.24.0" diff --git a/pubspec.yaml b/pubspec.yaml index 0ecd225..95041c5 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,4 +1,4 @@ -name: project_gauri +name: project_tribe description: "A new Flutter project." # The following line prevents the package from being accidentally published to # pub.dev using `flutter pub publish`. This is preferred for private packages. @@ -35,6 +35,18 @@ dependencies: # The following adds the Cupertino Icons font to your application. # Use with the CupertinoIcons class for iOS style icons. cupertino_icons: ^1.0.6 + flutter_screenutil: ^5.9.3 + provider: ^6.1.2 + flutter_gen: ^5.8.0 + build_runner: ^2.4.13 + csc_picker: ^0.2.7 + get: ^4.6.6 + logger: ^2.5.0 + http: ^1.2.2 + shimmer: ^3.0.0 + toastification: ^2.3.0 + import_sorter: ^4.6.0 + lottie: ^3.2.0 dev_dependencies: flutter_test: @@ -58,33 +70,12 @@ flutter: # the material Icons class. uses-material-design: true - # To add assets to your application, add an assets section, like this: - # assets: - # - images/a_dot_burr.jpeg - # - images/a_dot_ham.jpeg + assets: + - assets/animations/bg_animation.json + - assets/animations/bg_animation2.json + - assets/animations/google_icon.json + - assets/animations/facebook_icon.json - # An image asset can refer to one or more resolution-specific "variants", see - # https://flutter.dev/assets-and-images/#resolution-aware - - # For details regarding adding assets from package dependencies, see - # https://flutter.dev/assets-and-images/#from-packages - - # To add custom fonts to your application, add a fonts section here, - # in this "flutter" section. Each entry in this list should have a - # "family" key with the font family name, and a "fonts" key with a - # list giving the asset and other descriptors for the font. For - # example: - # fonts: - # - family: Schyler - # fonts: - # - asset: fonts/Schyler-Regular.ttf - # - asset: fonts/Schyler-Italic.ttf - # style: italic - # - family: Trajan Pro - # fonts: - # - asset: fonts/TrajanPro.ttf - # - asset: fonts/TrajanPro_Bold.ttf - # weight: 700 - # - # For details regarding fonts from package dependencies, - # see https://flutter.dev/custom-fonts/#from-packages +flutter_gen: + output: lib/core/gen/assets + line_length: 120 \ No newline at end of file diff --git a/test/widget_test.dart b/test/widget_test.dart index ca7fe3a..ca54ab2 100644 --- a/test/widget_test.dart +++ b/test/widget_test.dart @@ -5,10 +5,14 @@ // gestures. You can also use WidgetTester to find child widgets in the widget // tree, read text, and verify that the values of widget properties are correct. +// Flutter imports: import 'package:flutter/material.dart'; + +// Package imports: import 'package:flutter_test/flutter_test.dart'; -import 'package:project_gauri/main.dart'; +// Project imports: +import 'package:project_tribe/main.dart'; void main() { testWidgets('Counter increments smoke test', (WidgetTester tester) async {