├── ios ├── Flutter │ ├── Debug.xcconfig │ ├── Release.xcconfig │ └── AppFrameworkInfo.plist ├── Runner │ ├── Runner-Bridging-Header.h │ ├── Assets.xcassets │ │ ├── LaunchImage.imageset │ │ │ ├── LaunchImage.png │ │ │ ├── LaunchImage@2x.png │ │ │ ├── LaunchImage@3x.png │ │ │ ├── README.md │ │ │ └── Contents.json │ │ └── AppIcon.appiconset │ │ │ ├── Icon-App-20x20@1x.png │ │ │ ├── Icon-App-20x20@2x.png │ │ │ ├── Icon-App-20x20@3x.png │ │ │ ├── Icon-App-29x29@1x.png │ │ │ ├── Icon-App-29x29@2x.png │ │ │ ├── Icon-App-29x29@3x.png │ │ │ ├── Icon-App-40x40@1x.png │ │ │ ├── Icon-App-40x40@2x.png │ │ │ ├── Icon-App-40x40@3x.png │ │ │ ├── Icon-App-60x60@2x.png │ │ │ ├── Icon-App-60x60@3x.png │ │ │ ├── Icon-App-76x76@1x.png │ │ │ ├── Icon-App-76x76@2x.png │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ ├── Icon-App-83.5x83.5@2x.png │ │ │ └── Contents.json │ ├── AppDelegate.swift │ ├── Base.lproj │ │ ├── Main.storyboard │ │ └── LaunchScreen.storyboard │ └── Info.plist ├── Runner.xcodeproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── WorkspaceSettings.xcsettings │ │ │ └── IDEWorkspaceChecks.plist │ ├── xcshareddata │ │ └── xcschemes │ │ │ └── Runner.xcscheme │ └── project.pbxproj ├── Runner.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── WorkspaceSettings.xcsettings │ │ └── IDEWorkspaceChecks.plist └── .gitignore ├── assets ├── aa.jpg ├── bb.jpg ├── bfl.png ├── cts.png ├── end.png ├── bfl2.png ├── cardbg.png ├── circle.png ├── game1.png ├── game2.png ├── game3.png ├── game4.png ├── game5.png ├── game6.png ├── images.jpg ├── logo.png ├── smile.png ├── square.png ├── vote.png ├── calllogo.png ├── introman.png ├── ppsmall.png ├── triangle.png ├── appbarlogo.png ├── playerlist.png ├── takenphoto.png ├── loading.json └── loading2.json ├── web ├── favicon.png ├── icons │ ├── Icon-192.png │ └── Icon-512.png ├── manifest.json └── index.html ├── android ├── gradle.properties ├── app │ ├── src │ │ ├── main │ │ │ ├── res │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ ├── drawable │ │ │ │ │ └── launch_background.xml │ │ │ │ ├── drawable-v21 │ │ │ │ │ └── launch_background.xml │ │ │ │ ├── values │ │ │ │ │ └── styles.xml │ │ │ │ └── values-night │ │ │ │ │ └── styles.xml │ │ │ ├── kotlin │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── flutter_squid_game │ │ │ │ │ └── MainActivity.kt │ │ │ └── AndroidManifest.xml │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ └── profile │ │ │ └── AndroidManifest.xml │ └── build.gradle ├── gradle │ └── wrapper │ │ └── gradle-wrapper.properties ├── .gitignore ├── settings.gradle └── build.gradle ├── lib ├── controllers │ └── StateController.dart ├── constants │ └── style.dart ├── main.dart └── screens │ ├── LoadingScreen.dart │ ├── NavbarScreen.dart │ ├── CameraScreen.dart │ ├── PlayerListScreen.dart │ ├── VoteScreen.dart │ ├── CardScreen.dart │ ├── AgreementScreen.dart │ ├── GameListScreen.dart │ └── PhoneCallScreen.dart ├── .metadata ├── .gitignore ├── LICENSE ├── test └── widget_test.dart ├── README.md ├── pubspec.yaml └── pubspec.lock /ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /assets/aa.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coskuncay/squid-game-flutter/HEAD/assets/aa.jpg -------------------------------------------------------------------------------- /assets/bb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coskuncay/squid-game-flutter/HEAD/assets/bb.jpg -------------------------------------------------------------------------------- /assets/bfl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coskuncay/squid-game-flutter/HEAD/assets/bfl.png -------------------------------------------------------------------------------- /assets/cts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coskuncay/squid-game-flutter/HEAD/assets/cts.png -------------------------------------------------------------------------------- /assets/end.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coskuncay/squid-game-flutter/HEAD/assets/end.png -------------------------------------------------------------------------------- /assets/bfl2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coskuncay/squid-game-flutter/HEAD/assets/bfl2.png -------------------------------------------------------------------------------- /assets/cardbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coskuncay/squid-game-flutter/HEAD/assets/cardbg.png -------------------------------------------------------------------------------- /assets/circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coskuncay/squid-game-flutter/HEAD/assets/circle.png -------------------------------------------------------------------------------- /assets/game1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coskuncay/squid-game-flutter/HEAD/assets/game1.png -------------------------------------------------------------------------------- /assets/game2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coskuncay/squid-game-flutter/HEAD/assets/game2.png -------------------------------------------------------------------------------- /assets/game3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coskuncay/squid-game-flutter/HEAD/assets/game3.png -------------------------------------------------------------------------------- /assets/game4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coskuncay/squid-game-flutter/HEAD/assets/game4.png -------------------------------------------------------------------------------- /assets/game5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coskuncay/squid-game-flutter/HEAD/assets/game5.png -------------------------------------------------------------------------------- /assets/game6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coskuncay/squid-game-flutter/HEAD/assets/game6.png -------------------------------------------------------------------------------- /assets/images.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coskuncay/squid-game-flutter/HEAD/assets/images.jpg -------------------------------------------------------------------------------- /assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coskuncay/squid-game-flutter/HEAD/assets/logo.png -------------------------------------------------------------------------------- /assets/smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coskuncay/squid-game-flutter/HEAD/assets/smile.png -------------------------------------------------------------------------------- /assets/square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coskuncay/squid-game-flutter/HEAD/assets/square.png -------------------------------------------------------------------------------- /assets/vote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coskuncay/squid-game-flutter/HEAD/assets/vote.png -------------------------------------------------------------------------------- /web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coskuncay/squid-game-flutter/HEAD/web/favicon.png -------------------------------------------------------------------------------- /assets/calllogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coskuncay/squid-game-flutter/HEAD/assets/calllogo.png -------------------------------------------------------------------------------- /assets/introman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coskuncay/squid-game-flutter/HEAD/assets/introman.png -------------------------------------------------------------------------------- /assets/ppsmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coskuncay/squid-game-flutter/HEAD/assets/ppsmall.png -------------------------------------------------------------------------------- /assets/triangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coskuncay/squid-game-flutter/HEAD/assets/triangle.png -------------------------------------------------------------------------------- /assets/appbarlogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coskuncay/squid-game-flutter/HEAD/assets/appbarlogo.png -------------------------------------------------------------------------------- /assets/playerlist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coskuncay/squid-game-flutter/HEAD/assets/playerlist.png -------------------------------------------------------------------------------- /assets/takenphoto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coskuncay/squid-game-flutter/HEAD/assets/takenphoto.png -------------------------------------------------------------------------------- /web/icons/Icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coskuncay/squid-game-flutter/HEAD/web/icons/Icon-192.png -------------------------------------------------------------------------------- /web/icons/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coskuncay/squid-game-flutter/HEAD/web/icons/Icon-512.png -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | android.useAndroidX=true 3 | android.enableJetifier=true 4 | -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coskuncay/squid-game-flutter/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coskuncay/squid-game-flutter/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coskuncay/squid-game-flutter/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coskuncay/squid-game-flutter/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coskuncay/squid-game-flutter/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coskuncay/squid-game-flutter/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coskuncay/squid-game-flutter/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coskuncay/squid-game-flutter/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coskuncay/squid-game-flutter/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coskuncay/squid-game-flutter/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coskuncay/squid-game-flutter/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coskuncay/squid-game-flutter/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coskuncay/squid-game-flutter/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coskuncay/squid-game-flutter/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coskuncay/squid-game-flutter/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coskuncay/squid-game-flutter/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coskuncay/squid-game-flutter/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coskuncay/squid-game-flutter/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coskuncay/squid-game-flutter/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coskuncay/squid-game-flutter/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coskuncay/squid-game-flutter/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coskuncay/squid-game-flutter/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coskuncay/squid-game-flutter/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/example/flutter_squid_game/MainActivity.kt: -------------------------------------------------------------------------------- 1 | package com.example.flutter_squid_game 2 | 3 | import io.flutter.embedding.android.FlutterActivity 4 | 5 | class MainActivity: FlutterActivity() { 6 | } 7 | -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Fri Jun 23 08:50:38 CEST 2017 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-6.7-all.zip 7 | -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | PreviewsEnabled 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /lib/controllers/StateController.dart: -------------------------------------------------------------------------------- 1 | import 'package:get/get.dart'; 2 | 3 | class StateController extends GetxController { 4 | static StateController get to => Get.find(); 5 | var gameState = 0.obs; 6 | var userNumber = 0.obs; 7 | RxBool takenPhoto = false.obs; 8 | RxBool agreeRules = false.obs; 9 | } 10 | -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- 1 | gradle-wrapper.jar 2 | /.gradle 3 | /captures/ 4 | /gradlew 5 | /gradlew.bat 6 | /local.properties 7 | GeneratedPluginRegistrant.java 8 | 9 | # Remember to never publicly share your keystore. 10 | # See https://flutter.dev/docs/deployment/android#reference-the-keystore-from-the-app 11 | key.properties 12 | -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | PreviewsEnabled 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- 1 | # This file tracks properties of this Flutter project. 2 | # Used by Flutter tool to assess capabilities and perform upgrades etc. 3 | # 4 | # This file should be version controlled and should not be manually edited. 5 | 6 | version: 7 | revision: 4d7946a68d26794349189cf21b3f68cc6fe61dcb 8 | channel: stable 9 | 10 | project_type: app 11 | -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- 1 | # Launch Screen Assets 2 | 3 | You can customize the launch screen with your own desired assets by replacing the image files in this directory. 4 | 5 | You can also do it by opening your Flutter project's Xcode project with `open ios/Runner.xcworkspace`, selecting `Runner/Assets.xcassets` in the Project Navigator and dropping in the desired images. -------------------------------------------------------------------------------- /lib/constants/style.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | 3 | var kPurple = Color(0xfffd287e); 4 | var kBackground = Color(0xff101324); 5 | var kDarkBlue = Color(0xff0d5063); 6 | var kLightBlue = Color(0xff1A2037); 7 | var kOrange = Color(0xffe5ba62); 8 | var kWhite = Color(0xffffffff); 9 | var kCardColor = Color(0xFFA79164); 10 | 11 | var fontNunitoRegular = "NunitoRegular"; 12 | var fontNunitoSemiBold = "NunitoSemiBold"; 13 | var fontNunitoBold = "NunitoBold"; 14 | -------------------------------------------------------------------------------- /ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- 1 | import UIKit 2 | import Flutter 3 | 4 | @UIApplicationMain 5 | @objc class AppDelegate: FlutterAppDelegate { 6 | override func application( 7 | _ application: UIApplication, 8 | didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]? 9 | ) -> Bool { 10 | GeneratedPluginRegistrant.register(with: self) 11 | return super.application(application, didFinishLaunchingWithOptions: launchOptions) 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | 3 | def localPropertiesFile = new File(rootProject.projectDir, "local.properties") 4 | def properties = new Properties() 5 | 6 | assert localPropertiesFile.exists() 7 | localPropertiesFile.withReader("UTF-8") { reader -> properties.load(reader) } 8 | 9 | def flutterSdkPath = properties.getProperty("flutter.sdk") 10 | assert flutterSdkPath != null, "flutter.sdk not set in local.properties" 11 | apply from: "$flutterSdkPath/packages/flutter_tools/gradle/app_plugin_loader.gradle" 12 | -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 12 | 13 | -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-v21/launch_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 12 | 13 | -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "LaunchImage.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "LaunchImage@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "LaunchImage@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /ios/.gitignore: -------------------------------------------------------------------------------- 1 | *.mode1v3 2 | *.mode2v3 3 | *.moved-aside 4 | *.pbxuser 5 | *.perspectivev3 6 | **/*sync/ 7 | .sconsign.dblite 8 | .tags* 9 | **/.vagrant/ 10 | **/DerivedData/ 11 | Icon? 12 | **/Pods/ 13 | **/.symlinks/ 14 | profile 15 | xcuserdata 16 | **/.generated/ 17 | Flutter/App.framework 18 | Flutter/Flutter.framework 19 | Flutter/Flutter.podspec 20 | Flutter/Generated.xcconfig 21 | Flutter/app.flx 22 | Flutter/app.zip 23 | Flutter/flutter_assets/ 24 | Flutter/flutter_export_environment.sh 25 | ServiceDefinitions.json 26 | Runner/GeneratedPluginRegistrant.* 27 | 28 | # Exceptions to above rules. 29 | !default.mode1v3 30 | !default.mode2v3 31 | !default.pbxuser 32 | !default.perspectivev3 33 | -------------------------------------------------------------------------------- /web/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "flutter_squid_game", 3 | "short_name": "flutter_squid_game", 4 | "start_url": ".", 5 | "display": "standalone", 6 | "background_color": "#0175C2", 7 | "theme_color": "#0175C2", 8 | "description": "A new Flutter project.", 9 | "orientation": "portrait-primary", 10 | "prefer_related_applications": false, 11 | "icons": [ 12 | { 13 | "src": "icons/Icon-192.png", 14 | "sizes": "192x192", 15 | "type": "image/png" 16 | }, 17 | { 18 | "src": "icons/Icon-512.png", 19 | "sizes": "512x512", 20 | "type": "image/png" 21 | } 22 | ] 23 | } 24 | -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- 1 | buildscript { 2 | ext.kotlin_version = '1.3.50' 3 | repositories { 4 | google() 5 | jcenter() 6 | } 7 | 8 | dependencies { 9 | classpath 'com.android.tools.build:gradle:4.1.0' 10 | classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" 11 | } 12 | } 13 | 14 | allprojects { 15 | repositories { 16 | google() 17 | jcenter() 18 | } 19 | } 20 | 21 | rootProject.buildDir = '../build' 22 | subprojects { 23 | project.buildDir = "${rootProject.buildDir}/${project.name}" 24 | } 25 | subprojects { 26 | project.evaluationDependsOn(':app') 27 | } 28 | 29 | task clean(type: Delete) { 30 | delete rootProject.buildDir 31 | } 32 | -------------------------------------------------------------------------------- /ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | App 9 | CFBundleIdentifier 10 | io.flutter.flutter.app 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | App 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1.0 23 | MinimumOSVersion 24 | 8.0 25 | 26 | 27 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Miscellaneous 2 | *.class 3 | *.log 4 | *.pyc 5 | *.swp 6 | .DS_Store 7 | .atom/ 8 | .buildlog/ 9 | .history 10 | .svn/ 11 | 12 | # IntelliJ related 13 | *.iml 14 | *.ipr 15 | *.iws 16 | .idea/ 17 | 18 | # The .vscode folder contains launch configuration and tasks you configure in 19 | # VS Code which you may wish to be included in version control, so this line 20 | # is commented out by default. 21 | #.vscode/ 22 | 23 | # Flutter/Dart/Pub related 24 | **/doc/api/ 25 | **/ios/Flutter/.last_build_id 26 | .dart_tool/ 27 | .flutter-plugins 28 | .flutter-plugins-dependencies 29 | .packages 30 | .pub-cache/ 31 | .pub/ 32 | /build/ 33 | 34 | # Web related 35 | lib/generated_plugin_registrant.dart 36 | 37 | # Symbolication related 38 | app.*.symbols 39 | 40 | # Obfuscation related 41 | app.*.map.json 42 | 43 | # Android Studio will place build artifacts here 44 | /android/app/debug 45 | /android/app/profile 46 | /android/app/release 47 | -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | 15 | 18 | 19 | -------------------------------------------------------------------------------- /android/app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | 15 | 18 | 19 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2021 Emre Coşkunçay 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /test/widget_test.dart: -------------------------------------------------------------------------------- 1 | // This is a basic Flutter widget test. 2 | // 3 | // To perform an interaction with a widget in your test, use the WidgetTester 4 | // utility that Flutter provides. For example, you can send tap and scroll 5 | // gestures. You can also use WidgetTester to find child widgets in the widget 6 | // tree, read text, and verify that the values of widget properties are correct. 7 | 8 | import 'package:flutter/material.dart'; 9 | import 'package:flutter_test/flutter_test.dart'; 10 | 11 | import 'package:flutter_squid_game/main.dart'; 12 | 13 | void main() { 14 | testWidgets('Counter increments smoke test', (WidgetTester tester) async { 15 | // Build our app and trigger a frame. 16 | await tester.pumpWidget(MyApp()); 17 | 18 | // Verify that our counter starts at 0. 19 | expect(find.text('0'), findsOneWidget); 20 | expect(find.text('1'), findsNothing); 21 | 22 | // Tap the '+' icon and trigger a frame. 23 | await tester.tap(find.byIcon(Icons.add)); 24 | await tester.pump(); 25 | 26 | // Verify that our counter has incremented. 27 | expect(find.text('0'), findsNothing); 28 | expect(find.text('1'), findsOneWidget); 29 | }); 30 | } 31 | -------------------------------------------------------------------------------- /lib/main.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | import 'package:flutter_squid_game/constants/style.dart'; 3 | import 'package:flutter_squid_game/screens/CardScreen.dart'; 4 | import 'package:flutter_squid_game/controllers/StateController.dart'; 5 | import 'package:flutter_squid_game/screens/LoadingScreen.dart'; 6 | import 'package:flutter_squid_game/screens/PhoneCallScreen.dart'; 7 | import 'package:google_fonts/google_fonts.dart'; 8 | import 'package:get/get.dart'; 9 | 10 | void main() { 11 | WidgetsFlutterBinding.ensureInitialized(); 12 | Get.put(StateController()); 13 | runApp(MyApp()); 14 | } 15 | 16 | class MyApp extends StatelessWidget { 17 | @override 18 | Widget build(BuildContext context) { 19 | return GestureDetector( 20 | onTap: () => FocusManager.instance.primaryFocus?.unfocus(), 21 | child: GetMaterialApp( 22 | title: 'Squid Game - Flutter', 23 | debugShowCheckedModeBanner: false, 24 | theme: ThemeData( 25 | canvasColor: kLightBlue, 26 | textTheme: GoogleFonts.orbitronTextTheme( 27 | Theme.of(context).textTheme, 28 | ), 29 | ), 30 | home: LoadingScreen(), 31 | ), 32 | ); 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /web/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | flutter_squid_game 30 | 31 | 32 | 33 | 36 | 43 | 44 | 45 | 46 | -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /ios/Runner/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | $(DEVELOPMENT_LANGUAGE) 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | flutter_squid_game 15 | CFBundlePackageType 16 | APPL 17 | CFBundleShortVersionString 18 | $(FLUTTER_BUILD_NAME) 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | $(FLUTTER_BUILD_NUMBER) 23 | LSRequiresIPhoneOS 24 | 25 | UILaunchStoryboardName 26 | LaunchScreen 27 | UIMainStoryboardFile 28 | Main 29 | UISupportedInterfaceOrientations 30 | 31 | UIInterfaceOrientationPortrait 32 | UIInterfaceOrientationLandscapeLeft 33 | UIInterfaceOrientationLandscapeRight 34 | 35 | UISupportedInterfaceOrientations~ipad 36 | 37 | UIInterfaceOrientationPortrait 38 | UIInterfaceOrientationPortraitUpsideDown 39 | UIInterfaceOrientationLandscapeLeft 40 | UIInterfaceOrientationLandscapeRight 41 | 42 | UIViewControllerBasedStatusBarAppearance 43 | 44 | 45 | 46 | -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- 1 | def localProperties = new Properties() 2 | def localPropertiesFile = rootProject.file('local.properties') 3 | if (localPropertiesFile.exists()) { 4 | localPropertiesFile.withReader('UTF-8') { reader -> 5 | localProperties.load(reader) 6 | } 7 | } 8 | 9 | def flutterRoot = localProperties.getProperty('flutter.sdk') 10 | if (flutterRoot == null) { 11 | throw new GradleException("Flutter SDK not found. Define location with flutter.sdk in the local.properties file.") 12 | } 13 | 14 | def flutterVersionCode = localProperties.getProperty('flutter.versionCode') 15 | if (flutterVersionCode == null) { 16 | flutterVersionCode = '1' 17 | } 18 | 19 | def flutterVersionName = localProperties.getProperty('flutter.versionName') 20 | if (flutterVersionName == null) { 21 | flutterVersionName = '1.0' 22 | } 23 | 24 | apply plugin: 'com.android.application' 25 | apply plugin: 'kotlin-android' 26 | apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle" 27 | 28 | android { 29 | compileSdkVersion 30 30 | 31 | sourceSets { 32 | main.java.srcDirs += 'src/main/kotlin' 33 | } 34 | 35 | defaultConfig { 36 | // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html). 37 | applicationId "com.example.flutter_squid_game" 38 | minSdkVersion 16 39 | targetSdkVersion 30 40 | versionCode flutterVersionCode.toInteger() 41 | versionName flutterVersionName 42 | } 43 | 44 | buildTypes { 45 | release { 46 | // TODO: Add your own signing config for the release build. 47 | // Signing with the debug keys for now, so `flutter run --release` works. 48 | signingConfig signingConfigs.debug 49 | } 50 | } 51 | } 52 | 53 | flutter { 54 | source '../..' 55 | } 56 | 57 | dependencies { 58 | implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version" 59 | } 60 | -------------------------------------------------------------------------------- /lib/screens/LoadingScreen.dart: -------------------------------------------------------------------------------- 1 | import 'dart:async'; 2 | 3 | import 'package:flutter/material.dart'; 4 | import 'package:flutter_squid_game/constants/style.dart'; 5 | import 'package:flutter_squid_game/screens/CardScreen.dart'; 6 | import 'package:get/get.dart'; 7 | import 'package:lottie/lottie.dart'; 8 | 9 | class LoadingScreen extends StatelessWidget { 10 | const LoadingScreen({Key? key}) : super(key: key); 11 | 12 | @override 13 | Widget build(BuildContext context) { 14 | Timer(Duration(seconds: 12), () => Get.off(CardScreen())); 15 | 16 | return Scaffold( 17 | backgroundColor: kBackground, 18 | body: Container( 19 | padding: EdgeInsets.all(20), 20 | child: Column( 21 | mainAxisAlignment: MainAxisAlignment.center, 22 | children: [ 23 | Lottie.asset('assets/loading.json'), 24 | SizedBox( 25 | height: 40, 26 | ), 27 | RichText( 28 | text: TextSpan( 29 | text: "Squid Game Flutter UI Concept by ", 30 | style: TextStyle( 31 | fontSize: 13, 32 | ), 33 | children: [ 34 | TextSpan( 35 | text: "Emre Coşkunçay", 36 | style: TextStyle( 37 | fontStyle: FontStyle.italic, 38 | fontWeight: FontWeight.bold, 39 | fontSize: 15, 40 | ), 41 | ), 42 | ], 43 | ), 44 | ), 45 | // SizedBox( 46 | // height: 30, 47 | // ), 48 | // Text( 49 | // "Drew Solorio", 50 | // style: TextStyle( 51 | // color: Colors.white, 52 | // fontSize: 11, 53 | // fontStyle: FontStyle.italic, 54 | // ), 55 | // ) 56 | ], 57 | ), 58 | ), 59 | ); 60 | } 61 | } 62 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Squid Game Flutter UI Design 2 | 3 | 4 | 5 | inspired by [Murat Çelik](https://www.linkedin.com/feed/update/urn:li:activity:6857971406924197888/) 6 | 7 | loading Animations by [Drew Solorio](https://lottiefiles.com/mpjwui0ypi) 8 | 9 | # Screenshots 10 | 11 |

