From 4378a2927bcfd2f7b53b1160aff8c25835ecc482 Mon Sep 17 00:00:00 2001 From: Evan Reichard Date: Sat, 23 Jan 2021 19:28:26 -0500 Subject: [PATCH] Preclean --- web_native/ios/Podfile.lock | 12 ++ ...90fbee60cd7849a377c76de9445cc-desc.xcbuild | Bin 0 -> 338862 bytes ...ee60cd7849a377c76de9445cc-manifest.xcbuild | 96 ++++++++++++ ...7db71ff1ca7ec1dc68095d669aa08-desc.xcbuild | Bin 0 -> 339826 bytes ...1ff1ca7ec1dc68095d669aa08-manifest.xcbuild | 97 ++++++++++++ ...acheIndex-00c9a658b7a3a137a025e9913bcc6ff1 | Bin 0 -> 146 bytes ...cbc01a72e09a4b08e0eb63c03609b-desc.xcbuild | Bin 0 -> 629377 bytes ...1a72e09a4b08e0eb63c03609b-manifest.xcbuild | 105 +++++++++++++ web_native/ios/build/XCBuildData/build.db | Bin 0 -> 425984 bytes ...e54212c15647c7a8aa35f4f25db1b-desc.xcbuild | Bin 0 -> 630341 bytes ...12c15647c7a8aa35f4f25db1b-manifest.xcbuild | 106 +++++++++++++ web_native/lib/bloc/bloc-prov-tree.dart | 68 --------- web_native/lib/bloc/bloc-prov.dart | 60 -------- web_native/lib/bloc/bloc.dart | 1 - web_native/lib/blocs/auth-bloc.dart | 5 - web_native/lib/blocs/blocs.dart | 2 - web_native/lib/blocs/login/bloc.dart | 42 ++++++ web_native/lib/blocs/login/events.dart | 3 + web_native/lib/blocs/login/states.dart | 28 ++++ web_native/lib/blocs/pref-bloc.dart | 5 - web_native/lib/blocs/theme/bloc.dart | 23 +++ web_native/lib/blocs/theme/events.dart | 6 + web_native/lib/blocs/theme/state.dart | 6 + web_native/lib/main.dart | 48 +++--- web_native/lib/screens/login.dart | 70 +++++++++ .../lib/screens/login/components/body.dart | 16 -- .../{ => old}/gallery/components/body.dart | 0 .../{ => old}/gallery/gallery-bloc.dart | 0 .../{ => old}/gallery/galleryscreen.dart | 2 +- .../screens/old/login/components/body.dart | 59 ++++++++ .../screens/{ => old}/login/login-bloc.dart | 0 .../screens/{ => old}/login/loginscreen.dart | 6 +- .../screens/{ => old}/me/components/body.dart | 0 .../lib/screens/{ => old}/me/me-bloc.dart | 0 .../lib/screens/{ => old}/me/mescreen.dart | 0 .../{ => old}/settings/components/body.dart | 0 .../{ => old}/settings/settings-bloc.dart | 0 .../{ => old}/settings/settingsscreen.dart | 0 .../{ => old}/splash/components/body.dart | 0 .../screens/{ => old}/splash/splash-bloc.dart | 0 .../screens/{ => old}/upload/upload-bloc.dart | 0 .../{ => old}/upload/uploadscreen.dart | 0 .../lib/screens/splash/splashscreen.dart | 38 ----- web_native/lib/services/api/api.dart | 85 +++++++++++ web_native/lib/services/api/exceptions.dart | 19 +++ web_native/lib/services/exampleapi.dart | 11 -- web_native/lib/settings/app_themes.dart | 31 ++++ web_native/lib/settings/preferences.dart | 39 +++++ .../lib/{theme => theme-old}/style.dart | 0 web_native/pubspec.lock | 142 ++++++++++++++++-- web_native/pubspec.yaml | 6 +- 51 files changed, 992 insertions(+), 245 deletions(-) create mode 100644 web_native/ios/build/XCBuildData/1b290fbee60cd7849a377c76de9445cc-desc.xcbuild create mode 100644 web_native/ios/build/XCBuildData/1b290fbee60cd7849a377c76de9445cc-manifest.xcbuild create mode 100644 web_native/ios/build/XCBuildData/3587db71ff1ca7ec1dc68095d669aa08-desc.xcbuild create mode 100644 web_native/ios/build/XCBuildData/3587db71ff1ca7ec1dc68095d669aa08-manifest.xcbuild create mode 100644 web_native/ios/build/XCBuildData/BuildDescriptionCacheIndex-00c9a658b7a3a137a025e9913bcc6ff1 create mode 100644 web_native/ios/build/XCBuildData/b54cbc01a72e09a4b08e0eb63c03609b-desc.xcbuild create mode 100644 web_native/ios/build/XCBuildData/b54cbc01a72e09a4b08e0eb63c03609b-manifest.xcbuild create mode 100644 web_native/ios/build/XCBuildData/build.db create mode 100644 web_native/ios/build/XCBuildData/f46e54212c15647c7a8aa35f4f25db1b-desc.xcbuild create mode 100644 web_native/ios/build/XCBuildData/f46e54212c15647c7a8aa35f4f25db1b-manifest.xcbuild delete mode 100644 web_native/lib/bloc/bloc-prov-tree.dart delete mode 100644 web_native/lib/bloc/bloc-prov.dart delete mode 100644 web_native/lib/bloc/bloc.dart delete mode 100644 web_native/lib/blocs/auth-bloc.dart delete mode 100644 web_native/lib/blocs/blocs.dart create mode 100644 web_native/lib/blocs/login/bloc.dart create mode 100644 web_native/lib/blocs/login/events.dart create mode 100644 web_native/lib/blocs/login/states.dart delete mode 100644 web_native/lib/blocs/pref-bloc.dart create mode 100644 web_native/lib/blocs/theme/bloc.dart create mode 100644 web_native/lib/blocs/theme/events.dart create mode 100644 web_native/lib/blocs/theme/state.dart create mode 100644 web_native/lib/screens/login.dart delete mode 100644 web_native/lib/screens/login/components/body.dart rename web_native/lib/screens/{ => old}/gallery/components/body.dart (100%) rename web_native/lib/screens/{ => old}/gallery/gallery-bloc.dart (100%) rename web_native/lib/screens/{ => old}/gallery/galleryscreen.dart (97%) create mode 100644 web_native/lib/screens/old/login/components/body.dart rename web_native/lib/screens/{ => old}/login/login-bloc.dart (100%) rename web_native/lib/screens/{ => old}/login/loginscreen.dart (90%) rename web_native/lib/screens/{ => old}/me/components/body.dart (100%) rename web_native/lib/screens/{ => old}/me/me-bloc.dart (100%) rename web_native/lib/screens/{ => old}/me/mescreen.dart (100%) rename web_native/lib/screens/{ => old}/settings/components/body.dart (100%) rename web_native/lib/screens/{ => old}/settings/settings-bloc.dart (100%) rename web_native/lib/screens/{ => old}/settings/settingsscreen.dart (100%) rename web_native/lib/screens/{ => old}/splash/components/body.dart (100%) rename web_native/lib/screens/{ => old}/splash/splash-bloc.dart (100%) rename web_native/lib/screens/{ => old}/upload/upload-bloc.dart (100%) rename web_native/lib/screens/{ => old}/upload/uploadscreen.dart (100%) delete mode 100644 web_native/lib/screens/splash/splashscreen.dart create mode 100644 web_native/lib/services/api/api.dart create mode 100644 web_native/lib/services/api/exceptions.dart delete mode 100644 web_native/lib/services/exampleapi.dart create mode 100644 web_native/lib/settings/app_themes.dart create mode 100644 web_native/lib/settings/preferences.dart rename web_native/lib/{theme => theme-old}/style.dart (100%) diff --git a/web_native/ios/Podfile.lock b/web_native/ios/Podfile.lock index 75666d7..51d516e 100644 --- a/web_native/ios/Podfile.lock +++ b/web_native/ios/Podfile.lock @@ -34,11 +34,15 @@ PODS: - DKImagePickerController/PhotoGallery - Flutter - Flutter (1.0.0) + - flutter_secure_storage (3.3.1): + - Flutter - integration_test (0.0.1): - Flutter - SDWebImage (5.10.2): - SDWebImage/Core (= 5.10.2) - SDWebImage/Core (5.10.2) + - shared_preferences (0.0.1): + - Flutter - SwiftyGif (5.3.0) - url_launcher (0.0.1): - Flutter @@ -46,7 +50,9 @@ PODS: DEPENDENCIES: - file_picker (from `.symlinks/plugins/file_picker/ios`) - Flutter (from `Flutter`) + - flutter_secure_storage (from `.symlinks/plugins/flutter_secure_storage/ios`) - integration_test (from `.symlinks/plugins/integration_test/ios`) + - shared_preferences (from `.symlinks/plugins/shared_preferences/ios`) - url_launcher (from `.symlinks/plugins/url_launcher/ios`) SPEC REPOS: @@ -61,8 +67,12 @@ EXTERNAL SOURCES: :path: ".symlinks/plugins/file_picker/ios" Flutter: :path: Flutter + flutter_secure_storage: + :path: ".symlinks/plugins/flutter_secure_storage/ios" integration_test: :path: ".symlinks/plugins/integration_test/ios" + shared_preferences: + :path: ".symlinks/plugins/shared_preferences/ios" url_launcher: :path: ".symlinks/plugins/url_launcher/ios" @@ -71,8 +81,10 @@ SPEC CHECKSUMS: DKPhotoGallery: fdfad5125a9fdda9cc57df834d49df790dbb4179 file_picker: 3e6c3790de664ccf9b882732d9db5eaf6b8d4eb1 Flutter: 434fef37c0980e73bb6479ef766c45957d4b510c + flutter_secure_storage: 7953c38a04c3fdbb00571bcd87d8e3b5ceb9daec integration_test: 5ed24a436eb7ec17b6a13046e9bf7ca4a404e59e SDWebImage: b969dcfc02c40a5da71eac0b03b8f1a0c794a86f + shared_preferences: af6bfa751691cdc24be3045c43ec037377ada40d SwiftyGif: e466e86c660d343357ab944a819a101c4127cb40 url_launcher: 6fef411d543ceb26efce54b05a0a40bfd74cbbef diff --git a/web_native/ios/build/XCBuildData/1b290fbee60cd7849a377c76de9445cc-desc.xcbuild b/web_native/ios/build/XCBuildData/1b290fbee60cd7849a377c76de9445cc-desc.xcbuild new file mode 100644 index 0000000000000000000000000000000000000000..3df0f3c2bb31d643e5a8ababbd2a9a653f7191ac GIT binary patch literal 338862 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

