diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..0fa6b67 --- /dev/null +++ b/.gitignore @@ -0,0 +1,46 @@ +# Miscellaneous +*.class +*.log +*.pyc +*.swp +.DS_Store +.atom/ +.buildlog/ +.history +.svn/ + +# IntelliJ related +*.iml +*.ipr +*.iws +.idea/ + +# The .vscode folder contains launch configuration and tasks you configure in +# VS Code which you may wish to be included in version control, so this line +# is commented out by default. +#.vscode/ + +# Flutter/Dart/Pub related +**/doc/api/ +**/ios/Flutter/.last_build_id +.dart_tool/ +.flutter-plugins +.flutter-plugins-dependencies +.packages +.pub-cache/ +.pub/ +/build/ + +# Web related +lib/generated_plugin_registrant.dart + +# Symbolication related +app.*.symbols + +# Obfuscation related +app.*.map.json + +# Android Studio will place build artifacts here +/android/app/debug +/android/app/profile +/android/app/release diff --git a/.metadata b/.metadata new file mode 100644 index 0000000..7c53afe --- /dev/null +++ b/.metadata @@ -0,0 +1,10 @@ +# This file tracks properties of this Flutter project. +# Used by Flutter tool to assess capabilities and perform upgrades etc. +# +# This file should be version controlled and should not be manually edited. + +version: + revision: ce9aee66060314013e7b9ae1a2e3670012691eb6 + channel: master + +project_type: app diff --git a/android/.gitignore b/android/.gitignore new file mode 100644 index 0000000..6f56801 --- /dev/null +++ b/android/.gitignore @@ -0,0 +1,13 @@ +gradle-wrapper.jar +/.gradle +/captures/ +/gradlew +/gradlew.bat +/local.properties +GeneratedPluginRegistrant.java + +# Remember to never publicly share your keystore. +# See https://flutter.dev/docs/deployment/android#reference-the-keystore-from-the-app +key.properties +**/*.keystore +**/*.jks diff --git a/android/app/build.gradle b/android/app/build.gradle new file mode 100644 index 0000000..863c059 --- /dev/null +++ b/android/app/build.gradle @@ -0,0 +1,68 @@ +def localProperties = new Properties() +def localPropertiesFile = rootProject.file('local.properties') +if (localPropertiesFile.exists()) { + localPropertiesFile.withReader('UTF-8') { reader -> + localProperties.load(reader) + } +} + +def flutterRoot = localProperties.getProperty('flutter.sdk') +if (flutterRoot == null) { + throw new GradleException("Flutter SDK not found. Define location with flutter.sdk in the local.properties file.") +} + +def flutterVersionCode = localProperties.getProperty('flutter.versionCode') +if (flutterVersionCode == null) { + flutterVersionCode = '1' +} + +def flutterVersionName = localProperties.getProperty('flutter.versionName') +if (flutterVersionName == null) { + flutterVersionName = '1.0' +} + +apply plugin: 'com.android.application' +apply plugin: 'kotlin-android' +apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle" + +android { + compileSdkVersion 30 + + compileOptions { + sourceCompatibility JavaVersion.VERSION_1_8 + targetCompatibility JavaVersion.VERSION_1_8 + } + + kotlinOptions { + jvmTarget = '1.8' + } + + sourceSets { + main.java.srcDirs += 'src/main/kotlin' + } + + defaultConfig { + // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html). + applicationId "com.example.binanceapp" + minSdkVersion 16 + targetSdkVersion 30 + versionCode flutterVersionCode.toInteger() + versionName flutterVersionName + } + + buildTypes { + release { + // TODO: Add your own signing config for the release build. + // Signing with the debug keys for now, so `flutter run --release` works. + signingConfig signingConfigs.debug + } + } +} + +flutter { + source '../..' +} + +dependencies { + implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version" +} diff --git a/android/app/src/debug/AndroidManifest.xml b/android/app/src/debug/AndroidManifest.xml new file mode 100644 index 0000000..5670415 --- /dev/null +++ b/android/app/src/debug/AndroidManifest.xml @@ -0,0 +1,7 @@ + + + + diff --git a/android/app/src/main/AndroidManifest.xml b/android/app/src/main/AndroidManifest.xml new file mode 100644 index 0000000..0d4c198 --- /dev/null +++ b/android/app/src/main/AndroidManifest.xml @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + diff --git a/android/app/src/main/kotlin/com/example/binanceapp/MainActivity.kt b/android/app/src/main/kotlin/com/example/binanceapp/MainActivity.kt new file mode 100644 index 0000000..1141da1 --- /dev/null +++ b/android/app/src/main/kotlin/com/example/binanceapp/MainActivity.kt @@ -0,0 +1,6 @@ +package com.example.binanceapp + +import io.flutter.embedding.android.FlutterActivity + +class MainActivity: FlutterActivity() { +} diff --git a/android/app/src/main/res/drawable-v21/launch_background.xml b/android/app/src/main/res/drawable-v21/launch_background.xml new file mode 100644 index 0000000..f74085f --- /dev/null +++ b/android/app/src/main/res/drawable-v21/launch_background.xml @@ -0,0 +1,12 @@ + + + + + + + + diff --git a/android/app/src/main/res/drawable/launch_background.xml b/android/app/src/main/res/drawable/launch_background.xml new file mode 100644 index 0000000..304732f --- /dev/null +++ b/android/app/src/main/res/drawable/launch_background.xml @@ -0,0 +1,12 @@ + + + + + + + + diff --git a/android/app/src/main/res/mipmap-hdpi/ic_launcher.png b/android/app/src/main/res/mipmap-hdpi/ic_launcher.png new file mode 100644 index 0000000..db77bb4 Binary files /dev/null and b/android/app/src/main/res/mipmap-hdpi/ic_launcher.png differ diff --git a/android/app/src/main/res/mipmap-mdpi/ic_launcher.png b/android/app/src/main/res/mipmap-mdpi/ic_launcher.png new file mode 100644 index 0000000..17987b7 Binary files /dev/null and b/android/app/src/main/res/mipmap-mdpi/ic_launcher.png differ diff --git a/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png b/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png new file mode 100644 index 0000000..09d4391 Binary files /dev/null and b/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png differ diff --git a/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png b/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png new file mode 100644 index 0000000..d5f1c8d Binary files /dev/null and b/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png differ diff --git a/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png b/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png new file mode 100644 index 0000000..4d6372e Binary files /dev/null and b/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png differ diff --git a/android/app/src/main/res/values-night/styles.xml b/android/app/src/main/res/values-night/styles.xml new file mode 100644 index 0000000..449a9f9 --- /dev/null +++ b/android/app/src/main/res/values-night/styles.xml @@ -0,0 +1,18 @@ + + + + + + + diff --git a/android/app/src/main/res/values/styles.xml b/android/app/src/main/res/values/styles.xml new file mode 100644 index 0000000..d74aa35 --- /dev/null +++ b/android/app/src/main/res/values/styles.xml @@ -0,0 +1,18 @@ + + + + + + + diff --git a/android/app/src/profile/AndroidManifest.xml b/android/app/src/profile/AndroidManifest.xml new file mode 100644 index 0000000..5670415 --- /dev/null +++ b/android/app/src/profile/AndroidManifest.xml @@ -0,0 +1,7 @@ + + + + diff --git a/android/build.gradle b/android/build.gradle new file mode 100644 index 0000000..ed45c65 --- /dev/null +++ b/android/build.gradle @@ -0,0 +1,29 @@ +buildscript { + ext.kotlin_version = '1.3.50' + repositories { + google() + mavenCentral() + } + + dependencies { + classpath 'com.android.tools.build:gradle:4.1.0' + classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" + } +} + +allprojects { + repositories { + google() + mavenCentral() + } +} + +rootProject.buildDir = '../build' +subprojects { + project.buildDir = "${rootProject.buildDir}/${project.name}" + project.evaluationDependsOn(':app') +} + +task clean(type: Delete) { + delete rootProject.buildDir +} diff --git a/android/gradle.properties b/android/gradle.properties new file mode 100644 index 0000000..94adc3a --- /dev/null +++ b/android/gradle.properties @@ -0,0 +1,3 @@ +org.gradle.jvmargs=-Xmx1536M +android.useAndroidX=true +android.enableJetifier=true diff --git a/android/gradle/wrapper/gradle-wrapper.properties b/android/gradle/wrapper/gradle-wrapper.properties new file mode 100644 index 0000000..bc6a58a --- /dev/null +++ b/android/gradle/wrapper/gradle-wrapper.properties @@ -0,0 +1,6 @@ +#Fri Jun 23 08:50:38 CEST 2017 +distributionBase=GRADLE_USER_HOME +distributionPath=wrapper/dists +zipStoreBase=GRADLE_USER_HOME +zipStorePath=wrapper/dists +distributionUrl=https\://services.gradle.org/distributions/gradle-6.7-all.zip diff --git a/android/settings.gradle b/android/settings.gradle new file mode 100644 index 0000000..44e62bc --- /dev/null +++ b/android/settings.gradle @@ -0,0 +1,11 @@ +include ':app' + +def localPropertiesFile = new File(rootProject.projectDir, "local.properties") +def properties = new Properties() + +assert localPropertiesFile.exists() +localPropertiesFile.withReader("UTF-8") { reader -> properties.load(reader) } + +def flutterSdkPath = properties.getProperty("flutter.sdk") +assert flutterSdkPath != null, "flutter.sdk not set in local.properties" +apply from: "$flutterSdkPath/packages/flutter_tools/gradle/app_plugin_loader.gradle" diff --git a/ios/.gitignore b/ios/.gitignore new file mode 100644 index 0000000..151026b --- /dev/null +++ b/ios/.gitignore @@ -0,0 +1,33 @@ +*.mode1v3 +*.mode2v3 +*.moved-aside +*.pbxuser +*.perspectivev3 +**/*sync/ +.sconsign.dblite +.tags* +**/.vagrant/ +**/DerivedData/ +Icon? +**/Pods/ +**/.symlinks/ +profile +xcuserdata +**/.generated/ +Flutter/App.framework +Flutter/Flutter.framework +Flutter/Flutter.podspec +Flutter/Generated.xcconfig +Flutter/ephemeral/ +Flutter/app.flx +Flutter/app.zip +Flutter/flutter_assets/ +Flutter/flutter_export_environment.sh +ServiceDefinitions.json +Runner/GeneratedPluginRegistrant.* + +# Exceptions to above rules. +!default.mode1v3 +!default.mode2v3 +!default.pbxuser +!default.perspectivev3 diff --git a/ios/Flutter/AppFrameworkInfo.plist b/ios/Flutter/AppFrameworkInfo.plist new file mode 100644 index 0000000..9367d48 --- /dev/null +++ b/ios/Flutter/AppFrameworkInfo.plist @@ -0,0 +1,26 @@ + + + + + CFBundleDevelopmentRegion + en + CFBundleExecutable + App + CFBundleIdentifier + io.flutter.flutter.app + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + App + CFBundlePackageType + FMWK + CFBundleShortVersionString + 1.0 + CFBundleSignature + ???? + CFBundleVersion + 1.0 + MinimumOSVersion + 8.0 + + diff --git a/ios/Flutter/Debug.xcconfig b/ios/Flutter/Debug.xcconfig new file mode 100644 index 0000000..592ceee --- /dev/null +++ b/ios/Flutter/Debug.xcconfig @@ -0,0 +1 @@ +#include "Generated.xcconfig" diff --git a/ios/Flutter/Release.xcconfig b/ios/Flutter/Release.xcconfig new file mode 100644 index 0000000..592ceee --- /dev/null +++ b/ios/Flutter/Release.xcconfig @@ -0,0 +1 @@ +#include "Generated.xcconfig" diff --git a/ios/Runner.xcodeproj/project.pbxproj b/ios/Runner.xcodeproj/project.pbxproj new file mode 100644 index 0000000..ea6f259 --- /dev/null +++ b/ios/Runner.xcodeproj/project.pbxproj @@ -0,0 +1,487 @@ +// !$*UTF8*$! +{ + archiveVersion = 1; + classes = { + }; + objectVersion = 50; + objects = { + +/* Begin PBXBuildFile section */ + 1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */ = {isa = PBXBuildFile; fileRef = 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */; }; + 3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */ = {isa = PBXBuildFile; fileRef = 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */; }; + 74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 74858FAE1ED2DC5600515810 /* AppDelegate.swift */; }; + 97C146FC1CF9000F007C117D /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FA1CF9000F007C117D /* Main.storyboard */; }; + 97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FD1CF9000F007C117D /* Assets.xcassets */; }; + 97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */; }; +/* End PBXBuildFile section */ + +/* Begin PBXCopyFilesBuildPhase section */ + 9705A1C41CF9048500538489 /* Embed Frameworks */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = ""; + dstSubfolderSpec = 10; + files = ( + ); + name = "Embed Frameworks"; + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXCopyFilesBuildPhase section */ + +/* Begin PBXFileReference section */ + 1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GeneratedPluginRegistrant.h; sourceTree = ""; }; + 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GeneratedPluginRegistrant.m; sourceTree = ""; }; + 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = AppFrameworkInfo.plist; path = Flutter/AppFrameworkInfo.plist; sourceTree = ""; }; + 74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Runner-Bridging-Header.h"; sourceTree = ""; }; + 74858FAE1ED2DC5600515810 /* AppDelegate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; + 7AFA3C8E1D35360C0083082E /* Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = Release.xcconfig; path = Flutter/Release.xcconfig; sourceTree = ""; }; + 9740EEB21CF90195004384FC /* Debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Debug.xcconfig; path = Flutter/Debug.xcconfig; sourceTree = ""; }; + 9740EEB31CF90195004384FC /* Generated.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Generated.xcconfig; path = Flutter/Generated.xcconfig; sourceTree = ""; }; + 97C146EE1CF9000F007C117D /* Runner.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Runner.app; sourceTree = BUILT_PRODUCTS_DIR; }; + 97C146FB1CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; }; + 97C146FD1CF9000F007C117D /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; }; + 97C147001CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = ""; }; + 97C147021CF9000F007C117D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; +/* End PBXFileReference section */ + +/* Begin PBXFrameworksBuildPhase section */ + 97C146EB1CF9000F007C117D /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXFrameworksBuildPhase section */ + +/* Begin PBXGroup section */ + 9740EEB11CF90186004384FC /* Flutter */ = { + isa = PBXGroup; + children = ( + 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */, + 9740EEB21CF90195004384FC /* Debug.xcconfig */, + 7AFA3C8E1D35360C0083082E /* Release.xcconfig */, + 9740EEB31CF90195004384FC /* Generated.xcconfig */, + ); + name = Flutter; + sourceTree = ""; + }; + 97C146E51CF9000F007C117D = { + isa = PBXGroup; + children = ( + 9740EEB11CF90186004384FC /* Flutter */, + 97C146F01CF9000F007C117D /* Runner */, + 97C146EF1CF9000F007C117D /* Products */, + ); + sourceTree = ""; + }; + 97C146EF1CF9000F007C117D /* Products */ = { + isa = PBXGroup; + children = ( + 97C146EE1CF9000F007C117D /* Runner.app */, + ); + name = Products; + sourceTree = ""; + }; + 97C146F01CF9000F007C117D /* Runner */ = { + isa = PBXGroup; + children = ( + 97C146FA1CF9000F007C117D /* Main.storyboard */, + 97C146FD1CF9000F007C117D /* Assets.xcassets */, + 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */, + 97C147021CF9000F007C117D /* Info.plist */, + 1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */, + 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */, + 74858FAE1ED2DC5600515810 /* AppDelegate.swift */, + 74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */, + ); + path = Runner; + sourceTree = ""; + }; +/* End PBXGroup section */ + +/* Begin PBXNativeTarget section */ + 97C146ED1CF9000F007C117D /* Runner */ = { + isa = PBXNativeTarget; + buildConfigurationList = 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */; + buildPhases = ( + 9740EEB61CF901F6004384FC /* Run Script */, + 97C146EA1CF9000F007C117D /* Sources */, + 97C146EB1CF9000F007C117D /* Frameworks */, + 97C146EC1CF9000F007C117D /* Resources */, + 9705A1C41CF9048500538489 /* Embed Frameworks */, + 3B06AD1E1E4923F5004D2608 /* Thin Binary */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = Runner; + productName = Runner; + productReference = 97C146EE1CF9000F007C117D /* Runner.app */; + productType = "com.apple.product-type.application"; + }; +/* End PBXNativeTarget section */ + +/* Begin PBXProject section */ + 97C146E61CF9000F007C117D /* Project object */ = { + isa = PBXProject; + attributes = { + LastUpgradeCheck = 1250; + ORGANIZATIONNAME = ""; + TargetAttributes = { + 97C146ED1CF9000F007C117D = { + CreatedOnToolsVersion = 7.3.1; + LastSwiftMigration = 1100; + }; + }; + }; + buildConfigurationList = 97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */; + compatibilityVersion = "Xcode 9.3"; + developmentRegion = en; + hasScannedForEncodings = 0; + knownRegions = ( + en, + Base, + ); + mainGroup = 97C146E51CF9000F007C117D; + productRefGroup = 97C146EF1CF9000F007C117D /* Products */; + projectDirPath = ""; + projectRoot = ""; + targets = ( + 97C146ED1CF9000F007C117D /* Runner */, + ); + }; +/* End PBXProject section */ + +/* Begin PBXResourcesBuildPhase section */ + 97C146EC1CF9000F007C117D /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */, + 3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */, + 97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */, + 97C146FC1CF9000F007C117D /* Main.storyboard in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXResourcesBuildPhase section */ + +/* Begin PBXShellScriptBuildPhase section */ + 3B06AD1E1E4923F5004D2608 /* Thin Binary */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputPaths = ( + ); + name = "Thin Binary"; + outputPaths = ( + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" embed_and_thin"; + }; + 9740EEB61CF901F6004384FC /* Run Script */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputPaths = ( + ); + name = "Run Script"; + outputPaths = ( + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" build"; + }; +/* End PBXShellScriptBuildPhase section */ + +/* Begin PBXSourcesBuildPhase section */ + 97C146EA1CF9000F007C117D /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */, + 1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXSourcesBuildPhase section */ + +/* Begin PBXVariantGroup section */ + 97C146FA1CF9000F007C117D /* Main.storyboard */ = { + isa = PBXVariantGroup; + children = ( + 97C146FB1CF9000F007C117D /* Base */, + ); + name = Main.storyboard; + sourceTree = ""; + }; + 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */ = { + isa = PBXVariantGroup; + children = ( + 97C147001CF9000F007C117D /* Base */, + ); + name = LaunchScreen.storyboard; + sourceTree = ""; + }; +/* End PBXVariantGroup section */ + +/* Begin XCBuildConfiguration section */ + 249021D3217E4FDB00AE95B9 /* Profile */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_NONNULL = YES; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + ENABLE_NS_ASSERTIONS = NO; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_C_LANGUAGE_STANDARD = gnu99; + GCC_NO_COMMON_BLOCKS = YES; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + MTL_ENABLE_DEBUG_INFO = NO; + SDKROOT = iphoneos; + SUPPORTED_PLATFORMS = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Profile; + }; + 249021D4217E4FDB00AE95B9 /* Profile */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CLANG_ENABLE_MODULES = YES; + CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; + DEVELOPMENT_TEAM = 277A9Y83LN; + ENABLE_BITCODE = NO; + INFOPLIST_FILE = Runner/Info.plist; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + PRODUCT_BUNDLE_IDENTIFIER = com.example.binanceapp; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; + SWIFT_VERSION = 5.0; + VERSIONING_SYSTEM = "apple-generic"; + }; + name = Profile; + }; + 97C147031CF9000F007C117D /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_NONNULL = YES; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = dwarf; + ENABLE_STRICT_OBJC_MSGSEND = YES; + ENABLE_TESTABILITY = YES; + GCC_C_LANGUAGE_STANDARD = gnu99; + GCC_DYNAMIC_NO_PIC = NO; + GCC_NO_COMMON_BLOCKS = YES; + GCC_OPTIMIZATION_LEVEL = 0; + GCC_PREPROCESSOR_DEFINITIONS = ( + "DEBUG=1", + "$(inherited)", + ); + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + MTL_ENABLE_DEBUG_INFO = YES; + ONLY_ACTIVE_ARCH = YES; + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + 97C147041CF9000F007C117D /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_NONNULL = YES; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + ENABLE_NS_ASSERTIONS = NO; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_C_LANGUAGE_STANDARD = gnu99; + GCC_NO_COMMON_BLOCKS = YES; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + MTL_ENABLE_DEBUG_INFO = NO; + SDKROOT = iphoneos; + SUPPORTED_PLATFORMS = iphoneos; + SWIFT_COMPILATION_MODE = wholemodule; + SWIFT_OPTIMIZATION_LEVEL = "-O"; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + 97C147061CF9000F007C117D /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 9740EEB21CF90195004384FC /* Debug.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CLANG_ENABLE_MODULES = YES; + CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; + DEVELOPMENT_TEAM = 277A9Y83LN; + ENABLE_BITCODE = NO; + INFOPLIST_FILE = Runner/Info.plist; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + PRODUCT_BUNDLE_IDENTIFIER = com.example.binanceapp; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + SWIFT_VERSION = 5.0; + VERSIONING_SYSTEM = "apple-generic"; + }; + name = Debug; + }; + 97C147071CF9000F007C117D /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CLANG_ENABLE_MODULES = YES; + CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; + DEVELOPMENT_TEAM = 277A9Y83LN; + ENABLE_BITCODE = NO; + INFOPLIST_FILE = Runner/Info.plist; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + PRODUCT_BUNDLE_IDENTIFIER = com.example.binanceapp; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; + SWIFT_VERSION = 5.0; + VERSIONING_SYSTEM = "apple-generic"; + }; + name = Release; + }; +/* End XCBuildConfiguration section */ + +/* Begin XCConfigurationList section */ + 97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 97C147031CF9000F007C117D /* Debug */, + 97C147041CF9000F007C117D /* Release */, + 249021D3217E4FDB00AE95B9 /* Profile */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 97C147061CF9000F007C117D /* Debug */, + 97C147071CF9000F007C117D /* Release */, + 249021D4217E4FDB00AE95B9 /* Profile */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; +/* End XCConfigurationList section */ + }; + rootObject = 97C146E61CF9000F007C117D /* Project object */; +} diff --git a/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata new file mode 100644 index 0000000..919434a --- /dev/null +++ b/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata @@ -0,0 +1,7 @@ + + + + + diff --git a/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist new file mode 100644 index 0000000..18d9810 --- /dev/null +++ b/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist @@ -0,0 +1,8 @@ + + + + + IDEDidComputeMac32BitWarning + + + diff --git a/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings b/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings new file mode 100644 index 0000000..f9b0d7c --- /dev/null +++ b/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings @@ -0,0 +1,8 @@ + + + + + PreviewsEnabled + + + diff --git a/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme b/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme new file mode 100644 index 0000000..7785fe3 --- /dev/null +++ b/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme @@ -0,0 +1,87 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/ios/Runner.xcworkspace/contents.xcworkspacedata b/ios/Runner.xcworkspace/contents.xcworkspacedata new file mode 100644 index 0000000..1d526a1 --- /dev/null +++ b/ios/Runner.xcworkspace/contents.xcworkspacedata @@ -0,0 +1,7 @@ + + + + + diff --git a/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist new file mode 100644 index 0000000..18d9810 --- /dev/null +++ b/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist @@ -0,0 +1,8 @@ + + + + + IDEDidComputeMac32BitWarning + + + diff --git a/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings b/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings new file mode 100644 index 0000000..f9b0d7c --- /dev/null +++ b/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings @@ -0,0 +1,8 @@ + + + + + PreviewsEnabled + + + diff --git a/ios/Runner/AppDelegate.swift b/ios/Runner/AppDelegate.swift new file mode 100644 index 0000000..70693e4 --- /dev/null +++ b/ios/Runner/AppDelegate.swift @@ -0,0 +1,13 @@ +import UIKit +import Flutter + +@UIApplicationMain +@objc class AppDelegate: FlutterAppDelegate { + override func application( + _ application: UIApplication, + didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]? + ) -> Bool { + GeneratedPluginRegistrant.register(with: self) + return super.application(application, didFinishLaunchingWithOptions: launchOptions) + } +} diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json new file mode 100644 index 0000000..d36b1fa --- /dev/null +++ b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json @@ -0,0 +1,122 @@ +{ + "images" : [ + { + "size" : "20x20", + "idiom" : "iphone", + "filename" : "Icon-App-20x20@2x.png", + "scale" : "2x" + }, + { + "size" : "20x20", + "idiom" : "iphone", + "filename" : "Icon-App-20x20@3x.png", + "scale" : "3x" + }, + { + "size" : "29x29", + "idiom" : "iphone", + "filename" : "Icon-App-29x29@1x.png", + "scale" : "1x" + }, + { + "size" : "29x29", + "idiom" : "iphone", + "filename" : "Icon-App-29x29@2x.png", + "scale" : "2x" + }, + { + "size" : "29x29", + "idiom" : "iphone", + "filename" : "Icon-App-29x29@3x.png", + "scale" : "3x" + }, + { + "size" : "40x40", + "idiom" : "iphone", + "filename" : "Icon-App-40x40@2x.png", + "scale" : "2x" + }, + { + "size" : "40x40", + "idiom" : "iphone", + "filename" : "Icon-App-40x40@3x.png", + "scale" : "3x" + }, + { + "size" : "60x60", + "idiom" : "iphone", + "filename" : "Icon-App-60x60@2x.png", + "scale" : "2x" + }, + { + "size" : "60x60", + "idiom" : "iphone", + "filename" : "Icon-App-60x60@3x.png", + "scale" : "3x" + }, + { + "size" : "20x20", + "idiom" : "ipad", + "filename" : "Icon-App-20x20@1x.png", + "scale" : "1x" + }, + { + "size" : "20x20", + "idiom" : "ipad", + "filename" : "Icon-App-20x20@2x.png", + "scale" : "2x" + }, + { + "size" : "29x29", + "idiom" : "ipad", + "filename" : "Icon-App-29x29@1x.png", + "scale" : "1x" + }, + { + "size" : "29x29", + "idiom" : "ipad", + "filename" : "Icon-App-29x29@2x.png", + "scale" : "2x" + }, + { + "size" : "40x40", + "idiom" : "ipad", + "filename" : "Icon-App-40x40@1x.png", + "scale" : "1x" + }, + { + "size" : "40x40", + "idiom" : "ipad", + "filename" : "Icon-App-40x40@2x.png", + "scale" : "2x" + }, + { + "size" : "76x76", + "idiom" : "ipad", + "filename" : "Icon-App-76x76@1x.png", + "scale" : "1x" + }, + { + "size" : "76x76", + "idiom" : "ipad", + "filename" : "Icon-App-76x76@2x.png", + "scale" : "2x" + }, + { + "size" : "83.5x83.5", + "idiom" : "ipad", + "filename" : "Icon-App-83.5x83.5@2x.png", + "scale" : "2x" + }, + { + "size" : "1024x1024", + "idiom" : "ios-marketing", + "filename" : "Icon-App-1024x1024@1x.png", + "scale" : "1x" + } + ], + "info" : { + "version" : 1, + "author" : "xcode" + } +} diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png new file mode 100644 index 0000000..dc9ada4 Binary files /dev/null and b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png differ diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png new file mode 100644 index 0000000..28c6bf0 Binary files /dev/null and b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png differ diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png new file mode 100644 index 0000000..2ccbfd9 Binary files /dev/null and b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png differ diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png new file mode 100644 index 0000000..f091b6b Binary files /dev/null and b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png differ diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png new file mode 100644 index 0000000..4cde121 Binary files /dev/null and b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png differ diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png new file mode 100644 index 0000000..d0ef06e Binary files /dev/null and b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png differ diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png new file mode 100644 index 0000000..dcdc230 Binary files /dev/null and b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png differ diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png new file mode 100644 index 0000000..2ccbfd9 Binary files /dev/null and b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png differ diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png new file mode 100644 index 0000000..c8f9ed8 Binary files /dev/null and b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png differ diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png new file mode 100644 index 0000000..a6d6b86 Binary files /dev/null and b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png differ diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png new file mode 100644 index 0000000..a6d6b86 Binary files /dev/null and b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png differ diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png new file mode 100644 index 0000000..75b2d16 Binary files /dev/null and b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png differ diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png new file mode 100644 index 0000000..c4df70d Binary files /dev/null and b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png differ diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png new file mode 100644 index 0000000..6a84f41 Binary files /dev/null and b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png differ diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png new file mode 100644 index 0000000..d0e1f58 Binary files /dev/null and b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png differ diff --git a/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json b/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json new file mode 100644 index 0000000..0bedcf2 --- /dev/null +++ b/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json @@ -0,0 +1,23 @@ +{ + "images" : [ + { + "idiom" : "universal", + "filename" : "LaunchImage.png", + "scale" : "1x" + }, + { + "idiom" : "universal", + "filename" : "LaunchImage@2x.png", + "scale" : "2x" + }, + { + "idiom" : "universal", + "filename" : "LaunchImage@3x.png", + "scale" : "3x" + } + ], + "info" : { + "version" : 1, + "author" : "xcode" + } +} diff --git a/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png b/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png new file mode 100644 index 0000000..9da19ea Binary files /dev/null and b/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png differ diff --git a/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png b/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png new file mode 100644 index 0000000..9da19ea Binary files /dev/null and b/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png differ diff --git a/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png b/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png new file mode 100644 index 0000000..9da19ea Binary files /dev/null and b/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png differ diff --git a/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md b/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md new file mode 100644 index 0000000..89c2725 --- /dev/null +++ b/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md @@ -0,0 +1,5 @@ +# Launch Screen Assets + +You can customize the launch screen with your own desired assets by replacing the image files in this directory. + +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. \ No newline at end of file diff --git a/ios/Runner/Base.lproj/LaunchScreen.storyboard b/ios/Runner/Base.lproj/LaunchScreen.storyboard new file mode 100644 index 0000000..f2e259c --- /dev/null +++ b/ios/Runner/Base.lproj/LaunchScreen.storyboard @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/ios/Runner/Base.lproj/Main.storyboard b/ios/Runner/Base.lproj/Main.storyboard new file mode 100644 index 0000000..f3c2851 --- /dev/null +++ b/ios/Runner/Base.lproj/Main.storyboard @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/ios/Runner/Info.plist b/ios/Runner/Info.plist new file mode 100644 index 0000000..8db3526 --- /dev/null +++ b/ios/Runner/Info.plist @@ -0,0 +1,45 @@ + + + + + CFBundleDevelopmentRegion + $(DEVELOPMENT_LANGUAGE) + CFBundleExecutable + $(EXECUTABLE_NAME) + CFBundleIdentifier + $(PRODUCT_BUNDLE_IDENTIFIER) + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + binanceapp + CFBundlePackageType + APPL + CFBundleShortVersionString + $(FLUTTER_BUILD_NAME) + CFBundleSignature + ???? + CFBundleVersion + $(FLUTTER_BUILD_NUMBER) + LSRequiresIPhoneOS + + UILaunchStoryboardName + LaunchScreen + UIMainStoryboardFile + Main + UISupportedInterfaceOrientations + + UIInterfaceOrientationPortrait + UIInterfaceOrientationLandscapeLeft + UIInterfaceOrientationLandscapeRight + + UISupportedInterfaceOrientations~ipad + + UIInterfaceOrientationPortrait + UIInterfaceOrientationPortraitUpsideDown + UIInterfaceOrientationLandscapeLeft + UIInterfaceOrientationLandscapeRight + + UIViewControllerBasedStatusBarAppearance + + + diff --git a/ios/Runner/Runner-Bridging-Header.h b/ios/Runner/Runner-Bridging-Header.h new file mode 100644 index 0000000..308a2a5 --- /dev/null +++ b/ios/Runner/Runner-Bridging-Header.h @@ -0,0 +1 @@ +#import "GeneratedPluginRegistrant.h" diff --git a/ios/build/XCBuildData/24cd0c597c0bb261f5e9cbcbae05cea1-buildRequest.json b/ios/build/XCBuildData/24cd0c597c0bb261f5e9cbcbae05cea1-buildRequest.json new file mode 100644 index 0000000..1a024f8 --- /dev/null +++ b/ios/build/XCBuildData/24cd0c597c0bb261f5e9cbcbae05cea1-buildRequest.json @@ -0,0 +1,58 @@ +{ + "buildCommand" : "build", + "configuredTargets" : [ + { + "guid" : "2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49" + } + ], + "continueBuildingAfterErrors" : false, + "enableIndexBuildArena" : false, + "hideShellScriptEnvironment" : false, + "parameters" : { + "action" : "build", + "activeArchitecture" : "arm64", + "activeRunDestination" : { + "disableOnlyActiveArch" : false, + "platform" : "iphoneos", + "sdk" : "iphoneos14.5", + "sdkVariant" : "iphoneos", + "supportedArchitectures" : [ + "arm64v8", + "arm64", + "armv8" + ], + "targetArchitecture" : "arm64" + }, + "arenaInfo" : { + "buildIntermediatesPath" : "", + "buildProductsPath" : "", + "derivedDataPath" : "/Users/denisnadey/Library/Developer/Xcode/DerivedData", + "indexDataStoreFolderPath" : "/Users/denisnadey/Library/Developer/Xcode/DerivedData/Runner-bisgldbzhhnjagdkalkcjwgjecrh/Index/DataStore", + "indexEnableDataStore" : true, + "indexPCHPath" : "/Users/denisnadey/Library/Developer/Xcode/DerivedData/Runner-bisgldbzhhnjagdkalkcjwgjecrh/Index/PrecompiledHeaders", + "pchPath" : "" + }, + "configurationName" : "Debug", + "overrides" : { + "synthesized" : { + "table" : { + "ASSETCATALOG_FILTER_FOR_DEVICE_MODEL" : "iPhone8,1", + "ASSETCATALOG_FILTER_FOR_DEVICE_OS_VERSION" : "14.5", + "BUILD_ACTIVE_RESOURCES_ONLY" : "YES", + "ENABLE_PREVIEWS" : "NO", + "TARGET_DEVICE_IDENTIFIER" : "14ea1e3ed325a580fb35bcb957020b43676e0a94", + "TARGET_DEVICE_MODEL" : "iPhone8,1", + "TARGET_DEVICE_OS_VERSION" : "14.5", + "TARGET_DEVICE_PLATFORM_NAME" : "iphoneos" + } + } + } + }, + "schemeCommand" : "launch", + "shouldCollectMetrics" : false, + "showNonLoggedProgress" : true, + "useDryRun" : false, + "useImplicitDependencies" : true, + "useLegacyBuildLocations" : false, + "useParallelTargets" : true +} \ No newline at end of file diff --git a/ios/build/XCBuildData/24cd0c597c0bb261f5e9cbcbae05cea1-desc.xcbuild b/ios/build/XCBuildData/24cd0c597c0bb261f5e9cbcbae05cea1-desc.xcbuild new file mode 100644 index 0000000..8e36cf7 Binary files /dev/null and b/ios/build/XCBuildData/24cd0c597c0bb261f5e9cbcbae05cea1-desc.xcbuild differ diff --git a/ios/build/XCBuildData/24cd0c597c0bb261f5e9cbcbae05cea1-manifest.xcbuild b/ios/build/XCBuildData/24cd0c597c0bb261f5e9cbcbae05cea1-manifest.xcbuild new file mode 100644 index 0000000..582bc61 --- /dev/null +++ b/ios/build/XCBuildData/24cd0c597c0bb261f5e9cbcbae05cea1-manifest.xcbuild @@ -0,0 +1,103 @@ +client: + name: basic + version: 0 + file-system: default + +targets: + "": [""] + +nodes: + "/Users/denisnadey/Desktop/binanceapp/build/ios": {"is-mutated":true} + "/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos": {"is-mutated":true} + "/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app": {"is-mutated":true} + "/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app/Runner": {"is-mutated":true} + "": {"is-command-timestamp":true} + "": {"is-command-timestamp":true} + "": {"is-command-timestamp":true} + +commands: + "::CreateBuildDirectory /Users/denisnadey/Desktop/binanceapp/build/ios": {"tool":"create-build-directory","description":"CreateBuildDirectory /Users/denisnadey/Desktop/binanceapp/build/ios","inputs":[],"outputs":["","/Users/denisnadey/Desktop/binanceapp/build/ios"]} + "::CreateBuildDirectory /Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos": {"tool":"create-build-directory","description":"CreateBuildDirectory /Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos","inputs":["/Users/denisnadey/Desktop/binanceapp/build/ios"],"outputs":["","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos"]} + "": {"tool":"phony","inputs":["/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app/_CodeSignature","",""],"outputs":[""]} + "": {"tool":"stale-file-removal","expectedOutputs":["/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app/Runner","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app/_CodeSignature","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/assetcatalog_generated_info.plist","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app/Assets.car","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.o","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner_vers.o","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Base.lproj/LaunchScreen.storyboardc","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Base.lproj/LaunchScreen-SBPartialInfo.plist","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Base.lproj/Main.storyboardc","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Base.lproj/Main-SBPartialInfo.plist","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/AppDelegate.o","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftmodule","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftsourceinfo","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner-Swift.h","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftdoc","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app/AppFrameworkInfo.plist","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/Project/arm64.swiftsourceinfo","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/arm64-apple-ios.swiftdoc","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/arm64-apple-ios.swiftmodule","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/arm64.swiftdoc","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/arm64.swiftmodule","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources/Runner-Swift.h","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app/Runner","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app/Base.lproj/LaunchScreen.storyboardc","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app/Base.lproj/Main.storyboardc","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app/Info.plist","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner.app.xcent","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app/embedded.mobileprovision","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources/Entitlements.plist","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources/Runner_vers.c","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner-OutputFileMap.json","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.LinkFileList","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.SwiftFileList","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-all-non-framework-target-headers.hmap","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-all-target-headers.hmap","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-generated-files.hmap","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-own-target-headers.hmap","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-project-headers.hmap","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner.hmap","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Script-9740EEB61CF901F6004384FC.sh","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/all-product-headers.yaml"],"roots":["/tmp/Runner.dst","/Users/denisnadey/Desktop/binanceapp/build/ios","/Users/denisnadey/Desktop/binanceapp/build/ios"],"outputs":[""]} + "Gate target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49--Barrier-ChangeAlternatePermissions": {"tool":"phony","inputs":["","",""],"outputs":[""]} + "Gate target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49--Barrier-ChangePermissions": {"tool":"phony","inputs":["","",""],"outputs":[""]} + "Gate target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49--Barrier-CodeSign": {"tool":"phony","inputs":["","","",""],"outputs":[""]} + "Gate target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49--Barrier-CopyAside": {"tool":"phony","inputs":["","",""],"outputs":[""]} + "Gate target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49--Barrier-RegisterExecutionPolicyException": {"tool":"phony","inputs":["","","",""],"outputs":[""]} + "Gate target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49--Barrier-RegisterProduct": {"tool":"phony","inputs":["","","",""],"outputs":[""]} + "Gate target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49--Barrier-StripSymbols": {"tool":"phony","inputs":["","",""],"outputs":[""]} + "Gate target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49--Barrier-Validate": {"tool":"phony","inputs":["","","",""],"outputs":[""]} + "Gate target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49--CopySwiftPackageResourcesTaskProducer": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49--GeneratedFilesTaskProducer": {"tool":"phony","inputs":["","","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner.app.xcent","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app/embedded.mobileprovision","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources/Entitlements.plist"],"outputs":[""]} + "Gate target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49--HeadermapTaskProducer": {"tool":"phony","inputs":["","","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-all-non-framework-target-headers.hmap","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-all-target-headers.hmap","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-generated-files.hmap","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-own-target-headers.hmap","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-project-headers.hmap","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner.hmap","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/all-product-headers.yaml"],"outputs":[""]} + "Gate target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49--InfoPlistTaskProducer": {"tool":"phony","inputs":["","","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app/Info.plist"],"outputs":[""]} + "Gate target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49--ModuleMapTaskProducer": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49--ProductPostprocessingTaskProducer": {"tool":"phony","inputs":["","","","","","","","","","","","","",""],"outputs":[""]} + "Gate target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49--ProductStructureTaskProducer": {"tool":"phony","inputs":["","",""],"outputs":[""]} + "Gate target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49--SanitizerTaskProducer": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49--StubBinaryTaskProducer": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49--SwiftABIBaselineGenerationTaskProducer": {"tool":"phony","inputs":["","",""],"outputs":[""]} + "Gate target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49--SwiftFrameworkABICheckerTaskProducer": {"tool":"phony","inputs":["","",""],"outputs":[""]} + "Gate target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49--SwiftStandardLibrariesTaskProducer": {"tool":"phony","inputs":["","","",""],"outputs":[""]} + "Gate target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49--TestHostTaskProducer": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49--TestTargetPostprocessingTaskProducer": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49--TestTargetTaskProducer": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49--VersionPlistTaskProducer": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49--begin-compiling": {"tool":"phony","inputs":["","","","",""],"outputs":[""]} + "Gate target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49--copy-headers-completion": {"tool":"phony","inputs":[""],"outputs":[""]} + "Gate target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49--end": {"tool":"phony","inputs":["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/assetcatalog_generated_info.plist","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app/Assets.car","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.o","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner_vers.o","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Base.lproj/LaunchScreen.storyboardc","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Base.lproj/LaunchScreen-SBPartialInfo.plist","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Base.lproj/Main.storyboardc","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Base.lproj/Main-SBPartialInfo.plist","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/AppDelegate.o","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftmodule","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftsourceinfo","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner-Swift.h","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftdoc","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app/AppFrameworkInfo.plist","","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/Project/arm64.swiftsourceinfo","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/arm64-apple-ios.swiftdoc","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/arm64-apple-ios.swiftmodule","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/arm64.swiftdoc","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/arm64.swiftmodule","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources/Runner-Swift.h","","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app/Base.lproj/LaunchScreen.storyboardc","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app/Base.lproj/Main.storyboardc","","","","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app/Info.plist","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner.app.xcent","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app/embedded.mobileprovision","","","","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources/Entitlements.plist","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources/Runner_vers.c","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner-OutputFileMap.json","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.LinkFileList","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.SwiftFileList","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-all-non-framework-target-headers.hmap","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-all-target-headers.hmap","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-generated-files.hmap","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-own-target-headers.hmap","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-project-headers.hmap","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner.hmap","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Script-9740EEB61CF901F6004384FC.sh","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/all-product-headers.yaml"],"outputs":[""]} + "Gate target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49--entry": {"tool":"phony","inputs":["","","","","",""],"outputs":[""]} + "Gate target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49--generated-headers": {"tool":"phony","inputs":["","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/AppDelegate.o","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftmodule","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftsourceinfo","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner-Swift.h","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftdoc","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources/Runner-Swift.h"],"outputs":[""]} + "Gate target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49--immediate": {"tool":"phony","inputs":["","","","",""],"outputs":[""]} + "Gate target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49--modules-ready": {"tool":"phony","inputs":["","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/AppDelegate.o","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftmodule","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftsourceinfo","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner-Swift.h","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftdoc","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/Project/arm64.swiftsourceinfo","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/arm64-apple-ios.swiftdoc","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/arm64-apple-ios.swiftmodule","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/arm64.swiftdoc","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/arm64.swiftmodule","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources/Runner-Swift.h","","","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Script-9740EEB61CF901F6004384FC.sh"],"outputs":[""]} + "Gate target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49--package-copy-files-phase": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49--phase0-run-script": {"tool":"phony","inputs":["","","","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Script-9740EEB61CF901F6004384FC.sh"],"outputs":[""]} + "Gate target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49--phase1-compile-sources": {"tool":"phony","inputs":["","","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.o","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner_vers.o","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/AppDelegate.o","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftmodule","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftsourceinfo","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner-Swift.h","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftdoc","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/Project/arm64.swiftsourceinfo","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/arm64-apple-ios.swiftdoc","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/arm64-apple-ios.swiftmodule","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/arm64.swiftdoc","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/arm64.swiftmodule","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources/Runner-Swift.h","","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources/Runner_vers.c","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner-OutputFileMap.json","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.LinkFileList","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.SwiftFileList"],"outputs":[""]} + "Gate target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49--phase3-copy-bundle-resources": {"tool":"phony","inputs":["","","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/assetcatalog_generated_info.plist","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app/Assets.car","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Base.lproj/LaunchScreen.storyboardc","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Base.lproj/LaunchScreen-SBPartialInfo.plist","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Base.lproj/Main.storyboardc","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Base.lproj/Main-SBPartialInfo.plist","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app/AppFrameworkInfo.plist","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app/Base.lproj/LaunchScreen.storyboardc","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app/Base.lproj/Main.storyboardc"],"outputs":[""]} + "Gate target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49--phase4-copy-files": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49--phase5-thin-binary": {"tool":"phony","inputs":["","","","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh"],"outputs":[""]} + "Gate target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49--unsigned-product-ready": {"tool":"phony","inputs":["","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.o","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner_vers.o","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/AppDelegate.o","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftmodule","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftsourceinfo","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner-Swift.h","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftdoc","","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/Project/arm64.swiftsourceinfo","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/arm64-apple-ios.swiftdoc","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/arm64-apple-ios.swiftmodule","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/arm64.swiftdoc","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/arm64.swiftmodule","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources/Runner-Swift.h","","","","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner.app.xcent","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app/embedded.mobileprovision","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources/Entitlements.plist","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources/Runner_vers.c","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner-OutputFileMap.json","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.LinkFileList","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.SwiftFileList","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Script-9740EEB61CF901F6004384FC.sh"],"outputs":[""]} + "Gate target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49--will-sign": {"tool":"phony","inputs":[""],"outputs":[""]} + "target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49-:Debug:CodeSign /Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app": {"tool":"shell","description":"CodeSign /Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app","inputs":["/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app/Info.plist/","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner.app.xcent/","/Users/denisnadey/Desktop/binanceapp/ios/Flutter/AppFrameworkInfo.plist/","/Users/denisnadey/Desktop/binanceapp/ios/Runner/AppDelegate.swift/","/Users/denisnadey/Desktop/binanceapp/ios/Runner/Assets.xcassets/","/Users/denisnadey/Desktop/binanceapp/ios/Runner/Base.lproj/LaunchScreen.storyboard/","/Users/denisnadey/Desktop/binanceapp/ios/Runner/Base.lproj/Main.storyboard/","/Users/denisnadey/Desktop/binanceapp/ios/Runner/GeneratedPluginRegistrant.m/","","","","",""],"outputs":["/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app/_CodeSignature","",""],"args":["/usr/bin/codesign","--force","--sign","EE0D57AEE3052FED99220EBA1332C74117F99992","--entitlements","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner.app.xcent","--timestamp=none","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app"],"env":{"CODESIGN_ALLOCATE":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/codesign_allocate"},"can-safely-interrupt":false,"working-directory":"/Users/denisnadey/Desktop/binanceapp/ios","signature":"65eca0f6c288e484b0b12e1f1537dd99"} + "target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49-:Debug:CompileAssetCatalog /Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app /Users/denisnadey/Desktop/binanceapp/ios/Runner/Assets.xcassets": {"tool":"shell","description":"CompileAssetCatalog /Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app /Users/denisnadey/Desktop/binanceapp/ios/Runner/Assets.xcassets","inputs":["/Users/denisnadey/Desktop/binanceapp/ios/Runner/Assets.xcassets/","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app","",""],"outputs":["/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/assetcatalog_generated_info.plist","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app/Assets.car"],"args":["/Applications/Xcode.app/Contents/Developer/usr/bin/actool","--output-format","human-readable-text","--notices","--warnings","--export-dependency-info","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/assetcatalog_dependencies","--output-partial-info-plist","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/assetcatalog_generated_info.plist","--app-icon","AppIcon","--compress-pngs","--enable-on-demand-resources","YES","--filter-for-device-model","iPhone8,1","--filter-for-device-os-version","14.5","--development-region","en","--target-device","iphone","--target-device","ipad","--minimum-deployment-target","12.0","--platform","iphoneos","--compile","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app","/Users/denisnadey/Desktop/binanceapp/ios/Runner/Assets.xcassets"],"env":{},"working-directory":"/Users/denisnadey/Desktop/binanceapp/ios","control-enabled":false,"deps":["/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/assetcatalog_dependencies"],"deps-style":"dependency-info","signature":"88794e0f8d797de89971a7c713cd03b9"} + "target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49-:Debug:CompileC /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.o /Users/denisnadey/Desktop/binanceapp/ios/Runner/GeneratedPluginRegistrant.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.o /Users/denisnadey/Desktop/binanceapp/ios/Runner/GeneratedPluginRegistrant.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/denisnadey/Desktop/binanceapp/ios/Runner/GeneratedPluginRegistrant.m","","",""],"outputs":["/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios12.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu99","-fobjc-arc","-fmodules","-gmodules","-fmodules-cache-path=/Users/denisnadey/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/denisnadey/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wunreachable-code","-Wquoted-include-in-framework-header","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DDEBUG=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.5.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-index-store-path","/Users/denisnadey/Library/Developer/Xcode/DerivedData/Runner-bisgldbzhhnjagdkalkcjwgjecrh/Index/DataStore","-iquote","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-generated-files.hmap","-I/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-own-target-headers.hmap","-I/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-all-target-headers.hmap","-iquote","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-project-headers.hmap","-I/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/include","-I/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources-normal/arm64","-I/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources/arm64","-I/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources","-F/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos","-MMD","-MT","dependencies","-MF","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.d","--serialize-diagnostics","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.dia","-c","/Users/denisnadey/Desktop/binanceapp/ios/Runner/GeneratedPluginRegistrant.m","-o","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/denisnadey/Desktop/binanceapp/ios","deps":["/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.d"],"deps-style":"makefile","signature":"a5cdde472ea6a3b261969677860c7c48"} + "target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49-:Debug:CompileC /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner_vers.o /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources/Runner_vers.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner_vers.o /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources/Runner_vers.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources/Runner_vers.c","","",""],"outputs":["/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner_vers.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c","-target","arm64-apple-ios12.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu99","-fmodules","-gmodules","-fmodules-cache-path=/Users/denisnadey/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/denisnadey/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wunreachable-code","-Wquoted-include-in-framework-header","-Werror=deprecated-objc-isa-usage","-Werror=objc-root-class","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-DDEBUG=1","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.5.sdk","-fstrict-aliasing","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-index-store-path","/Users/denisnadey/Library/Developer/Xcode/DerivedData/Runner-bisgldbzhhnjagdkalkcjwgjecrh/Index/DataStore","-iquote","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-generated-files.hmap","-I/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-own-target-headers.hmap","-I/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-all-target-headers.hmap","-iquote","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-project-headers.hmap","-I/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/include","-I/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources-normal/arm64","-I/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources/arm64","-I/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources","-F/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos","-MMD","-MT","dependencies","-MF","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner_vers.d","--serialize-diagnostics","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner_vers.dia","-c","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources/Runner_vers.c","-o","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner_vers.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/denisnadey/Desktop/binanceapp/ios","deps":["/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner_vers.d"],"deps-style":"makefile","signature":"fe7b5890a9034ed048ed746e4a96fad8"} + "target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49-:Debug:CompileStoryboard /Users/denisnadey/Desktop/binanceapp/ios/Runner/Base.lproj/LaunchScreen.storyboard": {"tool":"shell","description":"CompileStoryboard /Users/denisnadey/Desktop/binanceapp/ios/Runner/Base.lproj/LaunchScreen.storyboard","inputs":["/Users/denisnadey/Desktop/binanceapp/ios/Runner/Base.lproj/LaunchScreen.storyboard","",""],"outputs":["/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Base.lproj/LaunchScreen.storyboardc","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Base.lproj/LaunchScreen-SBPartialInfo.plist"],"args":["/Applications/Xcode.app/Contents/Developer/usr/bin/ibtool","--errors","--warnings","--notices","--module","Runner","--output-partial-info-plist","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Base.lproj/LaunchScreen-SBPartialInfo.plist","--auto-activate-custom-fonts","--target-device","iphone","--target-device","ipad","--minimum-deployment-target","12.0","--output-format","human-readable-text","--compilation-directory","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Base.lproj","/Users/denisnadey/Desktop/binanceapp/ios/Runner/Base.lproj/LaunchScreen.storyboard"],"env":{"XCODE_DEVELOPER_USR_PATH":"/Applications/Xcode.app/Contents/Developer/usr/bin/.."},"working-directory":"/Users/denisnadey/Desktop/binanceapp/ios","control-enabled":false,"signature":"cee1b9d92e74f366af05ddb031d7b596"} + "target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49-:Debug:CompileStoryboard /Users/denisnadey/Desktop/binanceapp/ios/Runner/Base.lproj/Main.storyboard": {"tool":"shell","description":"CompileStoryboard /Users/denisnadey/Desktop/binanceapp/ios/Runner/Base.lproj/Main.storyboard","inputs":["/Users/denisnadey/Desktop/binanceapp/ios/Runner/Base.lproj/Main.storyboard","",""],"outputs":["/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Base.lproj/Main.storyboardc","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Base.lproj/Main-SBPartialInfo.plist"],"args":["/Applications/Xcode.app/Contents/Developer/usr/bin/ibtool","--errors","--warnings","--notices","--module","Runner","--output-partial-info-plist","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Base.lproj/Main-SBPartialInfo.plist","--auto-activate-custom-fonts","--target-device","iphone","--target-device","ipad","--minimum-deployment-target","12.0","--output-format","human-readable-text","--compilation-directory","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Base.lproj","/Users/denisnadey/Desktop/binanceapp/ios/Runner/Base.lproj/Main.storyboard"],"env":{"XCODE_DEVELOPER_USR_PATH":"/Applications/Xcode.app/Contents/Developer/usr/bin/.."},"working-directory":"/Users/denisnadey/Desktop/binanceapp/ios","control-enabled":false,"signature":"c61ed1eff95579e19963d42137fe4d73"} + "target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49-:Debug:CompileSwiftSources normal arm64 com.apple.xcode.tools.swift.compiler": {"tool":"shell","description":"CompileSwiftSources normal arm64 com.apple.xcode.tools.swift.compiler","inputs":["/Users/denisnadey/Desktop/binanceapp/ios/Runner/AppDelegate.swift","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.SwiftFileList","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner-OutputFileMap.json","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-generated-files.hmap","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-own-target-headers.hmap","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-all-target-headers.hmap","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-project-headers.hmap","","",""],"outputs":["/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/AppDelegate.o","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftmodule","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftsourceinfo","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner-Swift.h","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftdoc"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc","-incremental","-module-name","Runner","-Onone","-enable-batch-mode","-enforce-exclusivity=checked","@/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.SwiftFileList","-sdk","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.5.sdk","-target","arm64-apple-ios12.0","-g","-module-cache-path","/Users/denisnadey/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-Xfrontend","-serialize-debugging-options","-enable-testing","-index-store-path","/Users/denisnadey/Library/Developer/Xcode/DerivedData/Runner-bisgldbzhhnjagdkalkcjwgjecrh/Index/DataStore","-swift-version","5","-I","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos","-F","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos","-parse-as-library","-c","-j8","-output-file-map","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner-OutputFileMap.json","-parseable-output","-serialize-diagnostics","-emit-dependencies","-emit-module","-emit-module-path","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftmodule","-Xcc","-I/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/swift-overrides.hmap","-Xcc","-iquote","-Xcc","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-generated-files.hmap","-Xcc","-I/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-own-target-headers.hmap","-Xcc","-I/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-all-target-headers.hmap","-Xcc","-iquote","-Xcc","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-project-headers.hmap","-Xcc","-I/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/include","-Xcc","-I/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources-normal/arm64","-Xcc","-I/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources/arm64","-Xcc","-I/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources","-Xcc","-DDEBUG=1","-emit-objc-header","-emit-objc-header-path","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner-Swift.h","-import-objc-header","/Users/denisnadey/Desktop/binanceapp/ios/Runner/Runner-Bridging-Header.h","-pch-output-dir","/Users/denisnadey/Desktop/binanceapp/build/ios/SharedPrecompiledHeaders","-working-directory","/Users/denisnadey/Desktop/binanceapp/ios"],"env":{"DEVELOPER_DIR":"/Applications/Xcode.app/Contents/Developer","SDKROOT":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.5.sdk"},"working-directory":"/Users/denisnadey/Desktop/binanceapp/ios","deps":["/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/AppDelegate.d"],"deps-style":"makefile","signature":"521b533fdccab632c16cc7b79cda4abc"} + "target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49-:Debug:CopyPlistFile /Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app/AppFrameworkInfo.plist /Users/denisnadey/Desktop/binanceapp/ios/Flutter/AppFrameworkInfo.plist": {"tool":"copy-plist","description":"CopyPlistFile /Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app/AppFrameworkInfo.plist /Users/denisnadey/Desktop/binanceapp/ios/Flutter/AppFrameworkInfo.plist","inputs":["/Users/denisnadey/Desktop/binanceapp/ios/Flutter/AppFrameworkInfo.plist","",""],"outputs":["/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app/AppFrameworkInfo.plist"]} + "target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49-:Debug:CopySwiftLibs /Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app": {"tool":"embed-swift-stdlib","description":"CopySwiftLibs /Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app","inputs":["/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app/Runner","","",""],"outputs":[""],"deps":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/SwiftStdLibToolInputDependencies.dep"} + "target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49-:Debug:Ditto /Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftsourceinfo": {"tool":"shell","description":"Ditto /Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftsourceinfo","inputs":["/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftsourceinfo","","",""],"outputs":["/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo"],"args":["/usr/bin/ditto","-rsrc","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftsourceinfo","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo"],"env":{},"working-directory":"/Users/denisnadey/Desktop/binanceapp/ios","signature":"dce8a9bc646a0bbd3486e62300dcfa0b"} + "target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49-:Debug:Ditto /Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/Project/arm64.swiftsourceinfo /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftsourceinfo": {"tool":"shell","description":"Ditto /Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/Project/arm64.swiftsourceinfo /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftsourceinfo","inputs":["/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftsourceinfo","","",""],"outputs":["/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/Project/arm64.swiftsourceinfo"],"args":["/usr/bin/ditto","-rsrc","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftsourceinfo","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/Project/arm64.swiftsourceinfo"],"env":{},"working-directory":"/Users/denisnadey/Desktop/binanceapp/ios","signature":"e1112e7f2165c12cd0301e518840b7b5"} + "target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49-:Debug:Ditto /Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/arm64-apple-ios.swiftdoc /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftdoc": {"tool":"shell","description":"Ditto /Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/arm64-apple-ios.swiftdoc /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftdoc","inputs":["/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftdoc","","",""],"outputs":["/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/arm64-apple-ios.swiftdoc"],"args":["/usr/bin/ditto","-rsrc","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftdoc","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/arm64-apple-ios.swiftdoc"],"env":{},"working-directory":"/Users/denisnadey/Desktop/binanceapp/ios","signature":"5aadbb3dbe4dd2617c2078ce764d7f0d"} + "target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49-:Debug:Ditto /Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/arm64-apple-ios.swiftmodule /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftmodule": {"tool":"shell","description":"Ditto /Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/arm64-apple-ios.swiftmodule /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftmodule","inputs":["/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftmodule","","",""],"outputs":["/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/arm64-apple-ios.swiftmodule"],"args":["/usr/bin/ditto","-rsrc","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftmodule","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/arm64-apple-ios.swiftmodule"],"env":{},"working-directory":"/Users/denisnadey/Desktop/binanceapp/ios","signature":"646bf0147a4974d4e670e2df1f7ce352"} + "target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49-:Debug:Ditto /Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/arm64.swiftdoc /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftdoc": {"tool":"shell","description":"Ditto /Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/arm64.swiftdoc /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftdoc","inputs":["/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftdoc","","",""],"outputs":["/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/arm64.swiftdoc"],"args":["/usr/bin/ditto","-rsrc","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftdoc","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/arm64.swiftdoc"],"env":{},"working-directory":"/Users/denisnadey/Desktop/binanceapp/ios","signature":"81867cf72babecea973bd51830daaad4"} + "target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49-:Debug:Ditto /Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/arm64.swiftmodule /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftmodule": {"tool":"shell","description":"Ditto /Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/arm64.swiftmodule /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftmodule","inputs":["/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftmodule","","",""],"outputs":["/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/arm64.swiftmodule"],"args":["/usr/bin/ditto","-rsrc","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftmodule","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/arm64.swiftmodule"],"env":{},"working-directory":"/Users/denisnadey/Desktop/binanceapp/ios","signature":"c313efcbb02bd9628dd8fcfb1370409b"} + "target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49-:Debug:Ditto /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources/Runner-Swift.h /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner-Swift.h": {"tool":"shell","description":"Ditto /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources/Runner-Swift.h /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner-Swift.h","inputs":["/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner-Swift.h","","",""],"outputs":["/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources/Runner-Swift.h"],"args":["/usr/bin/ditto","-rsrc","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner-Swift.h","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources/Runner-Swift.h"],"env":{},"working-directory":"/Users/denisnadey/Desktop/binanceapp/ios","signature":"8c921312aa76fa34013e62364b679c43"} + "target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49-:Debug:Ld /Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app/Runner normal": {"tool":"shell","description":"Ld /Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app/Runner normal","inputs":["/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner_vers.o","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.o","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/AppDelegate.o","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.LinkFileList","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos","",""],"outputs":["/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app/Runner","",""],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-target","arm64-apple-ios12.0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.5.sdk","-L/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos","-F/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos","-filelist","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.LinkFileList","-Xlinker","-rpath","-Xlinker","/usr/lib/swift","-Xlinker","-rpath","-Xlinker","@executable_path/Frameworks","-dead_strip","-Xlinker","-object_path_lto","-Xlinker","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner_lto.o","-Xlinker","-export_dynamic","-Xlinker","-no_deduplicate","-fobjc-arc","-fobjc-link-runtime","-L/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos","-L/usr/lib/swift","-Xlinker","-add_ast_path","-Xlinker","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftmodule","-Xlinker","-no_adhoc_codesign","-Xlinker","-dependency_info","-Xlinker","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner_dependency_info.dat","-o","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app/Runner"],"env":{},"working-directory":"/Users/denisnadey/Desktop/binanceapp/ios","deps":["/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner_dependency_info.dat"],"deps-style":"dependency-info","signature":"af833122dfa4fc5fdc12fec8958fec86"} + "target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49-:Debug:LinkStoryboards": {"tool":"shell","description":"LinkStoryboards","inputs":["/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Base.lproj/LaunchScreen.storyboardc","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Base.lproj/Main.storyboardc","",""],"outputs":["/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app/Base.lproj/LaunchScreen.storyboardc","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app/Base.lproj/Main.storyboardc"],"args":["/Applications/Xcode.app/Contents/Developer/usr/bin/ibtool","--errors","--warnings","--notices","--module","Runner","--target-device","iphone","--target-device","ipad","--minimum-deployment-target","12.0","--output-format","human-readable-text","--link","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Base.lproj/LaunchScreen.storyboardc","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Base.lproj/Main.storyboardc"],"env":{"XCODE_DEVELOPER_USR_PATH":"/Applications/Xcode.app/Contents/Developer/usr/bin/.."},"working-directory":"/Users/denisnadey/Desktop/binanceapp/ios","control-enabled":false,"signature":"d061171c16638e49aaf294f373be982a"} + "target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49-:Debug:MkDir /Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app": {"tool":"mkdir","description":"MkDir /Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app","inputs":["",""],"outputs":["/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app","",""]} + "target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49-:Debug:PhaseScriptExecution Run Script /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Script-9740EEB61CF901F6004384FC.sh": {"tool":"shell","description":"PhaseScriptExecution Run Script /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Script-9740EEB61CF901F6004384FC.sh","inputs":["/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Script-9740EEB61CF901F6004384FC.sh","",""],"outputs":[""],"args":["/bin/sh","-c","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Script-9740EEB61CF901F6004384FC.sh"],"env":{"ACTION":"build","AD_HOC_CODE_SIGNING_ALLOWED":"NO","ALTERNATE_GROUP":"staff","ALTERNATE_MODE":"u+w,go-w,a+rX","ALTERNATE_OWNER":"denisnadey","ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES":"NO","ALWAYS_SEARCH_USER_PATHS":"NO","ALWAYS_USE_SEPARATE_HEADERMAPS":"NO","APPLE_INTERNAL_DEVELOPER_DIR":"/AppleInternal/Developer","APPLE_INTERNAL_DIR":"/AppleInternal","APPLE_INTERNAL_DOCUMENTATION_DIR":"/AppleInternal/Documentation","APPLE_INTERNAL_LIBRARY_DIR":"/AppleInternal/Library","APPLE_INTERNAL_TOOLS":"/AppleInternal/Developer/Tools","APPLICATION_EXTENSION_API_ONLY":"NO","APPLY_RULES_IN_COPY_FILES":"NO","APPLY_RULES_IN_COPY_HEADERS":"NO","ARCHS":"arm64","ARCHS_STANDARD":"arm64","ARCHS_STANDARD_32_64_BIT":"armv7 arm64","ARCHS_STANDARD_32_BIT":"armv7","ARCHS_STANDARD_64_BIT":"arm64","ARCHS_STANDARD_INCLUDING_64_BIT":"arm64","ARCHS_UNIVERSAL_IPHONE_OS":"armv7 arm64","ASSETCATALOG_COMPILER_APPICON_NAME":"AppIcon","ASSETCATALOG_FILTER_FOR_DEVICE_MODEL":"iPhone8,1","ASSETCATALOG_FILTER_FOR_DEVICE_OS_VERSION":"14.5","AVAILABLE_PLATFORMS":"appletvos appletvsimulator iphoneos iphonesimulator macosx watchos watchsimulator","AppIdentifierPrefix":"277A9Y83LN.","BITCODE_GENERATION_MODE":"marker","BUILD_ACTIVE_RESOURCES_ONLY":"YES","BUILD_COMPONENTS":"headers build","BUILD_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios","BUILD_LIBRARY_FOR_DISTRIBUTION":"NO","BUILD_ROOT":"/Users/denisnadey/Desktop/binanceapp/build/ios","BUILD_STYLE":"","BUILD_VARIANTS":"normal","BUILT_PRODUCTS_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos","BUNDLE_CONTENTS_FOLDER_PATH_deep":"Contents/","BUNDLE_EXECUTABLE_FOLDER_NAME_deep":"MacOS","BUNDLE_FORMAT":"shallow","BUNDLE_FRAMEWORKS_FOLDER_PATH":"Frameworks","BUNDLE_PLUGINS_FOLDER_PATH":"PlugIns","BUNDLE_PRIVATE_HEADERS_FOLDER_PATH":"PrivateHeaders","BUNDLE_PUBLIC_HEADERS_FOLDER_PATH":"Headers","CACHE_ROOT":"/var/folders/kq/kc3pf_ns62n6hc7n74119qf00000gn/C/com.apple.DeveloperTools/12.5-12E262/Xcode","CCHROOT":"/var/folders/kq/kc3pf_ns62n6hc7n74119qf00000gn/C/com.apple.DeveloperTools/12.5-12E262/Xcode","CHMOD":"/bin/chmod","CHOWN":"/usr/sbin/chown","CLANG_ANALYZER_NONNULL":"YES","CLANG_CXX_LANGUAGE_STANDARD":"gnu++0x","CLANG_CXX_LIBRARY":"libc++","CLANG_ENABLE_MODULES":"YES","CLANG_ENABLE_OBJC_ARC":"YES","CLANG_MODULES_BUILD_SESSION_FILE":"/Users/denisnadey/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING":"YES","CLANG_WARN_BOOL_CONVERSION":"YES","CLANG_WARN_COMMA":"YES","CLANG_WARN_CONSTANT_CONVERSION":"YES","CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS":"YES","CLANG_WARN_DIRECT_OBJC_ISA_USAGE":"YES_ERROR","CLANG_WARN_EMPTY_BODY":"YES","CLANG_WARN_ENUM_CONVERSION":"YES","CLANG_WARN_INFINITE_RECURSION":"YES","CLANG_WARN_INT_CONVERSION":"YES","CLANG_WARN_NON_LITERAL_NULL_CONVERSION":"YES","CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF":"YES","CLANG_WARN_OBJC_LITERAL_CONVERSION":"YES","CLANG_WARN_OBJC_ROOT_CLASS":"YES_ERROR","CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER":"YES","CLANG_WARN_RANGE_LOOP_ANALYSIS":"YES","CLANG_WARN_STRICT_PROTOTYPES":"YES","CLANG_WARN_SUSPICIOUS_MOVE":"YES","CLANG_WARN_UNREACHABLE_CODE":"YES","CLANG_WARN__DUPLICATE_METHOD_MATCH":"YES","CLASS_FILE_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/JavaClasses","CLEAN_PRECOMPS":"YES","CLONE_HEADERS":"NO","COCOAPODS_PARALLEL_CODE_SIGN":"true","CODESIGNING_FOLDER_PATH":"/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app","CODE_SIGNING_ALLOWED":"YES","CODE_SIGNING_REQUIRED":"YES","CODE_SIGN_CONTEXT_CLASS":"XCiPhoneOSCodeSignContext","CODE_SIGN_IDENTITY":"iPhone Developer","CODE_SIGN_INJECT_BASE_ENTITLEMENTS":"YES","COLOR_DIAGNOSTICS":"NO","COMBINE_HIDPI_IMAGES":"NO","COMPILER_INDEX_STORE_ENABLE":"Default","COMPOSITE_SDK_DIRS":"/Users/denisnadey/Desktop/binanceapp/build/ios/CompositeSDKs","COMPRESS_PNG_FILES":"YES","CONFIGURATION":"Debug","CONFIGURATION_BUILD_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos","CONFIGURATION_TEMP_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos","CONTENTS_FOLDER_PATH":"Runner.app","COPYING_PRESERVES_HFS_DATA":"NO","COPY_HEADERS_RUN_UNIFDEF":"NO","COPY_PHASE_STRIP":"NO","COPY_RESOURCES_FROM_STATIC_FRAMEWORKS":"YES","CORRESPONDING_SIMULATOR_PLATFORM_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform","CORRESPONDING_SIMULATOR_PLATFORM_NAME":"iphonesimulator","CORRESPONDING_SIMULATOR_SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk","CORRESPONDING_SIMULATOR_SDK_NAME":"iphonesimulator14.5","CP":"/bin/cp","CREATE_INFOPLIST_SECTION_IN_BINARY":"NO","CURRENT_ARCH":"undefined_arch","CURRENT_PROJECT_VERSION":"1","CURRENT_VARIANT":"normal","DART_DEFINES":"RkxVVFRFUl9XRUJfQVVUT19ERVRFQ1Q9dHJ1ZQ==","DART_OBFUSCATION":"false","DEAD_CODE_STRIPPING":"YES","DEBUGGING_SYMBOLS":"YES","DEBUG_INFORMATION_FORMAT":"dwarf","DEFAULT_COMPILER":"com.apple.compilers.llvm.clang.1_0","DEFAULT_DEXT_INSTALL_PATH":"/System/Library/DriverExtensions","DEFAULT_KEXT_INSTALL_PATH":"/System/Library/Extensions","DEFINES_MODULE":"NO","DEPLOYMENT_LOCATION":"NO","DEPLOYMENT_POSTPROCESSING":"NO","DEPLOYMENT_TARGET_CLANG_ENV_NAME":"IPHONEOS_DEPLOYMENT_TARGET","DEPLOYMENT_TARGET_CLANG_FLAG_NAME":"miphoneos-version-min","DEPLOYMENT_TARGET_CLANG_FLAG_PREFIX":"-miphoneos-version-min=","DEPLOYMENT_TARGET_LD_ENV_NAME":"IPHONEOS_DEPLOYMENT_TARGET","DEPLOYMENT_TARGET_LD_FLAG_NAME":"ios_version_min","DEPLOYMENT_TARGET_SETTING_NAME":"IPHONEOS_DEPLOYMENT_TARGET","DEPLOYMENT_TARGET_SUGGESTED_VALUES":"9.0 9.2 10.0 10.2 11.0 11.2 11.4 12.1 12.3 13.0 13.2 13.4 13.6 14.1 14.3 14.5","DERIVED_FILES_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources","DERIVED_FILE_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources","DERIVED_SOURCES_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources","DERIVE_MACCATALYST_PRODUCT_BUNDLE_IDENTIFIER":"NO","DEVELOPER_APPLICATIONS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications","DEVELOPER_BIN_DIR":"/Applications/Xcode.app/Contents/Developer/usr/bin","DEVELOPER_DIR":"/Applications/Xcode.app/Contents/Developer","DEVELOPER_FRAMEWORKS_DIR":"/Applications/Xcode.app/Contents/Developer/Library/Frameworks","DEVELOPER_FRAMEWORKS_DIR_QUOTED":"/Applications/Xcode.app/Contents/Developer/Library/Frameworks","DEVELOPER_LIBRARY_DIR":"/Applications/Xcode.app/Contents/Developer/Library","DEVELOPER_SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs","DEVELOPER_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Tools","DEVELOPER_USR_DIR":"/Applications/Xcode.app/Contents/Developer/usr","DEVELOPMENT_LANGUAGE":"en","DEVELOPMENT_TEAM":"277A9Y83LN","DOCUMENTATION_FOLDER_PATH":"Runner.app/en.lproj/Documentation","DONT_GENERATE_INFOPLIST_FILE":"NO","DO_HEADER_SCANNING_IN_JAM":"NO","DSTROOT":"/tmp/Runner.dst","DT_TOOLCHAIN_DIR":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain","DWARF_DSYM_FILE_NAME":"Runner.app.dSYM","DWARF_DSYM_FILE_SHOULD_ACCOMPANY_PRODUCT":"NO","DWARF_DSYM_FOLDER_PATH":"/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos","EFFECTIVE_PLATFORM_NAME":"-iphoneos","EMBEDDED_CONTENT_CONTAINS_SWIFT":"NO","EMBEDDED_PROFILE_NAME":"embedded.mobileprovision","EMBED_ASSET_PACKS_IN_PRODUCT_BUNDLE":"NO","ENABLE_BITCODE":"NO","ENABLE_DEFAULT_HEADER_SEARCH_PATHS":"YES","ENABLE_HARDENED_RUNTIME":"NO","ENABLE_HEADER_DEPENDENCIES":"YES","ENABLE_ON_DEMAND_RESOURCES":"YES","ENABLE_PREVIEWS":"NO","ENABLE_STRICT_OBJC_MSGSEND":"YES","ENABLE_TESTABILITY":"YES","ENABLE_TESTING_SEARCH_PATHS":"NO","ENTITLEMENTS_ALLOWED":"YES","ENTITLEMENTS_DESTINATION":"Signature","ENTITLEMENTS_REQUIRED":"YES","EXCLUDED_INSTALLSRC_SUBDIRECTORY_PATTERNS":".DS_Store .svn .git .hg CVS","EXCLUDED_RECURSIVE_SEARCH_PATH_SUBDIRECTORIES":"*.nib *.lproj *.framework *.gch *.xcode* *.xcassets (*) .DS_Store CVS .svn .git .hg *.pbproj *.pbxproj","EXECUTABLES_FOLDER_PATH":"Runner.app/Executables","EXECUTABLE_FOLDER_PATH":"Runner.app","EXECUTABLE_NAME":"Runner","EXECUTABLE_PATH":"Runner.app/Runner","EXPANDED_CODE_SIGN_IDENTITY":"EE0D57AEE3052FED99220EBA1332C74117F99992","EXPANDED_CODE_SIGN_IDENTITY_NAME":"Apple Development: denis.nadey@gmail.com (T894CCXCD4)","EXPANDED_PROVISIONING_PROFILE":"39a99c4c-a6dd-48da-b34e-cfca0df05731","FILE_LIST":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects/LinkFileList","FIXED_FILES_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/FixedFiles","FLUTTER_APPLICATION_PATH":"/Users/denisnadey/Desktop/binanceapp","FLUTTER_BUILD_DIR":"build","FLUTTER_BUILD_NAME":"1.0.0","FLUTTER_BUILD_NUMBER":"1","FLUTTER_ROOT":"/Users/denisnadey/development/flutter","FLUTTER_TARGET":"/Users/denisnadey/Desktop/binanceapp/lib/main.dart","FRAMEWORKS_FOLDER_PATH":"Runner.app/Frameworks","FRAMEWORK_FLAG_PREFIX":"-framework","FRAMEWORK_SEARCH_PATHS":"/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos ","FRAMEWORK_VERSION":"A","FULL_PRODUCT_NAME":"Runner.app","GCC3_VERSION":"3.3","GCC_C_LANGUAGE_STANDARD":"gnu99","GCC_DYNAMIC_NO_PIC":"NO","GCC_INLINES_ARE_PRIVATE_EXTERN":"YES","GCC_NO_COMMON_BLOCKS":"YES","GCC_OPTIMIZATION_LEVEL":"0","GCC_PFE_FILE_C_DIALECTS":"c objective-c c++ objective-c++","GCC_PREPROCESSOR_DEFINITIONS":"DEBUG=1 ","GCC_SYMBOLS_PRIVATE_EXTERN":"NO","GCC_THUMB_SUPPORT":"YES","GCC_TREAT_WARNINGS_AS_ERRORS":"NO","GCC_VERSION":"com.apple.compilers.llvm.clang.1_0","GCC_VERSION_IDENTIFIER":"com_apple_compilers_llvm_clang_1_0","GCC_WARN_64_TO_32_BIT_CONVERSION":"YES","GCC_WARN_ABOUT_RETURN_TYPE":"YES_ERROR","GCC_WARN_UNDECLARED_SELECTOR":"YES","GCC_WARN_UNINITIALIZED_AUTOS":"YES_AGGRESSIVE","GCC_WARN_UNUSED_FUNCTION":"YES","GCC_WARN_UNUSED_VARIABLE":"YES","GENERATED_MODULEMAP_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/GeneratedModuleMaps-iphoneos","GENERATE_MASTER_OBJECT_FILE":"NO","GENERATE_PKGINFO_FILE":"YES","GENERATE_PROFILING_CODE":"NO","GENERATE_TEXT_BASED_STUBS":"NO","GID":"20","GROUP":"staff","HEADERMAP_INCLUDES_FLAT_ENTRIES_FOR_TARGET_BEING_BUILT":"YES","HEADERMAP_INCLUDES_FRAMEWORK_ENTRIES_FOR_ALL_PRODUCT_TYPES":"YES","HEADERMAP_INCLUDES_NONPUBLIC_NONPRIVATE_HEADERS":"YES","HEADERMAP_INCLUDES_PROJECT_HEADERS":"YES","HEADERMAP_USES_FRAMEWORK_PREFIX_ENTRIES":"YES","HEADERMAP_USES_VFS":"NO","HEADER_SEARCH_PATHS":"/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/include ","HIDE_BITCODE_SYMBOLS":"YES","HOME":"/Users/denisnadey","ICONV":"/usr/bin/iconv","INFOPLIST_EXPAND_BUILD_SETTINGS":"YES","INFOPLIST_FILE":"Runner/Info.plist","INFOPLIST_OUTPUT_FORMAT":"binary","INFOPLIST_PATH":"Runner.app/Info.plist","INFOPLIST_PREPROCESS":"NO","INFOSTRINGS_PATH":"Runner.app/en.lproj/InfoPlist.strings","INLINE_PRIVATE_FRAMEWORKS":"NO","INSTALLHDRS_COPY_PHASE":"NO","INSTALLHDRS_SCRIPT_PHASE":"NO","INSTALL_DIR":"/tmp/Runner.dst/Applications","INSTALL_GROUP":"staff","INSTALL_MODE_FLAG":"u+w,go-w,a+rX","INSTALL_OWNER":"denisnadey","INSTALL_PATH":"/Applications","INSTALL_ROOT":"/tmp/Runner.dst","IPHONEOS_DEPLOYMENT_TARGET":"12.0","JAVAC_DEFAULT_FLAGS":"-J-Xms64m -J-XX:NewSize=4M -J-Dfile.encoding=UTF8","JAVA_APP_STUB":"/System/Library/Frameworks/JavaVM.framework/Resources/MacOS/JavaApplicationStub","JAVA_ARCHIVE_CLASSES":"YES","JAVA_ARCHIVE_TYPE":"JAR","JAVA_COMPILER":"/usr/bin/javac","JAVA_FOLDER_PATH":"Runner.app/Java","JAVA_FRAMEWORK_RESOURCES_DIRS":"Resources","JAVA_JAR_FLAGS":"cv","JAVA_SOURCE_SUBDIR":".","JAVA_USE_DEPENDENCIES":"YES","JAVA_ZIP_FLAGS":"-urg","JIKES_DEFAULT_FLAGS":"+E +OLDCSO","KASAN_DEFAULT_CFLAGS":"-DKASAN=1 -fsanitize=address -mllvm -asan-globals-live-support -mllvm -asan-force-dynamic-shadow","KEEP_PRIVATE_EXTERNS":"NO","LD_DEPENDENCY_INFO_FILE":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/undefined_arch/Runner_dependency_info.dat","LD_GENERATE_MAP_FILE":"NO","LD_MAP_FILE_PATH":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-LinkMap-normal-undefined_arch.txt","LD_NO_PIE":"NO","LD_QUOTE_LINKER_ARGUMENTS_FOR_COMPILER_DRIVER":"YES","LD_RUNPATH_SEARCH_PATHS":" @executable_path/Frameworks","LEGACY_DEVELOPER_DIR":"/Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer","LEX":"lex","LIBRARY_DEXT_INSTALL_PATH":"/Library/DriverExtensions","LIBRARY_FLAG_NOSPACE":"YES","LIBRARY_FLAG_PREFIX":"-l","LIBRARY_KEXT_INSTALL_PATH":"/Library/Extensions","LIBRARY_SEARCH_PATHS":"/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos ","LINKER_DISPLAYS_MANGLED_NAMES":"NO","LINK_FILE_LIST_normal_arm64":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.LinkFileList","LINK_WITH_STANDARD_LIBRARIES":"YES","LLVM_TARGET_TRIPLE_OS_VERSION":"ios12.0","LLVM_TARGET_TRIPLE_VENDOR":"apple","LOCALIZATION_EXPORT_SUPPORTED":"YES","LOCALIZED_RESOURCES_FOLDER_PATH":"Runner.app/en.lproj","LOCALIZED_STRING_MACRO_NAMES":"NSLocalizedString CFCopyLocalizedString","LOCALIZED_STRING_SWIFTUI_SUPPORT":"YES","LOCAL_ADMIN_APPS_DIR":"/Applications/Utilities","LOCAL_APPS_DIR":"/Applications","LOCAL_DEVELOPER_DIR":"/Library/Developer","LOCAL_LIBRARY_DIR":"/Library","LOCROOT":"/Users/denisnadey/Desktop/binanceapp/ios","LOCSYMROOT":"/Users/denisnadey/Desktop/binanceapp/ios","MACH_O_TYPE":"mh_execute","MAC_OS_X_PRODUCT_BUILD_VERSION":"20D91","MAC_OS_X_VERSION_ACTUAL":"110203","MAC_OS_X_VERSION_MAJOR":"110000","MAC_OS_X_VERSION_MINOR":"110200","METAL_LIBRARY_FILE_BASE":"default","METAL_LIBRARY_OUTPUT_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app","MODULES_FOLDER_PATH":"Runner.app/Modules","MODULE_CACHE_DIR":"/Users/denisnadey/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","MTL_ENABLE_DEBUG_INFO":"YES","NATIVE_ARCH":"armv7","NATIVE_ARCH_32_BIT":"arm","NATIVE_ARCH_64_BIT":"arm64","NATIVE_ARCH_ACTUAL":"arm64","NO_COMMON":"YES","OBJECT_FILE_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects","OBJECT_FILE_DIR_normal":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal","OBJROOT":"/Users/denisnadey/Desktop/binanceapp/build/ios","ONLY_ACTIVE_ARCH":"YES","OS":"MACOS","OSAC":"/usr/bin/osacompile","PACKAGE_CONFIG":"/Users/denisnadey/Desktop/binanceapp/.dart_tool/package_config.json","PACKAGE_TYPE":"com.apple.package-type.wrapper.application","PASCAL_STRINGS":"YES","PATH":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/libexec:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/local/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin","PATH_PREFIXES_EXCLUDED_FROM_HEADER_DEPENDENCIES":"/usr/include /usr/local/include /System/Library/Frameworks /System/Library/PrivateFrameworks /Applications/Xcode.app/Contents/Developer/Headers /Applications/Xcode.app/Contents/Developer/SDKs /Applications/Xcode.app/Contents/Developer/Platforms","PBDEVELOPMENTPLIST_PATH":"Runner.app/pbdevelopment.plist","PER_ARCH_OBJECT_FILE_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/undefined_arch","PER_VARIANT_OBJECT_FILE_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal","PKGINFO_FILE_PATH":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/PkgInfo","PKGINFO_PATH":"Runner.app/PkgInfo","PLATFORM_DEVELOPER_APPLICATIONS_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Applications","PLATFORM_DEVELOPER_BIN_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin","PLATFORM_DEVELOPER_LIBRARY_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library","PLATFORM_DEVELOPER_SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs","PLATFORM_DEVELOPER_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Tools","PLATFORM_DEVELOPER_USR_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr","PLATFORM_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform","PLATFORM_DISPLAY_NAME":"iOS","PLATFORM_FAMILY_NAME":"iOS","PLATFORM_NAME":"iphoneos","PLATFORM_PREFERRED_ARCH":"arm64","PLATFORM_PRODUCT_BUILD_VERSION":"18E182","PLIST_FILE_OUTPUT_FORMAT":"binary","PLUGINS_FOLDER_PATH":"Runner.app/PlugIns","PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR":"YES","PRECOMP_DESTINATION_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/PrefixHeaders","PRESERVE_DEAD_CODE_INITS_AND_TERMS":"NO","PRIVATE_HEADERS_FOLDER_PATH":"Runner.app/PrivateHeaders","PRODUCT_BUNDLE_IDENTIFIER":"com.example.binanceapp","PRODUCT_BUNDLE_PACKAGE_TYPE":"APPL","PRODUCT_MODULE_NAME":"Runner","PRODUCT_NAME":"Runner","PRODUCT_SETTINGS_PATH":"/Users/denisnadey/Desktop/binanceapp/ios/Runner/Info.plist","PRODUCT_TYPE":"com.apple.product-type.application","PROFILING_CODE":"NO","PROJECT":"Runner","PROJECT_DERIVED_FILE_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/DerivedSources","PROJECT_DIR":"/Users/denisnadey/Desktop/binanceapp/ios","PROJECT_FILE_PATH":"/Users/denisnadey/Desktop/binanceapp/ios/Runner.xcodeproj","PROJECT_NAME":"Runner","PROJECT_TEMP_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build","PROJECT_TEMP_ROOT":"/Users/denisnadey/Desktop/binanceapp/build/ios","PROVISIONING_PROFILE_REQUIRED":"YES","PUBLIC_HEADERS_FOLDER_PATH":"Runner.app/Headers","RECURSIVE_SEARCH_PATHS_FOLLOW_SYMLINKS":"YES","REMOVE_CVS_FROM_RESOURCES":"YES","REMOVE_GIT_FROM_RESOURCES":"YES","REMOVE_HEADERS_FROM_EMBEDDED_BUNDLES":"YES","REMOVE_HG_FROM_RESOURCES":"YES","REMOVE_SVN_FROM_RESOURCES":"YES","RESOURCE_RULES_REQUIRED":"YES","REZ_COLLECTOR_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/ResourceManagerResources","REZ_OBJECTS_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/ResourceManagerResources/Objects","REZ_SEARCH_PATHS":"/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos ","SCAN_ALL_SOURCE_FILES_FOR_INCLUDES":"NO","SCRIPTS_FOLDER_PATH":"Runner.app/Scripts","SCRIPT_INPUT_FILE_COUNT":"0","SCRIPT_INPUT_FILE_LIST_COUNT":"0","SCRIPT_OUTPUT_FILE_COUNT":"0","SCRIPT_OUTPUT_FILE_LIST_COUNT":"0","SDKROOT":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.5.sdk","SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.5.sdk","SDK_DIR_iphoneos":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.5.sdk","SDK_DIR_iphoneos14_5":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.5.sdk","SDK_NAME":"iphoneos14.5","SDK_NAMES":"iphoneos14.5","SDK_PRODUCT_BUILD_VERSION":"18E182","SDK_VERSION":"14.5","SDK_VERSION_ACTUAL":"140500","SDK_VERSION_MAJOR":"140000","SDK_VERSION_MINOR":"140500","SED":"/usr/bin/sed","SEPARATE_STRIP":"NO","SEPARATE_SYMBOL_EDIT":"NO","SET_DIR_MODE_OWNER_GROUP":"YES","SET_FILE_MODE_OWNER_GROUP":"NO","SHALLOW_BUNDLE":"YES","SHARED_DERIVED_FILE_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/DerivedSources","SHARED_FRAMEWORKS_FOLDER_PATH":"Runner.app/SharedFrameworks","SHARED_PRECOMPS_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/SharedPrecompiledHeaders","SHARED_SUPPORT_FOLDER_PATH":"Runner.app/SharedSupport","SKIP_INSTALL":"NO","SOURCE_ROOT":"/Users/denisnadey/Desktop/binanceapp/ios","SRCROOT":"/Users/denisnadey/Desktop/binanceapp/ios","STRINGS_FILE_INFOPLIST_RENAME":"YES","STRINGS_FILE_OUTPUT_ENCODING":"binary","STRIP_BITCODE_FROM_COPIED_FILES":"YES","STRIP_INSTALLED_PRODUCT":"YES","STRIP_STYLE":"all","STRIP_SWIFT_SYMBOLS":"YES","SUPPORTED_DEVICE_FAMILIES":"1,2","SUPPORTED_PLATFORMS":"iphoneos iphonesimulator","SUPPORTS_MACCATALYST":"NO","SUPPORTS_MAC_DESIGNED_FOR_IPHONE_IPAD":"YES","SUPPORTS_TEXT_BASED_API":"NO","SWIFT_OBJC_BRIDGING_HEADER":"Runner/Runner-Bridging-Header.h","SWIFT_OPTIMIZATION_LEVEL":"-Onone","SWIFT_PLATFORM_TARGET_PREFIX":"ios","SWIFT_RESPONSE_FILE_PATH_normal_arm64":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.SwiftFileList","SWIFT_VERSION":"5.0","SYMROOT":"/Users/denisnadey/Desktop/binanceapp/build/ios","SYSTEM_ADMIN_APPS_DIR":"/Applications/Utilities","SYSTEM_APPS_DIR":"/Applications","SYSTEM_CORE_SERVICES_DIR":"/System/Library/CoreServices","SYSTEM_DEMOS_DIR":"/Applications/Extras","SYSTEM_DEVELOPER_APPS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications","SYSTEM_DEVELOPER_BIN_DIR":"/Applications/Xcode.app/Contents/Developer/usr/bin","SYSTEM_DEVELOPER_DEMOS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Utilities/Built Examples","SYSTEM_DEVELOPER_DIR":"/Applications/Xcode.app/Contents/Developer","SYSTEM_DEVELOPER_DOC_DIR":"/Applications/Xcode.app/Contents/Developer/ADC Reference Library","SYSTEM_DEVELOPER_GRAPHICS_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Graphics Tools","SYSTEM_DEVELOPER_JAVA_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Java Tools","SYSTEM_DEVELOPER_PERFORMANCE_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Performance Tools","SYSTEM_DEVELOPER_RELEASENOTES_DIR":"/Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes","SYSTEM_DEVELOPER_TOOLS":"/Applications/Xcode.app/Contents/Developer/Tools","SYSTEM_DEVELOPER_TOOLS_DOC_DIR":"/Applications/Xcode.app/Contents/Developer/ADC Reference Library/documentation/DeveloperTools","SYSTEM_DEVELOPER_TOOLS_RELEASENOTES_DIR":"/Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes/DeveloperTools","SYSTEM_DEVELOPER_USR_DIR":"/Applications/Xcode.app/Contents/Developer/usr","SYSTEM_DEVELOPER_UTILITIES_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Utilities","SYSTEM_DEXT_INSTALL_PATH":"/System/Library/DriverExtensions","SYSTEM_DOCUMENTATION_DIR":"/Library/Documentation","SYSTEM_KEXT_INSTALL_PATH":"/System/Library/Extensions","SYSTEM_LIBRARY_DIR":"/System/Library","TAPI_VERIFY_MODE":"ErrorsOnly","TARGETED_DEVICE_FAMILY":"1,2","TARGETNAME":"Runner","TARGET_BUILD_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos","TARGET_DEVICE_IDENTIFIER":"14ea1e3ed325a580fb35bcb957020b43676e0a94","TARGET_DEVICE_MODEL":"iPhone8,1","TARGET_DEVICE_OS_VERSION":"14.5","TARGET_DEVICE_PLATFORM_NAME":"iphoneos","TARGET_NAME":"Runner","TARGET_TEMP_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build","TEMP_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build","TEMP_FILES_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build","TEMP_FILE_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build","TEMP_ROOT":"/Users/denisnadey/Desktop/binanceapp/build/ios","TEST_FRAMEWORK_SEARCH_PATHS":" /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.5.sdk/Developer/Library/Frameworks","TEST_LIBRARY_SEARCH_PATHS":" /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib","TOOLCHAINS":"com.apple.dt.toolchain.XcodeDefault","TOOLCHAIN_DIR":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain","TRACK_WIDGET_CREATION":"true","TREAT_MISSING_BASELINES_AS_TEST_FAILURES":"NO","TREE_SHAKE_ICONS":"false","TeamIdentifierPrefix":"277A9Y83LN.","UID":"501","UNLOCALIZED_RESOURCES_FOLDER_PATH":"Runner.app","UNSTRIPPED_PRODUCT":"NO","USER":"denisnadey","USER_APPS_DIR":"/Users/denisnadey/Applications","USER_LIBRARY_DIR":"/Users/denisnadey/Library","USE_DYNAMIC_NO_PIC":"YES","USE_HEADERMAP":"YES","USE_HEADER_SYMLINKS":"NO","USE_LLVM_TARGET_TRIPLES":"YES","USE_LLVM_TARGET_TRIPLES_FOR_CLANG":"YES","USE_LLVM_TARGET_TRIPLES_FOR_LD":"YES","USE_LLVM_TARGET_TRIPLES_FOR_TAPI":"YES","VALIDATE_DEVELOPMENT_ASSET_PATHS":"YES_ERROR","VALIDATE_PRODUCT":"NO","VALIDATE_WORKSPACE":"YES_ERROR","VALID_ARCHS":"arm64 arm64e armv7 armv7s","VERBOSE_PBXCP":"NO","VERSIONING_SYSTEM":"apple-generic","VERSIONPLIST_PATH":"Runner.app/version.plist","VERSION_INFO_BUILDER":"denisnadey","VERSION_INFO_FILE":"Runner_vers.c","VERSION_INFO_STRING":"\"@(#)PROGRAM:Runner PROJECT:Runner-1\"","WRAPPER_EXTENSION":"app","WRAPPER_NAME":"Runner.app","WRAPPER_SUFFIX":".app","WRAP_ASSET_PACKS_IN_SEPARATE_DIRECTORIES":"NO","XCODE_APP_SUPPORT_DIR":"/Applications/Xcode.app/Contents/Developer/Library/Xcode","XCODE_PRODUCT_BUILD_VERSION":"12E262","XCODE_VERSION_ACTUAL":"1250","XCODE_VERSION_MAJOR":"1200","XCODE_VERSION_MINOR":"1250","XPCSERVICES_FOLDER_PATH":"Runner.app/XPCServices","YACC":"yacc","arch":"undefined_arch","variant":"normal"},"allow-missing-inputs":true,"always-out-of-date":true,"working-directory":"/Users/denisnadey/Desktop/binanceapp/ios","control-enabled":false,"signature":"58484596efad9dee1a8938dce73a0088"} + "target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49-:Debug:PhaseScriptExecution Thin Binary /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh": {"tool":"shell","description":"PhaseScriptExecution Thin Binary /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh","inputs":["/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh","",""],"outputs":[""],"args":["/bin/sh","-c","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh"],"env":{"ACTION":"build","AD_HOC_CODE_SIGNING_ALLOWED":"NO","ALTERNATE_GROUP":"staff","ALTERNATE_MODE":"u+w,go-w,a+rX","ALTERNATE_OWNER":"denisnadey","ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES":"NO","ALWAYS_SEARCH_USER_PATHS":"NO","ALWAYS_USE_SEPARATE_HEADERMAPS":"NO","APPLE_INTERNAL_DEVELOPER_DIR":"/AppleInternal/Developer","APPLE_INTERNAL_DIR":"/AppleInternal","APPLE_INTERNAL_DOCUMENTATION_DIR":"/AppleInternal/Documentation","APPLE_INTERNAL_LIBRARY_DIR":"/AppleInternal/Library","APPLE_INTERNAL_TOOLS":"/AppleInternal/Developer/Tools","APPLICATION_EXTENSION_API_ONLY":"NO","APPLY_RULES_IN_COPY_FILES":"NO","APPLY_RULES_IN_COPY_HEADERS":"NO","ARCHS":"arm64","ARCHS_STANDARD":"arm64","ARCHS_STANDARD_32_64_BIT":"armv7 arm64","ARCHS_STANDARD_32_BIT":"armv7","ARCHS_STANDARD_64_BIT":"arm64","ARCHS_STANDARD_INCLUDING_64_BIT":"arm64","ARCHS_UNIVERSAL_IPHONE_OS":"armv7 arm64","ASSETCATALOG_COMPILER_APPICON_NAME":"AppIcon","ASSETCATALOG_FILTER_FOR_DEVICE_MODEL":"iPhone8,1","ASSETCATALOG_FILTER_FOR_DEVICE_OS_VERSION":"14.5","AVAILABLE_PLATFORMS":"appletvos appletvsimulator iphoneos iphonesimulator macosx watchos watchsimulator","AppIdentifierPrefix":"277A9Y83LN.","BITCODE_GENERATION_MODE":"marker","BUILD_ACTIVE_RESOURCES_ONLY":"YES","BUILD_COMPONENTS":"headers build","BUILD_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios","BUILD_LIBRARY_FOR_DISTRIBUTION":"NO","BUILD_ROOT":"/Users/denisnadey/Desktop/binanceapp/build/ios","BUILD_STYLE":"","BUILD_VARIANTS":"normal","BUILT_PRODUCTS_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos","BUNDLE_CONTENTS_FOLDER_PATH_deep":"Contents/","BUNDLE_EXECUTABLE_FOLDER_NAME_deep":"MacOS","BUNDLE_FORMAT":"shallow","BUNDLE_FRAMEWORKS_FOLDER_PATH":"Frameworks","BUNDLE_PLUGINS_FOLDER_PATH":"PlugIns","BUNDLE_PRIVATE_HEADERS_FOLDER_PATH":"PrivateHeaders","BUNDLE_PUBLIC_HEADERS_FOLDER_PATH":"Headers","CACHE_ROOT":"/var/folders/kq/kc3pf_ns62n6hc7n74119qf00000gn/C/com.apple.DeveloperTools/12.5-12E262/Xcode","CCHROOT":"/var/folders/kq/kc3pf_ns62n6hc7n74119qf00000gn/C/com.apple.DeveloperTools/12.5-12E262/Xcode","CHMOD":"/bin/chmod","CHOWN":"/usr/sbin/chown","CLANG_ANALYZER_NONNULL":"YES","CLANG_CXX_LANGUAGE_STANDARD":"gnu++0x","CLANG_CXX_LIBRARY":"libc++","CLANG_ENABLE_MODULES":"YES","CLANG_ENABLE_OBJC_ARC":"YES","CLANG_MODULES_BUILD_SESSION_FILE":"/Users/denisnadey/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING":"YES","CLANG_WARN_BOOL_CONVERSION":"YES","CLANG_WARN_COMMA":"YES","CLANG_WARN_CONSTANT_CONVERSION":"YES","CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS":"YES","CLANG_WARN_DIRECT_OBJC_ISA_USAGE":"YES_ERROR","CLANG_WARN_EMPTY_BODY":"YES","CLANG_WARN_ENUM_CONVERSION":"YES","CLANG_WARN_INFINITE_RECURSION":"YES","CLANG_WARN_INT_CONVERSION":"YES","CLANG_WARN_NON_LITERAL_NULL_CONVERSION":"YES","CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF":"YES","CLANG_WARN_OBJC_LITERAL_CONVERSION":"YES","CLANG_WARN_OBJC_ROOT_CLASS":"YES_ERROR","CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER":"YES","CLANG_WARN_RANGE_LOOP_ANALYSIS":"YES","CLANG_WARN_STRICT_PROTOTYPES":"YES","CLANG_WARN_SUSPICIOUS_MOVE":"YES","CLANG_WARN_UNREACHABLE_CODE":"YES","CLANG_WARN__DUPLICATE_METHOD_MATCH":"YES","CLASS_FILE_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/JavaClasses","CLEAN_PRECOMPS":"YES","CLONE_HEADERS":"NO","COCOAPODS_PARALLEL_CODE_SIGN":"true","CODESIGNING_FOLDER_PATH":"/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app","CODE_SIGNING_ALLOWED":"YES","CODE_SIGNING_REQUIRED":"YES","CODE_SIGN_CONTEXT_CLASS":"XCiPhoneOSCodeSignContext","CODE_SIGN_IDENTITY":"iPhone Developer","CODE_SIGN_INJECT_BASE_ENTITLEMENTS":"YES","COLOR_DIAGNOSTICS":"NO","COMBINE_HIDPI_IMAGES":"NO","COMPILER_INDEX_STORE_ENABLE":"Default","COMPOSITE_SDK_DIRS":"/Users/denisnadey/Desktop/binanceapp/build/ios/CompositeSDKs","COMPRESS_PNG_FILES":"YES","CONFIGURATION":"Debug","CONFIGURATION_BUILD_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos","CONFIGURATION_TEMP_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos","CONTENTS_FOLDER_PATH":"Runner.app","COPYING_PRESERVES_HFS_DATA":"NO","COPY_HEADERS_RUN_UNIFDEF":"NO","COPY_PHASE_STRIP":"NO","COPY_RESOURCES_FROM_STATIC_FRAMEWORKS":"YES","CORRESPONDING_SIMULATOR_PLATFORM_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform","CORRESPONDING_SIMULATOR_PLATFORM_NAME":"iphonesimulator","CORRESPONDING_SIMULATOR_SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk","CORRESPONDING_SIMULATOR_SDK_NAME":"iphonesimulator14.5","CP":"/bin/cp","CREATE_INFOPLIST_SECTION_IN_BINARY":"NO","CURRENT_ARCH":"undefined_arch","CURRENT_PROJECT_VERSION":"1","CURRENT_VARIANT":"normal","DART_DEFINES":"RkxVVFRFUl9XRUJfQVVUT19ERVRFQ1Q9dHJ1ZQ==","DART_OBFUSCATION":"false","DEAD_CODE_STRIPPING":"YES","DEBUGGING_SYMBOLS":"YES","DEBUG_INFORMATION_FORMAT":"dwarf","DEFAULT_COMPILER":"com.apple.compilers.llvm.clang.1_0","DEFAULT_DEXT_INSTALL_PATH":"/System/Library/DriverExtensions","DEFAULT_KEXT_INSTALL_PATH":"/System/Library/Extensions","DEFINES_MODULE":"NO","DEPLOYMENT_LOCATION":"NO","DEPLOYMENT_POSTPROCESSING":"NO","DEPLOYMENT_TARGET_CLANG_ENV_NAME":"IPHONEOS_DEPLOYMENT_TARGET","DEPLOYMENT_TARGET_CLANG_FLAG_NAME":"miphoneos-version-min","DEPLOYMENT_TARGET_CLANG_FLAG_PREFIX":"-miphoneos-version-min=","DEPLOYMENT_TARGET_LD_ENV_NAME":"IPHONEOS_DEPLOYMENT_TARGET","DEPLOYMENT_TARGET_LD_FLAG_NAME":"ios_version_min","DEPLOYMENT_TARGET_SETTING_NAME":"IPHONEOS_DEPLOYMENT_TARGET","DEPLOYMENT_TARGET_SUGGESTED_VALUES":"9.0 9.2 10.0 10.2 11.0 11.2 11.4 12.1 12.3 13.0 13.2 13.4 13.6 14.1 14.3 14.5","DERIVED_FILES_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources","DERIVED_FILE_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources","DERIVED_SOURCES_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources","DERIVE_MACCATALYST_PRODUCT_BUNDLE_IDENTIFIER":"NO","DEVELOPER_APPLICATIONS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications","DEVELOPER_BIN_DIR":"/Applications/Xcode.app/Contents/Developer/usr/bin","DEVELOPER_DIR":"/Applications/Xcode.app/Contents/Developer","DEVELOPER_FRAMEWORKS_DIR":"/Applications/Xcode.app/Contents/Developer/Library/Frameworks","DEVELOPER_FRAMEWORKS_DIR_QUOTED":"/Applications/Xcode.app/Contents/Developer/Library/Frameworks","DEVELOPER_LIBRARY_DIR":"/Applications/Xcode.app/Contents/Developer/Library","DEVELOPER_SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs","DEVELOPER_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Tools","DEVELOPER_USR_DIR":"/Applications/Xcode.app/Contents/Developer/usr","DEVELOPMENT_LANGUAGE":"en","DEVELOPMENT_TEAM":"277A9Y83LN","DOCUMENTATION_FOLDER_PATH":"Runner.app/en.lproj/Documentation","DONT_GENERATE_INFOPLIST_FILE":"NO","DO_HEADER_SCANNING_IN_JAM":"NO","DSTROOT":"/tmp/Runner.dst","DT_TOOLCHAIN_DIR":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain","DWARF_DSYM_FILE_NAME":"Runner.app.dSYM","DWARF_DSYM_FILE_SHOULD_ACCOMPANY_PRODUCT":"NO","DWARF_DSYM_FOLDER_PATH":"/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos","EFFECTIVE_PLATFORM_NAME":"-iphoneos","EMBEDDED_CONTENT_CONTAINS_SWIFT":"NO","EMBEDDED_PROFILE_NAME":"embedded.mobileprovision","EMBED_ASSET_PACKS_IN_PRODUCT_BUNDLE":"NO","ENABLE_BITCODE":"NO","ENABLE_DEFAULT_HEADER_SEARCH_PATHS":"YES","ENABLE_HARDENED_RUNTIME":"NO","ENABLE_HEADER_DEPENDENCIES":"YES","ENABLE_ON_DEMAND_RESOURCES":"YES","ENABLE_PREVIEWS":"NO","ENABLE_STRICT_OBJC_MSGSEND":"YES","ENABLE_TESTABILITY":"YES","ENABLE_TESTING_SEARCH_PATHS":"NO","ENTITLEMENTS_ALLOWED":"YES","ENTITLEMENTS_DESTINATION":"Signature","ENTITLEMENTS_REQUIRED":"YES","EXCLUDED_INSTALLSRC_SUBDIRECTORY_PATTERNS":".DS_Store .svn .git .hg CVS","EXCLUDED_RECURSIVE_SEARCH_PATH_SUBDIRECTORIES":"*.nib *.lproj *.framework *.gch *.xcode* *.xcassets (*) .DS_Store CVS .svn .git .hg *.pbproj *.pbxproj","EXECUTABLES_FOLDER_PATH":"Runner.app/Executables","EXECUTABLE_FOLDER_PATH":"Runner.app","EXECUTABLE_NAME":"Runner","EXECUTABLE_PATH":"Runner.app/Runner","EXPANDED_CODE_SIGN_IDENTITY":"EE0D57AEE3052FED99220EBA1332C74117F99992","EXPANDED_CODE_SIGN_IDENTITY_NAME":"Apple Development: denis.nadey@gmail.com (T894CCXCD4)","EXPANDED_PROVISIONING_PROFILE":"39a99c4c-a6dd-48da-b34e-cfca0df05731","FILE_LIST":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects/LinkFileList","FIXED_FILES_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/FixedFiles","FLUTTER_APPLICATION_PATH":"/Users/denisnadey/Desktop/binanceapp","FLUTTER_BUILD_DIR":"build","FLUTTER_BUILD_NAME":"1.0.0","FLUTTER_BUILD_NUMBER":"1","FLUTTER_ROOT":"/Users/denisnadey/development/flutter","FLUTTER_TARGET":"/Users/denisnadey/Desktop/binanceapp/lib/main.dart","FRAMEWORKS_FOLDER_PATH":"Runner.app/Frameworks","FRAMEWORK_FLAG_PREFIX":"-framework","FRAMEWORK_SEARCH_PATHS":"/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos ","FRAMEWORK_VERSION":"A","FULL_PRODUCT_NAME":"Runner.app","GCC3_VERSION":"3.3","GCC_C_LANGUAGE_STANDARD":"gnu99","GCC_DYNAMIC_NO_PIC":"NO","GCC_INLINES_ARE_PRIVATE_EXTERN":"YES","GCC_NO_COMMON_BLOCKS":"YES","GCC_OPTIMIZATION_LEVEL":"0","GCC_PFE_FILE_C_DIALECTS":"c objective-c c++ objective-c++","GCC_PREPROCESSOR_DEFINITIONS":"DEBUG=1 ","GCC_SYMBOLS_PRIVATE_EXTERN":"NO","GCC_THUMB_SUPPORT":"YES","GCC_TREAT_WARNINGS_AS_ERRORS":"NO","GCC_VERSION":"com.apple.compilers.llvm.clang.1_0","GCC_VERSION_IDENTIFIER":"com_apple_compilers_llvm_clang_1_0","GCC_WARN_64_TO_32_BIT_CONVERSION":"YES","GCC_WARN_ABOUT_RETURN_TYPE":"YES_ERROR","GCC_WARN_UNDECLARED_SELECTOR":"YES","GCC_WARN_UNINITIALIZED_AUTOS":"YES_AGGRESSIVE","GCC_WARN_UNUSED_FUNCTION":"YES","GCC_WARN_UNUSED_VARIABLE":"YES","GENERATED_MODULEMAP_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/GeneratedModuleMaps-iphoneos","GENERATE_MASTER_OBJECT_FILE":"NO","GENERATE_PKGINFO_FILE":"YES","GENERATE_PROFILING_CODE":"NO","GENERATE_TEXT_BASED_STUBS":"NO","GID":"20","GROUP":"staff","HEADERMAP_INCLUDES_FLAT_ENTRIES_FOR_TARGET_BEING_BUILT":"YES","HEADERMAP_INCLUDES_FRAMEWORK_ENTRIES_FOR_ALL_PRODUCT_TYPES":"YES","HEADERMAP_INCLUDES_NONPUBLIC_NONPRIVATE_HEADERS":"YES","HEADERMAP_INCLUDES_PROJECT_HEADERS":"YES","HEADERMAP_USES_FRAMEWORK_PREFIX_ENTRIES":"YES","HEADERMAP_USES_VFS":"NO","HEADER_SEARCH_PATHS":"/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/include ","HIDE_BITCODE_SYMBOLS":"YES","HOME":"/Users/denisnadey","ICONV":"/usr/bin/iconv","INFOPLIST_EXPAND_BUILD_SETTINGS":"YES","INFOPLIST_FILE":"Runner/Info.plist","INFOPLIST_OUTPUT_FORMAT":"binary","INFOPLIST_PATH":"Runner.app/Info.plist","INFOPLIST_PREPROCESS":"NO","INFOSTRINGS_PATH":"Runner.app/en.lproj/InfoPlist.strings","INLINE_PRIVATE_FRAMEWORKS":"NO","INSTALLHDRS_COPY_PHASE":"NO","INSTALLHDRS_SCRIPT_PHASE":"NO","INSTALL_DIR":"/tmp/Runner.dst/Applications","INSTALL_GROUP":"staff","INSTALL_MODE_FLAG":"u+w,go-w,a+rX","INSTALL_OWNER":"denisnadey","INSTALL_PATH":"/Applications","INSTALL_ROOT":"/tmp/Runner.dst","IPHONEOS_DEPLOYMENT_TARGET":"12.0","JAVAC_DEFAULT_FLAGS":"-J-Xms64m -J-XX:NewSize=4M -J-Dfile.encoding=UTF8","JAVA_APP_STUB":"/System/Library/Frameworks/JavaVM.framework/Resources/MacOS/JavaApplicationStub","JAVA_ARCHIVE_CLASSES":"YES","JAVA_ARCHIVE_TYPE":"JAR","JAVA_COMPILER":"/usr/bin/javac","JAVA_FOLDER_PATH":"Runner.app/Java","JAVA_FRAMEWORK_RESOURCES_DIRS":"Resources","JAVA_JAR_FLAGS":"cv","JAVA_SOURCE_SUBDIR":".","JAVA_USE_DEPENDENCIES":"YES","JAVA_ZIP_FLAGS":"-urg","JIKES_DEFAULT_FLAGS":"+E +OLDCSO","KASAN_DEFAULT_CFLAGS":"-DKASAN=1 -fsanitize=address -mllvm -asan-globals-live-support -mllvm -asan-force-dynamic-shadow","KEEP_PRIVATE_EXTERNS":"NO","LD_DEPENDENCY_INFO_FILE":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/undefined_arch/Runner_dependency_info.dat","LD_GENERATE_MAP_FILE":"NO","LD_MAP_FILE_PATH":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-LinkMap-normal-undefined_arch.txt","LD_NO_PIE":"NO","LD_QUOTE_LINKER_ARGUMENTS_FOR_COMPILER_DRIVER":"YES","LD_RUNPATH_SEARCH_PATHS":" @executable_path/Frameworks","LEGACY_DEVELOPER_DIR":"/Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer","LEX":"lex","LIBRARY_DEXT_INSTALL_PATH":"/Library/DriverExtensions","LIBRARY_FLAG_NOSPACE":"YES","LIBRARY_FLAG_PREFIX":"-l","LIBRARY_KEXT_INSTALL_PATH":"/Library/Extensions","LIBRARY_SEARCH_PATHS":"/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos ","LINKER_DISPLAYS_MANGLED_NAMES":"NO","LINK_FILE_LIST_normal_arm64":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.LinkFileList","LINK_WITH_STANDARD_LIBRARIES":"YES","LLVM_TARGET_TRIPLE_OS_VERSION":"ios12.0","LLVM_TARGET_TRIPLE_VENDOR":"apple","LOCALIZATION_EXPORT_SUPPORTED":"YES","LOCALIZED_RESOURCES_FOLDER_PATH":"Runner.app/en.lproj","LOCALIZED_STRING_MACRO_NAMES":"NSLocalizedString CFCopyLocalizedString","LOCALIZED_STRING_SWIFTUI_SUPPORT":"YES","LOCAL_ADMIN_APPS_DIR":"/Applications/Utilities","LOCAL_APPS_DIR":"/Applications","LOCAL_DEVELOPER_DIR":"/Library/Developer","LOCAL_LIBRARY_DIR":"/Library","LOCROOT":"/Users/denisnadey/Desktop/binanceapp/ios","LOCSYMROOT":"/Users/denisnadey/Desktop/binanceapp/ios","MACH_O_TYPE":"mh_execute","MAC_OS_X_PRODUCT_BUILD_VERSION":"20D91","MAC_OS_X_VERSION_ACTUAL":"110203","MAC_OS_X_VERSION_MAJOR":"110000","MAC_OS_X_VERSION_MINOR":"110200","METAL_LIBRARY_FILE_BASE":"default","METAL_LIBRARY_OUTPUT_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app","MODULES_FOLDER_PATH":"Runner.app/Modules","MODULE_CACHE_DIR":"/Users/denisnadey/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","MTL_ENABLE_DEBUG_INFO":"YES","NATIVE_ARCH":"armv7","NATIVE_ARCH_32_BIT":"arm","NATIVE_ARCH_64_BIT":"arm64","NATIVE_ARCH_ACTUAL":"arm64","NO_COMMON":"YES","OBJECT_FILE_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects","OBJECT_FILE_DIR_normal":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal","OBJROOT":"/Users/denisnadey/Desktop/binanceapp/build/ios","ONLY_ACTIVE_ARCH":"YES","OS":"MACOS","OSAC":"/usr/bin/osacompile","PACKAGE_CONFIG":"/Users/denisnadey/Desktop/binanceapp/.dart_tool/package_config.json","PACKAGE_TYPE":"com.apple.package-type.wrapper.application","PASCAL_STRINGS":"YES","PATH":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/libexec:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/local/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin","PATH_PREFIXES_EXCLUDED_FROM_HEADER_DEPENDENCIES":"/usr/include /usr/local/include /System/Library/Frameworks /System/Library/PrivateFrameworks /Applications/Xcode.app/Contents/Developer/Headers /Applications/Xcode.app/Contents/Developer/SDKs /Applications/Xcode.app/Contents/Developer/Platforms","PBDEVELOPMENTPLIST_PATH":"Runner.app/pbdevelopment.plist","PER_ARCH_OBJECT_FILE_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/undefined_arch","PER_VARIANT_OBJECT_FILE_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal","PKGINFO_FILE_PATH":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/PkgInfo","PKGINFO_PATH":"Runner.app/PkgInfo","PLATFORM_DEVELOPER_APPLICATIONS_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Applications","PLATFORM_DEVELOPER_BIN_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin","PLATFORM_DEVELOPER_LIBRARY_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library","PLATFORM_DEVELOPER_SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs","PLATFORM_DEVELOPER_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Tools","PLATFORM_DEVELOPER_USR_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr","PLATFORM_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform","PLATFORM_DISPLAY_NAME":"iOS","PLATFORM_FAMILY_NAME":"iOS","PLATFORM_NAME":"iphoneos","PLATFORM_PREFERRED_ARCH":"arm64","PLATFORM_PRODUCT_BUILD_VERSION":"18E182","PLIST_FILE_OUTPUT_FORMAT":"binary","PLUGINS_FOLDER_PATH":"Runner.app/PlugIns","PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR":"YES","PRECOMP_DESTINATION_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/PrefixHeaders","PRESERVE_DEAD_CODE_INITS_AND_TERMS":"NO","PRIVATE_HEADERS_FOLDER_PATH":"Runner.app/PrivateHeaders","PRODUCT_BUNDLE_IDENTIFIER":"com.example.binanceapp","PRODUCT_BUNDLE_PACKAGE_TYPE":"APPL","PRODUCT_MODULE_NAME":"Runner","PRODUCT_NAME":"Runner","PRODUCT_SETTINGS_PATH":"/Users/denisnadey/Desktop/binanceapp/ios/Runner/Info.plist","PRODUCT_TYPE":"com.apple.product-type.application","PROFILING_CODE":"NO","PROJECT":"Runner","PROJECT_DERIVED_FILE_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/DerivedSources","PROJECT_DIR":"/Users/denisnadey/Desktop/binanceapp/ios","PROJECT_FILE_PATH":"/Users/denisnadey/Desktop/binanceapp/ios/Runner.xcodeproj","PROJECT_NAME":"Runner","PROJECT_TEMP_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build","PROJECT_TEMP_ROOT":"/Users/denisnadey/Desktop/binanceapp/build/ios","PROVISIONING_PROFILE_REQUIRED":"YES","PUBLIC_HEADERS_FOLDER_PATH":"Runner.app/Headers","RECURSIVE_SEARCH_PATHS_FOLLOW_SYMLINKS":"YES","REMOVE_CVS_FROM_RESOURCES":"YES","REMOVE_GIT_FROM_RESOURCES":"YES","REMOVE_HEADERS_FROM_EMBEDDED_BUNDLES":"YES","REMOVE_HG_FROM_RESOURCES":"YES","REMOVE_SVN_FROM_RESOURCES":"YES","RESOURCE_RULES_REQUIRED":"YES","REZ_COLLECTOR_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/ResourceManagerResources","REZ_OBJECTS_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/ResourceManagerResources/Objects","REZ_SEARCH_PATHS":"/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos ","SCAN_ALL_SOURCE_FILES_FOR_INCLUDES":"NO","SCRIPTS_FOLDER_PATH":"Runner.app/Scripts","SCRIPT_INPUT_FILE_COUNT":"0","SCRIPT_INPUT_FILE_LIST_COUNT":"0","SCRIPT_OUTPUT_FILE_COUNT":"0","SCRIPT_OUTPUT_FILE_LIST_COUNT":"0","SDKROOT":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.5.sdk","SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.5.sdk","SDK_DIR_iphoneos":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.5.sdk","SDK_DIR_iphoneos14_5":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.5.sdk","SDK_NAME":"iphoneos14.5","SDK_NAMES":"iphoneos14.5","SDK_PRODUCT_BUILD_VERSION":"18E182","SDK_VERSION":"14.5","SDK_VERSION_ACTUAL":"140500","SDK_VERSION_MAJOR":"140000","SDK_VERSION_MINOR":"140500","SED":"/usr/bin/sed","SEPARATE_STRIP":"NO","SEPARATE_SYMBOL_EDIT":"NO","SET_DIR_MODE_OWNER_GROUP":"YES","SET_FILE_MODE_OWNER_GROUP":"NO","SHALLOW_BUNDLE":"YES","SHARED_DERIVED_FILE_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/DerivedSources","SHARED_FRAMEWORKS_FOLDER_PATH":"Runner.app/SharedFrameworks","SHARED_PRECOMPS_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/SharedPrecompiledHeaders","SHARED_SUPPORT_FOLDER_PATH":"Runner.app/SharedSupport","SKIP_INSTALL":"NO","SOURCE_ROOT":"/Users/denisnadey/Desktop/binanceapp/ios","SRCROOT":"/Users/denisnadey/Desktop/binanceapp/ios","STRINGS_FILE_INFOPLIST_RENAME":"YES","STRINGS_FILE_OUTPUT_ENCODING":"binary","STRIP_BITCODE_FROM_COPIED_FILES":"YES","STRIP_INSTALLED_PRODUCT":"YES","STRIP_STYLE":"all","STRIP_SWIFT_SYMBOLS":"YES","SUPPORTED_DEVICE_FAMILIES":"1,2","SUPPORTED_PLATFORMS":"iphoneos iphonesimulator","SUPPORTS_MACCATALYST":"NO","SUPPORTS_MAC_DESIGNED_FOR_IPHONE_IPAD":"YES","SUPPORTS_TEXT_BASED_API":"NO","SWIFT_OBJC_BRIDGING_HEADER":"Runner/Runner-Bridging-Header.h","SWIFT_OPTIMIZATION_LEVEL":"-Onone","SWIFT_PLATFORM_TARGET_PREFIX":"ios","SWIFT_RESPONSE_FILE_PATH_normal_arm64":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.SwiftFileList","SWIFT_VERSION":"5.0","SYMROOT":"/Users/denisnadey/Desktop/binanceapp/build/ios","SYSTEM_ADMIN_APPS_DIR":"/Applications/Utilities","SYSTEM_APPS_DIR":"/Applications","SYSTEM_CORE_SERVICES_DIR":"/System/Library/CoreServices","SYSTEM_DEMOS_DIR":"/Applications/Extras","SYSTEM_DEVELOPER_APPS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications","SYSTEM_DEVELOPER_BIN_DIR":"/Applications/Xcode.app/Contents/Developer/usr/bin","SYSTEM_DEVELOPER_DEMOS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Utilities/Built Examples","SYSTEM_DEVELOPER_DIR":"/Applications/Xcode.app/Contents/Developer","SYSTEM_DEVELOPER_DOC_DIR":"/Applications/Xcode.app/Contents/Developer/ADC Reference Library","SYSTEM_DEVELOPER_GRAPHICS_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Graphics Tools","SYSTEM_DEVELOPER_JAVA_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Java Tools","SYSTEM_DEVELOPER_PERFORMANCE_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Performance Tools","SYSTEM_DEVELOPER_RELEASENOTES_DIR":"/Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes","SYSTEM_DEVELOPER_TOOLS":"/Applications/Xcode.app/Contents/Developer/Tools","SYSTEM_DEVELOPER_TOOLS_DOC_DIR":"/Applications/Xcode.app/Contents/Developer/ADC Reference Library/documentation/DeveloperTools","SYSTEM_DEVELOPER_TOOLS_RELEASENOTES_DIR":"/Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes/DeveloperTools","SYSTEM_DEVELOPER_USR_DIR":"/Applications/Xcode.app/Contents/Developer/usr","SYSTEM_DEVELOPER_UTILITIES_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Utilities","SYSTEM_DEXT_INSTALL_PATH":"/System/Library/DriverExtensions","SYSTEM_DOCUMENTATION_DIR":"/Library/Documentation","SYSTEM_KEXT_INSTALL_PATH":"/System/Library/Extensions","SYSTEM_LIBRARY_DIR":"/System/Library","TAPI_VERIFY_MODE":"ErrorsOnly","TARGETED_DEVICE_FAMILY":"1,2","TARGETNAME":"Runner","TARGET_BUILD_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos","TARGET_DEVICE_IDENTIFIER":"14ea1e3ed325a580fb35bcb957020b43676e0a94","TARGET_DEVICE_MODEL":"iPhone8,1","TARGET_DEVICE_OS_VERSION":"14.5","TARGET_DEVICE_PLATFORM_NAME":"iphoneos","TARGET_NAME":"Runner","TARGET_TEMP_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build","TEMP_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build","TEMP_FILES_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build","TEMP_FILE_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build","TEMP_ROOT":"/Users/denisnadey/Desktop/binanceapp/build/ios","TEST_FRAMEWORK_SEARCH_PATHS":" /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.5.sdk/Developer/Library/Frameworks","TEST_LIBRARY_SEARCH_PATHS":" /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib","TOOLCHAINS":"com.apple.dt.toolchain.XcodeDefault","TOOLCHAIN_DIR":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain","TRACK_WIDGET_CREATION":"true","TREAT_MISSING_BASELINES_AS_TEST_FAILURES":"NO","TREE_SHAKE_ICONS":"false","TeamIdentifierPrefix":"277A9Y83LN.","UID":"501","UNLOCALIZED_RESOURCES_FOLDER_PATH":"Runner.app","UNSTRIPPED_PRODUCT":"NO","USER":"denisnadey","USER_APPS_DIR":"/Users/denisnadey/Applications","USER_LIBRARY_DIR":"/Users/denisnadey/Library","USE_DYNAMIC_NO_PIC":"YES","USE_HEADERMAP":"YES","USE_HEADER_SYMLINKS":"NO","USE_LLVM_TARGET_TRIPLES":"YES","USE_LLVM_TARGET_TRIPLES_FOR_CLANG":"YES","USE_LLVM_TARGET_TRIPLES_FOR_LD":"YES","USE_LLVM_TARGET_TRIPLES_FOR_TAPI":"YES","VALIDATE_DEVELOPMENT_ASSET_PATHS":"YES_ERROR","VALIDATE_PRODUCT":"NO","VALIDATE_WORKSPACE":"YES_ERROR","VALID_ARCHS":"arm64 arm64e armv7 armv7s","VERBOSE_PBXCP":"NO","VERSIONING_SYSTEM":"apple-generic","VERSIONPLIST_PATH":"Runner.app/version.plist","VERSION_INFO_BUILDER":"denisnadey","VERSION_INFO_FILE":"Runner_vers.c","VERSION_INFO_STRING":"\"@(#)PROGRAM:Runner PROJECT:Runner-1\"","WRAPPER_EXTENSION":"app","WRAPPER_NAME":"Runner.app","WRAPPER_SUFFIX":".app","WRAP_ASSET_PACKS_IN_SEPARATE_DIRECTORIES":"NO","XCODE_APP_SUPPORT_DIR":"/Applications/Xcode.app/Contents/Developer/Library/Xcode","XCODE_PRODUCT_BUILD_VERSION":"12E262","XCODE_VERSION_ACTUAL":"1250","XCODE_VERSION_MAJOR":"1200","XCODE_VERSION_MINOR":"1250","XPCSERVICES_FOLDER_PATH":"Runner.app/XPCServices","YACC":"yacc","arch":"undefined_arch","variant":"normal"},"allow-missing-inputs":true,"always-out-of-date":true,"working-directory":"/Users/denisnadey/Desktop/binanceapp/ios","control-enabled":false,"signature":"6b22aa36542fe28e3076089ab46efa4d"} + "target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49-:Debug:ProcessInfoPlistFile /Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app/Info.plist /Users/denisnadey/Desktop/binanceapp/ios/Runner/Info.plist": {"tool":"info-plist-processor","description":"ProcessInfoPlistFile /Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app/Info.plist /Users/denisnadey/Desktop/binanceapp/ios/Runner/Info.plist","inputs":["/Users/denisnadey/Desktop/binanceapp/ios/Runner/Info.plist","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Base.lproj/LaunchScreen-SBPartialInfo.plist","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Base.lproj/Main-SBPartialInfo.plist","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/assetcatalog_generated_info.plist","",""],"outputs":["/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app/Info.plist"]} + "target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49-:Debug:ProcessProductPackaging /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner.app.xcent": {"tool":"process-product-entitlements","description":"ProcessProductPackaging /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner.app.xcent","inputs":["/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources/Entitlements.plist","",""],"outputs":["/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner.app.xcent"]} + "target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49-:Debug:ProcessProductPackaging /Users/denisnadey/Library/MobileDevice/Provisioning Profiles/39a99c4c-a6dd-48da-b34e-cfca0df05731.mobileprovision /Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app/embedded.mobileprovision": {"tool":"process-product-provisioning-profile","description":"ProcessProductPackaging /Users/denisnadey/Library/MobileDevice/Provisioning Profiles/39a99c4c-a6dd-48da-b34e-cfca0df05731.mobileprovision /Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app/embedded.mobileprovision","inputs":["/Users/denisnadey/Library/MobileDevice/Provisioning Profiles/39a99c4c-a6dd-48da-b34e-cfca0df05731.mobileprovision","",""],"outputs":["/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app/embedded.mobileprovision"]} + "target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49-:Debug:RegisterExecutionPolicyException /Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app": {"tool":"register-execution-policy-exception","description":"RegisterExecutionPolicyException /Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app","inputs":["/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app","","",""],"outputs":[""]} + "target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49-:Debug:Touch /Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app": {"tool":"shell","description":"Touch /Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app","inputs":["/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app","","",""],"outputs":[""],"args":["/usr/bin/touch","-c","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app"],"env":{},"working-directory":"/Users/denisnadey/Desktop/binanceapp/ios","signature":"18e5f1d2f67ec1749312a5fa5e041c49"} + "target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49-:Debug:Validate /Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app": {"tool":"validate-product","description":"Validate /Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app","inputs":["","","",""],"outputs":[""]} + "target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49-:Debug:WriteAuxiliaryFile /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources/Entitlements.plist": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources/Entitlements.plist","inputs":["",""],"outputs":["/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources/Entitlements.plist"]} + "target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49-:Debug:WriteAuxiliaryFile /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources/Runner_vers.c": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources/Runner_vers.c","inputs":["",""],"outputs":["/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources/Runner_vers.c"]} + "target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49-:Debug:WriteAuxiliaryFile /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner-OutputFileMap.json": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner-OutputFileMap.json","inputs":["",""],"outputs":["/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner-OutputFileMap.json"]} + "target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49-:Debug:WriteAuxiliaryFile /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.LinkFileList": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.LinkFileList","inputs":["",""],"outputs":["/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.LinkFileList"]} + "target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49-:Debug:WriteAuxiliaryFile /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.SwiftFileList": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.SwiftFileList","inputs":["",""],"outputs":["/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.SwiftFileList"]} + "target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49-:Debug:WriteAuxiliaryFile /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-all-non-framework-target-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-all-non-framework-target-headers.hmap","inputs":["",""],"outputs":["/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-all-non-framework-target-headers.hmap"]} + "target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49-:Debug:WriteAuxiliaryFile /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-all-target-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-all-target-headers.hmap","inputs":["",""],"outputs":["/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-all-target-headers.hmap"]} + "target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49-:Debug:WriteAuxiliaryFile /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-generated-files.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-generated-files.hmap","inputs":["",""],"outputs":["/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-generated-files.hmap"]} + "target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49-:Debug:WriteAuxiliaryFile /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-own-target-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-own-target-headers.hmap","inputs":["",""],"outputs":["/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-own-target-headers.hmap"]} + "target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49-:Debug:WriteAuxiliaryFile /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-project-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-project-headers.hmap","inputs":["",""],"outputs":["/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-project-headers.hmap"]} + "target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49-:Debug:WriteAuxiliaryFile /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner.hmap","inputs":["",""],"outputs":["/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner.hmap"]} + "target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49-:Debug:WriteAuxiliaryFile /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh","inputs":["",""],"outputs":["/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh"]} + "target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49-:Debug:WriteAuxiliaryFile /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Script-9740EEB61CF901F6004384FC.sh": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Script-9740EEB61CF901F6004384FC.sh","inputs":["",""],"outputs":["/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Script-9740EEB61CF901F6004384FC.sh"]} + "target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49-:Debug:WriteAuxiliaryFile /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/all-product-headers.yaml": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/all-product-headers.yaml","inputs":["",""],"outputs":["/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/all-product-headers.yaml"]} + diff --git a/ios/build/XCBuildData/24cd0c597c0bb261f5e9cbcbae05cea1-targetGraph.txt b/ios/build/XCBuildData/24cd0c597c0bb261f5e9cbcbae05cea1-targetGraph.txt new file mode 100644 index 0000000..baf1008 --- /dev/null +++ b/ios/build/XCBuildData/24cd0c597c0bb261f5e9cbcbae05cea1-targetGraph.txt @@ -0,0 +1,2 @@ +Target dependency graph (1 target) +Runner in Runner \ No newline at end of file diff --git a/ios/build/XCBuildData/36e04258919a7b4c14647b6806a82bc8-buildRequest.json b/ios/build/XCBuildData/36e04258919a7b4c14647b6806a82bc8-buildRequest.json new file mode 100644 index 0000000..d81f03a --- /dev/null +++ b/ios/build/XCBuildData/36e04258919a7b4c14647b6806a82bc8-buildRequest.json @@ -0,0 +1,58 @@ +{ + "buildCommand" : "prepareForIndexing", + "configuredTargets" : [ + { + "guid" : "2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49" + } + ], + "continueBuildingAfterErrors" : true, + "enableIndexBuildArena" : false, + "hideShellScriptEnvironment" : false, + "parameters" : { + "action" : "build", + "activeArchitecture" : "arm64", + "activeRunDestination" : { + "disableOnlyActiveArch" : false, + "platform" : "iphoneos", + "sdk" : "iphoneos14.5", + "sdkVariant" : "iphoneos", + "supportedArchitectures" : [ + "arm64v8", + "arm64", + "armv8" + ], + "targetArchitecture" : "arm64" + }, + "arenaInfo" : { + "buildIntermediatesPath" : "", + "buildProductsPath" : "", + "derivedDataPath" : "/Users/denisnadey/Library/Developer/Xcode/DerivedData", + "indexDataStoreFolderPath" : "/Users/denisnadey/Library/Developer/Xcode/DerivedData/Runner-bisgldbzhhnjagdkalkcjwgjecrh/Index/DataStore", + "indexEnableDataStore" : true, + "indexPCHPath" : "/Users/denisnadey/Library/Developer/Xcode/DerivedData/Runner-bisgldbzhhnjagdkalkcjwgjecrh/Index/PrecompiledHeaders", + "pchPath" : "" + }, + "configurationName" : "Debug", + "overrides" : { + "synthesized" : { + "table" : { + "ASSETCATALOG_FILTER_FOR_DEVICE_MODEL" : "iPhone8,1", + "ASSETCATALOG_FILTER_FOR_DEVICE_OS_VERSION" : "14.5", + "BUILD_ACTIVE_RESOURCES_ONLY" : "YES", + "ENABLE_PREVIEWS" : "NO", + "TARGET_DEVICE_IDENTIFIER" : "14ea1e3ed325a580fb35bcb957020b43676e0a94", + "TARGET_DEVICE_MODEL" : "iPhone8,1", + "TARGET_DEVICE_OS_VERSION" : "14.5", + "TARGET_DEVICE_PLATFORM_NAME" : "iphoneos" + } + } + } + }, + "schemeCommand" : "launch", + "shouldCollectMetrics" : false, + "showNonLoggedProgress" : true, + "useDryRun" : false, + "useImplicitDependencies" : true, + "useLegacyBuildLocations" : false, + "useParallelTargets" : true +} \ No newline at end of file diff --git a/ios/build/XCBuildData/36e04258919a7b4c14647b6806a82bc8-desc.xcbuild b/ios/build/XCBuildData/36e04258919a7b4c14647b6806a82bc8-desc.xcbuild new file mode 100644 index 0000000..0aff2f4 Binary files /dev/null and b/ios/build/XCBuildData/36e04258919a7b4c14647b6806a82bc8-desc.xcbuild differ diff --git a/ios/build/XCBuildData/36e04258919a7b4c14647b6806a82bc8-manifest.xcbuild b/ios/build/XCBuildData/36e04258919a7b4c14647b6806a82bc8-manifest.xcbuild new file mode 100644 index 0000000..3fa9f53 --- /dev/null +++ b/ios/build/XCBuildData/36e04258919a7b4c14647b6806a82bc8-manifest.xcbuild @@ -0,0 +1,96 @@ +client: + name: basic + version: 0 + file-system: default + +targets: + "": [""] + +nodes: + "/Users/denisnadey/Desktop/binanceapp/build/ios": {"is-mutated":true} + "/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos": {"is-mutated":true} + "/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app": {"is-mutated":true} + "": {"is-command-timestamp":true} + +commands: + "::CreateBuildDirectory /Users/denisnadey/Desktop/binanceapp/build/ios": {"tool":"create-build-directory","description":"CreateBuildDirectory /Users/denisnadey/Desktop/binanceapp/build/ios","inputs":[],"outputs":["","/Users/denisnadey/Desktop/binanceapp/build/ios"]} + "::CreateBuildDirectory /Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos": {"tool":"create-build-directory","description":"CreateBuildDirectory /Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos","inputs":["/Users/denisnadey/Desktop/binanceapp/build/ios"],"outputs":["","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos"]} + "": {"tool":"phony","inputs":["",""],"outputs":[""]} + "": {"tool":"stale-file-removal","expectedOutputs":["/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/assetcatalog_generated_info.plist","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app/Assets.car","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.o","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner_vers.o","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Base.lproj/LaunchScreen.storyboardc","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Base.lproj/LaunchScreen-SBPartialInfo.plist","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Base.lproj/Main.storyboardc","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Base.lproj/Main-SBPartialInfo.plist","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/AppDelegate.o","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftmodule","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftsourceinfo","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner-Swift.h","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftdoc","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app/AppFrameworkInfo.plist","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/Project/arm64.swiftsourceinfo","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/arm64-apple-ios.swiftdoc","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/arm64-apple-ios.swiftmodule","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/arm64.swiftdoc","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/arm64.swiftmodule","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources/Runner-Swift.h","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app/Runner","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app/Base.lproj/LaunchScreen.storyboardc","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app/Base.lproj/Main.storyboardc","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app/Info.plist","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources/Runner_vers.c","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner-OutputFileMap.json","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.LinkFileList","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.SwiftFileList","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-all-non-framework-target-headers.hmap","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-all-target-headers.hmap","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-generated-files.hmap","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-own-target-headers.hmap","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-project-headers.hmap","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner.hmap","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Script-9740EEB61CF901F6004384FC.sh","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/all-product-headers.yaml"],"roots":["/tmp/Runner.dst","/Users/denisnadey/Desktop/binanceapp/build/ios","/Users/denisnadey/Desktop/binanceapp/build/ios"],"outputs":[""]} + "Gate target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49--Barrier-ChangeAlternatePermissions": {"tool":"phony","inputs":["","",""],"outputs":[""]} + "Gate target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49--Barrier-ChangePermissions": {"tool":"phony","inputs":["","",""],"outputs":[""]} + "Gate target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49--Barrier-CodeSign": {"tool":"phony","inputs":["","",""],"outputs":[""]} + "Gate target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49--Barrier-CopyAside": {"tool":"phony","inputs":["","",""],"outputs":[""]} + "Gate target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49--Barrier-RegisterExecutionPolicyException": {"tool":"phony","inputs":["","","",""],"outputs":[""]} + "Gate target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49--Barrier-RegisterProduct": {"tool":"phony","inputs":["","","",""],"outputs":[""]} + "Gate target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49--Barrier-StripSymbols": {"tool":"phony","inputs":["","",""],"outputs":[""]} + "Gate target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49--Barrier-Validate": {"tool":"phony","inputs":["","","",""],"outputs":[""]} + "Gate target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49--CopySwiftPackageResourcesTaskProducer": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49--GeneratedFilesTaskProducer": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49--HeadermapTaskProducer": {"tool":"phony","inputs":["","","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-all-non-framework-target-headers.hmap","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-all-target-headers.hmap","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-generated-files.hmap","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-own-target-headers.hmap","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-project-headers.hmap","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner.hmap","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/all-product-headers.yaml"],"outputs":[""]} + "Gate target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49--InfoPlistTaskProducer": {"tool":"phony","inputs":["","","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app/Info.plist"],"outputs":[""]} + "Gate target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49--ModuleMapTaskProducer": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49--ProductPostprocessingTaskProducer": {"tool":"phony","inputs":["","","","","","","","","","","","","",""],"outputs":[""]} + "Gate target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49--ProductStructureTaskProducer": {"tool":"phony","inputs":["","",""],"outputs":[""]} + "Gate target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49--SanitizerTaskProducer": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49--StubBinaryTaskProducer": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49--SwiftABIBaselineGenerationTaskProducer": {"tool":"phony","inputs":["","",""],"outputs":[""]} + "Gate target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49--SwiftFrameworkABICheckerTaskProducer": {"tool":"phony","inputs":["","",""],"outputs":[""]} + "Gate target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49--SwiftStandardLibrariesTaskProducer": {"tool":"phony","inputs":["","","",""],"outputs":[""]} + "Gate target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49--TestHostTaskProducer": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49--TestTargetPostprocessingTaskProducer": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49--TestTargetTaskProducer": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49--VersionPlistTaskProducer": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49--begin-compiling": {"tool":"phony","inputs":["","","","",""],"outputs":[""]} + "Gate target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49--copy-headers-completion": {"tool":"phony","inputs":[""],"outputs":[""]} + "Gate target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49--end": {"tool":"phony","inputs":["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/assetcatalog_generated_info.plist","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app/Assets.car","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.o","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner_vers.o","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Base.lproj/LaunchScreen.storyboardc","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Base.lproj/LaunchScreen-SBPartialInfo.plist","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Base.lproj/Main.storyboardc","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Base.lproj/Main-SBPartialInfo.plist","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/AppDelegate.o","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftmodule","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftsourceinfo","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner-Swift.h","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftdoc","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app/AppFrameworkInfo.plist","","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/Project/arm64.swiftsourceinfo","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/arm64-apple-ios.swiftdoc","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/arm64-apple-ios.swiftmodule","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/arm64.swiftdoc","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/arm64.swiftmodule","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources/Runner-Swift.h","","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app/Base.lproj/LaunchScreen.storyboardc","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app/Base.lproj/Main.storyboardc","","","","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app/Info.plist","","","","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources/Runner_vers.c","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner-OutputFileMap.json","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.LinkFileList","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.SwiftFileList","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-all-non-framework-target-headers.hmap","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-all-target-headers.hmap","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-generated-files.hmap","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-own-target-headers.hmap","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-project-headers.hmap","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner.hmap","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Script-9740EEB61CF901F6004384FC.sh","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/all-product-headers.yaml"],"outputs":[""]} + "Gate target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49--entry": {"tool":"phony","inputs":["","","","","",""],"outputs":[""]} + "Gate target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49--generated-headers": {"tool":"phony","inputs":["","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/AppDelegate.o","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftmodule","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftsourceinfo","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner-Swift.h","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftdoc","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources/Runner-Swift.h"],"outputs":[""]} + "Gate target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49--immediate": {"tool":"phony","inputs":["","","","",""],"outputs":[""]} + "Gate target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49--modules-ready": {"tool":"phony","inputs":["","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/AppDelegate.o","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftmodule","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftsourceinfo","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner-Swift.h","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftdoc","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/Project/arm64.swiftsourceinfo","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/arm64-apple-ios.swiftdoc","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/arm64-apple-ios.swiftmodule","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/arm64.swiftdoc","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/arm64.swiftmodule","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources/Runner-Swift.h","","","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Script-9740EEB61CF901F6004384FC.sh"],"outputs":[""]} + "Gate target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49--package-copy-files-phase": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49--phase0-run-script": {"tool":"phony","inputs":["","","","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Script-9740EEB61CF901F6004384FC.sh"],"outputs":[""]} + "Gate target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49--phase1-compile-sources": {"tool":"phony","inputs":["","","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.o","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner_vers.o","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/AppDelegate.o","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftmodule","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftsourceinfo","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner-Swift.h","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftdoc","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/Project/arm64.swiftsourceinfo","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/arm64-apple-ios.swiftdoc","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/arm64-apple-ios.swiftmodule","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/arm64.swiftdoc","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/arm64.swiftmodule","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources/Runner-Swift.h","","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources/Runner_vers.c","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner-OutputFileMap.json","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.LinkFileList","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.SwiftFileList"],"outputs":[""]} + "Gate target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49--phase3-copy-bundle-resources": {"tool":"phony","inputs":["","","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/assetcatalog_generated_info.plist","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app/Assets.car","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Base.lproj/LaunchScreen.storyboardc","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Base.lproj/LaunchScreen-SBPartialInfo.plist","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Base.lproj/Main.storyboardc","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Base.lproj/Main-SBPartialInfo.plist","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app/AppFrameworkInfo.plist","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app/Base.lproj/LaunchScreen.storyboardc","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app/Base.lproj/Main.storyboardc"],"outputs":[""]} + "Gate target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49--phase4-copy-files": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49--phase5-thin-binary": {"tool":"phony","inputs":["","","","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh"],"outputs":[""]} + "Gate target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49--unsigned-product-ready": {"tool":"phony","inputs":["","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.o","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner_vers.o","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/AppDelegate.o","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftmodule","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftsourceinfo","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner-Swift.h","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftdoc","","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/Project/arm64.swiftsourceinfo","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/arm64-apple-ios.swiftdoc","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/arm64-apple-ios.swiftmodule","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/arm64.swiftdoc","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/arm64.swiftmodule","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources/Runner-Swift.h","","","","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources/Runner_vers.c","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner-OutputFileMap.json","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.LinkFileList","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.SwiftFileList","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Script-9740EEB61CF901F6004384FC.sh"],"outputs":[""]} + "Gate target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49--will-sign": {"tool":"phony","inputs":[""],"outputs":[""]} + "target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49-:Debug:CompileAssetCatalog /Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app /Users/denisnadey/Desktop/binanceapp/ios/Runner/Assets.xcassets": {"tool":"shell","description":"CompileAssetCatalog /Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app /Users/denisnadey/Desktop/binanceapp/ios/Runner/Assets.xcassets","inputs":["/Users/denisnadey/Desktop/binanceapp/ios/Runner/Assets.xcassets/","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app","",""],"outputs":["/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/assetcatalog_generated_info.plist","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app/Assets.car"],"args":["/Applications/Xcode.app/Contents/Developer/usr/bin/actool","--output-format","human-readable-text","--notices","--warnings","--export-dependency-info","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/assetcatalog_dependencies","--output-partial-info-plist","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/assetcatalog_generated_info.plist","--app-icon","AppIcon","--compress-pngs","--enable-on-demand-resources","YES","--filter-for-device-model","iPhone8,1","--filter-for-device-os-version","14.5","--development-region","en","--target-device","iphone","--target-device","ipad","--minimum-deployment-target","9.0","--platform","iphoneos","--compile","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app","/Users/denisnadey/Desktop/binanceapp/ios/Runner/Assets.xcassets"],"env":{},"working-directory":"/Users/denisnadey/Desktop/binanceapp/ios","control-enabled":false,"deps":["/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/assetcatalog_dependencies"],"deps-style":"dependency-info","signature":"cce006f2e5fae110937eda368c4bd72a"} + "target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49-:Debug:CompileC /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.o /Users/denisnadey/Desktop/binanceapp/ios/Runner/GeneratedPluginRegistrant.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.o /Users/denisnadey/Desktop/binanceapp/ios/Runner/GeneratedPluginRegistrant.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/denisnadey/Desktop/binanceapp/ios/Runner/GeneratedPluginRegistrant.m","","",""],"outputs":["/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu99","-fobjc-arc","-fmodules","-gmodules","-fmodules-cache-path=/Users/denisnadey/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/denisnadey/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DDEBUG=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.5.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-index-store-path","/Users/denisnadey/Library/Developer/Xcode/DerivedData/Runner-bisgldbzhhnjagdkalkcjwgjecrh/Index/DataStore","-iquote","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-generated-files.hmap","-I/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-own-target-headers.hmap","-I/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-all-target-headers.hmap","-iquote","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-project-headers.hmap","-I/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/include","-I/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources-normal/arm64","-I/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources/arm64","-I/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources","-F/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos","-MMD","-MT","dependencies","-MF","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.d","--serialize-diagnostics","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.dia","-c","/Users/denisnadey/Desktop/binanceapp/ios/Runner/GeneratedPluginRegistrant.m","-o","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/denisnadey/Desktop/binanceapp/ios","deps":["/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.d"],"deps-style":"makefile","signature":"60fd5eda7f921b04f50d890b3a6764d2"} + "target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49-:Debug:CompileC /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner_vers.o /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources/Runner_vers.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner_vers.o /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources/Runner_vers.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources/Runner_vers.c","","",""],"outputs":["/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner_vers.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu99","-fmodules","-gmodules","-fmodules-cache-path=/Users/denisnadey/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/denisnadey/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wunreachable-code","-Werror=deprecated-objc-isa-usage","-Werror=objc-root-class","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-DDEBUG=1","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.5.sdk","-fstrict-aliasing","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-index-store-path","/Users/denisnadey/Library/Developer/Xcode/DerivedData/Runner-bisgldbzhhnjagdkalkcjwgjecrh/Index/DataStore","-iquote","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-generated-files.hmap","-I/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-own-target-headers.hmap","-I/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-all-target-headers.hmap","-iquote","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-project-headers.hmap","-I/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/include","-I/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources-normal/arm64","-I/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources/arm64","-I/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources","-F/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos","-MMD","-MT","dependencies","-MF","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner_vers.d","--serialize-diagnostics","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner_vers.dia","-c","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources/Runner_vers.c","-o","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner_vers.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/denisnadey/Desktop/binanceapp/ios","deps":["/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner_vers.d"],"deps-style":"makefile","signature":"950259e89ced89826246d6d475c1128d"} + "target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49-:Debug:CompileStoryboard /Users/denisnadey/Desktop/binanceapp/ios/Runner/Base.lproj/LaunchScreen.storyboard": {"tool":"shell","description":"CompileStoryboard /Users/denisnadey/Desktop/binanceapp/ios/Runner/Base.lproj/LaunchScreen.storyboard","inputs":["/Users/denisnadey/Desktop/binanceapp/ios/Runner/Base.lproj/LaunchScreen.storyboard","",""],"outputs":["/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Base.lproj/LaunchScreen.storyboardc","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Base.lproj/LaunchScreen-SBPartialInfo.plist"],"args":["/Applications/Xcode.app/Contents/Developer/usr/bin/ibtool","--errors","--warnings","--notices","--module","Runner","--output-partial-info-plist","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Base.lproj/LaunchScreen-SBPartialInfo.plist","--auto-activate-custom-fonts","--target-device","iphone","--target-device","ipad","--minimum-deployment-target","9.0","--output-format","human-readable-text","--compilation-directory","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Base.lproj","/Users/denisnadey/Desktop/binanceapp/ios/Runner/Base.lproj/LaunchScreen.storyboard"],"env":{"XCODE_DEVELOPER_USR_PATH":"/Applications/Xcode.app/Contents/Developer/usr/bin/.."},"working-directory":"/Users/denisnadey/Desktop/binanceapp/ios","control-enabled":false,"signature":"c34b222cff0129c8942b376bdd9888f1"} + "target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49-:Debug:CompileStoryboard /Users/denisnadey/Desktop/binanceapp/ios/Runner/Base.lproj/Main.storyboard": {"tool":"shell","description":"CompileStoryboard /Users/denisnadey/Desktop/binanceapp/ios/Runner/Base.lproj/Main.storyboard","inputs":["/Users/denisnadey/Desktop/binanceapp/ios/Runner/Base.lproj/Main.storyboard","",""],"outputs":["/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Base.lproj/Main.storyboardc","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Base.lproj/Main-SBPartialInfo.plist"],"args":["/Applications/Xcode.app/Contents/Developer/usr/bin/ibtool","--errors","--warnings","--notices","--module","Runner","--output-partial-info-plist","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Base.lproj/Main-SBPartialInfo.plist","--auto-activate-custom-fonts","--target-device","iphone","--target-device","ipad","--minimum-deployment-target","9.0","--output-format","human-readable-text","--compilation-directory","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Base.lproj","/Users/denisnadey/Desktop/binanceapp/ios/Runner/Base.lproj/Main.storyboard"],"env":{"XCODE_DEVELOPER_USR_PATH":"/Applications/Xcode.app/Contents/Developer/usr/bin/.."},"working-directory":"/Users/denisnadey/Desktop/binanceapp/ios","control-enabled":false,"signature":"6ded78c56faf7fb458277a68a0972163"} + "target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49-:Debug:CompileSwiftSources normal arm64 com.apple.xcode.tools.swift.compiler": {"tool":"shell","description":"CompileSwiftSources normal arm64 com.apple.xcode.tools.swift.compiler","inputs":["/Users/denisnadey/Desktop/binanceapp/ios/Runner/AppDelegate.swift","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.SwiftFileList","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner-OutputFileMap.json","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-generated-files.hmap","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-own-target-headers.hmap","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-all-target-headers.hmap","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-project-headers.hmap","","",""],"outputs":["/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/AppDelegate.o","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftmodule","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftsourceinfo","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner-Swift.h","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftdoc"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc","-incremental","-module-name","Runner","-Onone","-enable-batch-mode","-enforce-exclusivity=checked","@/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.SwiftFileList","-sdk","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.5.sdk","-target","arm64-apple-ios9.0","-g","-module-cache-path","/Users/denisnadey/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-Xfrontend","-serialize-debugging-options","-enable-testing","-index-store-path","/Users/denisnadey/Library/Developer/Xcode/DerivedData/Runner-bisgldbzhhnjagdkalkcjwgjecrh/Index/DataStore","-swift-version","5","-I","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos","-F","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos","-parse-as-library","-c","-j8","-output-file-map","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner-OutputFileMap.json","-parseable-output","-serialize-diagnostics","-emit-dependencies","-emit-module","-emit-module-path","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftmodule","-Xcc","-I/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/swift-overrides.hmap","-Xcc","-iquote","-Xcc","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-generated-files.hmap","-Xcc","-I/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-own-target-headers.hmap","-Xcc","-I/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-all-target-headers.hmap","-Xcc","-iquote","-Xcc","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-project-headers.hmap","-Xcc","-I/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/include","-Xcc","-I/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources-normal/arm64","-Xcc","-I/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources/arm64","-Xcc","-I/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources","-Xcc","-DDEBUG=1","-emit-objc-header","-emit-objc-header-path","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner-Swift.h","-import-objc-header","/Users/denisnadey/Desktop/binanceapp/ios/Runner/Runner-Bridging-Header.h","-pch-output-dir","/Users/denisnadey/Desktop/binanceapp/build/ios/SharedPrecompiledHeaders","-working-directory","/Users/denisnadey/Desktop/binanceapp/ios"],"env":{"DEVELOPER_DIR":"/Applications/Xcode.app/Contents/Developer","SDKROOT":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.5.sdk"},"working-directory":"/Users/denisnadey/Desktop/binanceapp/ios","deps":["/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/AppDelegate.d"],"deps-style":"makefile","signature":"396b147372bea099c71ff756fa1d5b8b"} + "target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49-:Debug:CopyPlistFile /Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app/AppFrameworkInfo.plist /Users/denisnadey/Desktop/binanceapp/ios/Flutter/AppFrameworkInfo.plist": {"tool":"copy-plist","description":"CopyPlistFile /Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app/AppFrameworkInfo.plist /Users/denisnadey/Desktop/binanceapp/ios/Flutter/AppFrameworkInfo.plist","inputs":["/Users/denisnadey/Desktop/binanceapp/ios/Flutter/AppFrameworkInfo.plist","",""],"outputs":["/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app/AppFrameworkInfo.plist"]} + "target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49-:Debug:CopySwiftLibs /Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app": {"tool":"embed-swift-stdlib","description":"CopySwiftLibs /Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app","inputs":["/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app/Runner","","",""],"outputs":[""],"deps":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/SwiftStdLibToolInputDependencies.dep"} + "target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49-:Debug:Ditto /Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftsourceinfo": {"tool":"shell","description":"Ditto /Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftsourceinfo","inputs":["/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftsourceinfo","","",""],"outputs":["/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo"],"args":["/usr/bin/ditto","-rsrc","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftsourceinfo","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo"],"env":{},"working-directory":"/Users/denisnadey/Desktop/binanceapp/ios","signature":"dce8a9bc646a0bbd3486e62300dcfa0b"} + "target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49-:Debug:Ditto /Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/Project/arm64.swiftsourceinfo /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftsourceinfo": {"tool":"shell","description":"Ditto /Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/Project/arm64.swiftsourceinfo /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftsourceinfo","inputs":["/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftsourceinfo","","",""],"outputs":["/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/Project/arm64.swiftsourceinfo"],"args":["/usr/bin/ditto","-rsrc","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftsourceinfo","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/Project/arm64.swiftsourceinfo"],"env":{},"working-directory":"/Users/denisnadey/Desktop/binanceapp/ios","signature":"e1112e7f2165c12cd0301e518840b7b5"} + "target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49-:Debug:Ditto /Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/arm64-apple-ios.swiftdoc /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftdoc": {"tool":"shell","description":"Ditto /Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/arm64-apple-ios.swiftdoc /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftdoc","inputs":["/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftdoc","","",""],"outputs":["/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/arm64-apple-ios.swiftdoc"],"args":["/usr/bin/ditto","-rsrc","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftdoc","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/arm64-apple-ios.swiftdoc"],"env":{},"working-directory":"/Users/denisnadey/Desktop/binanceapp/ios","signature":"5aadbb3dbe4dd2617c2078ce764d7f0d"} + "target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49-:Debug:Ditto /Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/arm64-apple-ios.swiftmodule /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftmodule": {"tool":"shell","description":"Ditto /Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/arm64-apple-ios.swiftmodule /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftmodule","inputs":["/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftmodule","","",""],"outputs":["/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/arm64-apple-ios.swiftmodule"],"args":["/usr/bin/ditto","-rsrc","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftmodule","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/arm64-apple-ios.swiftmodule"],"env":{},"working-directory":"/Users/denisnadey/Desktop/binanceapp/ios","signature":"646bf0147a4974d4e670e2df1f7ce352"} + "target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49-:Debug:Ditto /Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/arm64.swiftdoc /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftdoc": {"tool":"shell","description":"Ditto /Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/arm64.swiftdoc /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftdoc","inputs":["/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftdoc","","",""],"outputs":["/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/arm64.swiftdoc"],"args":["/usr/bin/ditto","-rsrc","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftdoc","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/arm64.swiftdoc"],"env":{},"working-directory":"/Users/denisnadey/Desktop/binanceapp/ios","signature":"81867cf72babecea973bd51830daaad4"} + "target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49-:Debug:Ditto /Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/arm64.swiftmodule /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftmodule": {"tool":"shell","description":"Ditto /Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/arm64.swiftmodule /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftmodule","inputs":["/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftmodule","","",""],"outputs":["/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/arm64.swiftmodule"],"args":["/usr/bin/ditto","-rsrc","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftmodule","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/arm64.swiftmodule"],"env":{},"working-directory":"/Users/denisnadey/Desktop/binanceapp/ios","signature":"c313efcbb02bd9628dd8fcfb1370409b"} + "target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49-:Debug:Ditto /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources/Runner-Swift.h /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner-Swift.h": {"tool":"shell","description":"Ditto /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources/Runner-Swift.h /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner-Swift.h","inputs":["/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner-Swift.h","","",""],"outputs":["/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources/Runner-Swift.h"],"args":["/usr/bin/ditto","-rsrc","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner-Swift.h","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources/Runner-Swift.h"],"env":{},"working-directory":"/Users/denisnadey/Desktop/binanceapp/ios","signature":"8c921312aa76fa34013e62364b679c43"} + "target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49-:Debug:Ld /Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app/Runner normal": {"tool":"shell","description":"Ld /Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app/Runner normal","inputs":["/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner_vers.o","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.o","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/AppDelegate.o","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.LinkFileList","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos","",""],"outputs":["/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app/Runner",""],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-target","arm64-apple-ios9.0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.5.sdk","-L/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos","-F/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos","-filelist","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.LinkFileList","-Xlinker","-rpath","-Xlinker","/usr/lib/swift","-Xlinker","-rpath","-Xlinker","@executable_path/Frameworks","-dead_strip","-Xlinker","-object_path_lto","-Xlinker","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner_lto.o","-Xlinker","-export_dynamic","-Xlinker","-no_deduplicate","-fobjc-arc","-fobjc-link-runtime","-L/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos","-L/usr/lib/swift","-Xlinker","-add_ast_path","-Xlinker","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftmodule","-Xlinker","-dependency_info","-Xlinker","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner_dependency_info.dat","-o","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app/Runner"],"env":{},"working-directory":"/Users/denisnadey/Desktop/binanceapp/ios","deps":["/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner_dependency_info.dat"],"deps-style":"dependency-info","signature":"a897121f34014fc90320c27dbca06823"} + "target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49-:Debug:LinkStoryboards": {"tool":"shell","description":"LinkStoryboards","inputs":["/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Base.lproj/LaunchScreen.storyboardc","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Base.lproj/Main.storyboardc","",""],"outputs":["/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app/Base.lproj/LaunchScreen.storyboardc","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app/Base.lproj/Main.storyboardc"],"args":["/Applications/Xcode.app/Contents/Developer/usr/bin/ibtool","--errors","--warnings","--notices","--module","Runner","--target-device","iphone","--target-device","ipad","--minimum-deployment-target","9.0","--output-format","human-readable-text","--link","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Base.lproj/LaunchScreen.storyboardc","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Base.lproj/Main.storyboardc"],"env":{"XCODE_DEVELOPER_USR_PATH":"/Applications/Xcode.app/Contents/Developer/usr/bin/.."},"working-directory":"/Users/denisnadey/Desktop/binanceapp/ios","control-enabled":false,"signature":"e5738fe206d06adf3964a6e0b9913752"} + "target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49-:Debug:MkDir /Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app": {"tool":"mkdir","description":"MkDir /Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app","inputs":["",""],"outputs":["/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app","",""]} + "target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49-:Debug:PhaseScriptExecution Run Script /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Script-9740EEB61CF901F6004384FC.sh": {"tool":"shell","description":"PhaseScriptExecution Run Script /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Script-9740EEB61CF901F6004384FC.sh","inputs":["/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Script-9740EEB61CF901F6004384FC.sh","",""],"outputs":[""],"args":["/bin/sh","-c","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Script-9740EEB61CF901F6004384FC.sh"],"env":{"ACTION":"build","AD_HOC_CODE_SIGNING_ALLOWED":"NO","ALTERNATE_GROUP":"staff","ALTERNATE_MODE":"u+w,go-w,a+rX","ALTERNATE_OWNER":"denisnadey","ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES":"NO","ALWAYS_SEARCH_USER_PATHS":"NO","ALWAYS_USE_SEPARATE_HEADERMAPS":"NO","APPLE_INTERNAL_DEVELOPER_DIR":"/AppleInternal/Developer","APPLE_INTERNAL_DIR":"/AppleInternal","APPLE_INTERNAL_DOCUMENTATION_DIR":"/AppleInternal/Documentation","APPLE_INTERNAL_LIBRARY_DIR":"/AppleInternal/Library","APPLE_INTERNAL_TOOLS":"/AppleInternal/Developer/Tools","APPLICATION_EXTENSION_API_ONLY":"NO","APPLY_RULES_IN_COPY_FILES":"NO","APPLY_RULES_IN_COPY_HEADERS":"NO","ARCHS":"arm64","ARCHS_STANDARD":"arm64 armv7","ARCHS_STANDARD_32_64_BIT":"armv7 arm64","ARCHS_STANDARD_32_BIT":"armv7","ARCHS_STANDARD_64_BIT":"arm64","ARCHS_STANDARD_INCLUDING_64_BIT":"arm64 armv7","ARCHS_UNIVERSAL_IPHONE_OS":"armv7 arm64","ASSETCATALOG_COMPILER_APPICON_NAME":"AppIcon","ASSETCATALOG_FILTER_FOR_DEVICE_MODEL":"iPhone8,1","ASSETCATALOG_FILTER_FOR_DEVICE_OS_VERSION":"14.5","AVAILABLE_PLATFORMS":"appletvos appletvsimulator iphoneos iphonesimulator macosx watchos watchsimulator","BITCODE_GENERATION_MODE":"marker","BUILD_ACTIVE_RESOURCES_ONLY":"YES","BUILD_COMPONENTS":"headers build","BUILD_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios","BUILD_LIBRARY_FOR_DISTRIBUTION":"NO","BUILD_ROOT":"/Users/denisnadey/Desktop/binanceapp/build/ios","BUILD_STYLE":"","BUILD_VARIANTS":"normal","BUILT_PRODUCTS_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos","BUNDLE_CONTENTS_FOLDER_PATH_deep":"Contents/","BUNDLE_EXECUTABLE_FOLDER_NAME_deep":"MacOS","BUNDLE_FORMAT":"shallow","BUNDLE_FRAMEWORKS_FOLDER_PATH":"Frameworks","BUNDLE_PLUGINS_FOLDER_PATH":"PlugIns","BUNDLE_PRIVATE_HEADERS_FOLDER_PATH":"PrivateHeaders","BUNDLE_PUBLIC_HEADERS_FOLDER_PATH":"Headers","CACHE_ROOT":"/var/folders/kq/kc3pf_ns62n6hc7n74119qf00000gn/C/com.apple.DeveloperTools/12.5-12E262/Xcode","CCHROOT":"/var/folders/kq/kc3pf_ns62n6hc7n74119qf00000gn/C/com.apple.DeveloperTools/12.5-12E262/Xcode","CHMOD":"/bin/chmod","CHOWN":"/usr/sbin/chown","CLANG_ANALYZER_NONNULL":"YES","CLANG_CXX_LANGUAGE_STANDARD":"gnu++0x","CLANG_CXX_LIBRARY":"libc++","CLANG_ENABLE_MODULES":"YES","CLANG_ENABLE_OBJC_ARC":"YES","CLANG_MODULES_BUILD_SESSION_FILE":"/Users/denisnadey/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING":"YES","CLANG_WARN_BOOL_CONVERSION":"YES","CLANG_WARN_COMMA":"YES","CLANG_WARN_CONSTANT_CONVERSION":"YES","CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS":"YES","CLANG_WARN_DIRECT_OBJC_ISA_USAGE":"YES_ERROR","CLANG_WARN_EMPTY_BODY":"YES","CLANG_WARN_ENUM_CONVERSION":"YES","CLANG_WARN_INFINITE_RECURSION":"YES","CLANG_WARN_INT_CONVERSION":"YES","CLANG_WARN_NON_LITERAL_NULL_CONVERSION":"YES","CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF":"YES","CLANG_WARN_OBJC_LITERAL_CONVERSION":"YES","CLANG_WARN_OBJC_ROOT_CLASS":"YES_ERROR","CLANG_WARN_RANGE_LOOP_ANALYSIS":"YES","CLANG_WARN_STRICT_PROTOTYPES":"YES","CLANG_WARN_SUSPICIOUS_MOVE":"YES","CLANG_WARN_UNREACHABLE_CODE":"YES","CLANG_WARN__DUPLICATE_METHOD_MATCH":"YES","CLASS_FILE_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/JavaClasses","CLEAN_PRECOMPS":"YES","CLONE_HEADERS":"NO","COCOAPODS_PARALLEL_CODE_SIGN":"true","CODESIGNING_FOLDER_PATH":"/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app","CODE_SIGNING_ALLOWED":"YES","CODE_SIGNING_REQUIRED":"YES","CODE_SIGN_CONTEXT_CLASS":"XCiPhoneOSCodeSignContext","CODE_SIGN_IDENTITY":"iPhone Developer","CODE_SIGN_INJECT_BASE_ENTITLEMENTS":"YES","COLOR_DIAGNOSTICS":"NO","COMBINE_HIDPI_IMAGES":"NO","COMPILER_INDEX_STORE_ENABLE":"Default","COMPOSITE_SDK_DIRS":"/Users/denisnadey/Desktop/binanceapp/build/ios/CompositeSDKs","COMPRESS_PNG_FILES":"YES","CONFIGURATION":"Debug","CONFIGURATION_BUILD_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos","CONFIGURATION_TEMP_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos","CONTENTS_FOLDER_PATH":"Runner.app","COPYING_PRESERVES_HFS_DATA":"NO","COPY_HEADERS_RUN_UNIFDEF":"NO","COPY_PHASE_STRIP":"NO","COPY_RESOURCES_FROM_STATIC_FRAMEWORKS":"YES","CORRESPONDING_SIMULATOR_PLATFORM_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform","CORRESPONDING_SIMULATOR_PLATFORM_NAME":"iphonesimulator","CORRESPONDING_SIMULATOR_SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk","CORRESPONDING_SIMULATOR_SDK_NAME":"iphonesimulator14.5","CP":"/bin/cp","CREATE_INFOPLIST_SECTION_IN_BINARY":"NO","CURRENT_ARCH":"undefined_arch","CURRENT_PROJECT_VERSION":"1","CURRENT_VARIANT":"normal","DART_DEFINES":"RkxVVFRFUl9XRUJfQVVUT19ERVRFQ1Q9dHJ1ZQ==","DART_OBFUSCATION":"false","DEAD_CODE_STRIPPING":"YES","DEBUGGING_SYMBOLS":"YES","DEBUG_INFORMATION_FORMAT":"dwarf","DEFAULT_COMPILER":"com.apple.compilers.llvm.clang.1_0","DEFAULT_DEXT_INSTALL_PATH":"/System/Library/DriverExtensions","DEFAULT_KEXT_INSTALL_PATH":"/System/Library/Extensions","DEFINES_MODULE":"NO","DEPLOYMENT_LOCATION":"NO","DEPLOYMENT_POSTPROCESSING":"NO","DEPLOYMENT_TARGET_CLANG_ENV_NAME":"IPHONEOS_DEPLOYMENT_TARGET","DEPLOYMENT_TARGET_CLANG_FLAG_NAME":"miphoneos-version-min","DEPLOYMENT_TARGET_CLANG_FLAG_PREFIX":"-miphoneos-version-min=","DEPLOYMENT_TARGET_LD_ENV_NAME":"IPHONEOS_DEPLOYMENT_TARGET","DEPLOYMENT_TARGET_LD_FLAG_NAME":"ios_version_min","DEPLOYMENT_TARGET_SETTING_NAME":"IPHONEOS_DEPLOYMENT_TARGET","DEPLOYMENT_TARGET_SUGGESTED_VALUES":"9.0 9.2 10.0 10.2 11.0 11.2 11.4 12.1 12.3 13.0 13.2 13.4 13.6 14.1 14.3 14.5","DERIVED_FILES_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources","DERIVED_FILE_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources","DERIVED_SOURCES_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources","DERIVE_MACCATALYST_PRODUCT_BUNDLE_IDENTIFIER":"NO","DEVELOPER_APPLICATIONS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications","DEVELOPER_BIN_DIR":"/Applications/Xcode.app/Contents/Developer/usr/bin","DEVELOPER_DIR":"/Applications/Xcode.app/Contents/Developer","DEVELOPER_FRAMEWORKS_DIR":"/Applications/Xcode.app/Contents/Developer/Library/Frameworks","DEVELOPER_FRAMEWORKS_DIR_QUOTED":"/Applications/Xcode.app/Contents/Developer/Library/Frameworks","DEVELOPER_LIBRARY_DIR":"/Applications/Xcode.app/Contents/Developer/Library","DEVELOPER_SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs","DEVELOPER_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Tools","DEVELOPER_USR_DIR":"/Applications/Xcode.app/Contents/Developer/usr","DEVELOPMENT_LANGUAGE":"en","DOCUMENTATION_FOLDER_PATH":"Runner.app/en.lproj/Documentation","DONT_GENERATE_INFOPLIST_FILE":"NO","DO_HEADER_SCANNING_IN_JAM":"NO","DSTROOT":"/tmp/Runner.dst","DT_TOOLCHAIN_DIR":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain","DWARF_DSYM_FILE_NAME":"Runner.app.dSYM","DWARF_DSYM_FILE_SHOULD_ACCOMPANY_PRODUCT":"NO","DWARF_DSYM_FOLDER_PATH":"/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos","EFFECTIVE_PLATFORM_NAME":"-iphoneos","EMBEDDED_CONTENT_CONTAINS_SWIFT":"NO","EMBEDDED_PROFILE_NAME":"embedded.mobileprovision","EMBED_ASSET_PACKS_IN_PRODUCT_BUNDLE":"NO","ENABLE_BITCODE":"NO","ENABLE_DEFAULT_HEADER_SEARCH_PATHS":"YES","ENABLE_HARDENED_RUNTIME":"NO","ENABLE_HEADER_DEPENDENCIES":"YES","ENABLE_ON_DEMAND_RESOURCES":"YES","ENABLE_PREVIEWS":"NO","ENABLE_STRICT_OBJC_MSGSEND":"YES","ENABLE_TESTABILITY":"YES","ENABLE_TESTING_SEARCH_PATHS":"NO","ENTITLEMENTS_ALLOWED":"YES","ENTITLEMENTS_DESTINATION":"Signature","ENTITLEMENTS_REQUIRED":"YES","EXCLUDED_INSTALLSRC_SUBDIRECTORY_PATTERNS":".DS_Store .svn .git .hg CVS","EXCLUDED_RECURSIVE_SEARCH_PATH_SUBDIRECTORIES":"*.nib *.lproj *.framework *.gch *.xcode* *.xcassets (*) .DS_Store CVS .svn .git .hg *.pbproj *.pbxproj","EXECUTABLES_FOLDER_PATH":"Runner.app/Executables","EXECUTABLE_FOLDER_PATH":"Runner.app","EXECUTABLE_NAME":"Runner","EXECUTABLE_PATH":"Runner.app/Runner","FILE_LIST":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects/LinkFileList","FIXED_FILES_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/FixedFiles","FLUTTER_APPLICATION_PATH":"/Users/denisnadey/Desktop/binanceapp","FLUTTER_BUILD_DIR":"build","FLUTTER_BUILD_NAME":"1.0.0","FLUTTER_BUILD_NUMBER":"1","FLUTTER_ROOT":"/Users/denisnadey/development/flutter","FLUTTER_TARGET":"/Users/denisnadey/Desktop/binanceapp/lib/main.dart","FRAMEWORKS_FOLDER_PATH":"Runner.app/Frameworks","FRAMEWORK_FLAG_PREFIX":"-framework","FRAMEWORK_SEARCH_PATHS":"/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos ","FRAMEWORK_VERSION":"A","FULL_PRODUCT_NAME":"Runner.app","GCC3_VERSION":"3.3","GCC_C_LANGUAGE_STANDARD":"gnu99","GCC_DYNAMIC_NO_PIC":"NO","GCC_INLINES_ARE_PRIVATE_EXTERN":"YES","GCC_NO_COMMON_BLOCKS":"YES","GCC_OPTIMIZATION_LEVEL":"0","GCC_PFE_FILE_C_DIALECTS":"c objective-c c++ objective-c++","GCC_PREPROCESSOR_DEFINITIONS":"DEBUG=1 ","GCC_SYMBOLS_PRIVATE_EXTERN":"NO","GCC_THUMB_SUPPORT":"YES","GCC_TREAT_WARNINGS_AS_ERRORS":"NO","GCC_VERSION":"com.apple.compilers.llvm.clang.1_0","GCC_VERSION_IDENTIFIER":"com_apple_compilers_llvm_clang_1_0","GCC_WARN_64_TO_32_BIT_CONVERSION":"YES","GCC_WARN_ABOUT_RETURN_TYPE":"YES_ERROR","GCC_WARN_UNDECLARED_SELECTOR":"YES","GCC_WARN_UNINITIALIZED_AUTOS":"YES_AGGRESSIVE","GCC_WARN_UNUSED_FUNCTION":"YES","GCC_WARN_UNUSED_VARIABLE":"YES","GENERATED_MODULEMAP_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/GeneratedModuleMaps-iphoneos","GENERATE_MASTER_OBJECT_FILE":"NO","GENERATE_PKGINFO_FILE":"YES","GENERATE_PROFILING_CODE":"NO","GENERATE_TEXT_BASED_STUBS":"NO","GID":"20","GROUP":"staff","HEADERMAP_INCLUDES_FLAT_ENTRIES_FOR_TARGET_BEING_BUILT":"YES","HEADERMAP_INCLUDES_FRAMEWORK_ENTRIES_FOR_ALL_PRODUCT_TYPES":"YES","HEADERMAP_INCLUDES_NONPUBLIC_NONPRIVATE_HEADERS":"YES","HEADERMAP_INCLUDES_PROJECT_HEADERS":"YES","HEADERMAP_USES_FRAMEWORK_PREFIX_ENTRIES":"YES","HEADERMAP_USES_VFS":"NO","HEADER_SEARCH_PATHS":"/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/include ","HIDE_BITCODE_SYMBOLS":"YES","HOME":"/Users/denisnadey","ICONV":"/usr/bin/iconv","INFOPLIST_EXPAND_BUILD_SETTINGS":"YES","INFOPLIST_FILE":"Runner/Info.plist","INFOPLIST_OUTPUT_FORMAT":"binary","INFOPLIST_PATH":"Runner.app/Info.plist","INFOPLIST_PREPROCESS":"NO","INFOSTRINGS_PATH":"Runner.app/en.lproj/InfoPlist.strings","INLINE_PRIVATE_FRAMEWORKS":"NO","INSTALLHDRS_COPY_PHASE":"NO","INSTALLHDRS_SCRIPT_PHASE":"NO","INSTALL_DIR":"/tmp/Runner.dst/Applications","INSTALL_GROUP":"staff","INSTALL_MODE_FLAG":"u+w,go-w,a+rX","INSTALL_OWNER":"denisnadey","INSTALL_PATH":"/Applications","INSTALL_ROOT":"/tmp/Runner.dst","IPHONEOS_DEPLOYMENT_TARGET":"9.0","JAVAC_DEFAULT_FLAGS":"-J-Xms64m -J-XX:NewSize=4M -J-Dfile.encoding=UTF8","JAVA_APP_STUB":"/System/Library/Frameworks/JavaVM.framework/Resources/MacOS/JavaApplicationStub","JAVA_ARCHIVE_CLASSES":"YES","JAVA_ARCHIVE_TYPE":"JAR","JAVA_COMPILER":"/usr/bin/javac","JAVA_FOLDER_PATH":"Runner.app/Java","JAVA_FRAMEWORK_RESOURCES_DIRS":"Resources","JAVA_JAR_FLAGS":"cv","JAVA_SOURCE_SUBDIR":".","JAVA_USE_DEPENDENCIES":"YES","JAVA_ZIP_FLAGS":"-urg","JIKES_DEFAULT_FLAGS":"+E +OLDCSO","KASAN_DEFAULT_CFLAGS":"-DKASAN=1 -fsanitize=address -mllvm -asan-globals-live-support -mllvm -asan-force-dynamic-shadow","KEEP_PRIVATE_EXTERNS":"NO","LD_DEPENDENCY_INFO_FILE":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/undefined_arch/Runner_dependency_info.dat","LD_GENERATE_MAP_FILE":"NO","LD_MAP_FILE_PATH":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-LinkMap-normal-undefined_arch.txt","LD_NO_PIE":"NO","LD_QUOTE_LINKER_ARGUMENTS_FOR_COMPILER_DRIVER":"YES","LD_RUNPATH_SEARCH_PATHS":" @executable_path/Frameworks","LEGACY_DEVELOPER_DIR":"/Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer","LEX":"lex","LIBRARY_DEXT_INSTALL_PATH":"/Library/DriverExtensions","LIBRARY_FLAG_NOSPACE":"YES","LIBRARY_FLAG_PREFIX":"-l","LIBRARY_KEXT_INSTALL_PATH":"/Library/Extensions","LIBRARY_SEARCH_PATHS":"/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos ","LINKER_DISPLAYS_MANGLED_NAMES":"NO","LINK_FILE_LIST_normal_arm64":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.LinkFileList","LINK_WITH_STANDARD_LIBRARIES":"YES","LLVM_TARGET_TRIPLE_OS_VERSION":"ios9.0","LLVM_TARGET_TRIPLE_VENDOR":"apple","LOCALIZATION_EXPORT_SUPPORTED":"YES","LOCALIZED_RESOURCES_FOLDER_PATH":"Runner.app/en.lproj","LOCALIZED_STRING_MACRO_NAMES":"NSLocalizedString CFCopyLocalizedString","LOCALIZED_STRING_SWIFTUI_SUPPORT":"YES","LOCAL_ADMIN_APPS_DIR":"/Applications/Utilities","LOCAL_APPS_DIR":"/Applications","LOCAL_DEVELOPER_DIR":"/Library/Developer","LOCAL_LIBRARY_DIR":"/Library","LOCROOT":"/Users/denisnadey/Desktop/binanceapp/ios","LOCSYMROOT":"/Users/denisnadey/Desktop/binanceapp/ios","MACH_O_TYPE":"mh_execute","MAC_OS_X_PRODUCT_BUILD_VERSION":"20D91","MAC_OS_X_VERSION_ACTUAL":"110203","MAC_OS_X_VERSION_MAJOR":"110000","MAC_OS_X_VERSION_MINOR":"110200","METAL_LIBRARY_FILE_BASE":"default","METAL_LIBRARY_OUTPUT_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app","MODULES_FOLDER_PATH":"Runner.app/Modules","MODULE_CACHE_DIR":"/Users/denisnadey/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","MTL_ENABLE_DEBUG_INFO":"YES","NATIVE_ARCH":"armv7","NATIVE_ARCH_32_BIT":"arm","NATIVE_ARCH_64_BIT":"arm64","NATIVE_ARCH_ACTUAL":"arm64","NO_COMMON":"YES","OBJECT_FILE_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects","OBJECT_FILE_DIR_normal":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal","OBJROOT":"/Users/denisnadey/Desktop/binanceapp/build/ios","ONLY_ACTIVE_ARCH":"YES","OS":"MACOS","OSAC":"/usr/bin/osacompile","PACKAGE_CONFIG":"/Users/denisnadey/Desktop/binanceapp/.dart_tool/package_config.json","PACKAGE_TYPE":"com.apple.package-type.wrapper.application","PASCAL_STRINGS":"YES","PATH":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/libexec:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/local/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin","PATH_PREFIXES_EXCLUDED_FROM_HEADER_DEPENDENCIES":"/usr/include /usr/local/include /System/Library/Frameworks /System/Library/PrivateFrameworks /Applications/Xcode.app/Contents/Developer/Headers /Applications/Xcode.app/Contents/Developer/SDKs /Applications/Xcode.app/Contents/Developer/Platforms","PBDEVELOPMENTPLIST_PATH":"Runner.app/pbdevelopment.plist","PER_ARCH_OBJECT_FILE_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/undefined_arch","PER_VARIANT_OBJECT_FILE_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal","PKGINFO_FILE_PATH":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/PkgInfo","PKGINFO_PATH":"Runner.app/PkgInfo","PLATFORM_DEVELOPER_APPLICATIONS_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Applications","PLATFORM_DEVELOPER_BIN_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin","PLATFORM_DEVELOPER_LIBRARY_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library","PLATFORM_DEVELOPER_SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs","PLATFORM_DEVELOPER_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Tools","PLATFORM_DEVELOPER_USR_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr","PLATFORM_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform","PLATFORM_DISPLAY_NAME":"iOS","PLATFORM_FAMILY_NAME":"iOS","PLATFORM_NAME":"iphoneos","PLATFORM_PREFERRED_ARCH":"arm64","PLATFORM_PRODUCT_BUILD_VERSION":"18E182","PLIST_FILE_OUTPUT_FORMAT":"binary","PLUGINS_FOLDER_PATH":"Runner.app/PlugIns","PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR":"YES","PRECOMP_DESTINATION_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/PrefixHeaders","PRESERVE_DEAD_CODE_INITS_AND_TERMS":"NO","PRIVATE_HEADERS_FOLDER_PATH":"Runner.app/PrivateHeaders","PRODUCT_BUNDLE_IDENTIFIER":"com.example.binanceapp","PRODUCT_BUNDLE_PACKAGE_TYPE":"APPL","PRODUCT_MODULE_NAME":"Runner","PRODUCT_NAME":"Runner","PRODUCT_SETTINGS_PATH":"/Users/denisnadey/Desktop/binanceapp/ios/Runner/Info.plist","PRODUCT_TYPE":"com.apple.product-type.application","PROFILING_CODE":"NO","PROJECT":"Runner","PROJECT_DERIVED_FILE_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/DerivedSources","PROJECT_DIR":"/Users/denisnadey/Desktop/binanceapp/ios","PROJECT_FILE_PATH":"/Users/denisnadey/Desktop/binanceapp/ios/Runner.xcodeproj","PROJECT_NAME":"Runner","PROJECT_TEMP_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build","PROJECT_TEMP_ROOT":"/Users/denisnadey/Desktop/binanceapp/build/ios","PROVISIONING_PROFILE_REQUIRED":"YES","PUBLIC_HEADERS_FOLDER_PATH":"Runner.app/Headers","RECURSIVE_SEARCH_PATHS_FOLLOW_SYMLINKS":"YES","REMOVE_CVS_FROM_RESOURCES":"YES","REMOVE_GIT_FROM_RESOURCES":"YES","REMOVE_HEADERS_FROM_EMBEDDED_BUNDLES":"YES","REMOVE_HG_FROM_RESOURCES":"YES","REMOVE_SVN_FROM_RESOURCES":"YES","RESOURCE_RULES_REQUIRED":"YES","REZ_COLLECTOR_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/ResourceManagerResources","REZ_OBJECTS_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/ResourceManagerResources/Objects","REZ_SEARCH_PATHS":"/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos ","SCAN_ALL_SOURCE_FILES_FOR_INCLUDES":"NO","SCRIPTS_FOLDER_PATH":"Runner.app/Scripts","SCRIPT_INPUT_FILE_COUNT":"0","SCRIPT_INPUT_FILE_LIST_COUNT":"0","SCRIPT_OUTPUT_FILE_COUNT":"0","SCRIPT_OUTPUT_FILE_LIST_COUNT":"0","SDKROOT":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.5.sdk","SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.5.sdk","SDK_DIR_iphoneos":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.5.sdk","SDK_DIR_iphoneos14_5":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.5.sdk","SDK_NAME":"iphoneos14.5","SDK_NAMES":"iphoneos14.5","SDK_PRODUCT_BUILD_VERSION":"18E182","SDK_VERSION":"14.5","SDK_VERSION_ACTUAL":"140500","SDK_VERSION_MAJOR":"140000","SDK_VERSION_MINOR":"140500","SED":"/usr/bin/sed","SEPARATE_STRIP":"NO","SEPARATE_SYMBOL_EDIT":"NO","SET_DIR_MODE_OWNER_GROUP":"YES","SET_FILE_MODE_OWNER_GROUP":"NO","SHALLOW_BUNDLE":"YES","SHARED_DERIVED_FILE_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/DerivedSources","SHARED_FRAMEWORKS_FOLDER_PATH":"Runner.app/SharedFrameworks","SHARED_PRECOMPS_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/SharedPrecompiledHeaders","SHARED_SUPPORT_FOLDER_PATH":"Runner.app/SharedSupport","SKIP_INSTALL":"NO","SOURCE_ROOT":"/Users/denisnadey/Desktop/binanceapp/ios","SRCROOT":"/Users/denisnadey/Desktop/binanceapp/ios","STRINGS_FILE_INFOPLIST_RENAME":"YES","STRINGS_FILE_OUTPUT_ENCODING":"binary","STRIP_BITCODE_FROM_COPIED_FILES":"YES","STRIP_INSTALLED_PRODUCT":"YES","STRIP_STYLE":"all","STRIP_SWIFT_SYMBOLS":"YES","SUPPORTED_DEVICE_FAMILIES":"1,2","SUPPORTED_PLATFORMS":"iphoneos iphonesimulator","SUPPORTS_MACCATALYST":"NO","SUPPORTS_MAC_DESIGNED_FOR_IPHONE_IPAD":"YES","SUPPORTS_TEXT_BASED_API":"NO","SWIFT_OBJC_BRIDGING_HEADER":"Runner/Runner-Bridging-Header.h","SWIFT_OPTIMIZATION_LEVEL":"-Onone","SWIFT_PLATFORM_TARGET_PREFIX":"ios","SWIFT_RESPONSE_FILE_PATH_normal_arm64":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.SwiftFileList","SWIFT_VERSION":"5.0","SYMROOT":"/Users/denisnadey/Desktop/binanceapp/build/ios","SYSTEM_ADMIN_APPS_DIR":"/Applications/Utilities","SYSTEM_APPS_DIR":"/Applications","SYSTEM_CORE_SERVICES_DIR":"/System/Library/CoreServices","SYSTEM_DEMOS_DIR":"/Applications/Extras","SYSTEM_DEVELOPER_APPS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications","SYSTEM_DEVELOPER_BIN_DIR":"/Applications/Xcode.app/Contents/Developer/usr/bin","SYSTEM_DEVELOPER_DEMOS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Utilities/Built Examples","SYSTEM_DEVELOPER_DIR":"/Applications/Xcode.app/Contents/Developer","SYSTEM_DEVELOPER_DOC_DIR":"/Applications/Xcode.app/Contents/Developer/ADC Reference Library","SYSTEM_DEVELOPER_GRAPHICS_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Graphics Tools","SYSTEM_DEVELOPER_JAVA_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Java Tools","SYSTEM_DEVELOPER_PERFORMANCE_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Performance Tools","SYSTEM_DEVELOPER_RELEASENOTES_DIR":"/Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes","SYSTEM_DEVELOPER_TOOLS":"/Applications/Xcode.app/Contents/Developer/Tools","SYSTEM_DEVELOPER_TOOLS_DOC_DIR":"/Applications/Xcode.app/Contents/Developer/ADC Reference Library/documentation/DeveloperTools","SYSTEM_DEVELOPER_TOOLS_RELEASENOTES_DIR":"/Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes/DeveloperTools","SYSTEM_DEVELOPER_USR_DIR":"/Applications/Xcode.app/Contents/Developer/usr","SYSTEM_DEVELOPER_UTILITIES_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Utilities","SYSTEM_DEXT_INSTALL_PATH":"/System/Library/DriverExtensions","SYSTEM_DOCUMENTATION_DIR":"/Library/Documentation","SYSTEM_KEXT_INSTALL_PATH":"/System/Library/Extensions","SYSTEM_LIBRARY_DIR":"/System/Library","TAPI_VERIFY_MODE":"ErrorsOnly","TARGETED_DEVICE_FAMILY":"1,2","TARGETNAME":"Runner","TARGET_BUILD_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos","TARGET_DEVICE_IDENTIFIER":"14ea1e3ed325a580fb35bcb957020b43676e0a94","TARGET_DEVICE_MODEL":"iPhone8,1","TARGET_DEVICE_OS_VERSION":"14.5","TARGET_DEVICE_PLATFORM_NAME":"iphoneos","TARGET_NAME":"Runner","TARGET_TEMP_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build","TEMP_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build","TEMP_FILES_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build","TEMP_FILE_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build","TEMP_ROOT":"/Users/denisnadey/Desktop/binanceapp/build/ios","TEST_FRAMEWORK_SEARCH_PATHS":" /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.5.sdk/Developer/Library/Frameworks","TEST_LIBRARY_SEARCH_PATHS":" /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib","TOOLCHAINS":"com.apple.dt.toolchain.XcodeDefault","TOOLCHAIN_DIR":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain","TRACK_WIDGET_CREATION":"true","TREAT_MISSING_BASELINES_AS_TEST_FAILURES":"NO","TREE_SHAKE_ICONS":"false","UID":"501","UNLOCALIZED_RESOURCES_FOLDER_PATH":"Runner.app","UNSTRIPPED_PRODUCT":"NO","USER":"denisnadey","USER_APPS_DIR":"/Users/denisnadey/Applications","USER_LIBRARY_DIR":"/Users/denisnadey/Library","USE_DYNAMIC_NO_PIC":"YES","USE_HEADERMAP":"YES","USE_HEADER_SYMLINKS":"NO","USE_LLVM_TARGET_TRIPLES":"YES","USE_LLVM_TARGET_TRIPLES_FOR_CLANG":"YES","USE_LLVM_TARGET_TRIPLES_FOR_LD":"YES","USE_LLVM_TARGET_TRIPLES_FOR_TAPI":"YES","VALIDATE_DEVELOPMENT_ASSET_PATHS":"YES_ERROR","VALIDATE_PRODUCT":"NO","VALIDATE_WORKSPACE":"YES_ERROR","VALID_ARCHS":"arm64 arm64e armv7 armv7s","VERBOSE_PBXCP":"NO","VERSIONING_SYSTEM":"apple-generic","VERSIONPLIST_PATH":"Runner.app/version.plist","VERSION_INFO_BUILDER":"denisnadey","VERSION_INFO_FILE":"Runner_vers.c","VERSION_INFO_STRING":"\"@(#)PROGRAM:Runner PROJECT:Runner-1\"","WRAPPER_EXTENSION":"app","WRAPPER_NAME":"Runner.app","WRAPPER_SUFFIX":".app","WRAP_ASSET_PACKS_IN_SEPARATE_DIRECTORIES":"NO","XCODE_APP_SUPPORT_DIR":"/Applications/Xcode.app/Contents/Developer/Library/Xcode","XCODE_PRODUCT_BUILD_VERSION":"12E262","XCODE_VERSION_ACTUAL":"1250","XCODE_VERSION_MAJOR":"1200","XCODE_VERSION_MINOR":"1250","XPCSERVICES_FOLDER_PATH":"Runner.app/XPCServices","YACC":"yacc","arch":"undefined_arch","variant":"normal"},"allow-missing-inputs":true,"always-out-of-date":true,"working-directory":"/Users/denisnadey/Desktop/binanceapp/ios","control-enabled":false,"signature":"4cf3792ff8312dd75a4af57e27bd664b"} + "target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49-:Debug:PhaseScriptExecution Thin Binary /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh": {"tool":"shell","description":"PhaseScriptExecution Thin Binary /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh","inputs":["/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh","",""],"outputs":[""],"args":["/bin/sh","-c","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh"],"env":{"ACTION":"build","AD_HOC_CODE_SIGNING_ALLOWED":"NO","ALTERNATE_GROUP":"staff","ALTERNATE_MODE":"u+w,go-w,a+rX","ALTERNATE_OWNER":"denisnadey","ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES":"NO","ALWAYS_SEARCH_USER_PATHS":"NO","ALWAYS_USE_SEPARATE_HEADERMAPS":"NO","APPLE_INTERNAL_DEVELOPER_DIR":"/AppleInternal/Developer","APPLE_INTERNAL_DIR":"/AppleInternal","APPLE_INTERNAL_DOCUMENTATION_DIR":"/AppleInternal/Documentation","APPLE_INTERNAL_LIBRARY_DIR":"/AppleInternal/Library","APPLE_INTERNAL_TOOLS":"/AppleInternal/Developer/Tools","APPLICATION_EXTENSION_API_ONLY":"NO","APPLY_RULES_IN_COPY_FILES":"NO","APPLY_RULES_IN_COPY_HEADERS":"NO","ARCHS":"arm64","ARCHS_STANDARD":"arm64 armv7","ARCHS_STANDARD_32_64_BIT":"armv7 arm64","ARCHS_STANDARD_32_BIT":"armv7","ARCHS_STANDARD_64_BIT":"arm64","ARCHS_STANDARD_INCLUDING_64_BIT":"arm64 armv7","ARCHS_UNIVERSAL_IPHONE_OS":"armv7 arm64","ASSETCATALOG_COMPILER_APPICON_NAME":"AppIcon","ASSETCATALOG_FILTER_FOR_DEVICE_MODEL":"iPhone8,1","ASSETCATALOG_FILTER_FOR_DEVICE_OS_VERSION":"14.5","AVAILABLE_PLATFORMS":"appletvos appletvsimulator iphoneos iphonesimulator macosx watchos watchsimulator","BITCODE_GENERATION_MODE":"marker","BUILD_ACTIVE_RESOURCES_ONLY":"YES","BUILD_COMPONENTS":"headers build","BUILD_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios","BUILD_LIBRARY_FOR_DISTRIBUTION":"NO","BUILD_ROOT":"/Users/denisnadey/Desktop/binanceapp/build/ios","BUILD_STYLE":"","BUILD_VARIANTS":"normal","BUILT_PRODUCTS_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos","BUNDLE_CONTENTS_FOLDER_PATH_deep":"Contents/","BUNDLE_EXECUTABLE_FOLDER_NAME_deep":"MacOS","BUNDLE_FORMAT":"shallow","BUNDLE_FRAMEWORKS_FOLDER_PATH":"Frameworks","BUNDLE_PLUGINS_FOLDER_PATH":"PlugIns","BUNDLE_PRIVATE_HEADERS_FOLDER_PATH":"PrivateHeaders","BUNDLE_PUBLIC_HEADERS_FOLDER_PATH":"Headers","CACHE_ROOT":"/var/folders/kq/kc3pf_ns62n6hc7n74119qf00000gn/C/com.apple.DeveloperTools/12.5-12E262/Xcode","CCHROOT":"/var/folders/kq/kc3pf_ns62n6hc7n74119qf00000gn/C/com.apple.DeveloperTools/12.5-12E262/Xcode","CHMOD":"/bin/chmod","CHOWN":"/usr/sbin/chown","CLANG_ANALYZER_NONNULL":"YES","CLANG_CXX_LANGUAGE_STANDARD":"gnu++0x","CLANG_CXX_LIBRARY":"libc++","CLANG_ENABLE_MODULES":"YES","CLANG_ENABLE_OBJC_ARC":"YES","CLANG_MODULES_BUILD_SESSION_FILE":"/Users/denisnadey/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING":"YES","CLANG_WARN_BOOL_CONVERSION":"YES","CLANG_WARN_COMMA":"YES","CLANG_WARN_CONSTANT_CONVERSION":"YES","CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS":"YES","CLANG_WARN_DIRECT_OBJC_ISA_USAGE":"YES_ERROR","CLANG_WARN_EMPTY_BODY":"YES","CLANG_WARN_ENUM_CONVERSION":"YES","CLANG_WARN_INFINITE_RECURSION":"YES","CLANG_WARN_INT_CONVERSION":"YES","CLANG_WARN_NON_LITERAL_NULL_CONVERSION":"YES","CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF":"YES","CLANG_WARN_OBJC_LITERAL_CONVERSION":"YES","CLANG_WARN_OBJC_ROOT_CLASS":"YES_ERROR","CLANG_WARN_RANGE_LOOP_ANALYSIS":"YES","CLANG_WARN_STRICT_PROTOTYPES":"YES","CLANG_WARN_SUSPICIOUS_MOVE":"YES","CLANG_WARN_UNREACHABLE_CODE":"YES","CLANG_WARN__DUPLICATE_METHOD_MATCH":"YES","CLASS_FILE_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/JavaClasses","CLEAN_PRECOMPS":"YES","CLONE_HEADERS":"NO","COCOAPODS_PARALLEL_CODE_SIGN":"true","CODESIGNING_FOLDER_PATH":"/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app","CODE_SIGNING_ALLOWED":"YES","CODE_SIGNING_REQUIRED":"YES","CODE_SIGN_CONTEXT_CLASS":"XCiPhoneOSCodeSignContext","CODE_SIGN_IDENTITY":"iPhone Developer","CODE_SIGN_INJECT_BASE_ENTITLEMENTS":"YES","COLOR_DIAGNOSTICS":"NO","COMBINE_HIDPI_IMAGES":"NO","COMPILER_INDEX_STORE_ENABLE":"Default","COMPOSITE_SDK_DIRS":"/Users/denisnadey/Desktop/binanceapp/build/ios/CompositeSDKs","COMPRESS_PNG_FILES":"YES","CONFIGURATION":"Debug","CONFIGURATION_BUILD_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos","CONFIGURATION_TEMP_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos","CONTENTS_FOLDER_PATH":"Runner.app","COPYING_PRESERVES_HFS_DATA":"NO","COPY_HEADERS_RUN_UNIFDEF":"NO","COPY_PHASE_STRIP":"NO","COPY_RESOURCES_FROM_STATIC_FRAMEWORKS":"YES","CORRESPONDING_SIMULATOR_PLATFORM_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform","CORRESPONDING_SIMULATOR_PLATFORM_NAME":"iphonesimulator","CORRESPONDING_SIMULATOR_SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk","CORRESPONDING_SIMULATOR_SDK_NAME":"iphonesimulator14.5","CP":"/bin/cp","CREATE_INFOPLIST_SECTION_IN_BINARY":"NO","CURRENT_ARCH":"undefined_arch","CURRENT_PROJECT_VERSION":"1","CURRENT_VARIANT":"normal","DART_DEFINES":"RkxVVFRFUl9XRUJfQVVUT19ERVRFQ1Q9dHJ1ZQ==","DART_OBFUSCATION":"false","DEAD_CODE_STRIPPING":"YES","DEBUGGING_SYMBOLS":"YES","DEBUG_INFORMATION_FORMAT":"dwarf","DEFAULT_COMPILER":"com.apple.compilers.llvm.clang.1_0","DEFAULT_DEXT_INSTALL_PATH":"/System/Library/DriverExtensions","DEFAULT_KEXT_INSTALL_PATH":"/System/Library/Extensions","DEFINES_MODULE":"NO","DEPLOYMENT_LOCATION":"NO","DEPLOYMENT_POSTPROCESSING":"NO","DEPLOYMENT_TARGET_CLANG_ENV_NAME":"IPHONEOS_DEPLOYMENT_TARGET","DEPLOYMENT_TARGET_CLANG_FLAG_NAME":"miphoneos-version-min","DEPLOYMENT_TARGET_CLANG_FLAG_PREFIX":"-miphoneos-version-min=","DEPLOYMENT_TARGET_LD_ENV_NAME":"IPHONEOS_DEPLOYMENT_TARGET","DEPLOYMENT_TARGET_LD_FLAG_NAME":"ios_version_min","DEPLOYMENT_TARGET_SETTING_NAME":"IPHONEOS_DEPLOYMENT_TARGET","DEPLOYMENT_TARGET_SUGGESTED_VALUES":"9.0 9.2 10.0 10.2 11.0 11.2 11.4 12.1 12.3 13.0 13.2 13.4 13.6 14.1 14.3 14.5","DERIVED_FILES_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources","DERIVED_FILE_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources","DERIVED_SOURCES_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources","DERIVE_MACCATALYST_PRODUCT_BUNDLE_IDENTIFIER":"NO","DEVELOPER_APPLICATIONS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications","DEVELOPER_BIN_DIR":"/Applications/Xcode.app/Contents/Developer/usr/bin","DEVELOPER_DIR":"/Applications/Xcode.app/Contents/Developer","DEVELOPER_FRAMEWORKS_DIR":"/Applications/Xcode.app/Contents/Developer/Library/Frameworks","DEVELOPER_FRAMEWORKS_DIR_QUOTED":"/Applications/Xcode.app/Contents/Developer/Library/Frameworks","DEVELOPER_LIBRARY_DIR":"/Applications/Xcode.app/Contents/Developer/Library","DEVELOPER_SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs","DEVELOPER_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Tools","DEVELOPER_USR_DIR":"/Applications/Xcode.app/Contents/Developer/usr","DEVELOPMENT_LANGUAGE":"en","DOCUMENTATION_FOLDER_PATH":"Runner.app/en.lproj/Documentation","DONT_GENERATE_INFOPLIST_FILE":"NO","DO_HEADER_SCANNING_IN_JAM":"NO","DSTROOT":"/tmp/Runner.dst","DT_TOOLCHAIN_DIR":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain","DWARF_DSYM_FILE_NAME":"Runner.app.dSYM","DWARF_DSYM_FILE_SHOULD_ACCOMPANY_PRODUCT":"NO","DWARF_DSYM_FOLDER_PATH":"/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos","EFFECTIVE_PLATFORM_NAME":"-iphoneos","EMBEDDED_CONTENT_CONTAINS_SWIFT":"NO","EMBEDDED_PROFILE_NAME":"embedded.mobileprovision","EMBED_ASSET_PACKS_IN_PRODUCT_BUNDLE":"NO","ENABLE_BITCODE":"NO","ENABLE_DEFAULT_HEADER_SEARCH_PATHS":"YES","ENABLE_HARDENED_RUNTIME":"NO","ENABLE_HEADER_DEPENDENCIES":"YES","ENABLE_ON_DEMAND_RESOURCES":"YES","ENABLE_PREVIEWS":"NO","ENABLE_STRICT_OBJC_MSGSEND":"YES","ENABLE_TESTABILITY":"YES","ENABLE_TESTING_SEARCH_PATHS":"NO","ENTITLEMENTS_ALLOWED":"YES","ENTITLEMENTS_DESTINATION":"Signature","ENTITLEMENTS_REQUIRED":"YES","EXCLUDED_INSTALLSRC_SUBDIRECTORY_PATTERNS":".DS_Store .svn .git .hg CVS","EXCLUDED_RECURSIVE_SEARCH_PATH_SUBDIRECTORIES":"*.nib *.lproj *.framework *.gch *.xcode* *.xcassets (*) .DS_Store CVS .svn .git .hg *.pbproj *.pbxproj","EXECUTABLES_FOLDER_PATH":"Runner.app/Executables","EXECUTABLE_FOLDER_PATH":"Runner.app","EXECUTABLE_NAME":"Runner","EXECUTABLE_PATH":"Runner.app/Runner","FILE_LIST":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects/LinkFileList","FIXED_FILES_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/FixedFiles","FLUTTER_APPLICATION_PATH":"/Users/denisnadey/Desktop/binanceapp","FLUTTER_BUILD_DIR":"build","FLUTTER_BUILD_NAME":"1.0.0","FLUTTER_BUILD_NUMBER":"1","FLUTTER_ROOT":"/Users/denisnadey/development/flutter","FLUTTER_TARGET":"/Users/denisnadey/Desktop/binanceapp/lib/main.dart","FRAMEWORKS_FOLDER_PATH":"Runner.app/Frameworks","FRAMEWORK_FLAG_PREFIX":"-framework","FRAMEWORK_SEARCH_PATHS":"/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos ","FRAMEWORK_VERSION":"A","FULL_PRODUCT_NAME":"Runner.app","GCC3_VERSION":"3.3","GCC_C_LANGUAGE_STANDARD":"gnu99","GCC_DYNAMIC_NO_PIC":"NO","GCC_INLINES_ARE_PRIVATE_EXTERN":"YES","GCC_NO_COMMON_BLOCKS":"YES","GCC_OPTIMIZATION_LEVEL":"0","GCC_PFE_FILE_C_DIALECTS":"c objective-c c++ objective-c++","GCC_PREPROCESSOR_DEFINITIONS":"DEBUG=1 ","GCC_SYMBOLS_PRIVATE_EXTERN":"NO","GCC_THUMB_SUPPORT":"YES","GCC_TREAT_WARNINGS_AS_ERRORS":"NO","GCC_VERSION":"com.apple.compilers.llvm.clang.1_0","GCC_VERSION_IDENTIFIER":"com_apple_compilers_llvm_clang_1_0","GCC_WARN_64_TO_32_BIT_CONVERSION":"YES","GCC_WARN_ABOUT_RETURN_TYPE":"YES_ERROR","GCC_WARN_UNDECLARED_SELECTOR":"YES","GCC_WARN_UNINITIALIZED_AUTOS":"YES_AGGRESSIVE","GCC_WARN_UNUSED_FUNCTION":"YES","GCC_WARN_UNUSED_VARIABLE":"YES","GENERATED_MODULEMAP_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/GeneratedModuleMaps-iphoneos","GENERATE_MASTER_OBJECT_FILE":"NO","GENERATE_PKGINFO_FILE":"YES","GENERATE_PROFILING_CODE":"NO","GENERATE_TEXT_BASED_STUBS":"NO","GID":"20","GROUP":"staff","HEADERMAP_INCLUDES_FLAT_ENTRIES_FOR_TARGET_BEING_BUILT":"YES","HEADERMAP_INCLUDES_FRAMEWORK_ENTRIES_FOR_ALL_PRODUCT_TYPES":"YES","HEADERMAP_INCLUDES_NONPUBLIC_NONPRIVATE_HEADERS":"YES","HEADERMAP_INCLUDES_PROJECT_HEADERS":"YES","HEADERMAP_USES_FRAMEWORK_PREFIX_ENTRIES":"YES","HEADERMAP_USES_VFS":"NO","HEADER_SEARCH_PATHS":"/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/include ","HIDE_BITCODE_SYMBOLS":"YES","HOME":"/Users/denisnadey","ICONV":"/usr/bin/iconv","INFOPLIST_EXPAND_BUILD_SETTINGS":"YES","INFOPLIST_FILE":"Runner/Info.plist","INFOPLIST_OUTPUT_FORMAT":"binary","INFOPLIST_PATH":"Runner.app/Info.plist","INFOPLIST_PREPROCESS":"NO","INFOSTRINGS_PATH":"Runner.app/en.lproj/InfoPlist.strings","INLINE_PRIVATE_FRAMEWORKS":"NO","INSTALLHDRS_COPY_PHASE":"NO","INSTALLHDRS_SCRIPT_PHASE":"NO","INSTALL_DIR":"/tmp/Runner.dst/Applications","INSTALL_GROUP":"staff","INSTALL_MODE_FLAG":"u+w,go-w,a+rX","INSTALL_OWNER":"denisnadey","INSTALL_PATH":"/Applications","INSTALL_ROOT":"/tmp/Runner.dst","IPHONEOS_DEPLOYMENT_TARGET":"9.0","JAVAC_DEFAULT_FLAGS":"-J-Xms64m -J-XX:NewSize=4M -J-Dfile.encoding=UTF8","JAVA_APP_STUB":"/System/Library/Frameworks/JavaVM.framework/Resources/MacOS/JavaApplicationStub","JAVA_ARCHIVE_CLASSES":"YES","JAVA_ARCHIVE_TYPE":"JAR","JAVA_COMPILER":"/usr/bin/javac","JAVA_FOLDER_PATH":"Runner.app/Java","JAVA_FRAMEWORK_RESOURCES_DIRS":"Resources","JAVA_JAR_FLAGS":"cv","JAVA_SOURCE_SUBDIR":".","JAVA_USE_DEPENDENCIES":"YES","JAVA_ZIP_FLAGS":"-urg","JIKES_DEFAULT_FLAGS":"+E +OLDCSO","KASAN_DEFAULT_CFLAGS":"-DKASAN=1 -fsanitize=address -mllvm -asan-globals-live-support -mllvm -asan-force-dynamic-shadow","KEEP_PRIVATE_EXTERNS":"NO","LD_DEPENDENCY_INFO_FILE":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/undefined_arch/Runner_dependency_info.dat","LD_GENERATE_MAP_FILE":"NO","LD_MAP_FILE_PATH":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-LinkMap-normal-undefined_arch.txt","LD_NO_PIE":"NO","LD_QUOTE_LINKER_ARGUMENTS_FOR_COMPILER_DRIVER":"YES","LD_RUNPATH_SEARCH_PATHS":" @executable_path/Frameworks","LEGACY_DEVELOPER_DIR":"/Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer","LEX":"lex","LIBRARY_DEXT_INSTALL_PATH":"/Library/DriverExtensions","LIBRARY_FLAG_NOSPACE":"YES","LIBRARY_FLAG_PREFIX":"-l","LIBRARY_KEXT_INSTALL_PATH":"/Library/Extensions","LIBRARY_SEARCH_PATHS":"/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos ","LINKER_DISPLAYS_MANGLED_NAMES":"NO","LINK_FILE_LIST_normal_arm64":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.LinkFileList","LINK_WITH_STANDARD_LIBRARIES":"YES","LLVM_TARGET_TRIPLE_OS_VERSION":"ios9.0","LLVM_TARGET_TRIPLE_VENDOR":"apple","LOCALIZATION_EXPORT_SUPPORTED":"YES","LOCALIZED_RESOURCES_FOLDER_PATH":"Runner.app/en.lproj","LOCALIZED_STRING_MACRO_NAMES":"NSLocalizedString CFCopyLocalizedString","LOCALIZED_STRING_SWIFTUI_SUPPORT":"YES","LOCAL_ADMIN_APPS_DIR":"/Applications/Utilities","LOCAL_APPS_DIR":"/Applications","LOCAL_DEVELOPER_DIR":"/Library/Developer","LOCAL_LIBRARY_DIR":"/Library","LOCROOT":"/Users/denisnadey/Desktop/binanceapp/ios","LOCSYMROOT":"/Users/denisnadey/Desktop/binanceapp/ios","MACH_O_TYPE":"mh_execute","MAC_OS_X_PRODUCT_BUILD_VERSION":"20D91","MAC_OS_X_VERSION_ACTUAL":"110203","MAC_OS_X_VERSION_MAJOR":"110000","MAC_OS_X_VERSION_MINOR":"110200","METAL_LIBRARY_FILE_BASE":"default","METAL_LIBRARY_OUTPUT_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app","MODULES_FOLDER_PATH":"Runner.app/Modules","MODULE_CACHE_DIR":"/Users/denisnadey/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","MTL_ENABLE_DEBUG_INFO":"YES","NATIVE_ARCH":"armv7","NATIVE_ARCH_32_BIT":"arm","NATIVE_ARCH_64_BIT":"arm64","NATIVE_ARCH_ACTUAL":"arm64","NO_COMMON":"YES","OBJECT_FILE_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects","OBJECT_FILE_DIR_normal":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal","OBJROOT":"/Users/denisnadey/Desktop/binanceapp/build/ios","ONLY_ACTIVE_ARCH":"YES","OS":"MACOS","OSAC":"/usr/bin/osacompile","PACKAGE_CONFIG":"/Users/denisnadey/Desktop/binanceapp/.dart_tool/package_config.json","PACKAGE_TYPE":"com.apple.package-type.wrapper.application","PASCAL_STRINGS":"YES","PATH":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/libexec:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/local/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin","PATH_PREFIXES_EXCLUDED_FROM_HEADER_DEPENDENCIES":"/usr/include /usr/local/include /System/Library/Frameworks /System/Library/PrivateFrameworks /Applications/Xcode.app/Contents/Developer/Headers /Applications/Xcode.app/Contents/Developer/SDKs /Applications/Xcode.app/Contents/Developer/Platforms","PBDEVELOPMENTPLIST_PATH":"Runner.app/pbdevelopment.plist","PER_ARCH_OBJECT_FILE_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/undefined_arch","PER_VARIANT_OBJECT_FILE_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal","PKGINFO_FILE_PATH":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/PkgInfo","PKGINFO_PATH":"Runner.app/PkgInfo","PLATFORM_DEVELOPER_APPLICATIONS_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Applications","PLATFORM_DEVELOPER_BIN_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin","PLATFORM_DEVELOPER_LIBRARY_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library","PLATFORM_DEVELOPER_SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs","PLATFORM_DEVELOPER_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Tools","PLATFORM_DEVELOPER_USR_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr","PLATFORM_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform","PLATFORM_DISPLAY_NAME":"iOS","PLATFORM_FAMILY_NAME":"iOS","PLATFORM_NAME":"iphoneos","PLATFORM_PREFERRED_ARCH":"arm64","PLATFORM_PRODUCT_BUILD_VERSION":"18E182","PLIST_FILE_OUTPUT_FORMAT":"binary","PLUGINS_FOLDER_PATH":"Runner.app/PlugIns","PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR":"YES","PRECOMP_DESTINATION_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/PrefixHeaders","PRESERVE_DEAD_CODE_INITS_AND_TERMS":"NO","PRIVATE_HEADERS_FOLDER_PATH":"Runner.app/PrivateHeaders","PRODUCT_BUNDLE_IDENTIFIER":"com.example.binanceapp","PRODUCT_BUNDLE_PACKAGE_TYPE":"APPL","PRODUCT_MODULE_NAME":"Runner","PRODUCT_NAME":"Runner","PRODUCT_SETTINGS_PATH":"/Users/denisnadey/Desktop/binanceapp/ios/Runner/Info.plist","PRODUCT_TYPE":"com.apple.product-type.application","PROFILING_CODE":"NO","PROJECT":"Runner","PROJECT_DERIVED_FILE_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/DerivedSources","PROJECT_DIR":"/Users/denisnadey/Desktop/binanceapp/ios","PROJECT_FILE_PATH":"/Users/denisnadey/Desktop/binanceapp/ios/Runner.xcodeproj","PROJECT_NAME":"Runner","PROJECT_TEMP_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build","PROJECT_TEMP_ROOT":"/Users/denisnadey/Desktop/binanceapp/build/ios","PROVISIONING_PROFILE_REQUIRED":"YES","PUBLIC_HEADERS_FOLDER_PATH":"Runner.app/Headers","RECURSIVE_SEARCH_PATHS_FOLLOW_SYMLINKS":"YES","REMOVE_CVS_FROM_RESOURCES":"YES","REMOVE_GIT_FROM_RESOURCES":"YES","REMOVE_HEADERS_FROM_EMBEDDED_BUNDLES":"YES","REMOVE_HG_FROM_RESOURCES":"YES","REMOVE_SVN_FROM_RESOURCES":"YES","RESOURCE_RULES_REQUIRED":"YES","REZ_COLLECTOR_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/ResourceManagerResources","REZ_OBJECTS_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/ResourceManagerResources/Objects","REZ_SEARCH_PATHS":"/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos ","SCAN_ALL_SOURCE_FILES_FOR_INCLUDES":"NO","SCRIPTS_FOLDER_PATH":"Runner.app/Scripts","SCRIPT_INPUT_FILE_COUNT":"0","SCRIPT_INPUT_FILE_LIST_COUNT":"0","SCRIPT_OUTPUT_FILE_COUNT":"0","SCRIPT_OUTPUT_FILE_LIST_COUNT":"0","SDKROOT":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.5.sdk","SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.5.sdk","SDK_DIR_iphoneos":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.5.sdk","SDK_DIR_iphoneos14_5":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.5.sdk","SDK_NAME":"iphoneos14.5","SDK_NAMES":"iphoneos14.5","SDK_PRODUCT_BUILD_VERSION":"18E182","SDK_VERSION":"14.5","SDK_VERSION_ACTUAL":"140500","SDK_VERSION_MAJOR":"140000","SDK_VERSION_MINOR":"140500","SED":"/usr/bin/sed","SEPARATE_STRIP":"NO","SEPARATE_SYMBOL_EDIT":"NO","SET_DIR_MODE_OWNER_GROUP":"YES","SET_FILE_MODE_OWNER_GROUP":"NO","SHALLOW_BUNDLE":"YES","SHARED_DERIVED_FILE_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/DerivedSources","SHARED_FRAMEWORKS_FOLDER_PATH":"Runner.app/SharedFrameworks","SHARED_PRECOMPS_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/SharedPrecompiledHeaders","SHARED_SUPPORT_FOLDER_PATH":"Runner.app/SharedSupport","SKIP_INSTALL":"NO","SOURCE_ROOT":"/Users/denisnadey/Desktop/binanceapp/ios","SRCROOT":"/Users/denisnadey/Desktop/binanceapp/ios","STRINGS_FILE_INFOPLIST_RENAME":"YES","STRINGS_FILE_OUTPUT_ENCODING":"binary","STRIP_BITCODE_FROM_COPIED_FILES":"YES","STRIP_INSTALLED_PRODUCT":"YES","STRIP_STYLE":"all","STRIP_SWIFT_SYMBOLS":"YES","SUPPORTED_DEVICE_FAMILIES":"1,2","SUPPORTED_PLATFORMS":"iphoneos iphonesimulator","SUPPORTS_MACCATALYST":"NO","SUPPORTS_MAC_DESIGNED_FOR_IPHONE_IPAD":"YES","SUPPORTS_TEXT_BASED_API":"NO","SWIFT_OBJC_BRIDGING_HEADER":"Runner/Runner-Bridging-Header.h","SWIFT_OPTIMIZATION_LEVEL":"-Onone","SWIFT_PLATFORM_TARGET_PREFIX":"ios","SWIFT_RESPONSE_FILE_PATH_normal_arm64":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.SwiftFileList","SWIFT_VERSION":"5.0","SYMROOT":"/Users/denisnadey/Desktop/binanceapp/build/ios","SYSTEM_ADMIN_APPS_DIR":"/Applications/Utilities","SYSTEM_APPS_DIR":"/Applications","SYSTEM_CORE_SERVICES_DIR":"/System/Library/CoreServices","SYSTEM_DEMOS_DIR":"/Applications/Extras","SYSTEM_DEVELOPER_APPS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications","SYSTEM_DEVELOPER_BIN_DIR":"/Applications/Xcode.app/Contents/Developer/usr/bin","SYSTEM_DEVELOPER_DEMOS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Utilities/Built Examples","SYSTEM_DEVELOPER_DIR":"/Applications/Xcode.app/Contents/Developer","SYSTEM_DEVELOPER_DOC_DIR":"/Applications/Xcode.app/Contents/Developer/ADC Reference Library","SYSTEM_DEVELOPER_GRAPHICS_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Graphics Tools","SYSTEM_DEVELOPER_JAVA_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Java Tools","SYSTEM_DEVELOPER_PERFORMANCE_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Performance Tools","SYSTEM_DEVELOPER_RELEASENOTES_DIR":"/Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes","SYSTEM_DEVELOPER_TOOLS":"/Applications/Xcode.app/Contents/Developer/Tools","SYSTEM_DEVELOPER_TOOLS_DOC_DIR":"/Applications/Xcode.app/Contents/Developer/ADC Reference Library/documentation/DeveloperTools","SYSTEM_DEVELOPER_TOOLS_RELEASENOTES_DIR":"/Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes/DeveloperTools","SYSTEM_DEVELOPER_USR_DIR":"/Applications/Xcode.app/Contents/Developer/usr","SYSTEM_DEVELOPER_UTILITIES_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Utilities","SYSTEM_DEXT_INSTALL_PATH":"/System/Library/DriverExtensions","SYSTEM_DOCUMENTATION_DIR":"/Library/Documentation","SYSTEM_KEXT_INSTALL_PATH":"/System/Library/Extensions","SYSTEM_LIBRARY_DIR":"/System/Library","TAPI_VERIFY_MODE":"ErrorsOnly","TARGETED_DEVICE_FAMILY":"1,2","TARGETNAME":"Runner","TARGET_BUILD_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos","TARGET_DEVICE_IDENTIFIER":"14ea1e3ed325a580fb35bcb957020b43676e0a94","TARGET_DEVICE_MODEL":"iPhone8,1","TARGET_DEVICE_OS_VERSION":"14.5","TARGET_DEVICE_PLATFORM_NAME":"iphoneos","TARGET_NAME":"Runner","TARGET_TEMP_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build","TEMP_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build","TEMP_FILES_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build","TEMP_FILE_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build","TEMP_ROOT":"/Users/denisnadey/Desktop/binanceapp/build/ios","TEST_FRAMEWORK_SEARCH_PATHS":" /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.5.sdk/Developer/Library/Frameworks","TEST_LIBRARY_SEARCH_PATHS":" /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib","TOOLCHAINS":"com.apple.dt.toolchain.XcodeDefault","TOOLCHAIN_DIR":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain","TRACK_WIDGET_CREATION":"true","TREAT_MISSING_BASELINES_AS_TEST_FAILURES":"NO","TREE_SHAKE_ICONS":"false","UID":"501","UNLOCALIZED_RESOURCES_FOLDER_PATH":"Runner.app","UNSTRIPPED_PRODUCT":"NO","USER":"denisnadey","USER_APPS_DIR":"/Users/denisnadey/Applications","USER_LIBRARY_DIR":"/Users/denisnadey/Library","USE_DYNAMIC_NO_PIC":"YES","USE_HEADERMAP":"YES","USE_HEADER_SYMLINKS":"NO","USE_LLVM_TARGET_TRIPLES":"YES","USE_LLVM_TARGET_TRIPLES_FOR_CLANG":"YES","USE_LLVM_TARGET_TRIPLES_FOR_LD":"YES","USE_LLVM_TARGET_TRIPLES_FOR_TAPI":"YES","VALIDATE_DEVELOPMENT_ASSET_PATHS":"YES_ERROR","VALIDATE_PRODUCT":"NO","VALIDATE_WORKSPACE":"YES_ERROR","VALID_ARCHS":"arm64 arm64e armv7 armv7s","VERBOSE_PBXCP":"NO","VERSIONING_SYSTEM":"apple-generic","VERSIONPLIST_PATH":"Runner.app/version.plist","VERSION_INFO_BUILDER":"denisnadey","VERSION_INFO_FILE":"Runner_vers.c","VERSION_INFO_STRING":"\"@(#)PROGRAM:Runner PROJECT:Runner-1\"","WRAPPER_EXTENSION":"app","WRAPPER_NAME":"Runner.app","WRAPPER_SUFFIX":".app","WRAP_ASSET_PACKS_IN_SEPARATE_DIRECTORIES":"NO","XCODE_APP_SUPPORT_DIR":"/Applications/Xcode.app/Contents/Developer/Library/Xcode","XCODE_PRODUCT_BUILD_VERSION":"12E262","XCODE_VERSION_ACTUAL":"1250","XCODE_VERSION_MAJOR":"1200","XCODE_VERSION_MINOR":"1250","XPCSERVICES_FOLDER_PATH":"Runner.app/XPCServices","YACC":"yacc","arch":"undefined_arch","variant":"normal"},"allow-missing-inputs":true,"always-out-of-date":true,"working-directory":"/Users/denisnadey/Desktop/binanceapp/ios","control-enabled":false,"signature":"b8d4c24780a06b49c89d0f1ddf9f46b2"} + "target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49-:Debug:ProcessInfoPlistFile /Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app/Info.plist /Users/denisnadey/Desktop/binanceapp/ios/Runner/Info.plist": {"tool":"info-plist-processor","description":"ProcessInfoPlistFile /Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app/Info.plist /Users/denisnadey/Desktop/binanceapp/ios/Runner/Info.plist","inputs":["/Users/denisnadey/Desktop/binanceapp/ios/Runner/Info.plist","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Base.lproj/LaunchScreen-SBPartialInfo.plist","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Base.lproj/Main-SBPartialInfo.plist","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/assetcatalog_generated_info.plist","",""],"outputs":["/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app/Info.plist"]} + "target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49-:Debug:RegisterExecutionPolicyException /Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app": {"tool":"register-execution-policy-exception","description":"RegisterExecutionPolicyException /Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app","inputs":["/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app","","",""],"outputs":[""]} + "target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49-:Debug:Touch /Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app": {"tool":"shell","description":"Touch /Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app","inputs":["/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app","","",""],"outputs":[""],"args":["/usr/bin/touch","-c","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app"],"env":{},"working-directory":"/Users/denisnadey/Desktop/binanceapp/ios","signature":"18e5f1d2f67ec1749312a5fa5e041c49"} + "target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49-:Debug:Validate /Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app": {"tool":"validate-product","description":"Validate /Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app","inputs":["","","",""],"outputs":[""]} + "target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49-:Debug:WriteAuxiliaryFile /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources/Runner_vers.c": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources/Runner_vers.c","inputs":["",""],"outputs":["/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources/Runner_vers.c"]} + "target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49-:Debug:WriteAuxiliaryFile /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner-OutputFileMap.json": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner-OutputFileMap.json","inputs":["",""],"outputs":["/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner-OutputFileMap.json"]} + "target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49-:Debug:WriteAuxiliaryFile /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.LinkFileList": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.LinkFileList","inputs":["",""],"outputs":["/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.LinkFileList"]} + "target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49-:Debug:WriteAuxiliaryFile /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.SwiftFileList": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.SwiftFileList","inputs":["",""],"outputs":["/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.SwiftFileList"]} + "target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49-:Debug:WriteAuxiliaryFile /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-all-non-framework-target-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-all-non-framework-target-headers.hmap","inputs":["",""],"outputs":["/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-all-non-framework-target-headers.hmap"]} + "target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49-:Debug:WriteAuxiliaryFile /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-all-target-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-all-target-headers.hmap","inputs":["",""],"outputs":["/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-all-target-headers.hmap"]} + "target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49-:Debug:WriteAuxiliaryFile /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-generated-files.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-generated-files.hmap","inputs":["",""],"outputs":["/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-generated-files.hmap"]} + "target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49-:Debug:WriteAuxiliaryFile /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-own-target-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-own-target-headers.hmap","inputs":["",""],"outputs":["/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-own-target-headers.hmap"]} + "target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49-:Debug:WriteAuxiliaryFile /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-project-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-project-headers.hmap","inputs":["",""],"outputs":["/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-project-headers.hmap"]} + "target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49-:Debug:WriteAuxiliaryFile /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner.hmap","inputs":["",""],"outputs":["/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner.hmap"]} + "target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49-:Debug:WriteAuxiliaryFile /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh","inputs":["",""],"outputs":["/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh"]} + "target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49-:Debug:WriteAuxiliaryFile /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Script-9740EEB61CF901F6004384FC.sh": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Script-9740EEB61CF901F6004384FC.sh","inputs":["",""],"outputs":["/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Script-9740EEB61CF901F6004384FC.sh"]} + "target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49-:Debug:WriteAuxiliaryFile /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/all-product-headers.yaml": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/all-product-headers.yaml","inputs":["",""],"outputs":["/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/all-product-headers.yaml"]} + diff --git a/ios/build/XCBuildData/36e04258919a7b4c14647b6806a82bc8-targetGraph.txt b/ios/build/XCBuildData/36e04258919a7b4c14647b6806a82bc8-targetGraph.txt new file mode 100644 index 0000000..baf1008 --- /dev/null +++ b/ios/build/XCBuildData/36e04258919a7b4c14647b6806a82bc8-targetGraph.txt @@ -0,0 +1,2 @@ +Target dependency graph (1 target) +Runner in Runner \ No newline at end of file diff --git a/ios/build/XCBuildData/BuildDescriptionCacheIndex-ddf0dec1f06d843135112cbf96b08ee4 b/ios/build/XCBuildData/BuildDescriptionCacheIndex-ddf0dec1f06d843135112cbf96b08ee4 new file mode 100644 index 0000000..4590123 Binary files /dev/null and b/ios/build/XCBuildData/BuildDescriptionCacheIndex-ddf0dec1f06d843135112cbf96b08ee4 differ diff --git a/ios/build/XCBuildData/build.db b/ios/build/XCBuildData/build.db new file mode 100644 index 0000000..e2eb2dd Binary files /dev/null and b/ios/build/XCBuildData/build.db differ diff --git a/ios/build/XCBuildData/c2ef8d78aabb34140fdbae0cc1dc90b3-buildRequest.json b/ios/build/XCBuildData/c2ef8d78aabb34140fdbae0cc1dc90b3-buildRequest.json new file mode 100644 index 0000000..c60bdab --- /dev/null +++ b/ios/build/XCBuildData/c2ef8d78aabb34140fdbae0cc1dc90b3-buildRequest.json @@ -0,0 +1,59 @@ +{ + "buildCommand" : "prepareForIndexing", + "configuredTargets" : [ + { + "guid" : "2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49" + } + ], + "continueBuildingAfterErrors" : true, + "enableIndexBuildArena" : false, + "hideShellScriptEnvironment" : false, + "parameters" : { + "action" : "build", + "activeArchitecture" : "arm64", + "activeRunDestination" : { + "disableOnlyActiveArch" : false, + "platform" : "iphoneos", + "sdk" : "iphoneos14.5", + "sdkVariant" : "iphoneos", + "supportedArchitectures" : [ + "arm64v8", + "arm64", + "armv8" + ], + "targetArchitecture" : "arm64" + }, + "arenaInfo" : { + "buildIntermediatesPath" : "", + "buildProductsPath" : "", + "derivedDataPath" : "/Users/denisnadey/Library/Developer/Xcode/DerivedData", + "indexDataStoreFolderPath" : "/Users/denisnadey/Library/Developer/Xcode/DerivedData/Runner-bisgldbzhhnjagdkalkcjwgjecrh/Index/DataStore", + "indexEnableDataStore" : true, + "indexPCHPath" : "/Users/denisnadey/Library/Developer/Xcode/DerivedData/Runner-bisgldbzhhnjagdkalkcjwgjecrh/Index/PrecompiledHeaders", + "pchPath" : "" + }, + "configurationName" : "Debug", + "overrides" : { + "synthesized" : { + "table" : { + "ASSETCATALOG_FILTER_FOR_DEVICE_MODEL" : "iPhone8,1", + "ASSETCATALOG_FILTER_FOR_DEVICE_OS_VERSION" : "14.5", + "BUILD_ACTIVE_RESOURCES_ONLY" : "YES", + "ENABLE_PREVIEWS" : "NO", + "TARGET_DEVICE_IDENTIFIER" : "14ea1e3ed325a580fb35bcb957020b43676e0a94", + "TARGET_DEVICE_MODEL" : "iPhone8,1", + "TARGET_DEVICE_OS_VERSION" : "14.5", + "TARGET_DEVICE_PLATFORM_NAME" : "iphoneos" + } + } + } + }, + "qos" : "default", + "schemeCommand" : "launch", + "shouldCollectMetrics" : false, + "showNonLoggedProgress" : true, + "useDryRun" : true, + "useImplicitDependencies" : true, + "useLegacyBuildLocations" : false, + "useParallelTargets" : true +} \ No newline at end of file diff --git a/ios/build/XCBuildData/c2ef8d78aabb34140fdbae0cc1dc90b3-desc.xcbuild b/ios/build/XCBuildData/c2ef8d78aabb34140fdbae0cc1dc90b3-desc.xcbuild new file mode 100644 index 0000000..74f7d78 Binary files /dev/null and b/ios/build/XCBuildData/c2ef8d78aabb34140fdbae0cc1dc90b3-desc.xcbuild differ diff --git a/ios/build/XCBuildData/c2ef8d78aabb34140fdbae0cc1dc90b3-manifest.xcbuild b/ios/build/XCBuildData/c2ef8d78aabb34140fdbae0cc1dc90b3-manifest.xcbuild new file mode 100644 index 0000000..3fa9f53 --- /dev/null +++ b/ios/build/XCBuildData/c2ef8d78aabb34140fdbae0cc1dc90b3-manifest.xcbuild @@ -0,0 +1,96 @@ +client: + name: basic + version: 0 + file-system: default + +targets: + "": [""] + +nodes: + "/Users/denisnadey/Desktop/binanceapp/build/ios": {"is-mutated":true} + "/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos": {"is-mutated":true} + "/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app": {"is-mutated":true} + "": {"is-command-timestamp":true} + +commands: + "::CreateBuildDirectory /Users/denisnadey/Desktop/binanceapp/build/ios": {"tool":"create-build-directory","description":"CreateBuildDirectory /Users/denisnadey/Desktop/binanceapp/build/ios","inputs":[],"outputs":["","/Users/denisnadey/Desktop/binanceapp/build/ios"]} + "::CreateBuildDirectory /Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos": {"tool":"create-build-directory","description":"CreateBuildDirectory /Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos","inputs":["/Users/denisnadey/Desktop/binanceapp/build/ios"],"outputs":["","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos"]} + "": {"tool":"phony","inputs":["",""],"outputs":[""]} + "": {"tool":"stale-file-removal","expectedOutputs":["/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/assetcatalog_generated_info.plist","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app/Assets.car","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.o","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner_vers.o","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Base.lproj/LaunchScreen.storyboardc","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Base.lproj/LaunchScreen-SBPartialInfo.plist","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Base.lproj/Main.storyboardc","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Base.lproj/Main-SBPartialInfo.plist","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/AppDelegate.o","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftmodule","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftsourceinfo","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner-Swift.h","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftdoc","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app/AppFrameworkInfo.plist","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/Project/arm64.swiftsourceinfo","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/arm64-apple-ios.swiftdoc","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/arm64-apple-ios.swiftmodule","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/arm64.swiftdoc","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/arm64.swiftmodule","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources/Runner-Swift.h","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app/Runner","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app/Base.lproj/LaunchScreen.storyboardc","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app/Base.lproj/Main.storyboardc","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app/Info.plist","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources/Runner_vers.c","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner-OutputFileMap.json","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.LinkFileList","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.SwiftFileList","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-all-non-framework-target-headers.hmap","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-all-target-headers.hmap","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-generated-files.hmap","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-own-target-headers.hmap","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-project-headers.hmap","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner.hmap","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Script-9740EEB61CF901F6004384FC.sh","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/all-product-headers.yaml"],"roots":["/tmp/Runner.dst","/Users/denisnadey/Desktop/binanceapp/build/ios","/Users/denisnadey/Desktop/binanceapp/build/ios"],"outputs":[""]} + "Gate target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49--Barrier-ChangeAlternatePermissions": {"tool":"phony","inputs":["","",""],"outputs":[""]} + "Gate target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49--Barrier-ChangePermissions": {"tool":"phony","inputs":["","",""],"outputs":[""]} + "Gate target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49--Barrier-CodeSign": {"tool":"phony","inputs":["","",""],"outputs":[""]} + "Gate target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49--Barrier-CopyAside": {"tool":"phony","inputs":["","",""],"outputs":[""]} + "Gate target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49--Barrier-RegisterExecutionPolicyException": {"tool":"phony","inputs":["","","",""],"outputs":[""]} + "Gate target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49--Barrier-RegisterProduct": {"tool":"phony","inputs":["","","",""],"outputs":[""]} + "Gate target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49--Barrier-StripSymbols": {"tool":"phony","inputs":["","",""],"outputs":[""]} + "Gate target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49--Barrier-Validate": {"tool":"phony","inputs":["","","",""],"outputs":[""]} + "Gate target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49--CopySwiftPackageResourcesTaskProducer": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49--GeneratedFilesTaskProducer": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49--HeadermapTaskProducer": {"tool":"phony","inputs":["","","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-all-non-framework-target-headers.hmap","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-all-target-headers.hmap","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-generated-files.hmap","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-own-target-headers.hmap","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-project-headers.hmap","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner.hmap","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/all-product-headers.yaml"],"outputs":[""]} + "Gate target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49--InfoPlistTaskProducer": {"tool":"phony","inputs":["","","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app/Info.plist"],"outputs":[""]} + "Gate target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49--ModuleMapTaskProducer": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49--ProductPostprocessingTaskProducer": {"tool":"phony","inputs":["","","","","","","","","","","","","",""],"outputs":[""]} + "Gate target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49--ProductStructureTaskProducer": {"tool":"phony","inputs":["","",""],"outputs":[""]} + "Gate target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49--SanitizerTaskProducer": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49--StubBinaryTaskProducer": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49--SwiftABIBaselineGenerationTaskProducer": {"tool":"phony","inputs":["","",""],"outputs":[""]} + "Gate target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49--SwiftFrameworkABICheckerTaskProducer": {"tool":"phony","inputs":["","",""],"outputs":[""]} + "Gate target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49--SwiftStandardLibrariesTaskProducer": {"tool":"phony","inputs":["","","",""],"outputs":[""]} + "Gate target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49--TestHostTaskProducer": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49--TestTargetPostprocessingTaskProducer": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49--TestTargetTaskProducer": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49--VersionPlistTaskProducer": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49--begin-compiling": {"tool":"phony","inputs":["","","","",""],"outputs":[""]} + "Gate target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49--copy-headers-completion": {"tool":"phony","inputs":[""],"outputs":[""]} + "Gate target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49--end": {"tool":"phony","inputs":["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/assetcatalog_generated_info.plist","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app/Assets.car","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.o","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner_vers.o","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Base.lproj/LaunchScreen.storyboardc","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Base.lproj/LaunchScreen-SBPartialInfo.plist","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Base.lproj/Main.storyboardc","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Base.lproj/Main-SBPartialInfo.plist","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/AppDelegate.o","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftmodule","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftsourceinfo","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner-Swift.h","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftdoc","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app/AppFrameworkInfo.plist","","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/Project/arm64.swiftsourceinfo","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/arm64-apple-ios.swiftdoc","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/arm64-apple-ios.swiftmodule","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/arm64.swiftdoc","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/arm64.swiftmodule","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources/Runner-Swift.h","","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app/Base.lproj/LaunchScreen.storyboardc","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app/Base.lproj/Main.storyboardc","","","","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app/Info.plist","","","","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources/Runner_vers.c","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner-OutputFileMap.json","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.LinkFileList","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.SwiftFileList","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-all-non-framework-target-headers.hmap","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-all-target-headers.hmap","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-generated-files.hmap","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-own-target-headers.hmap","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-project-headers.hmap","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner.hmap","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Script-9740EEB61CF901F6004384FC.sh","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/all-product-headers.yaml"],"outputs":[""]} + "Gate target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49--entry": {"tool":"phony","inputs":["","","","","",""],"outputs":[""]} + "Gate target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49--generated-headers": {"tool":"phony","inputs":["","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/AppDelegate.o","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftmodule","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftsourceinfo","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner-Swift.h","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftdoc","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources/Runner-Swift.h"],"outputs":[""]} + "Gate target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49--immediate": {"tool":"phony","inputs":["","","","",""],"outputs":[""]} + "Gate target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49--modules-ready": {"tool":"phony","inputs":["","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/AppDelegate.o","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftmodule","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftsourceinfo","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner-Swift.h","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftdoc","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/Project/arm64.swiftsourceinfo","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/arm64-apple-ios.swiftdoc","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/arm64-apple-ios.swiftmodule","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/arm64.swiftdoc","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/arm64.swiftmodule","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources/Runner-Swift.h","","","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Script-9740EEB61CF901F6004384FC.sh"],"outputs":[""]} + "Gate target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49--package-copy-files-phase": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49--phase0-run-script": {"tool":"phony","inputs":["","","","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Script-9740EEB61CF901F6004384FC.sh"],"outputs":[""]} + "Gate target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49--phase1-compile-sources": {"tool":"phony","inputs":["","","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.o","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner_vers.o","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/AppDelegate.o","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftmodule","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftsourceinfo","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner-Swift.h","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftdoc","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/Project/arm64.swiftsourceinfo","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/arm64-apple-ios.swiftdoc","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/arm64-apple-ios.swiftmodule","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/arm64.swiftdoc","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/arm64.swiftmodule","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources/Runner-Swift.h","","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources/Runner_vers.c","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner-OutputFileMap.json","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.LinkFileList","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.SwiftFileList"],"outputs":[""]} + "Gate target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49--phase3-copy-bundle-resources": {"tool":"phony","inputs":["","","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/assetcatalog_generated_info.plist","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app/Assets.car","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Base.lproj/LaunchScreen.storyboardc","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Base.lproj/LaunchScreen-SBPartialInfo.plist","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Base.lproj/Main.storyboardc","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Base.lproj/Main-SBPartialInfo.plist","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app/AppFrameworkInfo.plist","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app/Base.lproj/LaunchScreen.storyboardc","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app/Base.lproj/Main.storyboardc"],"outputs":[""]} + "Gate target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49--phase4-copy-files": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49--phase5-thin-binary": {"tool":"phony","inputs":["","","","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh"],"outputs":[""]} + "Gate target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49--unsigned-product-ready": {"tool":"phony","inputs":["","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.o","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner_vers.o","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/AppDelegate.o","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftmodule","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftsourceinfo","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner-Swift.h","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftdoc","","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/Project/arm64.swiftsourceinfo","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/arm64-apple-ios.swiftdoc","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/arm64-apple-ios.swiftmodule","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/arm64.swiftdoc","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/arm64.swiftmodule","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources/Runner-Swift.h","","","","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources/Runner_vers.c","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner-OutputFileMap.json","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.LinkFileList","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.SwiftFileList","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Script-9740EEB61CF901F6004384FC.sh"],"outputs":[""]} + "Gate target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49--will-sign": {"tool":"phony","inputs":[""],"outputs":[""]} + "target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49-:Debug:CompileAssetCatalog /Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app /Users/denisnadey/Desktop/binanceapp/ios/Runner/Assets.xcassets": {"tool":"shell","description":"CompileAssetCatalog /Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app /Users/denisnadey/Desktop/binanceapp/ios/Runner/Assets.xcassets","inputs":["/Users/denisnadey/Desktop/binanceapp/ios/Runner/Assets.xcassets/","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app","",""],"outputs":["/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/assetcatalog_generated_info.plist","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app/Assets.car"],"args":["/Applications/Xcode.app/Contents/Developer/usr/bin/actool","--output-format","human-readable-text","--notices","--warnings","--export-dependency-info","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/assetcatalog_dependencies","--output-partial-info-plist","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/assetcatalog_generated_info.plist","--app-icon","AppIcon","--compress-pngs","--enable-on-demand-resources","YES","--filter-for-device-model","iPhone8,1","--filter-for-device-os-version","14.5","--development-region","en","--target-device","iphone","--target-device","ipad","--minimum-deployment-target","9.0","--platform","iphoneos","--compile","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app","/Users/denisnadey/Desktop/binanceapp/ios/Runner/Assets.xcassets"],"env":{},"working-directory":"/Users/denisnadey/Desktop/binanceapp/ios","control-enabled":false,"deps":["/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/assetcatalog_dependencies"],"deps-style":"dependency-info","signature":"cce006f2e5fae110937eda368c4bd72a"} + "target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49-:Debug:CompileC /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.o /Users/denisnadey/Desktop/binanceapp/ios/Runner/GeneratedPluginRegistrant.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.o /Users/denisnadey/Desktop/binanceapp/ios/Runner/GeneratedPluginRegistrant.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/denisnadey/Desktop/binanceapp/ios/Runner/GeneratedPluginRegistrant.m","","",""],"outputs":["/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu99","-fobjc-arc","-fmodules","-gmodules","-fmodules-cache-path=/Users/denisnadey/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/denisnadey/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DDEBUG=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.5.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-index-store-path","/Users/denisnadey/Library/Developer/Xcode/DerivedData/Runner-bisgldbzhhnjagdkalkcjwgjecrh/Index/DataStore","-iquote","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-generated-files.hmap","-I/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-own-target-headers.hmap","-I/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-all-target-headers.hmap","-iquote","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-project-headers.hmap","-I/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/include","-I/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources-normal/arm64","-I/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources/arm64","-I/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources","-F/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos","-MMD","-MT","dependencies","-MF","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.d","--serialize-diagnostics","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.dia","-c","/Users/denisnadey/Desktop/binanceapp/ios/Runner/GeneratedPluginRegistrant.m","-o","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/denisnadey/Desktop/binanceapp/ios","deps":["/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.d"],"deps-style":"makefile","signature":"60fd5eda7f921b04f50d890b3a6764d2"} + "target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49-:Debug:CompileC /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner_vers.o /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources/Runner_vers.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner_vers.o /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources/Runner_vers.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources/Runner_vers.c","","",""],"outputs":["/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner_vers.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu99","-fmodules","-gmodules","-fmodules-cache-path=/Users/denisnadey/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/denisnadey/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wunreachable-code","-Werror=deprecated-objc-isa-usage","-Werror=objc-root-class","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-DDEBUG=1","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.5.sdk","-fstrict-aliasing","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-index-store-path","/Users/denisnadey/Library/Developer/Xcode/DerivedData/Runner-bisgldbzhhnjagdkalkcjwgjecrh/Index/DataStore","-iquote","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-generated-files.hmap","-I/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-own-target-headers.hmap","-I/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-all-target-headers.hmap","-iquote","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-project-headers.hmap","-I/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/include","-I/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources-normal/arm64","-I/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources/arm64","-I/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources","-F/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos","-MMD","-MT","dependencies","-MF","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner_vers.d","--serialize-diagnostics","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner_vers.dia","-c","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources/Runner_vers.c","-o","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner_vers.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/denisnadey/Desktop/binanceapp/ios","deps":["/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner_vers.d"],"deps-style":"makefile","signature":"950259e89ced89826246d6d475c1128d"} + "target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49-:Debug:CompileStoryboard /Users/denisnadey/Desktop/binanceapp/ios/Runner/Base.lproj/LaunchScreen.storyboard": {"tool":"shell","description":"CompileStoryboard /Users/denisnadey/Desktop/binanceapp/ios/Runner/Base.lproj/LaunchScreen.storyboard","inputs":["/Users/denisnadey/Desktop/binanceapp/ios/Runner/Base.lproj/LaunchScreen.storyboard","",""],"outputs":["/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Base.lproj/LaunchScreen.storyboardc","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Base.lproj/LaunchScreen-SBPartialInfo.plist"],"args":["/Applications/Xcode.app/Contents/Developer/usr/bin/ibtool","--errors","--warnings","--notices","--module","Runner","--output-partial-info-plist","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Base.lproj/LaunchScreen-SBPartialInfo.plist","--auto-activate-custom-fonts","--target-device","iphone","--target-device","ipad","--minimum-deployment-target","9.0","--output-format","human-readable-text","--compilation-directory","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Base.lproj","/Users/denisnadey/Desktop/binanceapp/ios/Runner/Base.lproj/LaunchScreen.storyboard"],"env":{"XCODE_DEVELOPER_USR_PATH":"/Applications/Xcode.app/Contents/Developer/usr/bin/.."},"working-directory":"/Users/denisnadey/Desktop/binanceapp/ios","control-enabled":false,"signature":"c34b222cff0129c8942b376bdd9888f1"} + "target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49-:Debug:CompileStoryboard /Users/denisnadey/Desktop/binanceapp/ios/Runner/Base.lproj/Main.storyboard": {"tool":"shell","description":"CompileStoryboard /Users/denisnadey/Desktop/binanceapp/ios/Runner/Base.lproj/Main.storyboard","inputs":["/Users/denisnadey/Desktop/binanceapp/ios/Runner/Base.lproj/Main.storyboard","",""],"outputs":["/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Base.lproj/Main.storyboardc","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Base.lproj/Main-SBPartialInfo.plist"],"args":["/Applications/Xcode.app/Contents/Developer/usr/bin/ibtool","--errors","--warnings","--notices","--module","Runner","--output-partial-info-plist","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Base.lproj/Main-SBPartialInfo.plist","--auto-activate-custom-fonts","--target-device","iphone","--target-device","ipad","--minimum-deployment-target","9.0","--output-format","human-readable-text","--compilation-directory","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Base.lproj","/Users/denisnadey/Desktop/binanceapp/ios/Runner/Base.lproj/Main.storyboard"],"env":{"XCODE_DEVELOPER_USR_PATH":"/Applications/Xcode.app/Contents/Developer/usr/bin/.."},"working-directory":"/Users/denisnadey/Desktop/binanceapp/ios","control-enabled":false,"signature":"6ded78c56faf7fb458277a68a0972163"} + "target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49-:Debug:CompileSwiftSources normal arm64 com.apple.xcode.tools.swift.compiler": {"tool":"shell","description":"CompileSwiftSources normal arm64 com.apple.xcode.tools.swift.compiler","inputs":["/Users/denisnadey/Desktop/binanceapp/ios/Runner/AppDelegate.swift","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.SwiftFileList","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner-OutputFileMap.json","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-generated-files.hmap","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-own-target-headers.hmap","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-all-target-headers.hmap","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-project-headers.hmap","","",""],"outputs":["/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/AppDelegate.o","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftmodule","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftsourceinfo","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner-Swift.h","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftdoc"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc","-incremental","-module-name","Runner","-Onone","-enable-batch-mode","-enforce-exclusivity=checked","@/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.SwiftFileList","-sdk","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.5.sdk","-target","arm64-apple-ios9.0","-g","-module-cache-path","/Users/denisnadey/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-Xfrontend","-serialize-debugging-options","-enable-testing","-index-store-path","/Users/denisnadey/Library/Developer/Xcode/DerivedData/Runner-bisgldbzhhnjagdkalkcjwgjecrh/Index/DataStore","-swift-version","5","-I","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos","-F","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos","-parse-as-library","-c","-j8","-output-file-map","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner-OutputFileMap.json","-parseable-output","-serialize-diagnostics","-emit-dependencies","-emit-module","-emit-module-path","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftmodule","-Xcc","-I/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/swift-overrides.hmap","-Xcc","-iquote","-Xcc","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-generated-files.hmap","-Xcc","-I/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-own-target-headers.hmap","-Xcc","-I/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-all-target-headers.hmap","-Xcc","-iquote","-Xcc","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-project-headers.hmap","-Xcc","-I/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/include","-Xcc","-I/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources-normal/arm64","-Xcc","-I/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources/arm64","-Xcc","-I/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources","-Xcc","-DDEBUG=1","-emit-objc-header","-emit-objc-header-path","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner-Swift.h","-import-objc-header","/Users/denisnadey/Desktop/binanceapp/ios/Runner/Runner-Bridging-Header.h","-pch-output-dir","/Users/denisnadey/Desktop/binanceapp/build/ios/SharedPrecompiledHeaders","-working-directory","/Users/denisnadey/Desktop/binanceapp/ios"],"env":{"DEVELOPER_DIR":"/Applications/Xcode.app/Contents/Developer","SDKROOT":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.5.sdk"},"working-directory":"/Users/denisnadey/Desktop/binanceapp/ios","deps":["/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/AppDelegate.d"],"deps-style":"makefile","signature":"396b147372bea099c71ff756fa1d5b8b"} + "target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49-:Debug:CopyPlistFile /Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app/AppFrameworkInfo.plist /Users/denisnadey/Desktop/binanceapp/ios/Flutter/AppFrameworkInfo.plist": {"tool":"copy-plist","description":"CopyPlistFile /Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app/AppFrameworkInfo.plist /Users/denisnadey/Desktop/binanceapp/ios/Flutter/AppFrameworkInfo.plist","inputs":["/Users/denisnadey/Desktop/binanceapp/ios/Flutter/AppFrameworkInfo.plist","",""],"outputs":["/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app/AppFrameworkInfo.plist"]} + "target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49-:Debug:CopySwiftLibs /Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app": {"tool":"embed-swift-stdlib","description":"CopySwiftLibs /Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app","inputs":["/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app/Runner","","",""],"outputs":[""],"deps":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/SwiftStdLibToolInputDependencies.dep"} + "target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49-:Debug:Ditto /Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftsourceinfo": {"tool":"shell","description":"Ditto /Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftsourceinfo","inputs":["/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftsourceinfo","","",""],"outputs":["/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo"],"args":["/usr/bin/ditto","-rsrc","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftsourceinfo","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo"],"env":{},"working-directory":"/Users/denisnadey/Desktop/binanceapp/ios","signature":"dce8a9bc646a0bbd3486e62300dcfa0b"} + "target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49-:Debug:Ditto /Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/Project/arm64.swiftsourceinfo /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftsourceinfo": {"tool":"shell","description":"Ditto /Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/Project/arm64.swiftsourceinfo /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftsourceinfo","inputs":["/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftsourceinfo","","",""],"outputs":["/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/Project/arm64.swiftsourceinfo"],"args":["/usr/bin/ditto","-rsrc","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftsourceinfo","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/Project/arm64.swiftsourceinfo"],"env":{},"working-directory":"/Users/denisnadey/Desktop/binanceapp/ios","signature":"e1112e7f2165c12cd0301e518840b7b5"} + "target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49-:Debug:Ditto /Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/arm64-apple-ios.swiftdoc /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftdoc": {"tool":"shell","description":"Ditto /Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/arm64-apple-ios.swiftdoc /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftdoc","inputs":["/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftdoc","","",""],"outputs":["/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/arm64-apple-ios.swiftdoc"],"args":["/usr/bin/ditto","-rsrc","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftdoc","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/arm64-apple-ios.swiftdoc"],"env":{},"working-directory":"/Users/denisnadey/Desktop/binanceapp/ios","signature":"5aadbb3dbe4dd2617c2078ce764d7f0d"} + "target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49-:Debug:Ditto /Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/arm64-apple-ios.swiftmodule /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftmodule": {"tool":"shell","description":"Ditto /Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/arm64-apple-ios.swiftmodule /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftmodule","inputs":["/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftmodule","","",""],"outputs":["/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/arm64-apple-ios.swiftmodule"],"args":["/usr/bin/ditto","-rsrc","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftmodule","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/arm64-apple-ios.swiftmodule"],"env":{},"working-directory":"/Users/denisnadey/Desktop/binanceapp/ios","signature":"646bf0147a4974d4e670e2df1f7ce352"} + "target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49-:Debug:Ditto /Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/arm64.swiftdoc /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftdoc": {"tool":"shell","description":"Ditto /Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/arm64.swiftdoc /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftdoc","inputs":["/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftdoc","","",""],"outputs":["/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/arm64.swiftdoc"],"args":["/usr/bin/ditto","-rsrc","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftdoc","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/arm64.swiftdoc"],"env":{},"working-directory":"/Users/denisnadey/Desktop/binanceapp/ios","signature":"81867cf72babecea973bd51830daaad4"} + "target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49-:Debug:Ditto /Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/arm64.swiftmodule /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftmodule": {"tool":"shell","description":"Ditto /Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/arm64.swiftmodule /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftmodule","inputs":["/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftmodule","","",""],"outputs":["/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/arm64.swiftmodule"],"args":["/usr/bin/ditto","-rsrc","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftmodule","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.swiftmodule/arm64.swiftmodule"],"env":{},"working-directory":"/Users/denisnadey/Desktop/binanceapp/ios","signature":"c313efcbb02bd9628dd8fcfb1370409b"} + "target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49-:Debug:Ditto /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources/Runner-Swift.h /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner-Swift.h": {"tool":"shell","description":"Ditto /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources/Runner-Swift.h /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner-Swift.h","inputs":["/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner-Swift.h","","",""],"outputs":["/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources/Runner-Swift.h"],"args":["/usr/bin/ditto","-rsrc","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner-Swift.h","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources/Runner-Swift.h"],"env":{},"working-directory":"/Users/denisnadey/Desktop/binanceapp/ios","signature":"8c921312aa76fa34013e62364b679c43"} + "target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49-:Debug:Ld /Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app/Runner normal": {"tool":"shell","description":"Ld /Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app/Runner normal","inputs":["/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner_vers.o","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.o","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/AppDelegate.o","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.LinkFileList","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos","",""],"outputs":["/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app/Runner",""],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-target","arm64-apple-ios9.0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.5.sdk","-L/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos","-F/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos","-filelist","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.LinkFileList","-Xlinker","-rpath","-Xlinker","/usr/lib/swift","-Xlinker","-rpath","-Xlinker","@executable_path/Frameworks","-dead_strip","-Xlinker","-object_path_lto","-Xlinker","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner_lto.o","-Xlinker","-export_dynamic","-Xlinker","-no_deduplicate","-fobjc-arc","-fobjc-link-runtime","-L/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos","-L/usr/lib/swift","-Xlinker","-add_ast_path","-Xlinker","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftmodule","-Xlinker","-dependency_info","-Xlinker","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner_dependency_info.dat","-o","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app/Runner"],"env":{},"working-directory":"/Users/denisnadey/Desktop/binanceapp/ios","deps":["/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner_dependency_info.dat"],"deps-style":"dependency-info","signature":"a897121f34014fc90320c27dbca06823"} + "target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49-:Debug:LinkStoryboards": {"tool":"shell","description":"LinkStoryboards","inputs":["/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Base.lproj/LaunchScreen.storyboardc","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Base.lproj/Main.storyboardc","",""],"outputs":["/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app/Base.lproj/LaunchScreen.storyboardc","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app/Base.lproj/Main.storyboardc"],"args":["/Applications/Xcode.app/Contents/Developer/usr/bin/ibtool","--errors","--warnings","--notices","--module","Runner","--target-device","iphone","--target-device","ipad","--minimum-deployment-target","9.0","--output-format","human-readable-text","--link","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Base.lproj/LaunchScreen.storyboardc","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Base.lproj/Main.storyboardc"],"env":{"XCODE_DEVELOPER_USR_PATH":"/Applications/Xcode.app/Contents/Developer/usr/bin/.."},"working-directory":"/Users/denisnadey/Desktop/binanceapp/ios","control-enabled":false,"signature":"e5738fe206d06adf3964a6e0b9913752"} + "target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49-:Debug:MkDir /Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app": {"tool":"mkdir","description":"MkDir /Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app","inputs":["",""],"outputs":["/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app","",""]} + "target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49-:Debug:PhaseScriptExecution Run Script /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Script-9740EEB61CF901F6004384FC.sh": {"tool":"shell","description":"PhaseScriptExecution Run Script /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Script-9740EEB61CF901F6004384FC.sh","inputs":["/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Script-9740EEB61CF901F6004384FC.sh","",""],"outputs":[""],"args":["/bin/sh","-c","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Script-9740EEB61CF901F6004384FC.sh"],"env":{"ACTION":"build","AD_HOC_CODE_SIGNING_ALLOWED":"NO","ALTERNATE_GROUP":"staff","ALTERNATE_MODE":"u+w,go-w,a+rX","ALTERNATE_OWNER":"denisnadey","ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES":"NO","ALWAYS_SEARCH_USER_PATHS":"NO","ALWAYS_USE_SEPARATE_HEADERMAPS":"NO","APPLE_INTERNAL_DEVELOPER_DIR":"/AppleInternal/Developer","APPLE_INTERNAL_DIR":"/AppleInternal","APPLE_INTERNAL_DOCUMENTATION_DIR":"/AppleInternal/Documentation","APPLE_INTERNAL_LIBRARY_DIR":"/AppleInternal/Library","APPLE_INTERNAL_TOOLS":"/AppleInternal/Developer/Tools","APPLICATION_EXTENSION_API_ONLY":"NO","APPLY_RULES_IN_COPY_FILES":"NO","APPLY_RULES_IN_COPY_HEADERS":"NO","ARCHS":"arm64","ARCHS_STANDARD":"arm64 armv7","ARCHS_STANDARD_32_64_BIT":"armv7 arm64","ARCHS_STANDARD_32_BIT":"armv7","ARCHS_STANDARD_64_BIT":"arm64","ARCHS_STANDARD_INCLUDING_64_BIT":"arm64 armv7","ARCHS_UNIVERSAL_IPHONE_OS":"armv7 arm64","ASSETCATALOG_COMPILER_APPICON_NAME":"AppIcon","ASSETCATALOG_FILTER_FOR_DEVICE_MODEL":"iPhone8,1","ASSETCATALOG_FILTER_FOR_DEVICE_OS_VERSION":"14.5","AVAILABLE_PLATFORMS":"appletvos appletvsimulator iphoneos iphonesimulator macosx watchos watchsimulator","BITCODE_GENERATION_MODE":"marker","BUILD_ACTIVE_RESOURCES_ONLY":"YES","BUILD_COMPONENTS":"headers build","BUILD_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios","BUILD_LIBRARY_FOR_DISTRIBUTION":"NO","BUILD_ROOT":"/Users/denisnadey/Desktop/binanceapp/build/ios","BUILD_STYLE":"","BUILD_VARIANTS":"normal","BUILT_PRODUCTS_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos","BUNDLE_CONTENTS_FOLDER_PATH_deep":"Contents/","BUNDLE_EXECUTABLE_FOLDER_NAME_deep":"MacOS","BUNDLE_FORMAT":"shallow","BUNDLE_FRAMEWORKS_FOLDER_PATH":"Frameworks","BUNDLE_PLUGINS_FOLDER_PATH":"PlugIns","BUNDLE_PRIVATE_HEADERS_FOLDER_PATH":"PrivateHeaders","BUNDLE_PUBLIC_HEADERS_FOLDER_PATH":"Headers","CACHE_ROOT":"/var/folders/kq/kc3pf_ns62n6hc7n74119qf00000gn/C/com.apple.DeveloperTools/12.5-12E262/Xcode","CCHROOT":"/var/folders/kq/kc3pf_ns62n6hc7n74119qf00000gn/C/com.apple.DeveloperTools/12.5-12E262/Xcode","CHMOD":"/bin/chmod","CHOWN":"/usr/sbin/chown","CLANG_ANALYZER_NONNULL":"YES","CLANG_CXX_LANGUAGE_STANDARD":"gnu++0x","CLANG_CXX_LIBRARY":"libc++","CLANG_ENABLE_MODULES":"YES","CLANG_ENABLE_OBJC_ARC":"YES","CLANG_MODULES_BUILD_SESSION_FILE":"/Users/denisnadey/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING":"YES","CLANG_WARN_BOOL_CONVERSION":"YES","CLANG_WARN_COMMA":"YES","CLANG_WARN_CONSTANT_CONVERSION":"YES","CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS":"YES","CLANG_WARN_DIRECT_OBJC_ISA_USAGE":"YES_ERROR","CLANG_WARN_EMPTY_BODY":"YES","CLANG_WARN_ENUM_CONVERSION":"YES","CLANG_WARN_INFINITE_RECURSION":"YES","CLANG_WARN_INT_CONVERSION":"YES","CLANG_WARN_NON_LITERAL_NULL_CONVERSION":"YES","CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF":"YES","CLANG_WARN_OBJC_LITERAL_CONVERSION":"YES","CLANG_WARN_OBJC_ROOT_CLASS":"YES_ERROR","CLANG_WARN_RANGE_LOOP_ANALYSIS":"YES","CLANG_WARN_STRICT_PROTOTYPES":"YES","CLANG_WARN_SUSPICIOUS_MOVE":"YES","CLANG_WARN_UNREACHABLE_CODE":"YES","CLANG_WARN__DUPLICATE_METHOD_MATCH":"YES","CLASS_FILE_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/JavaClasses","CLEAN_PRECOMPS":"YES","CLONE_HEADERS":"NO","COCOAPODS_PARALLEL_CODE_SIGN":"true","CODESIGNING_FOLDER_PATH":"/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app","CODE_SIGNING_ALLOWED":"YES","CODE_SIGNING_REQUIRED":"YES","CODE_SIGN_CONTEXT_CLASS":"XCiPhoneOSCodeSignContext","CODE_SIGN_IDENTITY":"iPhone Developer","CODE_SIGN_INJECT_BASE_ENTITLEMENTS":"YES","COLOR_DIAGNOSTICS":"NO","COMBINE_HIDPI_IMAGES":"NO","COMPILER_INDEX_STORE_ENABLE":"Default","COMPOSITE_SDK_DIRS":"/Users/denisnadey/Desktop/binanceapp/build/ios/CompositeSDKs","COMPRESS_PNG_FILES":"YES","CONFIGURATION":"Debug","CONFIGURATION_BUILD_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos","CONFIGURATION_TEMP_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos","CONTENTS_FOLDER_PATH":"Runner.app","COPYING_PRESERVES_HFS_DATA":"NO","COPY_HEADERS_RUN_UNIFDEF":"NO","COPY_PHASE_STRIP":"NO","COPY_RESOURCES_FROM_STATIC_FRAMEWORKS":"YES","CORRESPONDING_SIMULATOR_PLATFORM_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform","CORRESPONDING_SIMULATOR_PLATFORM_NAME":"iphonesimulator","CORRESPONDING_SIMULATOR_SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk","CORRESPONDING_SIMULATOR_SDK_NAME":"iphonesimulator14.5","CP":"/bin/cp","CREATE_INFOPLIST_SECTION_IN_BINARY":"NO","CURRENT_ARCH":"undefined_arch","CURRENT_PROJECT_VERSION":"1","CURRENT_VARIANT":"normal","DART_DEFINES":"RkxVVFRFUl9XRUJfQVVUT19ERVRFQ1Q9dHJ1ZQ==","DART_OBFUSCATION":"false","DEAD_CODE_STRIPPING":"YES","DEBUGGING_SYMBOLS":"YES","DEBUG_INFORMATION_FORMAT":"dwarf","DEFAULT_COMPILER":"com.apple.compilers.llvm.clang.1_0","DEFAULT_DEXT_INSTALL_PATH":"/System/Library/DriverExtensions","DEFAULT_KEXT_INSTALL_PATH":"/System/Library/Extensions","DEFINES_MODULE":"NO","DEPLOYMENT_LOCATION":"NO","DEPLOYMENT_POSTPROCESSING":"NO","DEPLOYMENT_TARGET_CLANG_ENV_NAME":"IPHONEOS_DEPLOYMENT_TARGET","DEPLOYMENT_TARGET_CLANG_FLAG_NAME":"miphoneos-version-min","DEPLOYMENT_TARGET_CLANG_FLAG_PREFIX":"-miphoneos-version-min=","DEPLOYMENT_TARGET_LD_ENV_NAME":"IPHONEOS_DEPLOYMENT_TARGET","DEPLOYMENT_TARGET_LD_FLAG_NAME":"ios_version_min","DEPLOYMENT_TARGET_SETTING_NAME":"IPHONEOS_DEPLOYMENT_TARGET","DEPLOYMENT_TARGET_SUGGESTED_VALUES":"9.0 9.2 10.0 10.2 11.0 11.2 11.4 12.1 12.3 13.0 13.2 13.4 13.6 14.1 14.3 14.5","DERIVED_FILES_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources","DERIVED_FILE_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources","DERIVED_SOURCES_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources","DERIVE_MACCATALYST_PRODUCT_BUNDLE_IDENTIFIER":"NO","DEVELOPER_APPLICATIONS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications","DEVELOPER_BIN_DIR":"/Applications/Xcode.app/Contents/Developer/usr/bin","DEVELOPER_DIR":"/Applications/Xcode.app/Contents/Developer","DEVELOPER_FRAMEWORKS_DIR":"/Applications/Xcode.app/Contents/Developer/Library/Frameworks","DEVELOPER_FRAMEWORKS_DIR_QUOTED":"/Applications/Xcode.app/Contents/Developer/Library/Frameworks","DEVELOPER_LIBRARY_DIR":"/Applications/Xcode.app/Contents/Developer/Library","DEVELOPER_SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs","DEVELOPER_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Tools","DEVELOPER_USR_DIR":"/Applications/Xcode.app/Contents/Developer/usr","DEVELOPMENT_LANGUAGE":"en","DOCUMENTATION_FOLDER_PATH":"Runner.app/en.lproj/Documentation","DONT_GENERATE_INFOPLIST_FILE":"NO","DO_HEADER_SCANNING_IN_JAM":"NO","DSTROOT":"/tmp/Runner.dst","DT_TOOLCHAIN_DIR":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain","DWARF_DSYM_FILE_NAME":"Runner.app.dSYM","DWARF_DSYM_FILE_SHOULD_ACCOMPANY_PRODUCT":"NO","DWARF_DSYM_FOLDER_PATH":"/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos","EFFECTIVE_PLATFORM_NAME":"-iphoneos","EMBEDDED_CONTENT_CONTAINS_SWIFT":"NO","EMBEDDED_PROFILE_NAME":"embedded.mobileprovision","EMBED_ASSET_PACKS_IN_PRODUCT_BUNDLE":"NO","ENABLE_BITCODE":"NO","ENABLE_DEFAULT_HEADER_SEARCH_PATHS":"YES","ENABLE_HARDENED_RUNTIME":"NO","ENABLE_HEADER_DEPENDENCIES":"YES","ENABLE_ON_DEMAND_RESOURCES":"YES","ENABLE_PREVIEWS":"NO","ENABLE_STRICT_OBJC_MSGSEND":"YES","ENABLE_TESTABILITY":"YES","ENABLE_TESTING_SEARCH_PATHS":"NO","ENTITLEMENTS_ALLOWED":"YES","ENTITLEMENTS_DESTINATION":"Signature","ENTITLEMENTS_REQUIRED":"YES","EXCLUDED_INSTALLSRC_SUBDIRECTORY_PATTERNS":".DS_Store .svn .git .hg CVS","EXCLUDED_RECURSIVE_SEARCH_PATH_SUBDIRECTORIES":"*.nib *.lproj *.framework *.gch *.xcode* *.xcassets (*) .DS_Store CVS .svn .git .hg *.pbproj *.pbxproj","EXECUTABLES_FOLDER_PATH":"Runner.app/Executables","EXECUTABLE_FOLDER_PATH":"Runner.app","EXECUTABLE_NAME":"Runner","EXECUTABLE_PATH":"Runner.app/Runner","FILE_LIST":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects/LinkFileList","FIXED_FILES_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/FixedFiles","FLUTTER_APPLICATION_PATH":"/Users/denisnadey/Desktop/binanceapp","FLUTTER_BUILD_DIR":"build","FLUTTER_BUILD_NAME":"1.0.0","FLUTTER_BUILD_NUMBER":"1","FLUTTER_ROOT":"/Users/denisnadey/development/flutter","FLUTTER_TARGET":"/Users/denisnadey/Desktop/binanceapp/lib/main.dart","FRAMEWORKS_FOLDER_PATH":"Runner.app/Frameworks","FRAMEWORK_FLAG_PREFIX":"-framework","FRAMEWORK_SEARCH_PATHS":"/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos ","FRAMEWORK_VERSION":"A","FULL_PRODUCT_NAME":"Runner.app","GCC3_VERSION":"3.3","GCC_C_LANGUAGE_STANDARD":"gnu99","GCC_DYNAMIC_NO_PIC":"NO","GCC_INLINES_ARE_PRIVATE_EXTERN":"YES","GCC_NO_COMMON_BLOCKS":"YES","GCC_OPTIMIZATION_LEVEL":"0","GCC_PFE_FILE_C_DIALECTS":"c objective-c c++ objective-c++","GCC_PREPROCESSOR_DEFINITIONS":"DEBUG=1 ","GCC_SYMBOLS_PRIVATE_EXTERN":"NO","GCC_THUMB_SUPPORT":"YES","GCC_TREAT_WARNINGS_AS_ERRORS":"NO","GCC_VERSION":"com.apple.compilers.llvm.clang.1_0","GCC_VERSION_IDENTIFIER":"com_apple_compilers_llvm_clang_1_0","GCC_WARN_64_TO_32_BIT_CONVERSION":"YES","GCC_WARN_ABOUT_RETURN_TYPE":"YES_ERROR","GCC_WARN_UNDECLARED_SELECTOR":"YES","GCC_WARN_UNINITIALIZED_AUTOS":"YES_AGGRESSIVE","GCC_WARN_UNUSED_FUNCTION":"YES","GCC_WARN_UNUSED_VARIABLE":"YES","GENERATED_MODULEMAP_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/GeneratedModuleMaps-iphoneos","GENERATE_MASTER_OBJECT_FILE":"NO","GENERATE_PKGINFO_FILE":"YES","GENERATE_PROFILING_CODE":"NO","GENERATE_TEXT_BASED_STUBS":"NO","GID":"20","GROUP":"staff","HEADERMAP_INCLUDES_FLAT_ENTRIES_FOR_TARGET_BEING_BUILT":"YES","HEADERMAP_INCLUDES_FRAMEWORK_ENTRIES_FOR_ALL_PRODUCT_TYPES":"YES","HEADERMAP_INCLUDES_NONPUBLIC_NONPRIVATE_HEADERS":"YES","HEADERMAP_INCLUDES_PROJECT_HEADERS":"YES","HEADERMAP_USES_FRAMEWORK_PREFIX_ENTRIES":"YES","HEADERMAP_USES_VFS":"NO","HEADER_SEARCH_PATHS":"/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/include ","HIDE_BITCODE_SYMBOLS":"YES","HOME":"/Users/denisnadey","ICONV":"/usr/bin/iconv","INFOPLIST_EXPAND_BUILD_SETTINGS":"YES","INFOPLIST_FILE":"Runner/Info.plist","INFOPLIST_OUTPUT_FORMAT":"binary","INFOPLIST_PATH":"Runner.app/Info.plist","INFOPLIST_PREPROCESS":"NO","INFOSTRINGS_PATH":"Runner.app/en.lproj/InfoPlist.strings","INLINE_PRIVATE_FRAMEWORKS":"NO","INSTALLHDRS_COPY_PHASE":"NO","INSTALLHDRS_SCRIPT_PHASE":"NO","INSTALL_DIR":"/tmp/Runner.dst/Applications","INSTALL_GROUP":"staff","INSTALL_MODE_FLAG":"u+w,go-w,a+rX","INSTALL_OWNER":"denisnadey","INSTALL_PATH":"/Applications","INSTALL_ROOT":"/tmp/Runner.dst","IPHONEOS_DEPLOYMENT_TARGET":"9.0","JAVAC_DEFAULT_FLAGS":"-J-Xms64m -J-XX:NewSize=4M -J-Dfile.encoding=UTF8","JAVA_APP_STUB":"/System/Library/Frameworks/JavaVM.framework/Resources/MacOS/JavaApplicationStub","JAVA_ARCHIVE_CLASSES":"YES","JAVA_ARCHIVE_TYPE":"JAR","JAVA_COMPILER":"/usr/bin/javac","JAVA_FOLDER_PATH":"Runner.app/Java","JAVA_FRAMEWORK_RESOURCES_DIRS":"Resources","JAVA_JAR_FLAGS":"cv","JAVA_SOURCE_SUBDIR":".","JAVA_USE_DEPENDENCIES":"YES","JAVA_ZIP_FLAGS":"-urg","JIKES_DEFAULT_FLAGS":"+E +OLDCSO","KASAN_DEFAULT_CFLAGS":"-DKASAN=1 -fsanitize=address -mllvm -asan-globals-live-support -mllvm -asan-force-dynamic-shadow","KEEP_PRIVATE_EXTERNS":"NO","LD_DEPENDENCY_INFO_FILE":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/undefined_arch/Runner_dependency_info.dat","LD_GENERATE_MAP_FILE":"NO","LD_MAP_FILE_PATH":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-LinkMap-normal-undefined_arch.txt","LD_NO_PIE":"NO","LD_QUOTE_LINKER_ARGUMENTS_FOR_COMPILER_DRIVER":"YES","LD_RUNPATH_SEARCH_PATHS":" @executable_path/Frameworks","LEGACY_DEVELOPER_DIR":"/Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer","LEX":"lex","LIBRARY_DEXT_INSTALL_PATH":"/Library/DriverExtensions","LIBRARY_FLAG_NOSPACE":"YES","LIBRARY_FLAG_PREFIX":"-l","LIBRARY_KEXT_INSTALL_PATH":"/Library/Extensions","LIBRARY_SEARCH_PATHS":"/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos ","LINKER_DISPLAYS_MANGLED_NAMES":"NO","LINK_FILE_LIST_normal_arm64":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.LinkFileList","LINK_WITH_STANDARD_LIBRARIES":"YES","LLVM_TARGET_TRIPLE_OS_VERSION":"ios9.0","LLVM_TARGET_TRIPLE_VENDOR":"apple","LOCALIZATION_EXPORT_SUPPORTED":"YES","LOCALIZED_RESOURCES_FOLDER_PATH":"Runner.app/en.lproj","LOCALIZED_STRING_MACRO_NAMES":"NSLocalizedString CFCopyLocalizedString","LOCALIZED_STRING_SWIFTUI_SUPPORT":"YES","LOCAL_ADMIN_APPS_DIR":"/Applications/Utilities","LOCAL_APPS_DIR":"/Applications","LOCAL_DEVELOPER_DIR":"/Library/Developer","LOCAL_LIBRARY_DIR":"/Library","LOCROOT":"/Users/denisnadey/Desktop/binanceapp/ios","LOCSYMROOT":"/Users/denisnadey/Desktop/binanceapp/ios","MACH_O_TYPE":"mh_execute","MAC_OS_X_PRODUCT_BUILD_VERSION":"20D91","MAC_OS_X_VERSION_ACTUAL":"110203","MAC_OS_X_VERSION_MAJOR":"110000","MAC_OS_X_VERSION_MINOR":"110200","METAL_LIBRARY_FILE_BASE":"default","METAL_LIBRARY_OUTPUT_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app","MODULES_FOLDER_PATH":"Runner.app/Modules","MODULE_CACHE_DIR":"/Users/denisnadey/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","MTL_ENABLE_DEBUG_INFO":"YES","NATIVE_ARCH":"armv7","NATIVE_ARCH_32_BIT":"arm","NATIVE_ARCH_64_BIT":"arm64","NATIVE_ARCH_ACTUAL":"arm64","NO_COMMON":"YES","OBJECT_FILE_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects","OBJECT_FILE_DIR_normal":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal","OBJROOT":"/Users/denisnadey/Desktop/binanceapp/build/ios","ONLY_ACTIVE_ARCH":"YES","OS":"MACOS","OSAC":"/usr/bin/osacompile","PACKAGE_CONFIG":"/Users/denisnadey/Desktop/binanceapp/.dart_tool/package_config.json","PACKAGE_TYPE":"com.apple.package-type.wrapper.application","PASCAL_STRINGS":"YES","PATH":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/libexec:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/local/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin","PATH_PREFIXES_EXCLUDED_FROM_HEADER_DEPENDENCIES":"/usr/include /usr/local/include /System/Library/Frameworks /System/Library/PrivateFrameworks /Applications/Xcode.app/Contents/Developer/Headers /Applications/Xcode.app/Contents/Developer/SDKs /Applications/Xcode.app/Contents/Developer/Platforms","PBDEVELOPMENTPLIST_PATH":"Runner.app/pbdevelopment.plist","PER_ARCH_OBJECT_FILE_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/undefined_arch","PER_VARIANT_OBJECT_FILE_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal","PKGINFO_FILE_PATH":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/PkgInfo","PKGINFO_PATH":"Runner.app/PkgInfo","PLATFORM_DEVELOPER_APPLICATIONS_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Applications","PLATFORM_DEVELOPER_BIN_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin","PLATFORM_DEVELOPER_LIBRARY_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library","PLATFORM_DEVELOPER_SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs","PLATFORM_DEVELOPER_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Tools","PLATFORM_DEVELOPER_USR_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr","PLATFORM_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform","PLATFORM_DISPLAY_NAME":"iOS","PLATFORM_FAMILY_NAME":"iOS","PLATFORM_NAME":"iphoneos","PLATFORM_PREFERRED_ARCH":"arm64","PLATFORM_PRODUCT_BUILD_VERSION":"18E182","PLIST_FILE_OUTPUT_FORMAT":"binary","PLUGINS_FOLDER_PATH":"Runner.app/PlugIns","PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR":"YES","PRECOMP_DESTINATION_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/PrefixHeaders","PRESERVE_DEAD_CODE_INITS_AND_TERMS":"NO","PRIVATE_HEADERS_FOLDER_PATH":"Runner.app/PrivateHeaders","PRODUCT_BUNDLE_IDENTIFIER":"com.example.binanceapp","PRODUCT_BUNDLE_PACKAGE_TYPE":"APPL","PRODUCT_MODULE_NAME":"Runner","PRODUCT_NAME":"Runner","PRODUCT_SETTINGS_PATH":"/Users/denisnadey/Desktop/binanceapp/ios/Runner/Info.plist","PRODUCT_TYPE":"com.apple.product-type.application","PROFILING_CODE":"NO","PROJECT":"Runner","PROJECT_DERIVED_FILE_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/DerivedSources","PROJECT_DIR":"/Users/denisnadey/Desktop/binanceapp/ios","PROJECT_FILE_PATH":"/Users/denisnadey/Desktop/binanceapp/ios/Runner.xcodeproj","PROJECT_NAME":"Runner","PROJECT_TEMP_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build","PROJECT_TEMP_ROOT":"/Users/denisnadey/Desktop/binanceapp/build/ios","PROVISIONING_PROFILE_REQUIRED":"YES","PUBLIC_HEADERS_FOLDER_PATH":"Runner.app/Headers","RECURSIVE_SEARCH_PATHS_FOLLOW_SYMLINKS":"YES","REMOVE_CVS_FROM_RESOURCES":"YES","REMOVE_GIT_FROM_RESOURCES":"YES","REMOVE_HEADERS_FROM_EMBEDDED_BUNDLES":"YES","REMOVE_HG_FROM_RESOURCES":"YES","REMOVE_SVN_FROM_RESOURCES":"YES","RESOURCE_RULES_REQUIRED":"YES","REZ_COLLECTOR_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/ResourceManagerResources","REZ_OBJECTS_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/ResourceManagerResources/Objects","REZ_SEARCH_PATHS":"/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos ","SCAN_ALL_SOURCE_FILES_FOR_INCLUDES":"NO","SCRIPTS_FOLDER_PATH":"Runner.app/Scripts","SCRIPT_INPUT_FILE_COUNT":"0","SCRIPT_INPUT_FILE_LIST_COUNT":"0","SCRIPT_OUTPUT_FILE_COUNT":"0","SCRIPT_OUTPUT_FILE_LIST_COUNT":"0","SDKROOT":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.5.sdk","SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.5.sdk","SDK_DIR_iphoneos":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.5.sdk","SDK_DIR_iphoneos14_5":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.5.sdk","SDK_NAME":"iphoneos14.5","SDK_NAMES":"iphoneos14.5","SDK_PRODUCT_BUILD_VERSION":"18E182","SDK_VERSION":"14.5","SDK_VERSION_ACTUAL":"140500","SDK_VERSION_MAJOR":"140000","SDK_VERSION_MINOR":"140500","SED":"/usr/bin/sed","SEPARATE_STRIP":"NO","SEPARATE_SYMBOL_EDIT":"NO","SET_DIR_MODE_OWNER_GROUP":"YES","SET_FILE_MODE_OWNER_GROUP":"NO","SHALLOW_BUNDLE":"YES","SHARED_DERIVED_FILE_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/DerivedSources","SHARED_FRAMEWORKS_FOLDER_PATH":"Runner.app/SharedFrameworks","SHARED_PRECOMPS_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/SharedPrecompiledHeaders","SHARED_SUPPORT_FOLDER_PATH":"Runner.app/SharedSupport","SKIP_INSTALL":"NO","SOURCE_ROOT":"/Users/denisnadey/Desktop/binanceapp/ios","SRCROOT":"/Users/denisnadey/Desktop/binanceapp/ios","STRINGS_FILE_INFOPLIST_RENAME":"YES","STRINGS_FILE_OUTPUT_ENCODING":"binary","STRIP_BITCODE_FROM_COPIED_FILES":"YES","STRIP_INSTALLED_PRODUCT":"YES","STRIP_STYLE":"all","STRIP_SWIFT_SYMBOLS":"YES","SUPPORTED_DEVICE_FAMILIES":"1,2","SUPPORTED_PLATFORMS":"iphoneos iphonesimulator","SUPPORTS_MACCATALYST":"NO","SUPPORTS_MAC_DESIGNED_FOR_IPHONE_IPAD":"YES","SUPPORTS_TEXT_BASED_API":"NO","SWIFT_OBJC_BRIDGING_HEADER":"Runner/Runner-Bridging-Header.h","SWIFT_OPTIMIZATION_LEVEL":"-Onone","SWIFT_PLATFORM_TARGET_PREFIX":"ios","SWIFT_RESPONSE_FILE_PATH_normal_arm64":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.SwiftFileList","SWIFT_VERSION":"5.0","SYMROOT":"/Users/denisnadey/Desktop/binanceapp/build/ios","SYSTEM_ADMIN_APPS_DIR":"/Applications/Utilities","SYSTEM_APPS_DIR":"/Applications","SYSTEM_CORE_SERVICES_DIR":"/System/Library/CoreServices","SYSTEM_DEMOS_DIR":"/Applications/Extras","SYSTEM_DEVELOPER_APPS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications","SYSTEM_DEVELOPER_BIN_DIR":"/Applications/Xcode.app/Contents/Developer/usr/bin","SYSTEM_DEVELOPER_DEMOS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Utilities/Built Examples","SYSTEM_DEVELOPER_DIR":"/Applications/Xcode.app/Contents/Developer","SYSTEM_DEVELOPER_DOC_DIR":"/Applications/Xcode.app/Contents/Developer/ADC Reference Library","SYSTEM_DEVELOPER_GRAPHICS_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Graphics Tools","SYSTEM_DEVELOPER_JAVA_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Java Tools","SYSTEM_DEVELOPER_PERFORMANCE_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Performance Tools","SYSTEM_DEVELOPER_RELEASENOTES_DIR":"/Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes","SYSTEM_DEVELOPER_TOOLS":"/Applications/Xcode.app/Contents/Developer/Tools","SYSTEM_DEVELOPER_TOOLS_DOC_DIR":"/Applications/Xcode.app/Contents/Developer/ADC Reference Library/documentation/DeveloperTools","SYSTEM_DEVELOPER_TOOLS_RELEASENOTES_DIR":"/Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes/DeveloperTools","SYSTEM_DEVELOPER_USR_DIR":"/Applications/Xcode.app/Contents/Developer/usr","SYSTEM_DEVELOPER_UTILITIES_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Utilities","SYSTEM_DEXT_INSTALL_PATH":"/System/Library/DriverExtensions","SYSTEM_DOCUMENTATION_DIR":"/Library/Documentation","SYSTEM_KEXT_INSTALL_PATH":"/System/Library/Extensions","SYSTEM_LIBRARY_DIR":"/System/Library","TAPI_VERIFY_MODE":"ErrorsOnly","TARGETED_DEVICE_FAMILY":"1,2","TARGETNAME":"Runner","TARGET_BUILD_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos","TARGET_DEVICE_IDENTIFIER":"14ea1e3ed325a580fb35bcb957020b43676e0a94","TARGET_DEVICE_MODEL":"iPhone8,1","TARGET_DEVICE_OS_VERSION":"14.5","TARGET_DEVICE_PLATFORM_NAME":"iphoneos","TARGET_NAME":"Runner","TARGET_TEMP_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build","TEMP_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build","TEMP_FILES_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build","TEMP_FILE_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build","TEMP_ROOT":"/Users/denisnadey/Desktop/binanceapp/build/ios","TEST_FRAMEWORK_SEARCH_PATHS":" /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.5.sdk/Developer/Library/Frameworks","TEST_LIBRARY_SEARCH_PATHS":" /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib","TOOLCHAINS":"com.apple.dt.toolchain.XcodeDefault","TOOLCHAIN_DIR":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain","TRACK_WIDGET_CREATION":"true","TREAT_MISSING_BASELINES_AS_TEST_FAILURES":"NO","TREE_SHAKE_ICONS":"false","UID":"501","UNLOCALIZED_RESOURCES_FOLDER_PATH":"Runner.app","UNSTRIPPED_PRODUCT":"NO","USER":"denisnadey","USER_APPS_DIR":"/Users/denisnadey/Applications","USER_LIBRARY_DIR":"/Users/denisnadey/Library","USE_DYNAMIC_NO_PIC":"YES","USE_HEADERMAP":"YES","USE_HEADER_SYMLINKS":"NO","USE_LLVM_TARGET_TRIPLES":"YES","USE_LLVM_TARGET_TRIPLES_FOR_CLANG":"YES","USE_LLVM_TARGET_TRIPLES_FOR_LD":"YES","USE_LLVM_TARGET_TRIPLES_FOR_TAPI":"YES","VALIDATE_DEVELOPMENT_ASSET_PATHS":"YES_ERROR","VALIDATE_PRODUCT":"NO","VALIDATE_WORKSPACE":"YES_ERROR","VALID_ARCHS":"arm64 arm64e armv7 armv7s","VERBOSE_PBXCP":"NO","VERSIONING_SYSTEM":"apple-generic","VERSIONPLIST_PATH":"Runner.app/version.plist","VERSION_INFO_BUILDER":"denisnadey","VERSION_INFO_FILE":"Runner_vers.c","VERSION_INFO_STRING":"\"@(#)PROGRAM:Runner PROJECT:Runner-1\"","WRAPPER_EXTENSION":"app","WRAPPER_NAME":"Runner.app","WRAPPER_SUFFIX":".app","WRAP_ASSET_PACKS_IN_SEPARATE_DIRECTORIES":"NO","XCODE_APP_SUPPORT_DIR":"/Applications/Xcode.app/Contents/Developer/Library/Xcode","XCODE_PRODUCT_BUILD_VERSION":"12E262","XCODE_VERSION_ACTUAL":"1250","XCODE_VERSION_MAJOR":"1200","XCODE_VERSION_MINOR":"1250","XPCSERVICES_FOLDER_PATH":"Runner.app/XPCServices","YACC":"yacc","arch":"undefined_arch","variant":"normal"},"allow-missing-inputs":true,"always-out-of-date":true,"working-directory":"/Users/denisnadey/Desktop/binanceapp/ios","control-enabled":false,"signature":"4cf3792ff8312dd75a4af57e27bd664b"} + "target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49-:Debug:PhaseScriptExecution Thin Binary /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh": {"tool":"shell","description":"PhaseScriptExecution Thin Binary /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh","inputs":["/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh","",""],"outputs":[""],"args":["/bin/sh","-c","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh"],"env":{"ACTION":"build","AD_HOC_CODE_SIGNING_ALLOWED":"NO","ALTERNATE_GROUP":"staff","ALTERNATE_MODE":"u+w,go-w,a+rX","ALTERNATE_OWNER":"denisnadey","ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES":"NO","ALWAYS_SEARCH_USER_PATHS":"NO","ALWAYS_USE_SEPARATE_HEADERMAPS":"NO","APPLE_INTERNAL_DEVELOPER_DIR":"/AppleInternal/Developer","APPLE_INTERNAL_DIR":"/AppleInternal","APPLE_INTERNAL_DOCUMENTATION_DIR":"/AppleInternal/Documentation","APPLE_INTERNAL_LIBRARY_DIR":"/AppleInternal/Library","APPLE_INTERNAL_TOOLS":"/AppleInternal/Developer/Tools","APPLICATION_EXTENSION_API_ONLY":"NO","APPLY_RULES_IN_COPY_FILES":"NO","APPLY_RULES_IN_COPY_HEADERS":"NO","ARCHS":"arm64","ARCHS_STANDARD":"arm64 armv7","ARCHS_STANDARD_32_64_BIT":"armv7 arm64","ARCHS_STANDARD_32_BIT":"armv7","ARCHS_STANDARD_64_BIT":"arm64","ARCHS_STANDARD_INCLUDING_64_BIT":"arm64 armv7","ARCHS_UNIVERSAL_IPHONE_OS":"armv7 arm64","ASSETCATALOG_COMPILER_APPICON_NAME":"AppIcon","ASSETCATALOG_FILTER_FOR_DEVICE_MODEL":"iPhone8,1","ASSETCATALOG_FILTER_FOR_DEVICE_OS_VERSION":"14.5","AVAILABLE_PLATFORMS":"appletvos appletvsimulator iphoneos iphonesimulator macosx watchos watchsimulator","BITCODE_GENERATION_MODE":"marker","BUILD_ACTIVE_RESOURCES_ONLY":"YES","BUILD_COMPONENTS":"headers build","BUILD_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios","BUILD_LIBRARY_FOR_DISTRIBUTION":"NO","BUILD_ROOT":"/Users/denisnadey/Desktop/binanceapp/build/ios","BUILD_STYLE":"","BUILD_VARIANTS":"normal","BUILT_PRODUCTS_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos","BUNDLE_CONTENTS_FOLDER_PATH_deep":"Contents/","BUNDLE_EXECUTABLE_FOLDER_NAME_deep":"MacOS","BUNDLE_FORMAT":"shallow","BUNDLE_FRAMEWORKS_FOLDER_PATH":"Frameworks","BUNDLE_PLUGINS_FOLDER_PATH":"PlugIns","BUNDLE_PRIVATE_HEADERS_FOLDER_PATH":"PrivateHeaders","BUNDLE_PUBLIC_HEADERS_FOLDER_PATH":"Headers","CACHE_ROOT":"/var/folders/kq/kc3pf_ns62n6hc7n74119qf00000gn/C/com.apple.DeveloperTools/12.5-12E262/Xcode","CCHROOT":"/var/folders/kq/kc3pf_ns62n6hc7n74119qf00000gn/C/com.apple.DeveloperTools/12.5-12E262/Xcode","CHMOD":"/bin/chmod","CHOWN":"/usr/sbin/chown","CLANG_ANALYZER_NONNULL":"YES","CLANG_CXX_LANGUAGE_STANDARD":"gnu++0x","CLANG_CXX_LIBRARY":"libc++","CLANG_ENABLE_MODULES":"YES","CLANG_ENABLE_OBJC_ARC":"YES","CLANG_MODULES_BUILD_SESSION_FILE":"/Users/denisnadey/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING":"YES","CLANG_WARN_BOOL_CONVERSION":"YES","CLANG_WARN_COMMA":"YES","CLANG_WARN_CONSTANT_CONVERSION":"YES","CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS":"YES","CLANG_WARN_DIRECT_OBJC_ISA_USAGE":"YES_ERROR","CLANG_WARN_EMPTY_BODY":"YES","CLANG_WARN_ENUM_CONVERSION":"YES","CLANG_WARN_INFINITE_RECURSION":"YES","CLANG_WARN_INT_CONVERSION":"YES","CLANG_WARN_NON_LITERAL_NULL_CONVERSION":"YES","CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF":"YES","CLANG_WARN_OBJC_LITERAL_CONVERSION":"YES","CLANG_WARN_OBJC_ROOT_CLASS":"YES_ERROR","CLANG_WARN_RANGE_LOOP_ANALYSIS":"YES","CLANG_WARN_STRICT_PROTOTYPES":"YES","CLANG_WARN_SUSPICIOUS_MOVE":"YES","CLANG_WARN_UNREACHABLE_CODE":"YES","CLANG_WARN__DUPLICATE_METHOD_MATCH":"YES","CLASS_FILE_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/JavaClasses","CLEAN_PRECOMPS":"YES","CLONE_HEADERS":"NO","COCOAPODS_PARALLEL_CODE_SIGN":"true","CODESIGNING_FOLDER_PATH":"/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app","CODE_SIGNING_ALLOWED":"YES","CODE_SIGNING_REQUIRED":"YES","CODE_SIGN_CONTEXT_CLASS":"XCiPhoneOSCodeSignContext","CODE_SIGN_IDENTITY":"iPhone Developer","CODE_SIGN_INJECT_BASE_ENTITLEMENTS":"YES","COLOR_DIAGNOSTICS":"NO","COMBINE_HIDPI_IMAGES":"NO","COMPILER_INDEX_STORE_ENABLE":"Default","COMPOSITE_SDK_DIRS":"/Users/denisnadey/Desktop/binanceapp/build/ios/CompositeSDKs","COMPRESS_PNG_FILES":"YES","CONFIGURATION":"Debug","CONFIGURATION_BUILD_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos","CONFIGURATION_TEMP_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos","CONTENTS_FOLDER_PATH":"Runner.app","COPYING_PRESERVES_HFS_DATA":"NO","COPY_HEADERS_RUN_UNIFDEF":"NO","COPY_PHASE_STRIP":"NO","COPY_RESOURCES_FROM_STATIC_FRAMEWORKS":"YES","CORRESPONDING_SIMULATOR_PLATFORM_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform","CORRESPONDING_SIMULATOR_PLATFORM_NAME":"iphonesimulator","CORRESPONDING_SIMULATOR_SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk","CORRESPONDING_SIMULATOR_SDK_NAME":"iphonesimulator14.5","CP":"/bin/cp","CREATE_INFOPLIST_SECTION_IN_BINARY":"NO","CURRENT_ARCH":"undefined_arch","CURRENT_PROJECT_VERSION":"1","CURRENT_VARIANT":"normal","DART_DEFINES":"RkxVVFRFUl9XRUJfQVVUT19ERVRFQ1Q9dHJ1ZQ==","DART_OBFUSCATION":"false","DEAD_CODE_STRIPPING":"YES","DEBUGGING_SYMBOLS":"YES","DEBUG_INFORMATION_FORMAT":"dwarf","DEFAULT_COMPILER":"com.apple.compilers.llvm.clang.1_0","DEFAULT_DEXT_INSTALL_PATH":"/System/Library/DriverExtensions","DEFAULT_KEXT_INSTALL_PATH":"/System/Library/Extensions","DEFINES_MODULE":"NO","DEPLOYMENT_LOCATION":"NO","DEPLOYMENT_POSTPROCESSING":"NO","DEPLOYMENT_TARGET_CLANG_ENV_NAME":"IPHONEOS_DEPLOYMENT_TARGET","DEPLOYMENT_TARGET_CLANG_FLAG_NAME":"miphoneos-version-min","DEPLOYMENT_TARGET_CLANG_FLAG_PREFIX":"-miphoneos-version-min=","DEPLOYMENT_TARGET_LD_ENV_NAME":"IPHONEOS_DEPLOYMENT_TARGET","DEPLOYMENT_TARGET_LD_FLAG_NAME":"ios_version_min","DEPLOYMENT_TARGET_SETTING_NAME":"IPHONEOS_DEPLOYMENT_TARGET","DEPLOYMENT_TARGET_SUGGESTED_VALUES":"9.0 9.2 10.0 10.2 11.0 11.2 11.4 12.1 12.3 13.0 13.2 13.4 13.6 14.1 14.3 14.5","DERIVED_FILES_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources","DERIVED_FILE_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources","DERIVED_SOURCES_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources","DERIVE_MACCATALYST_PRODUCT_BUNDLE_IDENTIFIER":"NO","DEVELOPER_APPLICATIONS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications","DEVELOPER_BIN_DIR":"/Applications/Xcode.app/Contents/Developer/usr/bin","DEVELOPER_DIR":"/Applications/Xcode.app/Contents/Developer","DEVELOPER_FRAMEWORKS_DIR":"/Applications/Xcode.app/Contents/Developer/Library/Frameworks","DEVELOPER_FRAMEWORKS_DIR_QUOTED":"/Applications/Xcode.app/Contents/Developer/Library/Frameworks","DEVELOPER_LIBRARY_DIR":"/Applications/Xcode.app/Contents/Developer/Library","DEVELOPER_SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs","DEVELOPER_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Tools","DEVELOPER_USR_DIR":"/Applications/Xcode.app/Contents/Developer/usr","DEVELOPMENT_LANGUAGE":"en","DOCUMENTATION_FOLDER_PATH":"Runner.app/en.lproj/Documentation","DONT_GENERATE_INFOPLIST_FILE":"NO","DO_HEADER_SCANNING_IN_JAM":"NO","DSTROOT":"/tmp/Runner.dst","DT_TOOLCHAIN_DIR":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain","DWARF_DSYM_FILE_NAME":"Runner.app.dSYM","DWARF_DSYM_FILE_SHOULD_ACCOMPANY_PRODUCT":"NO","DWARF_DSYM_FOLDER_PATH":"/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos","EFFECTIVE_PLATFORM_NAME":"-iphoneos","EMBEDDED_CONTENT_CONTAINS_SWIFT":"NO","EMBEDDED_PROFILE_NAME":"embedded.mobileprovision","EMBED_ASSET_PACKS_IN_PRODUCT_BUNDLE":"NO","ENABLE_BITCODE":"NO","ENABLE_DEFAULT_HEADER_SEARCH_PATHS":"YES","ENABLE_HARDENED_RUNTIME":"NO","ENABLE_HEADER_DEPENDENCIES":"YES","ENABLE_ON_DEMAND_RESOURCES":"YES","ENABLE_PREVIEWS":"NO","ENABLE_STRICT_OBJC_MSGSEND":"YES","ENABLE_TESTABILITY":"YES","ENABLE_TESTING_SEARCH_PATHS":"NO","ENTITLEMENTS_ALLOWED":"YES","ENTITLEMENTS_DESTINATION":"Signature","ENTITLEMENTS_REQUIRED":"YES","EXCLUDED_INSTALLSRC_SUBDIRECTORY_PATTERNS":".DS_Store .svn .git .hg CVS","EXCLUDED_RECURSIVE_SEARCH_PATH_SUBDIRECTORIES":"*.nib *.lproj *.framework *.gch *.xcode* *.xcassets (*) .DS_Store CVS .svn .git .hg *.pbproj *.pbxproj","EXECUTABLES_FOLDER_PATH":"Runner.app/Executables","EXECUTABLE_FOLDER_PATH":"Runner.app","EXECUTABLE_NAME":"Runner","EXECUTABLE_PATH":"Runner.app/Runner","FILE_LIST":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects/LinkFileList","FIXED_FILES_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/FixedFiles","FLUTTER_APPLICATION_PATH":"/Users/denisnadey/Desktop/binanceapp","FLUTTER_BUILD_DIR":"build","FLUTTER_BUILD_NAME":"1.0.0","FLUTTER_BUILD_NUMBER":"1","FLUTTER_ROOT":"/Users/denisnadey/development/flutter","FLUTTER_TARGET":"/Users/denisnadey/Desktop/binanceapp/lib/main.dart","FRAMEWORKS_FOLDER_PATH":"Runner.app/Frameworks","FRAMEWORK_FLAG_PREFIX":"-framework","FRAMEWORK_SEARCH_PATHS":"/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos ","FRAMEWORK_VERSION":"A","FULL_PRODUCT_NAME":"Runner.app","GCC3_VERSION":"3.3","GCC_C_LANGUAGE_STANDARD":"gnu99","GCC_DYNAMIC_NO_PIC":"NO","GCC_INLINES_ARE_PRIVATE_EXTERN":"YES","GCC_NO_COMMON_BLOCKS":"YES","GCC_OPTIMIZATION_LEVEL":"0","GCC_PFE_FILE_C_DIALECTS":"c objective-c c++ objective-c++","GCC_PREPROCESSOR_DEFINITIONS":"DEBUG=1 ","GCC_SYMBOLS_PRIVATE_EXTERN":"NO","GCC_THUMB_SUPPORT":"YES","GCC_TREAT_WARNINGS_AS_ERRORS":"NO","GCC_VERSION":"com.apple.compilers.llvm.clang.1_0","GCC_VERSION_IDENTIFIER":"com_apple_compilers_llvm_clang_1_0","GCC_WARN_64_TO_32_BIT_CONVERSION":"YES","GCC_WARN_ABOUT_RETURN_TYPE":"YES_ERROR","GCC_WARN_UNDECLARED_SELECTOR":"YES","GCC_WARN_UNINITIALIZED_AUTOS":"YES_AGGRESSIVE","GCC_WARN_UNUSED_FUNCTION":"YES","GCC_WARN_UNUSED_VARIABLE":"YES","GENERATED_MODULEMAP_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/GeneratedModuleMaps-iphoneos","GENERATE_MASTER_OBJECT_FILE":"NO","GENERATE_PKGINFO_FILE":"YES","GENERATE_PROFILING_CODE":"NO","GENERATE_TEXT_BASED_STUBS":"NO","GID":"20","GROUP":"staff","HEADERMAP_INCLUDES_FLAT_ENTRIES_FOR_TARGET_BEING_BUILT":"YES","HEADERMAP_INCLUDES_FRAMEWORK_ENTRIES_FOR_ALL_PRODUCT_TYPES":"YES","HEADERMAP_INCLUDES_NONPUBLIC_NONPRIVATE_HEADERS":"YES","HEADERMAP_INCLUDES_PROJECT_HEADERS":"YES","HEADERMAP_USES_FRAMEWORK_PREFIX_ENTRIES":"YES","HEADERMAP_USES_VFS":"NO","HEADER_SEARCH_PATHS":"/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/include ","HIDE_BITCODE_SYMBOLS":"YES","HOME":"/Users/denisnadey","ICONV":"/usr/bin/iconv","INFOPLIST_EXPAND_BUILD_SETTINGS":"YES","INFOPLIST_FILE":"Runner/Info.plist","INFOPLIST_OUTPUT_FORMAT":"binary","INFOPLIST_PATH":"Runner.app/Info.plist","INFOPLIST_PREPROCESS":"NO","INFOSTRINGS_PATH":"Runner.app/en.lproj/InfoPlist.strings","INLINE_PRIVATE_FRAMEWORKS":"NO","INSTALLHDRS_COPY_PHASE":"NO","INSTALLHDRS_SCRIPT_PHASE":"NO","INSTALL_DIR":"/tmp/Runner.dst/Applications","INSTALL_GROUP":"staff","INSTALL_MODE_FLAG":"u+w,go-w,a+rX","INSTALL_OWNER":"denisnadey","INSTALL_PATH":"/Applications","INSTALL_ROOT":"/tmp/Runner.dst","IPHONEOS_DEPLOYMENT_TARGET":"9.0","JAVAC_DEFAULT_FLAGS":"-J-Xms64m -J-XX:NewSize=4M -J-Dfile.encoding=UTF8","JAVA_APP_STUB":"/System/Library/Frameworks/JavaVM.framework/Resources/MacOS/JavaApplicationStub","JAVA_ARCHIVE_CLASSES":"YES","JAVA_ARCHIVE_TYPE":"JAR","JAVA_COMPILER":"/usr/bin/javac","JAVA_FOLDER_PATH":"Runner.app/Java","JAVA_FRAMEWORK_RESOURCES_DIRS":"Resources","JAVA_JAR_FLAGS":"cv","JAVA_SOURCE_SUBDIR":".","JAVA_USE_DEPENDENCIES":"YES","JAVA_ZIP_FLAGS":"-urg","JIKES_DEFAULT_FLAGS":"+E +OLDCSO","KASAN_DEFAULT_CFLAGS":"-DKASAN=1 -fsanitize=address -mllvm -asan-globals-live-support -mllvm -asan-force-dynamic-shadow","KEEP_PRIVATE_EXTERNS":"NO","LD_DEPENDENCY_INFO_FILE":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/undefined_arch/Runner_dependency_info.dat","LD_GENERATE_MAP_FILE":"NO","LD_MAP_FILE_PATH":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-LinkMap-normal-undefined_arch.txt","LD_NO_PIE":"NO","LD_QUOTE_LINKER_ARGUMENTS_FOR_COMPILER_DRIVER":"YES","LD_RUNPATH_SEARCH_PATHS":" @executable_path/Frameworks","LEGACY_DEVELOPER_DIR":"/Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer","LEX":"lex","LIBRARY_DEXT_INSTALL_PATH":"/Library/DriverExtensions","LIBRARY_FLAG_NOSPACE":"YES","LIBRARY_FLAG_PREFIX":"-l","LIBRARY_KEXT_INSTALL_PATH":"/Library/Extensions","LIBRARY_SEARCH_PATHS":"/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos ","LINKER_DISPLAYS_MANGLED_NAMES":"NO","LINK_FILE_LIST_normal_arm64":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.LinkFileList","LINK_WITH_STANDARD_LIBRARIES":"YES","LLVM_TARGET_TRIPLE_OS_VERSION":"ios9.0","LLVM_TARGET_TRIPLE_VENDOR":"apple","LOCALIZATION_EXPORT_SUPPORTED":"YES","LOCALIZED_RESOURCES_FOLDER_PATH":"Runner.app/en.lproj","LOCALIZED_STRING_MACRO_NAMES":"NSLocalizedString CFCopyLocalizedString","LOCALIZED_STRING_SWIFTUI_SUPPORT":"YES","LOCAL_ADMIN_APPS_DIR":"/Applications/Utilities","LOCAL_APPS_DIR":"/Applications","LOCAL_DEVELOPER_DIR":"/Library/Developer","LOCAL_LIBRARY_DIR":"/Library","LOCROOT":"/Users/denisnadey/Desktop/binanceapp/ios","LOCSYMROOT":"/Users/denisnadey/Desktop/binanceapp/ios","MACH_O_TYPE":"mh_execute","MAC_OS_X_PRODUCT_BUILD_VERSION":"20D91","MAC_OS_X_VERSION_ACTUAL":"110203","MAC_OS_X_VERSION_MAJOR":"110000","MAC_OS_X_VERSION_MINOR":"110200","METAL_LIBRARY_FILE_BASE":"default","METAL_LIBRARY_OUTPUT_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app","MODULES_FOLDER_PATH":"Runner.app/Modules","MODULE_CACHE_DIR":"/Users/denisnadey/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","MTL_ENABLE_DEBUG_INFO":"YES","NATIVE_ARCH":"armv7","NATIVE_ARCH_32_BIT":"arm","NATIVE_ARCH_64_BIT":"arm64","NATIVE_ARCH_ACTUAL":"arm64","NO_COMMON":"YES","OBJECT_FILE_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects","OBJECT_FILE_DIR_normal":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal","OBJROOT":"/Users/denisnadey/Desktop/binanceapp/build/ios","ONLY_ACTIVE_ARCH":"YES","OS":"MACOS","OSAC":"/usr/bin/osacompile","PACKAGE_CONFIG":"/Users/denisnadey/Desktop/binanceapp/.dart_tool/package_config.json","PACKAGE_TYPE":"com.apple.package-type.wrapper.application","PASCAL_STRINGS":"YES","PATH":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/libexec:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/local/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin","PATH_PREFIXES_EXCLUDED_FROM_HEADER_DEPENDENCIES":"/usr/include /usr/local/include /System/Library/Frameworks /System/Library/PrivateFrameworks /Applications/Xcode.app/Contents/Developer/Headers /Applications/Xcode.app/Contents/Developer/SDKs /Applications/Xcode.app/Contents/Developer/Platforms","PBDEVELOPMENTPLIST_PATH":"Runner.app/pbdevelopment.plist","PER_ARCH_OBJECT_FILE_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/undefined_arch","PER_VARIANT_OBJECT_FILE_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal","PKGINFO_FILE_PATH":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/PkgInfo","PKGINFO_PATH":"Runner.app/PkgInfo","PLATFORM_DEVELOPER_APPLICATIONS_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Applications","PLATFORM_DEVELOPER_BIN_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin","PLATFORM_DEVELOPER_LIBRARY_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library","PLATFORM_DEVELOPER_SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs","PLATFORM_DEVELOPER_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Tools","PLATFORM_DEVELOPER_USR_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr","PLATFORM_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform","PLATFORM_DISPLAY_NAME":"iOS","PLATFORM_FAMILY_NAME":"iOS","PLATFORM_NAME":"iphoneos","PLATFORM_PREFERRED_ARCH":"arm64","PLATFORM_PRODUCT_BUILD_VERSION":"18E182","PLIST_FILE_OUTPUT_FORMAT":"binary","PLUGINS_FOLDER_PATH":"Runner.app/PlugIns","PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR":"YES","PRECOMP_DESTINATION_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/PrefixHeaders","PRESERVE_DEAD_CODE_INITS_AND_TERMS":"NO","PRIVATE_HEADERS_FOLDER_PATH":"Runner.app/PrivateHeaders","PRODUCT_BUNDLE_IDENTIFIER":"com.example.binanceapp","PRODUCT_BUNDLE_PACKAGE_TYPE":"APPL","PRODUCT_MODULE_NAME":"Runner","PRODUCT_NAME":"Runner","PRODUCT_SETTINGS_PATH":"/Users/denisnadey/Desktop/binanceapp/ios/Runner/Info.plist","PRODUCT_TYPE":"com.apple.product-type.application","PROFILING_CODE":"NO","PROJECT":"Runner","PROJECT_DERIVED_FILE_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/DerivedSources","PROJECT_DIR":"/Users/denisnadey/Desktop/binanceapp/ios","PROJECT_FILE_PATH":"/Users/denisnadey/Desktop/binanceapp/ios/Runner.xcodeproj","PROJECT_NAME":"Runner","PROJECT_TEMP_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build","PROJECT_TEMP_ROOT":"/Users/denisnadey/Desktop/binanceapp/build/ios","PROVISIONING_PROFILE_REQUIRED":"YES","PUBLIC_HEADERS_FOLDER_PATH":"Runner.app/Headers","RECURSIVE_SEARCH_PATHS_FOLLOW_SYMLINKS":"YES","REMOVE_CVS_FROM_RESOURCES":"YES","REMOVE_GIT_FROM_RESOURCES":"YES","REMOVE_HEADERS_FROM_EMBEDDED_BUNDLES":"YES","REMOVE_HG_FROM_RESOURCES":"YES","REMOVE_SVN_FROM_RESOURCES":"YES","RESOURCE_RULES_REQUIRED":"YES","REZ_COLLECTOR_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/ResourceManagerResources","REZ_OBJECTS_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/ResourceManagerResources/Objects","REZ_SEARCH_PATHS":"/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos ","SCAN_ALL_SOURCE_FILES_FOR_INCLUDES":"NO","SCRIPTS_FOLDER_PATH":"Runner.app/Scripts","SCRIPT_INPUT_FILE_COUNT":"0","SCRIPT_INPUT_FILE_LIST_COUNT":"0","SCRIPT_OUTPUT_FILE_COUNT":"0","SCRIPT_OUTPUT_FILE_LIST_COUNT":"0","SDKROOT":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.5.sdk","SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.5.sdk","SDK_DIR_iphoneos":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.5.sdk","SDK_DIR_iphoneos14_5":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.5.sdk","SDK_NAME":"iphoneos14.5","SDK_NAMES":"iphoneos14.5","SDK_PRODUCT_BUILD_VERSION":"18E182","SDK_VERSION":"14.5","SDK_VERSION_ACTUAL":"140500","SDK_VERSION_MAJOR":"140000","SDK_VERSION_MINOR":"140500","SED":"/usr/bin/sed","SEPARATE_STRIP":"NO","SEPARATE_SYMBOL_EDIT":"NO","SET_DIR_MODE_OWNER_GROUP":"YES","SET_FILE_MODE_OWNER_GROUP":"NO","SHALLOW_BUNDLE":"YES","SHARED_DERIVED_FILE_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/DerivedSources","SHARED_FRAMEWORKS_FOLDER_PATH":"Runner.app/SharedFrameworks","SHARED_PRECOMPS_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/SharedPrecompiledHeaders","SHARED_SUPPORT_FOLDER_PATH":"Runner.app/SharedSupport","SKIP_INSTALL":"NO","SOURCE_ROOT":"/Users/denisnadey/Desktop/binanceapp/ios","SRCROOT":"/Users/denisnadey/Desktop/binanceapp/ios","STRINGS_FILE_INFOPLIST_RENAME":"YES","STRINGS_FILE_OUTPUT_ENCODING":"binary","STRIP_BITCODE_FROM_COPIED_FILES":"YES","STRIP_INSTALLED_PRODUCT":"YES","STRIP_STYLE":"all","STRIP_SWIFT_SYMBOLS":"YES","SUPPORTED_DEVICE_FAMILIES":"1,2","SUPPORTED_PLATFORMS":"iphoneos iphonesimulator","SUPPORTS_MACCATALYST":"NO","SUPPORTS_MAC_DESIGNED_FOR_IPHONE_IPAD":"YES","SUPPORTS_TEXT_BASED_API":"NO","SWIFT_OBJC_BRIDGING_HEADER":"Runner/Runner-Bridging-Header.h","SWIFT_OPTIMIZATION_LEVEL":"-Onone","SWIFT_PLATFORM_TARGET_PREFIX":"ios","SWIFT_RESPONSE_FILE_PATH_normal_arm64":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.SwiftFileList","SWIFT_VERSION":"5.0","SYMROOT":"/Users/denisnadey/Desktop/binanceapp/build/ios","SYSTEM_ADMIN_APPS_DIR":"/Applications/Utilities","SYSTEM_APPS_DIR":"/Applications","SYSTEM_CORE_SERVICES_DIR":"/System/Library/CoreServices","SYSTEM_DEMOS_DIR":"/Applications/Extras","SYSTEM_DEVELOPER_APPS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications","SYSTEM_DEVELOPER_BIN_DIR":"/Applications/Xcode.app/Contents/Developer/usr/bin","SYSTEM_DEVELOPER_DEMOS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Utilities/Built Examples","SYSTEM_DEVELOPER_DIR":"/Applications/Xcode.app/Contents/Developer","SYSTEM_DEVELOPER_DOC_DIR":"/Applications/Xcode.app/Contents/Developer/ADC Reference Library","SYSTEM_DEVELOPER_GRAPHICS_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Graphics Tools","SYSTEM_DEVELOPER_JAVA_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Java Tools","SYSTEM_DEVELOPER_PERFORMANCE_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Performance Tools","SYSTEM_DEVELOPER_RELEASENOTES_DIR":"/Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes","SYSTEM_DEVELOPER_TOOLS":"/Applications/Xcode.app/Contents/Developer/Tools","SYSTEM_DEVELOPER_TOOLS_DOC_DIR":"/Applications/Xcode.app/Contents/Developer/ADC Reference Library/documentation/DeveloperTools","SYSTEM_DEVELOPER_TOOLS_RELEASENOTES_DIR":"/Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes/DeveloperTools","SYSTEM_DEVELOPER_USR_DIR":"/Applications/Xcode.app/Contents/Developer/usr","SYSTEM_DEVELOPER_UTILITIES_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Utilities","SYSTEM_DEXT_INSTALL_PATH":"/System/Library/DriverExtensions","SYSTEM_DOCUMENTATION_DIR":"/Library/Documentation","SYSTEM_KEXT_INSTALL_PATH":"/System/Library/Extensions","SYSTEM_LIBRARY_DIR":"/System/Library","TAPI_VERIFY_MODE":"ErrorsOnly","TARGETED_DEVICE_FAMILY":"1,2","TARGETNAME":"Runner","TARGET_BUILD_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos","TARGET_DEVICE_IDENTIFIER":"14ea1e3ed325a580fb35bcb957020b43676e0a94","TARGET_DEVICE_MODEL":"iPhone8,1","TARGET_DEVICE_OS_VERSION":"14.5","TARGET_DEVICE_PLATFORM_NAME":"iphoneos","TARGET_NAME":"Runner","TARGET_TEMP_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build","TEMP_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build","TEMP_FILES_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build","TEMP_FILE_DIR":"/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build","TEMP_ROOT":"/Users/denisnadey/Desktop/binanceapp/build/ios","TEST_FRAMEWORK_SEARCH_PATHS":" /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.5.sdk/Developer/Library/Frameworks","TEST_LIBRARY_SEARCH_PATHS":" /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib","TOOLCHAINS":"com.apple.dt.toolchain.XcodeDefault","TOOLCHAIN_DIR":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain","TRACK_WIDGET_CREATION":"true","TREAT_MISSING_BASELINES_AS_TEST_FAILURES":"NO","TREE_SHAKE_ICONS":"false","UID":"501","UNLOCALIZED_RESOURCES_FOLDER_PATH":"Runner.app","UNSTRIPPED_PRODUCT":"NO","USER":"denisnadey","USER_APPS_DIR":"/Users/denisnadey/Applications","USER_LIBRARY_DIR":"/Users/denisnadey/Library","USE_DYNAMIC_NO_PIC":"YES","USE_HEADERMAP":"YES","USE_HEADER_SYMLINKS":"NO","USE_LLVM_TARGET_TRIPLES":"YES","USE_LLVM_TARGET_TRIPLES_FOR_CLANG":"YES","USE_LLVM_TARGET_TRIPLES_FOR_LD":"YES","USE_LLVM_TARGET_TRIPLES_FOR_TAPI":"YES","VALIDATE_DEVELOPMENT_ASSET_PATHS":"YES_ERROR","VALIDATE_PRODUCT":"NO","VALIDATE_WORKSPACE":"YES_ERROR","VALID_ARCHS":"arm64 arm64e armv7 armv7s","VERBOSE_PBXCP":"NO","VERSIONING_SYSTEM":"apple-generic","VERSIONPLIST_PATH":"Runner.app/version.plist","VERSION_INFO_BUILDER":"denisnadey","VERSION_INFO_FILE":"Runner_vers.c","VERSION_INFO_STRING":"\"@(#)PROGRAM:Runner PROJECT:Runner-1\"","WRAPPER_EXTENSION":"app","WRAPPER_NAME":"Runner.app","WRAPPER_SUFFIX":".app","WRAP_ASSET_PACKS_IN_SEPARATE_DIRECTORIES":"NO","XCODE_APP_SUPPORT_DIR":"/Applications/Xcode.app/Contents/Developer/Library/Xcode","XCODE_PRODUCT_BUILD_VERSION":"12E262","XCODE_VERSION_ACTUAL":"1250","XCODE_VERSION_MAJOR":"1200","XCODE_VERSION_MINOR":"1250","XPCSERVICES_FOLDER_PATH":"Runner.app/XPCServices","YACC":"yacc","arch":"undefined_arch","variant":"normal"},"allow-missing-inputs":true,"always-out-of-date":true,"working-directory":"/Users/denisnadey/Desktop/binanceapp/ios","control-enabled":false,"signature":"b8d4c24780a06b49c89d0f1ddf9f46b2"} + "target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49-:Debug:ProcessInfoPlistFile /Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app/Info.plist /Users/denisnadey/Desktop/binanceapp/ios/Runner/Info.plist": {"tool":"info-plist-processor","description":"ProcessInfoPlistFile /Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app/Info.plist /Users/denisnadey/Desktop/binanceapp/ios/Runner/Info.plist","inputs":["/Users/denisnadey/Desktop/binanceapp/ios/Runner/Info.plist","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Base.lproj/LaunchScreen-SBPartialInfo.plist","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Base.lproj/Main-SBPartialInfo.plist","/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/assetcatalog_generated_info.plist","",""],"outputs":["/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app/Info.plist"]} + "target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49-:Debug:RegisterExecutionPolicyException /Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app": {"tool":"register-execution-policy-exception","description":"RegisterExecutionPolicyException /Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app","inputs":["/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app","","",""],"outputs":[""]} + "target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49-:Debug:Touch /Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app": {"tool":"shell","description":"Touch /Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app","inputs":["/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app","","",""],"outputs":[""],"args":["/usr/bin/touch","-c","/Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app"],"env":{},"working-directory":"/Users/denisnadey/Desktop/binanceapp/ios","signature":"18e5f1d2f67ec1749312a5fa5e041c49"} + "target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49-:Debug:Validate /Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app": {"tool":"validate-product","description":"Validate /Users/denisnadey/Desktop/binanceapp/build/ios/Debug-iphoneos/Runner.app","inputs":["","","",""],"outputs":[""]} + "target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49-:Debug:WriteAuxiliaryFile /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources/Runner_vers.c": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources/Runner_vers.c","inputs":["",""],"outputs":["/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources/Runner_vers.c"]} + "target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49-:Debug:WriteAuxiliaryFile /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner-OutputFileMap.json": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner-OutputFileMap.json","inputs":["",""],"outputs":["/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner-OutputFileMap.json"]} + "target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49-:Debug:WriteAuxiliaryFile /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.LinkFileList": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.LinkFileList","inputs":["",""],"outputs":["/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.LinkFileList"]} + "target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49-:Debug:WriteAuxiliaryFile /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.SwiftFileList": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.SwiftFileList","inputs":["",""],"outputs":["/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.SwiftFileList"]} + "target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49-:Debug:WriteAuxiliaryFile /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-all-non-framework-target-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-all-non-framework-target-headers.hmap","inputs":["",""],"outputs":["/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-all-non-framework-target-headers.hmap"]} + "target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49-:Debug:WriteAuxiliaryFile /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-all-target-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-all-target-headers.hmap","inputs":["",""],"outputs":["/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-all-target-headers.hmap"]} + "target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49-:Debug:WriteAuxiliaryFile /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-generated-files.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-generated-files.hmap","inputs":["",""],"outputs":["/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-generated-files.hmap"]} + "target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49-:Debug:WriteAuxiliaryFile /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-own-target-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-own-target-headers.hmap","inputs":["",""],"outputs":["/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-own-target-headers.hmap"]} + "target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49-:Debug:WriteAuxiliaryFile /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-project-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-project-headers.hmap","inputs":["",""],"outputs":["/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-project-headers.hmap"]} + "target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49-:Debug:WriteAuxiliaryFile /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner.hmap","inputs":["",""],"outputs":["/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner.hmap"]} + "target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49-:Debug:WriteAuxiliaryFile /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh","inputs":["",""],"outputs":["/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh"]} + "target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49-:Debug:WriteAuxiliaryFile /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Script-9740EEB61CF901F6004384FC.sh": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Script-9740EEB61CF901F6004384FC.sh","inputs":["",""],"outputs":["/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/Script-9740EEB61CF901F6004384FC.sh"]} + "target-Runner-2df5048b26dd34e27490819cf27bb2f988a783a885d8b0b3beb2e9f90bde3f49-:Debug:WriteAuxiliaryFile /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/all-product-headers.yaml": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/all-product-headers.yaml","inputs":["",""],"outputs":["/Users/denisnadey/Desktop/binanceapp/build/ios/Runner.build/Debug-iphoneos/Runner.build/all-product-headers.yaml"]} + diff --git a/ios/build/XCBuildData/c2ef8d78aabb34140fdbae0cc1dc90b3-targetGraph.txt b/ios/build/XCBuildData/c2ef8d78aabb34140fdbae0cc1dc90b3-targetGraph.txt new file mode 100644 index 0000000..baf1008 --- /dev/null +++ b/ios/build/XCBuildData/c2ef8d78aabb34140fdbae0cc1dc90b3-targetGraph.txt @@ -0,0 +1,2 @@ +Target dependency graph (1 target) +Runner in Runner \ No newline at end of file diff --git a/lib/backend.dart b/lib/backend.dart new file mode 100644 index 0000000..b95a6ea --- /dev/null +++ b/lib/backend.dart @@ -0,0 +1,79 @@ +import 'dart:async'; +import 'dart:convert'; + +import 'package:flutter/material.dart'; +import 'package:http/http.dart' as http; + +Future fetchBtcusdt() async { + final response = + await http.get(Uri.https('api.binance.com', 'api/v3/ticker/24hr')); + if (response.statusCode == 200) { + return Btcusdt.fromJson(jsonDecode(response.body)); + } else { + throw Exception('Failed to load Btcusdt'); + } +} + +class Btcusdt { + final double? valuebtc; + Btcusdt({required this.valuebtc}); + + factory Btcusdt.fromJson(List json) { + return Btcusdt( + valuebtc: double.parse(json + .where((element) => element['symbol'].contains("BTCUSDT")) + .toList() + .first['lastPrice'])); + } +} + +void main() => runApp(MyApp()); + +class MyApp extends StatefulWidget { + MyApp({Key? key}) : super(key: key); + + @override + _MyAppState createState() => _MyAppState(); +} + +class _MyAppState extends State { + late Future futureBtcusdt; + + @override + void initState() { + super.initState(); + futureBtcusdt = fetchBtcusdt(); + } + + @override + Widget build(BuildContext context) { + return MaterialApp( + title: 'Fetch Data Example', + theme: ThemeData( + primarySwatch: Colors.blue, + ), + home: Scaffold( + appBar: AppBar( + title: Text('Fetch Data Example'), + ), + body: Center( + child: FutureBuilder( + future: futureBtcusdt, + builder: (context, snapshot) { + if (snapshot.hasData) { + return Text(snapshot.data!.valuebtc.toString(), + style: TextStyle(fontSize: 15)); + } else if (snapshot.hasError) { + return Text( + "${snapshot.error}", + style: TextStyle(fontSize: 15), + ); + } + return CircularProgressIndicator(); + }, + ), + ), + ), + ); + } +} diff --git a/lib/bloc/binance_bloc.dart b/lib/bloc/binance_bloc.dart new file mode 100644 index 0000000..e69de29 diff --git a/lib/bloc/binance_event.dart b/lib/bloc/binance_event.dart new file mode 100644 index 0000000..e69de29 diff --git a/lib/bloc/binance_state.dart b/lib/bloc/binance_state.dart new file mode 100644 index 0000000..e69de29 diff --git a/lib/main.dart b/lib/main.dart new file mode 100644 index 0000000..41ceed2 --- /dev/null +++ b/lib/main.dart @@ -0,0 +1,79 @@ +import 'package:binanceapp/backend.dart'; +import 'package:flutter/material.dart'; +import 'backend.dart'; + +void main() { + runApp(MyApp()); +} + +class MyApp extends StatelessWidget { + // This widget is the root of your application. + @override + Widget build(BuildContext context) { + return MaterialApp( + title: 'Flutter Demo', + theme: ThemeData( + primarySwatch: Colors.blue, + ), + home: MyHomePage(), + ); + } +} + +class MyHomePage extends StatefulWidget { + MyHomePage({Key? key}) : super(key: key); + + @override + _MyHomePageState createState() => _MyHomePageState(); +} + +class _MyHomePageState extends State { + late Future futureBtcusdt; + + @override + Widget build(BuildContext context) { + return Scaffold( + backgroundColor: Color.fromARGB(255, 22, 31, 46), + body: Center( + child: Column( + mainAxisAlignment: MainAxisAlignment.center, + crossAxisAlignment: CrossAxisAlignment.center, + children: [ + Container( + width: 100, + height: 200, + padding: EdgeInsets.only(left: 8, right: 8), + decoration: BoxDecoration( + color: Colors.grey, + borderRadius: BorderRadius.circular(10)), + child: ListView.builder( + itemCount: 500, + itemBuilder: (BuildContext context, int index) { + return MyButton( + onPressed: () => initState(), textvalue: 'Press me'); + })) + ], + ), + ), // This trailing comma makes auto-formatting nicer for build methods. + ); + } +} + +class MyButton extends StatelessWidget { + final void Function() onPressed; + final String textvalue; + const MyButton({required this.textvalue, required this.onPressed}); + @override + Widget build(BuildContext context) { + return Container( + margin: EdgeInsets.only(bottom: 8), + color: Colors.blueGrey, + child: TextButton( + onPressed: () => onPressed(), + child: Text( + '$textvalue', + style: TextStyle(fontSize: 14, color: Colors.white), + ), + )); + } +} diff --git a/pubspec.lock b/pubspec.lock new file mode 100644 index 0000000..cf44ed8 --- /dev/null +++ b/pubspec.lock @@ -0,0 +1,181 @@ +# Generated by pub +# See https://dart.dev/tools/pub/glossary#lockfile +packages: + async: + dependency: transitive + description: + name: async + url: "https://pub.dartlang.org" + source: hosted + version: "2.6.0" + bloc: + dependency: "direct main" + description: + name: bloc + url: "https://pub.dartlang.org" + source: hosted + version: "7.0.0" + boolean_selector: + dependency: transitive + description: + name: boolean_selector + url: "https://pub.dartlang.org" + source: hosted + version: "2.1.0" + characters: + dependency: transitive + description: + name: characters + url: "https://pub.dartlang.org" + source: hosted + version: "1.1.0" + charcode: + dependency: transitive + description: + name: charcode + url: "https://pub.dartlang.org" + source: hosted + version: "1.2.0" + clock: + dependency: transitive + description: + name: clock + url: "https://pub.dartlang.org" + source: hosted + version: "1.1.0" + collection: + dependency: transitive + description: + name: collection + url: "https://pub.dartlang.org" + source: hosted + version: "1.15.0" + cupertino_icons: + dependency: "direct main" + description: + name: cupertino_icons + url: "https://pub.dartlang.org" + source: hosted + version: "1.0.2" + fake_async: + dependency: transitive + description: + name: fake_async + url: "https://pub.dartlang.org" + source: hosted + version: "1.2.0" + flutter: + dependency: "direct main" + description: flutter + source: sdk + version: "0.0.0" + flutter_test: + dependency: "direct dev" + description: flutter + source: sdk + version: "0.0.0" + http: + dependency: "direct main" + description: + name: http + url: "https://pub.dartlang.org" + source: hosted + version: "0.13.2" + http_parser: + dependency: transitive + description: + name: http_parser + url: "https://pub.dartlang.org" + source: hosted + version: "4.0.0" + matcher: + dependency: transitive + description: + name: matcher + url: "https://pub.dartlang.org" + source: hosted + version: "0.12.10" + meta: + dependency: transitive + description: + name: meta + url: "https://pub.dartlang.org" + source: hosted + version: "1.3.0" + path: + dependency: transitive + description: + name: path + url: "https://pub.dartlang.org" + source: hosted + version: "1.8.0" + pedantic: + dependency: transitive + description: + name: pedantic + url: "https://pub.dartlang.org" + source: hosted + version: "1.11.0" + sky_engine: + dependency: transitive + description: flutter + source: sdk + version: "0.0.99" + source_span: + dependency: transitive + description: + name: source_span + url: "https://pub.dartlang.org" + source: hosted + version: "1.8.1" + stack_trace: + dependency: transitive + description: + name: stack_trace + url: "https://pub.dartlang.org" + source: hosted + version: "1.10.0" + stream_channel: + dependency: transitive + description: + name: stream_channel + url: "https://pub.dartlang.org" + source: hosted + version: "2.1.0" + string_scanner: + dependency: transitive + description: + name: string_scanner + url: "https://pub.dartlang.org" + source: hosted + version: "1.1.0" + term_glyph: + dependency: transitive + description: + name: term_glyph + url: "https://pub.dartlang.org" + source: hosted + version: "1.2.0" + test_api: + dependency: transitive + description: + name: test_api + url: "https://pub.dartlang.org" + source: hosted + version: "0.3.0" + typed_data: + dependency: transitive + description: + name: typed_data + url: "https://pub.dartlang.org" + source: hosted + version: "1.3.0" + vector_math: + dependency: transitive + description: + name: vector_math + url: "https://pub.dartlang.org" + source: hosted + version: "2.1.0" +sdks: + dart: ">=2.12.0 <3.0.0" diff --git a/pubspec.yaml b/pubspec.yaml new file mode 100644 index 0000000..02909b6 --- /dev/null +++ b/pubspec.yaml @@ -0,0 +1,69 @@ +name: binanceapp +description: A new Flutter project. + +# The following line prevents the package from being accidentally published to +# pub.dev using `pub publish`. This is preferred for private packages. +publish_to: 'none' # Remove this line if you wish to publish to pub.dev + +# The following defines the version and build number for your application. +# A version number is three numbers separated by dots, like 1.2.43 +# followed by an optional build number separated by a +. +# Both the version and the builder number may be overridden in flutter +# build by specifying --build-name and --build-number, respectively. +# In Android, build-name is used as versionName while build-number used as versionCode. +# Read more about Android versioning at https://developer.android.com/studio/publish/versioning +# In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion. +# Read more about iOS versioning at +# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html +version: 1.0.0+1 + +environment: + sdk: ">=2.12.0 <3.0.0" + +dependencies: + flutter: + sdk: flutter + bloc: ^7.0.0 + cupertino_icons: ^1.0.2 + http: ^0.13.2 + +dev_dependencies: + flutter_test: + sdk: flutter + +# For information on the generic Dart part of this file, see the +# following page: https://dart.dev/tools/pub/pubspec +# The following section is specific to Flutter. +flutter: + + # The following line ensures that the Material Icons font is + # included with your application, so that you can use the icons in + # the material Icons class. + uses-material-design: true + # To add assets to your application, add an assets section, like this: + # assets: + # - images/a_dot_burr.jpeg + # - images/a_dot_ham.jpeg + # An image asset can refer to one or more resolution-specific "variants", see + # https://flutter.dev/assets-and-images/#resolution-aware. + # For details regarding adding assets from package dependencies, see + # https://flutter.dev/assets-and-images/#from-packages + # To add custom fonts to your application, add a fonts section here, + # in this "flutter" section. Each entry in this list should have a + # "family" key with the font family name, and a "fonts" key with a + # list giving the asset and other descriptors for the font. For + # example: + # fonts: + # - family: Schyler + # fonts: + # - asset: fonts/Schyler-Regular.ttf + # - asset: fonts/Schyler-Italic.ttf + # style: italic + # - family: Trajan Pro + # fonts: + # - asset: fonts/TrajanPro.ttf + # - asset: fonts/TrajanPro_Bold.ttf + # weight: 700 + # + # For details regarding fonts from package dependencies, + # see https://flutter.dev/custom-fonts/#from-packages diff --git a/run.sh b/run.sh new file mode 100644 index 0000000..6b42a5a --- /dev/null +++ b/run.sh @@ -0,0 +1,5 @@ + + +git add . +git commit -m "first commit 2" +git push \ No newline at end of file diff --git a/test/widget_test.dart b/test/widget_test.dart new file mode 100644 index 0000000..15145b4 --- /dev/null +++ b/test/widget_test.dart @@ -0,0 +1,30 @@ +// This is a basic Flutter widget test. +// +// To perform an interaction with a widget in your test, use the WidgetTester +// utility that Flutter provides. For example, you can send tap and scroll +// gestures. You can also use WidgetTester to find child widgets in the widget +// tree, read text, and verify that the values of widget properties are correct. + +import 'package:flutter/material.dart'; +import 'package:flutter_test/flutter_test.dart'; + +import 'package:binanceapp/main.dart'; + +void main() { + testWidgets('Counter increments smoke test', (WidgetTester tester) async { + // Build our app and trigger a frame. + await tester.pumpWidget(MyApp()); + + // Verify that our counter starts at 0. + expect(find.text('0'), findsOneWidget); + expect(find.text('1'), findsNothing); + + // Tap the '+' icon and trigger a frame. + await tester.tap(find.byIcon(Icons.add)); + await tester.pump(); + + // Verify that our counter has incremented. + expect(find.text('0'), findsNothing); + expect(find.text('1'), findsOneWidget); + }); +} diff --git a/web/favicon.png b/web/favicon.png new file mode 100644 index 0000000..8aaa46a Binary files /dev/null and b/web/favicon.png differ diff --git a/web/icons/Icon-192.png b/web/icons/Icon-192.png new file mode 100644 index 0000000..b749bfe Binary files /dev/null and b/web/icons/Icon-192.png differ diff --git a/web/icons/Icon-512.png b/web/icons/Icon-512.png new file mode 100644 index 0000000..88cfd48 Binary files /dev/null and b/web/icons/Icon-512.png differ diff --git a/web/index.html b/web/index.html new file mode 100644 index 0000000..831991a --- /dev/null +++ b/web/index.html @@ -0,0 +1,98 @@ + + + + + + + + + + + + + + + + + binanceapp + + + + + + + diff --git a/web/manifest.json b/web/manifest.json new file mode 100644 index 0000000..e55a746 --- /dev/null +++ b/web/manifest.json @@ -0,0 +1,23 @@ +{ + "name": "binanceapp", + "short_name": "binanceapp", + "start_url": ".", + "display": "standalone", + "background_color": "#0175C2", + "theme_color": "#0175C2", + "description": "A new Flutter project.", + "orientation": "portrait-primary", + "prefer_related_applications": false, + "icons": [ + { + "src": "icons/Icon-192.png", + "sizes": "192x192", + "type": "image/png" + }, + { + "src": "icons/Icon-512.png", + "sizes": "512x512", + "type": "image/png" + } + ] +}