12 | 13 | 14 | 15 |

16 | 17 |

18 | 19 | 20 | 21 |

22 | 23 |

24 | 25 | 26 | 27 |

28 | 29 | 30 |

31 | 32 | 33 | 34 |

35 | 36 | 37 | -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 6 | 13 | 17 | 21 | 26 | 30 | 31 | 32 | 33 | 34 | 35 | 37 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "size" : "20x20", 5 | "idiom" : "iphone", 6 | "filename" : "Icon-App-20x20@2x.png", 7 | "scale" : "2x" 8 | }, 9 | { 10 | "size" : "20x20", 11 | "idiom" : "iphone", 12 | "filename" : "Icon-App-20x20@3x.png", 13 | "scale" : "3x" 14 | }, 15 | { 16 | "size" : "29x29", 17 | "idiom" : "iphone", 18 | "filename" : "Icon-App-29x29@1x.png", 19 | "scale" : "1x" 20 | }, 21 | { 22 | "size" : "29x29", 23 | "idiom" : "iphone", 24 | "filename" : "Icon-App-29x29@2x.png", 25 | "scale" : "2x" 26 | }, 27 | { 28 | "size" : "29x29", 29 | "idiom" : "iphone", 30 | "filename" : "Icon-App-29x29@3x.png", 31 | "scale" : "3x" 32 | }, 33 | { 34 | "size" : "40x40", 35 | "idiom" : "iphone", 36 | "filename" : "Icon-App-40x40@2x.png", 37 | "scale" : "2x" 38 | }, 39 | { 40 | "size" : "40x40", 41 | "idiom" : "iphone", 42 | "filename" : "Icon-App-40x40@3x.png", 43 | "scale" : "3x" 44 | }, 45 | { 46 | "size" : "60x60", 47 | "idiom" : "iphone", 48 | "filename" : "Icon-App-60x60@2x.png", 49 | "scale" : "2x" 50 | }, 51 | { 52 | "size" : "60x60", 53 | "idiom" : "iphone", 54 | "filename" : "Icon-App-60x60@3x.png", 55 | "scale" : "3x" 56 | }, 57 | { 58 | "size" : "20x20", 59 | "idiom" : "ipad", 60 | "filename" : "Icon-App-20x20@1x.png", 61 | "scale" : "1x" 62 | }, 63 | { 64 | "size" : "20x20", 65 | "idiom" : "ipad", 66 | "filename" : "Icon-App-20x20@2x.png", 67 | "scale" : "2x" 68 | }, 69 | { 70 | "size" : "29x29", 71 | "idiom" : "ipad", 72 | "filename" : "Icon-App-29x29@1x.png", 73 | "scale" : "1x" 74 | }, 75 | { 76 | "size" : "29x29", 77 | "idiom" : "ipad", 78 | "filename" : "Icon-App-29x29@2x.png", 79 | "scale" : "2x" 80 | }, 81 | { 82 | "size" : "40x40", 83 | "idiom" : "ipad", 84 | "filename" : "Icon-App-40x40@1x.png", 85 | "scale" : "1x" 86 | }, 87 | { 88 | "size" : "40x40", 89 | "idiom" : "ipad", 90 | "filename" : "Icon-App-40x40@2x.png", 91 | "scale" : "2x" 92 | }, 93 | { 94 | "size" : "76x76", 95 | "idiom" : "ipad", 96 | "filename" : "Icon-App-76x76@1x.png", 97 | "scale" : "1x" 98 | }, 99 | { 100 | "size" : "76x76", 101 | "idiom" : "ipad", 102 | "filename" : "Icon-App-76x76@2x.png", 103 | "scale" : "2x" 104 | }, 105 | { 106 | "size" : "83.5x83.5", 107 | "idiom" : "ipad", 108 | "filename" : "Icon-App-83.5x83.5@2x.png", 109 | "scale" : "2x" 110 | }, 111 | { 112 | "size" : "1024x1024", 113 | "idiom" : "ios-marketing", 114 | "filename" : "Icon-App-1024x1024@1x.png", 115 | "scale" : "1x" 116 | } 117 | ], 118 | "info" : { 119 | "version" : 1, 120 | "author" : "xcode" 121 | } 122 | } 123 | -------------------------------------------------------------------------------- /lib/screens/NavbarScreen.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | import 'package:flutter_squid_game/screens/AgreementScreen.dart'; 3 | import 'package:flutter_squid_game/screens/CameraScreen.dart'; 4 | import 'package:flutter_squid_game/screens/GameListScreen.dart'; 5 | import 'package:flutter_squid_game/screens/PlayerListScreen.dart'; 6 | import 'package:flutter_squid_game/screens/VoteScreen.dart'; 7 | import 'package:get/get.dart'; 8 | 9 | class NavbarScreen extends StatelessWidget { 10 | @override 11 | Widget build(BuildContext context) { 12 | return Drawer( 13 | child: ListView( 14 | padding: EdgeInsets.zero, 15 | children: [ 16 | SizedBox( 17 | height: 100, 18 | ), 19 | ListTile( 20 | leading: Icon( 21 | Icons.gamepad_outlined, 22 | color: Colors.white, 23 | ), 24 | title: Text( 25 | 'Games', 26 | style: TextStyle( 27 | color: Colors.white, 28 | ), 29 | ), 30 | onTap: () => {Get.off(() => GameListScreen())}, 31 | ), 32 | Divider( 33 | thickness: 1, 34 | color: Colors.grey, 35 | ), 36 | ListTile( 37 | leading: Icon( 38 | Icons.people_alt_outlined, 39 | color: Colors.white, 40 | ), 41 | title: Text( 42 | 'Players', 43 | style: TextStyle( 44 | color: Colors.white, 45 | ), 46 | ), 47 | onTap: () => {Get.off(() => PlayerListScreen())}, 48 | ), 49 | Divider( 50 | thickness: 1, 51 | color: Colors.grey, 52 | ), 53 | ListTile( 54 | leading: Icon( 55 | Icons.account_circle_outlined, 56 | color: Colors.white, 57 | ), 58 | title: Text( 59 | 'Profile', 60 | style: TextStyle( 61 | color: Colors.white, 62 | ), 63 | ), 64 | onTap: () => {Get.off(() => CameraScreen())}, 65 | ), 66 | Divider( 67 | thickness: 1, 68 | color: Colors.grey, 69 | ), 70 | ListTile( 71 | leading: Icon( 72 | Icons.how_to_vote_outlined, 73 | color: Colors.white, 74 | ), 75 | title: Text( 76 | 'Vote', 77 | style: TextStyle( 78 | color: Colors.white, 79 | ), 80 | ), 81 | onTap: () => {Get.off(() => VoteScreen())}, 82 | ), 83 | Divider( 84 | thickness: 1, 85 | color: Colors.grey, 86 | ), 87 | ListTile( 88 | leading: Icon( 89 | Icons.description_outlined, 90 | color: Colors.white, 91 | ), 92 | title: Text( 93 | 'Agreement', 94 | style: TextStyle( 95 | color: Colors.white, 96 | ), 97 | ), 98 | onTap: () => {Get.off(() => AgreementScreen())}, 99 | ) 100 | ], 101 | ), 102 | ); 103 | } 104 | } 105 | -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- 1 | name: flutter_squid_game 2 | description: A new Flutter project. 3 | 4 | # The following line prevents the package from being accidentally published to 5 | # pub.dev using `pub publish`. This is preferred for private packages. 6 | publish_to: 'none' # Remove this line if you wish to publish to pub.dev 7 | 8 | # The following defines the version and build number for your application. 9 | # A version number is three numbers separated by dots, like 1.2.43 10 | # followed by an optional build number separated by a +. 11 | # Both the version and the builder number may be overridden in flutter 12 | # build by specifying --build-name and --build-number, respectively. 13 | # In Android, build-name is used as versionName while build-number used as versionCode. 14 | # Read more about Android versioning at https://developer.android.com/studio/publish/versioning 15 | # In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion. 16 | # Read more about iOS versioning at 17 | # https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html 18 | version: 1.0.0+1 19 | 20 | environment: 21 | sdk: ">=2.12.0 <3.0.0" 22 | 23 | dependencies: 24 | flutter: 25 | sdk: flutter 26 | 27 | flip_card: ^0.6.0 28 | lottie: ^1.2.1 29 | google_fonts: ^2.1.0 30 | get: 4.1.4 31 | flutter_datetime_picker: 32 | git: 33 | url: https://github.com/AlexHartford/flutter_datetime_picker.git 34 | ref: master 35 | shared_preferences: ^2.0.6 36 | # The following adds the Cupertino Icons font to your application. 37 | # Use with the CupertinoIcons class for iOS style icons. 38 | cupertino_icons: ^1.0.2 39 | 40 | dev_dependencies: 41 | flutter_test: 42 | sdk: flutter 43 | 44 | # For information on the generic Dart part of this file, see the 45 | # following page: https://dart.dev/tools/pub/pubspec 46 | 47 | # The following section is specific to Flutter. 48 | flutter: 49 | 50 | # The following line ensures that the Material Icons font is 51 | # included with your application, so that you can use the icons in 52 | # the material Icons class. 53 | uses-material-design: true 54 | 55 | # To add assets to your application, add an assets section, like this: 56 | assets: 57 | - assets/ 58 | # - images/a_dot_ham.jpeg 59 | 60 | # An image asset can refer to one or more resolution-specific "variants", see 61 | # https://flutter.dev/assets-and-images/#resolution-aware. 62 | 63 | # For details regarding adding assets from package dependencies, see 64 | # https://flutter.dev/assets-and-images/#from-packages 65 | 66 | # To add custom fonts to your application, add a fonts section here, 67 | # in this "flutter" section. Each entry in this list should have a 68 | # "family" key with the font family name, and a "fonts" key with a 69 | # list giving the asset and other descriptors for the font. For 70 | # example: 71 | # fonts: 72 | # - family: Schyler 73 | # fonts: 74 | # - asset: fonts/Schyler-Regular.ttf 75 | # - asset: fonts/Schyler-Italic.ttf 76 | # style: italic 77 | # - family: Trajan Pro 78 | # fonts: 79 | # - asset: fonts/TrajanPro.ttf 80 | # - asset: fonts/TrajanPro_Bold.ttf 81 | # weight: 700 82 | # 83 | # For details regarding fonts from package dependencies, 84 | # see https://flutter.dev/custom-fonts/#from-packages 85 | -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 24 | 25 | 30 | 31 | 32 | 33 | 39 | 40 | 41 | 42 | 43 | 44 | 54 | 56 | 62 | 63 | 64 | 65 | 66 | 67 | 73 | 75 | 81 | 82 | 83 | 84 | 86 | 87 | 90 | 91 | 92 | -------------------------------------------------------------------------------- /lib/screens/CameraScreen.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | import 'package:flutter_squid_game/constants/style.dart'; 3 | import 'package:flutter_squid_game/controllers/StateController.dart'; 4 | import 'package:flutter_squid_game/screens/GameListScreen.dart'; 5 | import 'package:flutter_squid_game/screens/NavbarScreen.dart'; 6 | import 'package:get/get.dart'; 7 | import 'package:google_fonts/google_fonts.dart'; 8 | 9 | class CameraScreen extends StatefulWidget { 10 | CameraScreen({Key? key}) : super(key: key); 11 | 12 | @override 13 | _CameraScreenState createState() => _CameraScreenState(); 14 | } 15 | 16 | class _CameraScreenState extends State { 17 | bool takenPhoto = false; 18 | 19 | @override 20 | Widget build(BuildContext context) { 21 | return Scaffold( 22 | drawer: NavbarScreen(), 23 | appBar: AppBar( 24 | backgroundColor: kBackground, 25 | automaticallyImplyLeading: true, 26 | title: Image.asset( 27 | "assets/appbarlogo.png", 28 | ), 29 | centerTitle: true, 30 | actions: [ 31 | Padding( 32 | padding: const EdgeInsets.all(5.0), 33 | child: CircleAvatar( 34 | radius: 25.0, 35 | // backgroundImage: 36 | // NetworkImage("${snapshot.data.hitsList[index].previewUrl}"), 37 | child: StateController.to.takenPhoto.value 38 | ? Image.asset( 39 | "assets/ppsmall.png", 40 | ) 41 | : Text( 42 | "${StateController.to.userNumber.value}", 43 | style: GoogleFonts.orbitron( 44 | fontWeight: FontWeight.bold, 45 | color: Colors.white, 46 | fontSize: 15, 47 | ), 48 | ), 49 | backgroundColor: kDarkBlue, 50 | ), 51 | ) 52 | ], 53 | ), 54 | backgroundColor: kBackground, 55 | body: SafeArea( 56 | child: Container( 57 | child: Column( 58 | children: [ 59 | SizedBox( 60 | height: 30, 61 | ), 62 | Center( 63 | child: Icon( 64 | Icons.camera_alt, 65 | size: 50, 66 | color: takenPhoto ? Colors.white12 : Colors.white, 67 | ), 68 | ), 69 | Image.asset( 70 | takenPhoto ? "assets/takenphoto.png" : "assets/smile.png", 71 | ), 72 | InkWell( 73 | onTap: () { 74 | setState(() { 75 | if (takenPhoto) { 76 | // 77 | StateController.to.takenPhoto.value = true; 78 | Get.off(() => GameListScreen()); 79 | } else { 80 | takenPhoto = true; 81 | } 82 | }); 83 | }, 84 | child: Container( 85 | height: 50, 86 | width: MediaQuery.of(context).size.width / 1.15, 87 | decoration: BoxDecoration( 88 | color: takenPhoto ? kPurple : kOrange, 89 | ), 90 | child: Center( 91 | child: Text( 92 | takenPhoto ? "Approve" : "Take a Photo", 93 | style: TextStyle( 94 | fontWeight: FontWeight.bold, 95 | color: Colors.white, 96 | ), 97 | ), 98 | ), 99 | ), 100 | ), 101 | ], 102 | ), 103 | ), 104 | ), 105 | ); 106 | } 107 | } 108 | -------------------------------------------------------------------------------- /lib/screens/PlayerListScreen.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | import 'package:flutter_squid_game/constants/style.dart'; 3 | import 'package:flutter_squid_game/controllers/StateController.dart'; 4 | import 'package:flutter_squid_game/screens/NavbarScreen.dart'; 5 | import 'package:google_fonts/google_fonts.dart'; 6 | 7 | class PlayerListScreen extends StatefulWidget { 8 | PlayerListScreen({Key? key}) : super(key: key); 9 | 10 | @override 11 | _PlayerListScreenState createState() => _PlayerListScreenState(); 12 | } 13 | 14 | class _PlayerListScreenState extends State { 15 | @override 16 | Widget build(BuildContext context) { 17 | return Scaffold( 18 | drawer: NavbarScreen(), 19 | appBar: AppBar( 20 | backgroundColor: kLightBlue, 21 | title: Image.asset( 22 | "assets/appbarlogo.png", 23 | ), 24 | centerTitle: true, 25 | actions: [ 26 | Padding( 27 | padding: const EdgeInsets.all(5.0), 28 | child: CircleAvatar( 29 | radius: 25.0, 30 | child: StateController.to.takenPhoto.value 31 | ? Image.asset( 32 | "assets/ppsmall.png", 33 | ) 34 | : Text( 35 | "${StateController.to.userNumber.value}", 36 | style: GoogleFonts.orbitron( 37 | fontWeight: FontWeight.bold, 38 | color: Colors.white, 39 | fontSize: 15, 40 | ), 41 | ), 42 | backgroundColor: kDarkBlue, 43 | ), 44 | ) 45 | ], 46 | ), 47 | body: SafeArea( 48 | child: Container( 49 | padding: EdgeInsets.all(20), 50 | child: Column( 51 | mainAxisAlignment: MainAxisAlignment.start, 52 | crossAxisAlignment: CrossAxisAlignment.start, 53 | children: [ 54 | Text( 55 | "Player List", 56 | style: TextStyle( 57 | color: kWhite, 58 | fontSize: 30, 59 | fontWeight: FontWeight.bold, 60 | ), 61 | ), 62 | SizedBox( 63 | height: 20, 64 | ), 65 | Image.asset( 66 | "assets/playerlist.png", 67 | ), 68 | SizedBox( 69 | height: 20, 70 | ), 71 | Padding( 72 | padding: const EdgeInsets.all(11.0), 73 | child: Row( 74 | children: [ 75 | Text( 76 | "Total Players:", 77 | style: TextStyle( 78 | color: kWhite, 79 | ), 80 | ), 81 | Text( 82 | "456", 83 | style: TextStyle( 84 | color: kPurple, 85 | ), 86 | ), 87 | ], 88 | mainAxisAlignment: MainAxisAlignment.spaceBetween, 89 | ), 90 | ), 91 | Padding( 92 | padding: const EdgeInsets.all(11.0), 93 | child: Row( 94 | children: [ 95 | Text( 96 | "Number of Players Remaining:", 97 | style: TextStyle( 98 | color: kWhite, 99 | ), 100 | ), 101 | Text( 102 | "201", 103 | style: TextStyle( 104 | color: kPurple, 105 | ), 106 | ), 107 | ], 108 | mainAxisAlignment: MainAxisAlignment.spaceBetween, 109 | ), 110 | ), 111 | Divider( 112 | color: kWhite, 113 | thickness: 2, 114 | ), 115 | Padding( 116 | padding: const EdgeInsets.all(11.0), 117 | child: Row( 118 | children: [ 119 | Text( 120 | "Total Reward", 121 | style: TextStyle( 122 | color: kWhite, 123 | fontWeight: FontWeight.bold, 124 | ), 125 | ), 126 | Text( 127 | "200.100.000.000 W", 128 | style: TextStyle( 129 | color: kPurple, 130 | fontWeight: FontWeight.bold, 131 | ), 132 | ), 133 | ], 134 | mainAxisAlignment: MainAxisAlignment.spaceBetween, 135 | ), 136 | ), 137 | ], 138 | ), 139 | ), 140 | ), 141 | ); 142 | } 143 | } 144 | -------------------------------------------------------------------------------- /lib/screens/VoteScreen.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | import 'package:flutter_squid_game/constants/style.dart'; 3 | import 'package:flutter_squid_game/controllers/StateController.dart'; 4 | import 'package:flutter_squid_game/screens/NavbarScreen.dart'; 5 | import 'package:google_fonts/google_fonts.dart'; 6 | 7 | class VoteScreen extends StatefulWidget { 8 | VoteScreen({Key? key}) : super(key: key); 9 | 10 | @override 11 | _VoteScreenState createState() => _VoteScreenState(); 12 | } 13 | 14 | class _VoteScreenState extends State { 15 | @override 16 | Widget build(BuildContext context) { 17 | return Scaffold( 18 | drawer: NavbarScreen(), 19 | appBar: AppBar( 20 | backgroundColor: kLightBlue, 21 | automaticallyImplyLeading: true, 22 | title: Image.asset( 23 | "assets/appbarlogo.png", 24 | ), 25 | centerTitle: true, 26 | actions: [ 27 | Padding( 28 | padding: const EdgeInsets.all(5.0), 29 | child: CircleAvatar( 30 | radius: 25.0, 31 | child: StateController.to.takenPhoto.value 32 | ? Image.asset( 33 | "assets/ppsmall.png", 34 | ) 35 | : Text( 36 | "${StateController.to.userNumber.value}", 37 | style: GoogleFonts.orbitron( 38 | fontWeight: FontWeight.bold, 39 | color: Colors.white, 40 | fontSize: 15, 41 | ), 42 | ), 43 | backgroundColor: kDarkBlue, 44 | ), 45 | ) 46 | ], 47 | ), 48 | backgroundColor: kBackground, 49 | body: SafeArea( 50 | child: SingleChildScrollView( 51 | child: Container( 52 | padding: EdgeInsets.all(15), 53 | child: Column( 54 | children: [ 55 | Image.asset( 56 | "assets/vote.png", 57 | ), 58 | SizedBox( 59 | height: 10, 60 | ), 61 | RichText( 62 | textAlign: TextAlign.center, 63 | text: TextSpan( 64 | style: GoogleFonts.orbitron( 65 | fontSize: 25, 66 | fontWeight: FontWeight.bold, 67 | color: kOrange, 68 | ), 69 | text: "Vote for Game \n\n", 70 | children: [ 71 | TextSpan( 72 | style: GoogleFonts.orbitron( 73 | fontSize: 15, 74 | fontWeight: FontWeight.bold, 75 | color: kWhite, 76 | ), 77 | text: 78 | "The games may be terminated upon a majority vote.", 79 | ), 80 | ], 81 | ), 82 | ), 83 | SizedBox( 84 | height: 20, 85 | ), 86 | Text( 87 | "Total 201 Players.", 88 | style: TextStyle( 89 | color: kOrange, 90 | fontSize: 25, 91 | ), 92 | ), 93 | SizedBox( 94 | height: 10, 95 | ), 96 | Icon( 97 | Icons.radio_button_off_outlined, 98 | color: Colors.green, 99 | size: 30, 100 | ), 101 | SizedBox( 102 | height: 10, 103 | ), 104 | RichText( 105 | textAlign: TextAlign.center, 106 | text: TextSpan( 107 | style: GoogleFonts.orbitron( 108 | fontSize: 18, 109 | fontWeight: FontWeight.bold, 110 | decoration: TextDecoration.underline, 111 | color: kWhite, 112 | ), 113 | text: "Keep Playing \n\n", 114 | children: [ 115 | TextSpan( 116 | style: GoogleFonts.orbitron( 117 | fontSize: 15, 118 | fontWeight: FontWeight.normal, 119 | decoration: TextDecoration.none, 120 | color: kWhite, 121 | ), 122 | text: "100 Player", 123 | ), 124 | ], 125 | ), 126 | ), 127 | SizedBox( 128 | height: 20, 129 | ), 130 | Icon( 131 | Icons.close_outlined, 132 | color: Colors.red, 133 | size: 30, 134 | ), 135 | SizedBox( 136 | height: 10, 137 | ), 138 | RichText( 139 | textAlign: TextAlign.center, 140 | text: TextSpan( 141 | style: GoogleFonts.orbitron( 142 | fontSize: 20, 143 | fontWeight: FontWeight.bold, 144 | decoration: TextDecoration.underline, 145 | color: kWhite, 146 | ), 147 | text: "Stop Game \n\n", 148 | children: [ 149 | TextSpan( 150 | style: GoogleFonts.orbitron( 151 | fontSize: 15, 152 | fontWeight: FontWeight.normal, 153 | decoration: TextDecoration.none, 154 | color: kWhite, 155 | ), 156 | text: "101 Player", 157 | ), 158 | ], 159 | ), 160 | ), 161 | ], 162 | ), 163 | ), 164 | ), 165 | ), 166 | ); 167 | } 168 | } 169 | -------------------------------------------------------------------------------- /lib/screens/CardScreen.dart: -------------------------------------------------------------------------------- 1 | import 'package:flip_card/flip_card.dart'; 2 | import 'package:flip_card/flip_card_controller.dart'; 3 | import 'package:flutter/material.dart'; 4 | import 'package:flutter_squid_game/constants/style.dart'; 5 | import 'package:flutter_squid_game/controllers/StateController.dart'; 6 | import 'package:flutter_squid_game/screens/PhoneCallScreen.dart'; 7 | import 'package:get/get.dart'; 8 | import 'package:google_fonts/google_fonts.dart'; 9 | 10 | class CardScreen extends StatefulWidget { 11 | CardScreen({Key? key}) : super(key: key); 12 | 13 | @override 14 | _CardScreenState createState() => _CardScreenState(); 15 | } 16 | 17 | class _CardScreenState extends State { 18 | late FlipCardController _controller; 19 | 20 | @override 21 | void initState() { 22 | super.initState(); 23 | _controller = FlipCardController(); 24 | } 25 | 26 | @override 27 | Widget build(BuildContext context) { 28 | return Scaffold( 29 | backgroundColor: kBackground, 30 | body: SafeArea( 31 | child: Column( 32 | children: [ 33 | Expanded(child: SizedBox()), 34 | Padding( 35 | padding: const EdgeInsets.all(28.0), 36 | child: Image.asset( 37 | "assets/logo.png", 38 | ), 39 | ), 40 | Container( 41 | margin: EdgeInsets.symmetric( 42 | vertical: 25, 43 | horizontal: 25, 44 | ), 45 | height: 170, 46 | width: double.infinity, 47 | child: FlipCard( 48 | controller: _controller, 49 | fill: Fill.fillBack, 50 | direction: FlipDirection.HORIZONTAL, 51 | front: Container( 52 | alignment: Alignment.center, 53 | child: Row( 54 | mainAxisAlignment: MainAxisAlignment.spaceEvenly, 55 | crossAxisAlignment: CrossAxisAlignment.center, 56 | children: [ 57 | Image.asset( 58 | "assets/cts.png", 59 | color: Colors.black, 60 | scale: 1.7, 61 | ), 62 | ], 63 | ), 64 | decoration: BoxDecoration( 65 | image: DecorationImage( 66 | image: AssetImage("assets/bb.jpg"), 67 | fit: BoxFit.cover, 68 | ), 69 | ), 70 | ), 71 | back: Container( 72 | alignment: Alignment.center, 73 | child: Image.asset( 74 | "assets/bfl.png", 75 | color: Colors.black87, 76 | scale: 2, 77 | ), 78 | decoration: BoxDecoration( 79 | image: DecorationImage( 80 | image: AssetImage("assets/bb.jpg"), 81 | fit: BoxFit.cover, 82 | ), 83 | ), 84 | ), 85 | ), 86 | ), 87 | Expanded(child: SizedBox()), 88 | RichText( 89 | textAlign: TextAlign.center, 90 | text: TextSpan( 91 | style: GoogleFonts.orbitron( 92 | fontSize: 15, 93 | fontWeight: FontWeight.bold, 94 | color: kOrange, 95 | ), 96 | text: "You can make big money playing games for a few days. \n", 97 | children: [ 98 | TextSpan( 99 | style: GoogleFonts.orbitron( 100 | fontSize: 15, 101 | fontWeight: FontWeight.bold, 102 | ), 103 | text: "Would you like to give it a try?", 104 | ), 105 | ], 106 | ), 107 | ), 108 | Expanded(child: SizedBox()), 109 | RichText( 110 | textAlign: TextAlign.center, 111 | text: TextSpan( 112 | style: GoogleFonts.orbitron( 113 | fontSize: 15, 114 | fontWeight: FontWeight.bold, 115 | color: kOrange, 116 | ), 117 | text: "We don't have many spots left. \n", 118 | children: [ 119 | TextSpan( 120 | style: GoogleFonts.orbitron( 121 | fontSize: 15, 122 | fontWeight: FontWeight.bold, 123 | ), 124 | text: "Give me a call.", 125 | ), 126 | ], 127 | ), 128 | ), 129 | Expanded(child: SizedBox()), 130 | InkWell( 131 | onTap: () { 132 | setState(() { 133 | StateController.to.gameState.value = 1; 134 | Get.to(() => PhoneCallScreen()); 135 | }); 136 | }, 137 | child: Container( 138 | height: 50, 139 | width: MediaQuery.of(context).size.width / 2, 140 | decoration: BoxDecoration( 141 | color: kOrange, 142 | borderRadius: BorderRadius.circular(20), 143 | ), 144 | child: Row( 145 | mainAxisAlignment: MainAxisAlignment.center, 146 | children: [ 147 | Icon( 148 | Icons.phone, 149 | color: Colors.black, 150 | size: 30, 151 | ), 152 | SizedBox( 153 | width: 20, 154 | ), 155 | Text( 156 | "8650 4006", 157 | style: TextStyle( 158 | fontWeight: FontWeight.bold, 159 | ), 160 | ), 161 | ], 162 | ), 163 | ), 164 | ), 165 | Expanded(child: SizedBox()), 166 | ], 167 | ), 168 | ), 169 | ); 170 | } 171 | } 172 | -------------------------------------------------------------------------------- /lib/screens/AgreementScreen.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | import 'package:flutter_squid_game/constants/style.dart'; 3 | import 'package:flutter_squid_game/controllers/StateController.dart'; 4 | import 'package:flutter_squid_game/screens/CameraScreen.dart'; 5 | import 'package:flutter_squid_game/screens/NavbarScreen.dart'; 6 | import 'package:get/get.dart'; 7 | import 'package:google_fonts/google_fonts.dart'; 8 | import 'package:shared_preferences/shared_preferences.dart'; 9 | 10 | class AgreementScreen extends StatefulWidget { 11 | AgreementScreen({Key? key}) : super(key: key); 12 | 13 | @override 14 | _AgreementScreenState createState() => _AgreementScreenState(); 15 | } 16 | 17 | class _AgreementScreenState extends State { 18 | Future _prefs = SharedPreferences.getInstance(); 19 | late Future _number; 20 | 21 | @override 22 | void initState() { 23 | super.initState(); 24 | _number = _prefs.then((SharedPreferences prefs) { 25 | return (prefs.getInt('userNumber') ?? 0); 26 | }); 27 | } 28 | 29 | @override 30 | Widget build(BuildContext context) { 31 | return Scaffold( 32 | drawer: NavbarScreen(), 33 | appBar: StateController.to.agreeRules.value 34 | ? AppBar( 35 | backgroundColor: kBackground, 36 | automaticallyImplyLeading: true, 37 | title: Image.asset( 38 | "assets/appbarlogo.png", 39 | ), 40 | centerTitle: true, 41 | actions: [ 42 | Padding( 43 | padding: const EdgeInsets.all(5.0), 44 | child: CircleAvatar( 45 | radius: 25.0, 46 | child: StateController.to.takenPhoto.value 47 | ? Image.asset( 48 | "assets/ppsmall.png", 49 | ) 50 | : Text( 51 | "${StateController.to.userNumber.value}", 52 | style: GoogleFonts.orbitron( 53 | fontWeight: FontWeight.bold, 54 | color: Colors.white, 55 | fontSize: 15, 56 | ), 57 | ), 58 | backgroundColor: kDarkBlue, 59 | ), 60 | ) 61 | ], 62 | ) 63 | : null, 64 | backgroundColor: kBackground, 65 | body: SafeArea( 66 | child: Container( 67 | padding: EdgeInsets.all(30), 68 | child: Column( 69 | children: [ 70 | Center( 71 | child: RichText( 72 | text: TextSpan( 73 | style: GoogleFonts.orbitron( 74 | fontSize: 25, 75 | fontWeight: FontWeight.bold, 76 | color: kOrange, 77 | ), 78 | children: [ 79 | TextSpan( 80 | text: "Player ${StateController.to.userNumber.value}", 81 | ), 82 | ], 83 | ), 84 | ), 85 | ), 86 | SizedBox( 87 | height: 30, 88 | ), 89 | Container( 90 | margin: const EdgeInsets.all(10.0), 91 | padding: const EdgeInsets.all(10.0), 92 | decoration: BoxDecoration( 93 | border: Border.all( 94 | color: Colors.white, 95 | ), 96 | ), 97 | child: Column( 98 | children: [ 99 | SizedBox( 100 | height: 20, 101 | ), 102 | RichText( 103 | textAlign: TextAlign.start, 104 | text: TextSpan( 105 | style: GoogleFonts.orbitron( 106 | fontSize: 17, 107 | fontWeight: FontWeight.bold, 108 | color: kOrange, 109 | ), 110 | text: "Clause 1: \n", 111 | children: [ 112 | TextSpan( 113 | text: 114 | "A player is not allowed to voluntarily quit the games.\n", 115 | ), 116 | ], 117 | ), 118 | ), 119 | SizedBox( 120 | height: 10, 121 | ), 122 | RichText( 123 | textAlign: TextAlign.start, 124 | text: TextSpan( 125 | style: GoogleFonts.orbitron( 126 | fontSize: 17, 127 | fontWeight: FontWeight.bold, 128 | color: kOrange, 129 | ), 130 | text: "Clause 2: \n", 131 | children: [ 132 | TextSpan( 133 | text: 134 | "A player who refuses to play will be eliminated.\n", 135 | ), 136 | ], 137 | ), 138 | ), 139 | SizedBox( 140 | height: 10, 141 | ), 142 | RichText( 143 | textAlign: TextAlign.start, 144 | text: TextSpan( 145 | style: GoogleFonts.orbitron( 146 | fontSize: 17, 147 | fontWeight: FontWeight.bold, 148 | color: kOrange, 149 | ), 150 | text: "Clause 3: \n", 151 | children: [ 152 | TextSpan( 153 | text: 154 | "The games may be terminated upon a majority vote.\n", 155 | ), 156 | ], 157 | ), 158 | ), 159 | SizedBox( 160 | height: 20, 161 | ), 162 | ], 163 | ), 164 | ), 165 | Expanded( 166 | child: SizedBox(), 167 | ), 168 | Visibility( 169 | visible: !StateController.to.agreeRules.value, 170 | child: InkWell( 171 | onTap: () { 172 | setState(() { 173 | StateController.to.gameState.value = 3; 174 | StateController.to.agreeRules.value = true; 175 | Get.off(() => CameraScreen()); 176 | }); 177 | }, 178 | child: Container( 179 | height: 50, 180 | width: MediaQuery.of(context).size.width, 181 | decoration: BoxDecoration( 182 | color: kPurple, 183 | borderRadius: BorderRadius.circular(20), 184 | ), 185 | child: Center( 186 | child: Text( 187 | "I Agree", 188 | style: TextStyle( 189 | fontWeight: FontWeight.bold, 190 | color: Colors.white, 191 | ), 192 | ), 193 | ), 194 | ), 195 | ), 196 | ), 197 | ], 198 | ), 199 | ), 200 | ), 201 | ); 202 | } 203 | } 204 | -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- 1 | # Generated by pub 2 | # See https://dart.dev/tools/pub/glossary#lockfile 3 | packages: 4 | archive: 5 | dependency: transitive 6 | description: 7 | name: archive 8 | url: "https://pub.dartlang.org" 9 | source: hosted 10 | version: "3.1.6" 11 | async: 12 | dependency: transitive 13 | description: 14 | name: async 15 | url: "https://pub.dartlang.org" 16 | source: hosted 17 | version: "2.5.0" 18 | boolean_selector: 19 | dependency: transitive 20 | description: 21 | name: boolean_selector 22 | url: "https://pub.dartlang.org" 23 | source: hosted 24 | version: "2.1.0" 25 | characters: 26 | dependency: transitive 27 | description: 28 | name: characters 29 | url: "https://pub.dartlang.org" 30 | source: hosted 31 | version: "1.1.0" 32 | charcode: 33 | dependency: transitive 34 | description: 35 | name: charcode 36 | url: "https://pub.dartlang.org" 37 | source: hosted 38 | version: "1.2.0" 39 | clock: 40 | dependency: transitive 41 | description: 42 | name: clock 43 | url: "https://pub.dartlang.org" 44 | source: hosted 45 | version: "1.1.0" 46 | collection: 47 | dependency: transitive 48 | description: 49 | name: collection 50 | url: "https://pub.dartlang.org" 51 | source: hosted 52 | version: "1.15.0" 53 | crypto: 54 | dependency: transitive 55 | description: 56 | name: crypto 57 | url: "https://pub.dartlang.org" 58 | source: hosted 59 | version: "3.0.1" 60 | cupertino_icons: 61 | dependency: "direct main" 62 | description: 63 | name: cupertino_icons 64 | url: "https://pub.dartlang.org" 65 | source: hosted 66 | version: "1.0.3" 67 | fake_async: 68 | dependency: transitive 69 | description: 70 | name: fake_async 71 | url: "https://pub.dartlang.org" 72 | source: hosted 73 | version: "1.2.0" 74 | ffi: 75 | dependency: transitive 76 | description: 77 | name: ffi 78 | url: "https://pub.dartlang.org" 79 | source: hosted 80 | version: "1.1.2" 81 | file: 82 | dependency: transitive 83 | description: 84 | name: file 85 | url: "https://pub.dartlang.org" 86 | source: hosted 87 | version: "6.1.2" 88 | flip_card: 89 | dependency: "direct main" 90 | description: 91 | name: flip_card 92 | url: "https://pub.dartlang.org" 93 | source: hosted 94 | version: "0.6.0" 95 | flutter: 96 | dependency: "direct main" 97 | description: flutter 98 | source: sdk 99 | version: "0.0.0" 100 | flutter_datetime_picker: 101 | dependency: "direct main" 102 | description: 103 | path: "." 104 | ref: master 105 | resolved-ref: "654aca41d5840fe31e55ddd0631f6fd3f1f0f710" 106 | url: "https://github.com/AlexHartford/flutter_datetime_picker.git" 107 | source: git 108 | version: "1.4.0" 109 | flutter_test: 110 | dependency: "direct dev" 111 | description: flutter 112 | source: sdk 113 | version: "0.0.0" 114 | flutter_web_plugins: 115 | dependency: transitive 116 | description: flutter 117 | source: sdk 118 | version: "0.0.0" 119 | get: 120 | dependency: "direct main" 121 | description: 122 | name: get 123 | url: "https://pub.dartlang.org" 124 | source: hosted 125 | version: "4.1.4" 126 | google_fonts: 127 | dependency: "direct main" 128 | description: 129 | name: google_fonts 130 | url: "https://pub.dartlang.org" 131 | source: hosted 132 | version: "2.1.0" 133 | http: 134 | dependency: transitive 135 | description: 136 | name: http 137 | url: "https://pub.dartlang.org" 138 | source: hosted 139 | version: "0.13.3" 140 | http_parser: 141 | dependency: transitive 142 | description: 143 | name: http_parser 144 | url: "https://pub.dartlang.org" 145 | source: hosted 146 | version: "4.0.0" 147 | js: 148 | dependency: transitive 149 | description: 150 | name: js 151 | url: "https://pub.dartlang.org" 152 | source: hosted 153 | version: "0.6.3" 154 | lottie: 155 | dependency: "direct main" 156 | description: 157 | name: lottie 158 | url: "https://pub.dartlang.org" 159 | source: hosted 160 | version: "1.2.1" 161 | matcher: 162 | dependency: transitive 163 | description: 164 | name: matcher 165 | url: "https://pub.dartlang.org" 166 | source: hosted 167 | version: "0.12.10" 168 | meta: 169 | dependency: transitive 170 | description: 171 | name: meta 172 | url: "https://pub.dartlang.org" 173 | source: hosted 174 | version: "1.3.0" 175 | path: 176 | dependency: transitive 177 | description: 178 | name: path 179 | url: "https://pub.dartlang.org" 180 | source: hosted 181 | version: "1.8.0" 182 | path_provider: 183 | dependency: transitive 184 | description: 185 | name: path_provider 186 | url: "https://pub.dartlang.org" 187 | source: hosted 188 | version: "2.0.4" 189 | path_provider_linux: 190 | dependency: transitive 191 | description: 192 | name: path_provider_linux 193 | url: "https://pub.dartlang.org" 194 | source: hosted 195 | version: "2.1.0" 196 | path_provider_macos: 197 | dependency: transitive 198 | description: 199 | name: path_provider_macos 200 | url: "https://pub.dartlang.org" 201 | source: hosted 202 | version: "2.0.2" 203 | path_provider_platform_interface: 204 | dependency: transitive 205 | description: 206 | name: path_provider_platform_interface 207 | url: "https://pub.dartlang.org" 208 | source: hosted 209 | version: "2.0.1" 210 | path_provider_windows: 211 | dependency: transitive 212 | description: 213 | name: path_provider_windows 214 | url: "https://pub.dartlang.org" 215 | source: hosted 216 | version: "2.0.3" 217 | pedantic: 218 | dependency: transitive 219 | description: 220 | name: pedantic 221 | url: "https://pub.dartlang.org" 222 | source: hosted 223 | version: "1.11.1" 224 | platform: 225 | dependency: transitive 226 | description: 227 | name: platform 228 | url: "https://pub.dartlang.org" 229 | source: hosted 230 | version: "3.0.2" 231 | plugin_platform_interface: 232 | dependency: transitive 233 | description: 234 | name: plugin_platform_interface 235 | url: "https://pub.dartlang.org" 236 | source: hosted 237 | version: "2.0.2" 238 | process: 239 | dependency: transitive 240 | description: 241 | name: process 242 | url: "https://pub.dartlang.org" 243 | source: hosted 244 | version: "4.2.3" 245 | shared_preferences: 246 | dependency: "direct main" 247 | description: 248 | name: shared_preferences 249 | url: "https://pub.dartlang.org" 250 | source: hosted 251 | version: "2.0.7" 252 | shared_preferences_linux: 253 | dependency: transitive 254 | description: 255 | name: shared_preferences_linux 256 | url: "https://pub.dartlang.org" 257 | source: hosted 258 | version: "2.0.2" 259 | shared_preferences_macos: 260 | dependency: transitive 261 | description: 262 | name: shared_preferences_macos 263 | url: "https://pub.dartlang.org" 264 | source: hosted 265 | version: "2.0.2" 266 | shared_preferences_platform_interface: 267 | dependency: transitive 268 | description: 269 | name: shared_preferences_platform_interface 270 | url: "https://pub.dartlang.org" 271 | source: hosted 272 | version: "2.0.0" 273 | shared_preferences_web: 274 | dependency: transitive 275 | description: 276 | name: shared_preferences_web 277 | url: "https://pub.dartlang.org" 278 | source: hosted 279 | version: "2.0.2" 280 | shared_preferences_windows: 281 | dependency: transitive 282 | description: 283 | name: shared_preferences_windows 284 | url: "https://pub.dartlang.org" 285 | source: hosted 286 | version: "2.0.2" 287 | sky_engine: 288 | dependency: transitive 289 | description: flutter 290 | source: sdk 291 | version: "0.0.99" 292 | source_span: 293 | dependency: transitive 294 | description: 295 | name: source_span 296 | url: "https://pub.dartlang.org" 297 | source: hosted 298 | version: "1.8.0" 299 | stack_trace: 300 | dependency: transitive 301 | description: 302 | name: stack_trace 303 | url: "https://pub.dartlang.org" 304 | source: hosted 305 | version: "1.10.0" 306 | stream_channel: 307 | dependency: transitive 308 | description: 309 | name: stream_channel 310 | url: "https://pub.dartlang.org" 311 | source: hosted 312 | version: "2.1.0" 313 | string_scanner: 314 | dependency: transitive 315 | description: 316 | name: string_scanner 317 | url: "https://pub.dartlang.org" 318 | source: hosted 319 | version: "1.1.0" 320 | term_glyph: 321 | dependency: transitive 322 | description: 323 | name: term_glyph 324 | url: "https://pub.dartlang.org" 325 | source: hosted 326 | version: "1.2.0" 327 | test_api: 328 | dependency: transitive 329 | description: 330 | name: test_api 331 | url: "https://pub.dartlang.org" 332 | source: hosted 333 | version: "0.2.19" 334 | typed_data: 335 | dependency: transitive 336 | description: 337 | name: typed_data 338 | url: "https://pub.dartlang.org" 339 | source: hosted 340 | version: "1.3.0" 341 | vector_math: 342 | dependency: transitive 343 | description: 344 | name: vector_math 345 | url: "https://pub.dartlang.org" 346 | source: hosted 347 | version: "2.1.0" 348 | win32: 349 | dependency: transitive 350 | description: 351 | name: win32 352 | url: "https://pub.dartlang.org" 353 | source: hosted 354 | version: "2.0.5" 355 | xdg_directories: 356 | dependency: transitive 357 | description: 358 | name: xdg_directories 359 | url: "https://pub.dartlang.org" 360 | source: hosted 361 | version: "0.2.0" 362 | sdks: 363 | dart: ">=2.12.0 <3.0.0" 364 | flutter: ">=2.0.0" 365 | -------------------------------------------------------------------------------- /lib/screens/GameListScreen.dart: -------------------------------------------------------------------------------- 1 | import 'dart:ui'; 2 | 3 | import 'package:flutter/material.dart'; 4 | import 'package:flutter_squid_game/constants/style.dart'; 5 | import 'package:flutter_squid_game/controllers/StateController.dart'; 6 | import 'package:flutter_squid_game/screens/NavbarScreen.dart'; 7 | import 'package:google_fonts/google_fonts.dart'; 8 | 9 | class GameListScreen extends StatefulWidget { 10 | GameListScreen({Key? key}) : super(key: key); 11 | 12 | @override 13 | _GameListScreenState createState() => _GameListScreenState(); 14 | } 15 | 16 | class _GameListScreenState extends State { 17 | @override 18 | Widget build(BuildContext context) { 19 | return Scaffold( 20 | drawer: NavbarScreen(), 21 | appBar: AppBar( 22 | backgroundColor: kLightBlue, 23 | automaticallyImplyLeading: true, 24 | title: Image.asset( 25 | "assets/appbarlogo.png", 26 | ), 27 | centerTitle: true, 28 | actions: [ 29 | Padding( 30 | padding: const EdgeInsets.all(5.0), 31 | child: CircleAvatar( 32 | radius: 25.0, 33 | child: StateController.to.takenPhoto.value 34 | ? Image.asset( 35 | "assets/ppsmall.png", 36 | ) 37 | : Text( 38 | "${StateController.to.userNumber.value}", 39 | style: GoogleFonts.orbitron( 40 | fontWeight: FontWeight.bold, 41 | color: Colors.white, 42 | fontSize: 15, 43 | ), 44 | ), 45 | backgroundColor: kDarkBlue, 46 | ), 47 | ) 48 | ], 49 | ), 50 | backgroundColor: kBackground, 51 | body: SafeArea( 52 | child: Container( 53 | padding: EdgeInsets.all(20), 54 | child: Column( 55 | children: [ 56 | RichText( 57 | textAlign: TextAlign.start, 58 | text: TextSpan( 59 | style: GoogleFonts.orbitron( 60 | fontSize: 20, 61 | fontWeight: FontWeight.bold, 62 | color: kOrange, 63 | ), 64 | text: "Total Reward \n\n", 65 | children: [ 66 | TextSpan( 67 | style: GoogleFonts.orbitron( 68 | fontSize: 30, 69 | ), 70 | text: "200.100.000.000 W \n\n", 71 | ), 72 | TextSpan( 73 | style: GoogleFonts.orbitron( 74 | fontSize: 15, 75 | color: Colors.white, 76 | ), 77 | text: 78 | "Allocated prize money for each player, 100 million won.", 79 | ), 80 | ], 81 | ), 82 | ), 83 | SizedBox( 84 | height: 30, 85 | ), 86 | Row( 87 | children: [ 88 | Text( 89 | "GAMES", 90 | style: TextStyle( 91 | color: kWhite, 92 | fontSize: 30, 93 | fontWeight: FontWeight.bold, 94 | ), 95 | ), 96 | ], 97 | ), 98 | Divider( 99 | color: kWhite, 100 | thickness: 1, 101 | ), 102 | SizedBox( 103 | height: 10, 104 | ), 105 | Expanded( 106 | child: ListView( 107 | padding: const EdgeInsets.all(10), 108 | children: [ 109 | Column( 110 | crossAxisAlignment: CrossAxisAlignment.start, 111 | children: [ 112 | Text( 113 | "Game #1 - Red Light Green Light", 114 | style: TextStyle( 115 | color: kWhite, 116 | fontSize: 16, 117 | fontWeight: FontWeight.bold), 118 | ), 119 | SizedBox( 120 | height: 10, 121 | ), 122 | Stack( 123 | children: [ 124 | Image.asset( 125 | "assets/game1.png", 126 | ), 127 | Positioned( 128 | child: Container( 129 | width: 130, 130 | height: 20, 131 | color: kOrange, 132 | child: Center( 133 | child: Text( 134 | "Accomplished", 135 | style: TextStyle( 136 | color: Colors.black, 137 | fontWeight: FontWeight.bold, 138 | ), 139 | ), 140 | ), 141 | ), 142 | bottom: 10, 143 | right: 2, 144 | ), 145 | ], 146 | ), 147 | SizedBox( 148 | height: 10, 149 | ), 150 | ], 151 | ), 152 | Column( 153 | crossAxisAlignment: CrossAxisAlignment.start, 154 | children: [ 155 | Text( 156 | "Game #2 - Candy Mold", 157 | style: TextStyle( 158 | color: kWhite, 159 | fontSize: 16, 160 | fontWeight: FontWeight.bold, 161 | ), 162 | ), 163 | SizedBox( 164 | height: 10, 165 | ), 166 | Stack( 167 | children: [ 168 | Image.asset( 169 | "assets/game2.png", 170 | ), 171 | Positioned( 172 | child: Container( 173 | width: 130, 174 | height: 20, 175 | color: kOrange, 176 | child: Center( 177 | child: Text( 178 | "Accomplished", 179 | style: TextStyle( 180 | color: Colors.black, 181 | fontWeight: FontWeight.bold, 182 | ), 183 | ), 184 | ), 185 | ), 186 | bottom: 10, 187 | right: 2, 188 | ), 189 | ], 190 | ), 191 | SizedBox( 192 | height: 10, 193 | ), 194 | ], 195 | ), 196 | Column( 197 | crossAxisAlignment: CrossAxisAlignment.start, 198 | children: [ 199 | Text( 200 | "Game #3", 201 | style: TextStyle( 202 | color: kWhite, 203 | fontSize: 16, 204 | fontWeight: FontWeight.bold, 205 | ), 206 | ), 207 | SizedBox( 208 | height: 10, 209 | ), 210 | Image.asset( 211 | "assets/game3.png", 212 | ), 213 | SizedBox( 214 | height: 10, 215 | ), 216 | ], 217 | ), 218 | Column( 219 | crossAxisAlignment: CrossAxisAlignment.start, 220 | children: [ 221 | Text( 222 | "Game #4", 223 | style: TextStyle( 224 | color: kWhite, 225 | fontSize: 16, 226 | fontWeight: FontWeight.bold, 227 | ), 228 | ), 229 | SizedBox( 230 | height: 10, 231 | ), 232 | Image.asset( 233 | "assets/game4.png", 234 | ), 235 | SizedBox( 236 | height: 10, 237 | ), 238 | ], 239 | ), 240 | Column( 241 | crossAxisAlignment: CrossAxisAlignment.start, 242 | children: [ 243 | Text( 244 | "Game #5", 245 | style: TextStyle( 246 | color: kWhite, 247 | fontSize: 16, 248 | fontWeight: FontWeight.bold, 249 | ), 250 | ), 251 | SizedBox( 252 | height: 10, 253 | ), 254 | Image.asset( 255 | "assets/game5.png", 256 | ), 257 | SizedBox( 258 | height: 10, 259 | ), 260 | ], 261 | ), 262 | Column( 263 | crossAxisAlignment: CrossAxisAlignment.start, 264 | children: [ 265 | Text( 266 | "Game #6", 267 | style: TextStyle( 268 | color: kWhite, 269 | fontSize: 16, 270 | fontWeight: FontWeight.bold, 271 | ), 272 | ), 273 | SizedBox( 274 | height: 10, 275 | ), 276 | Image.asset( 277 | "assets/game6.png", 278 | ), 279 | SizedBox( 280 | height: 10, 281 | ), 282 | ], 283 | ), 284 | ], 285 | ), 286 | ), 287 | ], 288 | ), 289 | ), 290 | ), 291 | ); 292 | } 293 | } 294 | -------------------------------------------------------------------------------- /lib/screens/PhoneCallScreen.dart: -------------------------------------------------------------------------------- 1 | import 'dart:math'; 2 | 3 | import 'package:flutter/material.dart'; 4 | import 'package:flutter_squid_game/constants/style.dart'; 5 | import 'package:flutter_squid_game/controllers/StateController.dart'; 6 | import 'package:flutter_squid_game/screens/AgreementScreen.dart'; 7 | import 'package:flutter_squid_game/screens/CardScreen.dart'; 8 | import 'package:get/get.dart'; 9 | import 'package:google_fonts/google_fonts.dart'; 10 | import 'package:flutter_datetime_picker/flutter_datetime_picker.dart'; 11 | import 'package:shared_preferences/shared_preferences.dart'; 12 | 13 | class PhoneCallScreen extends StatefulWidget { 14 | PhoneCallScreen({Key? key}) : super(key: key); 15 | 16 | @override 17 | _PhoneCallScreenState createState() => _PhoneCallScreenState(); 18 | } 19 | 20 | class _PhoneCallScreenState extends State { 21 | ScrollController _scrollController = ScrollController(); 22 | TextEditingController _nameController = TextEditingController(); 23 | DateTime? birthDate; 24 | 25 | @override 26 | void initState() { 27 | super.initState(); 28 | } 29 | 30 | @override 31 | Widget build(BuildContext context) { 32 | return Scaffold( 33 | backgroundColor: kBackground, 34 | body: SafeArea( 35 | child: SingleChildScrollView( 36 | controller: _scrollController, 37 | child: Column( 38 | mainAxisAlignment: MainAxisAlignment.center, 39 | crossAxisAlignment: CrossAxisAlignment.center, 40 | children: [ 41 | SizedBox( 42 | height: 20, 43 | ), 44 | Column( 45 | children: [ 46 | Image.asset( 47 | "assets/calllogo.png", 48 | scale: 1, 49 | ), 50 | SizedBox( 51 | height: 20, 52 | ), 53 | RichText( 54 | textAlign: TextAlign.center, 55 | text: TextSpan( 56 | style: GoogleFonts.orbitron( 57 | fontSize: 16, 58 | fontWeight: FontWeight.bold, 59 | color: kOrange, 60 | ), 61 | text: "8650 4006 \n", 62 | children: [ 63 | TextSpan( 64 | text: "\n DIALLING", 65 | ), 66 | ], 67 | ), 68 | ), 69 | ], 70 | ), 71 | SizedBox( 72 | height: 20, 73 | ), 74 | Padding( 75 | padding: const EdgeInsets.all(8.0), 76 | child: RichText( 77 | textAlign: TextAlign.center, 78 | text: TextSpan( 79 | style: GoogleFonts.orbitron( 80 | fontSize: 16, 81 | fontWeight: FontWeight.bold, 82 | color: kOrange, 83 | ), 84 | text: "Do you wish to participate in the game? \n", 85 | children: [ 86 | TextSpan( 87 | text: 88 | "If you wish to participate,please state your name and birthdate.", 89 | ), 90 | ], 91 | ), 92 | ), 93 | ), 94 | SizedBox( 95 | height: 20, 96 | ), 97 | Padding( 98 | padding: const EdgeInsets.symmetric( 99 | horizontal: 20, 100 | ), 101 | child: Row( 102 | mainAxisAlignment: MainAxisAlignment.center, 103 | children: [ 104 | Flexible( 105 | child: TextFormField( 106 | textCapitalization: TextCapitalization.characters, 107 | textAlignVertical: TextAlignVertical.center, 108 | controller: _nameController, 109 | maxLines: 1, 110 | style: TextStyle( 111 | color: Colors.white, 112 | fontWeight: FontWeight.bold, 113 | ), 114 | onEditingComplete: () { 115 | setState(() { 116 | FocusScope.of(context).unfocus(); 117 | saveUsername(_nameController.text); 118 | }); 119 | }, 120 | decoration: const InputDecoration( 121 | border: InputBorder.none, 122 | isCollapsed: true, 123 | contentPadding: EdgeInsets.symmetric( 124 | vertical: 10.0, 125 | horizontal: 10.0, 126 | ), 127 | focusedBorder: UnderlineInputBorder( 128 | borderSide: BorderSide( 129 | color: Color(0xffe5ba62), 130 | width: 3, 131 | ), 132 | ), 133 | hintText: 'Enter your name', 134 | hintStyle: TextStyle( 135 | color: Colors.white, 136 | fontWeight: FontWeight.bold, 137 | fontSize: 15, 138 | ), 139 | ), 140 | ), 141 | ), 142 | TextButton( 143 | onPressed: () { 144 | DatePicker.showDatePicker( 145 | context, 146 | showTitleActions: true, 147 | minTime: DateTime(1980, 1, 1), 148 | maxTime: DateTime(2021, 12, 31), 149 | onConfirm: (date) { 150 | setState(() { 151 | birthDate = date; 152 | saveBirthdate(birthDate.toString()); 153 | }); 154 | }, 155 | currentTime: DateTime.now(), 156 | locale: LocaleType.en, 157 | ); 158 | }, 159 | child: Text( 160 | birthDate == null 161 | ? 'Enter your birthdate' 162 | : "${birthDate!.day} / ${birthDate!.month} / ${birthDate!.year} ", 163 | style: TextStyle( 164 | color: Colors.white, 165 | fontWeight: FontWeight.bold, 166 | fontSize: 15, 167 | ), 168 | ), 169 | ), 170 | ], 171 | ), 172 | ), 173 | SizedBox( 174 | height: 20, 175 | ), 176 | InkWell( 177 | onTap: () { 178 | // if (_nameController.text == "" || birthDate == null) { 179 | // // 180 | // } else { 181 | 182 | // } 183 | joinGame(); 184 | }, 185 | child: Container( 186 | height: 50, 187 | width: MediaQuery.of(context).size.width / 3, 188 | decoration: BoxDecoration( 189 | color: (_nameController.text == "" || birthDate == null) 190 | ? kOrange.withOpacity(.2) 191 | : kOrange, 192 | borderRadius: BorderRadius.circular(20), 193 | ), 194 | child: Center( 195 | child: Text( 196 | "Join the game", 197 | style: TextStyle( 198 | fontWeight: FontWeight.bold, 199 | color: Colors.black, 200 | ), 201 | ), 202 | ), 203 | ), 204 | ), 205 | SizedBox( 206 | height: 20, 207 | ), 208 | Row( 209 | mainAxisAlignment: MainAxisAlignment.spaceAround, 210 | children: [ 211 | InkWell( 212 | onTap: () { 213 | print("clicked"); 214 | }, 215 | child: Container( 216 | height: 50, 217 | width: MediaQuery.of(context).size.width / 5, 218 | decoration: BoxDecoration( 219 | color: kLightBlue, 220 | borderRadius: BorderRadius.circular(20), 221 | ), 222 | child: Icon( 223 | Icons.mic, 224 | color: Colors.white, 225 | size: 35, 226 | ), 227 | ), 228 | ), 229 | InkWell( 230 | onTap: () { 231 | print("clicked"); 232 | }, 233 | child: Container( 234 | height: 50, 235 | width: MediaQuery.of(context).size.width / 5, 236 | decoration: BoxDecoration( 237 | color: kLightBlue, 238 | borderRadius: BorderRadius.circular(20), 239 | ), 240 | child: Icon( 241 | Icons.videocam, 242 | color: Colors.white, 243 | size: 35, 244 | ), 245 | ), 246 | ), 247 | InkWell( 248 | onTap: () { 249 | print("clicked"); 250 | }, 251 | child: Container( 252 | height: 50, 253 | width: MediaQuery.of(context).size.width / 5, 254 | decoration: BoxDecoration( 255 | color: kLightBlue, 256 | borderRadius: BorderRadius.circular(20), 257 | ), 258 | child: Icon( 259 | Icons.volume_off, 260 | color: Colors.white, 261 | size: 35, 262 | ), 263 | ), 264 | ), 265 | ], 266 | ), 267 | SizedBox( 268 | height: 20, 269 | ), 270 | InkWell( 271 | onTap: () { 272 | setState(() { 273 | StateController.to.gameState.value = 0; 274 | Get.off(() => CardScreen()); 275 | }); 276 | }, 277 | child: Container( 278 | height: 50, 279 | width: MediaQuery.of(context).size.width / 5, 280 | decoration: BoxDecoration( 281 | color: Colors.red, 282 | borderRadius: BorderRadius.circular(20), 283 | ), 284 | child: Icon( 285 | Icons.call_end, 286 | color: Colors.white, 287 | size: 40, 288 | ), 289 | ), 290 | ), 291 | ], 292 | ), 293 | ), 294 | ), 295 | ); 296 | } 297 | 298 | void joinGame() { 299 | setState(() { 300 | StateController.to.gameState.value = 2; 301 | // saveUserNumber(); 302 | Random random = new Random(); 303 | int randomNumber = random.nextInt(456) + 1; 304 | StateController.to.userNumber.value = randomNumber; 305 | Get.to(() => AgreementScreen()); 306 | }); 307 | } 308 | } 309 | 310 | saveUsername(username) async { 311 | SharedPreferences prefs = await SharedPreferences.getInstance(); 312 | String name = (prefs.getString('username') ?? 'yok'); 313 | print(name); 314 | await prefs.setString('username', username); 315 | } 316 | 317 | saveBirthdate(bdate) async { 318 | SharedPreferences prefs = await SharedPreferences.getInstance(); 319 | String name = (prefs.getString('birthdate') ?? 'yokbd'); 320 | print(name); 321 | await prefs.setString('birthdate', bdate); 322 | } 323 | 324 | saveUserNumber() async { 325 | SharedPreferences prefs = await SharedPreferences.getInstance(); 326 | int number = (prefs.getInt('userNumber') ?? 0); 327 | Random random = new Random(); 328 | int randomNumber = random.nextInt(456) + 1; 329 | print(randomNumber); 330 | await prefs.setInt('userNumber', randomNumber); 331 | } 332 | -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 46; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */ = {isa = PBXBuildFile; fileRef = 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */; }; 11 | 3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */ = {isa = PBXBuildFile; fileRef = 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */; }; 12 | 74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 74858FAE1ED2DC5600515810 /* AppDelegate.swift */; }; 13 | 97C146FC1CF9000F007C117D /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FA1CF9000F007C117D /* Main.storyboard */; }; 14 | 97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FD1CF9000F007C117D /* Assets.xcassets */; }; 15 | 97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */; }; 16 | /* End PBXBuildFile section */ 17 | 18 | /* Begin PBXCopyFilesBuildPhase section */ 19 | 9705A1C41CF9048500538489 /* Embed Frameworks */ = { 20 | isa = PBXCopyFilesBuildPhase; 21 | buildActionMask = 2147483647; 22 | dstPath = ""; 23 | dstSubfolderSpec = 10; 24 | files = ( 25 | ); 26 | name = "Embed Frameworks"; 27 | runOnlyForDeploymentPostprocessing = 0; 28 | }; 29 | /* End PBXCopyFilesBuildPhase section */ 30 | 31 | /* Begin PBXFileReference section */ 32 | 1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GeneratedPluginRegistrant.h; sourceTree = ""; }; 33 | 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GeneratedPluginRegistrant.m; sourceTree = ""; }; 34 | 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = AppFrameworkInfo.plist; path = Flutter/AppFrameworkInfo.plist; sourceTree = ""; }; 35 | 74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Runner-Bridging-Header.h"; sourceTree = ""; }; 36 | 74858FAE1ED2DC5600515810 /* AppDelegate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; 37 | 7AFA3C8E1D35360C0083082E /* Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = Release.xcconfig; path = Flutter/Release.xcconfig; sourceTree = ""; }; 38 | 9740EEB21CF90195004384FC /* Debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Debug.xcconfig; path = Flutter/Debug.xcconfig; sourceTree = ""; }; 39 | 9740EEB31CF90195004384FC /* Generated.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Generated.xcconfig; path = Flutter/Generated.xcconfig; sourceTree = ""; }; 40 | 97C146EE1CF9000F007C117D /* Runner.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Runner.app; sourceTree = BUILT_PRODUCTS_DIR; }; 41 | 97C146FB1CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; }; 42 | 97C146FD1CF9000F007C117D /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; }; 43 | 97C147001CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = ""; }; 44 | 97C147021CF9000F007C117D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 45 | /* End PBXFileReference section */ 46 | 47 | /* Begin PBXFrameworksBuildPhase section */ 48 | 97C146EB1CF9000F007C117D /* Frameworks */ = { 49 | isa = PBXFrameworksBuildPhase; 50 | buildActionMask = 2147483647; 51 | files = ( 52 | ); 53 | runOnlyForDeploymentPostprocessing = 0; 54 | }; 55 | /* End PBXFrameworksBuildPhase section */ 56 | 57 | /* Begin PBXGroup section */ 58 | 9740EEB11CF90186004384FC /* Flutter */ = { 59 | isa = PBXGroup; 60 | children = ( 61 | 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */, 62 | 9740EEB21CF90195004384FC /* Debug.xcconfig */, 63 | 7AFA3C8E1D35360C0083082E /* Release.xcconfig */, 64 | 9740EEB31CF90195004384FC /* Generated.xcconfig */, 65 | ); 66 | name = Flutter; 67 | sourceTree = ""; 68 | }; 69 | 97C146E51CF9000F007C117D = { 70 | isa = PBXGroup; 71 | children = ( 72 | 9740EEB11CF90186004384FC /* Flutter */, 73 | 97C146F01CF9000F007C117D /* Runner */, 74 | 97C146EF1CF9000F007C117D /* Products */, 75 | ); 76 | sourceTree = ""; 77 | }; 78 | 97C146EF1CF9000F007C117D /* Products */ = { 79 | isa = PBXGroup; 80 | children = ( 81 | 97C146EE1CF9000F007C117D /* Runner.app */, 82 | ); 83 | name = Products; 84 | sourceTree = ""; 85 | }; 86 | 97C146F01CF9000F007C117D /* Runner */ = { 87 | isa = PBXGroup; 88 | children = ( 89 | 97C146FA1CF9000F007C117D /* Main.storyboard */, 90 | 97C146FD1CF9000F007C117D /* Assets.xcassets */, 91 | 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */, 92 | 97C147021CF9000F007C117D /* Info.plist */, 93 | 1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */, 94 | 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */, 95 | 74858FAE1ED2DC5600515810 /* AppDelegate.swift */, 96 | 74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */, 97 | ); 98 | path = Runner; 99 | sourceTree = ""; 100 | }; 101 | /* End PBXGroup section */ 102 | 103 | /* Begin PBXNativeTarget section */ 104 | 97C146ED1CF9000F007C117D /* Runner */ = { 105 | isa = PBXNativeTarget; 106 | buildConfigurationList = 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */; 107 | buildPhases = ( 108 | 9740EEB61CF901F6004384FC /* Run Script */, 109 | 97C146EA1CF9000F007C117D /* Sources */, 110 | 97C146EB1CF9000F007C117D /* Frameworks */, 111 | 97C146EC1CF9000F007C117D /* Resources */, 112 | 9705A1C41CF9048500538489 /* Embed Frameworks */, 113 | 3B06AD1E1E4923F5004D2608 /* Thin Binary */, 114 | ); 115 | buildRules = ( 116 | ); 117 | dependencies = ( 118 | ); 119 | name = Runner; 120 | productName = Runner; 121 | productReference = 97C146EE1CF9000F007C117D /* Runner.app */; 122 | productType = "com.apple.product-type.application"; 123 | }; 124 | /* End PBXNativeTarget section */ 125 | 126 | /* Begin PBXProject section */ 127 | 97C146E61CF9000F007C117D /* Project object */ = { 128 | isa = PBXProject; 129 | attributes = { 130 | LastUpgradeCheck = 1020; 131 | ORGANIZATIONNAME = ""; 132 | TargetAttributes = { 133 | 97C146ED1CF9000F007C117D = { 134 | CreatedOnToolsVersion = 7.3.1; 135 | LastSwiftMigration = 1100; 136 | }; 137 | }; 138 | }; 139 | buildConfigurationList = 97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */; 140 | compatibilityVersion = "Xcode 9.3"; 141 | developmentRegion = en; 142 | hasScannedForEncodings = 0; 143 | knownRegions = ( 144 | en, 145 | Base, 146 | ); 147 | mainGroup = 97C146E51CF9000F007C117D; 148 | productRefGroup = 97C146EF1CF9000F007C117D /* Products */; 149 | projectDirPath = ""; 150 | projectRoot = ""; 151 | targets = ( 152 | 97C146ED1CF9000F007C117D /* Runner */, 153 | ); 154 | }; 155 | /* End PBXProject section */ 156 | 157 | /* Begin PBXResourcesBuildPhase section */ 158 | 97C146EC1CF9000F007C117D /* Resources */ = { 159 | isa = PBXResourcesBuildPhase; 160 | buildActionMask = 2147483647; 161 | files = ( 162 | 97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */, 163 | 3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */, 164 | 97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */, 165 | 97C146FC1CF9000F007C117D /* Main.storyboard in Resources */, 166 | ); 167 | runOnlyForDeploymentPostprocessing = 0; 168 | }; 169 | /* End PBXResourcesBuildPhase section */ 170 | 171 | /* Begin PBXShellScriptBuildPhase section */ 172 | 3B06AD1E1E4923F5004D2608 /* Thin Binary */ = { 173 | isa = PBXShellScriptBuildPhase; 174 | buildActionMask = 2147483647; 175 | files = ( 176 | ); 177 | inputPaths = ( 178 | ); 179 | name = "Thin Binary"; 180 | outputPaths = ( 181 | ); 182 | runOnlyForDeploymentPostprocessing = 0; 183 | shellPath = /bin/sh; 184 | shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" embed_and_thin"; 185 | }; 186 | 9740EEB61CF901F6004384FC /* Run Script */ = { 187 | isa = PBXShellScriptBuildPhase; 188 | buildActionMask = 2147483647; 189 | files = ( 190 | ); 191 | inputPaths = ( 192 | ); 193 | name = "Run Script"; 194 | outputPaths = ( 195 | ); 196 | runOnlyForDeploymentPostprocessing = 0; 197 | shellPath = /bin/sh; 198 | shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" build"; 199 | }; 200 | /* End PBXShellScriptBuildPhase section */ 201 | 202 | /* Begin PBXSourcesBuildPhase section */ 203 | 97C146EA1CF9000F007C117D /* Sources */ = { 204 | isa = PBXSourcesBuildPhase; 205 | buildActionMask = 2147483647; 206 | files = ( 207 | 74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */, 208 | 1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */, 209 | ); 210 | runOnlyForDeploymentPostprocessing = 0; 211 | }; 212 | /* End PBXSourcesBuildPhase section */ 213 | 214 | /* Begin PBXVariantGroup section */ 215 | 97C146FA1CF9000F007C117D /* Main.storyboard */ = { 216 | isa = PBXVariantGroup; 217 | children = ( 218 | 97C146FB1CF9000F007C117D /* Base */, 219 | ); 220 | name = Main.storyboard; 221 | sourceTree = ""; 222 | }; 223 | 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */ = { 224 | isa = PBXVariantGroup; 225 | children = ( 226 | 97C147001CF9000F007C117D /* Base */, 227 | ); 228 | name = LaunchScreen.storyboard; 229 | sourceTree = ""; 230 | }; 231 | /* End PBXVariantGroup section */ 232 | 233 | /* Begin XCBuildConfiguration section */ 234 | 249021D3217E4FDB00AE95B9 /* Profile */ = { 235 | isa = XCBuildConfiguration; 236 | buildSettings = { 237 | ALWAYS_SEARCH_USER_PATHS = NO; 238 | CLANG_ANALYZER_NONNULL = YES; 239 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 240 | CLANG_CXX_LIBRARY = "libc++"; 241 | CLANG_ENABLE_MODULES = YES; 242 | CLANG_ENABLE_OBJC_ARC = YES; 243 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 244 | CLANG_WARN_BOOL_CONVERSION = YES; 245 | CLANG_WARN_COMMA = YES; 246 | CLANG_WARN_CONSTANT_CONVERSION = YES; 247 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 248 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 249 | CLANG_WARN_EMPTY_BODY = YES; 250 | CLANG_WARN_ENUM_CONVERSION = YES; 251 | CLANG_WARN_INFINITE_RECURSION = YES; 252 | CLANG_WARN_INT_CONVERSION = YES; 253 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 254 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 255 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 256 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 257 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 258 | CLANG_WARN_STRICT_PROTOTYPES = YES; 259 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 260 | CLANG_WARN_UNREACHABLE_CODE = YES; 261 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 262 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 263 | COPY_PHASE_STRIP = NO; 264 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 265 | ENABLE_NS_ASSERTIONS = NO; 266 | ENABLE_STRICT_OBJC_MSGSEND = YES; 267 | GCC_C_LANGUAGE_STANDARD = gnu99; 268 | GCC_NO_COMMON_BLOCKS = YES; 269 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 270 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 271 | GCC_WARN_UNDECLARED_SELECTOR = YES; 272 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 273 | GCC_WARN_UNUSED_FUNCTION = YES; 274 | GCC_WARN_UNUSED_VARIABLE = YES; 275 | IPHONEOS_DEPLOYMENT_TARGET = 9.0; 276 | MTL_ENABLE_DEBUG_INFO = NO; 277 | SDKROOT = iphoneos; 278 | SUPPORTED_PLATFORMS = iphoneos; 279 | TARGETED_DEVICE_FAMILY = "1,2"; 280 | VALIDATE_PRODUCT = YES; 281 | }; 282 | name = Profile; 283 | }; 284 | 249021D4217E4FDB00AE95B9 /* Profile */ = { 285 | isa = XCBuildConfiguration; 286 | baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; 287 | buildSettings = { 288 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 289 | CLANG_ENABLE_MODULES = YES; 290 | CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; 291 | ENABLE_BITCODE = NO; 292 | INFOPLIST_FILE = Runner/Info.plist; 293 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 294 | PRODUCT_BUNDLE_IDENTIFIER = com.example.flutterSquidGame; 295 | PRODUCT_NAME = "$(TARGET_NAME)"; 296 | SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; 297 | SWIFT_VERSION = 5.0; 298 | VERSIONING_SYSTEM = "apple-generic"; 299 | }; 300 | name = Profile; 301 | }; 302 | 97C147031CF9000F007C117D /* Debug */ = { 303 | isa = XCBuildConfiguration; 304 | buildSettings = { 305 | ALWAYS_SEARCH_USER_PATHS = NO; 306 | CLANG_ANALYZER_NONNULL = YES; 307 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 308 | CLANG_CXX_LIBRARY = "libc++"; 309 | CLANG_ENABLE_MODULES = YES; 310 | CLANG_ENABLE_OBJC_ARC = YES; 311 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 312 | CLANG_WARN_BOOL_CONVERSION = YES; 313 | CLANG_WARN_COMMA = YES; 314 | CLANG_WARN_CONSTANT_CONVERSION = YES; 315 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 316 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 317 | CLANG_WARN_EMPTY_BODY = YES; 318 | CLANG_WARN_ENUM_CONVERSION = YES; 319 | CLANG_WARN_INFINITE_RECURSION = YES; 320 | CLANG_WARN_INT_CONVERSION = YES; 321 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 322 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 323 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 324 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 325 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 326 | CLANG_WARN_STRICT_PROTOTYPES = YES; 327 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 328 | CLANG_WARN_UNREACHABLE_CODE = YES; 329 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 330 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 331 | COPY_PHASE_STRIP = NO; 332 | DEBUG_INFORMATION_FORMAT = dwarf; 333 | ENABLE_STRICT_OBJC_MSGSEND = YES; 334 | ENABLE_TESTABILITY = YES; 335 | GCC_C_LANGUAGE_STANDARD = gnu99; 336 | GCC_DYNAMIC_NO_PIC = NO; 337 | GCC_NO_COMMON_BLOCKS = YES; 338 | GCC_OPTIMIZATION_LEVEL = 0; 339 | GCC_PREPROCESSOR_DEFINITIONS = ( 340 | "DEBUG=1", 341 | "$(inherited)", 342 | ); 343 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 344 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 345 | GCC_WARN_UNDECLARED_SELECTOR = YES; 346 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 347 | GCC_WARN_UNUSED_FUNCTION = YES; 348 | GCC_WARN_UNUSED_VARIABLE = YES; 349 | IPHONEOS_DEPLOYMENT_TARGET = 9.0; 350 | MTL_ENABLE_DEBUG_INFO = YES; 351 | ONLY_ACTIVE_ARCH = YES; 352 | SDKROOT = iphoneos; 353 | TARGETED_DEVICE_FAMILY = "1,2"; 354 | }; 355 | name = Debug; 356 | }; 357 | 97C147041CF9000F007C117D /* Release */ = { 358 | isa = XCBuildConfiguration; 359 | buildSettings = { 360 | ALWAYS_SEARCH_USER_PATHS = NO; 361 | CLANG_ANALYZER_NONNULL = YES; 362 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 363 | CLANG_CXX_LIBRARY = "libc++"; 364 | CLANG_ENABLE_MODULES = YES; 365 | CLANG_ENABLE_OBJC_ARC = YES; 366 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 367 | CLANG_WARN_BOOL_CONVERSION = YES; 368 | CLANG_WARN_COMMA = YES; 369 | CLANG_WARN_CONSTANT_CONVERSION = YES; 370 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 371 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 372 | CLANG_WARN_EMPTY_BODY = YES; 373 | CLANG_WARN_ENUM_CONVERSION = YES; 374 | CLANG_WARN_INFINITE_RECURSION = YES; 375 | CLANG_WARN_INT_CONVERSION = YES; 376 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 377 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 378 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 379 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 380 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 381 | CLANG_WARN_STRICT_PROTOTYPES = YES; 382 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 383 | CLANG_WARN_UNREACHABLE_CODE = YES; 384 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 385 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 386 | COPY_PHASE_STRIP = NO; 387 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 388 | ENABLE_NS_ASSERTIONS = NO; 389 | ENABLE_STRICT_OBJC_MSGSEND = YES; 390 | GCC_C_LANGUAGE_STANDARD = gnu99; 391 | GCC_NO_COMMON_BLOCKS = YES; 392 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 393 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 394 | GCC_WARN_UNDECLARED_SELECTOR = YES; 395 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 396 | GCC_WARN_UNUSED_FUNCTION = YES; 397 | GCC_WARN_UNUSED_VARIABLE = YES; 398 | IPHONEOS_DEPLOYMENT_TARGET = 9.0; 399 | MTL_ENABLE_DEBUG_INFO = NO; 400 | SDKROOT = iphoneos; 401 | SUPPORTED_PLATFORMS = iphoneos; 402 | SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; 403 | TARGETED_DEVICE_FAMILY = "1,2"; 404 | VALIDATE_PRODUCT = YES; 405 | }; 406 | name = Release; 407 | }; 408 | 97C147061CF9000F007C117D /* Debug */ = { 409 | isa = XCBuildConfiguration; 410 | baseConfigurationReference = 9740EEB21CF90195004384FC /* Debug.xcconfig */; 411 | buildSettings = { 412 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 413 | CLANG_ENABLE_MODULES = YES; 414 | CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; 415 | ENABLE_BITCODE = NO; 416 | INFOPLIST_FILE = Runner/Info.plist; 417 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 418 | PRODUCT_BUNDLE_IDENTIFIER = com.example.flutterSquidGame; 419 | PRODUCT_NAME = "$(TARGET_NAME)"; 420 | SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; 421 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 422 | SWIFT_VERSION = 5.0; 423 | VERSIONING_SYSTEM = "apple-generic"; 424 | }; 425 | name = Debug; 426 | }; 427 | 97C147071CF9000F007C117D /* Release */ = { 428 | isa = XCBuildConfiguration; 429 | baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; 430 | buildSettings = { 431 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 432 | CLANG_ENABLE_MODULES = YES; 433 | CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; 434 | ENABLE_BITCODE = NO; 435 | INFOPLIST_FILE = Runner/Info.plist; 436 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 437 | PRODUCT_BUNDLE_IDENTIFIER = com.example.flutterSquidGame; 438 | PRODUCT_NAME = "$(TARGET_NAME)"; 439 | SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; 440 | SWIFT_VERSION = 5.0; 441 | VERSIONING_SYSTEM = "apple-generic"; 442 | }; 443 | name = Release; 444 | }; 445 | /* End XCBuildConfiguration section */ 446 | 447 | /* Begin XCConfigurationList section */ 448 | 97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */ = { 449 | isa = XCConfigurationList; 450 | buildConfigurations = ( 451 | 97C147031CF9000F007C117D /* Debug */, 452 | 97C147041CF9000F007C117D /* Release */, 453 | 249021D3217E4FDB00AE95B9 /* Profile */, 454 | ); 455 | defaultConfigurationIsVisible = 0; 456 | defaultConfigurationName = Release; 457 | }; 458 | 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */ = { 459 | isa = XCConfigurationList; 460 | buildConfigurations = ( 461 | 97C147061CF9000F007C117D /* Debug */, 462 | 97C147071CF9000F007C117D /* Release */, 463 | 249021D4217E4FDB00AE95B9 /* Profile */, 464 | ); 465 | defaultConfigurationIsVisible = 0; 466 | defaultConfigurationName = Release; 467 | }; 468 | /* End XCConfigurationList section */ 469 | }; 470 | rootObject = 97C146E61CF9000F007C117D /* Project object */; 471 | } 472 | -------------------------------------------------------------------------------- /assets/loading.json: -------------------------------------------------------------------------------- 1 | {"v":"4.8.0","meta":{"g":"LottieFiles AE 1.0.0","a":"","k":"","d":"","tc":""},"fr":60,"ip":90,"op":571,"w":900,"h":500,"nm":"Squid Game","ddd":0,"assets":[],"layers":[{"ddd":0,"ind":2,"ty":4,"nm":"A Path","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":90,"s":[0]},{"t":225,"s":[100]}],"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":300,"s":[0]},{"t":317,"s":[120]}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":317,"s":[521.001,220.131,0],"to":[1.5,17.167,0],"ti":[-1.5,-17.167,0]},{"t":337,"s":[530.001,323.131,0]}],"ix":2},"a":{"a":0,"k":[167.167,149.333,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":255,"s":[100,100,100]},{"t":285,"s":[56,56,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":[[92,0],[184,160],[0,160]],"c":true},"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":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":255,"s":[16]},{"t":285,"s":[28]}],"ix":5},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"op","nm":"Offset Paths 1","a":{"a":0,"k":-8,"ix":1},"lj":1,"ml":{"a":0,"k":4,"ix":3},"ix":3,"mn":"ADBE Vector Filter - Offset","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":"A Path Stroke","np":3,"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":[[92,0],[184,160],[0,160]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","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":"A Path Fill","np":2,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":720,"st":0,"bm":0},{"ddd":0,"ind":3,"ty":4,"nm":"G Path Sub","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":90,"s":[0]},{"t":225,"s":[100]}],"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[480.99,331.666,0],"ix":2},"a":{"a":0,"k":[44.851,45.21,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]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[0,67.255],[0,0],[39.856,0],[89.701,90.42]],"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":16,"ix":5},"lc":1,"lj":1,"ml":4,"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":"G Path Sub","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":285,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":295,"s":[10]},{"t":316,"s":[32]}],"ix":1},"e":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":285,"s":[7]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":295,"s":[36]},{"t":316,"s":[100]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false}],"ip":285,"op":720,"st":0,"bm":0},{"ddd":0,"ind":4,"ty":4,"nm":"G Path Main","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":90,"s":[0]},{"t":225,"s":[100]}],"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[444.785,274.399,0],"ix":2},"a":{"a":0,"k":[79.804,48.068,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.335,0.476],[0,35.145],[-4.464,0],[0,0]],"o":[[0,0],[0,0],[0,0],[-4.886,0],[0,-35.145],[0.205,-0.156],[0,0]],"v":[[0,0],[159.608,0],[159.608,95.925],[75.042,95.925],[35.042,61.173],[75.042,23.816],[146.639,23.816]],"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":16,"ix":5},"lc":1,"lj":1,"ml":4,"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":"G Path Main","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":317,"s":[30]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":327,"s":[30]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":332,"s":[31]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":346,"s":[38]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":367,"s":[46]},{"t":379,"s":[53]}],"ix":1},"e":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":317,"s":[30]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":327,"s":[31]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":332,"s":[38]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":346,"s":[46]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":367,"s":[49]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":379,"s":[59]},{"t":416,"s":[100]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false}],"ip":0,"op":720,"st":0,"bm":0},{"ddd":0,"ind":5,"ty":4,"nm":"D Path","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":90,"s":[0]},{"t":225,"s":[100]}],"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[508.528,125.006,0],"ix":2},"a":{"a":0,"k":[110.682,95.295,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,-30.263],[23.492,0],[0,30.487],[-15.306,0],[0,0],[0,0],[0,0],[0,0],[-0.095,-0.08],[0,-31.99],[3.45,0]],"o":[[18.379,0],[0,30.263],[-23.492,0],[0,-30.487],[15.306,0],[0,0],[0,0],[0,0],[0,0],[2.459,0],[0,31.99],[0,0]],"v":[[45.423,0],[90.423,42.324],[45.423,90.291],[0,42.324],[44.879,0],[221.365,0],[221.365,190.59],[4.542,190.59],[4.542,116.377],[61.824,116.377],[95.824,151.503],[61.824,190.59]],"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":16,"ix":5},"lc":1,"lj":1,"ml":4,"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":"D Path","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":225,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":236,"s":[2]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":287,"s":[26]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":307,"s":[41]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":345,"s":[48]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":365,"s":[63]},{"t":376,"s":[73]}],"ix":1},"e":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":225,"s":[26]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":287,"s":[41]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":307,"s":[42]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":345,"s":[59]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":365,"s":[79]},{"t":392,"s":[100]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false}],"ip":0,"op":720,"st":0,"bm":0},{"ddd":0,"ind":6,"ty":4,"nm":"I Path","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":90,"s":[0]},{"t":225,"s":[100]}],"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[442.427,182.168,0],"ix":2},"a":{"a":0,"k":[77.443,44.159,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":[[154.886,88.319],[0,88.319],[0,0]],"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":16,"ix":5},"lc":1,"lj":1,"ml":4,"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":"I Path","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[5.453]},"t":253,"s":[65]},{"t":263,"s":[66]}],"ix":1},"e":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":253,"s":[65]},{"t":327,"s":[100]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false}],"ip":0,"op":720,"st":0,"bm":0},{"ddd":0,"ind":7,"ty":4,"nm":"Q Path Sub","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":90,"s":[0]},{"t":225,"s":[100]}],"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[214.342,224.045,0],"ix":2},"a":{"a":0,"k":[22.071,40.651,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]],"o":[[0,0],[0,0]],"v":[[0,0],[44.141,81.302]],"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":16,"ix":5},"lc":1,"lj":1,"ml":4,"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":"Q Path Sub","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":411,"s":[36]},{"t":462,"s":[0]}],"ix":1},"e":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":411,"s":[36]},{"t":462,"s":[100]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false}],"ip":411,"op":720,"st":0,"bm":0},{"ddd":0,"ind":8,"ty":4,"nm":"Q Path Main","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":90,"s":[0]},{"t":225,"s":[100]}],"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[321.501,295.544,0],"ix":2},"a":{"a":0,"k":[167.136,148.458,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,-30.263],[-23.492,0],[0,30.487],[12.952,0],[0,0],[0,0],[33.823,0],[0,-3.422],[-31.255,0],[0,4.873]],"o":[[-18.379,0],[0,30.263],[23.492,0],[0,-30.487],[-12.952,0],[0,0],[0,0],[-33.823,0],[0,7.534],[31.255,0],[0,0]],"v":[[288.849,206.625],[243.849,248.949],[288.849,296.916],[334.272,248.949],[289.394,206.625],[72.908,206.625],[72.908,35],[37.01,0],[0,35],[37.01,72.103],[72.908,35.282]],"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":16,"ix":5},"lc":1,"lj":1,"ml":4,"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":"Q Path Main","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":259,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":284,"s":[16]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":330,"s":[55]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":372,"s":[66]},{"t":390,"s":[74]}],"ix":1},"e":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":265,"s":[32]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":284,"s":[38]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":307,"s":[56]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":372,"s":[76]},{"t":390,"s":[100]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false}],"ip":0,"op":720,"st":0,"bm":0},{"ddd":0,"ind":9,"ty":4,"nm":"E Path Sub","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":90,"s":[0]},{"t":225,"s":[100]}],"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[843.475,287.273,0],"ix":2},"a":{"a":0,"k":[51.833,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]],"o":[[0,0],[0,0]],"v":[[0,0],[103.666,0]],"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":16,"ix":5},"lc":1,"lj":1,"ml":4,"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":"E Path Sub","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"tm","s":{"a":0,"k":0,"ix":1},"e":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":385,"s":[0]},{"t":444,"s":[100]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false}],"ip":385,"op":720,"st":0,"bm":0},{"ddd":0,"ind":10,"ty":4,"nm":"E Path Main","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":90,"s":[0]},{"t":225,"s":[100]}],"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[689.408,364.548,0],"ix":2},"a":{"a":0,"k":[162.113,113.57,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]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[0,0.734],[0,227.141],[324.227,227.141],[324.227,0],[232.075,0],[232.075,72.729],[313.699,72.729]],"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":16,"ix":5},"lc":1,"lj":1,"ml":4,"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":"E Path Main","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":240,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":265,"s":[5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":297,"s":[21]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":302,"s":[24]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":320,"s":[34]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":336,"s":[49]},{"t":390,"s":[77]}],"ix":1},"e":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":240,"s":[14.5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":265,"s":[14.5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":297,"s":[22.5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":302,"s":[28.5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":320,"s":[54.5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":336,"s":[76.5]},{"t":387,"s":[100]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false}],"ip":0,"op":720,"st":0,"bm":0},{"ddd":0,"ind":11,"ty":4,"nm":"M Path","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":90,"s":[0]},{"t":225,"s":[100]}],"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[541.535,287.273,0],"ix":2},"a":{"a":0,"k":[190.583,45.219,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.106,0.146],[0,0],[0,6.236],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,3.836],[0,0],[-0.095,0.138],[0,0]],"v":[[0,17.657],[381.124,17.657],[381.12,17.657],[381.12,90.437],[381.12,0],[334.861,86.437],[289.437,0],[289.437,90.437]],"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":16,"ix":5},"lc":1,"lj":3,"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":"M Path","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":240,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":257,"s":[21]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":270,"s":[36.6]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":277,"s":[45]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":289,"s":[47]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":299,"s":[53]},{"t":337,"s":[53]}],"ix":1},"e":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":240,"s":[22]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":257,"s":[40]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":270,"s":[47]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":277,"s":[47]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":289,"s":[53]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":299,"s":[56]},{"t":337,"s":[100]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false}],"ip":0,"op":720,"st":0,"bm":0},{"ddd":0,"ind":12,"ty":4,"nm":"U Path","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":90,"s":[0]},{"t":225,"s":[100]}],"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[310.183,240.866,0],"ix":2},"a":{"a":0,"k":[48.77,162.025,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],[-38.959,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[38.959,0],[0,0],[0,0]],"v":[[97.539,324.05],[97.539,180.875],[0.046,180.875],[0.046,59.498],[0.048,59.498],[0.048,100.926],[36.122,141.458],[71.836,100.926],[71.836,0]],"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":16,"ix":5},"lc":1,"lj":1,"ml":4,"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":"U Path","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":227,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":234,"s":[11]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":242,"s":[22]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":269,"s":[22]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":285,"s":[56]},{"t":326,"s":[56]}],"ix":1},"e":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":227,"s":[24]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":234,"s":[24]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":242,"s":[31]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":269,"s":[49]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":285,"s":[58]},{"t":326,"s":[100]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false}],"ip":0,"op":720,"st":0,"bm":0},{"ddd":0,"ind":13,"ty":4,"nm":"S Path","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":90,"s":[0]},{"t":225,"s":[100]}],"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[269.849,270.542,0],"ix":2},"a":{"a":0,"k":[265.121,124.344,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,-18.801],[0,0],[0,0],[0,-16.938],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,18.801],[0,0],[0,0],[0,16.938],[0,0],[0,0]],"v":[[530.243,248.689],[126.074,248.689],[126.074,0.005],[52.005,0.005],[34.427,17.986],[52.005,36.396],[91.74,36.396],[106.074,54.042],[91.74,72.273],[0,72.273]],"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":16,"ix":5},"lc":1,"lj":1,"ml":4,"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":"S Path","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":239,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":269,"s":[6.7]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":305,"s":[40.7]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":319,"s":[42.7]},{"t":364,"s":[66.7]}],"ix":1},"e":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":239,"s":[19]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":269,"s":[19.3]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":305,"s":[43]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":319,"s":[52.3]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":349,"s":[68.3]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":364,"s":[68.7]},{"t":424,"s":[100]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false}],"ip":0,"op":720,"st":0,"bm":0},{"ddd":0,"ind":14,"ty":4,"nm":"A Fill","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":420,"s":[0]},{"t":540,"s":[100]}],"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[572,289.125,0],"ix":2},"a":{"a":0,"k":[36,31,0],"ix":1},"s":{"a":0,"k":[113,113,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":[[36,0],[72,62],[0,62]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"op","nm":"Offset Paths 1","a":{"a":0,"k":-0.5,"ix":1},"lj":1,"ml":{"a":0,"k":4,"ix":3},"ix":3,"mn":"ADBE Vector Filter - Offset","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":"A Fill Stroke","np":3,"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":[[36,0],[72,62],[0,62]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.9921568627450981,0.1568627450980392,0.49411764705882355,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":"A Fill Fill","np":2,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false}],"ip":420,"op":720,"st":0,"bm":0},{"ddd":0,"ind":15,"ty":4,"nm":"Q Fill","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":420,"s":[0]},{"t":540,"s":[100]}],"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[191,183,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":[{"d":1,"ty":"el","s":{"a":0,"k":[80,80],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"op","nm":"Offset Paths 1","a":{"a":0,"k":-0.5,"ix":1},"lj":1,"ml":{"a":0,"k":4,"ix":3},"ix":3,"mn":"ADBE Vector Filter - Offset","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":"Q Fill Stroke","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":[80,80],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"fl","c":{"a":0,"k":[0.9921568627450981,0.1568627450980392,0.49411764705882355,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":"Q Fill Fill","np":2,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false}],"ip":420,"op":720,"st":0,"bm":0},{"ddd":0,"ind":16,"ty":4,"nm":"E Fill","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":420,"s":[0]},{"t":540,"s":[100]}],"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[800,287.5,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":[82,75],"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":"op","nm":"Offset Paths 1","a":{"a":0,"k":-0.5,"ix":1},"lj":1,"ml":{"a":0,"k":4,"ix":3},"ix":3,"mn":"ADBE Vector Filter - Offset","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":"E Fill Stroke","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ty":"rc","d":1,"s":{"a":0,"k":[82,75],"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":"fl","c":{"a":0,"k":[0.9921568627450981,0.1568627450980392,0.49411764705882355,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":"E Fill Fill","np":2,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false}],"ip":420,"op":720,"st":0,"bm":0}],"markers":[]} -------------------------------------------------------------------------------- /assets/loading2.json: -------------------------------------------------------------------------------- 1 | {"v":"5.7.13","fr":24,"ip":0,"op":175,"w":1080,"h":1080,"nm":"The Render","ddd":0,"assets":[{"id":"comp_0","nm":"The Combine","layers":[{"ddd":0,"ind":1,"ty":0,"nm":"The Final","refId":"comp_1","sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[540,540,0]},"a":{"a":0,"k":[540,540,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"w":1080,"h":1080,"ip":0,"op":240,"st":0,"bm":0},{"ddd":0,"ind":2,"ty":0,"nm":"The Final Green","refId":"comp_2","sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[541,539,0]},"a":{"a":0,"k":[540,540,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"w":1080,"h":1080,"ip":0,"op":240,"st":0,"bm":0},{"ddd":0,"ind":3,"ty":0,"nm":"The Final Pink","refId":"comp_3","sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[539,541,0]},"a":{"a":0,"k":[540,540,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"w":1080,"h":1080,"ip":0,"op":240,"st":0,"bm":0}]},{"id":"comp_1","nm":"The Final","layers":[{"ddd":0,"ind":1,"ty":4,"nm":"Shape Layer 3","sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[540,640.25,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"d":1,"ty":"el","s":{"a":0,"k":[74,74]},"p":{"a":0,"k":[0,0]},"nm":"Ellipse Path 1","hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.48],"y":[1]},"o":{"x":[0.631],"y":[0]},"t":30,"s":[0],"e":[100]},{"t":54}]},"e":{"a":0,"k":100},"o":{"a":1,"k":[{"i":{"x":[0.48],"y":[1]},"o":{"x":[0.631],"y":[0]},"t":30,"s":[-270],"e":[0]},{"t":54}]},"m":1,"nm":"Trim Paths 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.909803921569,0.917647058824,0.81568627451,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":13.6},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","hd":false}],"ip":0,"op":270,"st":30,"bm":0},{"ddd":0,"ind":2,"ty":4,"nm":"Shape Layer 2","sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[540,318,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"d":1,"ty":"el","s":{"a":0,"k":[74,74]},"p":{"a":0,"k":[0,0]},"nm":"Ellipse Path 1","hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.48],"y":[1]},"o":{"x":[0.631],"y":[0]},"t":30,"s":[0],"e":[100]},{"t":54}]},"e":{"a":0,"k":100},"o":{"a":1,"k":[{"i":{"x":[0.48],"y":[1]},"o":{"x":[0.631],"y":[0]},"t":30,"s":[450],"e":[0]},{"t":54}]},"m":1,"nm":"Trim Paths 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.909803921569,0.917647058824,0.81568627451,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":13.6},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","hd":false}],"ip":0,"op":270,"st":30,"bm":0},{"ddd":0,"ind":3,"ty":4,"nm":"O","sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[394.5,540,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"d":1,"ty":"el","s":{"a":1,"k":[{"i":{"x":[0.364,0.364],"y":[1,1]},"o":{"x":[0.645,0.645],"y":[0,0]},"t":92,"s":[0,0],"e":[62.6,62.6]},{"t":124}]},"p":{"a":0,"k":[0,0]},"nm":"Ellipse Path 1","hd":false},{"ty":"st","c":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":120,"s":[0.909803986549,0.917647123337,0.8156863451,1],"e":[1,0.250980392157,0.407843137255,1]},{"t":132}]},"o":{"a":0,"k":100},"w":{"a":1,"k":[{"i":{"x":[0.371],"y":[1]},"o":{"x":[0.699],"y":[0]},"t":92,"s":[0],"e":[13.6]},{"t":104}]},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","hd":false}],"ip":0,"op":294,"st":54,"bm":0},{"ddd":0,"ind":4,"ty":4,"nm":"A-","sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":1,"k":[{"i":{"x":0.491,"y":1},"o":{"x":0.523,"y":0},"t":48,"s":[494.67,392,0],"e":[504.17,392,0],"to":[1.583,0,0],"ti":[-1.583,0,0]},{"t":78}]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-86.603,50],[86.603,50]],"c":false}},"nm":"Path 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[-52,26]},"s":{"a":0,"k":[104,60]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"tm","s":{"a":0,"k":0},"e":{"a":1,"k":[{"i":{"x":[0.497],"y":[1]},"o":{"x":[0.517],"y":[0]},"t":48,"s":[100],"e":[94.6]},{"i":{"x":[0.497],"y":[1]},"o":{"x":[0.517],"y":[0]},"t":79,"s":[94.6],"e":[0]},{"t":110}]},"o":{"a":0,"k":0},"m":1,"nm":"Trim Paths 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.909803921569,0.917647058824,0.81568627451,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":13.6},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"tr","p":{"a":0,"k":[54.08,14.4]},"a":{"a":0,"k":[54.08,14.4]},"s":{"a":0,"k":[101,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":-45},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":0,"op":111,"st":48,"bm":0},{"ddd":0,"ind":5,"ty":4,"nm":"A","sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":1,"k":[{"i":{"x":0.491,"y":1},"o":{"x":0.523,"y":0},"t":48,"s":[485.92,392,0],"e":[495.42,392,0],"to":[1.583,0,0],"ti":[-1.583,0,0]},{"i":{"x":0.502,"y":0.502},"o":{"x":0.511,"y":0.511},"t":78,"s":[495.42,392,0],"e":[495.42,392,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.491,"y":1},"o":{"x":0.523,"y":0},"t":110,"s":[495.42,392,0],"e":[495.42,555.75,0],"to":[0,0,0],"ti":[0,0,0]},{"t":140}]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"sr","sy":2,"d":1,"pt":{"a":0,"k":3},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"or":{"a":0,"k":100},"os":{"a":0,"k":0},"nm":"Polystar Path 1","hd":false},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.491,"y":1},"o":{"x":0.523,"y":0},"t":48,"s":[0,0],"e":[-36.3,5.9],"to":[-2.714,0.592],"ti":[3.02,-0.658]},{"t":78}]},"a":{"a":0,"k":[-52,26]},"s":{"a":1,"k":[{"i":{"x":[0.491,0.48],"y":[1,1]},"o":{"x":[0.523,0.479],"y":[0,0]},"t":48,"s":[104,60],"e":[28.6,35.1]},{"t":78}]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"st","c":{"a":0,"k":[0.909803921569,0.917647058824,0.81568627451,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":13.6},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","hd":false}],"ip":0,"op":288,"st":48,"bm":0},{"ddd":0,"ind":6,"ty":4,"nm":"Right","sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":1,"k":[{"i":{"x":0.555,"y":1},"o":{"x":0.487,"y":0},"t":76,"s":[640,540,0],"e":[748.8,540,0],"to":[18.133,0,0],"ti":[-18.133,0,0]},{"t":106}]},"a":{"a":0,"k":[100,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[129.125,-106.5],[100,-106.438],[100,106.5]],"c":false}},"nm":"Path 1","hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[1],"y":[0]},"t":74,"s":[12.2],"e":[9.2]},{"i":{"x":[0.558],"y":[1]},"o":{"x":[0.482],"y":[0]},"t":75,"s":[9.2],"e":[9.2]},{"i":{"x":[0.331],"y":[1]},"o":{"x":[0.796],"y":[0]},"t":106,"s":[9.2],"e":[1]},{"t":116}]},"e":{"a":1,"k":[{"i":{"x":[0.569],"y":[0.952]},"o":{"x":[0.491],"y":[0]},"t":44,"s":[100],"e":[17.752]},{"i":{"x":[0.66],"y":[1]},"o":{"x":[0.326],"y":[0.037]},"t":74,"s":[17.752],"e":[15]},{"t":75}]},"o":{"a":0,"k":0},"m":1,"nm":"Trim Paths 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.909803921569,0.917647058824,0.81568627451,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":13.6},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","hd":false}],"ip":0,"op":137,"st":44,"bm":0},{"ddd":0,"ind":7,"ty":4,"nm":"G Outlines","sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":1,"k":[{"i":{"x":0.387,"y":1},"o":{"x":0.718,"y":0},"t":140,"s":[740.145,467.682,0],"e":[740.145,576.557,0],"to":[0,18.146,0],"ti":[0,-18.146,0]},{"t":152}]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[10.854,0],[0,18.281],[-17.995,0],[-6.712,-9.283]],"o":[[0,0],[0,0],[-5.284,7.284],[-18.709,0],[0,-17.995],[10.854,0],[0,0]],"v":[[1.393,-33.676],[28.761,-33.757],[28.697,-18.271],[2.645,-5.252],[-28.775,-36.815],[1.502,-67.807],[27.781,-53.954]],"c":false}},"nm":"G","hd":false},{"ty":"tm","s":{"a":0,"k":0},"e":{"a":1,"k":[{"i":{"x":[0.499],"y":[1]},"o":{"x":[0.564],"y":[0]},"t":116,"s":[16],"e":[100]},{"t":136}]},"o":{"a":0,"k":0},"m":1,"nm":"Trim Paths 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.909803921569,0.917647058824,0.81568627451,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":13.6},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","hd":false}],"ip":116,"op":284,"st":44,"bm":0},{"ddd":0,"ind":8,"ty":4,"nm":"I Outlines","sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[602.77,576.557,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-7.311,0],[7.645,0],[7.645,-73.114],[-7.311,-73.114]],"c":true}},"nm":"I","hd":false},{"ty":"fl","c":{"a":0,"k":[0.909803921569,0.917647058824,0.81568627451,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":1,"k":[{"i":{"x":[0.395,0.395],"y":[1,1]},"o":{"x":[0.608,0.563],"y":[0,0]},"t":84,"s":[98,0],"e":[98,100]},{"t":114}]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"I","bm":0,"hd":false}],"ip":0,"op":282,"st":42,"bm":0},{"ddd":0,"ind":9,"ty":4,"nm":"D Outlines","sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[537.77,576.557,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0.253,17.377],[17.646,-0.182]],"o":[[0,0],[0,0],[17.646,0.273],[0.253,-17.741],[0,0]],"v":[[-11.656,-66.625],[-11.656,-6.58],[6.581,-6.58],[36.977,-36.784],[6.581,-66.625]],"c":true}},"nm":"D","hd":false},{"ty":"tm","s":{"a":0,"k":0},"e":{"a":1,"k":[{"i":{"x":[0.395],"y":[1]},"o":{"x":[0],"y":[0]},"t":110,"s":[0],"e":[100]},{"t":144}]},"o":{"a":0,"k":0},"m":1,"nm":"Trim Paths 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.909803921569,0.917647058824,0.81568627451,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":13.6},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","hd":false}],"ip":103,"op":278,"st":38,"bm":0},{"ddd":0,"ind":10,"ty":4,"nm":"left - D","sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":1,"k":[{"i":{"x":0.617,"y":1},"o":{"x":0.531,"y":0},"t":70,"s":[440,539.875,0],"e":[526.2,539.875,0],"to":[14.367,0,0],"ti":[-14.367,0,0]},{"t":98}]},"a":{"a":0,"k":[-100,-0.125,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-100,-106.75],[-100,106.5]],"c":true}},"nm":"Path 1","hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.62],"y":[1]},"o":{"x":[0.518],"y":[0]},"t":38,"s":[0],"e":[96.8]},{"i":{"x":[0.62],"y":[1]},"o":{"x":[0.518],"y":[0]},"t":68,"s":[96.8],"e":[96.8]},{"i":{"x":[1],"y":[1]},"o":{"x":[1],"y":[0]},"t":98,"s":[96.8],"e":[80.5]},{"t":110}]},"e":{"a":1,"k":[{"i":{"x":[0.493],"y":[1]},"o":{"x":[1],"y":[0]},"t":110,"s":[100],"e":[83.5]},{"t":122}]},"o":{"a":0,"k":0},"m":1,"nm":"Trim Paths 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.909803921569,0.917647058824,0.81568627451,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":13.6},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","hd":false}],"ip":0,"op":123,"st":38,"bm":0},{"ddd":0,"ind":11,"ty":4,"nm":"N -2","sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[537.77,576.557,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[97.159,0.579],[97.179,-66.445],[98.691,-66.398],[143.63,-2.185]],"c":false}},"nm":"N","hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.541],"y":[1]},"o":{"x":[0.559],"y":[0]},"t":94,"s":[100],"e":[0]},{"t":118}]},"e":{"a":0,"k":100},"o":{"a":0,"k":0},"m":1,"nm":"Trim Paths 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.909803921569,0.917647058824,0.81568627451,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":13.6},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","hd":false}],"ip":0,"op":274,"st":34,"bm":0},{"ddd":0,"ind":12,"ty":4,"nm":"Up - N","sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":1,"k":[{"i":{"x":0.469,"y":1},"o":{"x":0.496,"y":0},"t":34,"s":[540,440,0],"e":[577.125,440,0],"to":[6.188,0,0],"ti":[-6.188,0,0]},{"i":{"x":0,"y":0},"o":{"x":1,"y":1},"t":64,"s":[577.125,440,0],"e":[577.125,440,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.454,"y":1},"o":{"x":0.508,"y":0},"t":66,"s":[577.125,440,0],"e":[577.125,510.5,0],"to":[0,11.75,0],"ti":[0,-11.75,0]},{"t":94}]},"a":{"a":0,"k":[0,-100,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0,"y":1},"o":{"x":1,"y":0},"t":64,"s":[{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[106.625,-48],[106.375,-100],[-106.5,-100]],"c":false}],"e":[{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[106.625,-48],[106.375,-100],[-106.5,-100]],"c":false}]},{"i":{"x":0.454,"y":1},"o":{"x":0.508,"y":0},"t":66,"s":[{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[106.625,-48],[106.375,-100],[-106.5,-100]],"c":false}],"e":[{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[106.625,-32.75],[106.375,-100],[-106.5,-100]],"c":false}]},{"t":94}]},"nm":"Path 1","hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.719],"y":[0.991]},"o":{"x":[0.393],"y":[0]},"t":34,"s":[19.65],"e":[17.124]},{"i":{"x":[0.705],"y":[0.689]},"o":{"x":[0.411],"y":[1.277]},"t":35,"s":[17.124],"e":[16.882]},{"i":{"x":[0.471],"y":[1]},"o":{"x":[0.235],"y":[0.434]},"t":44,"s":[16.882],"e":[16.575]},{"i":{"x":[0],"y":[1]},"o":{"x":[1],"y":[0]},"t":64,"s":[16.575],"e":[16.575]},{"i":{"x":[0.454],"y":[1]},"o":{"x":[0.508],"y":[0]},"t":66,"s":[16.575],"e":[0]},{"t":94}]},"e":{"a":1,"k":[{"i":{"x":[0.469],"y":[1]},"o":{"x":[0.496],"y":[0]},"t":34,"s":[100],"e":[22.2]},{"i":{"x":[0],"y":[1]},"o":{"x":[1],"y":[0]},"t":64,"s":[22.2],"e":[22.2]},{"i":{"x":[0.454],"y":[1]},"o":{"x":[0.508],"y":[0]},"t":66,"s":[22.2],"e":[26.5]},{"t":94}]},"o":{"a":0,"k":0},"m":1,"nm":"Trim Paths 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.909803921569,0.917647058824,0.81568627451,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":13.6},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","hd":false}],"ip":0,"op":274,"st":34,"bm":0},{"ddd":0,"ind":13,"ty":4,"nm":"Down L","sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":1,"k":[{"i":{"x":0.395,"y":1},"o":{"x":0.481,"y":0},"t":30,"s":[540,640,0],"e":[416.25,640,0],"to":[-20.625,0,0],"ti":[20.625,0,0]},{"i":{"x":0,"y":0},"o":{"x":1,"y":1},"t":60,"s":[416.25,640,0],"e":[416.25,640,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.379,"y":1},"o":{"x":0.489,"y":0},"t":62,"s":[416.25,640,0],"e":[416.25,570,0],"to":[0,-11.667,0],"ti":[0,11.667,0]},{"t":90}]},"a":{"a":0,"k":[0,100,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.409,"y":1},"o":{"x":0.473,"y":0},"t":30,"s":[{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-106.5,49.438],[-106.563,100],[106.5,100]],"c":false}],"e":[{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-106.5,49.438],[-106.563,100],[106.5,100]],"c":false}]},{"i":{"x":0.379,"y":1},"o":{"x":0.489,"y":0},"t":62,"s":[{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-106.5,49.438],[-106.563,100],[106.5,100]],"c":false}],"e":[{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-106.5,34.313],[-106.563,100],[106.5,100]],"c":false}]},{"t":90}]},"nm":"Path 1","hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.576],"y":[1.04]},"o":{"x":[0.229],"y":[0]},"t":30,"s":[19.3],"e":[22.681]},{"i":{"x":[0.842],"y":[1]},"o":{"x":[0.292],"y":[0.107]},"t":34,"s":[22.681],"e":[16.5]},{"i":{"x":[0.379],"y":[1]},"o":{"x":[0.489],"y":[0]},"t":62,"s":[16.5],"e":[0]},{"t":90}]},"e":{"a":1,"k":[{"i":{"x":[0.395],"y":[1]},"o":{"x":[0.481],"y":[0]},"t":30,"s":[100],"e":[22]},{"i":{"x":[0.395],"y":[1]},"o":{"x":[0.481],"y":[0]},"t":60,"s":[22],"e":[26.15]},{"i":{"x":[0.259],"y":[1]},"o":{"x":[0.554],"y":[0]},"t":90,"s":[26.15],"e":[37.8]},{"t":114}]},"o":{"a":0,"k":0},"m":1,"nm":"Trim Paths 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.909803921569,0.917647058824,0.81568627451,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":13.6},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","hd":false}],"ip":0,"op":270,"st":30,"bm":0}]},{"id":"comp_2","nm":"The Final Green","layers":[{"ddd":0,"ind":1,"ty":4,"nm":"Shape Layer 3","sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[540,640.25,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"d":1,"ty":"el","s":{"a":0,"k":[74,74]},"p":{"a":0,"k":[0,0]},"nm":"Ellipse Path 1","hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.48],"y":[1]},"o":{"x":[0.631],"y":[0]},"t":30,"s":[0],"e":[100]},{"t":54}]},"e":{"a":0,"k":100},"o":{"a":1,"k":[{"i":{"x":[0.48],"y":[1]},"o":{"x":[0.631],"y":[0]},"t":30,"s":[-270],"e":[0]},{"t":54}]},"m":1,"nm":"Trim Paths 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.152941176471,0.96862745098,0.152941176471,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":13.6},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","hd":false}],"ip":0,"op":270,"st":30,"bm":0},{"ddd":0,"ind":2,"ty":4,"nm":"Shape Layer 2","sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[540,318,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"d":1,"ty":"el","s":{"a":0,"k":[74,74]},"p":{"a":0,"k":[0,0]},"nm":"Ellipse Path 1","hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.48],"y":[1]},"o":{"x":[0.631],"y":[0]},"t":30,"s":[0],"e":[100]},{"t":54}]},"e":{"a":0,"k":100},"o":{"a":1,"k":[{"i":{"x":[0.48],"y":[1]},"o":{"x":[0.631],"y":[0]},"t":30,"s":[450],"e":[0]},{"t":54}]},"m":1,"nm":"Trim Paths 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.152941176471,0.96862745098,0.152941176471,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":13.6},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","hd":false}],"ip":0,"op":270,"st":30,"bm":0},{"ddd":0,"ind":3,"ty":4,"nm":"O","sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[394.5,540,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"d":1,"ty":"el","s":{"a":1,"k":[{"i":{"x":[0.364,0.364],"y":[1,1]},"o":{"x":[0.645,0.645],"y":[0,0]},"t":92,"s":[0,0],"e":[62.6,62.6]},{"t":124}]},"p":{"a":0,"k":[0,0]},"nm":"Ellipse Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.152941176471,0.96862745098,0.152941176471,1]},"o":{"a":0,"k":100},"w":{"a":1,"k":[{"i":{"x":[0.371],"y":[1]},"o":{"x":[0.699],"y":[0]},"t":92,"s":[0],"e":[13.6]},{"t":104}]},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","hd":false}],"ip":0,"op":294,"st":54,"bm":0},{"ddd":0,"ind":4,"ty":4,"nm":"A-","sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":1,"k":[{"i":{"x":0.491,"y":1},"o":{"x":0.523,"y":0},"t":48,"s":[494.67,392,0],"e":[504.17,392,0],"to":[1.583,0,0],"ti":[-1.583,0,0]},{"t":78}]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-86.603,50],[86.603,50]],"c":false}},"nm":"Path 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[-52,26]},"s":{"a":0,"k":[104,60]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"tm","s":{"a":0,"k":0},"e":{"a":1,"k":[{"i":{"x":[0.497],"y":[1]},"o":{"x":[0.517],"y":[0]},"t":48,"s":[100],"e":[94.6]},{"i":{"x":[0.497],"y":[1]},"o":{"x":[0.517],"y":[0]},"t":79,"s":[94.6],"e":[0]},{"t":110}]},"o":{"a":0,"k":0},"m":1,"nm":"Trim Paths 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.152941176471,0.96862745098,0.152941176471,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":13.6},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"tr","p":{"a":0,"k":[54.08,14.4]},"a":{"a":0,"k":[54.08,14.4]},"s":{"a":0,"k":[101,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":-45},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":0,"op":111,"st":48,"bm":0},{"ddd":0,"ind":5,"ty":4,"nm":"A","sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":1,"k":[{"i":{"x":0.491,"y":1},"o":{"x":0.523,"y":0},"t":48,"s":[485.92,392,0],"e":[495.42,392,0],"to":[1.583,0,0],"ti":[-1.583,0,0]},{"i":{"x":0.502,"y":0.502},"o":{"x":0.511,"y":0.511},"t":78,"s":[495.42,392,0],"e":[495.42,392,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.491,"y":1},"o":{"x":0.523,"y":0},"t":110,"s":[495.42,392,0],"e":[495.42,555.75,0],"to":[0,0,0],"ti":[0,0,0]},{"t":140}]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"sr","sy":2,"d":1,"pt":{"a":0,"k":3},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"or":{"a":0,"k":100},"os":{"a":0,"k":0},"nm":"Polystar Path 1","hd":false},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.491,"y":1},"o":{"x":0.523,"y":0},"t":48,"s":[0,0],"e":[-36.3,5.9],"to":[-2.714,0.592],"ti":[3.02,-0.658]},{"t":78}]},"a":{"a":0,"k":[-52,26]},"s":{"a":1,"k":[{"i":{"x":[0.491,0.48],"y":[1,1]},"o":{"x":[0.523,0.479],"y":[0,0]},"t":48,"s":[104,60],"e":[28.6,35.1]},{"t":78}]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"st","c":{"a":0,"k":[0.152941176471,0.96862745098,0.152941176471,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":13.6},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","hd":false}],"ip":0,"op":288,"st":48,"bm":0},{"ddd":0,"ind":6,"ty":4,"nm":"Right","sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":1,"k":[{"i":{"x":0.555,"y":1},"o":{"x":0.487,"y":0},"t":76,"s":[640,540,0],"e":[748.8,540,0],"to":[18.133,0,0],"ti":[-18.133,0,0]},{"t":106}]},"a":{"a":0,"k":[100,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[129.125,-106.5],[100,-106.438],[100,106.5]],"c":false}},"nm":"Path 1","hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[1],"y":[0]},"t":74,"s":[12.2],"e":[9.2]},{"i":{"x":[0.558],"y":[1]},"o":{"x":[0.482],"y":[0]},"t":75,"s":[9.2],"e":[9.2]},{"i":{"x":[0.331],"y":[1]},"o":{"x":[0.796],"y":[0]},"t":106,"s":[9.2],"e":[1]},{"t":116}]},"e":{"a":1,"k":[{"i":{"x":[0.569],"y":[0.952]},"o":{"x":[0.491],"y":[0]},"t":44,"s":[100],"e":[17.752]},{"i":{"x":[0.66],"y":[1]},"o":{"x":[0.326],"y":[0.037]},"t":74,"s":[17.752],"e":[15]},{"t":75}]},"o":{"a":0,"k":0},"m":1,"nm":"Trim Paths 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.152941176471,0.96862745098,0.152941176471,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":13.6},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","hd":false}],"ip":0,"op":137,"st":44,"bm":0},{"ddd":0,"ind":7,"ty":4,"nm":"G Outlines","sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":1,"k":[{"i":{"x":0.387,"y":1},"o":{"x":0.718,"y":0},"t":140,"s":[740.145,467.682,0],"e":[740.145,576.557,0],"to":[0,18.146,0],"ti":[0,-18.146,0]},{"t":152}]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[10.854,0],[0,18.281],[-17.995,0],[-6.712,-9.283]],"o":[[0,0],[0,0],[-5.284,7.284],[-18.709,0],[0,-17.995],[10.854,0],[0,0]],"v":[[1.393,-33.676],[28.761,-33.757],[28.697,-18.271],[2.645,-5.252],[-28.775,-36.815],[1.502,-67.807],[27.781,-53.954]],"c":false}},"nm":"G","hd":false},{"ty":"tm","s":{"a":0,"k":0},"e":{"a":1,"k":[{"i":{"x":[0.499],"y":[1]},"o":{"x":[0.564],"y":[0]},"t":116,"s":[16],"e":[100]},{"t":136}]},"o":{"a":0,"k":0},"m":1,"nm":"Trim Paths 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.152941176471,0.96862745098,0.152941176471,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":13.6},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","hd":false}],"ip":116,"op":284,"st":44,"bm":0},{"ddd":0,"ind":8,"ty":4,"nm":"I Outlines","sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[602.77,576.557,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-7.311,0],[7.645,0],[7.645,-73.114],[-7.311,-73.114]],"c":true}},"nm":"I","hd":false},{"ty":"fl","c":{"a":0,"k":[0.152941176471,0.96862745098,0.152941176471,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":1,"k":[{"i":{"x":[0.395,0.395],"y":[1,1]},"o":{"x":[0.608,0.563],"y":[0,0]},"t":84,"s":[98,0],"e":[98,100]},{"t":114}]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"I","bm":0,"hd":false}],"ip":0,"op":282,"st":42,"bm":0},{"ddd":0,"ind":9,"ty":4,"nm":"D Outlines","sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[537.77,576.557,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0.253,17.377],[17.646,-0.182]],"o":[[0,0],[0,0],[17.646,0.273],[0.253,-17.741],[0,0]],"v":[[-11.656,-66.625],[-11.656,-6.58],[6.581,-6.58],[36.977,-36.784],[6.581,-66.625]],"c":true}},"nm":"D","hd":false},{"ty":"tm","s":{"a":0,"k":0},"e":{"a":1,"k":[{"i":{"x":[0.395],"y":[1]},"o":{"x":[0],"y":[0]},"t":110,"s":[0],"e":[100]},{"t":144}]},"o":{"a":0,"k":0},"m":1,"nm":"Trim Paths 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.152941176471,0.96862745098,0.152941176471,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":13.6},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","hd":false}],"ip":103,"op":278,"st":38,"bm":0},{"ddd":0,"ind":10,"ty":4,"nm":"left - D","sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":1,"k":[{"i":{"x":0.617,"y":1},"o":{"x":0.531,"y":0},"t":70,"s":[440,539.875,0],"e":[526.2,539.875,0],"to":[14.367,0,0],"ti":[-14.367,0,0]},{"t":98}]},"a":{"a":0,"k":[-100,-0.125,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-100,-106.75],[-100,106.5]],"c":true}},"nm":"Path 1","hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.62],"y":[1]},"o":{"x":[0.518],"y":[0]},"t":38,"s":[0],"e":[96.8]},{"i":{"x":[0.62],"y":[1]},"o":{"x":[0.518],"y":[0]},"t":68,"s":[96.8],"e":[96.8]},{"i":{"x":[1],"y":[1]},"o":{"x":[1],"y":[0]},"t":98,"s":[96.8],"e":[80.5]},{"t":110}]},"e":{"a":1,"k":[{"i":{"x":[0.493],"y":[1]},"o":{"x":[1],"y":[0]},"t":110,"s":[100],"e":[83.5]},{"t":122}]},"o":{"a":0,"k":0},"m":1,"nm":"Trim Paths 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.152941176471,0.96862745098,0.152941176471,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":13.6},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","hd":false}],"ip":0,"op":123,"st":38,"bm":0},{"ddd":0,"ind":11,"ty":4,"nm":"N -2","sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[537.77,576.557,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[97.159,0.579],[97.179,-66.445],[98.691,-66.398],[143.63,-2.185]],"c":false}},"nm":"N","hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.541],"y":[1]},"o":{"x":[0.559],"y":[0]},"t":94,"s":[100],"e":[0]},{"t":118}]},"e":{"a":0,"k":100},"o":{"a":0,"k":0},"m":1,"nm":"Trim Paths 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.152941176471,0.96862745098,0.152941176471,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":13.6},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","hd":false}],"ip":0,"op":274,"st":34,"bm":0},{"ddd":0,"ind":12,"ty":4,"nm":"Up - N","sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":1,"k":[{"i":{"x":0.469,"y":1},"o":{"x":0.496,"y":0},"t":34,"s":[540,440,0],"e":[577.125,440,0],"to":[6.188,0,0],"ti":[-6.188,0,0]},{"i":{"x":0,"y":0},"o":{"x":1,"y":1},"t":64,"s":[577.125,440,0],"e":[577.125,440,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.454,"y":1},"o":{"x":0.508,"y":0},"t":66,"s":[577.125,440,0],"e":[577.125,510.5,0],"to":[0,11.75,0],"ti":[0,-11.75,0]},{"t":94}]},"a":{"a":0,"k":[0,-100,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0,"y":1},"o":{"x":1,"y":0},"t":64,"s":[{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[106.625,-48],[106.375,-100],[-106.5,-100]],"c":false}],"e":[{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[106.625,-48],[106.375,-100],[-106.5,-100]],"c":false}]},{"i":{"x":0.454,"y":1},"o":{"x":0.508,"y":0},"t":66,"s":[{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[106.625,-48],[106.375,-100],[-106.5,-100]],"c":false}],"e":[{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[106.625,-32.75],[106.375,-100],[-106.5,-100]],"c":false}]},{"t":94}]},"nm":"Path 1","hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.719],"y":[0.991]},"o":{"x":[0.393],"y":[0]},"t":34,"s":[19.65],"e":[17.124]},{"i":{"x":[0.705],"y":[0.689]},"o":{"x":[0.411],"y":[1.277]},"t":35,"s":[17.124],"e":[16.882]},{"i":{"x":[0.471],"y":[1]},"o":{"x":[0.235],"y":[0.434]},"t":44,"s":[16.882],"e":[16.575]},{"i":{"x":[0],"y":[1]},"o":{"x":[1],"y":[0]},"t":64,"s":[16.575],"e":[16.575]},{"i":{"x":[0.454],"y":[1]},"o":{"x":[0.508],"y":[0]},"t":66,"s":[16.575],"e":[0]},{"t":94}]},"e":{"a":1,"k":[{"i":{"x":[0.469],"y":[1]},"o":{"x":[0.496],"y":[0]},"t":34,"s":[100],"e":[22.2]},{"i":{"x":[0],"y":[1]},"o":{"x":[1],"y":[0]},"t":64,"s":[22.2],"e":[22.2]},{"i":{"x":[0.454],"y":[1]},"o":{"x":[0.508],"y":[0]},"t":66,"s":[22.2],"e":[26.5]},{"t":94}]},"o":{"a":0,"k":0},"m":1,"nm":"Trim Paths 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.152941176471,0.96862745098,0.152941176471,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":13.6},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","hd":false}],"ip":0,"op":274,"st":34,"bm":0},{"ddd":0,"ind":13,"ty":4,"nm":"Down L","sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":1,"k":[{"i":{"x":0.395,"y":1},"o":{"x":0.481,"y":0},"t":30,"s":[540,640,0],"e":[416.25,640,0],"to":[-20.625,0,0],"ti":[20.625,0,0]},{"i":{"x":0,"y":0},"o":{"x":1,"y":1},"t":60,"s":[416.25,640,0],"e":[416.25,640,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.379,"y":1},"o":{"x":0.489,"y":0},"t":62,"s":[416.25,640,0],"e":[416.25,570,0],"to":[0,-11.667,0],"ti":[0,11.667,0]},{"t":90}]},"a":{"a":0,"k":[0,100,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.409,"y":1},"o":{"x":0.473,"y":0},"t":30,"s":[{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-106.5,49.438],[-106.563,100],[106.5,100]],"c":false}],"e":[{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-106.5,49.438],[-106.563,100],[106.5,100]],"c":false}]},{"i":{"x":0.379,"y":1},"o":{"x":0.489,"y":0},"t":62,"s":[{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-106.5,49.438],[-106.563,100],[106.5,100]],"c":false}],"e":[{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-106.5,34.313],[-106.563,100],[106.5,100]],"c":false}]},{"t":90}]},"nm":"Path 1","hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.576],"y":[1.04]},"o":{"x":[0.229],"y":[0]},"t":30,"s":[19.3],"e":[22.681]},{"i":{"x":[0.842],"y":[1]},"o":{"x":[0.292],"y":[0.107]},"t":34,"s":[22.681],"e":[16.5]},{"i":{"x":[0.379],"y":[1]},"o":{"x":[0.489],"y":[0]},"t":62,"s":[16.5],"e":[0]},{"t":90}]},"e":{"a":1,"k":[{"i":{"x":[0.395],"y":[1]},"o":{"x":[0.481],"y":[0]},"t":30,"s":[100],"e":[22]},{"i":{"x":[0.395],"y":[1]},"o":{"x":[0.481],"y":[0]},"t":60,"s":[22],"e":[26.15]},{"i":{"x":[0.259],"y":[1]},"o":{"x":[0.554],"y":[0]},"t":90,"s":[26.15],"e":[37.8]},{"t":114}]},"o":{"a":0,"k":0},"m":1,"nm":"Trim Paths 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.152941176471,0.96862745098,0.152941176471,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":13.6},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","hd":false}],"ip":0,"op":270,"st":30,"bm":0}]},{"id":"comp_3","nm":"The Final Pink","layers":[{"ddd":0,"ind":1,"ty":4,"nm":"Shape Layer 3","sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[540,640.25,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"d":1,"ty":"el","s":{"a":0,"k":[74,74]},"p":{"a":0,"k":[0,0]},"nm":"Ellipse Path 1","hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.48],"y":[1]},"o":{"x":[0.631],"y":[0]},"t":30,"s":[0],"e":[100]},{"t":54}]},"e":{"a":0,"k":100},"o":{"a":1,"k":[{"i":{"x":[0.48],"y":[1]},"o":{"x":[0.631],"y":[0]},"t":30,"s":[-270],"e":[0]},{"t":54}]},"m":1,"nm":"Trim Paths 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.96862745098,0.152941176471,0.96862745098,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":13.6},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","hd":false}],"ip":0,"op":270,"st":30,"bm":0},{"ddd":0,"ind":2,"ty":4,"nm":"Shape Layer 2","sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[540,318,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"d":1,"ty":"el","s":{"a":0,"k":[74,74]},"p":{"a":0,"k":[0,0]},"nm":"Ellipse Path 1","hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.48],"y":[1]},"o":{"x":[0.631],"y":[0]},"t":30,"s":[0],"e":[100]},{"t":54}]},"e":{"a":0,"k":100},"o":{"a":1,"k":[{"i":{"x":[0.48],"y":[1]},"o":{"x":[0.631],"y":[0]},"t":30,"s":[450],"e":[0]},{"t":54}]},"m":1,"nm":"Trim Paths 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.96862745098,0.152941176471,0.96862745098,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":13.6},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","hd":false}],"ip":0,"op":270,"st":30,"bm":0},{"ddd":0,"ind":3,"ty":4,"nm":"O","sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[394.5,540,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"d":1,"ty":"el","s":{"a":1,"k":[{"i":{"x":[0.364,0.364],"y":[1,1]},"o":{"x":[0.645,0.645],"y":[0,0]},"t":92,"s":[0,0],"e":[62.6,62.6]},{"t":124}]},"p":{"a":0,"k":[0,0]},"nm":"Ellipse Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.96862745098,0.152941176471,0.96862745098,1]},"o":{"a":0,"k":100},"w":{"a":1,"k":[{"i":{"x":[0.371],"y":[1]},"o":{"x":[0.699],"y":[0]},"t":92,"s":[0],"e":[13.6]},{"t":104}]},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","hd":false}],"ip":0,"op":294,"st":54,"bm":0},{"ddd":0,"ind":4,"ty":4,"nm":"A-","sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":1,"k":[{"i":{"x":0.491,"y":1},"o":{"x":0.523,"y":0},"t":48,"s":[494.67,392,0],"e":[504.17,392,0],"to":[1.583,0,0],"ti":[-1.583,0,0]},{"t":78}]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-86.603,50],[86.603,50]],"c":false}},"nm":"Path 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[-52,26]},"s":{"a":0,"k":[104,60]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"tm","s":{"a":0,"k":0},"e":{"a":1,"k":[{"i":{"x":[0.497],"y":[1]},"o":{"x":[0.517],"y":[0]},"t":48,"s":[100],"e":[94.6]},{"i":{"x":[0.497],"y":[1]},"o":{"x":[0.517],"y":[0]},"t":79,"s":[94.6],"e":[0]},{"t":110}]},"o":{"a":0,"k":0},"m":1,"nm":"Trim Paths 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.96862745098,0.152941176471,0.96862745098,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":13.6},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"tr","p":{"a":0,"k":[54.08,14.4]},"a":{"a":0,"k":[54.08,14.4]},"s":{"a":0,"k":[101,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":-45},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":0,"op":111,"st":48,"bm":0},{"ddd":0,"ind":5,"ty":4,"nm":"A","sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":1,"k":[{"i":{"x":0.491,"y":1},"o":{"x":0.523,"y":0},"t":48,"s":[485.92,392,0],"e":[495.42,392,0],"to":[1.583,0,0],"ti":[-1.583,0,0]},{"i":{"x":0.502,"y":0.502},"o":{"x":0.511,"y":0.511},"t":78,"s":[495.42,392,0],"e":[495.42,392,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.491,"y":1},"o":{"x":0.523,"y":0},"t":110,"s":[495.42,392,0],"e":[495.42,555.75,0],"to":[0,0,0],"ti":[0,0,0]},{"t":140}]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"sr","sy":2,"d":1,"pt":{"a":0,"k":3},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"or":{"a":0,"k":100},"os":{"a":0,"k":0},"nm":"Polystar Path 1","hd":false},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.491,"y":1},"o":{"x":0.523,"y":0},"t":48,"s":[0,0],"e":[-36.3,5.9],"to":[-2.714,0.592],"ti":[3.02,-0.658]},{"t":78}]},"a":{"a":0,"k":[-52,26]},"s":{"a":1,"k":[{"i":{"x":[0.491,0.48],"y":[1,1]},"o":{"x":[0.523,0.479],"y":[0,0]},"t":48,"s":[104,60],"e":[28.6,35.1]},{"t":78}]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"st","c":{"a":0,"k":[0.96862745098,0.152941176471,0.96862745098,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":13.6},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","hd":false}],"ip":0,"op":288,"st":48,"bm":0},{"ddd":0,"ind":6,"ty":4,"nm":"Right","sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":1,"k":[{"i":{"x":0.555,"y":1},"o":{"x":0.487,"y":0},"t":76,"s":[640,540,0],"e":[748.8,540,0],"to":[18.133,0,0],"ti":[-18.133,0,0]},{"t":106}]},"a":{"a":0,"k":[100,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[129.125,-106.5],[100,-106.438],[100,106.5]],"c":false}},"nm":"Path 1","hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[1],"y":[0]},"t":74,"s":[12.2],"e":[9.2]},{"i":{"x":[0.558],"y":[1]},"o":{"x":[0.482],"y":[0]},"t":75,"s":[9.2],"e":[9.2]},{"i":{"x":[0.331],"y":[1]},"o":{"x":[0.796],"y":[0]},"t":106,"s":[9.2],"e":[1]},{"t":116}]},"e":{"a":1,"k":[{"i":{"x":[0.569],"y":[0.952]},"o":{"x":[0.491],"y":[0]},"t":44,"s":[100],"e":[17.752]},{"i":{"x":[0.66],"y":[1]},"o":{"x":[0.326],"y":[0.037]},"t":74,"s":[17.752],"e":[15]},{"t":75}]},"o":{"a":0,"k":0},"m":1,"nm":"Trim Paths 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.96862745098,0.152941176471,0.96862745098,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":13.6},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","hd":false}],"ip":0,"op":137,"st":44,"bm":0},{"ddd":0,"ind":7,"ty":4,"nm":"G Outlines","sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":1,"k":[{"i":{"x":0.387,"y":1},"o":{"x":0.718,"y":0},"t":140,"s":[740.145,467.682,0],"e":[740.145,576.557,0],"to":[0,18.146,0],"ti":[0,-18.146,0]},{"t":152}]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[10.854,0],[0,18.281],[-17.995,0],[-6.712,-9.283]],"o":[[0,0],[0,0],[-5.284,7.284],[-18.709,0],[0,-17.995],[10.854,0],[0,0]],"v":[[1.393,-33.676],[28.761,-33.757],[28.697,-18.271],[2.645,-5.252],[-28.775,-36.815],[1.502,-67.807],[27.781,-53.954]],"c":false}},"nm":"G","hd":false},{"ty":"tm","s":{"a":0,"k":0},"e":{"a":1,"k":[{"i":{"x":[0.499],"y":[1]},"o":{"x":[0.564],"y":[0]},"t":116,"s":[16],"e":[100]},{"t":136}]},"o":{"a":0,"k":0},"m":1,"nm":"Trim Paths 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.96862745098,0.152941176471,0.96862745098,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":13.6},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","hd":false}],"ip":116,"op":284,"st":44,"bm":0},{"ddd":0,"ind":8,"ty":4,"nm":"I Outlines","sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[602.77,576.557,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-7.311,0],[7.645,0],[7.645,-73.114],[-7.311,-73.114]],"c":true}},"nm":"I","hd":false},{"ty":"fl","c":{"a":0,"k":[0.96862745098,0.152941176471,0.96862745098,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":1,"k":[{"i":{"x":[0.395,0.395],"y":[1,1]},"o":{"x":[0.608,0.563],"y":[0,0]},"t":84,"s":[98,0],"e":[98,100]},{"t":114}]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"I","bm":0,"hd":false}],"ip":0,"op":282,"st":42,"bm":0},{"ddd":0,"ind":9,"ty":4,"nm":"D Outlines","sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[537.77,576.557,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0.253,17.377],[17.646,-0.182]],"o":[[0,0],[0,0],[17.646,0.273],[0.253,-17.741],[0,0]],"v":[[-11.656,-66.625],[-11.656,-6.58],[6.581,-6.58],[36.977,-36.784],[6.581,-66.625]],"c":true}},"nm":"D","hd":false},{"ty":"tm","s":{"a":0,"k":0},"e":{"a":1,"k":[{"i":{"x":[0.395],"y":[1]},"o":{"x":[0],"y":[0]},"t":110,"s":[0],"e":[100]},{"t":144}]},"o":{"a":0,"k":0},"m":1,"nm":"Trim Paths 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.96862745098,0.152941176471,0.96862745098,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":13.6},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","hd":false}],"ip":103,"op":278,"st":38,"bm":0},{"ddd":0,"ind":10,"ty":4,"nm":"left - D","sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":1,"k":[{"i":{"x":0.617,"y":1},"o":{"x":0.531,"y":0},"t":70,"s":[440,539.875,0],"e":[526.2,539.875,0],"to":[14.367,0,0],"ti":[-14.367,0,0]},{"t":98}]},"a":{"a":0,"k":[-100,-0.125,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-100,-106.75],[-100,106.5]],"c":true}},"nm":"Path 1","hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.62],"y":[1]},"o":{"x":[0.518],"y":[0]},"t":38,"s":[0],"e":[96.8]},{"i":{"x":[0.62],"y":[1]},"o":{"x":[0.518],"y":[0]},"t":68,"s":[96.8],"e":[96.8]},{"i":{"x":[1],"y":[1]},"o":{"x":[1],"y":[0]},"t":98,"s":[96.8],"e":[80.5]},{"t":110}]},"e":{"a":1,"k":[{"i":{"x":[0.493],"y":[1]},"o":{"x":[1],"y":[0]},"t":110,"s":[100],"e":[83.5]},{"t":122}]},"o":{"a":0,"k":0},"m":1,"nm":"Trim Paths 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.96862745098,0.152941176471,0.96862745098,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":13.6},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","hd":false}],"ip":0,"op":123,"st":38,"bm":0},{"ddd":0,"ind":11,"ty":4,"nm":"N -2","sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[537.77,576.557,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[97.159,0.579],[97.179,-66.445],[98.691,-66.398],[143.63,-2.185]],"c":false}},"nm":"N","hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.541],"y":[1]},"o":{"x":[0.559],"y":[0]},"t":94,"s":[100],"e":[0]},{"t":118}]},"e":{"a":0,"k":100},"o":{"a":0,"k":0},"m":1,"nm":"Trim Paths 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.96862745098,0.152941176471,0.96862745098,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":13.6},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","hd":false}],"ip":0,"op":274,"st":34,"bm":0},{"ddd":0,"ind":12,"ty":4,"nm":"Up - N","sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":1,"k":[{"i":{"x":0.469,"y":1},"o":{"x":0.496,"y":0},"t":34,"s":[540,440,0],"e":[577.125,440,0],"to":[6.188,0,0],"ti":[-6.188,0,0]},{"i":{"x":0,"y":0},"o":{"x":1,"y":1},"t":64,"s":[577.125,440,0],"e":[577.125,440,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.454,"y":1},"o":{"x":0.508,"y":0},"t":66,"s":[577.125,440,0],"e":[577.125,510.5,0],"to":[0,11.75,0],"ti":[0,-11.75,0]},{"t":94}]},"a":{"a":0,"k":[0,-100,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0,"y":1},"o":{"x":1,"y":0},"t":64,"s":[{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[106.625,-48],[106.375,-100],[-106.5,-100]],"c":false}],"e":[{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[106.625,-48],[106.375,-100],[-106.5,-100]],"c":false}]},{"i":{"x":0.454,"y":1},"o":{"x":0.508,"y":0},"t":66,"s":[{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[106.625,-48],[106.375,-100],[-106.5,-100]],"c":false}],"e":[{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[106.625,-32.75],[106.375,-100],[-106.5,-100]],"c":false}]},{"t":94}]},"nm":"Path 1","hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.719],"y":[0.991]},"o":{"x":[0.393],"y":[0]},"t":34,"s":[19.65],"e":[17.124]},{"i":{"x":[0.705],"y":[0.689]},"o":{"x":[0.411],"y":[1.277]},"t":35,"s":[17.124],"e":[16.882]},{"i":{"x":[0.471],"y":[1]},"o":{"x":[0.235],"y":[0.434]},"t":44,"s":[16.882],"e":[16.575]},{"i":{"x":[0],"y":[1]},"o":{"x":[1],"y":[0]},"t":64,"s":[16.575],"e":[16.575]},{"i":{"x":[0.454],"y":[1]},"o":{"x":[0.508],"y":[0]},"t":66,"s":[16.575],"e":[0]},{"t":94}]},"e":{"a":1,"k":[{"i":{"x":[0.469],"y":[1]},"o":{"x":[0.496],"y":[0]},"t":34,"s":[100],"e":[22.2]},{"i":{"x":[0],"y":[1]},"o":{"x":[1],"y":[0]},"t":64,"s":[22.2],"e":[22.2]},{"i":{"x":[0.454],"y":[1]},"o":{"x":[0.508],"y":[0]},"t":66,"s":[22.2],"e":[26.5]},{"t":94}]},"o":{"a":0,"k":0},"m":1,"nm":"Trim Paths 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.96862745098,0.152941176471,0.96862745098,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":13.6},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","hd":false}],"ip":0,"op":274,"st":34,"bm":0},{"ddd":0,"ind":13,"ty":4,"nm":"Down L","sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":1,"k":[{"i":{"x":0.395,"y":1},"o":{"x":0.481,"y":0},"t":30,"s":[540,640,0],"e":[416.25,640,0],"to":[-20.625,0,0],"ti":[20.625,0,0]},{"i":{"x":0,"y":0},"o":{"x":1,"y":1},"t":60,"s":[416.25,640,0],"e":[416.25,640,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.379,"y":1},"o":{"x":0.489,"y":0},"t":62,"s":[416.25,640,0],"e":[416.25,570,0],"to":[0,-11.667,0],"ti":[0,11.667,0]},{"t":90}]},"a":{"a":0,"k":[0,100,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.409,"y":1},"o":{"x":0.473,"y":0},"t":30,"s":[{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-106.5,49.438],[-106.563,100],[106.5,100]],"c":false}],"e":[{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-106.5,49.438],[-106.563,100],[106.5,100]],"c":false}]},{"i":{"x":0.379,"y":1},"o":{"x":0.489,"y":0},"t":62,"s":[{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-106.5,49.438],[-106.563,100],[106.5,100]],"c":false}],"e":[{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-106.5,34.313],[-106.563,100],[106.5,100]],"c":false}]},{"t":90}]},"nm":"Path 1","hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.576],"y":[1.04]},"o":{"x":[0.229],"y":[0]},"t":30,"s":[19.3],"e":[22.681]},{"i":{"x":[0.842],"y":[1]},"o":{"x":[0.292],"y":[0.107]},"t":34,"s":[22.681],"e":[16.5]},{"i":{"x":[0.379],"y":[1]},"o":{"x":[0.489],"y":[0]},"t":62,"s":[16.5],"e":[0]},{"t":90}]},"e":{"a":1,"k":[{"i":{"x":[0.395],"y":[1]},"o":{"x":[0.481],"y":[0]},"t":30,"s":[100],"e":[22]},{"i":{"x":[0.395],"y":[1]},"o":{"x":[0.481],"y":[0]},"t":60,"s":[22],"e":[26.15]},{"i":{"x":[0.259],"y":[1]},"o":{"x":[0.554],"y":[0]},"t":90,"s":[26.15],"e":[37.8]},{"t":114}]},"o":{"a":0,"k":0},"m":1,"nm":"Trim Paths 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.96862745098,0.152941176471,0.96862745098,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":13.6},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","hd":false}],"ip":0,"op":270,"st":30,"bm":0}]}],"layers":[{"ddd":0,"ind":1,"ty":0,"nm":"The Combine","refId":"comp_0","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.477],"y":[1]},"o":{"x":[0.48],"y":[0]},"t":0,"s":[0],"e":[100]},{"i":{"x":[0.477],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":14,"s":[100],"e":[100]},{"i":{"x":[0.52],"y":[1]},"o":{"x":[0.523],"y":[0]},"t":160,"s":[100],"e":[0]},{"t":174}]},"r":{"a":0,"k":0},"p":{"a":0,"k":[540,540,0]},"a":{"a":0,"k":[540,540,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"w":1080,"h":1080,"ip":0,"op":226,"st":-14,"bm":0}],"markers":[]} --------------------------------------------------------------------------------