U0PH6aNz%soqy##lir^ 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 F{{iN$T6zEg literal 0 HcmV?d00001 diff --git a/web_native/ios/build/XCBuildData/1b290fbee60cd7849a377c76de9445cc-manifest.xcbuild b/web_native/ios/build/XCBuildData/1b290fbee60cd7849a377c76de9445cc-manifest.xcbuild new file mode 100644 index 0000000..6b86494 --- /dev/null +++ b/web_native/ios/build/XCBuildData/1b290fbee60cd7849a377c76de9445cc-manifest.xcbuild @@ -0,0 +1,96 @@ +client: + name: basic + version: 0 + file-system: default + +targets: + "": [""] + +nodes: + "/Users/evanreichard/Development/git/imagini/web_native/build/ios": {"is-mutated":true} + +commands: + "": {"tool":"phony","inputs":["/Users/evanreichard/Development/git/imagini/web_native/build/ios","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Frameworks","",""],"outputs":[""]} + "": {"tool":"stale-file-removal","expectedOutputs":["/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/assetcatalog_generated_info.plist","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Assets.car","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.o","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner_vers.o","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Base.lproj/LaunchScreen.storyboardc","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Base.lproj/LaunchScreen-SBPartialInfo.plist","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Base.lproj/Main.storyboardc","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Base.lproj/Main-SBPartialInfo.plist","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/AppDelegate.o","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner.swiftmodule","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner.swiftsourceinfo","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner-Swift.h","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner.swiftdoc","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/AppFrameworkInfo.plist","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.swiftmodule/Project/arm64-apple-ios-simulator.swiftsourceinfo","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.swiftmodule/Project/arm64.swiftsourceinfo","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.swiftmodule/arm64-apple-ios-simulator.swiftdoc","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.swiftmodule/arm64-apple-ios-simulator.swiftmodule","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.swiftmodule/arm64.swiftdoc","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.swiftmodule/arm64.swiftmodule","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/Runner-Swift.h","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Runner","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Base.lproj/LaunchScreen.storyboardc","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Base.lproj/Main.storyboardc","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Frameworks","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/Pods-Runner-checkManifestLockResult.txt","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/DKImagePickerController.framework","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/DKPhotoGallery.framework","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/SDWebImage.framework","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/SwiftyGif.framework","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/file_picker.framework","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/flutter_secure_storage.framework","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/integration_test.framework","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/shared_preferences.framework","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/url_launcher.framework","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Info.plist","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/Runner_vers.c","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/InputFileList-D5904DDDEF0E1E99229EA00E-Pods-Runner-frameworks-Debug-input-files-6c69f76b2c0ba498a0e3a65077743e10-resolved.xcfilelist","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner-OutputFileMap.json","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner.LinkFileList","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner.SwiftFileList","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/OutputFileList-D5904DDDEF0E1E99229EA00E-Pods-Runner-frameworks-Debug-output-files-f592242711a85b2a34af5762da324381-resolved.xcfilelist","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-all-non-framework-target-headers.hmap","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-all-target-headers.hmap","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-generated-files.hmap","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-own-target-headers.hmap","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-project-headers.hmap","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner.hmap","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-9740EEB61CF901F6004384FC.sh","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-D5904DDDEF0E1E99229EA00E.sh","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-D86A7985AAC25B64F99FB7F7.sh","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/all-product-headers.yaml"],"roots":["/tmp/Runner.dst","/Users/evanreichard/Development/git/imagini/web_native/build/ios","/Users/evanreichard/Development/git/imagini/web_native/build/ios"],"outputs":[""]} + "Gate target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49--Barrier-ChangeAlternatePermissions": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49--Barrier-ChangePermissions": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49--Barrier-CodeSign": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49--Barrier-CopyAside": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49--Barrier-RegisterExecutionPolicyException": {"tool":"phony","inputs":["","",""],"outputs":[""]} + "Gate target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49--Barrier-RegisterProduct": {"tool":"phony","inputs":["","",""],"outputs":[""]} + "Gate target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49--Barrier-StripSymbols": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49--Barrier-Validate": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49--CopySwiftPackageResourcesTaskProducer": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49--GeneratedFilesTaskProducer": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49--HeadermapTaskProducer": {"tool":"phony","inputs":["","","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-all-non-framework-target-headers.hmap","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-all-target-headers.hmap","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-generated-files.hmap","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-own-target-headers.hmap","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-project-headers.hmap","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner.hmap","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/all-product-headers.yaml"],"outputs":[""]} + "Gate target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49--InfoPlistTaskProducer": {"tool":"phony","inputs":["","","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Info.plist"],"outputs":[""]} + "Gate target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49--ModuleMapTaskProducer": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49--ProductPostprocessingTaskProducer": {"tool":"phony","inputs":["","","","","","","","","","","",""],"outputs":[""]} + "Gate target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49--ProductStructureTaskProducer": {"tool":"phony","inputs":["","","",""],"outputs":[""]} + "Gate target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49--SanitizerTaskProducer": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49--StubBinaryTaskProducer": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49--SwiftFrameworkABICheckerTaskProducer": {"tool":"phony","inputs":["","",""],"outputs":[""]} + "Gate target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49--SwiftStandardLibrariesTaskProducer": {"tool":"phony","inputs":["","","",""],"outputs":[""]} + "Gate target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49--TestTargetPostprocessingTaskProducer": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49--TestTargetTaskProducer": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49--VersionPlistTaskProducer": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49--XCFrameworkTaskProducer": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49--begin-compiling": {"tool":"phony","inputs":["","","",""],"outputs":[""]} + "Gate target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49--copy-headers-completion": {"tool":"phony","inputs":[""],"outputs":[""]} + "Gate target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49--end": {"tool":"phony","inputs":["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/assetcatalog_generated_info.plist","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Assets.car","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.o","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner_vers.o","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Base.lproj/LaunchScreen.storyboardc","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Base.lproj/LaunchScreen-SBPartialInfo.plist","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Base.lproj/Main.storyboardc","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Base.lproj/Main-SBPartialInfo.plist","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/AppDelegate.o","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner.swiftmodule","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner.swiftsourceinfo","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner-Swift.h","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner.swiftdoc","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/AppFrameworkInfo.plist","","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.swiftmodule/Project/arm64-apple-ios-simulator.swiftsourceinfo","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.swiftmodule/Project/arm64.swiftsourceinfo","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.swiftmodule/arm64-apple-ios-simulator.swiftdoc","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.swiftmodule/arm64-apple-ios-simulator.swiftmodule","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.swiftmodule/arm64.swiftdoc","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.swiftmodule/arm64.swiftmodule","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/Runner-Swift.h","","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Base.lproj/LaunchScreen.storyboardc","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Base.lproj/Main.storyboardc","","","","","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/Pods-Runner-checkManifestLockResult.txt","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/DKImagePickerController.framework","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/DKPhotoGallery.framework","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/SDWebImage.framework","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/SwiftyGif.framework","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/file_picker.framework","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/flutter_secure_storage.framework","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/integration_test.framework","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/shared_preferences.framework","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/url_launcher.framework","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Info.plist","","","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/Runner_vers.c","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/InputFileList-D5904DDDEF0E1E99229EA00E-Pods-Runner-frameworks-Debug-input-files-6c69f76b2c0ba498a0e3a65077743e10-resolved.xcfilelist","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner-OutputFileMap.json","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner.LinkFileList","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner.SwiftFileList","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/OutputFileList-D5904DDDEF0E1E99229EA00E-Pods-Runner-frameworks-Debug-output-files-f592242711a85b2a34af5762da324381-resolved.xcfilelist","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-all-non-framework-target-headers.hmap","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-all-target-headers.hmap","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-generated-files.hmap","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-own-target-headers.hmap","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-project-headers.hmap","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner.hmap","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-9740EEB61CF901F6004384FC.sh","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-D5904DDDEF0E1E99229EA00E.sh","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-D86A7985AAC25B64F99FB7F7.sh","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/all-product-headers.yaml"],"outputs":[""]} + "Gate target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49--entry": {"tool":"phony","inputs":["","","","",""],"outputs":[""]} + "Gate target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49--generated-headers": {"tool":"phony","inputs":["","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/AppDelegate.o","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner.swiftmodule","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner.swiftsourceinfo","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner-Swift.h","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner.swiftdoc","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/Runner-Swift.h"],"outputs":[""]} + "Gate target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49--immediate": {"tool":"phony","inputs":["","","",""],"outputs":[""]} + "Gate target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49--modules-ready": {"tool":"phony","inputs":["","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/AppDelegate.o","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner.swiftmodule","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner.swiftsourceinfo","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner-Swift.h","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner.swiftdoc","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.swiftmodule/Project/arm64-apple-ios-simulator.swiftsourceinfo","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.swiftmodule/Project/arm64.swiftsourceinfo","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.swiftmodule/arm64-apple-ios-simulator.swiftdoc","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.swiftmodule/arm64-apple-ios-simulator.swiftmodule","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.swiftmodule/arm64.swiftdoc","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.swiftmodule/arm64.swiftmodule","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/Runner-Swift.h","","","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/Pods-Runner-checkManifestLockResult.txt","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/DKImagePickerController.framework","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/DKPhotoGallery.framework","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/SDWebImage.framework","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/SwiftyGif.framework","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/file_picker.framework","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/flutter_secure_storage.framework","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/integration_test.framework","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/shared_preferences.framework","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/url_launcher.framework","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/InputFileList-D5904DDDEF0E1E99229EA00E-Pods-Runner-frameworks-Debug-input-files-6c69f76b2c0ba498a0e3a65077743e10-resolved.xcfilelist","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/OutputFileList-D5904DDDEF0E1E99229EA00E-Pods-Runner-frameworks-Debug-output-files-f592242711a85b2a34af5762da324381-resolved.xcfilelist","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-9740EEB61CF901F6004384FC.sh","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-D5904DDDEF0E1E99229EA00E.sh","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-D86A7985AAC25B64F99FB7F7.sh"],"outputs":[""]} + "Gate target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49--phase0--cp--check-pods-manifest-lock": {"tool":"phony","inputs":["","","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/Pods-Runner-checkManifestLockResult.txt","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-D86A7985AAC25B64F99FB7F7.sh"],"outputs":[""]} + "Gate target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49--phase1-run-script": {"tool":"phony","inputs":["","","","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-9740EEB61CF901F6004384FC.sh"],"outputs":[""]} + "Gate target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49--phase2-compile-sources": {"tool":"phony","inputs":["","","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.o","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner_vers.o","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/AppDelegate.o","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner.swiftmodule","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner.swiftsourceinfo","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner-Swift.h","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner.swiftdoc","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.swiftmodule/Project/arm64-apple-ios-simulator.swiftsourceinfo","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.swiftmodule/Project/arm64.swiftsourceinfo","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.swiftmodule/arm64-apple-ios-simulator.swiftdoc","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.swiftmodule/arm64-apple-ios-simulator.swiftmodule","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.swiftmodule/arm64.swiftdoc","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.swiftmodule/arm64.swiftmodule","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/Runner-Swift.h","","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/Runner_vers.c","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner-OutputFileMap.json","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner.LinkFileList","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner.SwiftFileList"],"outputs":[""]} + "Gate target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49--phase4-copy-bundle-resources": {"tool":"phony","inputs":["","","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/assetcatalog_generated_info.plist","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Assets.car","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Base.lproj/LaunchScreen.storyboardc","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Base.lproj/LaunchScreen-SBPartialInfo.plist","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Base.lproj/Main.storyboardc","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Base.lproj/Main-SBPartialInfo.plist","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/AppFrameworkInfo.plist","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Base.lproj/LaunchScreen.storyboardc","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Base.lproj/Main.storyboardc"],"outputs":[""]} + "Gate target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49--phase5-copy-files": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49--phase6-thin-binary": {"tool":"phony","inputs":["","","","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh"],"outputs":[""]} + "Gate target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49--phase7--cp--embed-pods-frameworks": {"tool":"phony","inputs":["","","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/DKImagePickerController.framework","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/DKPhotoGallery.framework","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/SDWebImage.framework","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/SwiftyGif.framework","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/file_picker.framework","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/flutter_secure_storage.framework","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/integration_test.framework","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/shared_preferences.framework","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/url_launcher.framework","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/InputFileList-D5904DDDEF0E1E99229EA00E-Pods-Runner-frameworks-Debug-input-files-6c69f76b2c0ba498a0e3a65077743e10-resolved.xcfilelist","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/OutputFileList-D5904DDDEF0E1E99229EA00E-Pods-Runner-frameworks-Debug-output-files-f592242711a85b2a34af5762da324381-resolved.xcfilelist","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-D5904DDDEF0E1E99229EA00E.sh"],"outputs":[""]} + "target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49-:Debug:CompileAssetCatalog /Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app /Users/evanreichard/Development/git/imagini/web_native/ios/Runner/Assets.xcassets": {"tool":"shell","description":"CompileAssetCatalog /Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app /Users/evanreichard/Development/git/imagini/web_native/ios/Runner/Assets.xcassets","inputs":["/Users/evanreichard/Development/git/imagini/web_native/ios/Runner/Assets.xcassets/","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app","",""],"outputs":["/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/assetcatalog_generated_info.plist","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Assets.car"],"args":["/Applications/Xcode.app/Contents/Developer/usr/bin/actool","--output-format","human-readable-text","--notices","--warnings","--export-dependency-info","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/assetcatalog_dependencies","--output-partial-info-plist","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/assetcatalog_generated_info.plist","--app-icon","AppIcon","--compress-pngs","--enable-on-demand-resources","YES","--filter-for-device-model","iPod9,1","--filter-for-device-os-version","14.3","--development-region","en","--target-device","iphone","--target-device","ipad","--minimum-deployment-target","9.0","--platform","iphonesimulator","--compile","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app","/Users/evanreichard/Development/git/imagini/web_native/ios/Runner/Assets.xcassets"],"env":{},"working-directory":"/Users/evanreichard/Development/git/imagini/web_native/ios","control-enabled":false,"deps":["/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/assetcatalog_dependencies"],"deps-style":"dependency-info","signature":"b2dec4affd83f6315e8ba1ad72998577"} + "target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49-:Debug:CompileC /Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.o /Users/evanreichard/Development/git/imagini/web_native/ios/Runner/GeneratedPluginRegistrant.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.o /Users/evanreichard/Development/git/imagini/web_native/ios/Runner/GeneratedPluginRegistrant.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/evanreichard/Development/git/imagini/web_native/ios/Runner/GeneratedPluginRegistrant.m","","",""],"outputs":["/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/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-simulator","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu99","-fobjc-arc","-fmodules","-gmodules","-fmodules-cache-path=/Users/evanreichard/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/evanreichard/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","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.3.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-fobjc-abi-version=2","-fobjc-legacy-dispatch","-index-store-path","/Users/evanreichard/Library/Developer/Xcode/DerivedData/Runner-fhndltpqvubmpedfgghkvsoxawhl/Index/DataStore","-iquote","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-generated-files.hmap","-I/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-own-target-headers.hmap","-I/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-all-target-headers.hmap","-iquote","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-project-headers.hmap","-I/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/include","-I/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/DKImagePickerController/DKImagePickerController.framework/Headers","-I/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/DKPhotoGallery/DKPhotoGallery.framework/Headers","-I/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/SDWebImage/SDWebImage.framework/Headers","-I/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/SwiftyGif/SwiftyGif.framework/Headers","-I/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/file_picker/file_picker.framework/Headers","-I/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/flutter_secure_storage/flutter_secure_storage.framework/Headers","-I/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/integration_test/integration_test.framework/Headers","-I/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/shared_preferences/shared_preferences.framework/Headers","-I/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/url_launcher/url_launcher.framework/Headers","-I/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources-normal/arm64","-I/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/arm64","-I/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources","-F/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator","-F/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/DKImagePickerController","-F/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/DKPhotoGallery","-F/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/SDWebImage","-F/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/SwiftyGif","-F/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/file_picker","-F/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/flutter_secure_storage","-F/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/integration_test","-F/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/shared_preferences","-F/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/url_launcher","-MMD","-MT","dependencies","-MF","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.d","--serialize-diagnostics","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.dia","-c","/Users/evanreichard/Development/git/imagini/web_native/ios/Runner/GeneratedPluginRegistrant.m","-o","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/evanreichard/Development/git/imagini/web_native/ios","deps":["/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.d"],"deps-style":"makefile","signature":"856f38d927c0be760b729bcbb0cf67b2"} + "target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49-:Debug:CompileC /Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner_vers.o /Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/Runner_vers.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner_vers.o /Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/Runner_vers.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/Runner_vers.c","","",""],"outputs":["/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/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-simulator","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu99","-fmodules","-gmodules","-fmodules-cache-path=/Users/evanreichard/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/evanreichard/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","-DCOCOAPODS=1","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.3.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/evanreichard/Library/Developer/Xcode/DerivedData/Runner-fhndltpqvubmpedfgghkvsoxawhl/Index/DataStore","-iquote","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-generated-files.hmap","-I/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-own-target-headers.hmap","-I/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-all-target-headers.hmap","-iquote","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-project-headers.hmap","-I/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/include","-I/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/DKImagePickerController/DKImagePickerController.framework/Headers","-I/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/DKPhotoGallery/DKPhotoGallery.framework/Headers","-I/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/SDWebImage/SDWebImage.framework/Headers","-I/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/SwiftyGif/SwiftyGif.framework/Headers","-I/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/file_picker/file_picker.framework/Headers","-I/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/flutter_secure_storage/flutter_secure_storage.framework/Headers","-I/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/integration_test/integration_test.framework/Headers","-I/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/shared_preferences/shared_preferences.framework/Headers","-I/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/url_launcher/url_launcher.framework/Headers","-I/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources-normal/arm64","-I/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/arm64","-I/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources","-F/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator","-F/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/DKImagePickerController","-F/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/DKPhotoGallery","-F/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/SDWebImage","-F/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/SwiftyGif","-F/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/file_picker","-F/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/flutter_secure_storage","-F/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/integration_test","-F/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/shared_preferences","-F/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/url_launcher","-MMD","-MT","dependencies","-MF","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner_vers.d","--serialize-diagnostics","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner_vers.dia","-c","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/Runner_vers.c","-o","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner_vers.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/evanreichard/Development/git/imagini/web_native/ios","deps":["/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner_vers.d"],"deps-style":"makefile","signature":"5f91811859575236df04f9d2831bb6b9"} + "target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49-:Debug:CompileStoryboard /Users/evanreichard/Development/git/imagini/web_native/ios/Runner/Base.lproj/LaunchScreen.storyboard": {"tool":"shell","description":"CompileStoryboard /Users/evanreichard/Development/git/imagini/web_native/ios/Runner/Base.lproj/LaunchScreen.storyboard","inputs":["/Users/evanreichard/Development/git/imagini/web_native/ios/Runner/Base.lproj/LaunchScreen.storyboard","",""],"outputs":["/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Base.lproj/LaunchScreen.storyboardc","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/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/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/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/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Base.lproj","/Users/evanreichard/Development/git/imagini/web_native/ios/Runner/Base.lproj/LaunchScreen.storyboard"],"env":{"XCODE_DEVELOPER_USR_PATH":"/Applications/Xcode.app/Contents/Developer/usr/bin/.."},"working-directory":"/Users/evanreichard/Development/git/imagini/web_native/ios","control-enabled":false,"signature":"2a158e92b403f29bea73c59c6b424724"} + "target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49-:Debug:CompileStoryboard /Users/evanreichard/Development/git/imagini/web_native/ios/Runner/Base.lproj/Main.storyboard": {"tool":"shell","description":"CompileStoryboard /Users/evanreichard/Development/git/imagini/web_native/ios/Runner/Base.lproj/Main.storyboard","inputs":["/Users/evanreichard/Development/git/imagini/web_native/ios/Runner/Base.lproj/Main.storyboard","",""],"outputs":["/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Base.lproj/Main.storyboardc","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/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/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/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/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Base.lproj","/Users/evanreichard/Development/git/imagini/web_native/ios/Runner/Base.lproj/Main.storyboard"],"env":{"XCODE_DEVELOPER_USR_PATH":"/Applications/Xcode.app/Contents/Developer/usr/bin/.."},"working-directory":"/Users/evanreichard/Development/git/imagini/web_native/ios","control-enabled":false,"signature":"f5d25b98dffc67d652b87a9c757a7e49"} + "target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49-:Debug:CompileSwiftSources normal arm64 com.apple.xcode.tools.swift.compiler": {"tool":"shell","description":"CompileSwiftSources normal arm64 com.apple.xcode.tools.swift.compiler","inputs":["/Users/evanreichard/Development/git/imagini/web_native/ios/Runner/AppDelegate.swift","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner.SwiftFileList","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner-OutputFileMap.json","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-generated-files.hmap","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-own-target-headers.hmap","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-all-target-headers.hmap","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-project-headers.hmap","","",""],"outputs":["/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/AppDelegate.o","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner.swiftmodule","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner.swiftsourceinfo","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner-Swift.h","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/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/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner.SwiftFileList","-D","COCOAPODS","-sdk","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.3.sdk","-target","arm64-apple-ios9.0-simulator","-g","-module-cache-path","/Users/evanreichard/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-Xfrontend","-serialize-debugging-options","-enable-testing","-index-store-path","/Users/evanreichard/Library/Developer/Xcode/DerivedData/Runner-fhndltpqvubmpedfgghkvsoxawhl/Index/DataStore","-swift-version","5","-I","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator","-F","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator","-F","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/DKImagePickerController","-F","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/DKPhotoGallery","-F","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/SDWebImage","-F","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/SwiftyGif","-F","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/file_picker","-F","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/flutter_secure_storage","-F","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/integration_test","-F","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/shared_preferences","-F","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/url_launcher","-parse-as-library","-c","-j8","-output-file-map","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner-OutputFileMap.json","-parseable-output","-serialize-diagnostics","-emit-dependencies","-emit-module","-emit-module-path","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner.swiftmodule","-Xcc","-I/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/swift-overrides.hmap","-Xcc","-iquote","-Xcc","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-generated-files.hmap","-Xcc","-I/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-own-target-headers.hmap","-Xcc","-I/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-all-target-headers.hmap","-Xcc","-iquote","-Xcc","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-project-headers.hmap","-Xcc","-I/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/include","-Xcc","-I/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/DKImagePickerController/DKImagePickerController.framework/Headers","-Xcc","-I/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/DKPhotoGallery/DKPhotoGallery.framework/Headers","-Xcc","-I/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/SDWebImage/SDWebImage.framework/Headers","-Xcc","-I/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/SwiftyGif/SwiftyGif.framework/Headers","-Xcc","-I/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/file_picker/file_picker.framework/Headers","-Xcc","-I/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/flutter_secure_storage/flutter_secure_storage.framework/Headers","-Xcc","-I/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/integration_test/integration_test.framework/Headers","-Xcc","-I/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/shared_preferences/shared_preferences.framework/Headers","-Xcc","-I/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/url_launcher/url_launcher.framework/Headers","-Xcc","-I/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources-normal/arm64","-Xcc","-I/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/arm64","-Xcc","-I/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources","-Xcc","-DDEBUG=1","-Xcc","-DCOCOAPODS=1","-emit-objc-header","-emit-objc-header-path","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner-Swift.h","-import-objc-header","/Users/evanreichard/Development/git/imagini/web_native/ios/Runner/Runner-Bridging-Header.h","-pch-output-dir","/Users/evanreichard/Development/git/imagini/web_native/build/ios/SharedPrecompiledHeaders","-working-directory","/Users/evanreichard/Development/git/imagini/web_native/ios"],"env":{"DEVELOPER_DIR":"/Applications/Xcode.app/Contents/Developer","SDKROOT":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.3.sdk"},"working-directory":"/Users/evanreichard/Development/git/imagini/web_native/ios","deps":["/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/AppDelegate.d"],"deps-style":"makefile","signature":"01b3cedaeb9f08b649209fab5c3b1dca"} + "target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49-:Debug:CopyPlistFile /Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/AppFrameworkInfo.plist /Users/evanreichard/Development/git/imagini/web_native/ios/Flutter/AppFrameworkInfo.plist": {"tool":"copy-plist","description":"CopyPlistFile /Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/AppFrameworkInfo.plist /Users/evanreichard/Development/git/imagini/web_native/ios/Flutter/AppFrameworkInfo.plist","inputs":["/Users/evanreichard/Development/git/imagini/web_native/ios/Flutter/AppFrameworkInfo.plist","",""],"outputs":["/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/AppFrameworkInfo.plist"]} + "target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49-:Debug:CopySwiftLibs /Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app": {"tool":"embed-swift-stdlib","description":"CopySwiftLibs /Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app","inputs":["/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Runner","","",""],"outputs":[""],"deps":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/SwiftStdLibToolInputDependencies.dep"} + "target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49-:Debug:CreateBuildDirectory /Users/evanreichard/Development/git/imagini/web_native/build/ios": {"tool":"create-build-directory","description":"CreateBuildDirectory /Users/evanreichard/Development/git/imagini/web_native/build/ios","inputs":[],"outputs":["","/Users/evanreichard/Development/git/imagini/web_native/build/ios"]} + "target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49-:Debug:Ditto /Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.swiftmodule/Project/arm64-apple-ios-simulator.swiftsourceinfo /Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner.swiftsourceinfo": {"tool":"shell","description":"Ditto /Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.swiftmodule/Project/arm64-apple-ios-simulator.swiftsourceinfo /Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner.swiftsourceinfo","inputs":["/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner.swiftsourceinfo","","",""],"outputs":["/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.swiftmodule/Project/arm64-apple-ios-simulator.swiftsourceinfo"],"args":["/usr/bin/ditto","-rsrc","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner.swiftsourceinfo","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.swiftmodule/Project/arm64-apple-ios-simulator.swiftsourceinfo"],"env":{},"working-directory":"/Users/evanreichard/Development/git/imagini/web_native/ios","signature":"8f9d78a37d5853676b60b25b95a1ff0c"} + "target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49-:Debug:Ditto /Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.swiftmodule/Project/arm64.swiftsourceinfo /Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner.swiftsourceinfo": {"tool":"shell","description":"Ditto /Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.swiftmodule/Project/arm64.swiftsourceinfo /Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner.swiftsourceinfo","inputs":["/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner.swiftsourceinfo","","",""],"outputs":["/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.swiftmodule/Project/arm64.swiftsourceinfo"],"args":["/usr/bin/ditto","-rsrc","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner.swiftsourceinfo","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.swiftmodule/Project/arm64.swiftsourceinfo"],"env":{},"working-directory":"/Users/evanreichard/Development/git/imagini/web_native/ios","signature":"9492fc734bca47fefaaa8e314e5a5dd8"} + "target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49-:Debug:Ditto /Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.swiftmodule/arm64-apple-ios-simulator.swiftdoc /Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner.swiftdoc": {"tool":"shell","description":"Ditto /Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.swiftmodule/arm64-apple-ios-simulator.swiftdoc /Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner.swiftdoc","inputs":["/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner.swiftdoc","","",""],"outputs":["/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.swiftmodule/arm64-apple-ios-simulator.swiftdoc"],"args":["/usr/bin/ditto","-rsrc","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner.swiftdoc","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.swiftmodule/arm64-apple-ios-simulator.swiftdoc"],"env":{},"working-directory":"/Users/evanreichard/Development/git/imagini/web_native/ios","signature":"5ba95acdbc2c5b4c764f52350038e41a"} + "target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49-:Debug:Ditto /Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.swiftmodule/arm64-apple-ios-simulator.swiftmodule /Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner.swiftmodule": {"tool":"shell","description":"Ditto /Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.swiftmodule/arm64-apple-ios-simulator.swiftmodule /Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner.swiftmodule","inputs":["/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner.swiftmodule","","",""],"outputs":["/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.swiftmodule/arm64-apple-ios-simulator.swiftmodule"],"args":["/usr/bin/ditto","-rsrc","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner.swiftmodule","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.swiftmodule/arm64-apple-ios-simulator.swiftmodule"],"env":{},"working-directory":"/Users/evanreichard/Development/git/imagini/web_native/ios","signature":"26ca7a5d939cc0cc81f18a03c00cbb1d"} + "target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49-:Debug:Ditto /Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.swiftmodule/arm64.swiftdoc /Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner.swiftdoc": {"tool":"shell","description":"Ditto /Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.swiftmodule/arm64.swiftdoc /Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner.swiftdoc","inputs":["/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner.swiftdoc","","",""],"outputs":["/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.swiftmodule/arm64.swiftdoc"],"args":["/usr/bin/ditto","-rsrc","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner.swiftdoc","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.swiftmodule/arm64.swiftdoc"],"env":{},"working-directory":"/Users/evanreichard/Development/git/imagini/web_native/ios","signature":"ec40b194d43579ea3c8266d64855ac07"} + "target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49-:Debug:Ditto /Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.swiftmodule/arm64.swiftmodule /Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner.swiftmodule": {"tool":"shell","description":"Ditto /Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.swiftmodule/arm64.swiftmodule /Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner.swiftmodule","inputs":["/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner.swiftmodule","","",""],"outputs":["/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.swiftmodule/arm64.swiftmodule"],"args":["/usr/bin/ditto","-rsrc","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner.swiftmodule","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.swiftmodule/arm64.swiftmodule"],"env":{},"working-directory":"/Users/evanreichard/Development/git/imagini/web_native/ios","signature":"5614f2b74ee4304ce4e7cdc5401b8c1d"} + "target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49-:Debug:Ditto /Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/Runner-Swift.h /Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner-Swift.h": {"tool":"shell","description":"Ditto /Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/Runner-Swift.h /Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner-Swift.h","inputs":["/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner-Swift.h","","",""],"outputs":["/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/Runner-Swift.h"],"args":["/usr/bin/ditto","-rsrc","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner-Swift.h","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/Runner-Swift.h"],"env":{},"working-directory":"/Users/evanreichard/Development/git/imagini/web_native/ios","signature":"3331a74eb8b65a6caee3103e1ba97626"} + "target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49-:Debug:Ld /Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Runner normal": {"tool":"shell","description":"Ld /Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Runner normal","inputs":["/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner_vers.o","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.o","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/AppDelegate.o","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner.LinkFileList","",""],"outputs":["/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Runner",""],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-target","arm64-apple-ios9.0-simulator","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.3.sdk","-L/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator","-F/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator","-F/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/DKImagePickerController","-F/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/DKPhotoGallery","-F/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/SDWebImage","-F/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/SwiftyGif","-F/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/file_picker","-F/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/flutter_secure_storage","-F/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/integration_test","-F/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/shared_preferences","-F/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/url_launcher","-filelist","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner.LinkFileList","-Xlinker","-rpath","-Xlinker","/usr/lib/swift","-Xlinker","-rpath","-Xlinker","@executable_path/Frameworks","-Xlinker","-rpath","-Xlinker","@loader_path/Frameworks","-Xlinker","-rpath","-Xlinker","@executable_path/Frameworks","-dead_strip","-Xlinker","-object_path_lto","-Xlinker","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner_lto.o","-Xlinker","-export_dynamic","-Xlinker","-no_deduplicate","-Xlinker","-objc_abi_version","-Xlinker","2","-fobjc-arc","-fobjc-link-runtime","-L/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator","-L/usr/lib/swift","-Xlinker","-add_ast_path","-Xlinker","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner.swiftmodule","-framework","AVFoundation","-framework","AVKit","-framework","DKImagePickerController","-framework","DKPhotoGallery","-framework","Foundation","-framework","ImageIO","-framework","Photos","-framework","SDWebImage","-framework","SwiftyGif","-framework","UIKit","-framework","file_picker","-framework","flutter_secure_storage","-framework","integration_test","-framework","shared_preferences","-framework","url_launcher","-framework","Pods_Runner","-Xlinker","-dependency_info","-Xlinker","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner_dependency_info.dat","-o","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Runner"],"env":{},"working-directory":"/Users/evanreichard/Development/git/imagini/web_native/ios","deps":["/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner_dependency_info.dat"],"deps-style":"dependency-info","signature":"35606cbf0596650074b202cb68c1d5f3"} + "target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49-:Debug:LinkStoryboards": {"tool":"shell","description":"LinkStoryboards","inputs":["/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Base.lproj/LaunchScreen.storyboardc","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Base.lproj/Main.storyboardc","",""],"outputs":["/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Base.lproj/LaunchScreen.storyboardc","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/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/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Base.lproj/LaunchScreen.storyboardc","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Base.lproj/Main.storyboardc"],"env":{"XCODE_DEVELOPER_USR_PATH":"/Applications/Xcode.app/Contents/Developer/usr/bin/.."},"working-directory":"/Users/evanreichard/Development/git/imagini/web_native/ios","control-enabled":false,"signature":"2c2a76918c7c313949e4bfe3535f7a7b"} + "target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49-:Debug:MkDir /Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app": {"tool":"mkdir","description":"MkDir /Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app","inputs":["",""],"outputs":["/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app",""]} + "target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49-:Debug:MkDir /Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Frameworks": {"tool":"mkdir","description":"MkDir /Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Frameworks","inputs":["",""],"outputs":["/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Frameworks",""]} + "target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49-:Debug:PhaseScriptExecution Run Script /Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-9740EEB61CF901F6004384FC.sh": {"tool":"shell","description":"PhaseScriptExecution Run Script /Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-9740EEB61CF901F6004384FC.sh","inputs":["/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-9740EEB61CF901F6004384FC.sh","",""],"outputs":[""],"args":["/bin/sh","-c","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-9740EEB61CF901F6004384FC.sh"],"env":{"ACTION":"build","AD_HOC_CODE_SIGNING_ALLOWED":"YES","ALTERNATE_GROUP":"staff","ALTERNATE_MODE":"u+w,go-w,a+rX","ALTERNATE_OWNER":"evanreichard","ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES":"YES","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 x86_64 i386","ARCHS_STANDARD_32_64_BIT":"arm64 i386 x86_64","ARCHS_STANDARD_32_BIT":"i386","ARCHS_STANDARD_64_BIT":"arm64 x86_64","ARCHS_STANDARD_INCLUDING_64_BIT":"arm64 x86_64 i386","ARCHS_UNIVERSAL_IPHONE_OS":"arm64 i386 x86_64","ASSETCATALOG_COMPILER_APPICON_NAME":"AppIcon","ASSETCATALOG_FILTER_FOR_DEVICE_MODEL":"iPod9,1","ASSETCATALOG_FILTER_FOR_DEVICE_OS_VERSION":"14.3","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/evanreichard/Development/git/imagini/web_native/build/ios","BUILD_LIBRARY_FOR_DISTRIBUTION":"NO","BUILD_ROOT":"/Users/evanreichard/Development/git/imagini/web_native/build/ios","BUILD_STYLE":"","BUILD_VARIANTS":"normal","BUILT_PRODUCTS_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator","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/lb/1_tw174n65x__3txp1gcj4k00000gn/C/com.apple.DeveloperTools/12.3-12C33/Xcode","CCHROOT":"/var/folders/lb/1_tw174n65x__3txp1gcj4k00000gn/C/com.apple.DeveloperTools/12.3-12C33/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/evanreichard/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":"NO","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/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/JavaClasses","CLEAN_PRECOMPS":"YES","CLONE_HEADERS":"NO","CODESIGNING_FOLDER_PATH":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app","CODE_SIGNING_ALLOWED":"YES","CODE_SIGNING_REQUIRED":"YES","CODE_SIGN_CONTEXT_CLASS":"XCiPhoneSimulatorCodeSignContext","CODE_SIGN_IDENTITY":"-","CODE_SIGN_INJECT_BASE_ENTITLEMENTS":"YES","COLOR_DIAGNOSTICS":"NO","COMBINE_HIDPI_IMAGES":"NO","COMPILER_INDEX_STORE_ENABLE":"Default","COMPOSITE_SDK_DIRS":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/CompositeSDKs","COMPRESS_PNG_FILES":"YES","CONFIGURATION":"Debug","CONFIGURATION_BUILD_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator","CONFIGURATION_TEMP_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator","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_DEVICE_PLATFORM_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform","CORRESPONDING_DEVICE_PLATFORM_NAME":"iphoneos","CORRESPONDING_DEVICE_SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.3.sdk","CORRESPONDING_DEVICE_SDK_NAME":"iphoneos14.3","CP":"/bin/cp","CREATE_INFOPLIST_SECTION_IN_BINARY":"NO","CURRENT_ARCH":"undefined_arch","CURRENT_PROJECT_VERSION":"1","CURRENT_VARIANT":"normal","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":"mios-simulator-version-min","DEPLOYMENT_TARGET_CLANG_FLAG_PREFIX":"-mios-simulator-version-min=","DEPLOYMENT_TARGET_LD_ENV_NAME":"IPHONEOS_DEPLOYMENT_TARGET","DEPLOYMENT_TARGET_LD_FLAG_NAME":"ios_simulator_version_min","DEPLOYMENT_TARGET_SETTING_NAME":"IPHONEOS_DEPLOYMENT_TARGET","DEPLOYMENT_TARGET_SUGGESTED_VALUES":"9.0 9.1 9.2 9.3 10.0 10.1 10.2 10.3 11.0 11.1 11.2 11.3 11.4 12.0 12.1 12.2 12.3 12.4 13.0 13.1 13.2 13.3 13.4 13.5 13.6 14.0 14.1 14.2 14.3","DERIVED_FILES_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources","DERIVED_FILE_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources","DERIVED_SOURCES_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources","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/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator","EFFECTIVE_PLATFORM_NAME":"-iphonesimulator","EMBEDDED_CONTENT_CONTAINS_SWIFT":"NO","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_DESTINATION":"__entitlements","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/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects/LinkFileList","FIXED_FILES_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/FixedFiles","FLUTTER_APPLICATION_PATH":"/Users/evanreichard/Development/git/imagini/web_native","FLUTTER_BUILD_DIR":"build","FLUTTER_BUILD_NAME":"1.0.0","FLUTTER_BUILD_NUMBER":"1","FLUTTER_ROOT":"/Users/evanreichard/Development/Tools/flutter","FLUTTER_TARGET":"/Users/evanreichard/Development/git/imagini/web_native/lib/main.dart","FRAMEWORKS_FOLDER_PATH":"Runner.app/Frameworks","FRAMEWORK_FLAG_PREFIX":"-framework","FRAMEWORK_SEARCH_PATHS":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator \"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/DKImagePickerController\" \"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/DKPhotoGallery\" \"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/SDWebImage\" \"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/SwiftyGif\" \"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/file_picker\" \"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/flutter_secure_storage\" \"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/integration_test\" \"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/shared_preferences\" \"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/url_launcher\"","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_OBJC_LEGACY_DISPATCH":"YES","GCC_OPTIMIZATION_LEVEL":"0","GCC_PFE_FILE_C_DIALECTS":"c objective-c c++ objective-c++","GCC_PREPROCESSOR_DEFINITIONS":"DEBUG=1 COCOAPODS=1","GCC_SYMBOLS_PRIVATE_EXTERN":"NO","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/evanreichard/Development/git/imagini/web_native/build/ios/GeneratedModuleMaps-iphonesimulator","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/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/include \"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/DKImagePickerController/DKImagePickerController.framework/Headers\" \"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/DKPhotoGallery/DKPhotoGallery.framework/Headers\" \"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/SDWebImage/SDWebImage.framework/Headers\" \"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/SwiftyGif/SwiftyGif.framework/Headers\" \"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/file_picker/file_picker.framework/Headers\" \"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/flutter_secure_storage/flutter_secure_storage.framework/Headers\" \"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/integration_test/integration_test.framework/Headers\" \"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/shared_preferences/shared_preferences.framework/Headers\" \"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/url_launcher/url_launcher.framework/Headers\"","HIDE_BITCODE_SYMBOLS":"YES","HOME":"/Users/evanreichard","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":"evanreichard","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","KEEP_PRIVATE_EXTERNS":"NO","LD_DEPENDENCY_INFO_FILE":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/undefined_arch/Runner_dependency_info.dat","LD_GENERATE_MAP_FILE":"NO","LD_MAP_FILE_PATH":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/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' '@loader_path/Frameworks' @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/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator ","LINKER_DISPLAYS_MANGLED_NAMES":"NO","LINK_FILE_LIST_normal_arm64":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner.LinkFileList","LINK_WITH_STANDARD_LIBRARIES":"YES","LLVM_TARGET_TRIPLE_OS_VERSION":"ios9.0","LLVM_TARGET_TRIPLE_SUFFIX":"-simulator","LLVM_TARGET_TRIPLE_VENDOR":"apple","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/evanreichard/Development/git/imagini/web_native/ios","LOCSYMROOT":"/Users/evanreichard/Development/git/imagini/web_native/ios","MACH_O_TYPE":"mh_execute","MAC_OS_X_PRODUCT_BUILD_VERSION":"20C69","MAC_OS_X_VERSION_ACTUAL":"110100","MAC_OS_X_VERSION_MAJOR":"110000","MAC_OS_X_VERSION_MINOR":"110100","METAL_LIBRARY_FILE_BASE":"default","METAL_LIBRARY_OUTPUT_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app","MODULES_FOLDER_PATH":"Runner.app/Modules","MODULE_CACHE_DIR":"/Users/evanreichard/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","MTL_ENABLE_DEBUG_INFO":"YES","NATIVE_ARCH":"arm64","NATIVE_ARCH_32_BIT":"arm","NATIVE_ARCH_64_BIT":"arm64","NATIVE_ARCH_ACTUAL":"arm64","NO_COMMON":"YES","OBJC_ABI_VERSION":"2","OBJECT_FILE_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects","OBJECT_FILE_DIR_normal":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal","OBJROOT":"/Users/evanreichard/Development/git/imagini/web_native/build/ios","ONLY_ACTIVE_ARCH":"YES","OS":"MACOS","OSAC":"/usr/bin/osacompile","OTHER_LDFLAGS":" -framework \"AVFoundation\" -framework \"AVKit\" -framework \"DKImagePickerController\" -framework \"DKPhotoGallery\" -framework \"Foundation\" -framework \"ImageIO\" -framework \"Photos\" -framework \"SDWebImage\" -framework \"SwiftyGif\" -framework \"UIKit\" -framework \"file_picker\" -framework \"flutter_secure_storage\" -framework \"integration_test\" -framework \"shared_preferences\" -framework \"url_launcher\"","OTHER_SWIFT_FLAGS":" -D COCOAPODS","PACKAGE_CONFIG":"/Users/evanreichard/Development/git/imagini/web_native/.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/iPhoneSimulator.platform/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.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/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/undefined_arch","PER_VARIANT_OBJECT_FILE_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal","PKGINFO_FILE_PATH":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/PkgInfo","PKGINFO_PATH":"Runner.app/PkgInfo","PLATFORM_DEVELOPER_APPLICATIONS_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Applications","PLATFORM_DEVELOPER_BIN_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin","PLATFORM_DEVELOPER_LIBRARY_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library","PLATFORM_DEVELOPER_SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs","PLATFORM_DEVELOPER_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Tools","PLATFORM_DEVELOPER_USR_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr","PLATFORM_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform","PLATFORM_DISPLAY_NAME":"iOS Simulator","PLATFORM_FAMILY_NAME":"iOS","PLATFORM_NAME":"iphonesimulator","PLATFORM_PREFERRED_ARCH":"x86_64","PLATFORM_PRODUCT_BUILD_VERSION":"18C61","PLIST_FILE_OUTPUT_FORMAT":"binary","PLUGINS_FOLDER_PATH":"Runner.app/PlugIns","PODS_BUILD_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios","PODS_CONFIGURATION_BUILD_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator","PODS_PODFILE_DIR_PATH":"/Users/evanreichard/Development/git/imagini/web_native/ios/.","PODS_ROOT":"/Users/evanreichard/Development/git/imagini/web_native/ios/Pods","PODS_XCFRAMEWORKS_BUILD_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates","PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR":"YES","PRECOMP_DESTINATION_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/PrefixHeaders","PRESERVE_DEAD_CODE_INITS_AND_TERMS":"NO","PRIVATE_HEADERS_FOLDER_PATH":"Runner.app/PrivateHeaders","PRODUCT_BUNDLE_IDENTIFIER":"com.reichard.imagini","PRODUCT_BUNDLE_PACKAGE_TYPE":"APPL","PRODUCT_MODULE_NAME":"Runner","PRODUCT_NAME":"Runner","PRODUCT_SETTINGS_PATH":"/Users/evanreichard/Development/git/imagini/web_native/ios/Runner/Info.plist","PRODUCT_TYPE":"com.apple.product-type.application","PROFILING_CODE":"NO","PROJECT":"Runner","PROJECT_DERIVED_FILE_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/DerivedSources","PROJECT_DIR":"/Users/evanreichard/Development/git/imagini/web_native/ios","PROJECT_FILE_PATH":"/Users/evanreichard/Development/git/imagini/web_native/ios/Runner.xcodeproj","PROJECT_NAME":"Runner","PROJECT_TEMP_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build","PROJECT_TEMP_ROOT":"/Users/evanreichard/Development/git/imagini/web_native/build/ios","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","REZ_COLLECTOR_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/ResourceManagerResources","REZ_OBJECTS_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/ResourceManagerResources/Objects","REZ_SEARCH_PATHS":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator ","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/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.3.sdk","SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.3.sdk","SDK_DIR_iphonesimulator14_3":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.3.sdk","SDK_NAME":"iphonesimulator14.3","SDK_NAMES":"iphonesimulator14.3","SDK_PRODUCT_BUILD_VERSION":"18C61","SDK_VERSION":"14.3","SDK_VERSION_ACTUAL":"140300","SDK_VERSION_MAJOR":"140000","SDK_VERSION_MINOR":"140300","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/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/DerivedSources","SHARED_FRAMEWORKS_FOLDER_PATH":"Runner.app/SharedFrameworks","SHARED_PRECOMPS_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/SharedPrecompiledHeaders","SHARED_SUPPORT_FOLDER_PATH":"Runner.app/SharedSupport","SKIP_INSTALL":"NO","SOURCE_ROOT":"/Users/evanreichard/Development/git/imagini/web_native/ios","SRCROOT":"/Users/evanreichard/Development/git/imagini/web_native/ios","STRINGS_FILE_OUTPUT_ENCODING":"binary","STRIP_BITCODE_FROM_COPIED_FILES":"NO","STRIP_INSTALLED_PRODUCT":"YES","STRIP_STYLE":"all","STRIP_SWIFT_SYMBOLS":"YES","SUPPORTED_DEVICE_FAMILIES":"1,2","SUPPORTED_PLATFORMS":"iphoneos iphonesimulator","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/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner.SwiftFileList","SWIFT_VERSION":"5.0","SYMROOT":"/Users/evanreichard/Development/git/imagini/web_native/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/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator","TARGET_DEVICE_IDENTIFIER":"CA4B966C-C239-47D2-AC10-9BE04BC1E3D5","TARGET_DEVICE_MODEL":"iPod9,1","TARGET_DEVICE_OS_VERSION":"14.3","TARGET_NAME":"Runner","TARGET_TEMP_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build","TEMP_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build","TEMP_FILES_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build","TEMP_FILE_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build","TEMP_ROOT":"/Users/evanreichard/Development/git/imagini/web_native/build/ios","TEST_FRAMEWORK_SEARCH_PATHS":" /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.3.sdk/Developer/Library/Frameworks","TEST_LIBRARY_SEARCH_PATHS":" /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.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":"evanreichard","USER_APPS_DIR":"/Users/evanreichard/Applications","USER_LIBRARY_DIR":"/Users/evanreichard/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","USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES":"YES","VALIDATE_DEVELOPMENT_ASSET_PATHS":"YES_ERROR","VALIDATE_PRODUCT":"NO","VALIDATE_WORKSPACE":"YES_ERROR","VALID_ARCHS":"arm64 arm64e i386 x86_64","VERBOSE_PBXCP":"NO","VERSIONING_SYSTEM":"apple-generic","VERSIONPLIST_PATH":"Runner.app/version.plist","VERSION_INFO_BUILDER":"evanreichard","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":"12C33","XCODE_VERSION_ACTUAL":"1230","XCODE_VERSION_MAJOR":"1200","XCODE_VERSION_MINOR":"1230","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/evanreichard/Development/git/imagini/web_native/ios","control-enabled":false,"signature":"13c7a2c5085b256c4937b076d9178554"} + "target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49-:Debug:PhaseScriptExecution Thin Binary /Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh": {"tool":"shell","description":"PhaseScriptExecution Thin Binary /Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh","inputs":["/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh","",""],"outputs":[""],"args":["/bin/sh","-c","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh"],"env":{"ACTION":"build","AD_HOC_CODE_SIGNING_ALLOWED":"YES","ALTERNATE_GROUP":"staff","ALTERNATE_MODE":"u+w,go-w,a+rX","ALTERNATE_OWNER":"evanreichard","ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES":"YES","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 x86_64 i386","ARCHS_STANDARD_32_64_BIT":"arm64 i386 x86_64","ARCHS_STANDARD_32_BIT":"i386","ARCHS_STANDARD_64_BIT":"arm64 x86_64","ARCHS_STANDARD_INCLUDING_64_BIT":"arm64 x86_64 i386","ARCHS_UNIVERSAL_IPHONE_OS":"arm64 i386 x86_64","ASSETCATALOG_COMPILER_APPICON_NAME":"AppIcon","ASSETCATALOG_FILTER_FOR_DEVICE_MODEL":"iPod9,1","ASSETCATALOG_FILTER_FOR_DEVICE_OS_VERSION":"14.3","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/evanreichard/Development/git/imagini/web_native/build/ios","BUILD_LIBRARY_FOR_DISTRIBUTION":"NO","BUILD_ROOT":"/Users/evanreichard/Development/git/imagini/web_native/build/ios","BUILD_STYLE":"","BUILD_VARIANTS":"normal","BUILT_PRODUCTS_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator","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/lb/1_tw174n65x__3txp1gcj4k00000gn/C/com.apple.DeveloperTools/12.3-12C33/Xcode","CCHROOT":"/var/folders/lb/1_tw174n65x__3txp1gcj4k00000gn/C/com.apple.DeveloperTools/12.3-12C33/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/evanreichard/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":"NO","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/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/JavaClasses","CLEAN_PRECOMPS":"YES","CLONE_HEADERS":"NO","CODESIGNING_FOLDER_PATH":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app","CODE_SIGNING_ALLOWED":"YES","CODE_SIGNING_REQUIRED":"YES","CODE_SIGN_CONTEXT_CLASS":"XCiPhoneSimulatorCodeSignContext","CODE_SIGN_IDENTITY":"-","CODE_SIGN_INJECT_BASE_ENTITLEMENTS":"YES","COLOR_DIAGNOSTICS":"NO","COMBINE_HIDPI_IMAGES":"NO","COMPILER_INDEX_STORE_ENABLE":"Default","COMPOSITE_SDK_DIRS":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/CompositeSDKs","COMPRESS_PNG_FILES":"YES","CONFIGURATION":"Debug","CONFIGURATION_BUILD_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator","CONFIGURATION_TEMP_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator","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_DEVICE_PLATFORM_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform","CORRESPONDING_DEVICE_PLATFORM_NAME":"iphoneos","CORRESPONDING_DEVICE_SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.3.sdk","CORRESPONDING_DEVICE_SDK_NAME":"iphoneos14.3","CP":"/bin/cp","CREATE_INFOPLIST_SECTION_IN_BINARY":"NO","CURRENT_ARCH":"undefined_arch","CURRENT_PROJECT_VERSION":"1","CURRENT_VARIANT":"normal","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":"mios-simulator-version-min","DEPLOYMENT_TARGET_CLANG_FLAG_PREFIX":"-mios-simulator-version-min=","DEPLOYMENT_TARGET_LD_ENV_NAME":"IPHONEOS_DEPLOYMENT_TARGET","DEPLOYMENT_TARGET_LD_FLAG_NAME":"ios_simulator_version_min","DEPLOYMENT_TARGET_SETTING_NAME":"IPHONEOS_DEPLOYMENT_TARGET","DEPLOYMENT_TARGET_SUGGESTED_VALUES":"9.0 9.1 9.2 9.3 10.0 10.1 10.2 10.3 11.0 11.1 11.2 11.3 11.4 12.0 12.1 12.2 12.3 12.4 13.0 13.1 13.2 13.3 13.4 13.5 13.6 14.0 14.1 14.2 14.3","DERIVED_FILES_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources","DERIVED_FILE_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources","DERIVED_SOURCES_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources","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/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator","EFFECTIVE_PLATFORM_NAME":"-iphonesimulator","EMBEDDED_CONTENT_CONTAINS_SWIFT":"NO","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_DESTINATION":"__entitlements","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/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects/LinkFileList","FIXED_FILES_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/FixedFiles","FLUTTER_APPLICATION_PATH":"/Users/evanreichard/Development/git/imagini/web_native","FLUTTER_BUILD_DIR":"build","FLUTTER_BUILD_NAME":"1.0.0","FLUTTER_BUILD_NUMBER":"1","FLUTTER_ROOT":"/Users/evanreichard/Development/Tools/flutter","FLUTTER_TARGET":"/Users/evanreichard/Development/git/imagini/web_native/lib/main.dart","FRAMEWORKS_FOLDER_PATH":"Runner.app/Frameworks","FRAMEWORK_FLAG_PREFIX":"-framework","FRAMEWORK_SEARCH_PATHS":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator \"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/DKImagePickerController\" \"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/DKPhotoGallery\" \"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/SDWebImage\" \"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/SwiftyGif\" \"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/file_picker\" \"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/flutter_secure_storage\" \"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/integration_test\" \"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/shared_preferences\" \"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/url_launcher\"","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_OBJC_LEGACY_DISPATCH":"YES","GCC_OPTIMIZATION_LEVEL":"0","GCC_PFE_FILE_C_DIALECTS":"c objective-c c++ objective-c++","GCC_PREPROCESSOR_DEFINITIONS":"DEBUG=1 COCOAPODS=1","GCC_SYMBOLS_PRIVATE_EXTERN":"NO","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/evanreichard/Development/git/imagini/web_native/build/ios/GeneratedModuleMaps-iphonesimulator","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/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/include \"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/DKImagePickerController/DKImagePickerController.framework/Headers\" \"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/DKPhotoGallery/DKPhotoGallery.framework/Headers\" \"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/SDWebImage/SDWebImage.framework/Headers\" \"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/SwiftyGif/SwiftyGif.framework/Headers\" \"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/file_picker/file_picker.framework/Headers\" \"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/flutter_secure_storage/flutter_secure_storage.framework/Headers\" \"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/integration_test/integration_test.framework/Headers\" \"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/shared_preferences/shared_preferences.framework/Headers\" \"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/url_launcher/url_launcher.framework/Headers\"","HIDE_BITCODE_SYMBOLS":"YES","HOME":"/Users/evanreichard","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":"evanreichard","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","KEEP_PRIVATE_EXTERNS":"NO","LD_DEPENDENCY_INFO_FILE":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/undefined_arch/Runner_dependency_info.dat","LD_GENERATE_MAP_FILE":"NO","LD_MAP_FILE_PATH":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/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' '@loader_path/Frameworks' @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/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator ","LINKER_DISPLAYS_MANGLED_NAMES":"NO","LINK_FILE_LIST_normal_arm64":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner.LinkFileList","LINK_WITH_STANDARD_LIBRARIES":"YES","LLVM_TARGET_TRIPLE_OS_VERSION":"ios9.0","LLVM_TARGET_TRIPLE_SUFFIX":"-simulator","LLVM_TARGET_TRIPLE_VENDOR":"apple","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/evanreichard/Development/git/imagini/web_native/ios","LOCSYMROOT":"/Users/evanreichard/Development/git/imagini/web_native/ios","MACH_O_TYPE":"mh_execute","MAC_OS_X_PRODUCT_BUILD_VERSION":"20C69","MAC_OS_X_VERSION_ACTUAL":"110100","MAC_OS_X_VERSION_MAJOR":"110000","MAC_OS_X_VERSION_MINOR":"110100","METAL_LIBRARY_FILE_BASE":"default","METAL_LIBRARY_OUTPUT_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app","MODULES_FOLDER_PATH":"Runner.app/Modules","MODULE_CACHE_DIR":"/Users/evanreichard/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","MTL_ENABLE_DEBUG_INFO":"YES","NATIVE_ARCH":"arm64","NATIVE_ARCH_32_BIT":"arm","NATIVE_ARCH_64_BIT":"arm64","NATIVE_ARCH_ACTUAL":"arm64","NO_COMMON":"YES","OBJC_ABI_VERSION":"2","OBJECT_FILE_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects","OBJECT_FILE_DIR_normal":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal","OBJROOT":"/Users/evanreichard/Development/git/imagini/web_native/build/ios","ONLY_ACTIVE_ARCH":"YES","OS":"MACOS","OSAC":"/usr/bin/osacompile","OTHER_LDFLAGS":" -framework \"AVFoundation\" -framework \"AVKit\" -framework \"DKImagePickerController\" -framework \"DKPhotoGallery\" -framework \"Foundation\" -framework \"ImageIO\" -framework \"Photos\" -framework \"SDWebImage\" -framework \"SwiftyGif\" -framework \"UIKit\" -framework \"file_picker\" -framework \"flutter_secure_storage\" -framework \"integration_test\" -framework \"shared_preferences\" -framework \"url_launcher\"","OTHER_SWIFT_FLAGS":" -D COCOAPODS","PACKAGE_CONFIG":"/Users/evanreichard/Development/git/imagini/web_native/.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/iPhoneSimulator.platform/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.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/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/undefined_arch","PER_VARIANT_OBJECT_FILE_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal","PKGINFO_FILE_PATH":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/PkgInfo","PKGINFO_PATH":"Runner.app/PkgInfo","PLATFORM_DEVELOPER_APPLICATIONS_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Applications","PLATFORM_DEVELOPER_BIN_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin","PLATFORM_DEVELOPER_LIBRARY_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library","PLATFORM_DEVELOPER_SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs","PLATFORM_DEVELOPER_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Tools","PLATFORM_DEVELOPER_USR_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr","PLATFORM_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform","PLATFORM_DISPLAY_NAME":"iOS Simulator","PLATFORM_FAMILY_NAME":"iOS","PLATFORM_NAME":"iphonesimulator","PLATFORM_PREFERRED_ARCH":"x86_64","PLATFORM_PRODUCT_BUILD_VERSION":"18C61","PLIST_FILE_OUTPUT_FORMAT":"binary","PLUGINS_FOLDER_PATH":"Runner.app/PlugIns","PODS_BUILD_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios","PODS_CONFIGURATION_BUILD_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator","PODS_PODFILE_DIR_PATH":"/Users/evanreichard/Development/git/imagini/web_native/ios/.","PODS_ROOT":"/Users/evanreichard/Development/git/imagini/web_native/ios/Pods","PODS_XCFRAMEWORKS_BUILD_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates","PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR":"YES","PRECOMP_DESTINATION_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/PrefixHeaders","PRESERVE_DEAD_CODE_INITS_AND_TERMS":"NO","PRIVATE_HEADERS_FOLDER_PATH":"Runner.app/PrivateHeaders","PRODUCT_BUNDLE_IDENTIFIER":"com.reichard.imagini","PRODUCT_BUNDLE_PACKAGE_TYPE":"APPL","PRODUCT_MODULE_NAME":"Runner","PRODUCT_NAME":"Runner","PRODUCT_SETTINGS_PATH":"/Users/evanreichard/Development/git/imagini/web_native/ios/Runner/Info.plist","PRODUCT_TYPE":"com.apple.product-type.application","PROFILING_CODE":"NO","PROJECT":"Runner","PROJECT_DERIVED_FILE_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/DerivedSources","PROJECT_DIR":"/Users/evanreichard/Development/git/imagini/web_native/ios","PROJECT_FILE_PATH":"/Users/evanreichard/Development/git/imagini/web_native/ios/Runner.xcodeproj","PROJECT_NAME":"Runner","PROJECT_TEMP_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build","PROJECT_TEMP_ROOT":"/Users/evanreichard/Development/git/imagini/web_native/build/ios","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","REZ_COLLECTOR_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/ResourceManagerResources","REZ_OBJECTS_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/ResourceManagerResources/Objects","REZ_SEARCH_PATHS":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator ","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/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.3.sdk","SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.3.sdk","SDK_DIR_iphonesimulator14_3":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.3.sdk","SDK_NAME":"iphonesimulator14.3","SDK_NAMES":"iphonesimulator14.3","SDK_PRODUCT_BUILD_VERSION":"18C61","SDK_VERSION":"14.3","SDK_VERSION_ACTUAL":"140300","SDK_VERSION_MAJOR":"140000","SDK_VERSION_MINOR":"140300","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/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/DerivedSources","SHARED_FRAMEWORKS_FOLDER_PATH":"Runner.app/SharedFrameworks","SHARED_PRECOMPS_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/SharedPrecompiledHeaders","SHARED_SUPPORT_FOLDER_PATH":"Runner.app/SharedSupport","SKIP_INSTALL":"NO","SOURCE_ROOT":"/Users/evanreichard/Development/git/imagini/web_native/ios","SRCROOT":"/Users/evanreichard/Development/git/imagini/web_native/ios","STRINGS_FILE_OUTPUT_ENCODING":"binary","STRIP_BITCODE_FROM_COPIED_FILES":"NO","STRIP_INSTALLED_PRODUCT":"YES","STRIP_STYLE":"all","STRIP_SWIFT_SYMBOLS":"YES","SUPPORTED_DEVICE_FAMILIES":"1,2","SUPPORTED_PLATFORMS":"iphoneos iphonesimulator","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/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner.SwiftFileList","SWIFT_VERSION":"5.0","SYMROOT":"/Users/evanreichard/Development/git/imagini/web_native/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/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator","TARGET_DEVICE_IDENTIFIER":"CA4B966C-C239-47D2-AC10-9BE04BC1E3D5","TARGET_DEVICE_MODEL":"iPod9,1","TARGET_DEVICE_OS_VERSION":"14.3","TARGET_NAME":"Runner","TARGET_TEMP_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build","TEMP_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build","TEMP_FILES_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build","TEMP_FILE_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build","TEMP_ROOT":"/Users/evanreichard/Development/git/imagini/web_native/build/ios","TEST_FRAMEWORK_SEARCH_PATHS":" /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.3.sdk/Developer/Library/Frameworks","TEST_LIBRARY_SEARCH_PATHS":" /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.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":"evanreichard","USER_APPS_DIR":"/Users/evanreichard/Applications","USER_LIBRARY_DIR":"/Users/evanreichard/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","USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES":"YES","VALIDATE_DEVELOPMENT_ASSET_PATHS":"YES_ERROR","VALIDATE_PRODUCT":"NO","VALIDATE_WORKSPACE":"YES_ERROR","VALID_ARCHS":"arm64 arm64e i386 x86_64","VERBOSE_PBXCP":"NO","VERSIONING_SYSTEM":"apple-generic","VERSIONPLIST_PATH":"Runner.app/version.plist","VERSION_INFO_BUILDER":"evanreichard","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":"12C33","XCODE_VERSION_ACTUAL":"1230","XCODE_VERSION_MAJOR":"1200","XCODE_VERSION_MINOR":"1230","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/evanreichard/Development/git/imagini/web_native/ios","control-enabled":false,"signature":"562d9ca524d6169d6a172328d2d8a829"} + "target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49-:Debug:PhaseScriptExecution [CP] Check Pods Manifest.lock /Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-D86A7985AAC25B64F99FB7F7.sh": {"tool":"shell","description":"PhaseScriptExecution [CP] Check Pods Manifest.lock /Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-D86A7985AAC25B64F99FB7F7.sh","inputs":["/Users/evanreichard/Development/git/imagini/web_native/ios/Podfile.lock/","/Users/evanreichard/Development/git/imagini/web_native/ios/Pods/Manifest.lock/","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-D86A7985AAC25B64F99FB7F7.sh","",""],"outputs":["/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/Pods-Runner-checkManifestLockResult.txt"],"args":["/bin/sh","-c","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-D86A7985AAC25B64F99FB7F7.sh"],"env":{"ACTION":"build","AD_HOC_CODE_SIGNING_ALLOWED":"YES","ALTERNATE_GROUP":"staff","ALTERNATE_MODE":"u+w,go-w,a+rX","ALTERNATE_OWNER":"evanreichard","ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES":"YES","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 x86_64 i386","ARCHS_STANDARD_32_64_BIT":"arm64 i386 x86_64","ARCHS_STANDARD_32_BIT":"i386","ARCHS_STANDARD_64_BIT":"arm64 x86_64","ARCHS_STANDARD_INCLUDING_64_BIT":"arm64 x86_64 i386","ARCHS_UNIVERSAL_IPHONE_OS":"arm64 i386 x86_64","ASSETCATALOG_COMPILER_APPICON_NAME":"AppIcon","ASSETCATALOG_FILTER_FOR_DEVICE_MODEL":"iPod9,1","ASSETCATALOG_FILTER_FOR_DEVICE_OS_VERSION":"14.3","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/evanreichard/Development/git/imagini/web_native/build/ios","BUILD_LIBRARY_FOR_DISTRIBUTION":"NO","BUILD_ROOT":"/Users/evanreichard/Development/git/imagini/web_native/build/ios","BUILD_STYLE":"","BUILD_VARIANTS":"normal","BUILT_PRODUCTS_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator","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/lb/1_tw174n65x__3txp1gcj4k00000gn/C/com.apple.DeveloperTools/12.3-12C33/Xcode","CCHROOT":"/var/folders/lb/1_tw174n65x__3txp1gcj4k00000gn/C/com.apple.DeveloperTools/12.3-12C33/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/evanreichard/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":"NO","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/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/JavaClasses","CLEAN_PRECOMPS":"YES","CLONE_HEADERS":"NO","CODESIGNING_FOLDER_PATH":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app","CODE_SIGNING_ALLOWED":"YES","CODE_SIGNING_REQUIRED":"YES","CODE_SIGN_CONTEXT_CLASS":"XCiPhoneSimulatorCodeSignContext","CODE_SIGN_IDENTITY":"-","CODE_SIGN_INJECT_BASE_ENTITLEMENTS":"YES","COLOR_DIAGNOSTICS":"NO","COMBINE_HIDPI_IMAGES":"NO","COMPILER_INDEX_STORE_ENABLE":"Default","COMPOSITE_SDK_DIRS":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/CompositeSDKs","COMPRESS_PNG_FILES":"YES","CONFIGURATION":"Debug","CONFIGURATION_BUILD_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator","CONFIGURATION_TEMP_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator","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_DEVICE_PLATFORM_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform","CORRESPONDING_DEVICE_PLATFORM_NAME":"iphoneos","CORRESPONDING_DEVICE_SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.3.sdk","CORRESPONDING_DEVICE_SDK_NAME":"iphoneos14.3","CP":"/bin/cp","CREATE_INFOPLIST_SECTION_IN_BINARY":"NO","CURRENT_ARCH":"undefined_arch","CURRENT_PROJECT_VERSION":"1","CURRENT_VARIANT":"normal","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":"mios-simulator-version-min","DEPLOYMENT_TARGET_CLANG_FLAG_PREFIX":"-mios-simulator-version-min=","DEPLOYMENT_TARGET_LD_ENV_NAME":"IPHONEOS_DEPLOYMENT_TARGET","DEPLOYMENT_TARGET_LD_FLAG_NAME":"ios_simulator_version_min","DEPLOYMENT_TARGET_SETTING_NAME":"IPHONEOS_DEPLOYMENT_TARGET","DEPLOYMENT_TARGET_SUGGESTED_VALUES":"9.0 9.1 9.2 9.3 10.0 10.1 10.2 10.3 11.0 11.1 11.2 11.3 11.4 12.0 12.1 12.2 12.3 12.4 13.0 13.1 13.2 13.3 13.4 13.5 13.6 14.0 14.1 14.2 14.3","DERIVED_FILES_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources","DERIVED_FILE_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources","DERIVED_SOURCES_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources","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/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator","EFFECTIVE_PLATFORM_NAME":"-iphonesimulator","EMBEDDED_CONTENT_CONTAINS_SWIFT":"NO","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_DESTINATION":"__entitlements","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/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects/LinkFileList","FIXED_FILES_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/FixedFiles","FLUTTER_APPLICATION_PATH":"/Users/evanreichard/Development/git/imagini/web_native","FLUTTER_BUILD_DIR":"build","FLUTTER_BUILD_NAME":"1.0.0","FLUTTER_BUILD_NUMBER":"1","FLUTTER_ROOT":"/Users/evanreichard/Development/Tools/flutter","FLUTTER_TARGET":"/Users/evanreichard/Development/git/imagini/web_native/lib/main.dart","FRAMEWORKS_FOLDER_PATH":"Runner.app/Frameworks","FRAMEWORK_FLAG_PREFIX":"-framework","FRAMEWORK_SEARCH_PATHS":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator \"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/DKImagePickerController\" \"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/DKPhotoGallery\" \"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/SDWebImage\" \"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/SwiftyGif\" \"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/file_picker\" \"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/flutter_secure_storage\" \"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/integration_test\" \"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/shared_preferences\" \"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/url_launcher\"","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_OBJC_LEGACY_DISPATCH":"YES","GCC_OPTIMIZATION_LEVEL":"0","GCC_PFE_FILE_C_DIALECTS":"c objective-c c++ objective-c++","GCC_PREPROCESSOR_DEFINITIONS":"DEBUG=1 COCOAPODS=1","GCC_SYMBOLS_PRIVATE_EXTERN":"NO","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/evanreichard/Development/git/imagini/web_native/build/ios/GeneratedModuleMaps-iphonesimulator","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/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/include \"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/DKImagePickerController/DKImagePickerController.framework/Headers\" \"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/DKPhotoGallery/DKPhotoGallery.framework/Headers\" \"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/SDWebImage/SDWebImage.framework/Headers\" \"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/SwiftyGif/SwiftyGif.framework/Headers\" \"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/file_picker/file_picker.framework/Headers\" \"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/flutter_secure_storage/flutter_secure_storage.framework/Headers\" \"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/integration_test/integration_test.framework/Headers\" \"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/shared_preferences/shared_preferences.framework/Headers\" \"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/url_launcher/url_launcher.framework/Headers\"","HIDE_BITCODE_SYMBOLS":"YES","HOME":"/Users/evanreichard","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":"evanreichard","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","KEEP_PRIVATE_EXTERNS":"NO","LD_DEPENDENCY_INFO_FILE":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/undefined_arch/Runner_dependency_info.dat","LD_GENERATE_MAP_FILE":"NO","LD_MAP_FILE_PATH":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/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' '@loader_path/Frameworks' @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/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator ","LINKER_DISPLAYS_MANGLED_NAMES":"NO","LINK_FILE_LIST_normal_arm64":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner.LinkFileList","LINK_WITH_STANDARD_LIBRARIES":"YES","LLVM_TARGET_TRIPLE_OS_VERSION":"ios9.0","LLVM_TARGET_TRIPLE_SUFFIX":"-simulator","LLVM_TARGET_TRIPLE_VENDOR":"apple","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/evanreichard/Development/git/imagini/web_native/ios","LOCSYMROOT":"/Users/evanreichard/Development/git/imagini/web_native/ios","MACH_O_TYPE":"mh_execute","MAC_OS_X_PRODUCT_BUILD_VERSION":"20C69","MAC_OS_X_VERSION_ACTUAL":"110100","MAC_OS_X_VERSION_MAJOR":"110000","MAC_OS_X_VERSION_MINOR":"110100","METAL_LIBRARY_FILE_BASE":"default","METAL_LIBRARY_OUTPUT_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app","MODULES_FOLDER_PATH":"Runner.app/Modules","MODULE_CACHE_DIR":"/Users/evanreichard/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","MTL_ENABLE_DEBUG_INFO":"YES","NATIVE_ARCH":"arm64","NATIVE_ARCH_32_BIT":"arm","NATIVE_ARCH_64_BIT":"arm64","NATIVE_ARCH_ACTUAL":"arm64","NO_COMMON":"YES","OBJC_ABI_VERSION":"2","OBJECT_FILE_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects","OBJECT_FILE_DIR_normal":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal","OBJROOT":"/Users/evanreichard/Development/git/imagini/web_native/build/ios","ONLY_ACTIVE_ARCH":"YES","OS":"MACOS","OSAC":"/usr/bin/osacompile","OTHER_LDFLAGS":" -framework \"AVFoundation\" -framework \"AVKit\" -framework \"DKImagePickerController\" -framework \"DKPhotoGallery\" -framework \"Foundation\" -framework \"ImageIO\" -framework \"Photos\" -framework \"SDWebImage\" -framework \"SwiftyGif\" -framework \"UIKit\" -framework \"file_picker\" -framework \"flutter_secure_storage\" -framework \"integration_test\" -framework \"shared_preferences\" -framework \"url_launcher\"","OTHER_SWIFT_FLAGS":" -D COCOAPODS","PACKAGE_CONFIG":"/Users/evanreichard/Development/git/imagini/web_native/.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/iPhoneSimulator.platform/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.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/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/undefined_arch","PER_VARIANT_OBJECT_FILE_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal","PKGINFO_FILE_PATH":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/PkgInfo","PKGINFO_PATH":"Runner.app/PkgInfo","PLATFORM_DEVELOPER_APPLICATIONS_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Applications","PLATFORM_DEVELOPER_BIN_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin","PLATFORM_DEVELOPER_LIBRARY_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library","PLATFORM_DEVELOPER_SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs","PLATFORM_DEVELOPER_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Tools","PLATFORM_DEVELOPER_USR_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr","PLATFORM_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform","PLATFORM_DISPLAY_NAME":"iOS Simulator","PLATFORM_FAMILY_NAME":"iOS","PLATFORM_NAME":"iphonesimulator","PLATFORM_PREFERRED_ARCH":"x86_64","PLATFORM_PRODUCT_BUILD_VERSION":"18C61","PLIST_FILE_OUTPUT_FORMAT":"binary","PLUGINS_FOLDER_PATH":"Runner.app/PlugIns","PODS_BUILD_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios","PODS_CONFIGURATION_BUILD_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator","PODS_PODFILE_DIR_PATH":"/Users/evanreichard/Development/git/imagini/web_native/ios/.","PODS_ROOT":"/Users/evanreichard/Development/git/imagini/web_native/ios/Pods","PODS_XCFRAMEWORKS_BUILD_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates","PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR":"YES","PRECOMP_DESTINATION_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/PrefixHeaders","PRESERVE_DEAD_CODE_INITS_AND_TERMS":"NO","PRIVATE_HEADERS_FOLDER_PATH":"Runner.app/PrivateHeaders","PRODUCT_BUNDLE_IDENTIFIER":"com.reichard.imagini","PRODUCT_BUNDLE_PACKAGE_TYPE":"APPL","PRODUCT_MODULE_NAME":"Runner","PRODUCT_NAME":"Runner","PRODUCT_SETTINGS_PATH":"/Users/evanreichard/Development/git/imagini/web_native/ios/Runner/Info.plist","PRODUCT_TYPE":"com.apple.product-type.application","PROFILING_CODE":"NO","PROJECT":"Runner","PROJECT_DERIVED_FILE_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/DerivedSources","PROJECT_DIR":"/Users/evanreichard/Development/git/imagini/web_native/ios","PROJECT_FILE_PATH":"/Users/evanreichard/Development/git/imagini/web_native/ios/Runner.xcodeproj","PROJECT_NAME":"Runner","PROJECT_TEMP_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build","PROJECT_TEMP_ROOT":"/Users/evanreichard/Development/git/imagini/web_native/build/ios","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","REZ_COLLECTOR_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/ResourceManagerResources","REZ_OBJECTS_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/ResourceManagerResources/Objects","REZ_SEARCH_PATHS":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator ","SCAN_ALL_SOURCE_FILES_FOR_INCLUDES":"NO","SCRIPTS_FOLDER_PATH":"Runner.app/Scripts","SCRIPT_INPUT_FILE_0":"/Users/evanreichard/Development/git/imagini/web_native/ios/Podfile.lock","SCRIPT_INPUT_FILE_1":"/Users/evanreichard/Development/git/imagini/web_native/ios/Pods/Manifest.lock","SCRIPT_INPUT_FILE_COUNT":"2","SCRIPT_INPUT_FILE_LIST_COUNT":"0","SCRIPT_OUTPUT_FILE_0":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/Pods-Runner-checkManifestLockResult.txt","SCRIPT_OUTPUT_FILE_COUNT":"1","SCRIPT_OUTPUT_FILE_LIST_COUNT":"0","SDKROOT":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.3.sdk","SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.3.sdk","SDK_DIR_iphonesimulator14_3":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.3.sdk","SDK_NAME":"iphonesimulator14.3","SDK_NAMES":"iphonesimulator14.3","SDK_PRODUCT_BUILD_VERSION":"18C61","SDK_VERSION":"14.3","SDK_VERSION_ACTUAL":"140300","SDK_VERSION_MAJOR":"140000","SDK_VERSION_MINOR":"140300","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/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/DerivedSources","SHARED_FRAMEWORKS_FOLDER_PATH":"Runner.app/SharedFrameworks","SHARED_PRECOMPS_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/SharedPrecompiledHeaders","SHARED_SUPPORT_FOLDER_PATH":"Runner.app/SharedSupport","SKIP_INSTALL":"NO","SOURCE_ROOT":"/Users/evanreichard/Development/git/imagini/web_native/ios","SRCROOT":"/Users/evanreichard/Development/git/imagini/web_native/ios","STRINGS_FILE_OUTPUT_ENCODING":"binary","STRIP_BITCODE_FROM_COPIED_FILES":"NO","STRIP_INSTALLED_PRODUCT":"YES","STRIP_STYLE":"all","STRIP_SWIFT_SYMBOLS":"YES","SUPPORTED_DEVICE_FAMILIES":"1,2","SUPPORTED_PLATFORMS":"iphoneos iphonesimulator","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/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner.SwiftFileList","SWIFT_VERSION":"5.0","SYMROOT":"/Users/evanreichard/Development/git/imagini/web_native/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/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator","TARGET_DEVICE_IDENTIFIER":"CA4B966C-C239-47D2-AC10-9BE04BC1E3D5","TARGET_DEVICE_MODEL":"iPod9,1","TARGET_DEVICE_OS_VERSION":"14.3","TARGET_NAME":"Runner","TARGET_TEMP_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build","TEMP_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build","TEMP_FILES_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build","TEMP_FILE_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build","TEMP_ROOT":"/Users/evanreichard/Development/git/imagini/web_native/build/ios","TEST_FRAMEWORK_SEARCH_PATHS":" /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.3.sdk/Developer/Library/Frameworks","TEST_LIBRARY_SEARCH_PATHS":" /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.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":"evanreichard","USER_APPS_DIR":"/Users/evanreichard/Applications","USER_LIBRARY_DIR":"/Users/evanreichard/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","USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES":"YES","VALIDATE_DEVELOPMENT_ASSET_PATHS":"YES_ERROR","VALIDATE_PRODUCT":"NO","VALIDATE_WORKSPACE":"YES_ERROR","VALID_ARCHS":"arm64 arm64e i386 x86_64","VERBOSE_PBXCP":"NO","VERSIONING_SYSTEM":"apple-generic","VERSIONPLIST_PATH":"Runner.app/version.plist","VERSION_INFO_BUILDER":"evanreichard","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":"12C33","XCODE_VERSION_ACTUAL":"1230","XCODE_VERSION_MAJOR":"1200","XCODE_VERSION_MINOR":"1230","XPCSERVICES_FOLDER_PATH":"Runner.app/XPCServices","YACC":"yacc","arch":"undefined_arch","variant":"normal"},"allow-missing-inputs":true,"working-directory":"/Users/evanreichard/Development/git/imagini/web_native/ios","control-enabled":false,"signature":"0d0a0db70883b9b91de02ad88080dce7"} + "target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49-:Debug:PhaseScriptExecution [CP] Embed Pods Frameworks /Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-D5904DDDEF0E1E99229EA00E.sh": {"tool":"shell","description":"PhaseScriptExecution [CP] Embed Pods Frameworks /Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-D5904DDDEF0E1E99229EA00E.sh","inputs":["/Users/evanreichard/Development/git/imagini/web_native/ios/Pods/Target Support Files/Pods-Runner/Pods-Runner-frameworks-Debug-input-files.xcfilelist/","/Users/evanreichard/Development/git/imagini/web_native/ios/Pods/Target Support Files/Pods-Runner/Pods-Runner-frameworks-Debug-output-files.xcfilelist","/Users/evanreichard/Development/git/imagini/web_native/ios/Pods/Target Support Files/Pods-Runner/Pods-Runner-frameworks.sh/","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/DKImagePickerController/DKImagePickerController.framework/","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/DKPhotoGallery/DKPhotoGallery.framework/","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/SDWebImage/SDWebImage.framework/","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/SwiftyGif/SwiftyGif.framework/","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/file_picker/file_picker.framework/","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/flutter_secure_storage/flutter_secure_storage.framework/","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/integration_test/integration_test.framework/","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/shared_preferences/shared_preferences.framework/","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/url_launcher/url_launcher.framework/","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/InputFileList-D5904DDDEF0E1E99229EA00E-Pods-Runner-frameworks-Debug-input-files-6c69f76b2c0ba498a0e3a65077743e10-resolved.xcfilelist","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/OutputFileList-D5904DDDEF0E1E99229EA00E-Pods-Runner-frameworks-Debug-output-files-f592242711a85b2a34af5762da324381-resolved.xcfilelist","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-D5904DDDEF0E1E99229EA00E.sh","",""],"outputs":["/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/DKImagePickerController.framework","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/DKPhotoGallery.framework","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/SDWebImage.framework","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/SwiftyGif.framework","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/file_picker.framework","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/flutter_secure_storage.framework","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/integration_test.framework","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/shared_preferences.framework","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/url_launcher.framework"],"args":["/bin/sh","-c","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-D5904DDDEF0E1E99229EA00E.sh"],"env":{"ACTION":"build","AD_HOC_CODE_SIGNING_ALLOWED":"YES","ALTERNATE_GROUP":"staff","ALTERNATE_MODE":"u+w,go-w,a+rX","ALTERNATE_OWNER":"evanreichard","ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES":"YES","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 x86_64 i386","ARCHS_STANDARD_32_64_BIT":"arm64 i386 x86_64","ARCHS_STANDARD_32_BIT":"i386","ARCHS_STANDARD_64_BIT":"arm64 x86_64","ARCHS_STANDARD_INCLUDING_64_BIT":"arm64 x86_64 i386","ARCHS_UNIVERSAL_IPHONE_OS":"arm64 i386 x86_64","ASSETCATALOG_COMPILER_APPICON_NAME":"AppIcon","ASSETCATALOG_FILTER_FOR_DEVICE_MODEL":"iPod9,1","ASSETCATALOG_FILTER_FOR_DEVICE_OS_VERSION":"14.3","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/evanreichard/Development/git/imagini/web_native/build/ios","BUILD_LIBRARY_FOR_DISTRIBUTION":"NO","BUILD_ROOT":"/Users/evanreichard/Development/git/imagini/web_native/build/ios","BUILD_STYLE":"","BUILD_VARIANTS":"normal","BUILT_PRODUCTS_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator","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/lb/1_tw174n65x__3txp1gcj4k00000gn/C/com.apple.DeveloperTools/12.3-12C33/Xcode","CCHROOT":"/var/folders/lb/1_tw174n65x__3txp1gcj4k00000gn/C/com.apple.DeveloperTools/12.3-12C33/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/evanreichard/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":"NO","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/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/JavaClasses","CLEAN_PRECOMPS":"YES","CLONE_HEADERS":"NO","CODESIGNING_FOLDER_PATH":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app","CODE_SIGNING_ALLOWED":"YES","CODE_SIGNING_REQUIRED":"YES","CODE_SIGN_CONTEXT_CLASS":"XCiPhoneSimulatorCodeSignContext","CODE_SIGN_IDENTITY":"-","CODE_SIGN_INJECT_BASE_ENTITLEMENTS":"YES","COLOR_DIAGNOSTICS":"NO","COMBINE_HIDPI_IMAGES":"NO","COMPILER_INDEX_STORE_ENABLE":"Default","COMPOSITE_SDK_DIRS":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/CompositeSDKs","COMPRESS_PNG_FILES":"YES","CONFIGURATION":"Debug","CONFIGURATION_BUILD_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator","CONFIGURATION_TEMP_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator","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_DEVICE_PLATFORM_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform","CORRESPONDING_DEVICE_PLATFORM_NAME":"iphoneos","CORRESPONDING_DEVICE_SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.3.sdk","CORRESPONDING_DEVICE_SDK_NAME":"iphoneos14.3","CP":"/bin/cp","CREATE_INFOPLIST_SECTION_IN_BINARY":"NO","CURRENT_ARCH":"undefined_arch","CURRENT_PROJECT_VERSION":"1","CURRENT_VARIANT":"normal","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":"mios-simulator-version-min","DEPLOYMENT_TARGET_CLANG_FLAG_PREFIX":"-mios-simulator-version-min=","DEPLOYMENT_TARGET_LD_ENV_NAME":"IPHONEOS_DEPLOYMENT_TARGET","DEPLOYMENT_TARGET_LD_FLAG_NAME":"ios_simulator_version_min","DEPLOYMENT_TARGET_SETTING_NAME":"IPHONEOS_DEPLOYMENT_TARGET","DEPLOYMENT_TARGET_SUGGESTED_VALUES":"9.0 9.1 9.2 9.3 10.0 10.1 10.2 10.3 11.0 11.1 11.2 11.3 11.4 12.0 12.1 12.2 12.3 12.4 13.0 13.1 13.2 13.3 13.4 13.5 13.6 14.0 14.1 14.2 14.3","DERIVED_FILES_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources","DERIVED_FILE_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources","DERIVED_SOURCES_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources","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/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator","EFFECTIVE_PLATFORM_NAME":"-iphonesimulator","EMBEDDED_CONTENT_CONTAINS_SWIFT":"NO","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_DESTINATION":"__entitlements","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/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects/LinkFileList","FIXED_FILES_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/FixedFiles","FLUTTER_APPLICATION_PATH":"/Users/evanreichard/Development/git/imagini/web_native","FLUTTER_BUILD_DIR":"build","FLUTTER_BUILD_NAME":"1.0.0","FLUTTER_BUILD_NUMBER":"1","FLUTTER_ROOT":"/Users/evanreichard/Development/Tools/flutter","FLUTTER_TARGET":"/Users/evanreichard/Development/git/imagini/web_native/lib/main.dart","FRAMEWORKS_FOLDER_PATH":"Runner.app/Frameworks","FRAMEWORK_FLAG_PREFIX":"-framework","FRAMEWORK_SEARCH_PATHS":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator \"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/DKImagePickerController\" \"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/DKPhotoGallery\" \"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/SDWebImage\" \"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/SwiftyGif\" \"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/file_picker\" \"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/flutter_secure_storage\" \"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/integration_test\" \"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/shared_preferences\" \"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/url_launcher\"","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_OBJC_LEGACY_DISPATCH":"YES","GCC_OPTIMIZATION_LEVEL":"0","GCC_PFE_FILE_C_DIALECTS":"c objective-c c++ objective-c++","GCC_PREPROCESSOR_DEFINITIONS":"DEBUG=1 COCOAPODS=1","GCC_SYMBOLS_PRIVATE_EXTERN":"NO","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/evanreichard/Development/git/imagini/web_native/build/ios/GeneratedModuleMaps-iphonesimulator","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/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/include \"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/DKImagePickerController/DKImagePickerController.framework/Headers\" \"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/DKPhotoGallery/DKPhotoGallery.framework/Headers\" \"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/SDWebImage/SDWebImage.framework/Headers\" \"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/SwiftyGif/SwiftyGif.framework/Headers\" \"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/file_picker/file_picker.framework/Headers\" \"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/flutter_secure_storage/flutter_secure_storage.framework/Headers\" \"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/integration_test/integration_test.framework/Headers\" \"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/shared_preferences/shared_preferences.framework/Headers\" \"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/url_launcher/url_launcher.framework/Headers\"","HIDE_BITCODE_SYMBOLS":"YES","HOME":"/Users/evanreichard","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":"evanreichard","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","KEEP_PRIVATE_EXTERNS":"NO","LD_DEPENDENCY_INFO_FILE":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/undefined_arch/Runner_dependency_info.dat","LD_GENERATE_MAP_FILE":"NO","LD_MAP_FILE_PATH":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/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' '@loader_path/Frameworks' @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/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator ","LINKER_DISPLAYS_MANGLED_NAMES":"NO","LINK_FILE_LIST_normal_arm64":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner.LinkFileList","LINK_WITH_STANDARD_LIBRARIES":"YES","LLVM_TARGET_TRIPLE_OS_VERSION":"ios9.0","LLVM_TARGET_TRIPLE_SUFFIX":"-simulator","LLVM_TARGET_TRIPLE_VENDOR":"apple","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/evanreichard/Development/git/imagini/web_native/ios","LOCSYMROOT":"/Users/evanreichard/Development/git/imagini/web_native/ios","MACH_O_TYPE":"mh_execute","MAC_OS_X_PRODUCT_BUILD_VERSION":"20C69","MAC_OS_X_VERSION_ACTUAL":"110100","MAC_OS_X_VERSION_MAJOR":"110000","MAC_OS_X_VERSION_MINOR":"110100","METAL_LIBRARY_FILE_BASE":"default","METAL_LIBRARY_OUTPUT_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app","MODULES_FOLDER_PATH":"Runner.app/Modules","MODULE_CACHE_DIR":"/Users/evanreichard/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","MTL_ENABLE_DEBUG_INFO":"YES","NATIVE_ARCH":"arm64","NATIVE_ARCH_32_BIT":"arm","NATIVE_ARCH_64_BIT":"arm64","NATIVE_ARCH_ACTUAL":"arm64","NO_COMMON":"YES","OBJC_ABI_VERSION":"2","OBJECT_FILE_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects","OBJECT_FILE_DIR_normal":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal","OBJROOT":"/Users/evanreichard/Development/git/imagini/web_native/build/ios","ONLY_ACTIVE_ARCH":"YES","OS":"MACOS","OSAC":"/usr/bin/osacompile","OTHER_LDFLAGS":" -framework \"AVFoundation\" -framework \"AVKit\" -framework \"DKImagePickerController\" -framework \"DKPhotoGallery\" -framework \"Foundation\" -framework \"ImageIO\" -framework \"Photos\" -framework \"SDWebImage\" -framework \"SwiftyGif\" -framework \"UIKit\" -framework \"file_picker\" -framework \"flutter_secure_storage\" -framework \"integration_test\" -framework \"shared_preferences\" -framework \"url_launcher\"","OTHER_SWIFT_FLAGS":" -D COCOAPODS","PACKAGE_CONFIG":"/Users/evanreichard/Development/git/imagini/web_native/.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/iPhoneSimulator.platform/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.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/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/undefined_arch","PER_VARIANT_OBJECT_FILE_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal","PKGINFO_FILE_PATH":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/PkgInfo","PKGINFO_PATH":"Runner.app/PkgInfo","PLATFORM_DEVELOPER_APPLICATIONS_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Applications","PLATFORM_DEVELOPER_BIN_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin","PLATFORM_DEVELOPER_LIBRARY_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library","PLATFORM_DEVELOPER_SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs","PLATFORM_DEVELOPER_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Tools","PLATFORM_DEVELOPER_USR_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr","PLATFORM_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform","PLATFORM_DISPLAY_NAME":"iOS Simulator","PLATFORM_FAMILY_NAME":"iOS","PLATFORM_NAME":"iphonesimulator","PLATFORM_PREFERRED_ARCH":"x86_64","PLATFORM_PRODUCT_BUILD_VERSION":"18C61","PLIST_FILE_OUTPUT_FORMAT":"binary","PLUGINS_FOLDER_PATH":"Runner.app/PlugIns","PODS_BUILD_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios","PODS_CONFIGURATION_BUILD_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator","PODS_PODFILE_DIR_PATH":"/Users/evanreichard/Development/git/imagini/web_native/ios/.","PODS_ROOT":"/Users/evanreichard/Development/git/imagini/web_native/ios/Pods","PODS_XCFRAMEWORKS_BUILD_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates","PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR":"YES","PRECOMP_DESTINATION_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/PrefixHeaders","PRESERVE_DEAD_CODE_INITS_AND_TERMS":"NO","PRIVATE_HEADERS_FOLDER_PATH":"Runner.app/PrivateHeaders","PRODUCT_BUNDLE_IDENTIFIER":"com.reichard.imagini","PRODUCT_BUNDLE_PACKAGE_TYPE":"APPL","PRODUCT_MODULE_NAME":"Runner","PRODUCT_NAME":"Runner","PRODUCT_SETTINGS_PATH":"/Users/evanreichard/Development/git/imagini/web_native/ios/Runner/Info.plist","PRODUCT_TYPE":"com.apple.product-type.application","PROFILING_CODE":"NO","PROJECT":"Runner","PROJECT_DERIVED_FILE_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/DerivedSources","PROJECT_DIR":"/Users/evanreichard/Development/git/imagini/web_native/ios","PROJECT_FILE_PATH":"/Users/evanreichard/Development/git/imagini/web_native/ios/Runner.xcodeproj","PROJECT_NAME":"Runner","PROJECT_TEMP_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build","PROJECT_TEMP_ROOT":"/Users/evanreichard/Development/git/imagini/web_native/build/ios","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","REZ_COLLECTOR_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/ResourceManagerResources","REZ_OBJECTS_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/ResourceManagerResources/Objects","REZ_SEARCH_PATHS":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator ","SCAN_ALL_SOURCE_FILES_FOR_INCLUDES":"NO","SCRIPTS_FOLDER_PATH":"Runner.app/Scripts","SCRIPT_INPUT_FILE_COUNT":"0","SCRIPT_INPUT_FILE_LIST_0":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/InputFileList-D5904DDDEF0E1E99229EA00E-Pods-Runner-frameworks-Debug-input-files-6c69f76b2c0ba498a0e3a65077743e10-resolved.xcfilelist","SCRIPT_INPUT_FILE_LIST_COUNT":"1","SCRIPT_OUTPUT_FILE_COUNT":"0","SCRIPT_OUTPUT_FILE_LIST_0":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/OutputFileList-D5904DDDEF0E1E99229EA00E-Pods-Runner-frameworks-Debug-output-files-f592242711a85b2a34af5762da324381-resolved.xcfilelist","SCRIPT_OUTPUT_FILE_LIST_COUNT":"1","SDKROOT":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.3.sdk","SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.3.sdk","SDK_DIR_iphonesimulator14_3":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.3.sdk","SDK_NAME":"iphonesimulator14.3","SDK_NAMES":"iphonesimulator14.3","SDK_PRODUCT_BUILD_VERSION":"18C61","SDK_VERSION":"14.3","SDK_VERSION_ACTUAL":"140300","SDK_VERSION_MAJOR":"140000","SDK_VERSION_MINOR":"140300","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/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/DerivedSources","SHARED_FRAMEWORKS_FOLDER_PATH":"Runner.app/SharedFrameworks","SHARED_PRECOMPS_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/SharedPrecompiledHeaders","SHARED_SUPPORT_FOLDER_PATH":"Runner.app/SharedSupport","SKIP_INSTALL":"NO","SOURCE_ROOT":"/Users/evanreichard/Development/git/imagini/web_native/ios","SRCROOT":"/Users/evanreichard/Development/git/imagini/web_native/ios","STRINGS_FILE_OUTPUT_ENCODING":"binary","STRIP_BITCODE_FROM_COPIED_FILES":"NO","STRIP_INSTALLED_PRODUCT":"YES","STRIP_STYLE":"all","STRIP_SWIFT_SYMBOLS":"YES","SUPPORTED_DEVICE_FAMILIES":"1,2","SUPPORTED_PLATFORMS":"iphoneos iphonesimulator","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/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner.SwiftFileList","SWIFT_VERSION":"5.0","SYMROOT":"/Users/evanreichard/Development/git/imagini/web_native/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/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator","TARGET_DEVICE_IDENTIFIER":"CA4B966C-C239-47D2-AC10-9BE04BC1E3D5","TARGET_DEVICE_MODEL":"iPod9,1","TARGET_DEVICE_OS_VERSION":"14.3","TARGET_NAME":"Runner","TARGET_TEMP_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build","TEMP_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build","TEMP_FILES_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build","TEMP_FILE_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build","TEMP_ROOT":"/Users/evanreichard/Development/git/imagini/web_native/build/ios","TEST_FRAMEWORK_SEARCH_PATHS":" /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.3.sdk/Developer/Library/Frameworks","TEST_LIBRARY_SEARCH_PATHS":" /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.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":"evanreichard","USER_APPS_DIR":"/Users/evanreichard/Applications","USER_LIBRARY_DIR":"/Users/evanreichard/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","USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES":"YES","VALIDATE_DEVELOPMENT_ASSET_PATHS":"YES_ERROR","VALIDATE_PRODUCT":"NO","VALIDATE_WORKSPACE":"YES_ERROR","VALID_ARCHS":"arm64 arm64e i386 x86_64","VERBOSE_PBXCP":"NO","VERSIONING_SYSTEM":"apple-generic","VERSIONPLIST_PATH":"Runner.app/version.plist","VERSION_INFO_BUILDER":"evanreichard","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":"12C33","XCODE_VERSION_ACTUAL":"1230","XCODE_VERSION_MAJOR":"1200","XCODE_VERSION_MINOR":"1230","XPCSERVICES_FOLDER_PATH":"Runner.app/XPCServices","YACC":"yacc","arch":"undefined_arch","variant":"normal"},"allow-missing-inputs":true,"working-directory":"/Users/evanreichard/Development/git/imagini/web_native/ios","control-enabled":false,"signature":"b10d9aee47994e1683690f1a99af3e95"} + "target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49-:Debug:ProcessInfoPlistFile /Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Info.plist /Users/evanreichard/Development/git/imagini/web_native/ios/Runner/Info.plist": {"tool":"info-plist-processor","description":"ProcessInfoPlistFile /Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Info.plist /Users/evanreichard/Development/git/imagini/web_native/ios/Runner/Info.plist","inputs":["/Users/evanreichard/Development/git/imagini/web_native/ios/Runner/Info.plist","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Base.lproj/LaunchScreen-SBPartialInfo.plist","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Base.lproj/Main-SBPartialInfo.plist","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/assetcatalog_generated_info.plist","",""],"outputs":["/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Info.plist"]} + "target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49-:Debug:RegisterExecutionPolicyException /Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app": {"tool":"register-execution-policy-exception","description":"RegisterExecutionPolicyException /Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app","inputs":["/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app","",""],"outputs":[""]} + "target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49-:Debug:Touch /Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app": {"tool":"shell","description":"Touch /Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app","inputs":["/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app","",""],"outputs":[""],"args":["/usr/bin/touch","-c","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app"],"env":{},"working-directory":"/Users/evanreichard/Development/git/imagini/web_native/ios","signature":"b1caa9ea2730bd179ba2f18c5c986a76"} + "target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49-:Debug:WriteAuxiliaryFile /Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/Runner_vers.c": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/Runner_vers.c","inputs":["",""],"outputs":["/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/Runner_vers.c"]} + "target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49-:Debug:WriteAuxiliaryFile /Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/InputFileList-D5904DDDEF0E1E99229EA00E-Pods-Runner-frameworks-Debug-input-files-6c69f76b2c0ba498a0e3a65077743e10-resolved.xcfilelist": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/InputFileList-D5904DDDEF0E1E99229EA00E-Pods-Runner-frameworks-Debug-input-files-6c69f76b2c0ba498a0e3a65077743e10-resolved.xcfilelist","inputs":["",""],"outputs":["/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/InputFileList-D5904DDDEF0E1E99229EA00E-Pods-Runner-frameworks-Debug-input-files-6c69f76b2c0ba498a0e3a65077743e10-resolved.xcfilelist"]} + "target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49-:Debug:WriteAuxiliaryFile /Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner-OutputFileMap.json": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner-OutputFileMap.json","inputs":["",""],"outputs":["/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner-OutputFileMap.json"]} + "target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49-:Debug:WriteAuxiliaryFile /Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner.LinkFileList": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner.LinkFileList","inputs":["",""],"outputs":["/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner.LinkFileList"]} + "target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49-:Debug:WriteAuxiliaryFile /Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner.SwiftFileList": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner.SwiftFileList","inputs":["",""],"outputs":["/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner.SwiftFileList"]} + "target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49-:Debug:WriteAuxiliaryFile /Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/OutputFileList-D5904DDDEF0E1E99229EA00E-Pods-Runner-frameworks-Debug-output-files-f592242711a85b2a34af5762da324381-resolved.xcfilelist": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/OutputFileList-D5904DDDEF0E1E99229EA00E-Pods-Runner-frameworks-Debug-output-files-f592242711a85b2a34af5762da324381-resolved.xcfilelist","inputs":["",""],"outputs":["/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/OutputFileList-D5904DDDEF0E1E99229EA00E-Pods-Runner-frameworks-Debug-output-files-f592242711a85b2a34af5762da324381-resolved.xcfilelist"]} + "target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49-:Debug:WriteAuxiliaryFile /Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-all-non-framework-target-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-all-non-framework-target-headers.hmap","inputs":["",""],"outputs":["/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-all-non-framework-target-headers.hmap"]} + "target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49-:Debug:WriteAuxiliaryFile /Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-all-target-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-all-target-headers.hmap","inputs":["",""],"outputs":["/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-all-target-headers.hmap"]} + "target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49-:Debug:WriteAuxiliaryFile /Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-generated-files.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-generated-files.hmap","inputs":["",""],"outputs":["/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-generated-files.hmap"]} + "target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49-:Debug:WriteAuxiliaryFile /Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-own-target-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-own-target-headers.hmap","inputs":["",""],"outputs":["/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-own-target-headers.hmap"]} + "target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49-:Debug:WriteAuxiliaryFile /Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-project-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-project-headers.hmap","inputs":["",""],"outputs":["/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-project-headers.hmap"]} + "target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49-:Debug:WriteAuxiliaryFile /Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner.hmap","inputs":["",""],"outputs":["/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner.hmap"]} + "target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49-:Debug:WriteAuxiliaryFile /Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh","inputs":["",""],"outputs":["/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh"]} + "target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49-:Debug:WriteAuxiliaryFile /Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-9740EEB61CF901F6004384FC.sh": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-9740EEB61CF901F6004384FC.sh","inputs":["",""],"outputs":["/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-9740EEB61CF901F6004384FC.sh"]} + "target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49-:Debug:WriteAuxiliaryFile /Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-D5904DDDEF0E1E99229EA00E.sh": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-D5904DDDEF0E1E99229EA00E.sh","inputs":["",""],"outputs":["/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-D5904DDDEF0E1E99229EA00E.sh"]} + "target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49-:Debug:WriteAuxiliaryFile /Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-D86A7985AAC25B64F99FB7F7.sh": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-D86A7985AAC25B64F99FB7F7.sh","inputs":["",""],"outputs":["/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-D86A7985AAC25B64F99FB7F7.sh"]} + "target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49-:Debug:WriteAuxiliaryFile /Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/all-product-headers.yaml": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/all-product-headers.yaml","inputs":["",""],"outputs":["/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/all-product-headers.yaml"]} + diff --git a/web_native/ios/build/XCBuildData/3587db71ff1ca7ec1dc68095d669aa08-desc.xcbuild b/web_native/ios/build/XCBuildData/3587db71ff1ca7ec1dc68095d669aa08-desc.xcbuild new file mode 100644 index 0000000000000000000000000000000000000000..b986675e6f303635d8482ebce42477a8679afcc8 GIT binary patch literal 339826 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

4Nn=h@d-CAGLZXWT0MqVDQfvT9VG@=_C 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%0D{b3NZGRr!ThK$yheR9(52-q4WjR>u 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"] + +nodes: + "/Users/evanreichard/Development/git/imagini/web_native/build/ios": {"is-mutated":true} + +commands: + "": {"tool":"phony","inputs":["/Users/evanreichard/Development/git/imagini/web_native/build/ios","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Frameworks","",""],"outputs":[""]} + "": {"tool":"stale-file-removal","expectedOutputs":["/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/assetcatalog_generated_info.plist","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Assets.car","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.o","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner_vers.o","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Base.lproj/LaunchScreen.storyboardc","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Base.lproj/LaunchScreen-SBPartialInfo.plist","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Base.lproj/Main.storyboardc","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Base.lproj/Main-SBPartialInfo.plist","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/AppDelegate.o","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner.swiftmodule","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner.swiftsourceinfo","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner-Swift.h","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner.swiftdoc","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/AppFrameworkInfo.plist","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Info-Debug.plist","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.swiftmodule/Project/arm64-apple-ios-simulator.swiftsourceinfo","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.swiftmodule/Project/arm64.swiftsourceinfo","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.swiftmodule/arm64-apple-ios-simulator.swiftdoc","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.swiftmodule/arm64-apple-ios-simulator.swiftmodule","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.swiftmodule/arm64.swiftdoc","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.swiftmodule/arm64.swiftmodule","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/Runner-Swift.h","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Runner","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Base.lproj/LaunchScreen.storyboardc","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Base.lproj/Main.storyboardc","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Frameworks","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/Pods-Runner-checkManifestLockResult.txt","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/DKImagePickerController.framework","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/DKPhotoGallery.framework","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/SDWebImage.framework","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/SwiftyGif.framework","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/file_picker.framework","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/flutter_secure_storage.framework","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/integration_test.framework","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/shared_preferences.framework","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/url_launcher.framework","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Info.plist","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/Runner_vers.c","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/InputFileList-D5904DDDEF0E1E99229EA00E-Pods-Runner-frameworks-Debug-input-files-6c69f76b2c0ba498a0e3a65077743e10-resolved.xcfilelist","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner-OutputFileMap.json","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner.LinkFileList","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner.SwiftFileList","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/OutputFileList-D5904DDDEF0E1E99229EA00E-Pods-Runner-frameworks-Debug-output-files-f592242711a85b2a34af5762da324381-resolved.xcfilelist","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-all-non-framework-target-headers.hmap","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-all-target-headers.hmap","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-generated-files.hmap","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-own-target-headers.hmap","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-project-headers.hmap","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner.hmap","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-9740EEB61CF901F6004384FC.sh","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-D5904DDDEF0E1E99229EA00E.sh","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-D86A7985AAC25B64F99FB7F7.sh","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/all-product-headers.yaml"],"roots":["/tmp/Runner.dst","/Users/evanreichard/Development/git/imagini/web_native/build/ios","/Users/evanreichard/Development/git/imagini/web_native/build/ios"],"outputs":[""]} + "Gate target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49--Barrier-ChangeAlternatePermissions": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49--Barrier-ChangePermissions": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49--Barrier-CodeSign": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49--Barrier-CopyAside": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49--Barrier-RegisterExecutionPolicyException": {"tool":"phony","inputs":["","",""],"outputs":[""]} + "Gate target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49--Barrier-RegisterProduct": {"tool":"phony","inputs":["","",""],"outputs":[""]} + "Gate target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49--Barrier-StripSymbols": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49--Barrier-Validate": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49--CopySwiftPackageResourcesTaskProducer": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49--GeneratedFilesTaskProducer": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49--HeadermapTaskProducer": {"tool":"phony","inputs":["","","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-all-non-framework-target-headers.hmap","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-all-target-headers.hmap","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-generated-files.hmap","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-own-target-headers.hmap","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-project-headers.hmap","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner.hmap","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/all-product-headers.yaml"],"outputs":[""]} + "Gate target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49--InfoPlistTaskProducer": {"tool":"phony","inputs":["","","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Info.plist"],"outputs":[""]} + "Gate target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49--ModuleMapTaskProducer": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49--ProductPostprocessingTaskProducer": {"tool":"phony","inputs":["","","","","","","","","","","",""],"outputs":[""]} + "Gate target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49--ProductStructureTaskProducer": {"tool":"phony","inputs":["","","",""],"outputs":[""]} + "Gate target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49--SanitizerTaskProducer": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49--StubBinaryTaskProducer": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49--SwiftFrameworkABICheckerTaskProducer": {"tool":"phony","inputs":["","",""],"outputs":[""]} + "Gate target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49--SwiftStandardLibrariesTaskProducer": {"tool":"phony","inputs":["","","",""],"outputs":[""]} + "Gate target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49--TestTargetPostprocessingTaskProducer": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49--TestTargetTaskProducer": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49--VersionPlistTaskProducer": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49--XCFrameworkTaskProducer": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49--begin-compiling": {"tool":"phony","inputs":["","","",""],"outputs":[""]} + "Gate target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49--copy-headers-completion": {"tool":"phony","inputs":[""],"outputs":[""]} + "Gate target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49--end": {"tool":"phony","inputs":["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/assetcatalog_generated_info.plist","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Assets.car","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.o","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner_vers.o","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Base.lproj/LaunchScreen.storyboardc","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Base.lproj/LaunchScreen-SBPartialInfo.plist","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Base.lproj/Main.storyboardc","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Base.lproj/Main-SBPartialInfo.plist","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/AppDelegate.o","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner.swiftmodule","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner.swiftsourceinfo","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner-Swift.h","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner.swiftdoc","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/AppFrameworkInfo.plist","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Info-Debug.plist","","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.swiftmodule/Project/arm64-apple-ios-simulator.swiftsourceinfo","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.swiftmodule/Project/arm64.swiftsourceinfo","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.swiftmodule/arm64-apple-ios-simulator.swiftdoc","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.swiftmodule/arm64-apple-ios-simulator.swiftmodule","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.swiftmodule/arm64.swiftdoc","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.swiftmodule/arm64.swiftmodule","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/Runner-Swift.h","","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Base.lproj/LaunchScreen.storyboardc","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Base.lproj/Main.storyboardc","","","","","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/Pods-Runner-checkManifestLockResult.txt","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/DKImagePickerController.framework","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/DKPhotoGallery.framework","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/SDWebImage.framework","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/SwiftyGif.framework","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/file_picker.framework","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/flutter_secure_storage.framework","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/integration_test.framework","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/shared_preferences.framework","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/url_launcher.framework","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Info.plist","","","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/Runner_vers.c","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/InputFileList-D5904DDDEF0E1E99229EA00E-Pods-Runner-frameworks-Debug-input-files-6c69f76b2c0ba498a0e3a65077743e10-resolved.xcfilelist","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner-OutputFileMap.json","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner.LinkFileList","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner.SwiftFileList","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/OutputFileList-D5904DDDEF0E1E99229EA00E-Pods-Runner-frameworks-Debug-output-files-f592242711a85b2a34af5762da324381-resolved.xcfilelist","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-all-non-framework-target-headers.hmap","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-all-target-headers.hmap","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-generated-files.hmap","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-own-target-headers.hmap","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-project-headers.hmap","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner.hmap","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-9740EEB61CF901F6004384FC.sh","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-D5904DDDEF0E1E99229EA00E.sh","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-D86A7985AAC25B64F99FB7F7.sh","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/all-product-headers.yaml"],"outputs":[""]} + "Gate target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49--entry": {"tool":"phony","inputs":["","","","",""],"outputs":[""]} + "Gate target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49--generated-headers": {"tool":"phony","inputs":["","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/AppDelegate.o","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner.swiftmodule","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner.swiftsourceinfo","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner-Swift.h","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner.swiftdoc","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/Runner-Swift.h"],"outputs":[""]} + "Gate target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49--immediate": {"tool":"phony","inputs":["","","",""],"outputs":[""]} + "Gate target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49--modules-ready": {"tool":"phony","inputs":["","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/AppDelegate.o","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner.swiftmodule","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner.swiftsourceinfo","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner-Swift.h","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner.swiftdoc","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.swiftmodule/Project/arm64-apple-ios-simulator.swiftsourceinfo","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.swiftmodule/Project/arm64.swiftsourceinfo","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.swiftmodule/arm64-apple-ios-simulator.swiftdoc","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.swiftmodule/arm64-apple-ios-simulator.swiftmodule","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.swiftmodule/arm64.swiftdoc","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.swiftmodule/arm64.swiftmodule","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/Runner-Swift.h","","","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/Pods-Runner-checkManifestLockResult.txt","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/DKImagePickerController.framework","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/DKPhotoGallery.framework","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/SDWebImage.framework","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/SwiftyGif.framework","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/file_picker.framework","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/flutter_secure_storage.framework","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/integration_test.framework","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/shared_preferences.framework","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/url_launcher.framework","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/InputFileList-D5904DDDEF0E1E99229EA00E-Pods-Runner-frameworks-Debug-input-files-6c69f76b2c0ba498a0e3a65077743e10-resolved.xcfilelist","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/OutputFileList-D5904DDDEF0E1E99229EA00E-Pods-Runner-frameworks-Debug-output-files-f592242711a85b2a34af5762da324381-resolved.xcfilelist","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-9740EEB61CF901F6004384FC.sh","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-D5904DDDEF0E1E99229EA00E.sh","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-D86A7985AAC25B64F99FB7F7.sh"],"outputs":[""]} + "Gate target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49--phase0--cp--check-pods-manifest-lock": {"tool":"phony","inputs":["","","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/Pods-Runner-checkManifestLockResult.txt","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-D86A7985AAC25B64F99FB7F7.sh"],"outputs":[""]} + "Gate target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49--phase1-run-script": {"tool":"phony","inputs":["","","","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-9740EEB61CF901F6004384FC.sh"],"outputs":[""]} + "Gate target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49--phase2-compile-sources": {"tool":"phony","inputs":["","","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.o","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner_vers.o","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/AppDelegate.o","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner.swiftmodule","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner.swiftsourceinfo","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner-Swift.h","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner.swiftdoc","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.swiftmodule/Project/arm64-apple-ios-simulator.swiftsourceinfo","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.swiftmodule/Project/arm64.swiftsourceinfo","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.swiftmodule/arm64-apple-ios-simulator.swiftdoc","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.swiftmodule/arm64-apple-ios-simulator.swiftmodule","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.swiftmodule/arm64.swiftdoc","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.swiftmodule/arm64.swiftmodule","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/Runner-Swift.h","","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/Runner_vers.c","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner-OutputFileMap.json","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner.LinkFileList","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner.SwiftFileList"],"outputs":[""]} + "Gate target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49--phase4-copy-bundle-resources": {"tool":"phony","inputs":["","","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/assetcatalog_generated_info.plist","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Assets.car","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Base.lproj/LaunchScreen.storyboardc","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Base.lproj/LaunchScreen-SBPartialInfo.plist","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Base.lproj/Main.storyboardc","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Base.lproj/Main-SBPartialInfo.plist","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/AppFrameworkInfo.plist","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Info-Debug.plist","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Base.lproj/LaunchScreen.storyboardc","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Base.lproj/Main.storyboardc"],"outputs":[""]} + "Gate target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49--phase5-copy-files": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49--phase6-thin-binary": {"tool":"phony","inputs":["","","","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh"],"outputs":[""]} + "Gate target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49--phase7--cp--embed-pods-frameworks": {"tool":"phony","inputs":["","","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/DKImagePickerController.framework","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/DKPhotoGallery.framework","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/SDWebImage.framework","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/SwiftyGif.framework","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/file_picker.framework","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/flutter_secure_storage.framework","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/integration_test.framework","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/shared_preferences.framework","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/url_launcher.framework","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/InputFileList-D5904DDDEF0E1E99229EA00E-Pods-Runner-frameworks-Debug-input-files-6c69f76b2c0ba498a0e3a65077743e10-resolved.xcfilelist","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/OutputFileList-D5904DDDEF0E1E99229EA00E-Pods-Runner-frameworks-Debug-output-files-f592242711a85b2a34af5762da324381-resolved.xcfilelist","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-D5904DDDEF0E1E99229EA00E.sh"],"outputs":[""]} + "target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49-:Debug:CompileAssetCatalog /Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app /Users/evanreichard/Development/git/imagini/web_native/ios/Runner/Assets.xcassets": {"tool":"shell","description":"CompileAssetCatalog /Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app /Users/evanreichard/Development/git/imagini/web_native/ios/Runner/Assets.xcassets","inputs":["/Users/evanreichard/Development/git/imagini/web_native/ios/Runner/Assets.xcassets/","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app","",""],"outputs":["/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/assetcatalog_generated_info.plist","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Assets.car"],"args":["/Applications/Xcode.app/Contents/Developer/usr/bin/actool","--output-format","human-readable-text","--notices","--warnings","--export-dependency-info","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/assetcatalog_dependencies","--output-partial-info-plist","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/assetcatalog_generated_info.plist","--app-icon","AppIcon","--compress-pngs","--enable-on-demand-resources","YES","--filter-for-device-model","iPod9,1","--filter-for-device-os-version","14.3","--development-region","en","--target-device","iphone","--target-device","ipad","--minimum-deployment-target","9.0","--platform","iphonesimulator","--compile","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app","/Users/evanreichard/Development/git/imagini/web_native/ios/Runner/Assets.xcassets"],"env":{},"working-directory":"/Users/evanreichard/Development/git/imagini/web_native/ios","control-enabled":false,"deps":["/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/assetcatalog_dependencies"],"deps-style":"dependency-info","signature":"b2dec4affd83f6315e8ba1ad72998577"} + "target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49-:Debug:CompileC /Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.o /Users/evanreichard/Development/git/imagini/web_native/ios/Runner/GeneratedPluginRegistrant.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.o /Users/evanreichard/Development/git/imagini/web_native/ios/Runner/GeneratedPluginRegistrant.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/evanreichard/Development/git/imagini/web_native/ios/Runner/GeneratedPluginRegistrant.m","","",""],"outputs":["/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/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-simulator","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu99","-fobjc-arc","-fmodules","-gmodules","-fmodules-cache-path=/Users/evanreichard/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/evanreichard/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","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.3.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-fobjc-abi-version=2","-fobjc-legacy-dispatch","-index-store-path","/Users/evanreichard/Library/Developer/Xcode/DerivedData/Runner-fhndltpqvubmpedfgghkvsoxawhl/Index/DataStore","-iquote","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-generated-files.hmap","-I/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-own-target-headers.hmap","-I/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-all-target-headers.hmap","-iquote","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-project-headers.hmap","-I/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/include","-I/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/DKImagePickerController/DKImagePickerController.framework/Headers","-I/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/DKPhotoGallery/DKPhotoGallery.framework/Headers","-I/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/SDWebImage/SDWebImage.framework/Headers","-I/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/SwiftyGif/SwiftyGif.framework/Headers","-I/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/file_picker/file_picker.framework/Headers","-I/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/flutter_secure_storage/flutter_secure_storage.framework/Headers","-I/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/integration_test/integration_test.framework/Headers","-I/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/shared_preferences/shared_preferences.framework/Headers","-I/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/url_launcher/url_launcher.framework/Headers","-I/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources-normal/arm64","-I/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/arm64","-I/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources","-F/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator","-F/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/DKImagePickerController","-F/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/DKPhotoGallery","-F/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/SDWebImage","-F/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/SwiftyGif","-F/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/file_picker","-F/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/flutter_secure_storage","-F/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/integration_test","-F/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/shared_preferences","-F/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/url_launcher","-MMD","-MT","dependencies","-MF","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.d","--serialize-diagnostics","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.dia","-c","/Users/evanreichard/Development/git/imagini/web_native/ios/Runner/GeneratedPluginRegistrant.m","-o","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/evanreichard/Development/git/imagini/web_native/ios","deps":["/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.d"],"deps-style":"makefile","signature":"856f38d927c0be760b729bcbb0cf67b2"} + "target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49-:Debug:CompileC /Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner_vers.o /Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/Runner_vers.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner_vers.o /Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/Runner_vers.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/Runner_vers.c","","",""],"outputs":["/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/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-simulator","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu99","-fmodules","-gmodules","-fmodules-cache-path=/Users/evanreichard/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/evanreichard/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","-DCOCOAPODS=1","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.3.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/evanreichard/Library/Developer/Xcode/DerivedData/Runner-fhndltpqvubmpedfgghkvsoxawhl/Index/DataStore","-iquote","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-generated-files.hmap","-I/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-own-target-headers.hmap","-I/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-all-target-headers.hmap","-iquote","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-project-headers.hmap","-I/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/include","-I/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/DKImagePickerController/DKImagePickerController.framework/Headers","-I/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/DKPhotoGallery/DKPhotoGallery.framework/Headers","-I/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/SDWebImage/SDWebImage.framework/Headers","-I/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/SwiftyGif/SwiftyGif.framework/Headers","-I/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/file_picker/file_picker.framework/Headers","-I/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/flutter_secure_storage/flutter_secure_storage.framework/Headers","-I/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/integration_test/integration_test.framework/Headers","-I/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/shared_preferences/shared_preferences.framework/Headers","-I/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/url_launcher/url_launcher.framework/Headers","-I/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources-normal/arm64","-I/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/arm64","-I/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources","-F/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator","-F/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/DKImagePickerController","-F/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/DKPhotoGallery","-F/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/SDWebImage","-F/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/SwiftyGif","-F/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/file_picker","-F/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/flutter_secure_storage","-F/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/integration_test","-F/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/shared_preferences","-F/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/url_launcher","-MMD","-MT","dependencies","-MF","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner_vers.d","--serialize-diagnostics","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner_vers.dia","-c","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/Runner_vers.c","-o","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner_vers.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/evanreichard/Development/git/imagini/web_native/ios","deps":["/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner_vers.d"],"deps-style":"makefile","signature":"5f91811859575236df04f9d2831bb6b9"} + "target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49-:Debug:CompileStoryboard /Users/evanreichard/Development/git/imagini/web_native/ios/Runner/Base.lproj/LaunchScreen.storyboard": {"tool":"shell","description":"CompileStoryboard /Users/evanreichard/Development/git/imagini/web_native/ios/Runner/Base.lproj/LaunchScreen.storyboard","inputs":["/Users/evanreichard/Development/git/imagini/web_native/ios/Runner/Base.lproj/LaunchScreen.storyboard","",""],"outputs":["/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Base.lproj/LaunchScreen.storyboardc","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/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/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/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/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Base.lproj","/Users/evanreichard/Development/git/imagini/web_native/ios/Runner/Base.lproj/LaunchScreen.storyboard"],"env":{"XCODE_DEVELOPER_USR_PATH":"/Applications/Xcode.app/Contents/Developer/usr/bin/.."},"working-directory":"/Users/evanreichard/Development/git/imagini/web_native/ios","control-enabled":false,"signature":"2a158e92b403f29bea73c59c6b424724"} + "target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49-:Debug:CompileStoryboard /Users/evanreichard/Development/git/imagini/web_native/ios/Runner/Base.lproj/Main.storyboard": {"tool":"shell","description":"CompileStoryboard /Users/evanreichard/Development/git/imagini/web_native/ios/Runner/Base.lproj/Main.storyboard","inputs":["/Users/evanreichard/Development/git/imagini/web_native/ios/Runner/Base.lproj/Main.storyboard","",""],"outputs":["/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Base.lproj/Main.storyboardc","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/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/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/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/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Base.lproj","/Users/evanreichard/Development/git/imagini/web_native/ios/Runner/Base.lproj/Main.storyboard"],"env":{"XCODE_DEVELOPER_USR_PATH":"/Applications/Xcode.app/Contents/Developer/usr/bin/.."},"working-directory":"/Users/evanreichard/Development/git/imagini/web_native/ios","control-enabled":false,"signature":"f5d25b98dffc67d652b87a9c757a7e49"} + "target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49-:Debug:CompileSwiftSources normal arm64 com.apple.xcode.tools.swift.compiler": {"tool":"shell","description":"CompileSwiftSources normal arm64 com.apple.xcode.tools.swift.compiler","inputs":["/Users/evanreichard/Development/git/imagini/web_native/ios/Runner/AppDelegate.swift","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner.SwiftFileList","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner-OutputFileMap.json","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-generated-files.hmap","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-own-target-headers.hmap","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-all-target-headers.hmap","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-project-headers.hmap","","",""],"outputs":["/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/AppDelegate.o","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner.swiftmodule","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner.swiftsourceinfo","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner-Swift.h","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/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/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner.SwiftFileList","-D","COCOAPODS","-sdk","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.3.sdk","-target","arm64-apple-ios9.0-simulator","-g","-module-cache-path","/Users/evanreichard/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-Xfrontend","-serialize-debugging-options","-enable-testing","-index-store-path","/Users/evanreichard/Library/Developer/Xcode/DerivedData/Runner-fhndltpqvubmpedfgghkvsoxawhl/Index/DataStore","-swift-version","5","-I","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator","-F","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator","-F","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/DKImagePickerController","-F","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/DKPhotoGallery","-F","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/SDWebImage","-F","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/SwiftyGif","-F","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/file_picker","-F","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/flutter_secure_storage","-F","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/integration_test","-F","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/shared_preferences","-F","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/url_launcher","-parse-as-library","-c","-j8","-output-file-map","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner-OutputFileMap.json","-parseable-output","-serialize-diagnostics","-emit-dependencies","-emit-module","-emit-module-path","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner.swiftmodule","-Xcc","-I/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/swift-overrides.hmap","-Xcc","-iquote","-Xcc","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-generated-files.hmap","-Xcc","-I/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-own-target-headers.hmap","-Xcc","-I/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-all-target-headers.hmap","-Xcc","-iquote","-Xcc","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-project-headers.hmap","-Xcc","-I/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/include","-Xcc","-I/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/DKImagePickerController/DKImagePickerController.framework/Headers","-Xcc","-I/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/DKPhotoGallery/DKPhotoGallery.framework/Headers","-Xcc","-I/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/SDWebImage/SDWebImage.framework/Headers","-Xcc","-I/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/SwiftyGif/SwiftyGif.framework/Headers","-Xcc","-I/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/file_picker/file_picker.framework/Headers","-Xcc","-I/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/flutter_secure_storage/flutter_secure_storage.framework/Headers","-Xcc","-I/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/integration_test/integration_test.framework/Headers","-Xcc","-I/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/shared_preferences/shared_preferences.framework/Headers","-Xcc","-I/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/url_launcher/url_launcher.framework/Headers","-Xcc","-I/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources-normal/arm64","-Xcc","-I/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/arm64","-Xcc","-I/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources","-Xcc","-DDEBUG=1","-Xcc","-DCOCOAPODS=1","-emit-objc-header","-emit-objc-header-path","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner-Swift.h","-import-objc-header","/Users/evanreichard/Development/git/imagini/web_native/ios/Runner/Runner-Bridging-Header.h","-pch-output-dir","/Users/evanreichard/Development/git/imagini/web_native/build/ios/SharedPrecompiledHeaders","-working-directory","/Users/evanreichard/Development/git/imagini/web_native/ios"],"env":{"DEVELOPER_DIR":"/Applications/Xcode.app/Contents/Developer","SDKROOT":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.3.sdk"},"working-directory":"/Users/evanreichard/Development/git/imagini/web_native/ios","deps":["/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/AppDelegate.d"],"deps-style":"makefile","signature":"01b3cedaeb9f08b649209fab5c3b1dca"} + "target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49-:Debug:CopyPlistFile /Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/AppFrameworkInfo.plist /Users/evanreichard/Development/git/imagini/web_native/ios/Flutter/AppFrameworkInfo.plist": {"tool":"copy-plist","description":"CopyPlistFile /Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/AppFrameworkInfo.plist /Users/evanreichard/Development/git/imagini/web_native/ios/Flutter/AppFrameworkInfo.plist","inputs":["/Users/evanreichard/Development/git/imagini/web_native/ios/Flutter/AppFrameworkInfo.plist","",""],"outputs":["/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/AppFrameworkInfo.plist"]} + "target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49-:Debug:CopyPlistFile /Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Info-Debug.plist /Users/evanreichard/Development/git/imagini/web_native/ios/Runner/Info-Debug.plist": {"tool":"copy-plist","description":"CopyPlistFile /Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Info-Debug.plist /Users/evanreichard/Development/git/imagini/web_native/ios/Runner/Info-Debug.plist","inputs":["/Users/evanreichard/Development/git/imagini/web_native/ios/Runner/Info-Debug.plist","",""],"outputs":["/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Info-Debug.plist"]} + "target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49-:Debug:CopySwiftLibs /Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app": {"tool":"embed-swift-stdlib","description":"CopySwiftLibs /Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app","inputs":["/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Runner","","",""],"outputs":[""],"deps":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/SwiftStdLibToolInputDependencies.dep"} + "target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49-:Debug:CreateBuildDirectory /Users/evanreichard/Development/git/imagini/web_native/build/ios": {"tool":"create-build-directory","description":"CreateBuildDirectory /Users/evanreichard/Development/git/imagini/web_native/build/ios","inputs":[],"outputs":["","/Users/evanreichard/Development/git/imagini/web_native/build/ios"]} + "target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49-:Debug:Ditto /Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.swiftmodule/Project/arm64-apple-ios-simulator.swiftsourceinfo /Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner.swiftsourceinfo": {"tool":"shell","description":"Ditto /Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.swiftmodule/Project/arm64-apple-ios-simulator.swiftsourceinfo /Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner.swiftsourceinfo","inputs":["/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner.swiftsourceinfo","","",""],"outputs":["/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.swiftmodule/Project/arm64-apple-ios-simulator.swiftsourceinfo"],"args":["/usr/bin/ditto","-rsrc","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner.swiftsourceinfo","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.swiftmodule/Project/arm64-apple-ios-simulator.swiftsourceinfo"],"env":{},"working-directory":"/Users/evanreichard/Development/git/imagini/web_native/ios","signature":"8f9d78a37d5853676b60b25b95a1ff0c"} + "target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49-:Debug:Ditto /Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.swiftmodule/Project/arm64.swiftsourceinfo /Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner.swiftsourceinfo": {"tool":"shell","description":"Ditto /Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.swiftmodule/Project/arm64.swiftsourceinfo /Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner.swiftsourceinfo","inputs":["/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner.swiftsourceinfo","","",""],"outputs":["/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.swiftmodule/Project/arm64.swiftsourceinfo"],"args":["/usr/bin/ditto","-rsrc","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner.swiftsourceinfo","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.swiftmodule/Project/arm64.swiftsourceinfo"],"env":{},"working-directory":"/Users/evanreichard/Development/git/imagini/web_native/ios","signature":"9492fc734bca47fefaaa8e314e5a5dd8"} + "target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49-:Debug:Ditto /Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.swiftmodule/arm64-apple-ios-simulator.swiftdoc /Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner.swiftdoc": {"tool":"shell","description":"Ditto /Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.swiftmodule/arm64-apple-ios-simulator.swiftdoc /Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner.swiftdoc","inputs":["/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner.swiftdoc","","",""],"outputs":["/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.swiftmodule/arm64-apple-ios-simulator.swiftdoc"],"args":["/usr/bin/ditto","-rsrc","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner.swiftdoc","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.swiftmodule/arm64-apple-ios-simulator.swiftdoc"],"env":{},"working-directory":"/Users/evanreichard/Development/git/imagini/web_native/ios","signature":"5ba95acdbc2c5b4c764f52350038e41a"} + "target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49-:Debug:Ditto /Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.swiftmodule/arm64-apple-ios-simulator.swiftmodule /Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner.swiftmodule": {"tool":"shell","description":"Ditto /Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.swiftmodule/arm64-apple-ios-simulator.swiftmodule /Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner.swiftmodule","inputs":["/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner.swiftmodule","","",""],"outputs":["/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.swiftmodule/arm64-apple-ios-simulator.swiftmodule"],"args":["/usr/bin/ditto","-rsrc","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner.swiftmodule","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.swiftmodule/arm64-apple-ios-simulator.swiftmodule"],"env":{},"working-directory":"/Users/evanreichard/Development/git/imagini/web_native/ios","signature":"26ca7a5d939cc0cc81f18a03c00cbb1d"} + "target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49-:Debug:Ditto /Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.swiftmodule/arm64.swiftdoc /Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner.swiftdoc": {"tool":"shell","description":"Ditto /Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.swiftmodule/arm64.swiftdoc /Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner.swiftdoc","inputs":["/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner.swiftdoc","","",""],"outputs":["/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.swiftmodule/arm64.swiftdoc"],"args":["/usr/bin/ditto","-rsrc","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner.swiftdoc","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.swiftmodule/arm64.swiftdoc"],"env":{},"working-directory":"/Users/evanreichard/Development/git/imagini/web_native/ios","signature":"ec40b194d43579ea3c8266d64855ac07"} + "target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49-:Debug:Ditto /Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.swiftmodule/arm64.swiftmodule /Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner.swiftmodule": {"tool":"shell","description":"Ditto /Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.swiftmodule/arm64.swiftmodule /Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner.swiftmodule","inputs":["/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner.swiftmodule","","",""],"outputs":["/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.swiftmodule/arm64.swiftmodule"],"args":["/usr/bin/ditto","-rsrc","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner.swiftmodule","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.swiftmodule/arm64.swiftmodule"],"env":{},"working-directory":"/Users/evanreichard/Development/git/imagini/web_native/ios","signature":"5614f2b74ee4304ce4e7cdc5401b8c1d"} + "target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49-:Debug:Ditto /Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/Runner-Swift.h /Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner-Swift.h": {"tool":"shell","description":"Ditto /Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/Runner-Swift.h /Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner-Swift.h","inputs":["/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner-Swift.h","","",""],"outputs":["/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/Runner-Swift.h"],"args":["/usr/bin/ditto","-rsrc","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner-Swift.h","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/Runner-Swift.h"],"env":{},"working-directory":"/Users/evanreichard/Development/git/imagini/web_native/ios","signature":"3331a74eb8b65a6caee3103e1ba97626"} + "target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49-:Debug:Ld /Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Runner normal": {"tool":"shell","description":"Ld /Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Runner normal","inputs":["/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner_vers.o","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.o","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/AppDelegate.o","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner.LinkFileList","",""],"outputs":["/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Runner",""],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-target","arm64-apple-ios9.0-simulator","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.3.sdk","-L/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator","-F/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator","-F/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/DKImagePickerController","-F/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/DKPhotoGallery","-F/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/SDWebImage","-F/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/SwiftyGif","-F/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/file_picker","-F/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/flutter_secure_storage","-F/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/integration_test","-F/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/shared_preferences","-F/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/url_launcher","-filelist","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner.LinkFileList","-Xlinker","-rpath","-Xlinker","/usr/lib/swift","-Xlinker","-rpath","-Xlinker","@executable_path/Frameworks","-Xlinker","-rpath","-Xlinker","@loader_path/Frameworks","-Xlinker","-rpath","-Xlinker","@executable_path/Frameworks","-dead_strip","-Xlinker","-object_path_lto","-Xlinker","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner_lto.o","-Xlinker","-export_dynamic","-Xlinker","-no_deduplicate","-Xlinker","-objc_abi_version","-Xlinker","2","-fobjc-arc","-fobjc-link-runtime","-L/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator","-L/usr/lib/swift","-Xlinker","-add_ast_path","-Xlinker","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner.swiftmodule","-framework","AVFoundation","-framework","AVKit","-framework","DKImagePickerController","-framework","DKPhotoGallery","-framework","Foundation","-framework","ImageIO","-framework","Photos","-framework","SDWebImage","-framework","SwiftyGif","-framework","UIKit","-framework","file_picker","-framework","flutter_secure_storage","-framework","integration_test","-framework","shared_preferences","-framework","url_launcher","-framework","Pods_Runner","-Xlinker","-dependency_info","-Xlinker","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner_dependency_info.dat","-o","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Runner"],"env":{},"working-directory":"/Users/evanreichard/Development/git/imagini/web_native/ios","deps":["/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner_dependency_info.dat"],"deps-style":"dependency-info","signature":"35606cbf0596650074b202cb68c1d5f3"} + "target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49-:Debug:LinkStoryboards": {"tool":"shell","description":"LinkStoryboards","inputs":["/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Base.lproj/LaunchScreen.storyboardc","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Base.lproj/Main.storyboardc","",""],"outputs":["/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Base.lproj/LaunchScreen.storyboardc","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/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/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Base.lproj/LaunchScreen.storyboardc","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Base.lproj/Main.storyboardc"],"env":{"XCODE_DEVELOPER_USR_PATH":"/Applications/Xcode.app/Contents/Developer/usr/bin/.."},"working-directory":"/Users/evanreichard/Development/git/imagini/web_native/ios","control-enabled":false,"signature":"2c2a76918c7c313949e4bfe3535f7a7b"} + "target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49-:Debug:MkDir /Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app": {"tool":"mkdir","description":"MkDir /Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app","inputs":["",""],"outputs":["/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app",""]} + "target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49-:Debug:MkDir /Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Frameworks": {"tool":"mkdir","description":"MkDir /Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Frameworks","inputs":["",""],"outputs":["/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Frameworks",""]} + "target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49-:Debug:PhaseScriptExecution Run Script /Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-9740EEB61CF901F6004384FC.sh": {"tool":"shell","description":"PhaseScriptExecution Run Script /Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-9740EEB61CF901F6004384FC.sh","inputs":["/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-9740EEB61CF901F6004384FC.sh","",""],"outputs":[""],"args":["/bin/sh","-c","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-9740EEB61CF901F6004384FC.sh"],"env":{"ACTION":"build","AD_HOC_CODE_SIGNING_ALLOWED":"YES","ALTERNATE_GROUP":"staff","ALTERNATE_MODE":"u+w,go-w,a+rX","ALTERNATE_OWNER":"evanreichard","ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES":"YES","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 x86_64 i386","ARCHS_STANDARD_32_64_BIT":"arm64 i386 x86_64","ARCHS_STANDARD_32_BIT":"i386","ARCHS_STANDARD_64_BIT":"arm64 x86_64","ARCHS_STANDARD_INCLUDING_64_BIT":"arm64 x86_64 i386","ARCHS_UNIVERSAL_IPHONE_OS":"arm64 i386 x86_64","ASSETCATALOG_COMPILER_APPICON_NAME":"AppIcon","ASSETCATALOG_FILTER_FOR_DEVICE_MODEL":"iPod9,1","ASSETCATALOG_FILTER_FOR_DEVICE_OS_VERSION":"14.3","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/evanreichard/Development/git/imagini/web_native/build/ios","BUILD_LIBRARY_FOR_DISTRIBUTION":"NO","BUILD_ROOT":"/Users/evanreichard/Development/git/imagini/web_native/build/ios","BUILD_STYLE":"","BUILD_VARIANTS":"normal","BUILT_PRODUCTS_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator","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/lb/1_tw174n65x__3txp1gcj4k00000gn/C/com.apple.DeveloperTools/12.3-12C33/Xcode","CCHROOT":"/var/folders/lb/1_tw174n65x__3txp1gcj4k00000gn/C/com.apple.DeveloperTools/12.3-12C33/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/evanreichard/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":"NO","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/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/JavaClasses","CLEAN_PRECOMPS":"YES","CLONE_HEADERS":"NO","CODESIGNING_FOLDER_PATH":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app","CODE_SIGNING_ALLOWED":"YES","CODE_SIGNING_REQUIRED":"YES","CODE_SIGN_CONTEXT_CLASS":"XCiPhoneSimulatorCodeSignContext","CODE_SIGN_IDENTITY":"-","CODE_SIGN_INJECT_BASE_ENTITLEMENTS":"YES","COLOR_DIAGNOSTICS":"NO","COMBINE_HIDPI_IMAGES":"NO","COMPILER_INDEX_STORE_ENABLE":"Default","COMPOSITE_SDK_DIRS":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/CompositeSDKs","COMPRESS_PNG_FILES":"YES","CONFIGURATION":"Debug","CONFIGURATION_BUILD_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator","CONFIGURATION_TEMP_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator","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_DEVICE_PLATFORM_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform","CORRESPONDING_DEVICE_PLATFORM_NAME":"iphoneos","CORRESPONDING_DEVICE_SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.3.sdk","CORRESPONDING_DEVICE_SDK_NAME":"iphoneos14.3","CP":"/bin/cp","CREATE_INFOPLIST_SECTION_IN_BINARY":"NO","CURRENT_ARCH":"undefined_arch","CURRENT_PROJECT_VERSION":"1","CURRENT_VARIANT":"normal","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":"mios-simulator-version-min","DEPLOYMENT_TARGET_CLANG_FLAG_PREFIX":"-mios-simulator-version-min=","DEPLOYMENT_TARGET_LD_ENV_NAME":"IPHONEOS_DEPLOYMENT_TARGET","DEPLOYMENT_TARGET_LD_FLAG_NAME":"ios_simulator_version_min","DEPLOYMENT_TARGET_SETTING_NAME":"IPHONEOS_DEPLOYMENT_TARGET","DEPLOYMENT_TARGET_SUGGESTED_VALUES":"9.0 9.1 9.2 9.3 10.0 10.1 10.2 10.3 11.0 11.1 11.2 11.3 11.4 12.0 12.1 12.2 12.3 12.4 13.0 13.1 13.2 13.3 13.4 13.5 13.6 14.0 14.1 14.2 14.3","DERIVED_FILES_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources","DERIVED_FILE_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources","DERIVED_SOURCES_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources","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/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator","EFFECTIVE_PLATFORM_NAME":"-iphonesimulator","EMBEDDED_CONTENT_CONTAINS_SWIFT":"NO","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_DESTINATION":"__entitlements","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/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects/LinkFileList","FIXED_FILES_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/FixedFiles","FLUTTER_APPLICATION_PATH":"/Users/evanreichard/Development/git/imagini/web_native","FLUTTER_BUILD_DIR":"build","FLUTTER_BUILD_NAME":"1.0.0","FLUTTER_BUILD_NUMBER":"1","FLUTTER_ROOT":"/Users/evanreichard/Development/Tools/flutter","FLUTTER_TARGET":"/Users/evanreichard/Development/git/imagini/web_native/lib/main.dart","FRAMEWORKS_FOLDER_PATH":"Runner.app/Frameworks","FRAMEWORK_FLAG_PREFIX":"-framework","FRAMEWORK_SEARCH_PATHS":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator \"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/DKImagePickerController\" \"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/DKPhotoGallery\" \"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/SDWebImage\" \"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/SwiftyGif\" \"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/file_picker\" \"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/flutter_secure_storage\" \"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/integration_test\" \"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/shared_preferences\" \"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/url_launcher\"","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_OBJC_LEGACY_DISPATCH":"YES","GCC_OPTIMIZATION_LEVEL":"0","GCC_PFE_FILE_C_DIALECTS":"c objective-c c++ objective-c++","GCC_PREPROCESSOR_DEFINITIONS":"DEBUG=1 COCOAPODS=1","GCC_SYMBOLS_PRIVATE_EXTERN":"NO","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/evanreichard/Development/git/imagini/web_native/build/ios/GeneratedModuleMaps-iphonesimulator","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/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/include \"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/DKImagePickerController/DKImagePickerController.framework/Headers\" \"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/DKPhotoGallery/DKPhotoGallery.framework/Headers\" \"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/SDWebImage/SDWebImage.framework/Headers\" \"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/SwiftyGif/SwiftyGif.framework/Headers\" \"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/file_picker/file_picker.framework/Headers\" \"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/flutter_secure_storage/flutter_secure_storage.framework/Headers\" \"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/integration_test/integration_test.framework/Headers\" \"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/shared_preferences/shared_preferences.framework/Headers\" \"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/url_launcher/url_launcher.framework/Headers\"","HIDE_BITCODE_SYMBOLS":"YES","HOME":"/Users/evanreichard","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":"evanreichard","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","KEEP_PRIVATE_EXTERNS":"NO","LD_DEPENDENCY_INFO_FILE":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/undefined_arch/Runner_dependency_info.dat","LD_GENERATE_MAP_FILE":"NO","LD_MAP_FILE_PATH":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/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' '@loader_path/Frameworks' @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/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator ","LINKER_DISPLAYS_MANGLED_NAMES":"NO","LINK_FILE_LIST_normal_arm64":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner.LinkFileList","LINK_WITH_STANDARD_LIBRARIES":"YES","LLVM_TARGET_TRIPLE_OS_VERSION":"ios9.0","LLVM_TARGET_TRIPLE_SUFFIX":"-simulator","LLVM_TARGET_TRIPLE_VENDOR":"apple","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/evanreichard/Development/git/imagini/web_native/ios","LOCSYMROOT":"/Users/evanreichard/Development/git/imagini/web_native/ios","MACH_O_TYPE":"mh_execute","MAC_OS_X_PRODUCT_BUILD_VERSION":"20C69","MAC_OS_X_VERSION_ACTUAL":"110100","MAC_OS_X_VERSION_MAJOR":"110000","MAC_OS_X_VERSION_MINOR":"110100","METAL_LIBRARY_FILE_BASE":"default","METAL_LIBRARY_OUTPUT_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app","MODULES_FOLDER_PATH":"Runner.app/Modules","MODULE_CACHE_DIR":"/Users/evanreichard/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","MTL_ENABLE_DEBUG_INFO":"YES","NATIVE_ARCH":"arm64","NATIVE_ARCH_32_BIT":"arm","NATIVE_ARCH_64_BIT":"arm64","NATIVE_ARCH_ACTUAL":"arm64","NO_COMMON":"YES","OBJC_ABI_VERSION":"2","OBJECT_FILE_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects","OBJECT_FILE_DIR_normal":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal","OBJROOT":"/Users/evanreichard/Development/git/imagini/web_native/build/ios","ONLY_ACTIVE_ARCH":"YES","OS":"MACOS","OSAC":"/usr/bin/osacompile","OTHER_LDFLAGS":" -framework \"AVFoundation\" -framework \"AVKit\" -framework \"DKImagePickerController\" -framework \"DKPhotoGallery\" -framework \"Foundation\" -framework \"ImageIO\" -framework \"Photos\" -framework \"SDWebImage\" -framework \"SwiftyGif\" -framework \"UIKit\" -framework \"file_picker\" -framework \"flutter_secure_storage\" -framework \"integration_test\" -framework \"shared_preferences\" -framework \"url_launcher\"","OTHER_SWIFT_FLAGS":" -D COCOAPODS","PACKAGE_CONFIG":"/Users/evanreichard/Development/git/imagini/web_native/.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/iPhoneSimulator.platform/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.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/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/undefined_arch","PER_VARIANT_OBJECT_FILE_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal","PKGINFO_FILE_PATH":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/PkgInfo","PKGINFO_PATH":"Runner.app/PkgInfo","PLATFORM_DEVELOPER_APPLICATIONS_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Applications","PLATFORM_DEVELOPER_BIN_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin","PLATFORM_DEVELOPER_LIBRARY_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library","PLATFORM_DEVELOPER_SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs","PLATFORM_DEVELOPER_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Tools","PLATFORM_DEVELOPER_USR_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr","PLATFORM_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform","PLATFORM_DISPLAY_NAME":"iOS Simulator","PLATFORM_FAMILY_NAME":"iOS","PLATFORM_NAME":"iphonesimulator","PLATFORM_PREFERRED_ARCH":"x86_64","PLATFORM_PRODUCT_BUILD_VERSION":"18C61","PLIST_FILE_OUTPUT_FORMAT":"binary","PLUGINS_FOLDER_PATH":"Runner.app/PlugIns","PODS_BUILD_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios","PODS_CONFIGURATION_BUILD_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator","PODS_PODFILE_DIR_PATH":"/Users/evanreichard/Development/git/imagini/web_native/ios/.","PODS_ROOT":"/Users/evanreichard/Development/git/imagini/web_native/ios/Pods","PODS_XCFRAMEWORKS_BUILD_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates","PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR":"YES","PRECOMP_DESTINATION_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/PrefixHeaders","PRESERVE_DEAD_CODE_INITS_AND_TERMS":"NO","PRIVATE_HEADERS_FOLDER_PATH":"Runner.app/PrivateHeaders","PRODUCT_BUNDLE_IDENTIFIER":"com.reichard.imagini","PRODUCT_BUNDLE_PACKAGE_TYPE":"APPL","PRODUCT_MODULE_NAME":"Runner","PRODUCT_NAME":"Runner","PRODUCT_SETTINGS_PATH":"/Users/evanreichard/Development/git/imagini/web_native/ios/Runner/Info.plist","PRODUCT_TYPE":"com.apple.product-type.application","PROFILING_CODE":"NO","PROJECT":"Runner","PROJECT_DERIVED_FILE_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/DerivedSources","PROJECT_DIR":"/Users/evanreichard/Development/git/imagini/web_native/ios","PROJECT_FILE_PATH":"/Users/evanreichard/Development/git/imagini/web_native/ios/Runner.xcodeproj","PROJECT_NAME":"Runner","PROJECT_TEMP_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build","PROJECT_TEMP_ROOT":"/Users/evanreichard/Development/git/imagini/web_native/build/ios","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","REZ_COLLECTOR_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/ResourceManagerResources","REZ_OBJECTS_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/ResourceManagerResources/Objects","REZ_SEARCH_PATHS":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator ","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/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.3.sdk","SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.3.sdk","SDK_DIR_iphonesimulator14_3":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.3.sdk","SDK_NAME":"iphonesimulator14.3","SDK_NAMES":"iphonesimulator14.3","SDK_PRODUCT_BUILD_VERSION":"18C61","SDK_VERSION":"14.3","SDK_VERSION_ACTUAL":"140300","SDK_VERSION_MAJOR":"140000","SDK_VERSION_MINOR":"140300","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/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/DerivedSources","SHARED_FRAMEWORKS_FOLDER_PATH":"Runner.app/SharedFrameworks","SHARED_PRECOMPS_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/SharedPrecompiledHeaders","SHARED_SUPPORT_FOLDER_PATH":"Runner.app/SharedSupport","SKIP_INSTALL":"NO","SOURCE_ROOT":"/Users/evanreichard/Development/git/imagini/web_native/ios","SRCROOT":"/Users/evanreichard/Development/git/imagini/web_native/ios","STRINGS_FILE_OUTPUT_ENCODING":"binary","STRIP_BITCODE_FROM_COPIED_FILES":"NO","STRIP_INSTALLED_PRODUCT":"YES","STRIP_STYLE":"all","STRIP_SWIFT_SYMBOLS":"YES","SUPPORTED_DEVICE_FAMILIES":"1,2","SUPPORTED_PLATFORMS":"iphoneos iphonesimulator","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/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner.SwiftFileList","SWIFT_VERSION":"5.0","SYMROOT":"/Users/evanreichard/Development/git/imagini/web_native/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/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator","TARGET_DEVICE_IDENTIFIER":"CA4B966C-C239-47D2-AC10-9BE04BC1E3D5","TARGET_DEVICE_MODEL":"iPod9,1","TARGET_DEVICE_OS_VERSION":"14.3","TARGET_NAME":"Runner","TARGET_TEMP_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build","TEMP_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build","TEMP_FILES_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build","TEMP_FILE_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build","TEMP_ROOT":"/Users/evanreichard/Development/git/imagini/web_native/build/ios","TEST_FRAMEWORK_SEARCH_PATHS":" /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.3.sdk/Developer/Library/Frameworks","TEST_LIBRARY_SEARCH_PATHS":" /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.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":"evanreichard","USER_APPS_DIR":"/Users/evanreichard/Applications","USER_LIBRARY_DIR":"/Users/evanreichard/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","USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES":"YES","VALIDATE_DEVELOPMENT_ASSET_PATHS":"YES_ERROR","VALIDATE_PRODUCT":"NO","VALIDATE_WORKSPACE":"YES_ERROR","VALID_ARCHS":"arm64 arm64e i386 x86_64","VERBOSE_PBXCP":"NO","VERSIONING_SYSTEM":"apple-generic","VERSIONPLIST_PATH":"Runner.app/version.plist","VERSION_INFO_BUILDER":"evanreichard","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":"12C33","XCODE_VERSION_ACTUAL":"1230","XCODE_VERSION_MAJOR":"1200","XCODE_VERSION_MINOR":"1230","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/evanreichard/Development/git/imagini/web_native/ios","control-enabled":false,"signature":"13c7a2c5085b256c4937b076d9178554"} + "target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49-:Debug:PhaseScriptExecution Thin Binary /Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh": {"tool":"shell","description":"PhaseScriptExecution Thin Binary /Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh","inputs":["/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh","",""],"outputs":[""],"args":["/bin/sh","-c","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh"],"env":{"ACTION":"build","AD_HOC_CODE_SIGNING_ALLOWED":"YES","ALTERNATE_GROUP":"staff","ALTERNATE_MODE":"u+w,go-w,a+rX","ALTERNATE_OWNER":"evanreichard","ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES":"YES","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 x86_64 i386","ARCHS_STANDARD_32_64_BIT":"arm64 i386 x86_64","ARCHS_STANDARD_32_BIT":"i386","ARCHS_STANDARD_64_BIT":"arm64 x86_64","ARCHS_STANDARD_INCLUDING_64_BIT":"arm64 x86_64 i386","ARCHS_UNIVERSAL_IPHONE_OS":"arm64 i386 x86_64","ASSETCATALOG_COMPILER_APPICON_NAME":"AppIcon","ASSETCATALOG_FILTER_FOR_DEVICE_MODEL":"iPod9,1","ASSETCATALOG_FILTER_FOR_DEVICE_OS_VERSION":"14.3","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/evanreichard/Development/git/imagini/web_native/build/ios","BUILD_LIBRARY_FOR_DISTRIBUTION":"NO","BUILD_ROOT":"/Users/evanreichard/Development/git/imagini/web_native/build/ios","BUILD_STYLE":"","BUILD_VARIANTS":"normal","BUILT_PRODUCTS_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator","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/lb/1_tw174n65x__3txp1gcj4k00000gn/C/com.apple.DeveloperTools/12.3-12C33/Xcode","CCHROOT":"/var/folders/lb/1_tw174n65x__3txp1gcj4k00000gn/C/com.apple.DeveloperTools/12.3-12C33/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/evanreichard/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":"NO","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/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/JavaClasses","CLEAN_PRECOMPS":"YES","CLONE_HEADERS":"NO","CODESIGNING_FOLDER_PATH":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app","CODE_SIGNING_ALLOWED":"YES","CODE_SIGNING_REQUIRED":"YES","CODE_SIGN_CONTEXT_CLASS":"XCiPhoneSimulatorCodeSignContext","CODE_SIGN_IDENTITY":"-","CODE_SIGN_INJECT_BASE_ENTITLEMENTS":"YES","COLOR_DIAGNOSTICS":"NO","COMBINE_HIDPI_IMAGES":"NO","COMPILER_INDEX_STORE_ENABLE":"Default","COMPOSITE_SDK_DIRS":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/CompositeSDKs","COMPRESS_PNG_FILES":"YES","CONFIGURATION":"Debug","CONFIGURATION_BUILD_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator","CONFIGURATION_TEMP_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator","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_DEVICE_PLATFORM_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform","CORRESPONDING_DEVICE_PLATFORM_NAME":"iphoneos","CORRESPONDING_DEVICE_SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.3.sdk","CORRESPONDING_DEVICE_SDK_NAME":"iphoneos14.3","CP":"/bin/cp","CREATE_INFOPLIST_SECTION_IN_BINARY":"NO","CURRENT_ARCH":"undefined_arch","CURRENT_PROJECT_VERSION":"1","CURRENT_VARIANT":"normal","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":"mios-simulator-version-min","DEPLOYMENT_TARGET_CLANG_FLAG_PREFIX":"-mios-simulator-version-min=","DEPLOYMENT_TARGET_LD_ENV_NAME":"IPHONEOS_DEPLOYMENT_TARGET","DEPLOYMENT_TARGET_LD_FLAG_NAME":"ios_simulator_version_min","DEPLOYMENT_TARGET_SETTING_NAME":"IPHONEOS_DEPLOYMENT_TARGET","DEPLOYMENT_TARGET_SUGGESTED_VALUES":"9.0 9.1 9.2 9.3 10.0 10.1 10.2 10.3 11.0 11.1 11.2 11.3 11.4 12.0 12.1 12.2 12.3 12.4 13.0 13.1 13.2 13.3 13.4 13.5 13.6 14.0 14.1 14.2 14.3","DERIVED_FILES_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources","DERIVED_FILE_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources","DERIVED_SOURCES_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources","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/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator","EFFECTIVE_PLATFORM_NAME":"-iphonesimulator","EMBEDDED_CONTENT_CONTAINS_SWIFT":"NO","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_DESTINATION":"__entitlements","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/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects/LinkFileList","FIXED_FILES_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/FixedFiles","FLUTTER_APPLICATION_PATH":"/Users/evanreichard/Development/git/imagini/web_native","FLUTTER_BUILD_DIR":"build","FLUTTER_BUILD_NAME":"1.0.0","FLUTTER_BUILD_NUMBER":"1","FLUTTER_ROOT":"/Users/evanreichard/Development/Tools/flutter","FLUTTER_TARGET":"/Users/evanreichard/Development/git/imagini/web_native/lib/main.dart","FRAMEWORKS_FOLDER_PATH":"Runner.app/Frameworks","FRAMEWORK_FLAG_PREFIX":"-framework","FRAMEWORK_SEARCH_PATHS":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator \"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/DKImagePickerController\" \"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/DKPhotoGallery\" \"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/SDWebImage\" \"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/SwiftyGif\" \"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/file_picker\" \"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/flutter_secure_storage\" \"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/integration_test\" \"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/shared_preferences\" \"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/url_launcher\"","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_OBJC_LEGACY_DISPATCH":"YES","GCC_OPTIMIZATION_LEVEL":"0","GCC_PFE_FILE_C_DIALECTS":"c objective-c c++ objective-c++","GCC_PREPROCESSOR_DEFINITIONS":"DEBUG=1 COCOAPODS=1","GCC_SYMBOLS_PRIVATE_EXTERN":"NO","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/evanreichard/Development/git/imagini/web_native/build/ios/GeneratedModuleMaps-iphonesimulator","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/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/include \"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/DKImagePickerController/DKImagePickerController.framework/Headers\" \"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/DKPhotoGallery/DKPhotoGallery.framework/Headers\" \"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/SDWebImage/SDWebImage.framework/Headers\" \"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/SwiftyGif/SwiftyGif.framework/Headers\" \"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/file_picker/file_picker.framework/Headers\" \"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/flutter_secure_storage/flutter_secure_storage.framework/Headers\" \"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/integration_test/integration_test.framework/Headers\" \"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/shared_preferences/shared_preferences.framework/Headers\" \"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/url_launcher/url_launcher.framework/Headers\"","HIDE_BITCODE_SYMBOLS":"YES","HOME":"/Users/evanreichard","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":"evanreichard","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","KEEP_PRIVATE_EXTERNS":"NO","LD_DEPENDENCY_INFO_FILE":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/undefined_arch/Runner_dependency_info.dat","LD_GENERATE_MAP_FILE":"NO","LD_MAP_FILE_PATH":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/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' '@loader_path/Frameworks' @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/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator ","LINKER_DISPLAYS_MANGLED_NAMES":"NO","LINK_FILE_LIST_normal_arm64":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner.LinkFileList","LINK_WITH_STANDARD_LIBRARIES":"YES","LLVM_TARGET_TRIPLE_OS_VERSION":"ios9.0","LLVM_TARGET_TRIPLE_SUFFIX":"-simulator","LLVM_TARGET_TRIPLE_VENDOR":"apple","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/evanreichard/Development/git/imagini/web_native/ios","LOCSYMROOT":"/Users/evanreichard/Development/git/imagini/web_native/ios","MACH_O_TYPE":"mh_execute","MAC_OS_X_PRODUCT_BUILD_VERSION":"20C69","MAC_OS_X_VERSION_ACTUAL":"110100","MAC_OS_X_VERSION_MAJOR":"110000","MAC_OS_X_VERSION_MINOR":"110100","METAL_LIBRARY_FILE_BASE":"default","METAL_LIBRARY_OUTPUT_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app","MODULES_FOLDER_PATH":"Runner.app/Modules","MODULE_CACHE_DIR":"/Users/evanreichard/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","MTL_ENABLE_DEBUG_INFO":"YES","NATIVE_ARCH":"arm64","NATIVE_ARCH_32_BIT":"arm","NATIVE_ARCH_64_BIT":"arm64","NATIVE_ARCH_ACTUAL":"arm64","NO_COMMON":"YES","OBJC_ABI_VERSION":"2","OBJECT_FILE_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects","OBJECT_FILE_DIR_normal":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal","OBJROOT":"/Users/evanreichard/Development/git/imagini/web_native/build/ios","ONLY_ACTIVE_ARCH":"YES","OS":"MACOS","OSAC":"/usr/bin/osacompile","OTHER_LDFLAGS":" -framework \"AVFoundation\" -framework \"AVKit\" -framework \"DKImagePickerController\" -framework \"DKPhotoGallery\" -framework \"Foundation\" -framework \"ImageIO\" -framework \"Photos\" -framework \"SDWebImage\" -framework \"SwiftyGif\" -framework \"UIKit\" -framework \"file_picker\" -framework \"flutter_secure_storage\" -framework \"integration_test\" -framework \"shared_preferences\" -framework \"url_launcher\"","OTHER_SWIFT_FLAGS":" -D COCOAPODS","PACKAGE_CONFIG":"/Users/evanreichard/Development/git/imagini/web_native/.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/iPhoneSimulator.platform/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.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/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/undefined_arch","PER_VARIANT_OBJECT_FILE_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal","PKGINFO_FILE_PATH":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/PkgInfo","PKGINFO_PATH":"Runner.app/PkgInfo","PLATFORM_DEVELOPER_APPLICATIONS_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Applications","PLATFORM_DEVELOPER_BIN_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin","PLATFORM_DEVELOPER_LIBRARY_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library","PLATFORM_DEVELOPER_SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs","PLATFORM_DEVELOPER_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Tools","PLATFORM_DEVELOPER_USR_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr","PLATFORM_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform","PLATFORM_DISPLAY_NAME":"iOS Simulator","PLATFORM_FAMILY_NAME":"iOS","PLATFORM_NAME":"iphonesimulator","PLATFORM_PREFERRED_ARCH":"x86_64","PLATFORM_PRODUCT_BUILD_VERSION":"18C61","PLIST_FILE_OUTPUT_FORMAT":"binary","PLUGINS_FOLDER_PATH":"Runner.app/PlugIns","PODS_BUILD_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios","PODS_CONFIGURATION_BUILD_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator","PODS_PODFILE_DIR_PATH":"/Users/evanreichard/Development/git/imagini/web_native/ios/.","PODS_ROOT":"/Users/evanreichard/Development/git/imagini/web_native/ios/Pods","PODS_XCFRAMEWORKS_BUILD_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates","PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR":"YES","PRECOMP_DESTINATION_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/PrefixHeaders","PRESERVE_DEAD_CODE_INITS_AND_TERMS":"NO","PRIVATE_HEADERS_FOLDER_PATH":"Runner.app/PrivateHeaders","PRODUCT_BUNDLE_IDENTIFIER":"com.reichard.imagini","PRODUCT_BUNDLE_PACKAGE_TYPE":"APPL","PRODUCT_MODULE_NAME":"Runner","PRODUCT_NAME":"Runner","PRODUCT_SETTINGS_PATH":"/Users/evanreichard/Development/git/imagini/web_native/ios/Runner/Info.plist","PRODUCT_TYPE":"com.apple.product-type.application","PROFILING_CODE":"NO","PROJECT":"Runner","PROJECT_DERIVED_FILE_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/DerivedSources","PROJECT_DIR":"/Users/evanreichard/Development/git/imagini/web_native/ios","PROJECT_FILE_PATH":"/Users/evanreichard/Development/git/imagini/web_native/ios/Runner.xcodeproj","PROJECT_NAME":"Runner","PROJECT_TEMP_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build","PROJECT_TEMP_ROOT":"/Users/evanreichard/Development/git/imagini/web_native/build/ios","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","REZ_COLLECTOR_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/ResourceManagerResources","REZ_OBJECTS_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/ResourceManagerResources/Objects","REZ_SEARCH_PATHS":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator ","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/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.3.sdk","SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.3.sdk","SDK_DIR_iphonesimulator14_3":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.3.sdk","SDK_NAME":"iphonesimulator14.3","SDK_NAMES":"iphonesimulator14.3","SDK_PRODUCT_BUILD_VERSION":"18C61","SDK_VERSION":"14.3","SDK_VERSION_ACTUAL":"140300","SDK_VERSION_MAJOR":"140000","SDK_VERSION_MINOR":"140300","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/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/DerivedSources","SHARED_FRAMEWORKS_FOLDER_PATH":"Runner.app/SharedFrameworks","SHARED_PRECOMPS_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/SharedPrecompiledHeaders","SHARED_SUPPORT_FOLDER_PATH":"Runner.app/SharedSupport","SKIP_INSTALL":"NO","SOURCE_ROOT":"/Users/evanreichard/Development/git/imagini/web_native/ios","SRCROOT":"/Users/evanreichard/Development/git/imagini/web_native/ios","STRINGS_FILE_OUTPUT_ENCODING":"binary","STRIP_BITCODE_FROM_COPIED_FILES":"NO","STRIP_INSTALLED_PRODUCT":"YES","STRIP_STYLE":"all","STRIP_SWIFT_SYMBOLS":"YES","SUPPORTED_DEVICE_FAMILIES":"1,2","SUPPORTED_PLATFORMS":"iphoneos iphonesimulator","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/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner.SwiftFileList","SWIFT_VERSION":"5.0","SYMROOT":"/Users/evanreichard/Development/git/imagini/web_native/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/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator","TARGET_DEVICE_IDENTIFIER":"CA4B966C-C239-47D2-AC10-9BE04BC1E3D5","TARGET_DEVICE_MODEL":"iPod9,1","TARGET_DEVICE_OS_VERSION":"14.3","TARGET_NAME":"Runner","TARGET_TEMP_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build","TEMP_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build","TEMP_FILES_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build","TEMP_FILE_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build","TEMP_ROOT":"/Users/evanreichard/Development/git/imagini/web_native/build/ios","TEST_FRAMEWORK_SEARCH_PATHS":" /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.3.sdk/Developer/Library/Frameworks","TEST_LIBRARY_SEARCH_PATHS":" /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.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":"evanreichard","USER_APPS_DIR":"/Users/evanreichard/Applications","USER_LIBRARY_DIR":"/Users/evanreichard/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","USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES":"YES","VALIDATE_DEVELOPMENT_ASSET_PATHS":"YES_ERROR","VALIDATE_PRODUCT":"NO","VALIDATE_WORKSPACE":"YES_ERROR","VALID_ARCHS":"arm64 arm64e i386 x86_64","VERBOSE_PBXCP":"NO","VERSIONING_SYSTEM":"apple-generic","VERSIONPLIST_PATH":"Runner.app/version.plist","VERSION_INFO_BUILDER":"evanreichard","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":"12C33","XCODE_VERSION_ACTUAL":"1230","XCODE_VERSION_MAJOR":"1200","XCODE_VERSION_MINOR":"1230","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/evanreichard/Development/git/imagini/web_native/ios","control-enabled":false,"signature":"562d9ca524d6169d6a172328d2d8a829"} + "target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49-:Debug:PhaseScriptExecution [CP] Check Pods Manifest.lock /Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-D86A7985AAC25B64F99FB7F7.sh": {"tool":"shell","description":"PhaseScriptExecution [CP] Check Pods Manifest.lock /Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-D86A7985AAC25B64F99FB7F7.sh","inputs":["/Users/evanreichard/Development/git/imagini/web_native/ios/Podfile.lock/","/Users/evanreichard/Development/git/imagini/web_native/ios/Pods/Manifest.lock/","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-D86A7985AAC25B64F99FB7F7.sh","",""],"outputs":["/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/Pods-Runner-checkManifestLockResult.txt"],"args":["/bin/sh","-c","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-D86A7985AAC25B64F99FB7F7.sh"],"env":{"ACTION":"build","AD_HOC_CODE_SIGNING_ALLOWED":"YES","ALTERNATE_GROUP":"staff","ALTERNATE_MODE":"u+w,go-w,a+rX","ALTERNATE_OWNER":"evanreichard","ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES":"YES","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 x86_64 i386","ARCHS_STANDARD_32_64_BIT":"arm64 i386 x86_64","ARCHS_STANDARD_32_BIT":"i386","ARCHS_STANDARD_64_BIT":"arm64 x86_64","ARCHS_STANDARD_INCLUDING_64_BIT":"arm64 x86_64 i386","ARCHS_UNIVERSAL_IPHONE_OS":"arm64 i386 x86_64","ASSETCATALOG_COMPILER_APPICON_NAME":"AppIcon","ASSETCATALOG_FILTER_FOR_DEVICE_MODEL":"iPod9,1","ASSETCATALOG_FILTER_FOR_DEVICE_OS_VERSION":"14.3","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/evanreichard/Development/git/imagini/web_native/build/ios","BUILD_LIBRARY_FOR_DISTRIBUTION":"NO","BUILD_ROOT":"/Users/evanreichard/Development/git/imagini/web_native/build/ios","BUILD_STYLE":"","BUILD_VARIANTS":"normal","BUILT_PRODUCTS_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator","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/lb/1_tw174n65x__3txp1gcj4k00000gn/C/com.apple.DeveloperTools/12.3-12C33/Xcode","CCHROOT":"/var/folders/lb/1_tw174n65x__3txp1gcj4k00000gn/C/com.apple.DeveloperTools/12.3-12C33/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/evanreichard/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":"NO","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/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/JavaClasses","CLEAN_PRECOMPS":"YES","CLONE_HEADERS":"NO","CODESIGNING_FOLDER_PATH":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app","CODE_SIGNING_ALLOWED":"YES","CODE_SIGNING_REQUIRED":"YES","CODE_SIGN_CONTEXT_CLASS":"XCiPhoneSimulatorCodeSignContext","CODE_SIGN_IDENTITY":"-","CODE_SIGN_INJECT_BASE_ENTITLEMENTS":"YES","COLOR_DIAGNOSTICS":"NO","COMBINE_HIDPI_IMAGES":"NO","COMPILER_INDEX_STORE_ENABLE":"Default","COMPOSITE_SDK_DIRS":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/CompositeSDKs","COMPRESS_PNG_FILES":"YES","CONFIGURATION":"Debug","CONFIGURATION_BUILD_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator","CONFIGURATION_TEMP_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator","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_DEVICE_PLATFORM_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform","CORRESPONDING_DEVICE_PLATFORM_NAME":"iphoneos","CORRESPONDING_DEVICE_SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.3.sdk","CORRESPONDING_DEVICE_SDK_NAME":"iphoneos14.3","CP":"/bin/cp","CREATE_INFOPLIST_SECTION_IN_BINARY":"NO","CURRENT_ARCH":"undefined_arch","CURRENT_PROJECT_VERSION":"1","CURRENT_VARIANT":"normal","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":"mios-simulator-version-min","DEPLOYMENT_TARGET_CLANG_FLAG_PREFIX":"-mios-simulator-version-min=","DEPLOYMENT_TARGET_LD_ENV_NAME":"IPHONEOS_DEPLOYMENT_TARGET","DEPLOYMENT_TARGET_LD_FLAG_NAME":"ios_simulator_version_min","DEPLOYMENT_TARGET_SETTING_NAME":"IPHONEOS_DEPLOYMENT_TARGET","DEPLOYMENT_TARGET_SUGGESTED_VALUES":"9.0 9.1 9.2 9.3 10.0 10.1 10.2 10.3 11.0 11.1 11.2 11.3 11.4 12.0 12.1 12.2 12.3 12.4 13.0 13.1 13.2 13.3 13.4 13.5 13.6 14.0 14.1 14.2 14.3","DERIVED_FILES_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources","DERIVED_FILE_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources","DERIVED_SOURCES_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources","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/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator","EFFECTIVE_PLATFORM_NAME":"-iphonesimulator","EMBEDDED_CONTENT_CONTAINS_SWIFT":"NO","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_DESTINATION":"__entitlements","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/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects/LinkFileList","FIXED_FILES_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/FixedFiles","FLUTTER_APPLICATION_PATH":"/Users/evanreichard/Development/git/imagini/web_native","FLUTTER_BUILD_DIR":"build","FLUTTER_BUILD_NAME":"1.0.0","FLUTTER_BUILD_NUMBER":"1","FLUTTER_ROOT":"/Users/evanreichard/Development/Tools/flutter","FLUTTER_TARGET":"/Users/evanreichard/Development/git/imagini/web_native/lib/main.dart","FRAMEWORKS_FOLDER_PATH":"Runner.app/Frameworks","FRAMEWORK_FLAG_PREFIX":"-framework","FRAMEWORK_SEARCH_PATHS":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator \"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/DKImagePickerController\" \"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/DKPhotoGallery\" \"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/SDWebImage\" \"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/SwiftyGif\" \"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/file_picker\" \"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/flutter_secure_storage\" \"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/integration_test\" \"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/shared_preferences\" \"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/url_launcher\"","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_OBJC_LEGACY_DISPATCH":"YES","GCC_OPTIMIZATION_LEVEL":"0","GCC_PFE_FILE_C_DIALECTS":"c objective-c c++ objective-c++","GCC_PREPROCESSOR_DEFINITIONS":"DEBUG=1 COCOAPODS=1","GCC_SYMBOLS_PRIVATE_EXTERN":"NO","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/evanreichard/Development/git/imagini/web_native/build/ios/GeneratedModuleMaps-iphonesimulator","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/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/include \"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/DKImagePickerController/DKImagePickerController.framework/Headers\" \"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/DKPhotoGallery/DKPhotoGallery.framework/Headers\" \"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/SDWebImage/SDWebImage.framework/Headers\" \"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/SwiftyGif/SwiftyGif.framework/Headers\" \"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/file_picker/file_picker.framework/Headers\" \"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/flutter_secure_storage/flutter_secure_storage.framework/Headers\" \"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/integration_test/integration_test.framework/Headers\" \"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/shared_preferences/shared_preferences.framework/Headers\" \"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/url_launcher/url_launcher.framework/Headers\"","HIDE_BITCODE_SYMBOLS":"YES","HOME":"/Users/evanreichard","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":"evanreichard","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","KEEP_PRIVATE_EXTERNS":"NO","LD_DEPENDENCY_INFO_FILE":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/undefined_arch/Runner_dependency_info.dat","LD_GENERATE_MAP_FILE":"NO","LD_MAP_FILE_PATH":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/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' '@loader_path/Frameworks' @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/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator ","LINKER_DISPLAYS_MANGLED_NAMES":"NO","LINK_FILE_LIST_normal_arm64":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner.LinkFileList","LINK_WITH_STANDARD_LIBRARIES":"YES","LLVM_TARGET_TRIPLE_OS_VERSION":"ios9.0","LLVM_TARGET_TRIPLE_SUFFIX":"-simulator","LLVM_TARGET_TRIPLE_VENDOR":"apple","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/evanreichard/Development/git/imagini/web_native/ios","LOCSYMROOT":"/Users/evanreichard/Development/git/imagini/web_native/ios","MACH_O_TYPE":"mh_execute","MAC_OS_X_PRODUCT_BUILD_VERSION":"20C69","MAC_OS_X_VERSION_ACTUAL":"110100","MAC_OS_X_VERSION_MAJOR":"110000","MAC_OS_X_VERSION_MINOR":"110100","METAL_LIBRARY_FILE_BASE":"default","METAL_LIBRARY_OUTPUT_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app","MODULES_FOLDER_PATH":"Runner.app/Modules","MODULE_CACHE_DIR":"/Users/evanreichard/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","MTL_ENABLE_DEBUG_INFO":"YES","NATIVE_ARCH":"arm64","NATIVE_ARCH_32_BIT":"arm","NATIVE_ARCH_64_BIT":"arm64","NATIVE_ARCH_ACTUAL":"arm64","NO_COMMON":"YES","OBJC_ABI_VERSION":"2","OBJECT_FILE_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects","OBJECT_FILE_DIR_normal":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal","OBJROOT":"/Users/evanreichard/Development/git/imagini/web_native/build/ios","ONLY_ACTIVE_ARCH":"YES","OS":"MACOS","OSAC":"/usr/bin/osacompile","OTHER_LDFLAGS":" -framework \"AVFoundation\" -framework \"AVKit\" -framework \"DKImagePickerController\" -framework \"DKPhotoGallery\" -framework \"Foundation\" -framework \"ImageIO\" -framework \"Photos\" -framework \"SDWebImage\" -framework \"SwiftyGif\" -framework \"UIKit\" -framework \"file_picker\" -framework \"flutter_secure_storage\" -framework \"integration_test\" -framework \"shared_preferences\" -framework \"url_launcher\"","OTHER_SWIFT_FLAGS":" -D COCOAPODS","PACKAGE_CONFIG":"/Users/evanreichard/Development/git/imagini/web_native/.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/iPhoneSimulator.platform/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.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/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/undefined_arch","PER_VARIANT_OBJECT_FILE_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal","PKGINFO_FILE_PATH":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/PkgInfo","PKGINFO_PATH":"Runner.app/PkgInfo","PLATFORM_DEVELOPER_APPLICATIONS_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Applications","PLATFORM_DEVELOPER_BIN_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin","PLATFORM_DEVELOPER_LIBRARY_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library","PLATFORM_DEVELOPER_SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs","PLATFORM_DEVELOPER_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Tools","PLATFORM_DEVELOPER_USR_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr","PLATFORM_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform","PLATFORM_DISPLAY_NAME":"iOS Simulator","PLATFORM_FAMILY_NAME":"iOS","PLATFORM_NAME":"iphonesimulator","PLATFORM_PREFERRED_ARCH":"x86_64","PLATFORM_PRODUCT_BUILD_VERSION":"18C61","PLIST_FILE_OUTPUT_FORMAT":"binary","PLUGINS_FOLDER_PATH":"Runner.app/PlugIns","PODS_BUILD_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios","PODS_CONFIGURATION_BUILD_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator","PODS_PODFILE_DIR_PATH":"/Users/evanreichard/Development/git/imagini/web_native/ios/.","PODS_ROOT":"/Users/evanreichard/Development/git/imagini/web_native/ios/Pods","PODS_XCFRAMEWORKS_BUILD_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates","PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR":"YES","PRECOMP_DESTINATION_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/PrefixHeaders","PRESERVE_DEAD_CODE_INITS_AND_TERMS":"NO","PRIVATE_HEADERS_FOLDER_PATH":"Runner.app/PrivateHeaders","PRODUCT_BUNDLE_IDENTIFIER":"com.reichard.imagini","PRODUCT_BUNDLE_PACKAGE_TYPE":"APPL","PRODUCT_MODULE_NAME":"Runner","PRODUCT_NAME":"Runner","PRODUCT_SETTINGS_PATH":"/Users/evanreichard/Development/git/imagini/web_native/ios/Runner/Info.plist","PRODUCT_TYPE":"com.apple.product-type.application","PROFILING_CODE":"NO","PROJECT":"Runner","PROJECT_DERIVED_FILE_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/DerivedSources","PROJECT_DIR":"/Users/evanreichard/Development/git/imagini/web_native/ios","PROJECT_FILE_PATH":"/Users/evanreichard/Development/git/imagini/web_native/ios/Runner.xcodeproj","PROJECT_NAME":"Runner","PROJECT_TEMP_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build","PROJECT_TEMP_ROOT":"/Users/evanreichard/Development/git/imagini/web_native/build/ios","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","REZ_COLLECTOR_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/ResourceManagerResources","REZ_OBJECTS_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/ResourceManagerResources/Objects","REZ_SEARCH_PATHS":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator ","SCAN_ALL_SOURCE_FILES_FOR_INCLUDES":"NO","SCRIPTS_FOLDER_PATH":"Runner.app/Scripts","SCRIPT_INPUT_FILE_0":"/Users/evanreichard/Development/git/imagini/web_native/ios/Podfile.lock","SCRIPT_INPUT_FILE_1":"/Users/evanreichard/Development/git/imagini/web_native/ios/Pods/Manifest.lock","SCRIPT_INPUT_FILE_COUNT":"2","SCRIPT_INPUT_FILE_LIST_COUNT":"0","SCRIPT_OUTPUT_FILE_0":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/Pods-Runner-checkManifestLockResult.txt","SCRIPT_OUTPUT_FILE_COUNT":"1","SCRIPT_OUTPUT_FILE_LIST_COUNT":"0","SDKROOT":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.3.sdk","SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.3.sdk","SDK_DIR_iphonesimulator14_3":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.3.sdk","SDK_NAME":"iphonesimulator14.3","SDK_NAMES":"iphonesimulator14.3","SDK_PRODUCT_BUILD_VERSION":"18C61","SDK_VERSION":"14.3","SDK_VERSION_ACTUAL":"140300","SDK_VERSION_MAJOR":"140000","SDK_VERSION_MINOR":"140300","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/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/DerivedSources","SHARED_FRAMEWORKS_FOLDER_PATH":"Runner.app/SharedFrameworks","SHARED_PRECOMPS_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/SharedPrecompiledHeaders","SHARED_SUPPORT_FOLDER_PATH":"Runner.app/SharedSupport","SKIP_INSTALL":"NO","SOURCE_ROOT":"/Users/evanreichard/Development/git/imagini/web_native/ios","SRCROOT":"/Users/evanreichard/Development/git/imagini/web_native/ios","STRINGS_FILE_OUTPUT_ENCODING":"binary","STRIP_BITCODE_FROM_COPIED_FILES":"NO","STRIP_INSTALLED_PRODUCT":"YES","STRIP_STYLE":"all","STRIP_SWIFT_SYMBOLS":"YES","SUPPORTED_DEVICE_FAMILIES":"1,2","SUPPORTED_PLATFORMS":"iphoneos iphonesimulator","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/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner.SwiftFileList","SWIFT_VERSION":"5.0","SYMROOT":"/Users/evanreichard/Development/git/imagini/web_native/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/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator","TARGET_DEVICE_IDENTIFIER":"CA4B966C-C239-47D2-AC10-9BE04BC1E3D5","TARGET_DEVICE_MODEL":"iPod9,1","TARGET_DEVICE_OS_VERSION":"14.3","TARGET_NAME":"Runner","TARGET_TEMP_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build","TEMP_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build","TEMP_FILES_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build","TEMP_FILE_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build","TEMP_ROOT":"/Users/evanreichard/Development/git/imagini/web_native/build/ios","TEST_FRAMEWORK_SEARCH_PATHS":" /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.3.sdk/Developer/Library/Frameworks","TEST_LIBRARY_SEARCH_PATHS":" /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.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":"evanreichard","USER_APPS_DIR":"/Users/evanreichard/Applications","USER_LIBRARY_DIR":"/Users/evanreichard/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","USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES":"YES","VALIDATE_DEVELOPMENT_ASSET_PATHS":"YES_ERROR","VALIDATE_PRODUCT":"NO","VALIDATE_WORKSPACE":"YES_ERROR","VALID_ARCHS":"arm64 arm64e i386 x86_64","VERBOSE_PBXCP":"NO","VERSIONING_SYSTEM":"apple-generic","VERSIONPLIST_PATH":"Runner.app/version.plist","VERSION_INFO_BUILDER":"evanreichard","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":"12C33","XCODE_VERSION_ACTUAL":"1230","XCODE_VERSION_MAJOR":"1200","XCODE_VERSION_MINOR":"1230","XPCSERVICES_FOLDER_PATH":"Runner.app/XPCServices","YACC":"yacc","arch":"undefined_arch","variant":"normal"},"allow-missing-inputs":true,"working-directory":"/Users/evanreichard/Development/git/imagini/web_native/ios","control-enabled":false,"signature":"0d0a0db70883b9b91de02ad88080dce7"} + "target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49-:Debug:PhaseScriptExecution [CP] Embed Pods Frameworks /Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-D5904DDDEF0E1E99229EA00E.sh": {"tool":"shell","description":"PhaseScriptExecution [CP] Embed Pods Frameworks /Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-D5904DDDEF0E1E99229EA00E.sh","inputs":["/Users/evanreichard/Development/git/imagini/web_native/ios/Pods/Target Support Files/Pods-Runner/Pods-Runner-frameworks-Debug-input-files.xcfilelist/","/Users/evanreichard/Development/git/imagini/web_native/ios/Pods/Target Support Files/Pods-Runner/Pods-Runner-frameworks-Debug-output-files.xcfilelist","/Users/evanreichard/Development/git/imagini/web_native/ios/Pods/Target Support Files/Pods-Runner/Pods-Runner-frameworks.sh/","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/DKImagePickerController/DKImagePickerController.framework/","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/DKPhotoGallery/DKPhotoGallery.framework/","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/SDWebImage/SDWebImage.framework/","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/SwiftyGif/SwiftyGif.framework/","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/file_picker/file_picker.framework/","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/flutter_secure_storage/flutter_secure_storage.framework/","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/integration_test/integration_test.framework/","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/shared_preferences/shared_preferences.framework/","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/url_launcher/url_launcher.framework/","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/InputFileList-D5904DDDEF0E1E99229EA00E-Pods-Runner-frameworks-Debug-input-files-6c69f76b2c0ba498a0e3a65077743e10-resolved.xcfilelist","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/OutputFileList-D5904DDDEF0E1E99229EA00E-Pods-Runner-frameworks-Debug-output-files-f592242711a85b2a34af5762da324381-resolved.xcfilelist","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-D5904DDDEF0E1E99229EA00E.sh","",""],"outputs":["/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/DKImagePickerController.framework","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/DKPhotoGallery.framework","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/SDWebImage.framework","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/SwiftyGif.framework","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/file_picker.framework","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/flutter_secure_storage.framework","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/integration_test.framework","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/shared_preferences.framework","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/url_launcher.framework"],"args":["/bin/sh","-c","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-D5904DDDEF0E1E99229EA00E.sh"],"env":{"ACTION":"build","AD_HOC_CODE_SIGNING_ALLOWED":"YES","ALTERNATE_GROUP":"staff","ALTERNATE_MODE":"u+w,go-w,a+rX","ALTERNATE_OWNER":"evanreichard","ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES":"YES","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 x86_64 i386","ARCHS_STANDARD_32_64_BIT":"arm64 i386 x86_64","ARCHS_STANDARD_32_BIT":"i386","ARCHS_STANDARD_64_BIT":"arm64 x86_64","ARCHS_STANDARD_INCLUDING_64_BIT":"arm64 x86_64 i386","ARCHS_UNIVERSAL_IPHONE_OS":"arm64 i386 x86_64","ASSETCATALOG_COMPILER_APPICON_NAME":"AppIcon","ASSETCATALOG_FILTER_FOR_DEVICE_MODEL":"iPod9,1","ASSETCATALOG_FILTER_FOR_DEVICE_OS_VERSION":"14.3","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/evanreichard/Development/git/imagini/web_native/build/ios","BUILD_LIBRARY_FOR_DISTRIBUTION":"NO","BUILD_ROOT":"/Users/evanreichard/Development/git/imagini/web_native/build/ios","BUILD_STYLE":"","BUILD_VARIANTS":"normal","BUILT_PRODUCTS_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator","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/lb/1_tw174n65x__3txp1gcj4k00000gn/C/com.apple.DeveloperTools/12.3-12C33/Xcode","CCHROOT":"/var/folders/lb/1_tw174n65x__3txp1gcj4k00000gn/C/com.apple.DeveloperTools/12.3-12C33/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/evanreichard/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":"NO","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/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/JavaClasses","CLEAN_PRECOMPS":"YES","CLONE_HEADERS":"NO","CODESIGNING_FOLDER_PATH":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app","CODE_SIGNING_ALLOWED":"YES","CODE_SIGNING_REQUIRED":"YES","CODE_SIGN_CONTEXT_CLASS":"XCiPhoneSimulatorCodeSignContext","CODE_SIGN_IDENTITY":"-","CODE_SIGN_INJECT_BASE_ENTITLEMENTS":"YES","COLOR_DIAGNOSTICS":"NO","COMBINE_HIDPI_IMAGES":"NO","COMPILER_INDEX_STORE_ENABLE":"Default","COMPOSITE_SDK_DIRS":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/CompositeSDKs","COMPRESS_PNG_FILES":"YES","CONFIGURATION":"Debug","CONFIGURATION_BUILD_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator","CONFIGURATION_TEMP_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator","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_DEVICE_PLATFORM_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform","CORRESPONDING_DEVICE_PLATFORM_NAME":"iphoneos","CORRESPONDING_DEVICE_SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.3.sdk","CORRESPONDING_DEVICE_SDK_NAME":"iphoneos14.3","CP":"/bin/cp","CREATE_INFOPLIST_SECTION_IN_BINARY":"NO","CURRENT_ARCH":"undefined_arch","CURRENT_PROJECT_VERSION":"1","CURRENT_VARIANT":"normal","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":"mios-simulator-version-min","DEPLOYMENT_TARGET_CLANG_FLAG_PREFIX":"-mios-simulator-version-min=","DEPLOYMENT_TARGET_LD_ENV_NAME":"IPHONEOS_DEPLOYMENT_TARGET","DEPLOYMENT_TARGET_LD_FLAG_NAME":"ios_simulator_version_min","DEPLOYMENT_TARGET_SETTING_NAME":"IPHONEOS_DEPLOYMENT_TARGET","DEPLOYMENT_TARGET_SUGGESTED_VALUES":"9.0 9.1 9.2 9.3 10.0 10.1 10.2 10.3 11.0 11.1 11.2 11.3 11.4 12.0 12.1 12.2 12.3 12.4 13.0 13.1 13.2 13.3 13.4 13.5 13.6 14.0 14.1 14.2 14.3","DERIVED_FILES_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources","DERIVED_FILE_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources","DERIVED_SOURCES_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources","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/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator","EFFECTIVE_PLATFORM_NAME":"-iphonesimulator","EMBEDDED_CONTENT_CONTAINS_SWIFT":"NO","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_DESTINATION":"__entitlements","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/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects/LinkFileList","FIXED_FILES_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/FixedFiles","FLUTTER_APPLICATION_PATH":"/Users/evanreichard/Development/git/imagini/web_native","FLUTTER_BUILD_DIR":"build","FLUTTER_BUILD_NAME":"1.0.0","FLUTTER_BUILD_NUMBER":"1","FLUTTER_ROOT":"/Users/evanreichard/Development/Tools/flutter","FLUTTER_TARGET":"/Users/evanreichard/Development/git/imagini/web_native/lib/main.dart","FRAMEWORKS_FOLDER_PATH":"Runner.app/Frameworks","FRAMEWORK_FLAG_PREFIX":"-framework","FRAMEWORK_SEARCH_PATHS":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator \"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/DKImagePickerController\" \"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/DKPhotoGallery\" \"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/SDWebImage\" \"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/SwiftyGif\" \"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/file_picker\" \"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/flutter_secure_storage\" \"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/integration_test\" \"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/shared_preferences\" \"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/url_launcher\"","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_OBJC_LEGACY_DISPATCH":"YES","GCC_OPTIMIZATION_LEVEL":"0","GCC_PFE_FILE_C_DIALECTS":"c objective-c c++ objective-c++","GCC_PREPROCESSOR_DEFINITIONS":"DEBUG=1 COCOAPODS=1","GCC_SYMBOLS_PRIVATE_EXTERN":"NO","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/evanreichard/Development/git/imagini/web_native/build/ios/GeneratedModuleMaps-iphonesimulator","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/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/include \"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/DKImagePickerController/DKImagePickerController.framework/Headers\" \"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/DKPhotoGallery/DKPhotoGallery.framework/Headers\" \"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/SDWebImage/SDWebImage.framework/Headers\" \"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/SwiftyGif/SwiftyGif.framework/Headers\" \"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/file_picker/file_picker.framework/Headers\" \"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/flutter_secure_storage/flutter_secure_storage.framework/Headers\" \"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/integration_test/integration_test.framework/Headers\" \"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/shared_preferences/shared_preferences.framework/Headers\" \"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/url_launcher/url_launcher.framework/Headers\"","HIDE_BITCODE_SYMBOLS":"YES","HOME":"/Users/evanreichard","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":"evanreichard","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","KEEP_PRIVATE_EXTERNS":"NO","LD_DEPENDENCY_INFO_FILE":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/undefined_arch/Runner_dependency_info.dat","LD_GENERATE_MAP_FILE":"NO","LD_MAP_FILE_PATH":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/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' '@loader_path/Frameworks' @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/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator ","LINKER_DISPLAYS_MANGLED_NAMES":"NO","LINK_FILE_LIST_normal_arm64":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner.LinkFileList","LINK_WITH_STANDARD_LIBRARIES":"YES","LLVM_TARGET_TRIPLE_OS_VERSION":"ios9.0","LLVM_TARGET_TRIPLE_SUFFIX":"-simulator","LLVM_TARGET_TRIPLE_VENDOR":"apple","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/evanreichard/Development/git/imagini/web_native/ios","LOCSYMROOT":"/Users/evanreichard/Development/git/imagini/web_native/ios","MACH_O_TYPE":"mh_execute","MAC_OS_X_PRODUCT_BUILD_VERSION":"20C69","MAC_OS_X_VERSION_ACTUAL":"110100","MAC_OS_X_VERSION_MAJOR":"110000","MAC_OS_X_VERSION_MINOR":"110100","METAL_LIBRARY_FILE_BASE":"default","METAL_LIBRARY_OUTPUT_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app","MODULES_FOLDER_PATH":"Runner.app/Modules","MODULE_CACHE_DIR":"/Users/evanreichard/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","MTL_ENABLE_DEBUG_INFO":"YES","NATIVE_ARCH":"arm64","NATIVE_ARCH_32_BIT":"arm","NATIVE_ARCH_64_BIT":"arm64","NATIVE_ARCH_ACTUAL":"arm64","NO_COMMON":"YES","OBJC_ABI_VERSION":"2","OBJECT_FILE_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects","OBJECT_FILE_DIR_normal":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal","OBJROOT":"/Users/evanreichard/Development/git/imagini/web_native/build/ios","ONLY_ACTIVE_ARCH":"YES","OS":"MACOS","OSAC":"/usr/bin/osacompile","OTHER_LDFLAGS":" -framework \"AVFoundation\" -framework \"AVKit\" -framework \"DKImagePickerController\" -framework \"DKPhotoGallery\" -framework \"Foundation\" -framework \"ImageIO\" -framework \"Photos\" -framework \"SDWebImage\" -framework \"SwiftyGif\" -framework \"UIKit\" -framework \"file_picker\" -framework \"flutter_secure_storage\" -framework \"integration_test\" -framework \"shared_preferences\" -framework \"url_launcher\"","OTHER_SWIFT_FLAGS":" -D COCOAPODS","PACKAGE_CONFIG":"/Users/evanreichard/Development/git/imagini/web_native/.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/iPhoneSimulator.platform/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.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/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/undefined_arch","PER_VARIANT_OBJECT_FILE_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal","PKGINFO_FILE_PATH":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/PkgInfo","PKGINFO_PATH":"Runner.app/PkgInfo","PLATFORM_DEVELOPER_APPLICATIONS_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Applications","PLATFORM_DEVELOPER_BIN_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin","PLATFORM_DEVELOPER_LIBRARY_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library","PLATFORM_DEVELOPER_SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs","PLATFORM_DEVELOPER_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Tools","PLATFORM_DEVELOPER_USR_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr","PLATFORM_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform","PLATFORM_DISPLAY_NAME":"iOS Simulator","PLATFORM_FAMILY_NAME":"iOS","PLATFORM_NAME":"iphonesimulator","PLATFORM_PREFERRED_ARCH":"x86_64","PLATFORM_PRODUCT_BUILD_VERSION":"18C61","PLIST_FILE_OUTPUT_FORMAT":"binary","PLUGINS_FOLDER_PATH":"Runner.app/PlugIns","PODS_BUILD_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios","PODS_CONFIGURATION_BUILD_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator","PODS_PODFILE_DIR_PATH":"/Users/evanreichard/Development/git/imagini/web_native/ios/.","PODS_ROOT":"/Users/evanreichard/Development/git/imagini/web_native/ios/Pods","PODS_XCFRAMEWORKS_BUILD_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates","PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR":"YES","PRECOMP_DESTINATION_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/PrefixHeaders","PRESERVE_DEAD_CODE_INITS_AND_TERMS":"NO","PRIVATE_HEADERS_FOLDER_PATH":"Runner.app/PrivateHeaders","PRODUCT_BUNDLE_IDENTIFIER":"com.reichard.imagini","PRODUCT_BUNDLE_PACKAGE_TYPE":"APPL","PRODUCT_MODULE_NAME":"Runner","PRODUCT_NAME":"Runner","PRODUCT_SETTINGS_PATH":"/Users/evanreichard/Development/git/imagini/web_native/ios/Runner/Info.plist","PRODUCT_TYPE":"com.apple.product-type.application","PROFILING_CODE":"NO","PROJECT":"Runner","PROJECT_DERIVED_FILE_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/DerivedSources","PROJECT_DIR":"/Users/evanreichard/Development/git/imagini/web_native/ios","PROJECT_FILE_PATH":"/Users/evanreichard/Development/git/imagini/web_native/ios/Runner.xcodeproj","PROJECT_NAME":"Runner","PROJECT_TEMP_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build","PROJECT_TEMP_ROOT":"/Users/evanreichard/Development/git/imagini/web_native/build/ios","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","REZ_COLLECTOR_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/ResourceManagerResources","REZ_OBJECTS_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/ResourceManagerResources/Objects","REZ_SEARCH_PATHS":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator ","SCAN_ALL_SOURCE_FILES_FOR_INCLUDES":"NO","SCRIPTS_FOLDER_PATH":"Runner.app/Scripts","SCRIPT_INPUT_FILE_COUNT":"0","SCRIPT_INPUT_FILE_LIST_0":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/InputFileList-D5904DDDEF0E1E99229EA00E-Pods-Runner-frameworks-Debug-input-files-6c69f76b2c0ba498a0e3a65077743e10-resolved.xcfilelist","SCRIPT_INPUT_FILE_LIST_COUNT":"1","SCRIPT_OUTPUT_FILE_COUNT":"0","SCRIPT_OUTPUT_FILE_LIST_0":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/OutputFileList-D5904DDDEF0E1E99229EA00E-Pods-Runner-frameworks-Debug-output-files-f592242711a85b2a34af5762da324381-resolved.xcfilelist","SCRIPT_OUTPUT_FILE_LIST_COUNT":"1","SDKROOT":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.3.sdk","SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.3.sdk","SDK_DIR_iphonesimulator14_3":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.3.sdk","SDK_NAME":"iphonesimulator14.3","SDK_NAMES":"iphonesimulator14.3","SDK_PRODUCT_BUILD_VERSION":"18C61","SDK_VERSION":"14.3","SDK_VERSION_ACTUAL":"140300","SDK_VERSION_MAJOR":"140000","SDK_VERSION_MINOR":"140300","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/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/DerivedSources","SHARED_FRAMEWORKS_FOLDER_PATH":"Runner.app/SharedFrameworks","SHARED_PRECOMPS_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/SharedPrecompiledHeaders","SHARED_SUPPORT_FOLDER_PATH":"Runner.app/SharedSupport","SKIP_INSTALL":"NO","SOURCE_ROOT":"/Users/evanreichard/Development/git/imagini/web_native/ios","SRCROOT":"/Users/evanreichard/Development/git/imagini/web_native/ios","STRINGS_FILE_OUTPUT_ENCODING":"binary","STRIP_BITCODE_FROM_COPIED_FILES":"NO","STRIP_INSTALLED_PRODUCT":"YES","STRIP_STYLE":"all","STRIP_SWIFT_SYMBOLS":"YES","SUPPORTED_DEVICE_FAMILIES":"1,2","SUPPORTED_PLATFORMS":"iphoneos iphonesimulator","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/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner.SwiftFileList","SWIFT_VERSION":"5.0","SYMROOT":"/Users/evanreichard/Development/git/imagini/web_native/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/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator","TARGET_DEVICE_IDENTIFIER":"CA4B966C-C239-47D2-AC10-9BE04BC1E3D5","TARGET_DEVICE_MODEL":"iPod9,1","TARGET_DEVICE_OS_VERSION":"14.3","TARGET_NAME":"Runner","TARGET_TEMP_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build","TEMP_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build","TEMP_FILES_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build","TEMP_FILE_DIR":"/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build","TEMP_ROOT":"/Users/evanreichard/Development/git/imagini/web_native/build/ios","TEST_FRAMEWORK_SEARCH_PATHS":" /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.3.sdk/Developer/Library/Frameworks","TEST_LIBRARY_SEARCH_PATHS":" /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.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":"evanreichard","USER_APPS_DIR":"/Users/evanreichard/Applications","USER_LIBRARY_DIR":"/Users/evanreichard/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","USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES":"YES","VALIDATE_DEVELOPMENT_ASSET_PATHS":"YES_ERROR","VALIDATE_PRODUCT":"NO","VALIDATE_WORKSPACE":"YES_ERROR","VALID_ARCHS":"arm64 arm64e i386 x86_64","VERBOSE_PBXCP":"NO","VERSIONING_SYSTEM":"apple-generic","VERSIONPLIST_PATH":"Runner.app/version.plist","VERSION_INFO_BUILDER":"evanreichard","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":"12C33","XCODE_VERSION_ACTUAL":"1230","XCODE_VERSION_MAJOR":"1200","XCODE_VERSION_MINOR":"1230","XPCSERVICES_FOLDER_PATH":"Runner.app/XPCServices","YACC":"yacc","arch":"undefined_arch","variant":"normal"},"allow-missing-inputs":true,"working-directory":"/Users/evanreichard/Development/git/imagini/web_native/ios","control-enabled":false,"signature":"b10d9aee47994e1683690f1a99af3e95"} + "target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49-:Debug:ProcessInfoPlistFile /Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Info.plist /Users/evanreichard/Development/git/imagini/web_native/ios/Runner/Info.plist": {"tool":"info-plist-processor","description":"ProcessInfoPlistFile /Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Info.plist /Users/evanreichard/Development/git/imagini/web_native/ios/Runner/Info.plist","inputs":["/Users/evanreichard/Development/git/imagini/web_native/ios/Runner/Info.plist","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Base.lproj/LaunchScreen-SBPartialInfo.plist","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Base.lproj/Main-SBPartialInfo.plist","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/assetcatalog_generated_info.plist","",""],"outputs":["/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app/Info.plist"]} + "target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49-:Debug:RegisterExecutionPolicyException /Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app": {"tool":"register-execution-policy-exception","description":"RegisterExecutionPolicyException /Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app","inputs":["/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app","",""],"outputs":[""]} + "target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49-:Debug:Touch /Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app": {"tool":"shell","description":"Touch /Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app","inputs":["/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app","",""],"outputs":[""],"args":["/usr/bin/touch","-c","/Users/evanreichard/Development/git/imagini/web_native/build/ios/Debug-iphonesimulator/Runner.app"],"env":{},"working-directory":"/Users/evanreichard/Development/git/imagini/web_native/ios","signature":"b1caa9ea2730bd179ba2f18c5c986a76"} + "target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49-:Debug:WriteAuxiliaryFile /Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/Runner_vers.c": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/Runner_vers.c","inputs":["",""],"outputs":["/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/Runner_vers.c"]} + "target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49-:Debug:WriteAuxiliaryFile /Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/InputFileList-D5904DDDEF0E1E99229EA00E-Pods-Runner-frameworks-Debug-input-files-6c69f76b2c0ba498a0e3a65077743e10-resolved.xcfilelist": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/InputFileList-D5904DDDEF0E1E99229EA00E-Pods-Runner-frameworks-Debug-input-files-6c69f76b2c0ba498a0e3a65077743e10-resolved.xcfilelist","inputs":["",""],"outputs":["/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/InputFileList-D5904DDDEF0E1E99229EA00E-Pods-Runner-frameworks-Debug-input-files-6c69f76b2c0ba498a0e3a65077743e10-resolved.xcfilelist"]} + "target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49-:Debug:WriteAuxiliaryFile /Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner-OutputFileMap.json": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner-OutputFileMap.json","inputs":["",""],"outputs":["/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner-OutputFileMap.json"]} + "target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49-:Debug:WriteAuxiliaryFile /Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner.LinkFileList": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner.LinkFileList","inputs":["",""],"outputs":["/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner.LinkFileList"]} + "target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49-:Debug:WriteAuxiliaryFile /Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner.SwiftFileList": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner.SwiftFileList","inputs":["",""],"outputs":["/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/arm64/Runner.SwiftFileList"]} + "target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49-:Debug:WriteAuxiliaryFile /Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/OutputFileList-D5904DDDEF0E1E99229EA00E-Pods-Runner-frameworks-Debug-output-files-f592242711a85b2a34af5762da324381-resolved.xcfilelist": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/OutputFileList-D5904DDDEF0E1E99229EA00E-Pods-Runner-frameworks-Debug-output-files-f592242711a85b2a34af5762da324381-resolved.xcfilelist","inputs":["",""],"outputs":["/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/OutputFileList-D5904DDDEF0E1E99229EA00E-Pods-Runner-frameworks-Debug-output-files-f592242711a85b2a34af5762da324381-resolved.xcfilelist"]} + "target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49-:Debug:WriteAuxiliaryFile /Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-all-non-framework-target-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-all-non-framework-target-headers.hmap","inputs":["",""],"outputs":["/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-all-non-framework-target-headers.hmap"]} + "target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49-:Debug:WriteAuxiliaryFile /Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-all-target-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-all-target-headers.hmap","inputs":["",""],"outputs":["/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-all-target-headers.hmap"]} + "target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49-:Debug:WriteAuxiliaryFile /Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-generated-files.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-generated-files.hmap","inputs":["",""],"outputs":["/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-generated-files.hmap"]} + "target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49-:Debug:WriteAuxiliaryFile /Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-own-target-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-own-target-headers.hmap","inputs":["",""],"outputs":["/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-own-target-headers.hmap"]} + "target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49-:Debug:WriteAuxiliaryFile /Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-project-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-project-headers.hmap","inputs":["",""],"outputs":["/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-project-headers.hmap"]} + "target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49-:Debug:WriteAuxiliaryFile /Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner.hmap","inputs":["",""],"outputs":["/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner.hmap"]} + "target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49-:Debug:WriteAuxiliaryFile /Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh","inputs":["",""],"outputs":["/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh"]} + "target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49-:Debug:WriteAuxiliaryFile /Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-9740EEB61CF901F6004384FC.sh": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-9740EEB61CF901F6004384FC.sh","inputs":["",""],"outputs":["/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-9740EEB61CF901F6004384FC.sh"]} + "target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49-:Debug:WriteAuxiliaryFile /Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-D5904DDDEF0E1E99229EA00E.sh": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-D5904DDDEF0E1E99229EA00E.sh","inputs":["",""],"outputs":["/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-D5904DDDEF0E1E99229EA00E.sh"]} + "target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49-:Debug:WriteAuxiliaryFile /Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-D86A7985AAC25B64F99FB7F7.sh": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-D86A7985AAC25B64F99FB7F7.sh","inputs":["",""],"outputs":["/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-D86A7985AAC25B64F99FB7F7.sh"]} + "target-Runner-b61a9927ba0b3dc26e3d06c080e25b0988a783a885d8b0b3beb2e9f90bde3f49-:Debug:WriteAuxiliaryFile /Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/all-product-headers.yaml": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/all-product-headers.yaml","inputs":["",""],"outputs":["/Users/evanreichard/Development/git/imagini/web_native/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/all-product-headers.yaml"]} + diff --git a/web_native/ios/build/XCBuildData/BuildDescriptionCacheIndex-00c9a658b7a3a137a025e9913bcc6ff1 b/web_native/ios/build/XCBuildData/BuildDescriptionCacheIndex-00c9a658b7a3a137a025e9913bcc6ff1 new file mode 100644 index 0000000000000000000000000000000000000000..a95f6fd5963033188dd5e0f944657845fa4714d3 GIT binary patch literal 146 zcmWN}yA1;{2msOSk;Wr{&Bsg=0mjNe8OcrREEHe+r29Q?ukZW$IW3qn64135m{Y(k zsF0B`1T0R&=mtBg1aj#l^P!q5tBi;PVP Nu9OMJOT^q^{sBDvDlh;5 literal 0 HcmV?d00001 diff --git a/web_native/ios/build/XCBuildData/b54cbc01a72e09a4b08e0eb63c03609b-desc.xcbuild b/web_native/ios/build/XCBuildData/b54cbc01a72e09a4b08e0eb63c03609b-desc.xcbuild new file mode 100644 index 0000000000000000000000000000000000000000..0bc08cbee05ef6201a0a7ec58d04f8ded9fdb6f0 GIT binary patch literal 629377 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