diff --git a/android/app/build.gradle b/android/app/build.gradle new file mode 100644 index 00000000..36e57977 --- /dev/null +++ b/android/app/build.gradle @@ -0,0 +1,171 @@ +apply plugin: "com.android.application" + +import com.android.build.OutputFile + +/** + * The react.gradle file registers a task for each build variant (e.g. bundleDebugJsAndAssets + * and bundleReleaseJsAndAssets). + * These basically call `react-native bundle` with the correct arguments during the Android build + * cycle. By default, bundleDebugJsAndAssets is skipped, as in debug/dev mode we prefer to load the + * bundle directly from the development server. Below you can see all the possible configurations + * and their defaults. If you decide to add a configuration block, make sure to add it before the + * `apply from: "../../node_modules/react-native/react.gradle"` line. + * + * project.ext.react = [ + * // the name of the generated asset file containing your JS bundle + * bundleAssetName: "index.android.bundle", + * + * // the entry file for bundle generation + * entryFile: "index.android.js", + * + * // whether to bundle JS and assets in debug mode + * bundleInDebug: false, + * + * // whether to bundle JS and assets in release mode + * bundleInRelease: true, + * + * // whether to bundle JS and assets in another build variant (if configured). + * // See http://tools.android.com/tech-docs/new-build-system/user-guide#TOC-Build-Variants + * // The configuration property can be in the following formats + * // 'bundleIn${productFlavor}${buildType}' + * // 'bundleIn${buildType}' + * // bundleInFreeDebug: true, + * // bundleInPaidRelease: true, + * // bundleInBeta: true, + * + * // whether to disable dev mode in custom build variants (by default only disabled in release) + * // for example: to disable dev mode in the staging build type (if configured) + * devDisabledInStaging: true, + * // The configuration property can be in the following formats + * // 'devDisabledIn${productFlavor}${buildType}' + * // 'devDisabledIn${buildType}' + * + * // the root of your project, i.e. where "package.json" lives + * root: "../../", + * + * // where to put the JS bundle asset in debug mode + * jsBundleDirDebug: "$buildDir/intermediates/assets/debug", + * + * // where to put the JS bundle asset in release mode + * jsBundleDirRelease: "$buildDir/intermediates/assets/release", + * + * // where to put drawable resources / React Native assets, e.g. the ones you use via + * // require('./image.png')), in debug mode + * resourcesDirDebug: "$buildDir/intermediates/res/merged/debug", + * + * // where to put drawable resources / React Native assets, e.g. the ones you use via + * // require('./image.png')), in release mode + * resourcesDirRelease: "$buildDir/intermediates/res/merged/release", + * + * // by default the gradle tasks are skipped if none of the JS files or assets change; this means + * // that we don't look at files in android/ or ios/ to determine whether the tasks are up to + * // date; if you have any other folders that you want to ignore for performance reasons (gradle + * // indexes the entire tree), add them here. Alternatively, if you have JS files in android/ + * // for example, you might want to remove it from here. + * inputExcludes: ["android/**", "ios/**"], + * + * // override which node gets called and with what additional arguments + * nodeExecutableAndArgs: ["node"], + * + * // supply additional arguments to the packager + * extraPackagerArgs: [] + * ] + */ + +project.ext.react = [ + entryFile: "index.js", + enableHermes: false +] + +apply from: '../../node_modules/react-native-unimodules/gradle.groovy' +apply from: "../../node_modules/react-native/react.gradle" + +/** + * Set this to true to create two separate APKs instead of one: + * - An APK that only works on ARM devices + * - An APK that only works on x86 devices + * The advantage is the size of the APK is reduced by about 4MB. + * Upload all the APKs to the Play Store and people will download + * the correct one based on the CPU architecture of their device. + */ +def enableSeparateBuildPerCPUArchitecture = false + +/** + * Run Proguard to shrink the Java bytecode in release builds. + */ +def enableProguardInReleaseBuilds = false + +android { + compileSdkVersion rootProject.ext.compileSdkVersion + buildToolsVersion rootProject.ext.buildToolsVersion + + defaultConfig { + applicationId "com.gladeo_app" + minSdkVersion rootProject.ext.minSdkVersion + targetSdkVersion rootProject.ext.targetSdkVersion + versionCode 1 + versionName "1.0" + missingDimensionStrategy 'react-native-camera', 'general' + } + splits { + abi { + reset() + enable enableSeparateBuildPerCPUArchitecture + universalApk false // If true, also generate a universal APK + include "armeabi-v7a", "x86", "arm64-v8a", "x86_64" + } + } + buildTypes { + release { + minifyEnabled enableProguardInReleaseBuilds + proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro" + } + } + // applicationVariants are e.g. debug, release + applicationVariants.all { variant -> + variant.outputs.each { output -> + // For each separate APK per architecture, set a unique version code as described here: + // http://tools.android.com/tech-docs/new-build-system/user-guide/apk-splits + def versionCodes = ["armeabi-v7a":1, "x86":2, "arm64-v8a": 3, "x86_64": 4] + def abi = output.getFilter(OutputFile.ABI) + if (abi != null) { // null for the universal-debug, universal-release variants + output.versionCodeOverride = + versionCodes.get(abi) * 1048576 + defaultConfig.versionCode + } + } + } + compileOptions { + sourceCompatibility JavaVersion.VERSION_1_8 + targetCompatibility JavaVersion.VERSION_1_8 + } +} + +def jscFlavor = 'org.webkit:android-jsc:+' + +def enableHermes = project.ext.react.get("enableHermes", false); + +dependencies { + implementation project(':react-native-webview') + implementation fileTree(dir: "libs", include: ["*.jar"]) + implementation "com.android.support:appcompat-v7:${rootProject.ext.supportLibVersion}" + implementation "com.facebook.react:react-native:+" // From node_modules + addUnimodulesDependencies() + + if (enableHermes) { + def hermesPath = "../../node_modules/hermes-engine/android/"; + debugImplementation files(hermesPath + "hermes-debug.aar") + releaseImplementation files(hermesPath + "hermes-release.aar") + } else { + implementation jscFlavor + } +} + +// Run this once to be able to run the application with BUCK +// puts all compile dependencies into folder libs for BUCK to use +task copyDownloadableDepsToLibs(type: Copy) { + from configurations.compile + into 'libs' +} + +apply from: file("../../node_modules/@react-native-community/cli-platform-android/native_modules.gradle"); +applyNativeModulesAppBuildGradle(project) \ No newline at end of file diff --git a/android/app/src/main/java/com/gladeo_app/MainApplication.java b/android/app/src/main/java/com/gladeo_app/MainApplication.java new file mode 100644 index 00000000..193c8c4e --- /dev/null +++ b/android/app/src/main/java/com/gladeo_app/MainApplication.java @@ -0,0 +1,62 @@ +package com.gladeo_app; + +import android.app.Application; + +import com.facebook.react.PackageList; +import com.facebook.react.ReactApplication; +import com.reactnativecommunity.webview.RNCWebViewPackage; +import com.facebook.react.ReactNativeHost; +import com.facebook.react.ReactPackage; +import com.facebook.react.shell.MainReactPackage; +import com.facebook.soloader.SoLoader; +import com.gladeo_app.generated.BasePackageList; + +import org.unimodules.adapters.react.ReactAdapterPackage; +import org.unimodules.adapters.react.ModuleRegistryAdapter; +import org.unimodules.adapters.react.ReactModuleRegistryProvider; +import org.unimodules.core.interfaces.Package; +import org.unimodules.core.interfaces.SingletonModule; +import expo.modules.constants.ConstantsPackage; +import expo.modules.permissions.PermissionsPackage; +import expo.modules.filesystem.FileSystemPackage; + +import java.util.Arrays; +import java.util.List; + +public class MainApplication extends Application implements ReactApplication { + private final ReactModuleRegistryProvider mModuleRegistryProvider = new ReactModuleRegistryProvider( + new BasePackageList().getPackageList(), + Arrays.asList() + ); + + private final ReactNativeHost mReactNativeHost = new ReactNativeHost(this) { + @Override + public boolean getUseDeveloperSupport() { + return BuildConfig.DEBUG; + } + + @Override + protected List getPackages() { + List packages = new PackageList(this).getPackages(); + packages.add(new ModuleRegistryAdapter(mModuleRegistryProvider)); + packages.add(new CameraRollPackage()); + return packages; + } + + @Override + protected String getJSMainModuleName() { + return "index"; + } + }; + + @Override + public ReactNativeHost getReactNativeHost() { + return mReactNativeHost; + } + + @Override + public void onCreate() { + super.onCreate(); + SoLoader.init(this, /* native exopackage */ false); + } +} diff --git a/android/settings.gradle b/android/settings.gradle index f0172df2..317929a8 100644 --- a/android/settings.gradle +++ b/android/settings.gradle @@ -1,6 +1,11 @@ rootProject.name = 'Gladeo_App' +<<<<<<< HEAD +include ':react-native-webview' +project(':react-native-webview').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-webview/android') +======= include ':react-native-background-timer' project(':react-native-background-timer').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-background-timer/android') +>>>>>>> master include ':@react-native-community_cameraroll' project(':@react-native-community_cameraroll').projectDir = new File(rootProject.projectDir, '../node_modules/@react-native-community/cameraroll/android') diff --git a/ios/Gladeo_App.xcodeproj/project.pbxproj b/ios/Gladeo_App.xcodeproj/project.pbxproj index 1fcf776a..a400863a 100644 --- a/ios/Gladeo_App.xcodeproj/project.pbxproj +++ b/ios/Gladeo_App.xcodeproj/project.pbxproj @@ -313,7 +313,11 @@ ORGANIZATIONNAME = Facebook; TargetAttributes = { 13B07F861A680F5B00A75B9A = { +<<<<<<< HEAD + DevelopmentTeam = TM8FB9R2LH; +======= DevelopmentTeam = 4NUDH2Z2CM; +>>>>>>> master ProvisioningStyle = Automatic; }; }; @@ -536,7 +540,11 @@ CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 1; DEAD_CODE_STRIPPING = NO; +<<<<<<< HEAD + DEVELOPMENT_TEAM = TM8FB9R2LH; +======= DEVELOPMENT_TEAM = 4NUDH2Z2CM; +>>>>>>> master HEADER_SEARCH_PATHS = "$(inherited)"; INFOPLIST_FILE = Gladeo_App/Info.plist; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; @@ -545,7 +553,11 @@ "-ObjC", "-lc++", ); +<<<<<<< HEAD + PRODUCT_BUNDLE_IDENTIFIER = "edu.usc.lynnebai.Gladeo-App"; +======= PRODUCT_BUNDLE_IDENTIFIER = "brennajc.Gladeo-App"; +>>>>>>> master PRODUCT_NAME = Gladeo_App; PROVISIONING_PROFILE_SPECIFIER = ""; VERSIONING_SYSTEM = "apple-generic"; @@ -560,7 +572,11 @@ CODE_SIGN_IDENTITY = "Apple Development"; CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 1; +<<<<<<< HEAD + DEVELOPMENT_TEAM = TM8FB9R2LH; +======= DEVELOPMENT_TEAM = 4NUDH2Z2CM; +>>>>>>> master HEADER_SEARCH_PATHS = "$(inherited)"; INFOPLIST_FILE = Gladeo_App/Info.plist; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; @@ -569,7 +585,11 @@ "-ObjC", "-lc++", ); +<<<<<<< HEAD + PRODUCT_BUNDLE_IDENTIFIER = "edu.usc.lynnebai.Gladeo-App"; +======= PRODUCT_BUNDLE_IDENTIFIER = "brennajc.Gladeo-App"; +>>>>>>> master PRODUCT_NAME = Gladeo_App; PROVISIONING_PROFILE_SPECIFIER = ""; VERSIONING_SYSTEM = "apple-generic"; diff --git a/ios/Gladeo_App.xcodeproj/xcuserdata/lynnebai.xcuserdatad/xcschemes/xcschememanagement.plist b/ios/Gladeo_App.xcodeproj/xcuserdata/lynnebai.xcuserdatad/xcschemes/xcschememanagement.plist new file mode 100644 index 00000000..8f293a69 --- /dev/null +++ b/ios/Gladeo_App.xcodeproj/xcuserdata/lynnebai.xcuserdatad/xcschemes/xcschememanagement.plist @@ -0,0 +1,14 @@ + + + + + SchemeUserState + + Gladeo_App.xcscheme_^#shared#^_ + + orderHint + 55 + + + + diff --git a/ios/Podfile b/ios/Podfile index 39fe4752..401798ed 100644 --- a/ios/Podfile +++ b/ios/Podfile @@ -51,6 +51,10 @@ target 'Gladeo_App' do +<<<<<<< HEAD + pod 'react-native-webview', :path => '../node_modules/react-native-webview' +======= pod 'react-native-background-timer', :path => '../node_modules/react-native-background-timer' +>>>>>>> master end diff --git a/ios/Podfile.lock b/ios/Podfile.lock index 510298d1..9a893713 100644 --- a/ios/Podfile.lock +++ b/ios/Podfile.lock @@ -261,6 +261,8 @@ PODS: - React - RNConvertPhAsset (1.0.3): - React + - RNFS (2.16.6): + - React - RNGestureHandler (1.5.6): - React - RNReanimated (1.4.0): @@ -328,6 +330,7 @@ DEPENDENCIES: - "RNCAsyncStorage (from `../node_modules/@react-native-community/async-storage`)" - "RNCMaskedView (from `../node_modules/@react-native-community/masked-view`)" - RNConvertPhAsset (from `../node_modules/react-native-convert-ph-asset`) + - RNFS (from `../node_modules/react-native-fs`) - RNGestureHandler (from `../node_modules/react-native-gesture-handler`) - RNReanimated (from `../node_modules/react-native-reanimated`) - RNScreens (from `../node_modules/react-native-screens`) @@ -432,6 +435,8 @@ EXTERNAL SOURCES: :path: "../node_modules/@react-native-community/masked-view" RNConvertPhAsset: :path: "../node_modules/react-native-convert-ph-asset" + RNFS: + :path: "../node_modules/react-native-fs" RNGestureHandler: :path: "../node_modules/react-native-gesture-handler" RNReanimated: @@ -520,6 +525,7 @@ SPEC CHECKSUMS: RNCAsyncStorage: 453cd7c335ec9ba3b877e27d02238956b76f3268 RNCMaskedView: dd13f9f7b146a9ad82f9b7eb6c9b5548fcf6e990 RNConvertPhAsset: 9b366b8a1abc194b76572712c6f7dd89c9e4e37f + RNFS: 2bd9eb49dc82fa9676382f0585b992c424cd59df RNGestureHandler: 911d3b110a7a233a34c4f800e7188a84b75319c6 RNReanimated: b2ab0b693dddd2339bd2f300e770f6302d2e960c RNScreens: 254da4b84f25971cbb30ed3ddc84131f23cac812 diff --git a/ios/Pods/Headers/Private/RNFS/Downloader.h b/ios/Pods/Headers/Private/RNFS/Downloader.h new file mode 120000 index 00000000..dcbd326d --- /dev/null +++ b/ios/Pods/Headers/Private/RNFS/Downloader.h @@ -0,0 +1 @@ +../../../../../node_modules/react-native-fs/Downloader.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/RNFS/NSArray+Map.h b/ios/Pods/Headers/Private/RNFS/NSArray+Map.h new file mode 120000 index 00000000..3cdcf842 --- /dev/null +++ b/ios/Pods/Headers/Private/RNFS/NSArray+Map.h @@ -0,0 +1 @@ +../../../../../node_modules/react-native-fs/NSArray+Map.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/RNFS/RNFSManager.h b/ios/Pods/Headers/Private/RNFS/RNFSManager.h new file mode 120000 index 00000000..eeb4477a --- /dev/null +++ b/ios/Pods/Headers/Private/RNFS/RNFSManager.h @@ -0,0 +1 @@ +../../../../../node_modules/react-native-fs/RNFSManager.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/RNFS/Uploader.h b/ios/Pods/Headers/Private/RNFS/Uploader.h new file mode 120000 index 00000000..d0a412c1 --- /dev/null +++ b/ios/Pods/Headers/Private/RNFS/Uploader.h @@ -0,0 +1 @@ +../../../../../node_modules/react-native-fs/Uploader.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/RNFS/Downloader.h b/ios/Pods/Headers/Public/RNFS/Downloader.h new file mode 120000 index 00000000..dcbd326d --- /dev/null +++ b/ios/Pods/Headers/Public/RNFS/Downloader.h @@ -0,0 +1 @@ +../../../../../node_modules/react-native-fs/Downloader.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/RNFS/NSArray+Map.h b/ios/Pods/Headers/Public/RNFS/NSArray+Map.h new file mode 120000 index 00000000..3cdcf842 --- /dev/null +++ b/ios/Pods/Headers/Public/RNFS/NSArray+Map.h @@ -0,0 +1 @@ +../../../../../node_modules/react-native-fs/NSArray+Map.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/RNFS/RNFSManager.h b/ios/Pods/Headers/Public/RNFS/RNFSManager.h new file mode 120000 index 00000000..eeb4477a --- /dev/null +++ b/ios/Pods/Headers/Public/RNFS/RNFSManager.h @@ -0,0 +1 @@ +../../../../../node_modules/react-native-fs/RNFSManager.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/RNFS/Uploader.h b/ios/Pods/Headers/Public/RNFS/Uploader.h new file mode 120000 index 00000000..d0a412c1 --- /dev/null +++ b/ios/Pods/Headers/Public/RNFS/Uploader.h @@ -0,0 +1 @@ +../../../../../node_modules/react-native-fs/Uploader.h \ No newline at end of file diff --git a/ios/Pods/Local Podspecs/RNFS.podspec.json b/ios/Pods/Local Podspecs/RNFS.podspec.json new file mode 100644 index 00000000..fd67732f --- /dev/null +++ b/ios/Pods/Local Podspecs/RNFS.podspec.json @@ -0,0 +1,25 @@ +{ + "name": "RNFS", + "version": "2.16.6", + "homepage": "https://github.com/itinance/react-native-fs", + "summary": "Native filesystem access for react-native", + "license": "MIT", + "authors": { + "Johannes Lumpe": "johannes@lum.pe" + }, + "platforms": { + "ios": "8.0", + "tvos": "9.2" + }, + "source": { + "git": "https://github.com/itinance/react-native-fs", + "tag": "v2.16.6" + }, + "source_files": "*.{h,m}", + "preserve_paths": "**/*.js", + "dependencies": { + "React": [ + + ] + } +} diff --git a/ios/Pods/Manifest.lock b/ios/Pods/Manifest.lock index 510298d1..9a893713 100644 --- a/ios/Pods/Manifest.lock +++ b/ios/Pods/Manifest.lock @@ -261,6 +261,8 @@ PODS: - React - RNConvertPhAsset (1.0.3): - React + - RNFS (2.16.6): + - React - RNGestureHandler (1.5.6): - React - RNReanimated (1.4.0): @@ -328,6 +330,7 @@ DEPENDENCIES: - "RNCAsyncStorage (from `../node_modules/@react-native-community/async-storage`)" - "RNCMaskedView (from `../node_modules/@react-native-community/masked-view`)" - RNConvertPhAsset (from `../node_modules/react-native-convert-ph-asset`) + - RNFS (from `../node_modules/react-native-fs`) - RNGestureHandler (from `../node_modules/react-native-gesture-handler`) - RNReanimated (from `../node_modules/react-native-reanimated`) - RNScreens (from `../node_modules/react-native-screens`) @@ -432,6 +435,8 @@ EXTERNAL SOURCES: :path: "../node_modules/@react-native-community/masked-view" RNConvertPhAsset: :path: "../node_modules/react-native-convert-ph-asset" + RNFS: + :path: "../node_modules/react-native-fs" RNGestureHandler: :path: "../node_modules/react-native-gesture-handler" RNReanimated: @@ -520,6 +525,7 @@ SPEC CHECKSUMS: RNCAsyncStorage: 453cd7c335ec9ba3b877e27d02238956b76f3268 RNCMaskedView: dd13f9f7b146a9ad82f9b7eb6c9b5548fcf6e990 RNConvertPhAsset: 9b366b8a1abc194b76572712c6f7dd89c9e4e37f + RNFS: 2bd9eb49dc82fa9676382f0585b992c424cd59df RNGestureHandler: 911d3b110a7a233a34c4f800e7188a84b75319c6 RNReanimated: b2ab0b693dddd2339bd2f300e770f6302d2e960c RNScreens: 254da4b84f25971cbb30ed3ddc84131f23cac812 diff --git a/ios/Pods/Pods.xcodeproj/project.pbxproj b/ios/Pods/Pods.xcodeproj/project.pbxproj index c948af20..39a9a679 100644 --- a/ios/Pods/Pods.xcodeproj/project.pbxproj +++ b/ios/Pods/Pods.xcodeproj/project.pbxproj @@ -146,920 +146,922 @@ /* End PBXAggregateTarget section */ /* Begin PBXBuildFile section */ - 0025F5438D872DFD41B5D3D8EABBA60F /* RCTSensorOrientationChecker.h in Headers */ = {isa = PBXBuildFile; fileRef = C1DDA4E3B16DF11680CD2792EB11BFBE /* RCTSensorOrientationChecker.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 00535233D8F2FF65B7FC0C6EBBFA6660 /* RCTSubtractionAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 928EE9986CDF6976B4A5CB3DD999FA08 /* RCTSubtractionAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0055375663938D8B6B96AFD49ABDE3A2 /* RCTLayoutAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = E90E9AED0256637B0E790AC4BC170376 /* RCTLayoutAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0060810FB3851F5761DD7524A5AD905E /* RNGestureHandlerEvents.h in Headers */ = {isa = PBXBuildFile; fileRef = C65E6A2133CF6AEF92A048FF475593F2 /* RNGestureHandlerEvents.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0096392F77FDB42899D07B0B2F1E5C8E /* ReactMarker.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D5A8E2F945AAC0549B768510A55625B6 /* ReactMarker.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 0025F5438D872DFD41B5D3D8EABBA60F /* RCTSensorOrientationChecker.h in Headers */ = {isa = PBXBuildFile; fileRef = 63F7A324A12688347CDBE33EB604C86C /* RCTSensorOrientationChecker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 00535233D8F2FF65B7FC0C6EBBFA6660 /* RCTSubtractionAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 0309487709F664D12A436D2CDF5C7EEE /* RCTSubtractionAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0055375663938D8B6B96AFD49ABDE3A2 /* RCTLayoutAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 52C181B53E456CA3124AE8189A703850 /* RCTLayoutAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0060810FB3851F5761DD7524A5AD905E /* RNGestureHandlerEvents.h in Headers */ = {isa = PBXBuildFile; fileRef = 3BCFDAE2AAA5F22BB3BFE5E40E38FD16 /* RNGestureHandlerEvents.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0096392F77FDB42899D07B0B2F1E5C8E /* ReactMarker.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0BAA3748AC45E2477B85BA8EF1410F83 /* ReactMarker.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 0121DBEDDB1AA17D2E699AD70C4D9C7B /* cached-powers.cc in Sources */ = {isa = PBXBuildFile; fileRef = 98BB7C1FDA9E4AA9905645C05C35254F /* cached-powers.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - 0148FB2ED2D9EDA12FF4F092641313D1 /* JSIDynamic.h in Headers */ = {isa = PBXBuildFile; fileRef = DD93267F8BC35AF3488BE80BA8D5A6CF /* JSIDynamic.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 022888DDEC654EE7AB464AEED6B87A3E /* RCTBackedTextInputDelegateAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 520DFEB7D216CE8AA4C99175BEEC5517 /* RCTBackedTextInputDelegateAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0148FB2ED2D9EDA12FF4F092641313D1 /* JSIDynamic.h in Headers */ = {isa = PBXBuildFile; fileRef = BB07D988A0349BB39E57ADB1D76AA3D7 /* JSIDynamic.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 022888DDEC654EE7AB464AEED6B87A3E /* RCTBackedTextInputDelegateAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = A7BF460147BE7E60F26B9F23CEFF91EC /* RCTBackedTextInputDelegateAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; 023573887B510333B548FEB9A7123B04 /* utilities.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2B59D9FEC0B642EA15A35F647DA86754 /* utilities.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; - 02403283B0D898D87EE757ED72B795B0 /* RCTDeviceInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = F045A01D211904D5A26C2FD1FFCD16F4 /* RCTDeviceInfo.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 0264E8B71BF239B0FD6DFF1116C1FF44 /* RCTUIManagerObserverCoordinator.mm in Sources */ = {isa = PBXBuildFile; fileRef = B473093B3848ADE141E9543E7A692506 /* RCTUIManagerObserverCoordinator.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 027D0C7F8FCC094D196CBCCDC9A701A9 /* UMUserNotificationCenterProxyInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = AB50854B0DB3E5C0604C2985B47E9875 /* UMUserNotificationCenterProxyInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 027DCC5A7FE582E8B848E0724872A4CC /* RCTPicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 6BCB95541ED9706950920F660C22B966 /* RCTPicker.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 02E972DC93BE9A5B1825E5EE214C3C4C /* RCTGIFImageDecoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 6F98967D5010D284C2B0472D6E6FFD05 /* RCTGIFImageDecoder.m */; }; - 033E56C06465350AB95C851E66D0C3DE /* ReactMarker.h in Headers */ = {isa = PBXBuildFile; fileRef = EB2D8FFE28CF8ACD9B93AD0C798A4E04 /* ReactMarker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 02403283B0D898D87EE757ED72B795B0 /* RCTDeviceInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = E4D3885539FE361D5A7F8F3CBA23B6ED /* RCTDeviceInfo.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 0264E8B71BF239B0FD6DFF1116C1FF44 /* RCTUIManagerObserverCoordinator.mm in Sources */ = {isa = PBXBuildFile; fileRef = AB68F41F582C06F19D1EA064C1B7278B /* RCTUIManagerObserverCoordinator.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 027D0C7F8FCC094D196CBCCDC9A701A9 /* UMUserNotificationCenterProxyInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = 3980EB2052F198FEBC3DA51784E07E4E /* UMUserNotificationCenterProxyInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 027DCC5A7FE582E8B848E0724872A4CC /* RCTPicker.m in Sources */ = {isa = PBXBuildFile; fileRef = A86DF5A6816C0CDAFA5DCE4C09A2AE65 /* RCTPicker.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 02E972DC93BE9A5B1825E5EE214C3C4C /* RCTGIFImageDecoder.m in Sources */ = {isa = PBXBuildFile; fileRef = C7C9D54A540D9955365E18CD4D118168 /* RCTGIFImageDecoder.m */; }; + 033E56C06465350AB95C851E66D0C3DE /* ReactMarker.h in Headers */ = {isa = PBXBuildFile; fileRef = EA0701CCFB6EC96B3D72C59EC329D4E9 /* ReactMarker.h */; settings = {ATTRIBUTES = (Project, ); }; }; 038E43E337374D83EA40B0E78D0EDA30 /* logging.cc in Sources */ = {isa = PBXBuildFile; fileRef = EBFE7E9395BF528FC352299601FDBDF0 /* logging.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; - 03AE3B77C3CCA4C3842F67D6B1903DD1 /* RCTBaseTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 2295102D9E63957D79A6C4DD5B4F165E /* RCTBaseTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 03DC08A1E17A86861031DAFFE4995CA4 /* RCTSurfaceRootShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = E5DA7FB1574DF270DA997AA745F9B82D /* RCTSurfaceRootShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 03E2D66A96BD010DEF9F4B100E2A8235 /* RCTFileRequestHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 7BF4C8AA55B29278B57806595E82FD9E /* RCTFileRequestHandler.m */; }; - 03FD9834D48A0A66B376B6D6BC9CB02B /* BarcodeDetectorManagerMlkit.m in Sources */ = {isa = PBXBuildFile; fileRef = 0A01F8104C11C1235C0B1045001F2D0D /* BarcodeDetectorManagerMlkit.m */; }; - 04272B8B0242706E2193DB9AFE237F40 /* RCTCxxConvert.m in Sources */ = {isa = PBXBuildFile; fileRef = 496F8B93E1DC46D1ED9189A3DB25F1DF /* RCTCxxConvert.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 04782023478A361CC309B4E4C4B4DB48 /* JSBigString.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 87F103AE7E5FA7007EA177F5F4FCCA28 /* JSBigString.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 049D14193CB592C40AC473D5A12BF529 /* RCTInspectorPackagerConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 653D5DD087ED5F179D82C7D1DE613FBC /* RCTInspectorPackagerConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 04A8070FC120CD75E203CFB4A072EC86 /* RCTFollyConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = AC034016018228A5B98655C28AFBE96F /* RCTFollyConvert.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 04C31F90A3AB6C84AEDC3AF831AA2847 /* RCTRefreshControl.m in Sources */ = {isa = PBXBuildFile; fileRef = 69831E84FEFD22A8B7180DD5EB23703C /* RCTRefreshControl.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 04EF0FB604FEFD60693CF713468F015C /* DispatchMessageQueueThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F8997B536CBC346079AFABB11FB2860 /* DispatchMessageQueueThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 04F2E13982C3DD03E6AADDB082D86AD5 /* RCTLayoutAnimationGroup.m in Sources */ = {isa = PBXBuildFile; fileRef = DF045D38F9F5DEF6F2E648252A3C2D38 /* RCTLayoutAnimationGroup.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 05774B6F81CBFDA2431F43D5DF3DF7FA /* RCTSinglelineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = BBADBB1EA2E5AE0FF6AC7976797BC216 /* RCTSinglelineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 058CDFD8CDD560E039230DBB3960DE60 /* UMViewManagerAdapterClassesRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A92218C7346264F25F5042A8BB691EC /* UMViewManagerAdapterClassesRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 059F5E9520406C9886CDE3122B53DD5D /* RCTAsyncLocalStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = EC21F2CA84F3DE87739BD069D8D38C5B /* RCTAsyncLocalStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 05A04104A65F071B07EB5C6EED512CA5 /* UMModuleRegistryDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C99EF4D5DC6CB9A0998FA0158D997ED /* UMModuleRegistryDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 05AADAF87C7C8F45EB17F1D2055547DB /* UIView+FindUIViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 3DC2A7DA8E458E6428584AB49A4659FE /* UIView+FindUIViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 05D488F8012A3E56E55E4BC889E719B1 /* RNCamera.h in Headers */ = {isa = PBXBuildFile; fileRef = EA05C5080E86FABEFBB9D60C11FE0152 /* RNCamera.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 05E310F15BD1DAEE693C5CE93ED01868 /* React-RCTBlob-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = EF5828C6CD0C8B4554C601C5587F6028 /* React-RCTBlob-dummy.m */; }; - 05E44509B5B1ED0EDD9136C2C661B37D /* RCTAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 91C5B3E3D55AC5E4A83519530AB71FAF /* RCTAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 05F2336AE113EAC2E88104745EB7C077 /* RCTRootView.m in Sources */ = {isa = PBXBuildFile; fileRef = D1DA4DD5BB2B96D172D60052BF4DE18F /* RCTRootView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 05FD9CBC49A9036945A855E5976925F8 /* REASetNode.m in Sources */ = {isa = PBXBuildFile; fileRef = EFDE1BE8333777C01FB138FC7E21C001 /* REASetNode.m */; }; - 067C4FD75A3C64DD1F364B699BD8D465 /* RCTKeyboardObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D49430C7353ED679EEF310FE1E0D5A2 /* RCTKeyboardObserver.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 06E16858E605BEE050CF34C6B7BFDE4F /* RCTAssert.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D6EDFE7B99B9E14083822DFEEFDDE7E /* RCTAssert.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 070CD8EA221136BE82120EB747BE531F /* RCTCxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = F335B0706564A89383B0BF00A34EC1E0 /* RCTCxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0785CE8C4A0399E52DDF73BA02FBABB2 /* RCTSurfaceHostingProxyRootView.mm in Sources */ = {isa = PBXBuildFile; fileRef = E798B37E810F5B6612AA7EC846E87449 /* RCTSurfaceHostingProxyRootView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 07B5831A85A2C62B2131F351FBB751D5 /* YGNodePrint.h in Headers */ = {isa = PBXBuildFile; fileRef = CCEDECB845A05456C0B9539DB393D74D /* YGNodePrint.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 07FE40ECE7265F7646860328492666A4 /* RCTScrollView.m in Sources */ = {isa = PBXBuildFile; fileRef = E853F248843222E236163F95505C0892 /* RCTScrollView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 08067CAD54D32A94BEEFC335B1D42CC7 /* YGValue.h in Headers */ = {isa = PBXBuildFile; fileRef = 12E1E5A4C3FC44A79D3160CFE897B8D2 /* YGValue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 080CDE5FAD680B98A76D1351252BE19C /* UMAppDelegateWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = ED45391CBB659F519C4FF970C5587E81 /* UMAppDelegateWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 080E1D5D33742F3791A8FC5C709FE265 /* TurboModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 892E3B801505716D9776C7571E9039A1 /* TurboModule.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 083FF67B7024E14B4AF84FE2BE829C92 /* RCTSensorOrientationChecker.m in Sources */ = {isa = PBXBuildFile; fileRef = 80E9BDBCA02503BCE916B4A383512F80 /* RCTSensorOrientationChecker.m */; }; - 08BC3C64828C296394BBA54FBF6D02BA /* YGNodePrint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6714AB4E2BAAE27B2CEE331B3FF86225 /* YGNodePrint.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - 08C6D59F9E8BE37D00E2ABBE15498209 /* RCTScrollViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D81BA879CB3037A2C2CCF7612780A91 /* RCTScrollViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 08EA5A173F26EF0B7CC6135BEC4B7107 /* RCTShadowView+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = EF45E326AEC387468B0DF2DBCCE7E69E /* RCTShadowView+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0901126C9338F730EEEFD782FE0D968C /* RCTCxxUtils.mm in Sources */ = {isa = PBXBuildFile; fileRef = DDF2A4D9C79D1D2D12CE44B73D6697F0 /* RCTCxxUtils.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 094A389794D3783B01066EED19456F05 /* YGMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E8AA4BD8FA9EAC285A13989DAECCF93 /* YGMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 09D1E11EB3868E16F518BCF8F10806CE /* RNCSafeAreaViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = C78F56B5069932849E7FD1FCAD3667DA /* RNCSafeAreaViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 09F0EAD33248B4B09481AB3D8902041A /* RCTBaseTextInputViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 220869C23004F6C37A12911E9D3C9BD8 /* RCTBaseTextInputViewManager.m */; }; - 0A8DBD8F22BCDFE405F2135D13E73D2C /* RCTAdditionAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 1E97E900D22848007F6A5DC15C2D0A17 /* RCTAdditionAnimatedNode.m */; }; - 0AB9B568C6742A432B80BF2477E83C45 /* REATransformNode.h in Headers */ = {isa = PBXBuildFile; fileRef = FF2AF5222E570DF6153D71941E401DFF /* REATransformNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0AC22C82ED08A068A55010382925127F /* jsilib-posix.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DF4C9232FC8DF8945369EE65A1177DBD /* jsilib-posix.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 0AF66FFEBEB35B0A7094F8BC80215C7F /* JSExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = B882D8D412F9B7FACDE0FB7D97378AE7 /* JSExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0AF85CD37459950D464ECA01DF2E8E7A /* RCTBridgeMethod.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D18CDD8A66DF13080BE00ED2CD501D7 /* RCTBridgeMethod.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0B6A16ECDD5C560B808AB0615164B388 /* RCTBundleURLProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 26C85BB7C62A0291B4631540EDD8B82C /* RCTBundleURLProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0BFE1E850070DE8199DC04C18B16C373 /* RCTScrollContentView.m in Sources */ = {isa = PBXBuildFile; fileRef = 724C77C640A5DFE06CDF8E4CF74981A7 /* RCTScrollContentView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 0C264160C96EC1B022FC1E6289BB1B89 /* UMModuleRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = 385A5776F92ADDB6D0A79DE6EB5866CA /* UMModuleRegistry.m */; }; - 0C2A5DC47FE2D6837EA44C99ABFD5834 /* EXFileSystem.h in Headers */ = {isa = PBXBuildFile; fileRef = EA612016CD00BB46814440994B5FA04D /* EXFileSystem.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0C5DEBCF8F4FCB0168A322A897DCFF38 /* RCTActivityIndicatorViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 8C84BD9D7FC4FC104B90B07C7CE72DAA /* RCTActivityIndicatorViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 0C77CD28A6EA9D756DB31241D795958C /* RCTLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E4F38403B0960C6246FCD958E33F09E /* RCTLayout.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0CA09D5BEA8B4B21FA0DD4E5D9F7F85C /* RCTBackedTextInputViewProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D1B54C3F151C31AC512B821555EDF4A /* RCTBackedTextInputViewProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0CE586BF83E29531A0E1FA35876120DF /* REASetNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 7929707B62D49351AFC8444C359CA59D /* REASetNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0DA1DC8BDB6EF1A0C67D7D57CC1855B9 /* RCTUIManagerUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = A0AB68ECD1178BCB131EBDA07FA0B0D7 /* RCTUIManagerUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 0DB416EED4CEE504F784A84AE9F2D614 /* RCTView.m in Sources */ = {isa = PBXBuildFile; fileRef = 194AEAC348FB93BEDD90D39BA2B8E6E4 /* RCTView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 0DDA476F8D2ECE90A4230467A9902E47 /* RCTModalManager.h in Headers */ = {isa = PBXBuildFile; fileRef = FDFBEF39EAE6D5C094B1698A435AF47D /* RCTModalManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0DE32B6D05C19DBE87F4F52DB7447D77 /* JSExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 18097062BCC8BFA39A1595BE1EEC4763 /* JSExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 0E51799C29B7E030F13E5A43951B1377 /* Utils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BC4079889AA80BA81374663D7EA9F872 /* Utils.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - 0E54C66B99976FC5742A9944191A75C3 /* RCTVirtualTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B5979E980C79FAEE2526F9EC8B06DE1 /* RCTVirtualTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0E5AA5B101514B13786A2E23ED8C2D64 /* RCTEventDispatcher.h in Headers */ = {isa = PBXBuildFile; fileRef = CC3FBB022D093476AA39711DA11CCF3A /* RCTEventDispatcher.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0E8D0CE1B9E2C358ACFF32940A96D93F /* RCTDisplayLink.m in Sources */ = {isa = PBXBuildFile; fileRef = B2709C2A2A82DF59B93920E343F0BF71 /* RCTDisplayLink.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 0EA5654038B02AADA34309D0D0A603E3 /* RCTMessageThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B6A947B817F27C9D03341DCBBECCB56 /* RCTMessageThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0EA90B65835E9AB717665933D1041015 /* UIView+React.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D153C7FA55895617B84F47D99C7AD20 /* UIView+React.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0EB95F5B8E3CFA1E3EB353CB88412DB8 /* RCTObjcExecutor.mm in Sources */ = {isa = PBXBuildFile; fileRef = 3ACAB150D57CBFEAC1F9051CBAA7AA52 /* RCTObjcExecutor.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 0F3C0AB34ECB070B5C80E39EF32676C2 /* UMPermissionsMethodsDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 9DDB2CFF8D681B72ABC207C9376CBB45 /* UMPermissionsMethodsDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0F9B662D2AA2962964E56C8CB5E77328 /* JSCRuntime.h in Headers */ = {isa = PBXBuildFile; fileRef = F03FAE0313E55A20AF5E7AD4C33867B5 /* JSCRuntime.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0FBA62FA7541C997C22A9CB15930DDAB /* RCTMultilineTextInputViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = D287687B564EEC61DF0E837E3A3C4EF0 /* RCTMultilineTextInputViewManager.m */; }; - 114F12006558AF5695401B0BC6CC1A26 /* RCTBaseTextInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = 3FFA1B269613070EB61EAC8C212B2052 /* RCTBaseTextInputView.m */; }; - 11B6F52A5FD266A852D40CD7A2E69EE1 /* RCTModuloAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = ED2BDABA8138144FE7AAED93D5753CE3 /* RCTModuloAnimatedNode.m */; }; - 11BDCB4A4128A85E868F2456214F104E /* RCTRawTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 9EB620E9B6F530C44CBB867073CB21B7 /* RCTRawTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 124D3CD707A30F680027634347ACE228 /* RCTRootViewDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 29D66464F66E2BD694FC8F551923B8EE /* RCTRootViewDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 135CA47E90F11A11511D769C60754F77 /* REATransitionValues.m in Sources */ = {isa = PBXBuildFile; fileRef = B2F07DADD3BEA2130319C8B14C68DE8A /* REATransitionValues.m */; }; - 13E3412068BFE3E6476AD24DFF211A7D /* RCTVirtualTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = E3D1C8ED1DFA77BC39415280ED19BAD4 /* RCTVirtualTextShadowView.m */; }; - 142C1508D75694497BF3ED67232080AD /* RCTSafeAreaShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = B603C64F9D0065A639F19EDE4F8D85A4 /* RCTSafeAreaShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 03AE3B77C3CCA4C3842F67D6B1903DD1 /* RCTBaseTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D50841F93BB099B6FE2866E7C00C25D /* RCTBaseTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 03DC08A1E17A86861031DAFFE4995CA4 /* RCTSurfaceRootShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = B797B53C92785CD13CCDCB1D334D3AB1 /* RCTSurfaceRootShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 03E2D66A96BD010DEF9F4B100E2A8235 /* RCTFileRequestHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = C6DF65865E92381F35FB6A3CD38C5179 /* RCTFileRequestHandler.m */; }; + 03FD9834D48A0A66B376B6D6BC9CB02B /* BarcodeDetectorManagerMlkit.m in Sources */ = {isa = PBXBuildFile; fileRef = D17F346101B42C748B563BEDA6559D0F /* BarcodeDetectorManagerMlkit.m */; }; + 04272B8B0242706E2193DB9AFE237F40 /* RCTCxxConvert.m in Sources */ = {isa = PBXBuildFile; fileRef = F919CA8E32E51E959E7E8D9698EC48AD /* RCTCxxConvert.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 04782023478A361CC309B4E4C4B4DB48 /* JSBigString.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 346E04B3581CC27303E1C05A41B86298 /* JSBigString.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 049D14193CB592C40AC473D5A12BF529 /* RCTInspectorPackagerConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 5CC80F92AD5835C29B56F4EBD638D76E /* RCTInspectorPackagerConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 04A8070FC120CD75E203CFB4A072EC86 /* RCTFollyConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = 478789F4F50E4C1F932B0B3132B4D8C5 /* RCTFollyConvert.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 04C31F90A3AB6C84AEDC3AF831AA2847 /* RCTRefreshControl.m in Sources */ = {isa = PBXBuildFile; fileRef = 4E2F58F2548E00E235D8EAA2C965D19D /* RCTRefreshControl.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 04EF0FB604FEFD60693CF713468F015C /* DispatchMessageQueueThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 44AA16E5A27EFE336D4C2814D179C268 /* DispatchMessageQueueThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 04F2E13982C3DD03E6AADDB082D86AD5 /* RCTLayoutAnimationGroup.m in Sources */ = {isa = PBXBuildFile; fileRef = DAA2ADF672F9EBC754ABA621D4DB6427 /* RCTLayoutAnimationGroup.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 05774B6F81CBFDA2431F43D5DF3DF7FA /* RCTSinglelineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D2F82D9FC6F110282C03B470CF4DC52 /* RCTSinglelineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 058CDFD8CDD560E039230DBB3960DE60 /* UMViewManagerAdapterClassesRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = FDFB98F7935DB064FA17A8FCD5CA526A /* UMViewManagerAdapterClassesRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 059F5E9520406C9886CDE3122B53DD5D /* RCTAsyncLocalStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = 51D9759694E2A5782A617E7C56431D68 /* RCTAsyncLocalStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 05A04104A65F071B07EB5C6EED512CA5 /* UMModuleRegistryDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = AC21FDFD3CDAD88BB90D983E7ABCFF77 /* UMModuleRegistryDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 05AADAF87C7C8F45EB17F1D2055547DB /* UIView+FindUIViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = A640FC97D51C0EC6EA55BEBCF6A8E33F /* UIView+FindUIViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 05D488F8012A3E56E55E4BC889E719B1 /* RNCamera.h in Headers */ = {isa = PBXBuildFile; fileRef = F726C5236961273F8A0BD96DB979B6E7 /* RNCamera.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 05E310F15BD1DAEE693C5CE93ED01868 /* React-RCTBlob-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 5360168E60046EC246E4C488EE9646F3 /* React-RCTBlob-dummy.m */; }; + 05E44509B5B1ED0EDD9136C2C661B37D /* RCTAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E52AC1E943D2853992E50BC2AAEF42F /* RCTAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 05F2336AE113EAC2E88104745EB7C077 /* RCTRootView.m in Sources */ = {isa = PBXBuildFile; fileRef = 459FFEA25362F62C4228C91B2BB5F813 /* RCTRootView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 05FD9CBC49A9036945A855E5976925F8 /* REASetNode.m in Sources */ = {isa = PBXBuildFile; fileRef = FF9E1E556E0737C4DC8CB41402FAA694 /* REASetNode.m */; }; + 067C4FD75A3C64DD1F364B699BD8D465 /* RCTKeyboardObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = ADB52200B41DC832B505A6A53FF161D9 /* RCTKeyboardObserver.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 06E16858E605BEE050CF34C6B7BFDE4F /* RCTAssert.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B9EBF4744171DE5917AF839123F8723 /* RCTAssert.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 070CD8EA221136BE82120EB747BE531F /* RCTCxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 394D092C22F16A88223BD0C4AD52F8E2 /* RCTCxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0785CE8C4A0399E52DDF73BA02FBABB2 /* RCTSurfaceHostingProxyRootView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 49B4C6F6A074A1E135E32D5B740CC805 /* RCTSurfaceHostingProxyRootView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 07B5831A85A2C62B2131F351FBB751D5 /* YGNodePrint.h in Headers */ = {isa = PBXBuildFile; fileRef = 7981B9B91FBE6EC19DDCF8DDA1B290F4 /* YGNodePrint.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 07FE40ECE7265F7646860328492666A4 /* RCTScrollView.m in Sources */ = {isa = PBXBuildFile; fileRef = C3C1E6036291F0D1D6EF9632FAD688FE /* RCTScrollView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 08067CAD54D32A94BEEFC335B1D42CC7 /* YGValue.h in Headers */ = {isa = PBXBuildFile; fileRef = 5AA5068473539AE78580B715B26FF0A5 /* YGValue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 080CDE5FAD680B98A76D1351252BE19C /* UMAppDelegateWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 341B0EE2F562D0A7AC9EB2E850382B8C /* UMAppDelegateWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 080E1D5D33742F3791A8FC5C709FE265 /* TurboModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1FADFD1C7B6755F2692F5A1E43CF8D3C /* TurboModule.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 083FF67B7024E14B4AF84FE2BE829C92 /* RCTSensorOrientationChecker.m in Sources */ = {isa = PBXBuildFile; fileRef = 13C382E153A5297EEAE5B27E367C80C7 /* RCTSensorOrientationChecker.m */; }; + 08BC3C64828C296394BBA54FBF6D02BA /* YGNodePrint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 51532E2C18688722FEBF1A8FA513624D /* YGNodePrint.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 08C6D59F9E8BE37D00E2ABBE15498209 /* RCTScrollViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 49CAAB87787B048436F8627A77ECA3C7 /* RCTScrollViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 08EA5A173F26EF0B7CC6135BEC4B7107 /* RCTShadowView+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 83400C51734A4C599E6167787E22A004 /* RCTShadowView+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0901126C9338F730EEEFD782FE0D968C /* RCTCxxUtils.mm in Sources */ = {isa = PBXBuildFile; fileRef = B526BAC58C528A75A588995980C8C245 /* RCTCxxUtils.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 094A389794D3783B01066EED19456F05 /* YGMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 5961778C7A7DAFC78E86ADF763B203EA /* YGMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 09D1E11EB3868E16F518BCF8F10806CE /* RNCSafeAreaViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C53BE1DC700EC506740737E1A94D215 /* RNCSafeAreaViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 09F0EAD33248B4B09481AB3D8902041A /* RCTBaseTextInputViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 35272515542012F664BD6191FBBF6117 /* RCTBaseTextInputViewManager.m */; }; + 0A8DBD8F22BCDFE405F2135D13E73D2C /* RCTAdditionAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 0C7A6A89A21B65E3A16DF82E84F0F91F /* RCTAdditionAnimatedNode.m */; }; + 0AB9B568C6742A432B80BF2477E83C45 /* REATransformNode.h in Headers */ = {isa = PBXBuildFile; fileRef = B999A89E5ED7004030001B59E1EECEB8 /* REATransformNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0AC22C82ED08A068A55010382925127F /* jsilib-posix.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 28C6E5C4C400012BA6E71C1FD5CDD8E4 /* jsilib-posix.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 0AF66FFEBEB35B0A7094F8BC80215C7F /* JSExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 60ACFB73402A2771A30B75046DD37A9E /* JSExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0AF85CD37459950D464ECA01DF2E8E7A /* RCTBridgeMethod.h in Headers */ = {isa = PBXBuildFile; fileRef = AEBD49A8C680BFD0B16A29B5965C404D /* RCTBridgeMethod.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0B6A16ECDD5C560B808AB0615164B388 /* RCTBundleURLProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 9670AD3A3E8E639D0C87DEA3086DC020 /* RCTBundleURLProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0BBEE39FAAFB6212065F91892C38BE1C /* Uploader.h in Headers */ = {isa = PBXBuildFile; fileRef = 029E912D9AC35FC318A98A69CA57DB1B /* Uploader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0BFE1E850070DE8199DC04C18B16C373 /* RCTScrollContentView.m in Sources */ = {isa = PBXBuildFile; fileRef = 803D7D8A465E7CD5A16DE0ACCC97FBF2 /* RCTScrollContentView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 0C264160C96EC1B022FC1E6289BB1B89 /* UMModuleRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = 3A957E101D6154542479437D2375A491 /* UMModuleRegistry.m */; }; + 0C2A5DC47FE2D6837EA44C99ABFD5834 /* EXFileSystem.h in Headers */ = {isa = PBXBuildFile; fileRef = A601848B171E24C7F28225037D1140DE /* EXFileSystem.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0C417A506245A7F8729ACD3BEB073A5A /* Downloader.m in Sources */ = {isa = PBXBuildFile; fileRef = 3715F5076DFDC3FFCB4EA60F2F961E3B /* Downloader.m */; }; + 0C5DEBCF8F4FCB0168A322A897DCFF38 /* RCTActivityIndicatorViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = A383AA38C73126607CD716CD36C0F477 /* RCTActivityIndicatorViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 0C77CD28A6EA9D756DB31241D795958C /* RCTLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = 7869800FF01CFD4F4E9A522395C82B4F /* RCTLayout.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0CA09D5BEA8B4B21FA0DD4E5D9F7F85C /* RCTBackedTextInputViewProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E2497CFF5B44EF3CED40A491A35717A /* RCTBackedTextInputViewProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0CE586BF83E29531A0E1FA35876120DF /* REASetNode.h in Headers */ = {isa = PBXBuildFile; fileRef = D3CA3A95F79BD3875B345E2C0FC185CB /* REASetNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0DA1DC8BDB6EF1A0C67D7D57CC1855B9 /* RCTUIManagerUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 14D3442FE37040422EAC2E45BE0E4B73 /* RCTUIManagerUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 0DB416EED4CEE504F784A84AE9F2D614 /* RCTView.m in Sources */ = {isa = PBXBuildFile; fileRef = D12271328575AE677B2B54905677183A /* RCTView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 0DDA476F8D2ECE90A4230467A9902E47 /* RCTModalManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 1439959EB2CB9D273F4B89010C340A83 /* RCTModalManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0DE32B6D05C19DBE87F4F52DB7447D77 /* JSExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BF038208A066AA28364E20A083A99337 /* JSExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 0E51799C29B7E030F13E5A43951B1377 /* Utils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3E2579914050E9B98FB220D05867FC4F /* Utils.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 0E54C66B99976FC5742A9944191A75C3 /* RCTVirtualTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 06CF59F69276C0F8EF15868EE9E75ADC /* RCTVirtualTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0E5AA5B101514B13786A2E23ED8C2D64 /* RCTEventDispatcher.h in Headers */ = {isa = PBXBuildFile; fileRef = FD75197CCC2D655D9C9D65B50075F386 /* RCTEventDispatcher.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0E8D0CE1B9E2C358ACFF32940A96D93F /* RCTDisplayLink.m in Sources */ = {isa = PBXBuildFile; fileRef = 84809013014C5ED1C177F3F5D9679CC8 /* RCTDisplayLink.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 0EA5654038B02AADA34309D0D0A603E3 /* RCTMessageThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 69117598BCC1CA3D01B947BA9B41B222 /* RCTMessageThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0EA90B65835E9AB717665933D1041015 /* UIView+React.h in Headers */ = {isa = PBXBuildFile; fileRef = BE432DBCA3E0939375CDE4AF21E03C89 /* UIView+React.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0EB95F5B8E3CFA1E3EB353CB88412DB8 /* RCTObjcExecutor.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1F78BE74F70334DC01F1690714B8733D /* RCTObjcExecutor.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 0F3C0AB34ECB070B5C80E39EF32676C2 /* UMPermissionsMethodsDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 0AFA09A24DE77125FF99862CE6B6C09E /* UMPermissionsMethodsDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0F9B662D2AA2962964E56C8CB5E77328 /* JSCRuntime.h in Headers */ = {isa = PBXBuildFile; fileRef = E363095CF1CF7626BAC4C320A1546AC6 /* JSCRuntime.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0FBA62FA7541C997C22A9CB15930DDAB /* RCTMultilineTextInputViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 24B8D86926F4F4667D26D7B77755B000 /* RCTMultilineTextInputViewManager.m */; }; + 114F12006558AF5695401B0BC6CC1A26 /* RCTBaseTextInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = 29FAB5F46ABB07B4FF5364EAA7BFC04A /* RCTBaseTextInputView.m */; }; + 11B6F52A5FD266A852D40CD7A2E69EE1 /* RCTModuloAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 5E53BC1F40B21DE55A3A42489753B629 /* RCTModuloAnimatedNode.m */; }; + 11BDCB4A4128A85E868F2456214F104E /* RCTRawTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 5F676D5F059945D32423B7D38719CFB4 /* RCTRawTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 124D3CD707A30F680027634347ACE228 /* RCTRootViewDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 1ACAD497CB7CE6CD298841F0C52A0334 /* RCTRootViewDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 135CA47E90F11A11511D769C60754F77 /* REATransitionValues.m in Sources */ = {isa = PBXBuildFile; fileRef = 8DDAB5E4F1BC86BC8B6AB3E831E03EF5 /* REATransitionValues.m */; }; + 13E3412068BFE3E6476AD24DFF211A7D /* RCTVirtualTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 833FF5D437B6802258D9BCC48AEC3CC1 /* RCTVirtualTextShadowView.m */; }; + 142C1508D75694497BF3ED67232080AD /* RCTSafeAreaShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B8BFF4C841C9775D25AC81C42A41459 /* RCTSafeAreaShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1486156DFCD66204248160D76650E74A /* fast-dtoa.cc in Sources */ = {isa = PBXBuildFile; fileRef = 342D933FB92E6866CA8DE995B0BFD32A /* fast-dtoa.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - 14985F5B96081DA44FE5FC53D285918E /* BarcodeDetectorManagerMlkit.h in Headers */ = {isa = PBXBuildFile; fileRef = BFAD886CFAE0E9E9F83A8CCEC4C8FC48 /* BarcodeDetectorManagerMlkit.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 14AA7CA15F034772E8B2636CFE2A5C85 /* ReactCommon-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E5697ECA514229CFE76DDBEE2E50C5F5 /* ReactCommon-dummy.m */; }; - 14B767D8FB1181872C293B08A7114EA4 /* RCTExceptionsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E7984395C33CDE85CB9D1ADBBA42AB2F /* RCTExceptionsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 14D36078B07B8AED1651DD9BF7020843 /* RCTSegmentedControl.m in Sources */ = {isa = PBXBuildFile; fileRef = 25CE2798B7732795CD21F211DA45D12E /* RCTSegmentedControl.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 15135A9A67B4019F2CC03E7D5FACA0FE /* RCTTypeSafety-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D09498F25CB1644917ED375FA3F9EF7B /* RCTTypeSafety-dummy.m */; }; - 15262558F7AA0A1A352EC6CF0CB262A2 /* RCTWeakProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E019E6439924DC1166B028508E895B4 /* RCTWeakProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 14985F5B96081DA44FE5FC53D285918E /* BarcodeDetectorManagerMlkit.h in Headers */ = {isa = PBXBuildFile; fileRef = 53B580C15542344DF4342F70AD468B58 /* BarcodeDetectorManagerMlkit.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 14AA7CA15F034772E8B2636CFE2A5C85 /* ReactCommon-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 86FDF0CB4DB115CB3EC44B79845C6BAC /* ReactCommon-dummy.m */; }; + 14B767D8FB1181872C293B08A7114EA4 /* RCTExceptionsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = C5973E06DCA2C46B7DF893931280C2A4 /* RCTExceptionsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 14D36078B07B8AED1651DD9BF7020843 /* RCTSegmentedControl.m in Sources */ = {isa = PBXBuildFile; fileRef = CEF2162ABB4F2E2301B798355FF37707 /* RCTSegmentedControl.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 15135A9A67B4019F2CC03E7D5FACA0FE /* RCTTypeSafety-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 843A46A3C66FDDD5974CA1B81ADC48B5 /* RCTTypeSafety-dummy.m */; }; + 15262558F7AA0A1A352EC6CF0CB262A2 /* RCTWeakProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 4221F5F8EA28B8D6B12DE2195EE2FE7F /* RCTWeakProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 15A8831A4069B311A1D8A57F87FE35FB /* RNFSManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A08AFFF7ABB2A73C740720DC8B48B45 /* RNFSManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 15AA568D96035A5F6578ADB09A4ADBE8 /* json_pointer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B963363E955DB3FFD6505036AF684873 /* json_pointer.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 15DBDF6C8903E7EB258F749627F30AF8 /* experiments.h in Headers */ = {isa = PBXBuildFile; fileRef = 86AACD2BCDB97CB0988524510F5CBFD0 /* experiments.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1616D6FE0ACC606362C99D2FEF1A6D1B /* RCTUITextView.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E84E3040A6275CB88A0DF50AA52C5BF /* RCTUITextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 15DBDF6C8903E7EB258F749627F30AF8 /* experiments.h in Headers */ = {isa = PBXBuildFile; fileRef = C85CC1442D982DE45082A0C6108B2C95 /* experiments.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1616D6FE0ACC606362C99D2FEF1A6D1B /* RCTUITextView.h in Headers */ = {isa = PBXBuildFile; fileRef = 7A13C258951D14E6D754463E2A708294 /* RCTUITextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 162CDAC1A54E09EFBB65387ED9CE74AE /* raw_logging.h in Headers */ = {isa = PBXBuildFile; fileRef = AD30CF9426D8BEBDDC6A207B021A513A /* raw_logging.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 172E676A7EEA5B4EB058AFE8453B62C0 /* TurboCxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = E3E4753F1B4103DD1C5B3A43585A6FB3 /* TurboCxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 179730EFB0F3B2FADBB467E5B85054F7 /* NSDataBigString.mm in Sources */ = {isa = PBXBuildFile; fileRef = CBB06E65F31DCCD122C8FE93D93C0129 /* NSDataBigString.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 17CBB9BE3934CDCEC484765E2C51B8DD /* RCTMaskedView.m in Sources */ = {isa = PBXBuildFile; fileRef = E28DF20541674A37532314E4C8B5FF7F /* RCTMaskedView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 17E56B98459AD0387E7AAAA8E843F584 /* UIView+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 71C7209EB793156064668091A52FC12D /* UIView+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 172E676A7EEA5B4EB058AFE8453B62C0 /* TurboCxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 31D05B387B92E4A716FC6FCD1E818BB9 /* TurboCxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 179730EFB0F3B2FADBB467E5B85054F7 /* NSDataBigString.mm in Sources */ = {isa = PBXBuildFile; fileRef = EE456CD8925E4FA0C312C3EC97385116 /* NSDataBigString.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 17CBB9BE3934CDCEC484765E2C51B8DD /* RCTMaskedView.m in Sources */ = {isa = PBXBuildFile; fileRef = 73E3BF365C4FD88C19534C8EC9C26346 /* RCTMaskedView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 17E56B98459AD0387E7AAAA8E843F584 /* UIView+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = A440C71D033BBE9BA55E93D52EADB32E /* UIView+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1825B2FEB1A835E1B17A0ABCB7CA9906 /* ScopeGuard.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AD99F46253DE1DABC274EF83FEE70A4E /* ScopeGuard.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 189B638C3899F769A08E0DE1EFB64FB3 /* EXRemoteNotificationPermissionRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = C8E9DADD5A57F77815F377DA9301FE3D /* EXRemoteNotificationPermissionRequester.m */; }; - 18C34C3A9A848DDF4751DD180B4DE0C8 /* RCTLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = D98E28469D48EDC9E6296D7C52B598AC /* RCTLayout.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 18E8EAC25CD3B08EE19B227D080345A0 /* RCTInspectorDevServerHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B4040FA1D446113665A80ABB83181A6 /* RCTInspectorDevServerHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1984A935CD4660D4C82B956848E5EF5A /* RCTScrollView.h in Headers */ = {isa = PBXBuildFile; fileRef = C5FE09AC13E912CC13F17F1725B484BA /* RCTScrollView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 19A112261DA087FBD8AEE59EAC20492E /* RCTCamera.m in Sources */ = {isa = PBXBuildFile; fileRef = 77429F93EBF2EEF53EFA795BB3A1CB1E /* RCTCamera.m */; }; - 1A5CCD6A9E653F5F0B97531077944784 /* RCTRootShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = E7DBCA0B94059E1C12E84EED172209F6 /* RCTRootShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 1A875C685B44527B80CCB2EBEEB1D8F0 /* RCTImageStoreManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 545E2337CD5A0E5897CD046ABD756385 /* RCTImageStoreManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1AB98DE085098FD60D73730F3929D28C /* RCTParserUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 717024D3028EB8CE8C865964753A9E2F /* RCTParserUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 1B43DA275F423D1FD4AE1D57BBD09919 /* RCTRootView.h in Headers */ = {isa = PBXBuildFile; fileRef = 526FE0456B33C48B70C147A4E9A46FE3 /* RCTRootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1B4DAB13032413CBA3E801775ADFCCF2 /* RCTSegmentedControlManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 597612FC14859CAEA0EC5C6A67FC6B61 /* RCTSegmentedControlManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 1BA8A36F7017A4E0BB7EED6DDFF3B8B3 /* RCTTransformAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = F3BF029C5452D1778B4054ACF96E41C9 /* RCTTransformAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1BB4DA92F4F7AFE053BBE35DB3F71CE9 /* RCTDevLoadingView.h in Headers */ = {isa = PBXBuildFile; fileRef = EF9F1ED02BFF950C47BD773B54377D23 /* RCTDevLoadingView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1BB646B47D3E345D72B5CFBDE7DAC2EA /* READebugNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D764D0D04DF297287F3C3241196D4A4 /* READebugNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1BD314A43A3B0FD30BACF7FB0DD8E89E /* REAAllTransitions.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CBC7BDCE64333DFB51CA45B19AE1CD8 /* REAAllTransitions.m */; }; - 1BEB900F68E96C21FD9580A82179CB49 /* RCTStatusBarManager.h in Headers */ = {isa = PBXBuildFile; fileRef = F39F2EB88472A3E7F6B8919127499550 /* RCTStatusBarManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1BFA99F8FC4F4746B2C0898C84268FA6 /* RCTAccessibilityManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 78DD080CDBE8E1F65FFCC75A70BBE21B /* RCTAccessibilityManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 1C3FC792BE321692978890191B26D0ED /* RCTTextAttributes.h in Headers */ = {isa = PBXBuildFile; fileRef = 52247AD75C34C0314A6536FA16067E88 /* RCTTextAttributes.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1CAB74DAED2832CD0DEFB3881E213F37 /* RCTViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 3F7D29F3ED9BCBD4D47F7609F8C4F989 /* RCTViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 1CC8EB5B0793692A5C211E3BDBC66088 /* RCTDataRequestHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 03FA5EC04092D36F43B098932369D7D8 /* RCTDataRequestHandler.m */; }; - 1D36716FE2C157CD5F2CC043EF74AA0F /* Instance.h in Headers */ = {isa = PBXBuildFile; fileRef = 4470CC3CA74BDE1A78EE1DB9119F7DE7 /* Instance.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 189B638C3899F769A08E0DE1EFB64FB3 /* EXRemoteNotificationPermissionRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = D48879D0B8FDCD0C4A17DF6DCB96D6F8 /* EXRemoteNotificationPermissionRequester.m */; }; + 18C34C3A9A848DDF4751DD180B4DE0C8 /* RCTLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = 802B6850CFE8EB827AD66BB2DB9B7BA7 /* RCTLayout.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 18E8EAC25CD3B08EE19B227D080345A0 /* RCTInspectorDevServerHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 001B2FCAAACF1B3314838492381CB0FA /* RCTInspectorDevServerHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1984A935CD4660D4C82B956848E5EF5A /* RCTScrollView.h in Headers */ = {isa = PBXBuildFile; fileRef = F536F46D6D4D418D3A5D9136FFBB2A77 /* RCTScrollView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 19A112261DA087FBD8AEE59EAC20492E /* RCTCamera.m in Sources */ = {isa = PBXBuildFile; fileRef = BE7BAACE531DAB1F221383ADF0E3031E /* RCTCamera.m */; }; + 1A5CCD6A9E653F5F0B97531077944784 /* RCTRootShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = D0B05B74F9DF4266DA3D1DE4354FD016 /* RCTRootShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 1A875C685B44527B80CCB2EBEEB1D8F0 /* RCTImageStoreManager.h in Headers */ = {isa = PBXBuildFile; fileRef = B66BD8CA276906DE829BE569CD1274F3 /* RCTImageStoreManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1AB98DE085098FD60D73730F3929D28C /* RCTParserUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = CE75E690C2666B1F1F97D212EEE597C4 /* RCTParserUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 1B43DA275F423D1FD4AE1D57BBD09919 /* RCTRootView.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C656C2D51EF02AF5617723943BD99D4 /* RCTRootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1B4DAB13032413CBA3E801775ADFCCF2 /* RCTSegmentedControlManager.m in Sources */ = {isa = PBXBuildFile; fileRef = A48BEB7C07E8320F4DC27BD4E3E0447A /* RCTSegmentedControlManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 1BA8A36F7017A4E0BB7EED6DDFF3B8B3 /* RCTTransformAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 25967F861375411FC8A89266362E9266 /* RCTTransformAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1BB4DA92F4F7AFE053BBE35DB3F71CE9 /* RCTDevLoadingView.h in Headers */ = {isa = PBXBuildFile; fileRef = 3655A5708697F6288D7AD2DA87F37AD2 /* RCTDevLoadingView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1BB646B47D3E345D72B5CFBDE7DAC2EA /* READebugNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 9FA99A854DCC538C71240342393A5143 /* READebugNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1BD314A43A3B0FD30BACF7FB0DD8E89E /* REAAllTransitions.m in Sources */ = {isa = PBXBuildFile; fileRef = 79C420094E4350FC3E93DAC0D64FD079 /* REAAllTransitions.m */; }; + 1BEB900F68E96C21FD9580A82179CB49 /* RCTStatusBarManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 411A0EF66E164798F2E6448243EEE9F0 /* RCTStatusBarManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1BFA99F8FC4F4746B2C0898C84268FA6 /* RCTAccessibilityManager.m in Sources */ = {isa = PBXBuildFile; fileRef = A28B13E7A998AD3E36A2CA10B7331D30 /* RCTAccessibilityManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 1C3FC792BE321692978890191B26D0ED /* RCTTextAttributes.h in Headers */ = {isa = PBXBuildFile; fileRef = 122B890482FCD7133611A5C18B90E0EF /* RCTTextAttributes.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1CAB74DAED2832CD0DEFB3881E213F37 /* RCTViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F314C97E33E6FDCAE8A15A5ADD705A6D /* RCTViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 1CC8EB5B0793692A5C211E3BDBC66088 /* RCTDataRequestHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 6232D3E3F26E7A15361DD75502217861 /* RCTDataRequestHandler.m */; }; + 1D36716FE2C157CD5F2CC043EF74AA0F /* Instance.h in Headers */ = {isa = PBXBuildFile; fileRef = 302FC132F1C00A68A5749C97B57C7FC9 /* Instance.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1D66E156B8AD27CCEE5E2D175E50E2B5 /* DoubleConversion-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = CE9B6D8AD870BADA404AC6E21F2D1C68 /* DoubleConversion-dummy.m */; }; - 1D838244DCF67A79448F0311491E8A53 /* RNCMaskedView.h in Headers */ = {isa = PBXBuildFile; fileRef = 803182C68C68EFFB8593578DEF1AB183 /* RNCMaskedView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1E15AD91BE832AEE1E6A66F0FBB4FF2F /* RCTBridge.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F3AB5B21672C8FD806A4A28041D7497 /* RCTBridge.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1E73BBF7421964503734E50DAC13958C /* RCTAccessibilityManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 25148C0EC587165889D3C3B10A1702F5 /* RCTAccessibilityManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1E9E9841ECD43A7B59D4B9C4A24373CD /* RNSScreenContainer.m in Sources */ = {isa = PBXBuildFile; fileRef = C32305C61641C43130CC830AC90FCF5D /* RNSScreenContainer.m */; }; - 1F174550A251B69028496FC8F90ABD61 /* RCTTouchHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 8EB675CAF6351F58F782C161FB3A18C7 /* RCTTouchHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1F3A89DDC06FF26787FCC67E896C2D05 /* RCTUIImageViewAnimated.m in Sources */ = {isa = PBXBuildFile; fileRef = 1DF0F230092EFDF9E52B0054726C5956 /* RCTUIImageViewAnimated.m */; }; - 1FC4660C234E87C144283B62B62D14E8 /* RCTUIUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = E329CE1D648734DB81CBA865811D4931 /* RCTUIUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1FD5630A16DFB1C22C0FD1DEBF45B426 /* RCTFrameAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 85008557FA91E2157A4032DBF5F0C6B6 /* RCTFrameAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1FE2120FB51AC3CFF90430C57FBA4485 /* RCTBaseTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = FBE70897D287E740951C8C7342833B60 /* RCTBaseTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 206924EB5DF82EE6DD0FCCF6588714D2 /* UIView+FindUIViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 91349DE5D373447F75BFADED39ECE630 /* UIView+FindUIViewController.m */; }; - 208F0F89A59307CFD4DBEE7148C57E22 /* RCTImageLoader.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6C689029C05CBE1A4A49FA79E2B1F876 /* RCTImageLoader.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 20A3DBEBF84B486EEB93BD75A146033D /* REAConcatNode.h in Headers */ = {isa = PBXBuildFile; fileRef = BC7B987A2643AD0AC61C4F13E6E5E902 /* REAConcatNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 20A92E9C341E210BC90287B7E5F67616 /* RCTBlobManager.h in Headers */ = {isa = PBXBuildFile; fileRef = CA1B8B1428B8F85BB948C4D591CAFCAD /* RCTBlobManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 20BC11F8E2467F25A41E2A4F41A58E01 /* RCTDatePickerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2842420D9151969B6BD4FCC58C457023 /* RCTDatePickerManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 211825B42C149FDE16AB9293734167D0 /* RNCMaskedView.m in Sources */ = {isa = PBXBuildFile; fileRef = FB668BBF526324D6BE0B7341899B9E32 /* RNCMaskedView.m */; }; - 212A2FD1D5095FFB16D900B296BFB4C5 /* RCTMultilineTextInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = DF35500C1B09B2803A2C128372D6A8FF /* RCTMultilineTextInputView.m */; }; - 212D4F0B03BF9304919DE40DFBA78B44 /* RCTSourceCode.m in Sources */ = {isa = PBXBuildFile; fileRef = 0FC6639E40BF6EF4E48F00203143586A /* RCTSourceCode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 21455CD5BBD08F17A77B7F4BC5357526 /* RNSensorOrientationChecker.h in Headers */ = {isa = PBXBuildFile; fileRef = DE53423479474D0129E837491B56EE56 /* RNSensorOrientationChecker.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 22396DD662D670DBD1E56B46899E0A21 /* NSDataBigString.h in Headers */ = {isa = PBXBuildFile; fileRef = 83D12F7F6A27AA9121DAE2DEB11188C6 /* NSDataBigString.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2257612A49356B139C85021FDCFEA687 /* REAAlwaysNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 20714491BF54003D0BD9AA33F56EA21B /* REAAlwaysNode.m */; }; - 228034091EEDE7AC4B090F4CF5444CBE /* RCTSinglelineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = C6EEA9C4D84D39FD8F4C1008EA25B0C9 /* RCTSinglelineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 22A449213EF7B85E0E070E14646F1142 /* REAStyleNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 9FA3D208A8E5EEBEB222001AF80737CD /* REAStyleNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 22C893769DB69620D10DB6343A1BF40C /* RNRootViewGestureRecognizer.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C1BD55412F8E5C6B47635501D5DBC01 /* RNRootViewGestureRecognizer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2356903CECF523C6B278208A860F5C3D /* RCTI18nManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 875F80A549BC502CE7BA5B5D21A3907A /* RCTI18nManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 23828592CB28A95748A2E0D1B54FB782 /* UMReactNativeAdapter-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0FC5C5704C9DCD1329F667A65D19B583 /* UMReactNativeAdapter-dummy.m */; }; - 23AC501AE9C9899D167B637EFCD37A32 /* JsArgumentHelpers-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = C15C6F75EA5EF2622D340FDA0BA279C3 /* JsArgumentHelpers-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 244546B5EF3F7CF6F1B53C53B7C7390C /* log.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46D6B19BDAB49C1CC8FB4ADA93DA4634 /* log.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - 24B985ABA5C54C599E886CE293A47853 /* RCTBackedTextInputDelegateAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = 81AAC5A5194915C2EAE22298A4937CF4 /* RCTBackedTextInputDelegateAdapter.m */; }; - 24DC681EB1AA4E65ADA6DF92E3F69D9B /* BridgeJSCallInvoker.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0AF57DD0534C64131065DB4E3120658D /* BridgeJSCallInvoker.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 255DD536C167BEA493A3A93656FCB5C6 /* React-jsiexecutor-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 329A76F82BA337D174D3D3802005B0F4 /* React-jsiexecutor-dummy.m */; }; - 25D1EE7FFDCEE0EBC3F03EB316E69F59 /* RNCCameraRollManager.h in Headers */ = {isa = PBXBuildFile; fileRef = DDA77FE557194DB89FBB4D0EC8FE3B73 /* RNCCameraRollManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 263A49E57C7CBF5B10BEB972D93A1215 /* UMReactNativeAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = 333C144DFBB96E17F29FC5FE1A6B7F8E /* UMReactNativeAdapter.m */; }; - 265F56208ABABC040F61CD5BD38ED3FC /* RCTAnimatedImage.h in Headers */ = {isa = PBXBuildFile; fileRef = 6CD5F3AC0CED9941890DA81047C001D8 /* RCTAnimatedImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1D838244DCF67A79448F0311491E8A53 /* RNCMaskedView.h in Headers */ = {isa = PBXBuildFile; fileRef = D11FC44EFF4E0D069B4527FCAA0D27C5 /* RNCMaskedView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1E15AD91BE832AEE1E6A66F0FBB4FF2F /* RCTBridge.h in Headers */ = {isa = PBXBuildFile; fileRef = A76D4EE9AAE9E915EA3078ADD2B38669 /* RCTBridge.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1E73BBF7421964503734E50DAC13958C /* RCTAccessibilityManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 71FD0FA7FE3F5ED0D470C0BDEF2646D9 /* RCTAccessibilityManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1E9E9841ECD43A7B59D4B9C4A24373CD /* RNSScreenContainer.m in Sources */ = {isa = PBXBuildFile; fileRef = 2420FF852A748811BE052AEBCF3E591B /* RNSScreenContainer.m */; }; + 1F174550A251B69028496FC8F90ABD61 /* RCTTouchHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = B2315634F42CC21AC5F8FC1D3F273F9E /* RCTTouchHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1F3A89DDC06FF26787FCC67E896C2D05 /* RCTUIImageViewAnimated.m in Sources */ = {isa = PBXBuildFile; fileRef = CEBB864E5E847848EC733BB4974EC457 /* RCTUIImageViewAnimated.m */; }; + 1FC4660C234E87C144283B62B62D14E8 /* RCTUIUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 687055E0BF2B360B2EED58EAA8AB4B3D /* RCTUIUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1FD5630A16DFB1C22C0FD1DEBF45B426 /* RCTFrameAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 929E9B46276747AC1132EF99AF3FB597 /* RCTFrameAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1FE2120FB51AC3CFF90430C57FBA4485 /* RCTBaseTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 6083BC4F305C34E71A53504B73A15530 /* RCTBaseTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 206924EB5DF82EE6DD0FCCF6588714D2 /* UIView+FindUIViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 739FA1A7A42404A776FC77980E95A600 /* UIView+FindUIViewController.m */; }; + 208F0F89A59307CFD4DBEE7148C57E22 /* RCTImageLoader.mm in Sources */ = {isa = PBXBuildFile; fileRef = 55A9AC527C19E941392C2127C474D8AE /* RCTImageLoader.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 20A3DBEBF84B486EEB93BD75A146033D /* REAConcatNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B5788F982C9A1CBCC725E1709019A9E /* REAConcatNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 20A92E9C341E210BC90287B7E5F67616 /* RCTBlobManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 83DF5D6F37AD34128EA102A1009DDE97 /* RCTBlobManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 20BC11F8E2467F25A41E2A4F41A58E01 /* RCTDatePickerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 6E7CAFB5537E436A40807C5622C3F38F /* RCTDatePickerManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 211825B42C149FDE16AB9293734167D0 /* RNCMaskedView.m in Sources */ = {isa = PBXBuildFile; fileRef = 1F19C2BDE3441343DA7C2F0F2D8BB95B /* RNCMaskedView.m */; }; + 212A2FD1D5095FFB16D900B296BFB4C5 /* RCTMultilineTextInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = D21D91AE607CC7A31C6EB0B34BB8ED49 /* RCTMultilineTextInputView.m */; }; + 212D4F0B03BF9304919DE40DFBA78B44 /* RCTSourceCode.m in Sources */ = {isa = PBXBuildFile; fileRef = 869A65C588018DD7E3C707D1153B63C9 /* RCTSourceCode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 21455CD5BBD08F17A77B7F4BC5357526 /* RNSensorOrientationChecker.h in Headers */ = {isa = PBXBuildFile; fileRef = BDC7287F939A2089243201265B5D4CE1 /* RNSensorOrientationChecker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 22396DD662D670DBD1E56B46899E0A21 /* NSDataBigString.h in Headers */ = {isa = PBXBuildFile; fileRef = B163EB9C3DEDEE82BF61C93C66BAB736 /* NSDataBigString.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2257612A49356B139C85021FDCFEA687 /* REAAlwaysNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 38330834A671B9B4C3436E5DC991A50C /* REAAlwaysNode.m */; }; + 228034091EEDE7AC4B090F4CF5444CBE /* RCTSinglelineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 839C0A226E98B630DA630EFF7EC45481 /* RCTSinglelineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 22A449213EF7B85E0E070E14646F1142 /* REAStyleNode.h in Headers */ = {isa = PBXBuildFile; fileRef = FFBD1BE7DC18190C1CB7395361D37C14 /* REAStyleNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 22C893769DB69620D10DB6343A1BF40C /* RNRootViewGestureRecognizer.h in Headers */ = {isa = PBXBuildFile; fileRef = E17485EB0862A6D7C352D04327680888 /* RNRootViewGestureRecognizer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2356903CECF523C6B278208A860F5C3D /* RCTI18nManager.m in Sources */ = {isa = PBXBuildFile; fileRef = C2D68E6579670C1AE6A924A8E477D932 /* RCTI18nManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 23828592CB28A95748A2E0D1B54FB782 /* UMReactNativeAdapter-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 488BEDA1A8E816A182E0230739CF1F27 /* UMReactNativeAdapter-dummy.m */; }; + 23AC501AE9C9899D167B637EFCD37A32 /* JsArgumentHelpers-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E28129FE0BD30F7B7ADE0132E5DEED8 /* JsArgumentHelpers-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 244546B5EF3F7CF6F1B53C53B7C7390C /* log.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 52324F3618681E549D3AEEAE1ED35034 /* log.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 24B985ABA5C54C599E886CE293A47853 /* RCTBackedTextInputDelegateAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = AA1929C5F2EBA33ED7EE345B42D7F059 /* RCTBackedTextInputDelegateAdapter.m */; }; + 24DC681EB1AA4E65ADA6DF92E3F69D9B /* BridgeJSCallInvoker.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 091121A09A9A57CE1AE5A4785B952D1D /* BridgeJSCallInvoker.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 255DD536C167BEA493A3A93656FCB5C6 /* React-jsiexecutor-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 75DB962E226C097E996B858C50817A2E /* React-jsiexecutor-dummy.m */; }; + 25D1EE7FFDCEE0EBC3F03EB316E69F59 /* RNCCameraRollManager.h in Headers */ = {isa = PBXBuildFile; fileRef = B5CB9EAB9907872085D0EC1E8E9F7967 /* RNCCameraRollManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 263A49E57C7CBF5B10BEB972D93A1215 /* UMReactNativeAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D48BAFB1C309A57A7D6FB6E19406628 /* UMReactNativeAdapter.m */; }; + 265F56208ABABC040F61CD5BD38ED3FC /* RCTAnimatedImage.h in Headers */ = {isa = PBXBuildFile; fileRef = 34538C34D0B38F343683BC22F96E0F22 /* RCTAnimatedImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; 267A50C4F892793B3ABF4C5AD43020BF /* utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E66A7443BBC8FA9D616A17E15B5F258 /* utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 26B4D17D17A1BBDCAA97EB8795C59964 /* UMReactFontManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 77F7E2C1DE1135C2F37F7D93914D3569 /* UMReactFontManager.m */; }; - 275BE738D1F5CA3E936B5CFF4B820698 /* RCTDevLoadingView.m in Sources */ = {isa = PBXBuildFile; fileRef = C06D8765E54E0CA504170A6131FD3428 /* RCTDevLoadingView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 27888B68B7A7E77AFAD5574BB05DE769 /* RCTDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C5189C75A7B9D6A5115CA1C0E958D24 /* RCTDefines.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 27A52C24BC312D652637032A49B2CCA7 /* YGFloatOptional.h in Headers */ = {isa = PBXBuildFile; fileRef = EF3F64E82363FC81A6F7527DBEDB2140 /* YGFloatOptional.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 27C1A69C52BB15DC67850E468B12D649 /* RCTExceptionsManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8DEFEF8F9410EC5482A9753C0DBD7C6C /* RCTExceptionsManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 280BD4D3A0706CD550494E4CD1867FDA /* RCTGIFImageDecoder.h in Headers */ = {isa = PBXBuildFile; fileRef = CE0E526A2C6D72A91B50E54AF1215749 /* RCTGIFImageDecoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 281B131E6245417B8E761AD143980AD7 /* UMEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 25EEBA49AE086F0ECB8BD9A094146FEB /* UMEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 284FE67C26567D65FF2673CBBCD7888A /* UMViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D961288869DF1D1842539C692B7BC1 /* UMViewManager.m */; }; - 288F29EF4BB98CDD18652165A8EABD78 /* RNCameraManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 308F48010BC6D3E74AF5596BDF109B25 /* RNCameraManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 290FF20F9007BCEE01D8426B285D07B9 /* CameraFocusSquare.h in Headers */ = {isa = PBXBuildFile; fileRef = DBE80FC28DE5E6718E15E07A1645FE03 /* CameraFocusSquare.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 291E9D41DB25661BC66B67E3CFB87D73 /* RCTInputAccessoryViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = FEFBBDC48A0FFE98A7C1C43A44DB40DD /* RCTInputAccessoryViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 29BB2B6AAA59D76F29E7DFC98AEA2677 /* RCTTextAttributes.h in Headers */ = {isa = PBXBuildFile; fileRef = 52247AD75C34C0314A6536FA16067E88 /* RCTTextAttributes.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 26B4D17D17A1BBDCAA97EB8795C59964 /* UMReactFontManager.m in Sources */ = {isa = PBXBuildFile; fileRef = A5E1FA72468AD21AE8048E18EC0648E9 /* UMReactFontManager.m */; }; + 275BE738D1F5CA3E936B5CFF4B820698 /* RCTDevLoadingView.m in Sources */ = {isa = PBXBuildFile; fileRef = 56B7FAFBA8A92F9810211AB40DB4C00A /* RCTDevLoadingView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 27888B68B7A7E77AFAD5574BB05DE769 /* RCTDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = 1DF6692A48DF0009AB87A5292D3CA3AE /* RCTDefines.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 27A52C24BC312D652637032A49B2CCA7 /* YGFloatOptional.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A5605010B9C7EA9DCB2792E562EC759 /* YGFloatOptional.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 27C1A69C52BB15DC67850E468B12D649 /* RCTExceptionsManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 11F049CD5B2DDA74F086BA0A03722F53 /* RCTExceptionsManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 280BD4D3A0706CD550494E4CD1867FDA /* RCTGIFImageDecoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 005926AE0A8677AC1F2D9DCAE7BEFFB2 /* RCTGIFImageDecoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 281B131E6245417B8E761AD143980AD7 /* UMEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = B7FD57CD3F5ED96C13A6A70B82BCADA4 /* UMEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 284FE67C26567D65FF2673CBBCD7888A /* UMViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = FABA37A55A63AC04287B6EB245CC98CF /* UMViewManager.m */; }; + 288F29EF4BB98CDD18652165A8EABD78 /* RNCameraManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 34AB717BF15267CDB020DD7501918E98 /* RNCameraManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 290FF20F9007BCEE01D8426B285D07B9 /* CameraFocusSquare.h in Headers */ = {isa = PBXBuildFile; fileRef = BE8C3334D320B525C489D29C24ADC12F /* CameraFocusSquare.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 291E9D41DB25661BC66B67E3CFB87D73 /* RCTInputAccessoryViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 418CFEAD9181107E08B9D773FEB1D04E /* RCTInputAccessoryViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 29BB2B6AAA59D76F29E7DFC98AEA2677 /* RCTTextAttributes.h in Headers */ = {isa = PBXBuildFile; fileRef = 122B890482FCD7133611A5C18B90E0EF /* RCTTextAttributes.h */; settings = {ATTRIBUTES = (Project, ); }; }; 29D3F2BF7B47DF0C4F94937B6098E6C5 /* vlog_is_on.h in Headers */ = {isa = PBXBuildFile; fileRef = EF9CE74F40BBDC5254233E55EAA6D53E /* vlog_is_on.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2A8F062E0D73EAE71202D313C331FF1F /* RCTNativeModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = 4B15C7523007E87CA27F761E7D97EB5D /* RCTNativeModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 2C132D55DB2464E431418BF78F1E73DF /* YGNode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 79279DF20D28E71191074425CC655277 /* YGNode.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - 2C4587AD15A7973ECE6637EDA1DFBF08 /* EXFilePermissionModule.h in Headers */ = {isa = PBXBuildFile; fileRef = C7102AB799C4D19159EAFBCE6E4C3E7F /* EXFilePermissionModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2CDAC043E586A4E33786C82BEFBB0DBF /* RNRootViewGestureRecognizer.m in Sources */ = {isa = PBXBuildFile; fileRef = E1F2B825CF45C3B979FAA8ABBDA44513 /* RNRootViewGestureRecognizer.m */; }; - 2CDB385F3DB95C7A9EF95F3EF07CE5E8 /* RCTProfileTrampoline-arm64.S in Sources */ = {isa = PBXBuildFile; fileRef = A14D26C1C8F07530335D37BE501A8132 /* RCTProfileTrampoline-arm64.S */; }; - 2D09748980413941629BE78E85C11A1D /* RCTConvert+Text.h in Headers */ = {isa = PBXBuildFile; fileRef = 090DF051C115997FB83AAE2E59509FE3 /* RCTConvert+Text.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2D4AEF30FB95F76C6AC859F927A8135C /* RCTCamera.h in Headers */ = {isa = PBXBuildFile; fileRef = 4051B81D904406A95D40658642E09B40 /* RCTCamera.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2DC001BA6A228F9E311EB433E1B77A02 /* RCTRefreshControl.h in Headers */ = {isa = PBXBuildFile; fileRef = 95CFB4AE876FEF06DD1F334C41E2D273 /* RCTRefreshControl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2A8F062E0D73EAE71202D313C331FF1F /* RCTNativeModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = F4EFD48F3CE8DBEA8E0AEE17365A7229 /* RCTNativeModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 2C132D55DB2464E431418BF78F1E73DF /* YGNode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0B8BA87D1EC6A4418FC4868144539A2F /* YGNode.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 2C4587AD15A7973ECE6637EDA1DFBF08 /* EXFilePermissionModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 87CE761A684BA1864C66DF5A2F7F4CA5 /* EXFilePermissionModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2CDAC043E586A4E33786C82BEFBB0DBF /* RNRootViewGestureRecognizer.m in Sources */ = {isa = PBXBuildFile; fileRef = A724C78E2286A87FF51042B47EFF6039 /* RNRootViewGestureRecognizer.m */; }; + 2CDB385F3DB95C7A9EF95F3EF07CE5E8 /* RCTProfileTrampoline-arm64.S in Sources */ = {isa = PBXBuildFile; fileRef = C655804A2DC891E21A116B81E76473CF /* RCTProfileTrampoline-arm64.S */; }; + 2D09748980413941629BE78E85C11A1D /* RCTConvert+Text.h in Headers */ = {isa = PBXBuildFile; fileRef = 85FF03777D7E79870AC51C11E098AC8C /* RCTConvert+Text.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2D4AEF30FB95F76C6AC859F927A8135C /* RCTCamera.h in Headers */ = {isa = PBXBuildFile; fileRef = 28977C6B8FD49EFE32857DFB1A08F739 /* RCTCamera.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2DC001BA6A228F9E311EB433E1B77A02 /* RCTRefreshControl.h in Headers */ = {isa = PBXBuildFile; fileRef = 09157A1CE59DDBA1C6459CEBFE30019A /* RCTRefreshControl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2E31E0B3EBD402CEFF64891929293A70 /* fixed-dtoa.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D50A987A5C7EEDE40A6784D6877669B /* fixed-dtoa.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2EB39B5FC0C0735E897588DA40917AE2 /* RCTManagedPointer.h in Headers */ = {isa = PBXBuildFile; fileRef = 1CEA3B7001165FC8F946660199830E73 /* RCTManagedPointer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2ED7D798E2E1DBB942012B867BF1089D /* RCTVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C737A388ADC5FB753F8D4307A0A0667 /* RCTVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2EDEED7EE4A297A8F6B6C3AC18A0C2CD /* RCTInspectorPackagerConnection.m in Sources */ = {isa = PBXBuildFile; fileRef = 9C740197E8A9F482E6343600D3707559 /* RCTInspectorPackagerConnection.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 2EF4F8FFFCBBD5E86CD281FAB1A5A6D3 /* RCTRawTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 02DE686D9FC2A4732D0DA443448F0CD2 /* RCTRawTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2F37E13839018122C7584B33BD63610D /* react-native-video-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C92C4F45BECE6C2ED6B1E346AD9D610C /* react-native-video-dummy.m */; }; - 2F4D3CB5530FEDC8D599D0FC2A883DF8 /* EXAppLoaderProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = B54F44131C9ED95D0FD60F06F129AA1F /* EXAppLoaderProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2F78EECB78E88A85A7E5CBDC21CFC3E7 /* RCTTextAttributes.m in Sources */ = {isa = PBXBuildFile; fileRef = C1186510553C9A19A8FF00CEE125117A /* RCTTextAttributes.m */; }; - 2FA34ACDB9B71BEFCD11132AB76D14FD /* RCTBorderDrawing.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D9D3B498DCA304D4791E93B63F80FEB /* RCTBorderDrawing.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 3049352686EA4CB5C9CA6A04B0BB179B /* NativeToJsBridge.h in Headers */ = {isa = PBXBuildFile; fileRef = 04ED5FE8FAE486660E5111A53A974DAB /* NativeToJsBridge.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 304B429DFD4E1375B32865983941104C /* jsilib-windows.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B2EF11B29D406CC845A86545090C709A /* jsilib-windows.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 304FD67FAFB0598D3603A2463AF310D5 /* RCTClipboard.h in Headers */ = {isa = PBXBuildFile; fileRef = 02394B6FC9BDBDE1C63BEDFE28279DC9 /* RCTClipboard.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 307F3607934710DF997A7298180F7E98 /* RCTImageStoreManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 32572940B7237605108D19BABDBAA92C /* RCTImageStoreManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 3094487331FE01E458952A37E6B0C477 /* RCTDevSettings.mm in Sources */ = {isa = PBXBuildFile; fileRef = A8A3A4CAA8748E26831A9BCB9FAA66CE /* RCTDevSettings.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 3117D5AFA4E546F9B2CEA3EB35965A82 /* REACondNode.m in Sources */ = {isa = PBXBuildFile; fileRef = CD24F5E91E9300A22C813DF308C34577 /* REACondNode.m */; }; - 311FE5768BBED041DD46126C90D9DB24 /* RCTViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 89E2A1C82D69E02AEE6401814D47CDD8 /* RCTViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 314D1FDB33D6F691AB0DA1E95F15A43D /* RCTImageSource.m in Sources */ = {isa = PBXBuildFile; fileRef = 21CB225F5AF46EF8DFF571B3779AA98F /* RCTImageSource.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 3153270D56081EBE819ACB643EE9C11A /* RCTImageViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = A5F50BE9119F0A88307B22813BEBDFC9 /* RCTImageViewManager.m */; }; - 316D7828D889CC69A90CBDA60B6A6FCC /* RCTTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 32602D3FA54823E2837ADA749DBEC205 /* RCTTextShadowView.m */; }; - 31DD66327BF3F6A9BD5B74BB4AA7F421 /* jsi.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D0CFF0D93723F30496BFDE8EE5CE4899 /* jsi.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 31E0BC7EDF993D50D6265A19DEC22038 /* SystraceSection.h in Headers */ = {isa = PBXBuildFile; fileRef = C732544715094F830748F3E41EAEC0FD /* SystraceSection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 322CEC71B014E27C5619F17E45B386CC /* Yoga-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 5A580ADCBA0DB4163EB61AED51784069 /* Yoga-dummy.m */; }; - 3240E20C3A58ACFE15D21D48E1D40A6B /* RNForceTouchHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = DFA0C314CC87C016546FFF6093ACC084 /* RNForceTouchHandler.m */; }; - 32A3776575E03F9234B4E616AB33A4EC /* RCTProfileTrampoline-x86_64.S in Sources */ = {isa = PBXBuildFile; fileRef = 4275FEE937ACBE071A77D106D5826272 /* RCTProfileTrampoline-x86_64.S */; }; - 32A8B3DBF28CDF6F728C30B34AC785A5 /* UMDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A9AEDA41B0C780392898DA5ACDDDB8F /* UMDefines.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 33457000C73C1BA5BC2352B54AB16160 /* LongLivedObject.h in Headers */ = {isa = PBXBuildFile; fileRef = C8D4563D1FAED6229AA2F11B48F67D59 /* LongLivedObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 334A7F296D9F8BC9EC98277B8252734B /* NativeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = A8EF390CABA3A0ADD137B4981393CEAA /* NativeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 339444E0B842A109E18599C8B7F3A58D /* SharedProxyCxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 66AF66B801DE97B857B893DF1396BB51 /* SharedProxyCxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 33C8E8AC8A402274528F5C0C3A1DBD4B /* RCTLinkingManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 1379C4D52BC06398417544F11F7AC83D /* RCTLinkingManager.m */; }; - 34443B0A5787AA7AEB5C488DDDB611D8 /* RCTRawTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 02DE686D9FC2A4732D0DA443448F0CD2 /* RCTRawTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3446B972FCE698B5C8156CF350CB8564 /* RNCameraManager.m in Sources */ = {isa = PBXBuildFile; fileRef = D9876019DE00C65D6005009D52ADF9A4 /* RNCameraManager.m */; }; - 34579BD558D89809079F9C699C4BA38A /* ModuleRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 9BC84F9E2485D28FF96252BE70F9BEBB /* ModuleRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 347104BE6C82D3EFC5A0DBE92C095B83 /* RCTModalManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 030AC7098EEDA455B2796CE81C14860B /* RCTModalManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 34CB32C527933C4A7C572D2C060C7A4B /* RCTBaseTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 3458FEF3282F71C742DBFED0F4ACE5F2 /* RCTBaseTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2EB39B5FC0C0735E897588DA40917AE2 /* RCTManagedPointer.h in Headers */ = {isa = PBXBuildFile; fileRef = BD8B53154FDEBA03EAD83249F3345F33 /* RCTManagedPointer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2ED7D798E2E1DBB942012B867BF1089D /* RCTVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = CB3A8B1A476AA63BE9ABEFFBBB1526EB /* RCTVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2EDEED7EE4A297A8F6B6C3AC18A0C2CD /* RCTInspectorPackagerConnection.m in Sources */ = {isa = PBXBuildFile; fileRef = C288701615BD9616F86E3D1CEA6E37E4 /* RCTInspectorPackagerConnection.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 2EF4F8FFFCBBD5E86CD281FAB1A5A6D3 /* RCTRawTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E591863137F4BEADD8AB40F82D9307C /* RCTRawTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2F37E13839018122C7584B33BD63610D /* react-native-video-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 90C20F1B21CC2A61E46C05C4A6083FB0 /* react-native-video-dummy.m */; }; + 2F4D3CB5530FEDC8D599D0FC2A883DF8 /* EXAppLoaderProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = DBF935A9C746B90D47934560E88C6B15 /* EXAppLoaderProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2F78EECB78E88A85A7E5CBDC21CFC3E7 /* RCTTextAttributes.m in Sources */ = {isa = PBXBuildFile; fileRef = 15AC984FAE1A8689EAB660B1CE59A2F8 /* RCTTextAttributes.m */; }; + 2FA34ACDB9B71BEFCD11132AB76D14FD /* RCTBorderDrawing.m in Sources */ = {isa = PBXBuildFile; fileRef = 563B48D3510EC86E434A7C80C323F125 /* RCTBorderDrawing.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 3049352686EA4CB5C9CA6A04B0BB179B /* NativeToJsBridge.h in Headers */ = {isa = PBXBuildFile; fileRef = 1629222CF7B604F84D42B3FF4EBFB11E /* NativeToJsBridge.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 304B429DFD4E1375B32865983941104C /* jsilib-windows.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2F3C723996D79CA7E88673C4730F5767 /* jsilib-windows.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 304FD67FAFB0598D3603A2463AF310D5 /* RCTClipboard.h in Headers */ = {isa = PBXBuildFile; fileRef = C2429A48312D5F790F6F6838E533BE67 /* RCTClipboard.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 307F3607934710DF997A7298180F7E98 /* RCTImageStoreManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 8A4094EC4400B59D0F17BA3204D5CD82 /* RCTImageStoreManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 3094487331FE01E458952A37E6B0C477 /* RCTDevSettings.mm in Sources */ = {isa = PBXBuildFile; fileRef = E3A9504296422B05F5C8C2A629C662CA /* RCTDevSettings.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 3117D5AFA4E546F9B2CEA3EB35965A82 /* REACondNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 7DDBB44BE3F7F544BE51C71BAE66D2F4 /* REACondNode.m */; }; + 311FE5768BBED041DD46126C90D9DB24 /* RCTViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A486D19624F6F6D828397E30B7191E0 /* RCTViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 314D1FDB33D6F691AB0DA1E95F15A43D /* RCTImageSource.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D86ABA8FF75F08BCE5EF41DEF3E0F3D /* RCTImageSource.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 3153270D56081EBE819ACB643EE9C11A /* RCTImageViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2D69A82D6BAD420D193400E5F728D03B /* RCTImageViewManager.m */; }; + 316D7828D889CC69A90CBDA60B6A6FCC /* RCTTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 24822E4AA3851B16F74DA333465018EC /* RCTTextShadowView.m */; }; + 31DD66327BF3F6A9BD5B74BB4AA7F421 /* jsi.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C58940A20D11E28D0DB953B6DA98167F /* jsi.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 31E0BC7EDF993D50D6265A19DEC22038 /* SystraceSection.h in Headers */ = {isa = PBXBuildFile; fileRef = 2CD3258A682E289E456C618D9F94BEFE /* SystraceSection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 322CEC71B014E27C5619F17E45B386CC /* Yoga-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = ED288469A73A4C3B51263B123E2A1F59 /* Yoga-dummy.m */; }; + 3240E20C3A58ACFE15D21D48E1D40A6B /* RNForceTouchHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = A9E459B1F2C3D1FB528DC2BFDEE15371 /* RNForceTouchHandler.m */; }; + 32A3776575E03F9234B4E616AB33A4EC /* RCTProfileTrampoline-x86_64.S in Sources */ = {isa = PBXBuildFile; fileRef = D10B05BB82C946964D0F04FBFFA36753 /* RCTProfileTrampoline-x86_64.S */; }; + 32A8B3DBF28CDF6F728C30B34AC785A5 /* UMDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = 4BB7AD8E999355C4558585C6BBBC6CDA /* UMDefines.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 33457000C73C1BA5BC2352B54AB16160 /* LongLivedObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 079FD49760AA479E5EB24BE063924692 /* LongLivedObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 334A7F296D9F8BC9EC98277B8252734B /* NativeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = D4AEB0A467C3C1ED53915E9A231DAD15 /* NativeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 339444E0B842A109E18599C8B7F3A58D /* SharedProxyCxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 638A5A5682986B44675B34694FFEFCF1 /* SharedProxyCxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 33C8E8AC8A402274528F5C0C3A1DBD4B /* RCTLinkingManager.m in Sources */ = {isa = PBXBuildFile; fileRef = A1F2EC047E594CFA4D0885FFA0C78CA8 /* RCTLinkingManager.m */; }; + 34443B0A5787AA7AEB5C488DDDB611D8 /* RCTRawTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E591863137F4BEADD8AB40F82D9307C /* RCTRawTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3446B972FCE698B5C8156CF350CB8564 /* RNCameraManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 6819262F3EDC6586E978A040CEEA6A82 /* RNCameraManager.m */; }; + 34579BD558D89809079F9C699C4BA38A /* ModuleRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 729F76FFFDDAC527BA9FFD106513FE58 /* ModuleRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 347104BE6C82D3EFC5A0DBE92C095B83 /* RCTModalManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F0557606F9683623829FDEF172C330F3 /* RCTModalManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 34CB32C527933C4A7C572D2C060C7A4B /* RCTBaseTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D78EB8750DC2045728DB7B116D2D4DA /* RCTBaseTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 34DAA22C0906F7C5E235F9D82FC641C0 /* json.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A9A121EB668732FBAC70C8E5DD643D6F /* json.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 350C3BD4C36E1CD93DD61893D6032889 /* UMSingletonModule.m in Sources */ = {isa = PBXBuildFile; fileRef = AEB3A2D91D0935A8347BE0B1E2BE3DAC /* UMSingletonModule.m */; }; - 35832F60A513B34B1EEA6BDD6419FE8C /* RCTVideoPlayerViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 709737A3BBDB965C69B4E9D2FD0AC0BD /* RCTVideoPlayerViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 360D9D73B0CEA34FBEE93C05BB32A4EE /* react-native-ffmpeg-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E4E351DB9E25F72FD98E9EBFCAA204CF /* react-native-ffmpeg-dummy.m */; }; - 366D40DB9F9B6E7B48E91F6567BB4BCA /* RCTSRWebSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = D9B3CBF10926AA720F2C810F30EF5926 /* RCTSRWebSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 36AAFDC9E2976F52BDC5977045032AAD /* RCTSRWebSocket.m in Sources */ = {isa = PBXBuildFile; fileRef = 9815E74DB5B104451F86AB1FD50E90F3 /* RCTSRWebSocket.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 371F9F1DEEE1613A4038E3B553683F13 /* RCTSafeAreaViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = FFA93701CE5F3369A34C81C72F4CBA36 /* RCTSafeAreaViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 37FCEB31D086A0F531245307B9F7C801 /* EXFileSystem.m in Sources */ = {isa = PBXBuildFile; fileRef = 9FA8077DD4C86BED2C7A26BA3EF9ABFD /* EXFileSystem.m */; }; - 382339DA4E05416ECF3F1A7D3D24675E /* RCTCxxBridgeDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = B8462D1C1CD72600D02606E0D5D32E09 /* RCTCxxBridgeDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3825F7BBADE0E2636469ABA15B1C2FE3 /* RCTTurboModuleManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = B9B0E1C7DC0E662857F29B87E8B0DC5D /* RCTTurboModuleManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 383323BBF4B1C417C1F6EFF978354978 /* React-Core-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 69DA112128396E4CFD94895F7B3546BD /* React-Core-dummy.m */; }; - 38AC1424380091E7EB1B52A694CE77B5 /* RCTKeyCommands.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F35CF383459906ECCADF6DD834BEA8C /* RCTKeyCommands.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 38F35E24D856E9519A212722C0D13E59 /* RNCAsyncStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = 6A1DFB3FA7027F6A8EBEED6CA09D3FC2 /* RNCAsyncStorage.m */; }; - 391D2D9C576DB19A89008E4F6469F288 /* UMExportedModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 96E0AA996B6A57048F0B8B94A192D1E7 /* UMExportedModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3921EE48D3C97BC34ECF1E1E22404F16 /* RCTSpringAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = C614ED504029D6545470FC7E75FA6BB1 /* RCTSpringAnimation.m */; }; - 3953D9D084CD4950EA2C3463976AD853 /* UMUtilities.m in Sources */ = {isa = PBXBuildFile; fileRef = A6A6BD2D3FCC84D3D5D6EB98791D798A /* UMUtilities.m */; }; - 3972A3545FFBED277E46078E80A8762C /* UMErrorCodes.h in Headers */ = {isa = PBXBuildFile; fileRef = 0160572B2FEA8F16889B3F54C43DFAE7 /* UMErrorCodes.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 398B07F0E0AC4AA8EC4AF1C63DCE728C /* RAMBundleRegistry.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3E690A2B2B992AC33537A3454B34180B /* RAMBundleRegistry.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 3A45D99D3CA3287DD963E70D03826FAA /* RCTAdditionAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 2DD37BA7298D9D81210B0C6245E5F2FE /* RCTAdditionAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3A588C35CF59D1DA0D42450E2D7D237C /* EXConstantsService.m in Sources */ = {isa = PBXBuildFile; fileRef = 924D179DFC2AC724B34A1D3874F22BCF /* EXConstantsService.m */; }; - 3A5E56D08FE5FC0E93DF681DDE97D308 /* Bitfield.h in Headers */ = {isa = PBXBuildFile; fileRef = 61E644FD605EF3FD766BF8D65811E27E /* Bitfield.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3A66347FEE7E2D6587ADAEFCEE91FA67 /* RCTInputAccessoryViewContent.h in Headers */ = {isa = PBXBuildFile; fileRef = 78B53CFA5EA1A3CA27ECB0DEE4F1E7DD /* RCTInputAccessoryViewContent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3A6BF122355C77A95EC23CFF4F23DC18 /* RCTBaseTextInputShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 88BC3D01E8231AA2265D77B412BA0B63 /* RCTBaseTextInputShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 350C3BD4C36E1CD93DD61893D6032889 /* UMSingletonModule.m in Sources */ = {isa = PBXBuildFile; fileRef = E624689E28820604BD9BDEF5DEE14D55 /* UMSingletonModule.m */; }; + 35832F60A513B34B1EEA6BDD6419FE8C /* RCTVideoPlayerViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D51CE9D12CADF783BEAC9466743BB97 /* RCTVideoPlayerViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 360D9D73B0CEA34FBEE93C05BB32A4EE /* react-native-ffmpeg-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1C940033FA863B686F0E668A17956B2B /* react-native-ffmpeg-dummy.m */; }; + 366D40DB9F9B6E7B48E91F6567BB4BCA /* RCTSRWebSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 835ED31D2BF918E4758940C6B7B9B3DF /* RCTSRWebSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 36AAFDC9E2976F52BDC5977045032AAD /* RCTSRWebSocket.m in Sources */ = {isa = PBXBuildFile; fileRef = 9EF044147073AA8C6CA7FDE770DC2585 /* RCTSRWebSocket.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 371F9F1DEEE1613A4038E3B553683F13 /* RCTSafeAreaViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 7ED0A2D05733885E8FB5663A799E3DF3 /* RCTSafeAreaViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 37FCEB31D086A0F531245307B9F7C801 /* EXFileSystem.m in Sources */ = {isa = PBXBuildFile; fileRef = 6665CCCE6BACFFA2D038426708CBD502 /* EXFileSystem.m */; }; + 382339DA4E05416ECF3F1A7D3D24675E /* RCTCxxBridgeDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 6578D5B4EA7164BD3131E013B04300D5 /* RCTCxxBridgeDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3825F7BBADE0E2636469ABA15B1C2FE3 /* RCTTurboModuleManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = EACFCB010709A5A1F4E06920F7B4CF51 /* RCTTurboModuleManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 383323BBF4B1C417C1F6EFF978354978 /* React-Core-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 454D75458945A70E8E6448B729A6F59C /* React-Core-dummy.m */; }; + 38AC1424380091E7EB1B52A694CE77B5 /* RCTKeyCommands.h in Headers */ = {isa = PBXBuildFile; fileRef = 5F37232C31097EE2669F71244B3EF2E3 /* RCTKeyCommands.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 38F35E24D856E9519A212722C0D13E59 /* RNCAsyncStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = BA8405276B05AE7F12428C8E0E3227DD /* RNCAsyncStorage.m */; }; + 391D2D9C576DB19A89008E4F6469F288 /* UMExportedModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 01E51322FC93C61555207D23CFD95FB8 /* UMExportedModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3921EE48D3C97BC34ECF1E1E22404F16 /* RCTSpringAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = B8AD045B2BA52901424575F3317E5E6E /* RCTSpringAnimation.m */; }; + 3953D9D084CD4950EA2C3463976AD853 /* UMUtilities.m in Sources */ = {isa = PBXBuildFile; fileRef = 3AC3509DE20D897CCA963863CD9EF25D /* UMUtilities.m */; }; + 3972A3545FFBED277E46078E80A8762C /* UMErrorCodes.h in Headers */ = {isa = PBXBuildFile; fileRef = 00A3953EC22CD23C9FAFE370DF6C1FD6 /* UMErrorCodes.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 398B07F0E0AC4AA8EC4AF1C63DCE728C /* RAMBundleRegistry.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3AD5513AD0BAB2DAE104CC750CA20421 /* RAMBundleRegistry.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 3A45D99D3CA3287DD963E70D03826FAA /* RCTAdditionAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 834BE59D96D7B6E2CE7F3CFFE0D56643 /* RCTAdditionAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3A588C35CF59D1DA0D42450E2D7D237C /* EXConstantsService.m in Sources */ = {isa = PBXBuildFile; fileRef = B519FEA9D00472E76869F6690BD88A9A /* EXConstantsService.m */; }; + 3A5E56D08FE5FC0E93DF681DDE97D308 /* Bitfield.h in Headers */ = {isa = PBXBuildFile; fileRef = A84A06C4C7EB7C03F6BD3C2B557B1E0B /* Bitfield.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3A66347FEE7E2D6587ADAEFCEE91FA67 /* RCTInputAccessoryViewContent.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B5EB1EE0ED9E0A03E950460F367B5F9 /* RCTInputAccessoryViewContent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3A6BF122355C77A95EC23CFF4F23DC18 /* RCTBaseTextInputShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 00C4EF272C2B9F0368BDA8E476935BA6 /* RCTBaseTextInputShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3AA77BD1F4C8076B6E08D3259BD84FA4 /* SpookyHashV2.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C37C55B76555AA3133FF54342BC25672 /* SpookyHashV2.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 3AD470F0AAB73AEA193154970932A60D /* JSCRuntime.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A1A628292518E6EC2B90111C99F7B3ED /* JSCRuntime.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 3BD28F2A0144E1D6C83EA763376558D2 /* RCTImageURLLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 4CDD436380B67DE886A42E36FC09C0CB /* RCTImageURLLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3C766293FB7619D510FF59F15B150FAD /* RNPinchHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 47EF5D06576F6A10F1CDB49677C896BF /* RNPinchHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3CE0879B4E39D43A392B88B1FD8BF154 /* UMReactLogHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = EC85A22E8843911FD8B38367B9693521 /* UMReactLogHandler.m */; }; - 3D62B6B0650C43E889B249FA6981903E /* REAModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 6157E15334073FF8C0F354230352B5C3 /* REAModule.m */; }; - 3DAC7E4C8BEF1A2E7B73B776E650D33B /* RCTAnimationUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 4D7EA6B6BBD870BEE8615A8EF1D16C7A /* RCTAnimationUtils.m */; }; - 3E31268BDE9BD0A33499E9C708386799 /* RCTSwitchManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C0196A6952595558D07C7E5C0367AB9 /* RCTSwitchManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 3E535024A24E899E7A968B76A1E75D4A /* RCTAsyncLocalStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = FEB36A24BB4A9233E415AA01B4DD7225 /* RCTAsyncLocalStorage.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 3E9E15FBABC4B919091A7C558A6C303F /* RCTSinglelineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = C6EEA9C4D84D39FD8F4C1008EA25B0C9 /* RCTSinglelineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3ED49C84C1C1A124F30F61E18033F6E1 /* REATransformNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 2BE5CA94122FEC590AA36AD6B156752C /* REATransformNode.m */; }; - 3EF2B099CB26EF9B46566BBF46395276 /* RCTSurfaceStage.m in Sources */ = {isa = PBXBuildFile; fileRef = 507D222F2ECE21A357B5E0561B7E7298 /* RCTSurfaceStage.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 3F0FFF242144350C7E3D639B6C566F8B /* RCTReconnectingWebSocket.m in Sources */ = {isa = PBXBuildFile; fileRef = CAADEFC4801553E7CD3D6FC46712BE28 /* RCTReconnectingWebSocket.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 3AD470F0AAB73AEA193154970932A60D /* JSCRuntime.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CDF26F1F867AD720B5AEE55C068A61CB /* JSCRuntime.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 3BD28F2A0144E1D6C83EA763376558D2 /* RCTImageURLLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C21BD99C4DDA6830D9C6931F9E92052 /* RCTImageURLLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3C766293FB7619D510FF59F15B150FAD /* RNPinchHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E37AD8BAF4166F4B7B1CAA49FB9502F /* RNPinchHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3CE0879B4E39D43A392B88B1FD8BF154 /* UMReactLogHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = E0F85B9B4A6FA2DC7225B842090C906A /* UMReactLogHandler.m */; }; + 3D62B6B0650C43E889B249FA6981903E /* REAModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 526A3BD35B28AF2B50310FE70C4D7174 /* REAModule.m */; }; + 3DAC7E4C8BEF1A2E7B73B776E650D33B /* RCTAnimationUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 6589BB751548BF57A7C63F3414F07913 /* RCTAnimationUtils.m */; }; + 3E31268BDE9BD0A33499E9C708386799 /* RCTSwitchManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 3B16EDF670400F5B8FCF0364BB88E253 /* RCTSwitchManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 3E535024A24E899E7A968B76A1E75D4A /* RCTAsyncLocalStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = 5478D97F209106F8F633F2CA56CFF9B9 /* RCTAsyncLocalStorage.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 3E9E15FBABC4B919091A7C558A6C303F /* RCTSinglelineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 839C0A226E98B630DA630EFF7EC45481 /* RCTSinglelineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3ED49C84C1C1A124F30F61E18033F6E1 /* REATransformNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 46627E09F9AA590A8180C0CA0F42D20F /* REATransformNode.m */; }; + 3EF2B099CB26EF9B46566BBF46395276 /* RCTSurfaceStage.m in Sources */ = {isa = PBXBuildFile; fileRef = BCD7AC01B5770CD8F8939E574EF1746B /* RCTSurfaceStage.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 3F0FFF242144350C7E3D639B6C566F8B /* RCTReconnectingWebSocket.m in Sources */ = {isa = PBXBuildFile; fileRef = CE90EDDF5487C91004BC34F20671330B /* RCTReconnectingWebSocket.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 3FAA78E7F45F7BAA1325594718AAA891 /* double-conversion.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AC05645A782831DC2E7D43541532A8E /* double-conversion.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 40006099228CED1BC3331213770661D5 /* RCTPickerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 0BCD1FDFCD20065B7B8F128C09EC0054 /* RCTPickerManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 4020DCFECC7091CE67C22E0BE50173D3 /* RCTJSStackFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = 9034EBEDF2F50BF023AE210BA0BCAF14 /* RCTJSStackFrame.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 40D4BFB8EE204CE390964FB8DE92C636 /* NativeToJsBridge.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 177CB1DA91FB9A88DF88C2265073F5FA /* NativeToJsBridge.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 41131751C2A30224DA39830C7FABDC37 /* JSCallInvoker.h in Headers */ = {isa = PBXBuildFile; fileRef = 978F4FBE5906442AD10F3FD2B9A50644 /* JSCallInvoker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 40006099228CED1BC3331213770661D5 /* RCTPickerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 8D8E72A8E70A35BCC1D4381FFE8F5DFA /* RCTPickerManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 4020DCFECC7091CE67C22E0BE50173D3 /* RCTJSStackFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = BD4945BB6ADB88C1A20F380D4B42C083 /* RCTJSStackFrame.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 40D4BFB8EE204CE390964FB8DE92C636 /* NativeToJsBridge.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F2BE03EB919897595FB675F67319DC79 /* NativeToJsBridge.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 41131751C2A30224DA39830C7FABDC37 /* JSCallInvoker.h in Headers */ = {isa = PBXBuildFile; fileRef = 990878471A8D3809942AE1B5E4283D67 /* JSCallInvoker.h */; settings = {ATTRIBUTES = (Project, ); }; }; 412512DFE06BF80C29382028C8AD6410 /* bignum.h in Headers */ = {isa = PBXBuildFile; fileRef = B68CD25EA6675AEEFDEE392BC8C32F0D /* bignum.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 417C1F0F90CD0DF24740636DDA0E766F /* FBReactNativeSpec-generated.mm in Sources */ = {isa = PBXBuildFile; fileRef = 378C2F2736E8CDA084E16B24EBF7126D /* FBReactNativeSpec-generated.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 41A875AF9B80762A227B0C9FCDADC17B /* EXConstants-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 242FEF393A192BE57EEA12103EC3984B /* EXConstants-dummy.m */; }; - 4206DCBFDF14C7280463B63479B54BD2 /* RCTShadowView+Layout.m in Sources */ = {isa = PBXBuildFile; fileRef = 809CFD57BA47FE8D8343F7D2E45C81C4 /* RCTShadowView+Layout.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 4256BCE74B770988782EE062ADD77091 /* RCTFileRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = E6061CE54DEF89321D15AD404A9F4808 /* RCTFileRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4269D18BC545DCB1EAD29021A83C6507 /* RCTUITextField.h in Headers */ = {isa = PBXBuildFile; fileRef = 3414968FA24E930067023BA989525279 /* RCTUITextField.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 42A905C4C966AFA69E4A7F1C6531F06D /* RCTSurfaceSizeMeasureMode.h in Headers */ = {isa = PBXBuildFile; fileRef = 477F7AF76908C4DF595ECC0B23DA7FBC /* RCTSurfaceSizeMeasureMode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 42FEF202765D890326F6A6FBECEBA4EF /* RCTRootViewInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = F6AEF0EA1FE35A2768BF4F73E009880C /* RCTRootViewInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 430E21DB1E40C00BBCD1A57AD6A66D7E /* RCTTurboModuleManager.h in Headers */ = {isa = PBXBuildFile; fileRef = D0C065E00A5A412D42AF24EFEAD4DFC4 /* RCTTurboModuleManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 432416CCB63DC7456440129E2B240E24 /* EXUserNotificationPermissionRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = C03CA2C4613272A5A860B5FD0059C75D /* EXUserNotificationPermissionRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 432BBC1656B42626B53AFF647C5CCA10 /* RCTFrameUpdate.m in Sources */ = {isa = PBXBuildFile; fileRef = F4CEF6DA90851B7C03A5C8E783E6FF6B /* RCTFrameUpdate.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 4394779C86EFD6AA2557B2040D5CB9C3 /* YGEnums.h in Headers */ = {isa = PBXBuildFile; fileRef = 83CE7F25AB35ED044098591D03CFFBDE /* YGEnums.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 43A1B1947667174113D088DB219C08D0 /* RCTConvert+Text.m in Sources */ = {isa = PBXBuildFile; fileRef = DCCB36545D72A35F14367E6D18E57774 /* RCTConvert+Text.m */; }; - 43DBE03CC6CFAD9AAE2630380654F858 /* RCTBaseTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B914367C1F6C559CBF7A18167666C35 /* RCTBaseTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 440C7B1EDCD1A89674D97FEC95DC45E5 /* React-cxxreact-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7DAD2876527B3F0CB6B9F0A217434BFB /* React-cxxreact-dummy.m */; }; + 417C1F0F90CD0DF24740636DDA0E766F /* FBReactNativeSpec-generated.mm in Sources */ = {isa = PBXBuildFile; fileRef = C6FD41DBD5DBDC213AEFBBF88D7E7D95 /* FBReactNativeSpec-generated.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 41A875AF9B80762A227B0C9FCDADC17B /* EXConstants-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3376256E25F4B9D09295A2D94200BA10 /* EXConstants-dummy.m */; }; + 4206DCBFDF14C7280463B63479B54BD2 /* RCTShadowView+Layout.m in Sources */ = {isa = PBXBuildFile; fileRef = 24403DEBAE9BE1EAE898F16E86C7ED61 /* RCTShadowView+Layout.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 4256BCE74B770988782EE062ADD77091 /* RCTFileRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 8CC553E096EB8CF76BECCA2887C784CF /* RCTFileRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4269D18BC545DCB1EAD29021A83C6507 /* RCTUITextField.h in Headers */ = {isa = PBXBuildFile; fileRef = F6A5A8BD0F9EB01D3547E58B7CC26285 /* RCTUITextField.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 42A905C4C966AFA69E4A7F1C6531F06D /* RCTSurfaceSizeMeasureMode.h in Headers */ = {isa = PBXBuildFile; fileRef = A9E5D254BF0FE173F00BF431FCEEB634 /* RCTSurfaceSizeMeasureMode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 42FEF202765D890326F6A6FBECEBA4EF /* RCTRootViewInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 7DF95894A7BE3E17065E4EF43DF6A621 /* RCTRootViewInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 430E21DB1E40C00BBCD1A57AD6A66D7E /* RCTTurboModuleManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E0A6CD2EE170BB3E257ACCC28632225E /* RCTTurboModuleManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 432416CCB63DC7456440129E2B240E24 /* EXUserNotificationPermissionRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 1EDA6D24E2D61D3DD4B8FF171109BCF0 /* EXUserNotificationPermissionRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 432BBC1656B42626B53AFF647C5CCA10 /* RCTFrameUpdate.m in Sources */ = {isa = PBXBuildFile; fileRef = 390E7DD87AE82F1F5332D0C3189A27C5 /* RCTFrameUpdate.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 4394779C86EFD6AA2557B2040D5CB9C3 /* YGEnums.h in Headers */ = {isa = PBXBuildFile; fileRef = 5216AEF7B61BF0F6BB185B829DFB4ABF /* YGEnums.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 43A1B1947667174113D088DB219C08D0 /* RCTConvert+Text.m in Sources */ = {isa = PBXBuildFile; fileRef = 63242B7128911462580F1F55AA05D56A /* RCTConvert+Text.m */; }; + 43DBE03CC6CFAD9AAE2630380654F858 /* RCTBaseTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 9CE079DFDA6F909F40D10CDFFBFFE6B3 /* RCTBaseTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 440C7B1EDCD1A89674D97FEC95DC45E5 /* React-cxxreact-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 2E8FD2842D86EFF1437926BAB28D89CB /* React-cxxreact-dummy.m */; }; 4435D7AA2CC2A78C02637BD68B3495F7 /* strtod.cc in Sources */ = {isa = PBXBuildFile; fileRef = 74EBE97E312E273EA688E3718687C983 /* strtod.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; 443A50BAD6B505AADEF8DA43FF83B11E /* Unicode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 002FFF2B2DF59AC3B80A98BEADA688C4 /* Unicode.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 44514CF92DACE399347F1E1026ECA0B8 /* RNFFmpegModule.m in Sources */ = {isa = PBXBuildFile; fileRef = C2B59BDFA1C0A9E27DAC5984A22EFC01 /* RNFFmpegModule.m */; }; - 447005F902B950F31D9B84B31863C6C2 /* RNGestureHandlerState.h in Headers */ = {isa = PBXBuildFile; fileRef = A563DA35E862CC7B527D2A71FF53B49A /* RNGestureHandlerState.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 44D47F1B80F64630143457D5E61D30D9 /* EXAppLoaderProvider-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = CEB09C3079331BF2C19AFE2D6630AEA2 /* EXAppLoaderProvider-dummy.m */; }; - 44FDD8ED14E309934B6BE2CF860ED0DC /* event.h in Headers */ = {isa = PBXBuildFile; fileRef = 9709F639037310D052C5DE3062D3551D /* event.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46D18929E6825E93B7F249489AE6B71F /* decorator.h in Headers */ = {isa = PBXBuildFile; fileRef = 06ADA87EA5ABACDB06F06D0F3B11BBD3 /* decorator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46D278F9C5E83CF09BBAE819D05041BE /* RCTSliderManager.m in Sources */ = {isa = PBXBuildFile; fileRef = EF1695201EBD1D209D1D71B2C4072685 /* RCTSliderManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 476565767E58D0A673343909C819E64E /* RCTTouchEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = DCE3967CFAD8DD2173098838064D3A4F /* RCTTouchEvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 47A451CA6CE5E4884B27F3D9535175C8 /* React-RCTText-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 816263B06970499608C4612EEB4C5F28 /* React-RCTText-dummy.m */; }; - 48A65F090855476E8ED575F6389A7272 /* REAValueNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 494F2DD41DDE82A80F9D18B6D0E95496 /* REAValueNode.m */; }; - 48CDCA2B00543EDBEF72BF388B9277AF /* RNConvertPhAsset.m in Sources */ = {isa = PBXBuildFile; fileRef = 8AB8E8181375E083D3E53DC39A76A9BF /* RNConvertPhAsset.m */; }; - 4908BB8C62A591EC9D389D8A9772DDD3 /* JSBundleType.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7FBAF565A0DD320505C699A93708975D /* JSBundleType.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 496B6621ED29DCBD6F65DBB09A5A9FF8 /* RCTSettingsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 311ECD9C3F2700BAD4C3AE771C402EEF /* RCTSettingsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 497E3CB7A90DBE382E5BC10C8FDD115A /* JSIExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6FD7C7827EF8BEA71601A534A9BAD84D /* JSIExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 4A66EC92A6F217971BC5F3E575F1997B /* RCTNetInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = FAC3FCEE9F3F3D11970C2E58BC14D746 /* RCTNetInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4B1091BECD4A0FD930B42261D4A716A6 /* REAParamNode.m in Sources */ = {isa = PBXBuildFile; fileRef = DD5ED462B9C07D7B6D88AFCAC34901F6 /* REAParamNode.m */; }; - 4B3488F749EED7EF916BEA16B6B9A5A5 /* RCTPointerEvents.h in Headers */ = {isa = PBXBuildFile; fileRef = 665D261D84D873FCAA80AB8FD8FCD225 /* RCTPointerEvents.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4B68C390C355778468912000A6800D26 /* JSModulesUnbundle.h in Headers */ = {isa = PBXBuildFile; fileRef = 3EF34854820DDCA66A3ED5BA03F32146 /* JSModulesUnbundle.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4B94BFBE54371FAD7590B750188F4FA9 /* UMModuleRegistryAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 76FAD1045632FE6FDE34B2FBFB68EC7A /* UMModuleRegistryAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4BBB5BF64CA25CB4DEBB08CB97E59C0F /* React-RCTAnimation-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 88A3162C7148A0A251BABC9E47F65EA2 /* React-RCTAnimation-dummy.m */; }; - 4BDDEE1B549BB9E67307A6732C832C21 /* RCTSafeAreaViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 17DB9377CDF20217573960C23EF8180A /* RCTSafeAreaViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 4BEB85A727365DD73CB37EBE74B7E0FC /* RCTRawTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = A20DC3CF392D7C830A7E7E1334289C78 /* RCTRawTextViewManager.m */; }; - 4C705E6E70926A93CEE39DD52806DDEC /* RCTImageCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 92FFA6AF3A3EA04478E15D37648D0733 /* RCTImageCache.m */; }; + 44514CF92DACE399347F1E1026ECA0B8 /* RNFFmpegModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C091676A4C95E0E5C12803E6A71AC9A /* RNFFmpegModule.m */; }; + 447005F902B950F31D9B84B31863C6C2 /* RNGestureHandlerState.h in Headers */ = {isa = PBXBuildFile; fileRef = 8FB7033998222FC0C9BAD8D53C89ACEA /* RNGestureHandlerState.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 44D47F1B80F64630143457D5E61D30D9 /* EXAppLoaderProvider-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 57D8B1B4D0564D2F1A48039AC798F15A /* EXAppLoaderProvider-dummy.m */; }; + 44FDD8ED14E309934B6BE2CF860ED0DC /* event.h in Headers */ = {isa = PBXBuildFile; fileRef = F95A3EB29C5ADDCBDCC71BA3A487B9BE /* event.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46D18929E6825E93B7F249489AE6B71F /* decorator.h in Headers */ = {isa = PBXBuildFile; fileRef = C51EA29F2BE6826AE0F0B9982FE2CAD2 /* decorator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46D278F9C5E83CF09BBAE819D05041BE /* RCTSliderManager.m in Sources */ = {isa = PBXBuildFile; fileRef = EDF13E43E6D156C1CC76ED77201F8CD7 /* RCTSliderManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 476565767E58D0A673343909C819E64E /* RCTTouchEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 13DB4649A6514DE9AD5FCCE6BD1D26BF /* RCTTouchEvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 47A451CA6CE5E4884B27F3D9535175C8 /* React-RCTText-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = AE4980713AC7959A1F9231387F8E5C72 /* React-RCTText-dummy.m */; }; + 48A65F090855476E8ED575F6389A7272 /* REAValueNode.m in Sources */ = {isa = PBXBuildFile; fileRef = F96CAAA8A1F5E0DCBB2000FAD7F30A51 /* REAValueNode.m */; }; + 48CDCA2B00543EDBEF72BF388B9277AF /* RNConvertPhAsset.m in Sources */ = {isa = PBXBuildFile; fileRef = A213275041290A01068D83FD72A5FB1B /* RNConvertPhAsset.m */; }; + 4908BB8C62A591EC9D389D8A9772DDD3 /* JSBundleType.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E81241A8648AA0F2A93B6C9670383660 /* JSBundleType.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 496B6621ED29DCBD6F65DBB09A5A9FF8 /* RCTSettingsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 78E1CA0655721910630D3CE34D3A1981 /* RCTSettingsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 497E3CB7A90DBE382E5BC10C8FDD115A /* JSIExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 91A8DB37447C944B0600FF90E40FD844 /* JSIExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 4A66EC92A6F217971BC5F3E575F1997B /* RCTNetInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 61D6DCAAF572F0C6BF78F22FA818AC75 /* RCTNetInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4B1091BECD4A0FD930B42261D4A716A6 /* REAParamNode.m in Sources */ = {isa = PBXBuildFile; fileRef = ABC4DC8E4F8901337D8571776B64E9E8 /* REAParamNode.m */; }; + 4B3488F749EED7EF916BEA16B6B9A5A5 /* RCTPointerEvents.h in Headers */ = {isa = PBXBuildFile; fileRef = A2EB8E322708FCB4C38E823FD11F5614 /* RCTPointerEvents.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4B68C390C355778468912000A6800D26 /* JSModulesUnbundle.h in Headers */ = {isa = PBXBuildFile; fileRef = ACBF25313F605F6D762E1ED0B3890530 /* JSModulesUnbundle.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4B94BFBE54371FAD7590B750188F4FA9 /* UMModuleRegistryAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 6EE56DDBFB4CD859867D2709D361AF1B /* UMModuleRegistryAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4BBB5BF64CA25CB4DEBB08CB97E59C0F /* React-RCTAnimation-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 73CA6B04C1363A92610BEF9651646E9F /* React-RCTAnimation-dummy.m */; }; + 4BDDEE1B549BB9E67307A6732C832C21 /* RCTSafeAreaViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 755C3D6AEF5175F50DF002B88556C2E1 /* RCTSafeAreaViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 4BEB85A727365DD73CB37EBE74B7E0FC /* RCTRawTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D25016F1EE9D3358822EBC1F87C79FE /* RCTRawTextViewManager.m */; }; + 4C705E6E70926A93CEE39DD52806DDEC /* RCTImageCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 90CD281D75F95183F2ECB97AD522A510 /* RCTImageCache.m */; }; 4CB929E427FE18007FE5916C3564C473 /* bignum-dtoa.h in Headers */ = {isa = PBXBuildFile; fileRef = F4304FB1018BE9D713A23650851EEA44 /* bignum-dtoa.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4CC303549BB9AFD3C403F981F18F3384 /* RCTSurfacePresenterStub.h in Headers */ = {isa = PBXBuildFile; fileRef = F2DE4DC8A8B979E99E4251015F3A86E8 /* RCTSurfacePresenterStub.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4DC0D48E0F0A2BBDEB45790A8E8A0FC5 /* JSCExecutorFactory.mm in Sources */ = {isa = PBXBuildFile; fileRef = A5A0EED8886E145BC9154833E8680BB5 /* JSCExecutorFactory.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 4DC0EF99A792A98E615C756F7473E485 /* RCTNativeAnimatedModule.h in Headers */ = {isa = PBXBuildFile; fileRef = C07798D7CB54B93C55D5A3C3BCEFC2A1 /* RCTNativeAnimatedModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4DD02AB55D0A49B79CD0BE18139D7477 /* UMBridgeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B6F3D31671CE974E6BE5272D9D78A29 /* UMBridgeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4DD22FF26350F89CBFCDB2C113693015 /* RCTModuloAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = E8A4A2A712D9009E965904CE9B29FD9E /* RCTModuloAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4DD88B6EF04BCF202E55A0EB6D8EB486 /* RNForceTouchHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 4ACFB7EABBF11E1F344C33D1341576F5 /* RNForceTouchHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4DED53FF3E164ED3FEF93E8A476CACFD /* RCTImageBlurUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 0775FEB3DCA3B39EEC7DE72A7AFD6F41 /* RCTImageBlurUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4E64C2E688CF73314249C53EB84CD78E /* RCTDevMenu.m in Sources */ = {isa = PBXBuildFile; fileRef = E438E35DDA92E697B502E29EB0B53276 /* RCTDevMenu.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 4E8EA18EA26EBA67C4FC2E1E1691C5F7 /* RCTConvert+Transform.h in Headers */ = {isa = PBXBuildFile; fileRef = 11204EC325279A7F3C0A58207ECFF547 /* RCTConvert+Transform.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4CC303549BB9AFD3C403F981F18F3384 /* RCTSurfacePresenterStub.h in Headers */ = {isa = PBXBuildFile; fileRef = 1ADB9CC00C5DBBC7A6F0D43985AD1A3C /* RCTSurfacePresenterStub.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4DC0D48E0F0A2BBDEB45790A8E8A0FC5 /* JSCExecutorFactory.mm in Sources */ = {isa = PBXBuildFile; fileRef = C8E626DCA9F86152314A004F2943527B /* JSCExecutorFactory.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 4DC0EF99A792A98E615C756F7473E485 /* RCTNativeAnimatedModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 219916BBAB9C8B6CD7A2BD41DF4907EC /* RCTNativeAnimatedModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4DD02AB55D0A49B79CD0BE18139D7477 /* UMBridgeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 402CCD0B64F13BA80F93843DD81C3D76 /* UMBridgeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4DD22FF26350F89CBFCDB2C113693015 /* RCTModuloAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = DF46C56660BE67A13562A8CF18678961 /* RCTModuloAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4DD88B6EF04BCF202E55A0EB6D8EB486 /* RNForceTouchHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F2A5D2F87C892EEB2F3B4BB52892683 /* RNForceTouchHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4DED53FF3E164ED3FEF93E8A476CACFD /* RCTImageBlurUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 9537B61141201FB98D3F5062797E6E62 /* RCTImageBlurUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4E64C2E688CF73314249C53EB84CD78E /* RCTDevMenu.m in Sources */ = {isa = PBXBuildFile; fileRef = EAEC52651426996A8821AB191999813A /* RCTDevMenu.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 4E8EA18EA26EBA67C4FC2E1E1691C5F7 /* RCTConvert+Transform.h in Headers */ = {isa = PBXBuildFile; fileRef = CE5D70D3900397FF20C9F58C98880858 /* RCTConvert+Transform.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4EAC303956D8C220AD690CEAA3F90684 /* diy-fp.h in Headers */ = {isa = PBXBuildFile; fileRef = E8E318C26ABACB53229C2E7067177FBB /* diy-fp.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4F8AEA4610D89D6BD919BF14E00D7A1B /* RCTNativeAnimatedNodesManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 792A64225550DBD9E02E3C69E5976E6A /* RCTNativeAnimatedNodesManager.m */; }; + 4F8AEA4610D89D6BD919BF14E00D7A1B /* RCTNativeAnimatedNodesManager.m in Sources */ = {isa = PBXBuildFile; fileRef = EBB4DFBF2A1BB5427042FCF091E942A8 /* RCTNativeAnimatedNodesManager.m */; }; 4F9E9C6423C32717707754FE40930323 /* dynamic.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 25F7A98F264B4A86B093172062A63663 /* dynamic.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 4FBA4E83F3342F6F9279BF8C9316193A /* RCTInputAccessoryView.m in Sources */ = {isa = PBXBuildFile; fileRef = C9B798477E6CAB5E770F44D8DEA5B0E9 /* RCTInputAccessoryView.m */; }; - 4FCEC95A41A26EBB62C22D19D69B574E /* RCTUIImageViewAnimated.h in Headers */ = {isa = PBXBuildFile; fileRef = 6BEF6E00C2E1B9B96D0EEC6F7F189BE4 /* RCTUIImageViewAnimated.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4FDA0DB222196A13997B4607506E5B70 /* RCTDeviceInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 977C4EB52B058B8058311AE6B2549941 /* RCTDeviceInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4FED5EA3386624B7B68B0A4A39D4914B /* RNCSafeAreaView.m in Sources */ = {isa = PBXBuildFile; fileRef = FC86C9E51BB496CEE3F3A4474F7F7A96 /* RNCSafeAreaView.m */; }; - 504EA2D0E28C4EBE02810ECB7ED72EB6 /* RCTTextView.m in Sources */ = {isa = PBXBuildFile; fileRef = ADAABF21100F405B63720EFEEE6085EB /* RCTTextView.m */; }; - 510E0604B2FB2CCD917DA5EAC9EF1000 /* RNImageUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = A0F661B6218B48E760FC74E9A9EB7975 /* RNImageUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 512655BF3878547B9D80AA70927553DA /* RCTVirtualTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B5979E980C79FAEE2526F9EC8B06DE1 /* RCTVirtualTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 51ABDD79A1D86BF33F0D5A73F457853D /* UMPermissionsMethodsDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 8E9E129B09C666F1C243FDC8BDB08E4D /* UMPermissionsMethodsDelegate.m */; }; - 51AE0D5734F266EBF81CAA6499722FD4 /* RCTResizeMode.h in Headers */ = {isa = PBXBuildFile; fileRef = 89A5397EAE84935DF903D65372F6CCF6 /* RCTResizeMode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 535DACC7936138341FA544E17631DE61 /* RCTVideo.h in Headers */ = {isa = PBXBuildFile; fileRef = D7392CB5598B6DBA9B126FE1F171F212 /* RCTVideo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 53C95CB9BF21F51E83BEF6CAB1F581A3 /* RCTFPSGraph.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D62C174B80D005AA1E509EEE67F1E6C /* RCTFPSGraph.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5472D790D5CA80D8841FE82D9CC7E06E /* REATransitionValues.h in Headers */ = {isa = PBXBuildFile; fileRef = 5DC71E22B3960EDD2DFA62044E8E890F /* REATransitionValues.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 54CABAE8AE8D18D057F28DF3F46B373B /* RCTJavaScriptExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F68D1B71C821AFE3706612C0586D8CA /* RCTJavaScriptExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 54DC3F2B6818036E06CD8A58CC183B31 /* RCTStyleAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E8E517988831C1E77B714152D31D664 /* RCTStyleAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5565C0C115DFB14DC891EE27AD6E78B7 /* RCTNetInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = E66B47A92CF48EA1F906714D58D47002 /* RCTNetInfo.m */; }; - 557C67B026376AB2E51A67CA84039EB5 /* JSIndexedRAMBundle.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F625AB4CF2D1A6D2986B43D91D6A37B /* JSIndexedRAMBundle.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 55AE0EF82E1627EF0406E4A8674E1D05 /* RAMBundleRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 50C7DDA89DF7BD466FE4F82DF093EE78 /* RAMBundleRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 55B7CB112CABCD20BB52FA1F225BCE39 /* RCTConvert+REATransition.m in Sources */ = {isa = PBXBuildFile; fileRef = 0D5F2D927735D71E989418AAB473DCB5 /* RCTConvert+REATransition.m */; }; - 55E581F6D83902BCE791164032CD8FA9 /* RCTBridgeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = D42275B1E96E28AD3BB9684BC4D949E5 /* RCTBridgeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 55EEBDE59E0A883F0C07E36E0DACF077 /* MessageQueueThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 57B51377FC32462F9C02D181467F86B4 /* MessageQueueThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 55FDA4D8A9B683716B29854F7A63435C /* RCTDatePicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 75CB3B4CD6F9C5ED935E87DC0E8C82A6 /* RCTDatePicker.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 5603C322DB36DA799A47DB4A285BF27A /* YGEnums.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CECED4C02E449F82A9681FC9FE9E6E2F /* YGEnums.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - 573EADDF9F3A8ED455E7A408BB5598B4 /* RNFaceDetectorModuleMLKit.m in Sources */ = {isa = PBXBuildFile; fileRef = 58A94ABA7CAFC3EEDF01A1B0E8469126 /* RNFaceDetectorModuleMLKit.m */; }; - 5773EB2B62A725F578ED899345C8B197 /* instrumentation.h in Headers */ = {isa = PBXBuildFile; fileRef = 313949B62486167A8189206D0F6359E5 /* instrumentation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 57C316C8C1D30A80E5A09BE3C6B6DC7A /* EXFileSystem-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1D6A4F290DAAC3B71389B5BBE37416FB /* EXFileSystem-dummy.m */; }; - 57FFE2C716B336FF876F6C49240444A8 /* ModuleRegistry.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 066EAA6E1B5CE8DCCDED5B537456554F /* ModuleRegistry.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 582E7546B38319D0BA4252F9F346CF89 /* RCTConvert.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D81590F072913BF2407FCF813F9C9CF /* RCTConvert.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 593332624F9164F4F635B9DC2AE102DB /* RCTUIManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 8BA32AB2A9FEA8BBE1B13E7C8B6DDCEB /* RCTUIManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 59EB1A99722546E787C32C975E3D8346 /* RCTI18nManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 74A0E49000BA0FA51FE8CBB556D3C717 /* RCTI18nManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 59F4F1342FDFFF46569F6E4C12B4E65A /* RCTWebSocketExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = ED00E6F3581DB3DD3620294137A642C5 /* RCTWebSocketExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5A1A3FD1EA4F4C6ACE9702CACE171825 /* UMInternalModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 8144BD6ECFF6512D2F2FC48A80A72354 /* UMInternalModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5AA00AFDFC089350B3C375F5A0EFA1CB /* RCTInputAccessoryViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = FEFBBDC48A0FFE98A7C1C43A44DB40DD /* RCTInputAccessoryViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5B46DA1EA064568CA8212E42CBE2AE54 /* RCTBlobManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 30F0E81137D12F9BC819DB468A7B4A19 /* RCTBlobManager.mm */; }; - 5C25CAEFED4CDE2B4F90132A5122C44B /* RCTPerformanceLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 8746EC0AEB36A9BD3759A8A0CCB7E80E /* RCTPerformanceLogger.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 5C7E605B4C2C181856654DC846CBEB0D /* RCTMultipartDataTask.m in Sources */ = {isa = PBXBuildFile; fileRef = 2E24DF46D515469CF4167E4141DE6FF5 /* RCTMultipartDataTask.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 5D09253F8D99FC64B7C8FEACCE1AB4DD /* JSBigString.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A28481C9F1153DF8BB4C0AFE4323DF9 /* JSBigString.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5D33C608DD5ADB443C60BBCE274EB8D2 /* RNCMaskedViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 853F269CDA5EEB9639BDB783FCF8C573 /* RNCMaskedViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4FBA4E83F3342F6F9279BF8C9316193A /* RCTInputAccessoryView.m in Sources */ = {isa = PBXBuildFile; fileRef = FDDE43EE3AAB93D005C1C90DE287DFFF /* RCTInputAccessoryView.m */; }; + 4FCEC95A41A26EBB62C22D19D69B574E /* RCTUIImageViewAnimated.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E6B6CE0364C64CA0B2C1C95B93601D6 /* RCTUIImageViewAnimated.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4FDA0DB222196A13997B4607506E5B70 /* RCTDeviceInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = B2E8F68F68F88C8EA38AD07BF555AAD3 /* RCTDeviceInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4FED5EA3386624B7B68B0A4A39D4914B /* RNCSafeAreaView.m in Sources */ = {isa = PBXBuildFile; fileRef = 08470F3634AF01656F53F2449E1D156D /* RNCSafeAreaView.m */; }; + 504EA2D0E28C4EBE02810ECB7ED72EB6 /* RCTTextView.m in Sources */ = {isa = PBXBuildFile; fileRef = AA5FA871B169560692C6DDBD745A68FF /* RCTTextView.m */; }; + 510E0604B2FB2CCD917DA5EAC9EF1000 /* RNImageUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = D8A8E35D62A9DF2C04DCE751E82CC0EC /* RNImageUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 512655BF3878547B9D80AA70927553DA /* RCTVirtualTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 06CF59F69276C0F8EF15868EE9E75ADC /* RCTVirtualTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 51ABDD79A1D86BF33F0D5A73F457853D /* UMPermissionsMethodsDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 1EC8FE8B7E18485A3A5670F0DFAFA063 /* UMPermissionsMethodsDelegate.m */; }; + 51AE0D5734F266EBF81CAA6499722FD4 /* RCTResizeMode.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F6CBFC16CE78E4F9A85F244A6C27157 /* RCTResizeMode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 535DACC7936138341FA544E17631DE61 /* RCTVideo.h in Headers */ = {isa = PBXBuildFile; fileRef = 857D6A43C3D050FF37C22BC86E96A704 /* RCTVideo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 53C95CB9BF21F51E83BEF6CAB1F581A3 /* RCTFPSGraph.h in Headers */ = {isa = PBXBuildFile; fileRef = B989810CCBCDD1146AD9197863AE3044 /* RCTFPSGraph.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5472D790D5CA80D8841FE82D9CC7E06E /* REATransitionValues.h in Headers */ = {isa = PBXBuildFile; fileRef = CF8A46E2B75B0A071D7339DE5DC251BE /* REATransitionValues.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 54CABAE8AE8D18D057F28DF3F46B373B /* RCTJavaScriptExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E6761026A3E382EA0A30C8E0CE69498 /* RCTJavaScriptExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 54DC3F2B6818036E06CD8A58CC183B31 /* RCTStyleAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 4883BB8710E3633C6CF302F39B828E7E /* RCTStyleAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5565C0C115DFB14DC891EE27AD6E78B7 /* RCTNetInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 2A2B3A820963BA080674D8DE416D1964 /* RCTNetInfo.m */; }; + 557C67B026376AB2E51A67CA84039EB5 /* JSIndexedRAMBundle.h in Headers */ = {isa = PBXBuildFile; fileRef = 0AE44B5B8A6F35DEFF4BD820C66AFB9E /* JSIndexedRAMBundle.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 55AE0EF82E1627EF0406E4A8674E1D05 /* RAMBundleRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = C944F6F1BB9C5626CB270FBDC145EEFD /* RAMBundleRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 55B7CB112CABCD20BB52FA1F225BCE39 /* RCTConvert+REATransition.m in Sources */ = {isa = PBXBuildFile; fileRef = 4C8E172BCD8818FAF5F600F9A7CFA89E /* RCTConvert+REATransition.m */; }; + 55E581F6D83902BCE791164032CD8FA9 /* RCTBridgeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F2289CDDBF4A035D703667C15A58B58 /* RCTBridgeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 55EEBDE59E0A883F0C07E36E0DACF077 /* MessageQueueThread.h in Headers */ = {isa = PBXBuildFile; fileRef = AD96FD80389FAF24C192D44EEBF1CCA2 /* MessageQueueThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 55FDA4D8A9B683716B29854F7A63435C /* RCTDatePicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 6B00BAF098C7E38B8F28DD1B24F505BC /* RCTDatePicker.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 5603C322DB36DA799A47DB4A285BF27A /* YGEnums.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 23FB1B1C3F5AD794F5DC41A86A6A2B8A /* YGEnums.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 573EADDF9F3A8ED455E7A408BB5598B4 /* RNFaceDetectorModuleMLKit.m in Sources */ = {isa = PBXBuildFile; fileRef = B1E5C32BC3B85C240C9279005D2E2735 /* RNFaceDetectorModuleMLKit.m */; }; + 5773EB2B62A725F578ED899345C8B197 /* instrumentation.h in Headers */ = {isa = PBXBuildFile; fileRef = E6331049F4820A8AAF4FC77CBE3865F5 /* instrumentation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 57C316C8C1D30A80E5A09BE3C6B6DC7A /* EXFileSystem-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B428375BEA1E50DA29ECA38A9CB83665 /* EXFileSystem-dummy.m */; }; + 57FFE2C716B336FF876F6C49240444A8 /* ModuleRegistry.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 526975F9E0C566E7C4F3EC9178C1F6A0 /* ModuleRegistry.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 582E7546B38319D0BA4252F9F346CF89 /* RCTConvert.m in Sources */ = {isa = PBXBuildFile; fileRef = 922F7666A3DE6326A858B81AE3521EE4 /* RCTConvert.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 593332624F9164F4F635B9DC2AE102DB /* RCTUIManager.m in Sources */ = {isa = PBXBuildFile; fileRef = E286E3DCBC87769168F4B1E7CAEC34B5 /* RCTUIManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 59EB1A99722546E787C32C975E3D8346 /* RCTI18nManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 52E11FFEB95FB72B4452EE7C594201D1 /* RCTI18nManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 59F4F1342FDFFF46569F6E4C12B4E65A /* RCTWebSocketExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 11B1C6D7ACE3DBBDCD0AFCF7EB9F9DEF /* RCTWebSocketExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5A1A3FD1EA4F4C6ACE9702CACE171825 /* UMInternalModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D85E2EB9F93DDACFAF9BF1E27ECD9E5 /* UMInternalModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5AA00AFDFC089350B3C375F5A0EFA1CB /* RCTInputAccessoryViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 418CFEAD9181107E08B9D773FEB1D04E /* RCTInputAccessoryViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5B46DA1EA064568CA8212E42CBE2AE54 /* RCTBlobManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = E932AA6C7BA7B3A5E8029E28C16213B1 /* RCTBlobManager.mm */; }; + 5C25CAEFED4CDE2B4F90132A5122C44B /* RCTPerformanceLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 22F748F3D3462CAE6EDB5BEF0D9563CA /* RCTPerformanceLogger.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 5C7E605B4C2C181856654DC846CBEB0D /* RCTMultipartDataTask.m in Sources */ = {isa = PBXBuildFile; fileRef = 3582715A75B520A99F302474FE8F0F0C /* RCTMultipartDataTask.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 5D09253F8D99FC64B7C8FEACCE1AB4DD /* JSBigString.h in Headers */ = {isa = PBXBuildFile; fileRef = 15C8D1D4155359D2B4D6D6242B50C3DE /* JSBigString.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5D33C608DD5ADB443C60BBCE274EB8D2 /* RNCMaskedViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = C778977391C8B231B5667FA4155456CC /* RNCMaskedViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5D783A28D42B69ED3918F66F820C8701 /* double-conversion.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3DE2159BF129CBCF2141FC55147BA84E /* double-conversion.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - 5DBC9A0934F4262B853C66A9BA2A92FB /* RCTSubtractionAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = F2A394EBB3A21CE48439562716F4BC9B /* RCTSubtractionAnimatedNode.m */; }; - 5DBEE0F424A8B1B4BE4BC1DA645AF545 /* RCTSlider.m in Sources */ = {isa = PBXBuildFile; fileRef = 33F8F6C01B924822C83A3C45F8ACC798 /* RCTSlider.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 5E4EB4C1EF7092D0F5A318D85B004FB9 /* RCTUITextView.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E84E3040A6275CB88A0DF50AA52C5BF /* RCTUITextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5E5A68C8BCFE6CD15198C8BB751F058F /* RCTParserUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = CC9D21E55D9D61E113B00D7DE4570075 /* RCTParserUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5F121AAC26099BB274A6319E40123819 /* RCTRootShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 353EA34AEDF45E9214FE077716053F24 /* RCTRootShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5F20378F69B97565A24B7827D383380B /* RCTI18nUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = EBED3AA1567DC6864D4DEEFBAD906E78 /* RCTI18nUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5F23E8E57266DAC77BA53983F18B7DB2 /* REAParamNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 9EE18748CDAF6F8A53D944A9AB936579 /* REAParamNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5F3914305B352AA4A312EA53ACD0BA46 /* RNGestureHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = C61EA22DF20111263F22BFF1AC370C3B /* RNGestureHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5F3979C1A4B4A0BAA173A21F0192D66D /* RCTImageDataDecoder.h in Headers */ = {isa = PBXBuildFile; fileRef = EFF102B825C6DED566FED68AD6FE7754 /* RCTImageDataDecoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5F599481308B2A1BFC6D4344DF1431FD /* UMAppLifecycleListener.h in Headers */ = {isa = PBXBuildFile; fileRef = A16EE34C910DCBB40CB0DF0379A9B3D5 /* UMAppLifecycleListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5FA05CE61D75D84C7638DACCE3FA94E2 /* RCTSegmentedControlManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 353E92BFC01E4D0964B5941D92B26B01 /* RCTSegmentedControlManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5FCC1171603B7B3D797CECEF4E924A4A /* RCTRawTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = F7A16594BDBC43BEA097E10F33B2F14E /* RCTRawTextShadowView.m */; }; - 60127037832EA14C085838DCE9EC2FB3 /* YGLayout.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BAE68FB1457755DB7C3EE35937FCA664 /* YGLayout.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - 6042042D7FB9678AA30938168591A2E7 /* RCTBlobCollector.h in Headers */ = {isa = PBXBuildFile; fileRef = AABE711E721EF49CBF3D80CD20E84065 /* RCTBlobCollector.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6092F053319552DBAC04F9DE699956BA /* RCTActivityIndicatorViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 626818D74C93E9D8D81784210AA87442 /* RCTActivityIndicatorViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 60E8FB627C26824A72754120A4107C02 /* react-native-camera-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 87203606E3C6A220E61532F3E7341D4B /* react-native-camera-dummy.m */; }; + 5DBC9A0934F4262B853C66A9BA2A92FB /* RCTSubtractionAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 083BB995FA9FF923940025F229F38537 /* RCTSubtractionAnimatedNode.m */; }; + 5DBEE0F424A8B1B4BE4BC1DA645AF545 /* RCTSlider.m in Sources */ = {isa = PBXBuildFile; fileRef = F935C734CB1B6AAECF11C3EC92B36227 /* RCTSlider.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 5E4EB4C1EF7092D0F5A318D85B004FB9 /* RCTUITextView.h in Headers */ = {isa = PBXBuildFile; fileRef = 7A13C258951D14E6D754463E2A708294 /* RCTUITextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5E5A68C8BCFE6CD15198C8BB751F058F /* RCTParserUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = F7ED4110BB7EE7BD6D8B4ACA8689F069 /* RCTParserUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5F121AAC26099BB274A6319E40123819 /* RCTRootShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = D68FCA7139FBD96E2D3A6A318DE95F99 /* RCTRootShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5F20378F69B97565A24B7827D383380B /* RCTI18nUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = F1A1BBBF54ED42D4FC1627483DCEA137 /* RCTI18nUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5F23E8E57266DAC77BA53983F18B7DB2 /* REAParamNode.h in Headers */ = {isa = PBXBuildFile; fileRef = C23651862EE5E1925B2112671660BD04 /* REAParamNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5F3914305B352AA4A312EA53ACD0BA46 /* RNGestureHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = D7E895A5B582943705B84D486EEC69B5 /* RNGestureHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5F3979C1A4B4A0BAA173A21F0192D66D /* RCTImageDataDecoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 07C9F6DA9F78A24DB1BDC0B813E55440 /* RCTImageDataDecoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5F599481308B2A1BFC6D4344DF1431FD /* UMAppLifecycleListener.h in Headers */ = {isa = PBXBuildFile; fileRef = 01C29ABD6C13B90C2F2BAEA203EEA6E9 /* UMAppLifecycleListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5FA05CE61D75D84C7638DACCE3FA94E2 /* RCTSegmentedControlManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 0046533C4B7BCD806BBBE6AE0B455B32 /* RCTSegmentedControlManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5FCC1171603B7B3D797CECEF4E924A4A /* RCTRawTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = FABBD1F47A0B9B964AEC2C8FF24DCFE0 /* RCTRawTextShadowView.m */; }; + 60127037832EA14C085838DCE9EC2FB3 /* YGLayout.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 33C0D2F9896F73D13D96606AB6E8952C /* YGLayout.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 6042042D7FB9678AA30938168591A2E7 /* RCTBlobCollector.h in Headers */ = {isa = PBXBuildFile; fileRef = AF0FA27995E607831DEF37A77595C493 /* RCTBlobCollector.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6092F053319552DBAC04F9DE699956BA /* RCTActivityIndicatorViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = CD816FF68900CAFEA02884E1B3082BD7 /* RCTActivityIndicatorViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 60E8FB627C26824A72754120A4107C02 /* react-native-camera-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B7022B2758CE00F37CB7187984EE6EF8 /* react-native-camera-dummy.m */; }; 610C737170990323A65A58D908F8ECA3 /* stl_logging.h in Headers */ = {isa = PBXBuildFile; fileRef = D8106F78B9BEBC4E5B369C4990A343B6 /* stl_logging.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 61134ED4BA34271FCD729B3E926A8D5F /* InspectorInterfaces.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 14FABAAE2F022BCFD2E184A5F2D52540 /* InspectorInterfaces.cpp */; }; - 618BC8EEE2DCD6EF77E27F834D5B84AB /* EXPermissions-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A369FD0516FFCFD1EA72C8DBF250426 /* EXPermissions-dummy.m */; }; - 618BCE8C76808088EACE79E7C0D8F4B1 /* RCTInputAccessoryViewContent.h in Headers */ = {isa = PBXBuildFile; fileRef = 78B53CFA5EA1A3CA27ECB0DEE4F1E7DD /* RCTInputAccessoryViewContent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 61CDCF366CF6D25C7FD8F8938A773830 /* React-jsi-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 5C6C987030B68B8420445F33E6E6A8C9 /* React-jsi-dummy.m */; }; - 6216790D8F849F939FA06E54C1DD18F3 /* RCTPackagerClient.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C1CF6E89C0AD3A8ADAA6B9B85C78A41 /* RCTPackagerClient.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 6258BB4F4F337EA187F0B1798A9CBD0E /* RCTVibration.h in Headers */ = {isa = PBXBuildFile; fileRef = 5ADEB25EBC36B5FC7D863FD6B6F93BBB /* RCTVibration.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 62BBB67D794EAD6E8AE0AD47CA0DBA80 /* REAEventNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 1DF0F387C49BA7550E993B9F45A0A622 /* REAEventNode.m */; }; - 62DAAEF83AD13CB996B63F050BBB17F2 /* UIView+React.m in Sources */ = {isa = PBXBuildFile; fileRef = 81A788F50E15368FD2B30BB430F19737 /* UIView+React.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 633350AB57B0BB34DEB7A57D9707028A /* Utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 150D45248CE575601B241A56E86184FE /* Utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 638173471B670878B34394773F467230 /* REATransitionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 4BED723E49883507790D2844973A59BB /* REATransitionManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6406B7EE27B553C0142B865418E8B46C /* RCTSurfaceView+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = F3417ABF085CCEAC96B4A3A99EBD882F /* RCTSurfaceView+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 640AB2181BEBD9C1410EAE75BE2064D6 /* RCTMultiplicationAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 515386C56C91A5884F828C3FB29EA824 /* RCTMultiplicationAnimatedNode.m */; }; - 642900552BACD44F0BBC31AA3A99F843 /* RCTTextSelection.m in Sources */ = {isa = PBXBuildFile; fileRef = F3189BF17907999F990C3CA336544E28 /* RCTTextSelection.m */; }; - 64826535C2A8F075F4C7BCCB7593C1C2 /* RCTURLRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 60A3EFCD4755384601C55FD7C929A972 /* RCTURLRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 648C1EE6D41D617836426E185AC5AAED /* EXConstantsService.h in Headers */ = {isa = PBXBuildFile; fileRef = E445EAC259ECCD13D842215EB1141C19 /* EXConstantsService.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 649B00312A2F65FE643E119B4EA7E89A /* RCTUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 0DD37996CD6533D002C700A236438A91 /* RCTUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 64CE86C677FE58819125DF1CF00FD92D /* RNSScreenContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = 5DF36115EDBFDD70B30DD2AC193FCD2B /* RNSScreenContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6557075639645D9B80E1AA0D60659311 /* experiments.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 40223E763EC99E2B4C9CD893F62EB313 /* experiments.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - 6581CFC6A20D0250AA301FC1F5D69B8F /* RCTFollyConvert.mm in Sources */ = {isa = PBXBuildFile; fileRef = 979D04B76B0D6DA154F54C8403D4DB83 /* RCTFollyConvert.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 66461FCE36880BD3496945D2A2870456 /* FBReactNativeSpec-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 551CDFB185D5EE5BF0C438DF69884D1F /* FBReactNativeSpec-dummy.m */; }; - 66821B19957B6374B817C91E73C9D601 /* EXPermissions.m in Sources */ = {isa = PBXBuildFile; fileRef = CC52CF826446D33AE765DBAE6B9B8FE6 /* EXPermissions.m */; }; - 66B5F252959930AAF9137F4C23A88603 /* RCTComponentEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 357D18531E0BF5EDAD9B37F11CB07ED2 /* RCTComponentEvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 66F758B6340D92E1E9302298F1CF0F3B /* TurboModuleUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = E9C851F429595210A359136CDE6FCAF5 /* TurboModuleUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 671FA5F845BA5CF21592725DC3E9D3A5 /* RCTBaseTextInputShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 88BC3D01E8231AA2265D77B412BA0B63 /* RCTBaseTextInputShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 672BD5901772417C85619B255DF5FEB7 /* RCTImageUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D63A7F0C3E18A2EFEAA236DCF3BDC0F /* RCTImageUtils.m */; }; - 6923B013228EE34EFB46111B344612C1 /* EXAppLoaderInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = D8C6897979C3F85E22047F69EA676F4F /* EXAppLoaderInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 695CBDCD8BFCAA443DA31034E8A4905A /* REABlockNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 615265094B42616F7AC53D87A893547F /* REABlockNode.m */; }; - 696AEC62A68DE4B2C2773CF73C5A84BB /* RCTImageShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = D930FC39F7DE10D64F4811CE1C62ED89 /* RCTImageShadowView.m */; }; - 6A097507AE79C26A7A5E84DF07013891 /* experiments-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = A48F913A3015CF47254B6AAE9B0FBCA5 /* experiments-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6A50D8DFC5A6BD516FDB2904FDD1D6C6 /* RCTConvert+Text.h in Headers */ = {isa = PBXBuildFile; fileRef = 090DF051C115997FB83AAE2E59509FE3 /* RCTConvert+Text.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6AACDB7DEDE1E1D1809E3B818254CDC6 /* RCTLog.mm in Sources */ = {isa = PBXBuildFile; fileRef = B30B2ED5CBD3170E4542399767A54AB7 /* RCTLog.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 6AD85FC875A6506A689D1BE11E2A1C27 /* RCTDatePicker.h in Headers */ = {isa = PBXBuildFile; fileRef = F1437AC46FA4043E69D75C04A87745C9 /* RCTDatePicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6AF46A689117584E79917850906F4DCB /* UMAppLifecycleService.h in Headers */ = {isa = PBXBuildFile; fileRef = CBB0F8F78ACD4127BC2B6E5BA3F799DA /* UMAppLifecycleService.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6B81DE7470BD4787B439E38080D63F5E /* CxxNativeModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 47439F85956474E9C5C2DD507879F7B7 /* CxxNativeModule.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 6C26391854106ACB1C5E86E2CA670EA6 /* RCTBackedTextInputViewProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D1B54C3F151C31AC512B821555EDF4A /* RCTBackedTextInputViewProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6C7AE1A3D11BEA055B1CB61CC131E5B7 /* RCTNetworking.mm in Sources */ = {isa = PBXBuildFile; fileRef = F3AC3DAFB070F9DD031310EBEC62974A /* RCTNetworking.mm */; }; - 6CC84B71132F21061565B4FE11BD78E5 /* RCTMultilineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E574DAF80A4E05B5F6FDACFDCE009479 /* RCTMultilineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6CE6837AC0E4342DBEBEB53FB3122DA9 /* BridgeJSCallInvoker.h in Headers */ = {isa = PBXBuildFile; fileRef = 6394375F7C2379A55EF541C031EBAAFA /* BridgeJSCallInvoker.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6CEC93D42BCE1C84B05210117F48F610 /* REACallFuncNode.m in Sources */ = {isa = PBXBuildFile; fileRef = AA08217600FF87240F2ABF6EF3EC3571 /* REACallFuncNode.m */; }; - 6D54CD4503041ADC26CB7153AD3BBC9B /* RCTCxxMethod.mm in Sources */ = {isa = PBXBuildFile; fileRef = 762E3274DCBA71387D9BCCEAEEB806A0 /* RCTCxxMethod.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 6DB976F647E681AB06E97EDB58F98C41 /* RNCMaskedView-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 937249AD00966108E40C7FAFD6FC5E50 /* RNCMaskedView-dummy.m */; }; + 61134ED4BA34271FCD729B3E926A8D5F /* InspectorInterfaces.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B03A2DACE2650E67AA35EF6EE5FBB1AE /* InspectorInterfaces.cpp */; }; + 618BC8EEE2DCD6EF77E27F834D5B84AB /* EXPermissions-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 53AE4A70A9BF6A6619F381B22A251282 /* EXPermissions-dummy.m */; }; + 618BCE8C76808088EACE79E7C0D8F4B1 /* RCTInputAccessoryViewContent.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B5EB1EE0ED9E0A03E950460F367B5F9 /* RCTInputAccessoryViewContent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 61CDCF366CF6D25C7FD8F8938A773830 /* React-jsi-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B17702B86687C5A50CC3FDFCC1189B91 /* React-jsi-dummy.m */; }; + 6216790D8F849F939FA06E54C1DD18F3 /* RCTPackagerClient.m in Sources */ = {isa = PBXBuildFile; fileRef = A31314635E65F4D915316FC30AE634E9 /* RCTPackagerClient.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 6258BB4F4F337EA187F0B1798A9CBD0E /* RCTVibration.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B25D318E42C9E07A26C1E599FB18F12 /* RCTVibration.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 62BBB67D794EAD6E8AE0AD47CA0DBA80 /* REAEventNode.m in Sources */ = {isa = PBXBuildFile; fileRef = F51C720754D08F52358FBEB937CB818A /* REAEventNode.m */; }; + 62DAAEF83AD13CB996B63F050BBB17F2 /* UIView+React.m in Sources */ = {isa = PBXBuildFile; fileRef = EE4698B9E60B69787F83BB35335F8695 /* UIView+React.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 633350AB57B0BB34DEB7A57D9707028A /* Utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 145C823290B66AB0AE26ED13AB2CB75B /* Utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 638173471B670878B34394773F467230 /* REATransitionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = BD9837B6437255BCB859B00D04472465 /* REATransitionManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6406B7EE27B553C0142B865418E8B46C /* RCTSurfaceView+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 311F7AAE4AB96FBE852D1FD3373DA5B8 /* RCTSurfaceView+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 640AB2181BEBD9C1410EAE75BE2064D6 /* RCTMultiplicationAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 0293B398CCDD8756EB6C0ECC3467C675 /* RCTMultiplicationAnimatedNode.m */; }; + 642900552BACD44F0BBC31AA3A99F843 /* RCTTextSelection.m in Sources */ = {isa = PBXBuildFile; fileRef = EED806455D3BA2CB93E0A2F1A54F8F54 /* RCTTextSelection.m */; }; + 64826535C2A8F075F4C7BCCB7593C1C2 /* RCTURLRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = F9F5AD35E34A29456AFE430F7F1B93B1 /* RCTURLRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 648C1EE6D41D617836426E185AC5AAED /* EXConstantsService.h in Headers */ = {isa = PBXBuildFile; fileRef = 72A873AB3E20C3AEE69E9EE93737A684 /* EXConstantsService.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 649B00312A2F65FE643E119B4EA7E89A /* RCTUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 9874A0018CDCA4C293F9B246BBBC1359 /* RCTUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 64CE86C677FE58819125DF1CF00FD92D /* RNSScreenContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = 624361FE9BDCE3D2FB03E97B222E046B /* RNSScreenContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6557075639645D9B80E1AA0D60659311 /* experiments.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 535EE6CF347F2C90E6253A35A4F9B905 /* experiments.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 6581CFC6A20D0250AA301FC1F5D69B8F /* RCTFollyConvert.mm in Sources */ = {isa = PBXBuildFile; fileRef = A8C72B04510F2FD9E634872D8FCF810C /* RCTFollyConvert.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 66461FCE36880BD3496945D2A2870456 /* FBReactNativeSpec-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 26A7A84B79D50EAB16D223C258A77EED /* FBReactNativeSpec-dummy.m */; }; + 66821B19957B6374B817C91E73C9D601 /* EXPermissions.m in Sources */ = {isa = PBXBuildFile; fileRef = 8D6B4FCD54CF5DE87315DB4A5709BE2B /* EXPermissions.m */; }; + 66B5F252959930AAF9137F4C23A88603 /* RCTComponentEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = CDAC5186475F46EE8C96A2781553A07F /* RCTComponentEvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 66F758B6340D92E1E9302298F1CF0F3B /* TurboModuleUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B867B3CE1C693216843B6D74993CD07 /* TurboModuleUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 671FA5F845BA5CF21592725DC3E9D3A5 /* RCTBaseTextInputShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 00C4EF272C2B9F0368BDA8E476935BA6 /* RCTBaseTextInputShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 672BD5901772417C85619B255DF5FEB7 /* RCTImageUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = A5D3627BD629932D9D693E27E71F3258 /* RCTImageUtils.m */; }; + 67B31BB892A6256D7D5AC1C8E3A3C50B /* Downloader.h in Headers */ = {isa = PBXBuildFile; fileRef = 2ECD171BD73075B2FEEE140063E833A3 /* Downloader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6923B013228EE34EFB46111B344612C1 /* EXAppLoaderInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F063066FAAEEA2DD621BA6E4A406EEC /* EXAppLoaderInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 695CBDCD8BFCAA443DA31034E8A4905A /* REABlockNode.m in Sources */ = {isa = PBXBuildFile; fileRef = CA80D3357956EE1D73A49D14424D922F /* REABlockNode.m */; }; + 696AEC62A68DE4B2C2773CF73C5A84BB /* RCTImageShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2BC89F73F4E5BC5ADF2C218EAFF4F3B6 /* RCTImageShadowView.m */; }; + 6A097507AE79C26A7A5E84DF07013891 /* experiments-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 8878EDA91BBCBD82A71A83D166FB2B6A /* experiments-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6A50D8DFC5A6BD516FDB2904FDD1D6C6 /* RCTConvert+Text.h in Headers */ = {isa = PBXBuildFile; fileRef = 85FF03777D7E79870AC51C11E098AC8C /* RCTConvert+Text.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6AACDB7DEDE1E1D1809E3B818254CDC6 /* RCTLog.mm in Sources */ = {isa = PBXBuildFile; fileRef = 5130ED97FEC66E0B88C082831CDC7784 /* RCTLog.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 6AD85FC875A6506A689D1BE11E2A1C27 /* RCTDatePicker.h in Headers */ = {isa = PBXBuildFile; fileRef = 21BEE26C8CF98E6DC73D49C744DDE4CD /* RCTDatePicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6AF46A689117584E79917850906F4DCB /* UMAppLifecycleService.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B5BD241E880C1597209CCFED363D163 /* UMAppLifecycleService.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6B81DE7470BD4787B439E38080D63F5E /* CxxNativeModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D3AA18F5DC2C4F4DB4F3537B69CC04BF /* CxxNativeModule.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 6C26391854106ACB1C5E86E2CA670EA6 /* RCTBackedTextInputViewProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E2497CFF5B44EF3CED40A491A35717A /* RCTBackedTextInputViewProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6C7AE1A3D11BEA055B1CB61CC131E5B7 /* RCTNetworking.mm in Sources */ = {isa = PBXBuildFile; fileRef = DEC25B180C2E1AE3A8C9601E54849533 /* RCTNetworking.mm */; }; + 6CC84B71132F21061565B4FE11BD78E5 /* RCTMultilineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A4569BE764460C66EEB4D92B9D9DF68 /* RCTMultilineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6CE6837AC0E4342DBEBEB53FB3122DA9 /* BridgeJSCallInvoker.h in Headers */ = {isa = PBXBuildFile; fileRef = A7EEEA56EBE56384566179197039D143 /* BridgeJSCallInvoker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6CEC93D42BCE1C84B05210117F48F610 /* REACallFuncNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CE90B049C84D0CB760377DF408F8333 /* REACallFuncNode.m */; }; + 6D54CD4503041ADC26CB7153AD3BBC9B /* RCTCxxMethod.mm in Sources */ = {isa = PBXBuildFile; fileRef = 4FE5712E059C4EC4DD4F7A36E48B811E /* RCTCxxMethod.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 6DB976F647E681AB06E97EDB58F98C41 /* RNCMaskedView-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 472483273F4BB06B1284E224DAFE2DD2 /* RNCMaskedView-dummy.m */; }; 6E5FDDC033DB7AB946AAC9B1D6B3BDBE /* diy-fp.cc in Sources */ = {isa = PBXBuildFile; fileRef = D23C7DBF31D099DB40E5B3E27DBE7727 /* diy-fp.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - 6E99F2AA6554CE3CE5C32BB17D805BD0 /* UMUtilitiesInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = 569C5F16B5C15DB2CD701B491DC6EB3F /* UMUtilitiesInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6F4C8ECB96B30078CDC6F3ED643DF275 /* REAAlwaysNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 7881A140BC6358C0EE1328412DFB0079 /* REAAlwaysNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 70A03FCE92C5F71B3E9C40475C556132 /* RCTDiffClampAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = C01E871F0A701A51A86D186F02A7FFE8 /* RCTDiffClampAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 70EE5F748B38F922E8D5CAC4BEB94894 /* RCTDecayAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = AA7CC2FFD8E25FD2FAE5BCC2FF267E52 /* RCTDecayAnimation.m */; }; - 711D6701B3C997A040AE7E5BD3A36323 /* JSDeltaBundleClient.h in Headers */ = {isa = PBXBuildFile; fileRef = D397581861A148108831102FDEB7BAD1 /* JSDeltaBundleClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 715A21D9C83BD49F83A571788BDF1BBA /* RCTFont.h in Headers */ = {isa = PBXBuildFile; fileRef = A6F81D1E00159C60DEDF1F6D93BB727F /* RCTFont.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 71732A020D7EB1C0129FEFEAAC4AB874 /* RCTWeakProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = 5024297038356BFD3678670A46371EC9 /* RCTWeakProxy.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 71A8F1F7B8F1C500E5DB54E7568768BF /* RNSScreenStack.h in Headers */ = {isa = PBXBuildFile; fileRef = FF5D6643B58BDA928711160ABD5F6126 /* RNSScreenStack.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 71B1F6D3D1676C67B9689723295BBBF8 /* RNNativeViewHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 50DDD41CA92DC02F4DBF8C2CF2EA67E4 /* RNNativeViewHandler.m */; }; - 71DA7D68337F4F395D27E9A4783410B7 /* RCTImageSource.h in Headers */ = {isa = PBXBuildFile; fileRef = BCAF079CC0A283FEE718C35985733CB5 /* RCTImageSource.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 72266B7D96CB4F663AE7C4D12D2DFCF4 /* UMViewManagerAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 80904F518A757EF66BB56D8FE02F659C /* UMViewManagerAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 725BC4B216ECC3B13922602F90FD5DDC /* RNFlingHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 018D3B8B517A7BA0E0F405D7F79CC6D9 /* RNFlingHandler.m */; }; - 727DAEA19E5171C0C61EAAD9B3709D60 /* RCTBaseTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 2295102D9E63957D79A6C4DD5B4F165E /* RCTBaseTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 72A50CC4C62825C5C627DF99DCD3283D /* UMUtilities.h in Headers */ = {isa = PBXBuildFile; fileRef = 380D0F6F7C64D8D8A5D5869EAD5F4FC4 /* UMUtilities.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 72DF076560A84C17F35861C7D4B3CB9F /* TextDetectorManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 8F21273D48FA5BA310E9FF26B62D35CE /* TextDetectorManager.m */; }; - 72FD087500A34583CB0EF82D43AE6169 /* RCTModalHostView.m in Sources */ = {isa = PBXBuildFile; fileRef = C7B98812A15A664ED5E7DCA66FF1DC49 /* RCTModalHostView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 73112C1488A872BEA689E089D0B0E0FD /* RNSScreenStack.m in Sources */ = {isa = PBXBuildFile; fileRef = 7FAEC9F93C6EF40344816F547580B0F0 /* RNSScreenStack.m */; }; - 731C94EF3D4F29BECCEB3A8F190AF63D /* RCTSpringAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 2426860BD069CE41DB60BCFABC0DF7E1 /* RCTSpringAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 735C26B0C51442BB29899FCE70506791 /* RCTRootContentView.m in Sources */ = {isa = PBXBuildFile; fileRef = 1D5C6E59B170D018B79733F767B0A4B0 /* RCTRootContentView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 73E48857817C53C1899C14B4EE810FAD /* RCTNativeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = CE68BD50F86430A7B6E0D6C6775B7BB3 /* RCTNativeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 73EAF34584909024A56469DEE0C99F5C /* RCTPackagerClient.h in Headers */ = {isa = PBXBuildFile; fileRef = BDE86DA84FE2FCEE28B1159272AB3DA3 /* RCTPackagerClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 73F30EB66AD6DC0ACEC18C62850036A5 /* UMKernelService.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F4EFA992CB991F3BEA083CF208555A4 /* UMKernelService.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 745CA9D78906A77840D6F266FA495729 /* RCTImageCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 688926F8B1DF7C41C66C28AB2F8AB947 /* RCTImageCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 74A789173ED9EB830DA6DA6B1C37036B /* RCTSafeAreaViewLocalData.m in Sources */ = {isa = PBXBuildFile; fileRef = 8598CE246990A95F592FD67BE0F90DF5 /* RCTSafeAreaViewLocalData.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 74D67DA7362C6D658EBE776362E19CEB /* React-RCTImage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4D22EA356BCBAC7895844273149AC7D2 /* React-RCTImage-dummy.m */; }; - 7563D4DBE0016DD8A873BB45F22E702D /* EXFileSystemLocalFileHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 14E822A7A4373074D3C23D89BF08C563 /* EXFileSystemLocalFileHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 75EA3C1880F07B2E393514B5269489FD /* UMReactNativeAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 1534E0F42D1653F13F97F0B31A1B1782 /* UMReactNativeAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7671EAC6D99AA45C521C70C132FC7A04 /* RCTUITextView.m in Sources */ = {isa = PBXBuildFile; fileRef = 4E3395A966C792B848A2489906255EA4 /* RCTUITextView.m */; }; - 76B71999C31D67491D405B05C2839E41 /* RCTValueAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = AC4FA1B381716947813C53059476AA19 /* RCTValueAnimatedNode.m */; }; - 76B76DEF15BFBC5F8813D1EED1DF98DD /* RCTEventEmitter.m in Sources */ = {isa = PBXBuildFile; fileRef = BAE0B1DDD1361D57249A00403015CA3E /* RCTEventEmitter.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 7809BD3CA5F376ABA209D12DEE022A12 /* React-RCTActionSheet-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C445A8662226BFF95EC8E9C5DB6CC079 /* React-RCTActionSheet-dummy.m */; }; - 7837D92B6B440222A3C410A8FCD4FA9B /* UMSingletonModule.h in Headers */ = {isa = PBXBuildFile; fileRef = C9B3464C0B7E20D3977681CCF1AF5774 /* UMSingletonModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 787960B14AA58476248C5C49E24CD310 /* JSBundleType.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D9B018F6BA77C0DA3A411556A6050C2 /* JSBundleType.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 78915BE17253AFB06827312FC0CCBAF6 /* RNSScreen.h in Headers */ = {isa = PBXBuildFile; fileRef = 43A8576A00BEE143E79020C4A93B8946 /* RNSScreen.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 794567009289677F590846BBC3EC0ADF /* EXFilePermissionModule.m in Sources */ = {isa = PBXBuildFile; fileRef = FE7E6C63FDCA9B17A570C69559134672 /* EXFilePermissionModule.m */; }; + 6E99F2AA6554CE3CE5C32BB17D805BD0 /* UMUtilitiesInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = 7A6CA5CFB337765149A71769F3D648FD /* UMUtilitiesInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6F4C8ECB96B30078CDC6F3ED643DF275 /* REAAlwaysNode.h in Headers */ = {isa = PBXBuildFile; fileRef = AB2CD411583043DB74204C0ADEAECC7E /* REAAlwaysNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 70A03FCE92C5F71B3E9C40475C556132 /* RCTDiffClampAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = CF98D7F9B14E28B7C9865B896A7BA9AB /* RCTDiffClampAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 70EE5F748B38F922E8D5CAC4BEB94894 /* RCTDecayAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 81D722FA7D7FCAC10A54BE8734006014 /* RCTDecayAnimation.m */; }; + 711D6701B3C997A040AE7E5BD3A36323 /* JSDeltaBundleClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C1F199F184D36E3DD58D189CEB5742D /* JSDeltaBundleClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 715A21D9C83BD49F83A571788BDF1BBA /* RCTFont.h in Headers */ = {isa = PBXBuildFile; fileRef = F738F8EDA8B2362463C6094FF54FF4E6 /* RCTFont.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 71732A020D7EB1C0129FEFEAAC4AB874 /* RCTWeakProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = 90726D02EC4A41EC2332A7F76C5C6FE0 /* RCTWeakProxy.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 71A8F1F7B8F1C500E5DB54E7568768BF /* RNSScreenStack.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D0EB323433925C846E6001788083ADD /* RNSScreenStack.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 71B1F6D3D1676C67B9689723295BBBF8 /* RNNativeViewHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 21ECFB7E8546332ED113CC6753D7C0E8 /* RNNativeViewHandler.m */; }; + 71DA7D68337F4F395D27E9A4783410B7 /* RCTImageSource.h in Headers */ = {isa = PBXBuildFile; fileRef = 859E19A3C1243F72CE0DA5B8E458F4A0 /* RCTImageSource.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 72266B7D96CB4F663AE7C4D12D2DFCF4 /* UMViewManagerAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = C00C80DEDA37F0457FF4A47EB2050871 /* UMViewManagerAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 725BC4B216ECC3B13922602F90FD5DDC /* RNFlingHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = B1C9728C371E27A29ACBE79CFB110E51 /* RNFlingHandler.m */; }; + 727DAEA19E5171C0C61EAAD9B3709D60 /* RCTBaseTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D50841F93BB099B6FE2866E7C00C25D /* RCTBaseTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 72A50CC4C62825C5C627DF99DCD3283D /* UMUtilities.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E604E140E84CD475309034EA42B855C /* UMUtilities.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 72DF076560A84C17F35861C7D4B3CB9F /* TextDetectorManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 60E7F0114D1A92A59B9E10EB959D7799 /* TextDetectorManager.m */; }; + 72FD087500A34583CB0EF82D43AE6169 /* RCTModalHostView.m in Sources */ = {isa = PBXBuildFile; fileRef = B22E6BB2E5A45377D079CFC42003A094 /* RCTModalHostView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 73112C1488A872BEA689E089D0B0E0FD /* RNSScreenStack.m in Sources */ = {isa = PBXBuildFile; fileRef = E7C4709417D102A02C742F3510E849EB /* RNSScreenStack.m */; }; + 731C94EF3D4F29BECCEB3A8F190AF63D /* RCTSpringAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A4D81D2430BDB022B75817AE31A9F39 /* RCTSpringAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 735C26B0C51442BB29899FCE70506791 /* RCTRootContentView.m in Sources */ = {isa = PBXBuildFile; fileRef = B79398FA68A7675940E92E76D2D33BA3 /* RCTRootContentView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 73E48857817C53C1899C14B4EE810FAD /* RCTNativeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = AB028410BB24CF42EF3382F3BA71E505 /* RCTNativeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 73EAF34584909024A56469DEE0C99F5C /* RCTPackagerClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 4625AD264FC19F0EEFFE0AC5585CC11A /* RCTPackagerClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 73F30EB66AD6DC0ACEC18C62850036A5 /* UMKernelService.h in Headers */ = {isa = PBXBuildFile; fileRef = FC0C2E713065AC236249C7D77EF6C785 /* UMKernelService.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 745CA9D78906A77840D6F266FA495729 /* RCTImageCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A5D4FD97C98DB85D4C97F6C05B4278B /* RCTImageCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 74A789173ED9EB830DA6DA6B1C37036B /* RCTSafeAreaViewLocalData.m in Sources */ = {isa = PBXBuildFile; fileRef = 607BAF9703EF8D93C21728BE7384BD7C /* RCTSafeAreaViewLocalData.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 74D67DA7362C6D658EBE776362E19CEB /* React-RCTImage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 8C6F4EE1F9C650E9C9A6D1C931A3753D /* React-RCTImage-dummy.m */; }; + 750F5607D3226E003289AB5A3FF3024B /* NSArray+Map.m in Sources */ = {isa = PBXBuildFile; fileRef = A9AC11E9C4EBA30121139ABC9DD3721F /* NSArray+Map.m */; }; + 7563D4DBE0016DD8A873BB45F22E702D /* EXFileSystemLocalFileHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = F6E068A964849698547480FC1CBE6299 /* EXFileSystemLocalFileHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 75EA3C1880F07B2E393514B5269489FD /* UMReactNativeAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = C94752D1F539408E76E6DACBFBB67FF1 /* UMReactNativeAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7671EAC6D99AA45C521C70C132FC7A04 /* RCTUITextView.m in Sources */ = {isa = PBXBuildFile; fileRef = A687EDEC5D12E60C4CC53503F6FD0146 /* RCTUITextView.m */; }; + 76B71999C31D67491D405B05C2839E41 /* RCTValueAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 95703A9FB86E0BA6B62FAEB401871DFC /* RCTValueAnimatedNode.m */; }; + 76B76DEF15BFBC5F8813D1EED1DF98DD /* RCTEventEmitter.m in Sources */ = {isa = PBXBuildFile; fileRef = ED8F2DA67CA3CC5C0B4BA8487636417F /* RCTEventEmitter.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 7809BD3CA5F376ABA209D12DEE022A12 /* React-RCTActionSheet-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = BF515B65E3E57FF8892B526C747577D4 /* React-RCTActionSheet-dummy.m */; }; + 7837D92B6B440222A3C410A8FCD4FA9B /* UMSingletonModule.h in Headers */ = {isa = PBXBuildFile; fileRef = FD4ED4D91A66E975C5C46CBB365E8347 /* UMSingletonModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 787960B14AA58476248C5C49E24CD310 /* JSBundleType.h in Headers */ = {isa = PBXBuildFile; fileRef = B5B62FA91CE30284F9DF5799D7B93216 /* JSBundleType.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 78915BE17253AFB06827312FC0CCBAF6 /* RNSScreen.h in Headers */ = {isa = PBXBuildFile; fileRef = A5CA17E5AFBAB405E7B46D97883BE18D /* RNSScreen.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 794567009289677F590846BBC3EC0ADF /* EXFilePermissionModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 77519740819497A1B2325233B964FFA6 /* EXFilePermissionModule.m */; }; 7954E4E69F110D651ECE169B652E7C21 /* bignum.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0DCA53C5A734EC5B0404E46FD0637538 /* bignum.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - 7A3CA2E07BBDAA0F4284E6B44F1ABCBF /* RCTModalHostViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = D3D1BB023991807E848324A2A526CC2F /* RCTModalHostViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7A7F33946BB6F9D900AADB4221120E3E /* RCTUIManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 31175F671A81AA95B04B421452CBE45D /* RCTUIManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7AB8823A60EADB7063B92A41401DFF94 /* RCTTransformAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = C935E89E513B84C3E10A9251E0AA71AF /* RCTTransformAnimatedNode.m */; }; - 7AFF394EEB2519D98E32284B0BA717A5 /* RNCameraUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 2A57A78ADB948E7D6B7BDA4E91FDC02E /* RNCameraUtils.m */; }; - 7B8176A0EC34E5A6E599C6B07EAE5D58 /* react-native-cameraroll-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = FC08D16385A42994EBF19D6012857B1C /* react-native-cameraroll-dummy.m */; }; - 7C0ADAD678421BED7629315556C22D62 /* React-RCTVibration-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 251730F1F9CFAAABAA1824B7A2D55DC4 /* React-RCTVibration-dummy.m */; }; - 7C21B7444BF99F571485800042B7CEE5 /* UMReactFontManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 912E58763854F0F6D6F68B19034E4B69 /* UMReactFontManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7A3CA2E07BBDAA0F4284E6B44F1ABCBF /* RCTModalHostViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = E9F4510B953EB633173ADB84B09FB5D4 /* RCTModalHostViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7A7F33946BB6F9D900AADB4221120E3E /* RCTUIManager.h in Headers */ = {isa = PBXBuildFile; fileRef = C06F6AE585DE1149F919225F819362A9 /* RCTUIManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7AB8823A60EADB7063B92A41401DFF94 /* RCTTransformAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A60620470D0168DB7AA9664FC6015E9 /* RCTTransformAnimatedNode.m */; }; + 7AFF394EEB2519D98E32284B0BA717A5 /* RNCameraUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = FD4C5EB168DAAC29CFE06B9DBDAF18CE /* RNCameraUtils.m */; }; + 7B8176A0EC34E5A6E599C6B07EAE5D58 /* react-native-cameraroll-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 07AD5E690A405656CFF17E3BBA1D64DA /* react-native-cameraroll-dummy.m */; }; + 7C0ADAD678421BED7629315556C22D62 /* React-RCTVibration-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7C67D702A56EB20F3E79146A2899EA52 /* React-RCTVibration-dummy.m */; }; + 7C21B7444BF99F571485800042B7CEE5 /* UMReactFontManager.h in Headers */ = {isa = PBXBuildFile; fileRef = F02C350BC6AEFFEA1D66E85846E68A68 /* UMReactFontManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7C4DAF7B9971E6EC46C57AC5B601387C /* demangle.cc in Sources */ = {isa = PBXBuildFile; fileRef = 64E951122A08DF28B1FD68353352D83C /* demangle.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; - 7D15BB2E390F82CE0E1D8B531F50828D /* RNSensorOrientationChecker.m in Sources */ = {isa = PBXBuildFile; fileRef = BF3D2935C5B3E3096A7686944A81CCCA /* RNSensorOrientationChecker.m */; }; - 7D704FFC59672DA0BA57C6E7B9F4D202 /* RCTSafeAreaView.m in Sources */ = {isa = PBXBuildFile; fileRef = FABD5E8E04B22837ECFA6237EA9EAC1B /* RCTSafeAreaView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 7DDD639460A038566BAF5099F01CBA48 /* RCTImageShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 760A40825B5931FF183202C3A5E66C7F /* RCTImageShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7EC69469AE8553EF0FA6933D116F39D0 /* REABezierNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 54323649DD650B092AE3DBE74AE711DE /* REABezierNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7F5AAEC8F73BEC8CF7D62973D8208F6C /* RCTShadowView+Internal.m in Sources */ = {isa = PBXBuildFile; fileRef = BA0EC66F7C215917F4A8B5BF4B40D360 /* RCTShadowView+Internal.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 7FE86235E6DD6F9548921779D4ECCC36 /* TurboModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 0886B0A584D2426494EC2B77B279311A /* TurboModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7FEE03F6436263712B0D0FD1673BB4D6 /* RNFFmpegModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E3DA73A446B7AABE2E3EAEF7AF5B742 /* RNFFmpegModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7FFDC81A8B022B3E9547881BF0C53428 /* RCTActionSheetManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 17CEAC20CCD5B93BD83118110CB0B41D /* RCTActionSheetManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 80D4569C87D0EBCCE4B6DC81D74A6295 /* RCTUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = C3D67BFD5029B0B38BE3147A35F0AF92 /* RCTUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 811214DDC1A8BD246F50C79F6E9DBBA9 /* READebugNode.m in Sources */ = {isa = PBXBuildFile; fileRef = BCD5A3F39E58D13067520B07C64D32A1 /* READebugNode.m */; }; - 8158D88DDD679783A59640167F6B2A66 /* RCTModuleData.mm in Sources */ = {isa = PBXBuildFile; fileRef = 13823ED65FCEB90841808BEABFEF8BFA /* RCTModuleData.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 81720DCC228080429678CB7CE1316152 /* RCTSurfaceHostingProxyRootView.h in Headers */ = {isa = PBXBuildFile; fileRef = A9A40BF2069B23ED1B6256FFC4671B3A /* RCTSurfaceHostingProxyRootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 819836474963B13AE93DBA37FF26CF91 /* RNCAsyncStorage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4D71FF1EB775B29C33F22D37DFF2B17D /* RNCAsyncStorage-dummy.m */; }; + 7D15BB2E390F82CE0E1D8B531F50828D /* RNSensorOrientationChecker.m in Sources */ = {isa = PBXBuildFile; fileRef = B876C31A7EED581B52E044A4B5DF0A9C /* RNSensorOrientationChecker.m */; }; + 7D704FFC59672DA0BA57C6E7B9F4D202 /* RCTSafeAreaView.m in Sources */ = {isa = PBXBuildFile; fileRef = 200B564D83D709BD15C330C61C24FBE0 /* RCTSafeAreaView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 7DDD639460A038566BAF5099F01CBA48 /* RCTImageShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = F57A15C7A01CC133BF1440BC2A5B7D49 /* RCTImageShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7EC69469AE8553EF0FA6933D116F39D0 /* REABezierNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 7FB083390F4ED2D2067C64A2947971B0 /* REABezierNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7F5AAEC8F73BEC8CF7D62973D8208F6C /* RCTShadowView+Internal.m in Sources */ = {isa = PBXBuildFile; fileRef = 60F87D2EEE599CF74CE0D3AAED775537 /* RCTShadowView+Internal.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 7FE86235E6DD6F9548921779D4ECCC36 /* TurboModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 441DAB638974F0C2E2355E468437FC3B /* TurboModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7FEE03F6436263712B0D0FD1673BB4D6 /* RNFFmpegModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A3478210C90530A40CD04CE2B813A96 /* RNFFmpegModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7FFDC81A8B022B3E9547881BF0C53428 /* RCTActionSheetManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D5E9268A5B127AB628B83A7790983F4 /* RCTActionSheetManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 80D4569C87D0EBCCE4B6DC81D74A6295 /* RCTUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = BEF5CE9AAA106E0EE624C3AEC74AA7A7 /* RCTUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 811214DDC1A8BD246F50C79F6E9DBBA9 /* READebugNode.m in Sources */ = {isa = PBXBuildFile; fileRef = A6EBD4FBB705B457C5AD1F271A6365B2 /* READebugNode.m */; }; + 8158D88DDD679783A59640167F6B2A66 /* RCTModuleData.mm in Sources */ = {isa = PBXBuildFile; fileRef = 3B592D3E37D3D8D3A1A0DA724D642A93 /* RCTModuleData.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 81720DCC228080429678CB7CE1316152 /* RCTSurfaceHostingProxyRootView.h in Headers */ = {isa = PBXBuildFile; fileRef = 6BBD9FF394C439FD433EE6702DF4C495 /* RCTSurfaceHostingProxyRootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 819836474963B13AE93DBA37FF26CF91 /* RNCAsyncStorage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 124705ABB177239BAC7EA2C6B2BAF7F0 /* RNCAsyncStorage-dummy.m */; }; 81CC62FFB67259CAEE48C5AD634C173A /* bignum-dtoa.cc in Sources */ = {isa = PBXBuildFile; fileRef = B3468F61FDF50256D47661DBE91600A0 /* bignum-dtoa.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - 81E07DC40A3D5FD65E5C8417CA28C8C3 /* RCTFileReaderModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 3067FF57D95E00C6C3673DDE86B2F48A /* RCTFileReaderModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 81EAABE2C5FF107022049F7F9BF08C02 /* UMModuleRegistryAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = 27FCB61624459BC0366A1D992CE91116 /* UMModuleRegistryAdapter.m */; }; - 8281C89E4A30505E37E1331748D62073 /* REANodesManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 702586A2E8E8E1353ED69833ACF444D6 /* REANodesManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 82BE17CA11C38578EE02F5D438CA1EFB /* EXFileSystemAssetLibraryHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 11F867C82A73A0531F719AD6D216BD22 /* EXFileSystemAssetLibraryHandler.m */; }; - 82D76CFE0705436D832F28EC5DF1DA25 /* RCTVirtualTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = FE23D2AF7F63ADC6981403D63B652BD9 /* RCTVirtualTextViewManager.m */; }; - 83093481DAB784A9C9A40F1D67248B62 /* RCTSurface.h in Headers */ = {isa = PBXBuildFile; fileRef = 772EA2D7BDB6EE943E77CC3A23A1F8AD /* RCTSurface.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 836AF0719180B60DF83DFD21EA00C34D /* RCTRootContentView.h in Headers */ = {isa = PBXBuildFile; fileRef = B9FE3F82CF6C7EB13A7446DE7657ADB1 /* RCTRootContentView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 84A5949021E42ADE6DA26A4E789E1A92 /* TurboModuleUtils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0E47F03A478B4FD772E713E71D08D4E2 /* TurboModuleUtils.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 84B1D5DC6C672026999BB7199AFDB7D4 /* REATransitionAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 6072EE8736C9627B5DF027A43D3041F0 /* REATransitionAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 854CF0D927A05041B9EA053336504DCA /* RCTBridge.m in Sources */ = {isa = PBXBuildFile; fileRef = 6356F31FAB4832CC95D0D7F145BA4405 /* RCTBridge.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 85638C2F8D35FF711544888B12B5E6D2 /* REABlockNode.h in Headers */ = {isa = PBXBuildFile; fileRef = A9AEEB5317CBB3525A577890A300AB7C /* REABlockNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 856CD85645E776FF4FCA9BA204268D28 /* RCTRawTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 9EB620E9B6F530C44CBB867073CB21B7 /* RCTRawTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8756B5AC0A7C52042C4BA48A8EBD49B4 /* RCTConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = E3E568A05A5940FF03803827E72C1303 /* RCTConvert.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 87A5449F2DFA8A457F23EB6C3595477D /* RCTSurfaceStage.h in Headers */ = {isa = PBXBuildFile; fileRef = 7730AB860C454C4ADB87814B10B0F557 /* RCTSurfaceStage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 87CB66C902F11F7A98F8495131A29A63 /* RNSScreenStackHeaderConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = F658C0B786E670FA410F86FAB49A2FE9 /* RNSScreenStackHeaderConfig.m */; }; - 8824D1213779C3B2D30D11BCD5762D07 /* YGStyle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B9F15C3F633CC8582CEC75116AB0A4D3 /* YGStyle.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - 883A922D1BFE8EDC4319E9B99444E1F5 /* RCTBaseTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B914367C1F6C559CBF7A18167666C35 /* RCTBaseTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 886B4ABA16F159910D856C8690852078 /* REANode.h in Headers */ = {isa = PBXBuildFile; fileRef = 3AA41AF15620C9CFEF9A35D4DCB8540D /* REANode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 88972537808CF8B52DADC37F423FB140 /* RCTTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = A0EC43392EB35229109BCBC6769D0BA2 /* RCTTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 88FFE10394F13353806F5AC527ABD0EB /* RCTPlatform.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0FD2743F6865CDCDE1AFBB731C4FE20B /* RCTPlatform.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 81E07DC40A3D5FD65E5C8417CA28C8C3 /* RCTFileReaderModule.h in Headers */ = {isa = PBXBuildFile; fileRef = FE503983CCC1CDDB8238EDA20E7485FC /* RCTFileReaderModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 81EAABE2C5FF107022049F7F9BF08C02 /* UMModuleRegistryAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = 01B288C9FE0E9E01AE42E165AF4CE7A3 /* UMModuleRegistryAdapter.m */; }; + 8281C89E4A30505E37E1331748D62073 /* REANodesManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 60846BA9074878BD3A1CE611CFC2A904 /* REANodesManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 82BE17CA11C38578EE02F5D438CA1EFB /* EXFileSystemAssetLibraryHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CA5C419FED8770EE598125529B46422 /* EXFileSystemAssetLibraryHandler.m */; }; + 82D76CFE0705436D832F28EC5DF1DA25 /* RCTVirtualTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 9620FD21A6738612E74DFF32F1454CF1 /* RCTVirtualTextViewManager.m */; }; + 83093481DAB784A9C9A40F1D67248B62 /* RCTSurface.h in Headers */ = {isa = PBXBuildFile; fileRef = BB2233517BFA621E2B17C1572520B323 /* RCTSurface.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 836AF0719180B60DF83DFD21EA00C34D /* RCTRootContentView.h in Headers */ = {isa = PBXBuildFile; fileRef = 7032FDA57AE8A03EB4FF88CDDAE31147 /* RCTRootContentView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 83AD01363E37A0F8FF3FA782BFCD50B0 /* Pods-Gladeo_App-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 5B6417ADA0E0C08D2A68F8D9977DBA60 /* Pods-Gladeo_App-dummy.m */; }; + 84A5949021E42ADE6DA26A4E789E1A92 /* TurboModuleUtils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BA021CE6120B35A88E9D681504B8D2BF /* TurboModuleUtils.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 84B1D5DC6C672026999BB7199AFDB7D4 /* REATransitionAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = F65D5AFA965740EFE12F227E5006718A /* REATransitionAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 854CF0D927A05041B9EA053336504DCA /* RCTBridge.m in Sources */ = {isa = PBXBuildFile; fileRef = 100C9F1C3FAE5382E23D9488DE7E9643 /* RCTBridge.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 85638C2F8D35FF711544888B12B5E6D2 /* REABlockNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 292013A0A5283436B2815A6D014D7C5E /* REABlockNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 856CD85645E776FF4FCA9BA204268D28 /* RCTRawTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 5F676D5F059945D32423B7D38719CFB4 /* RCTRawTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8756B5AC0A7C52042C4BA48A8EBD49B4 /* RCTConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = D4D24A8F527150930F62778AD56C83A3 /* RCTConvert.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 87A5449F2DFA8A457F23EB6C3595477D /* RCTSurfaceStage.h in Headers */ = {isa = PBXBuildFile; fileRef = 698DDE4C7C66AF9BE2838F42FA5B206C /* RCTSurfaceStage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 87CB66C902F11F7A98F8495131A29A63 /* RNSScreenStackHeaderConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = E195BEC972375C4FD42EF15D43B227D6 /* RNSScreenStackHeaderConfig.m */; }; + 8824D1213779C3B2D30D11BCD5762D07 /* YGStyle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C2B2E3734117EA840BF0FD1571EB12E6 /* YGStyle.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 883A922D1BFE8EDC4319E9B99444E1F5 /* RCTBaseTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 9CE079DFDA6F909F40D10CDFFBFFE6B3 /* RCTBaseTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 886B4ABA16F159910D856C8690852078 /* REANode.h in Headers */ = {isa = PBXBuildFile; fileRef = D4A50563B1052196AFE86D6579CAC0DA /* REANode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 88972537808CF8B52DADC37F423FB140 /* RCTTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = D2501C267A2FC93AB67F41F770596AB2 /* RCTTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 88FFE10394F13353806F5AC527ABD0EB /* RCTPlatform.mm in Sources */ = {isa = PBXBuildFile; fileRef = DA413492791A245B32C8A5A3FAA3A619 /* RCTPlatform.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; 8931ADAFDC99B6CF6B08EF769F178A95 /* Demangle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 80BE6D5D8BA5017C7B4CBFF7217C8C80 /* Demangle.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 898FEE7242BBAA7E1BEA777B0D626C41 /* RCTPropsAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = AE549E6ED0E9983CD0D62B5868769621 /* RCTPropsAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8A3A8AC3807AA3CE01148A106258BE25 /* JsArgumentHelpers.h in Headers */ = {isa = PBXBuildFile; fileRef = 3396059F0751177F44BDC08AD1D999DE /* JsArgumentHelpers.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8A3B0328CB5DF41A39BCCB3899B34CEC /* RCTConvert+REATransition.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D72A973383E0B35A3C4DA5D63DA286C /* RCTConvert+REATransition.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8A8CC5BB726A951810D3CB4E255AFBB2 /* RNPanHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 898F0CF682798C3A50C59DA2B9CAFF7B /* RNPanHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8AA9337018EB7682DE357A7CE66B37C4 /* RCTProfile.m in Sources */ = {isa = PBXBuildFile; fileRef = DBF41954F79CAE4578AA65900310CFFE /* RCTProfile.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 898FEE7242BBAA7E1BEA777B0D626C41 /* RCTPropsAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B3000B2D747DF16C9791F6C5B25EDA9 /* RCTPropsAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8A3A8AC3807AA3CE01148A106258BE25 /* JsArgumentHelpers.h in Headers */ = {isa = PBXBuildFile; fileRef = FF933CED0C04922E664730EAC845DBCE /* JsArgumentHelpers.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8A3B0328CB5DF41A39BCCB3899B34CEC /* RCTConvert+REATransition.h in Headers */ = {isa = PBXBuildFile; fileRef = D551D15A59714ABD8BFD282613E5B321 /* RCTConvert+REATransition.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8A8CC5BB726A951810D3CB4E255AFBB2 /* RNPanHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 647E440E1C472A931005B9A2923C8ADA /* RNPanHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8AA9337018EB7682DE357A7CE66B37C4 /* RCTProfile.m in Sources */ = {isa = PBXBuildFile; fileRef = 754919DD06036427D42CA0883EB46B1F /* RCTProfile.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 8B1DD7D55C9B8F15934C9146B1BC22D5 /* glog-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6FFC324CD762FE19295E1E5243AA9A76 /* glog-dummy.m */; }; - 8B4A5EFA46C771631880F96C6D857763 /* EXDownloadDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 5F28148803167A3A19E3F75039461C0B /* EXDownloadDelegate.m */; }; - 8BB585A9C50CAC66A9F27A07E47410AD /* RCTBackedTextInputDelegateAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 520DFEB7D216CE8AA4C99175BEEC5517 /* RCTBackedTextInputDelegateAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8BB9AE1787FD9D7C8F5388013BBCD2DD /* EXConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = 16105C0D605078B6F1D32288138590F7 /* EXConstants.m */; }; - 8BEEC8B68A6DBB6E5654A3F737CECC44 /* RCTPropsAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 625E0EFD383A33D7F882BBC3B12A0305 /* RCTPropsAnimatedNode.m */; }; - 8BFA0CC495C630A26304F814D6568F16 /* RCTSurfaceRootView.mm in Sources */ = {isa = PBXBuildFile; fileRef = C2B9EBBE030C8C9DC0049E9F5998C8E6 /* RCTSurfaceRootView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 8C2BF29F4764DC9F98F80FC8EC651EDC /* RCTProgressViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = EB3A92E598FC1648E4489D0823DC5E78 /* RCTProgressViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8C2F0ADB9BED6CDF94AD4FDE98640AE3 /* REACondNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 64FB95F4FD5F0BD02D45E6CA5F42CCF7 /* REACondNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8C3A4C844C73E0EB3D53E11D8C53419E /* RCTVirtualTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 572970113B665D053325DE721CD6F314 /* RCTVirtualTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8CAF43BDE275AFBE6325A8E319306FC2 /* RCTCameraManager.m in Sources */ = {isa = PBXBuildFile; fileRef = A07BA7286321363302BB46C5009ADF25 /* RCTCameraManager.m */; }; - 8D322E4671E9C9B8C64EE41ECFE1D8C3 /* RNFileSystem.h in Headers */ = {isa = PBXBuildFile; fileRef = 15564939E08FD811906387A1CAC2A74C /* RNFileSystem.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8D85FE66BE10530B549DA9D3100C67A0 /* UMLogManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 027E45DA2E825EBB33A4F1D35E899FC3 /* UMLogManager.m */; }; - 8DAEB93D750E0AF3C5087901C577737B /* FaceDetectorManagerMlkit.m in Sources */ = {isa = PBXBuildFile; fileRef = 6EFF6AA31AD0C200DD7670C80A0F7100 /* FaceDetectorManagerMlkit.m */; }; - 8DCDE6DD377E7D735ECC89252CA639FA /* REAClockNodes.m in Sources */ = {isa = PBXBuildFile; fileRef = 2E3164A41CFEA7355A3846A05EF95027 /* REAClockNodes.m */; }; - 8E51DA0F46072D058BFD6701155956F2 /* RCTMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = FDD45AFED0DBE1D96467F7E5E3731BD0 /* RCTMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8E5832ECB212349455D0A3202301BB20 /* RCTInspector.mm in Sources */ = {isa = PBXBuildFile; fileRef = B67C910F38A433A36F42D27D38770D44 /* RCTInspector.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 8E773D494A272503191518A6FC9BCB01 /* REATransition.m in Sources */ = {isa = PBXBuildFile; fileRef = 101832BC1197373EFED59FF5547F2704 /* REATransition.m */; }; - 8E80213E5EE273CC02792D31928E3A53 /* Pods-Gladeo_App-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 5B6417ADA0E0C08D2A68F8D9977DBA60 /* Pods-Gladeo_App-dummy.m */; }; - 8FA479C3B1D39A9BE6EE22A831A7ACF0 /* RCTDivisionAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = BEBD1817719495010A54D5DF04D9B4D0 /* RCTDivisionAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 900138304B7EAF4BC59E55F0BB17308F /* RCTTextSelection.h in Headers */ = {isa = PBXBuildFile; fileRef = 14E0ED3B8F5CCF12BD6C9B0E05D58099 /* RCTTextSelection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 905873241B5AF3ED7969719250E32487 /* RNGestureHandlerButton.h in Headers */ = {isa = PBXBuildFile; fileRef = BEA6A7677E45C4E4824F58DFACBFBEB1 /* RNGestureHandlerButton.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8B4A5EFA46C771631880F96C6D857763 /* EXDownloadDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 66A038DDFD79950D0B8DF6266FB00CBD /* EXDownloadDelegate.m */; }; + 8BB585A9C50CAC66A9F27A07E47410AD /* RCTBackedTextInputDelegateAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = A7BF460147BE7E60F26B9F23CEFF91EC /* RCTBackedTextInputDelegateAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8BB9AE1787FD9D7C8F5388013BBCD2DD /* EXConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = A17E2C6C9762C46BB50A58ACE410F9CC /* EXConstants.m */; }; + 8BEEC8B68A6DBB6E5654A3F737CECC44 /* RCTPropsAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 1435C217D7BE552E2924CCCE8022795A /* RCTPropsAnimatedNode.m */; }; + 8BFA0CC495C630A26304F814D6568F16 /* RCTSurfaceRootView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 143FC1623178F4EAAB73606002BB101D /* RCTSurfaceRootView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 8C2BF29F4764DC9F98F80FC8EC651EDC /* RCTProgressViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = C18C36CE503A7445165F3086223CEB03 /* RCTProgressViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8C2F0ADB9BED6CDF94AD4FDE98640AE3 /* REACondNode.h in Headers */ = {isa = PBXBuildFile; fileRef = C70CED965FB5F4EBFC87E552E5923B95 /* REACondNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8C3A4C844C73E0EB3D53E11D8C53419E /* RCTVirtualTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 4AEB93B318A3729FF2A6CD3AB1AA549C /* RCTVirtualTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8CAF43BDE275AFBE6325A8E319306FC2 /* RCTCameraManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 9131F71BD35058FC58D9574792059C0C /* RCTCameraManager.m */; }; + 8D322E4671E9C9B8C64EE41ECFE1D8C3 /* RNFileSystem.h in Headers */ = {isa = PBXBuildFile; fileRef = 4CF5E8ACEC420FC453C562E6F5E421A3 /* RNFileSystem.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8D85FE66BE10530B549DA9D3100C67A0 /* UMLogManager.m in Sources */ = {isa = PBXBuildFile; fileRef = A7EED9FC6A1B5CC8EE2099A4FD6820AE /* UMLogManager.m */; }; + 8DAEB93D750E0AF3C5087901C577737B /* FaceDetectorManagerMlkit.m in Sources */ = {isa = PBXBuildFile; fileRef = F4C035B1870E4EF64B7057572BAA6CC1 /* FaceDetectorManagerMlkit.m */; }; + 8DCDE6DD377E7D735ECC89252CA639FA /* REAClockNodes.m in Sources */ = {isa = PBXBuildFile; fileRef = 5927A2340243D96BE152909FFC064456 /* REAClockNodes.m */; }; + 8E51DA0F46072D058BFD6701155956F2 /* RCTMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = ADF5A9DB359B3E4333BBC0C07CEA3738 /* RCTMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8E5832ECB212349455D0A3202301BB20 /* RCTInspector.mm in Sources */ = {isa = PBXBuildFile; fileRef = 62629948206B22A5E1106A4A1EFDC6ED /* RCTInspector.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 8E773D494A272503191518A6FC9BCB01 /* REATransition.m in Sources */ = {isa = PBXBuildFile; fileRef = 20EDBA392CE0549EA72709998DAB4CF3 /* REATransition.m */; }; + 8FA479C3B1D39A9BE6EE22A831A7ACF0 /* RCTDivisionAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 3FCA3F86F4BB2A57CCE3934C74790A5C /* RCTDivisionAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 900138304B7EAF4BC59E55F0BB17308F /* RCTTextSelection.h in Headers */ = {isa = PBXBuildFile; fileRef = B3922BC1CCF6E018444C351A3ECFF2F2 /* RCTTextSelection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 905873241B5AF3ED7969719250E32487 /* RNGestureHandlerButton.h in Headers */ = {isa = PBXBuildFile; fileRef = C47D9D601A823B44E62E1C19E7A63E37 /* RNGestureHandlerButton.h */; settings = {ATTRIBUTES = (Project, ); }; }; 906844B36BE813F1185F2328AC300FF1 /* log_severity.h in Headers */ = {isa = PBXBuildFile; fileRef = 5470FCA3200C6C354A9D405B0CAED572 /* log_severity.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 90CE9D3E90CFF70CAC64D3FFA105AECF /* RNReanimated-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = AA240960F9D895D9E7EC797345D9BC76 /* RNReanimated-dummy.m */; }; - 91949AC285A6BBA809491B42C7E1CCEE /* RCTWrapperViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 21881733B97D17438FC094FE530B7022 /* RCTWrapperViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 91E6B9ADEE505C21F59904D244812A29 /* REAModule.h in Headers */ = {isa = PBXBuildFile; fileRef = F8E67343ED88E5D364A00E618788AD6F /* REAModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 92067B4091004BF297FF15F7E163CF66 /* REATransitionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 643A0E822C90AC526DCF4A33CA19597A /* REATransitionManager.m */; }; - 926ED46DF3426C4C0484B7ACB10D3A53 /* CompactValue.h in Headers */ = {isa = PBXBuildFile; fileRef = D118F4C2FFDC3359E0CD1553DBAA06C8 /* CompactValue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 90CE9D3E90CFF70CAC64D3FFA105AECF /* RNReanimated-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 84A85F0120AED5002847234ED187242A /* RNReanimated-dummy.m */; }; + 91949AC285A6BBA809491B42C7E1CCEE /* RCTWrapperViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B0D6213C0FE795D48F71DFB2402A121 /* RCTWrapperViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 91E6B9ADEE505C21F59904D244812A29 /* REAModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A315255C4E512F2B49708898B46E03D /* REAModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 92067B4091004BF297FF15F7E163CF66 /* REATransitionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F891D39C738DFEB4BB91A3C191307D2F /* REATransitionManager.m */; }; + 926ED46DF3426C4C0484B7ACB10D3A53 /* CompactValue.h in Headers */ = {isa = PBXBuildFile; fileRef = E5CC5E216E6FD16ADEEA68397817F7EF /* CompactValue.h */; settings = {ATTRIBUTES = (Project, ); }; }; 92A8544B73B2FA29B9CFDE72C5FDDBB6 /* strtod.h in Headers */ = {isa = PBXBuildFile; fileRef = F43FCD8A330E77FCD93B6F965AC85EE9 /* strtod.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 941A96DD0D421504D068FD078D0602E6 /* RCTAnimationDriver.h in Headers */ = {isa = PBXBuildFile; fileRef = 97A08FEA435D143D6AD23D0E2A24E997 /* RCTAnimationDriver.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 945D6E8B65673BFBFF53BA7F7813BDB1 /* REAJSCallNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 40D6370EE7D2ECEAFCC2742233571730 /* REAJSCallNode.m */; }; - 94B79681B3626D1B0ADAF24658520CA0 /* RCTTextTransform.h in Headers */ = {isa = PBXBuildFile; fileRef = 3147379C96305CF167B48640A8127951 /* RCTTextTransform.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 94CC36B1F47156B5B24A12C5B5016FC1 /* RCTCameraManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A67F9C8C8DAFB94DA3E38DE52E9755C8 /* RCTCameraManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 94E51A894191C6141B0E05AC8D760C94 /* RCTSinglelineTextInputViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46980176F3D5DF6E11953EA08A406928 /* RCTSinglelineTextInputViewManager.m */; }; - 9546C3D6A98C620F2DB05A6503A6B3FC /* RCTTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 21D16B827DCB58B7F8A3B6F05AC893D1 /* RCTTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 960B81835CCACE99EAF6D7301646A57D /* RNGestureHandler-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B16B67996C2B2F57E7297F99D3552851 /* RNGestureHandler-dummy.m */; }; - 96365DFDFEDC472DEA1732423F241192 /* RCTMultiplicationAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = D0D015F84A879F38F92D6B086D0716AD /* RCTMultiplicationAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 966E8B7C8E6DC6E3836A57319E4AC314 /* RCTSurfaceHostingView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 37F68DB47258C5125B3C036D3DD71A87 /* RCTSurfaceHostingView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 96748282A8C31ADC1EEB483B64A6B4EF /* Instance.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FE4EA72E608355434E1B7EFA11527BFC /* Instance.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 96B62D34BA1121CB6DEFFDF7737EC624 /* React-RCTNetwork-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0B713A2A0E9377333850709EFE96A555 /* React-RCTNetwork-dummy.m */; }; - 96EDC793BCC6B32364716ED591C13FE9 /* RCTURLRequestDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = F96DCA37D837C6F2F2C5D08670339A3A /* RCTURLRequestDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 96FEB9F17F3553A3EACC3D455D3DD5EE /* RCTConvertHelpers.h in Headers */ = {isa = PBXBuildFile; fileRef = 322970E7B7CE74EEF963ABCDFDE703A6 /* RCTConvertHelpers.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 973B16323C27A88CF7A725B8120785D2 /* RCTBundleURLProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 77950938D25254755107AF7A3DA3DAD3 /* RCTBundleURLProvider.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 97A76F51F564C0764C07F5CA05A71116 /* RCTProfileTrampoline-i386.S in Sources */ = {isa = PBXBuildFile; fileRef = C7F8B126526D1B81A074C6155523A3CD /* RCTProfileTrampoline-i386.S */; }; + 941A96DD0D421504D068FD078D0602E6 /* RCTAnimationDriver.h in Headers */ = {isa = PBXBuildFile; fileRef = A36714787BDC9C09238A282576623035 /* RCTAnimationDriver.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 945D6E8B65673BFBFF53BA7F7813BDB1 /* REAJSCallNode.m in Sources */ = {isa = PBXBuildFile; fileRef = D1BBBEE04A56BC661CB66C3B69F0873C /* REAJSCallNode.m */; }; + 94B79681B3626D1B0ADAF24658520CA0 /* RCTTextTransform.h in Headers */ = {isa = PBXBuildFile; fileRef = 87B246F7C81C625BE5D0AC880FA93FE6 /* RCTTextTransform.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 94CC36B1F47156B5B24A12C5B5016FC1 /* RCTCameraManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 37DF00E23E1BB6F18AC5F64EB7BF5340 /* RCTCameraManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 94E51A894191C6141B0E05AC8D760C94 /* RCTSinglelineTextInputViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 3F3E14DF533048AD6EDF6B99D5F2DF42 /* RCTSinglelineTextInputViewManager.m */; }; + 9546C3D6A98C620F2DB05A6503A6B3FC /* RCTTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D8C944CA73176CA901EDE3E863B88B5 /* RCTTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 960B81835CCACE99EAF6D7301646A57D /* RNGestureHandler-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 444D13031DEF10D1E52CBC5F648C17FD /* RNGestureHandler-dummy.m */; }; + 96365DFDFEDC472DEA1732423F241192 /* RCTMultiplicationAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F73506351EAC0C2FCEC307A5E5EB756 /* RCTMultiplicationAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 966E8B7C8E6DC6E3836A57319E4AC314 /* RCTSurfaceHostingView.mm in Sources */ = {isa = PBXBuildFile; fileRef = B95FAA85FEEA6A680A81144AEF1CB07E /* RCTSurfaceHostingView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 96748282A8C31ADC1EEB483B64A6B4EF /* Instance.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D88F85CB1ED49E43FB31F8775F2E190E /* Instance.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 96B62D34BA1121CB6DEFFDF7737EC624 /* React-RCTNetwork-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9E8DA04D446D49A1405485C619B83588 /* React-RCTNetwork-dummy.m */; }; + 96EDC793BCC6B32364716ED591C13FE9 /* RCTURLRequestDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 185510C96CC264AA2D629CFAEC175FEF /* RCTURLRequestDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 96FEB9F17F3553A3EACC3D455D3DD5EE /* RCTConvertHelpers.h in Headers */ = {isa = PBXBuildFile; fileRef = 23D4AD65058D3C2D9384417F25577FD3 /* RCTConvertHelpers.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 973B16323C27A88CF7A725B8120785D2 /* RCTBundleURLProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 9EC5B4816090F2B979DA04DA86AD4D26 /* RCTBundleURLProvider.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 97A76F51F564C0764C07F5CA05A71116 /* RCTProfileTrampoline-i386.S in Sources */ = {isa = PBXBuildFile; fileRef = CEB13D94EBD365FFC658C9740DB34393 /* RCTProfileTrampoline-i386.S */; }; 9800DC7966564B1161B1E75BC4FF8851 /* vlog_is_on.cc in Sources */ = {isa = PBXBuildFile; fileRef = 58B15695D149C2D25F437E2852DF1718 /* vlog_is_on.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; - 9842DA186F54F9D3BE5906663455016A /* RCTVideo.m in Sources */ = {isa = PBXBuildFile; fileRef = 9B6CF4CE2EF6CAF0023314C51A731B54 /* RCTVideo.m */; }; - 98AB2900FAC5CE54700374DEF87D2603 /* REAClockNodes.h in Headers */ = {isa = PBXBuildFile; fileRef = 095DCD84FC107612A095BDC9EBF23D8C /* REAClockNodes.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 990C114FE36C3BA307A4CEC634A01D41 /* TurboCxxModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 22D1752257CE12FD0D5E65D520ED73C7 /* TurboCxxModule.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 995F57F6E3A8F8F3F0CB975427339ADC /* TurboModuleBinding.h in Headers */ = {isa = PBXBuildFile; fileRef = 220576A80DC635CC4CF6A3C1561526FA /* TurboModuleBinding.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 997BB5826E9C4807492710451F38B50D /* YGLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = C9F2CBA84AF2BAE6EB1B6576CEC57531 /* YGLayout.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 99D9ACF54AF303E8C8673C96A782078D /* YGStyle.h in Headers */ = {isa = PBXBuildFile; fileRef = D8B835837892E769AA3C71DD4381FD98 /* YGStyle.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9A1503D5A59D8604310D86682FDAD21B /* RCTConvert+Transform.m in Sources */ = {isa = PBXBuildFile; fileRef = CD56FE84DA7F297F14C43F63D7424C76 /* RCTConvert+Transform.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 9AE25D78D388B01F02FAF32C7D81B390 /* RNCCameraRollManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 9902AB225D7811FDCE2770983C93E84C /* RNCCameraRollManager.m */; }; - 9B15CF2BC3988C63D85BE2EE805D15DF /* UMUIManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 61CC0F2E974A9DA420899A9A20FCDFA9 /* UMUIManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9B6011D862C3DE777B5033A993DEE577 /* RCTMultipartDataTask.h in Headers */ = {isa = PBXBuildFile; fileRef = FA979A2697E8F9E255F3F1367F77A8B2 /* RCTMultipartDataTask.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9B9478C37E0B0E137F466977AC305450 /* RCTHTTPRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 800B397DB693CC7307458BF5349CFF95 /* RCTHTTPRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9BDB0A9355A8B4F72059BAA4F80CA37B /* JSIndexedRAMBundle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F63234F177C29CB3C36B8E90CC251703 /* JSIndexedRAMBundle.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 9C24BABFEE18EA52934D28434186A63E /* RCTModuleData.h in Headers */ = {isa = PBXBuildFile; fileRef = 2734AB12BB05607E2FDBA7C29858766B /* RCTModuleData.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9CB9FE419E53CCA57DA123E4F5176E8E /* RCTTurboModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D3003F7E9A8E4C3D620728CF9908FEC /* RCTTurboModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9CED9EE5CB7376FF7FB07C9F43879FEC /* FBReactNativeSpec.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C39DFAE7B553C4559B43C5D60649D45 /* FBReactNativeSpec.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9D18AF70E0177B0738AF068F6DAB8A8C /* UMPermissionsInterface-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 926D97954AB1FD616C6DF2F154024A94 /* UMPermissionsInterface-dummy.m */; }; - 9D229AF64A1B002B8C19803BBF09A1C6 /* RCTActivityIndicatorView.m in Sources */ = {isa = PBXBuildFile; fileRef = E801AD9356AABC33998C08992344697D /* RCTActivityIndicatorView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 9D6AEC2BADA6415B32183279535FC3FD /* RNRotationHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 36F571DC41806C09AF333FD93F7CD527 /* RNRotationHandler.m */; }; - 9D71E2390B52C0F7A5D9EAE498DCEB54 /* RCTMultilineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C93B5840C6E0F129D4F74CCB9632334 /* RCTMultilineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9DA021A06A24EA8BA61A9A2952A1E3F0 /* RCTCxxMethod.h in Headers */ = {isa = PBXBuildFile; fileRef = 26BA9BDE276BB4626B8B352F14F3B2DB /* RCTCxxMethod.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9DBED9BFDAEB9C117F404995D7BA9584 /* RCTI18nUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = F21D3DD4E51A36DC4A13EBFE79AB2492 /* RCTI18nUtil.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 9E099915C46A56363AFF03614B49DB3B /* RCTFont.mm in Sources */ = {isa = PBXBuildFile; fileRef = 3C9B49C9439C57ECB512B8A679C2F83A /* RCTFont.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 9E32008552879FEDA6C5F164A6117A02 /* CoreModulesPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = 37C3FBCE136A14EB5D378A1986DBB1EE /* CoreModulesPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9E35AF16FA811ED54521FD4E6352E394 /* REAEventNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 5AEFA695FB3318CB3FD08089DE24C087 /* REAEventNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9E3FDFA5FE43DF56A9E6F0E2ADFD0521 /* REATransition.h in Headers */ = {isa = PBXBuildFile; fileRef = 33A4E2B28A76266CFF7488176DF4847A /* REATransition.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9EB9F21E83826E1555478815A28B90A4 /* RCTBridgeDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 85A1172C991511F2F7A66D6D1D438FD5 /* RCTBridgeDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A06205D7A934D7E5BC1E11C12C1058B4 /* RCTSurfaceSizeMeasureMode.mm in Sources */ = {isa = PBXBuildFile; fileRef = 21AE6A3C6DCDAC664A996A9C45E133A9 /* RCTSurfaceSizeMeasureMode.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - A0AC22118C8962749102FB00D8FAB60E /* RCTBaseTextInputShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 3AB5A6988F6F5CDB3360A8C89EE1165A /* RCTBaseTextInputShadowView.m */; }; - A0B595A814659739F0CE27F19AF0E842 /* RCTEventDispatcher.m in Sources */ = {isa = PBXBuildFile; fileRef = BC9271F21EF0A5B2E2926F82A3E134D0 /* RCTEventDispatcher.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - A108D0C39E6723A4722696896373F561 /* RNCAsyncStorageDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = F30F46E794B249FD88FCAE8CE32727E4 /* RNCAsyncStorageDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A1209A69F56B836D50AAAC3B2138D626 /* UMEventEmitterService.h in Headers */ = {isa = PBXBuildFile; fileRef = 40F095788E9E830E964CCDB47A3DC786 /* UMEventEmitterService.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A160E7803A3D5D4D61911F8F764617C3 /* RCTJSStackFrame.m in Sources */ = {isa = PBXBuildFile; fileRef = 8B930F9C0008B463196586ADE424DEF8 /* RCTJSStackFrame.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 9842DA186F54F9D3BE5906663455016A /* RCTVideo.m in Sources */ = {isa = PBXBuildFile; fileRef = 56805774687B0A4344863FB290C36401 /* RCTVideo.m */; }; + 98AB2900FAC5CE54700374DEF87D2603 /* REAClockNodes.h in Headers */ = {isa = PBXBuildFile; fileRef = 9962F8716FC1C25BD3B90A213604E7C4 /* REAClockNodes.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 990C114FE36C3BA307A4CEC634A01D41 /* TurboCxxModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AE1E9B0AD2301AC8764A8457A7E4AEA7 /* TurboCxxModule.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 995F57F6E3A8F8F3F0CB975427339ADC /* TurboModuleBinding.h in Headers */ = {isa = PBXBuildFile; fileRef = B173B113E341AF49AD9F89830F301CB0 /* TurboModuleBinding.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 997BB5826E9C4807492710451F38B50D /* YGLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A6D35461BE12F16D46B0828E59A9930 /* YGLayout.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 99D9ACF54AF303E8C8673C96A782078D /* YGStyle.h in Headers */ = {isa = PBXBuildFile; fileRef = AFE515FD08BDC9DB7624044BC2D6C1A6 /* YGStyle.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9A1503D5A59D8604310D86682FDAD21B /* RCTConvert+Transform.m in Sources */ = {isa = PBXBuildFile; fileRef = 4FDB8F086B18724E43CE496DE9C5B9A7 /* RCTConvert+Transform.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 9AE25D78D388B01F02FAF32C7D81B390 /* RNCCameraRollManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 4258A99E7C5F054C8980D97865DEF636 /* RNCCameraRollManager.m */; }; + 9B15CF2BC3988C63D85BE2EE805D15DF /* UMUIManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 86903C6E80AAD2D8DCFFFFBE4FF826D6 /* UMUIManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9B6011D862C3DE777B5033A993DEE577 /* RCTMultipartDataTask.h in Headers */ = {isa = PBXBuildFile; fileRef = DC2EA305BFDFE4CADC083EA149E1430F /* RCTMultipartDataTask.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9B9478C37E0B0E137F466977AC305450 /* RCTHTTPRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 31C93939583EC4FBAA1B76C7C881C181 /* RCTHTTPRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9BDB0A9355A8B4F72059BAA4F80CA37B /* JSIndexedRAMBundle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5179961A01992A597B40C719AC6C9E92 /* JSIndexedRAMBundle.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 9C24BABFEE18EA52934D28434186A63E /* RCTModuleData.h in Headers */ = {isa = PBXBuildFile; fileRef = 7DE57CCDFE8374965969D6D3CC6EFF80 /* RCTModuleData.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9CB9FE419E53CCA57DA123E4F5176E8E /* RCTTurboModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 84418C3F8035F27CAD1554CF3654D720 /* RCTTurboModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9CED9EE5CB7376FF7FB07C9F43879FEC /* FBReactNativeSpec.h in Headers */ = {isa = PBXBuildFile; fileRef = A52114C229DFA0C7355D82CF13BDC171 /* FBReactNativeSpec.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9D18AF70E0177B0738AF068F6DAB8A8C /* UMPermissionsInterface-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 93A2009511D617A6A19816B75D766D19 /* UMPermissionsInterface-dummy.m */; }; + 9D229AF64A1B002B8C19803BBF09A1C6 /* RCTActivityIndicatorView.m in Sources */ = {isa = PBXBuildFile; fileRef = EE6FF84176108F573AFE6CF97D7B1FDB /* RCTActivityIndicatorView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 9D6AEC2BADA6415B32183279535FC3FD /* RNRotationHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 04AAE2BB1F1F0F2C79341771AA61406D /* RNRotationHandler.m */; }; + 9D71E2390B52C0F7A5D9EAE498DCEB54 /* RCTMultilineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 2DDC53D355666FB708B641ACA9DFA1D0 /* RCTMultilineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9DA021A06A24EA8BA61A9A2952A1E3F0 /* RCTCxxMethod.h in Headers */ = {isa = PBXBuildFile; fileRef = FE44E822AFA7206FCC1F75369FB944CC /* RCTCxxMethod.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9DBED9BFDAEB9C117F404995D7BA9584 /* RCTI18nUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 584B2272272316C0D5E05461F638BF07 /* RCTI18nUtil.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 9E099915C46A56363AFF03614B49DB3B /* RCTFont.mm in Sources */ = {isa = PBXBuildFile; fileRef = 9ACD9ED56677B214E7CF8CDB8458B058 /* RCTFont.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 9E32008552879FEDA6C5F164A6117A02 /* CoreModulesPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = 0976C0A48EACFB544890B3FE2724FBFB /* CoreModulesPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9E35AF16FA811ED54521FD4E6352E394 /* REAEventNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 8345EA79D2AE85BC724E41A2F4EAB757 /* REAEventNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9E3FDFA5FE43DF56A9E6F0E2ADFD0521 /* REATransition.h in Headers */ = {isa = PBXBuildFile; fileRef = 0BE1A497289E5EF3532807BB0672CA50 /* REATransition.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9EB9F21E83826E1555478815A28B90A4 /* RCTBridgeDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = BC70A9FA10710502480A43FD3FC40313 /* RCTBridgeDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A06205D7A934D7E5BC1E11C12C1058B4 /* RCTSurfaceSizeMeasureMode.mm in Sources */ = {isa = PBXBuildFile; fileRef = E70FAEF34CCE817C4019070422ECB8FA /* RCTSurfaceSizeMeasureMode.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + A0AC22118C8962749102FB00D8FAB60E /* RCTBaseTextInputShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 884A8BAC45782BC545264E6FF40549D1 /* RCTBaseTextInputShadowView.m */; }; + A0B595A814659739F0CE27F19AF0E842 /* RCTEventDispatcher.m in Sources */ = {isa = PBXBuildFile; fileRef = 93E7A1D26B31B27E2A8C12AB7041ADA3 /* RCTEventDispatcher.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + A108D0C39E6723A4722696896373F561 /* RNCAsyncStorageDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = C27A5B3053D573439F05ADEACB33B0B5 /* RNCAsyncStorageDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A1209A69F56B836D50AAAC3B2138D626 /* UMEventEmitterService.h in Headers */ = {isa = PBXBuildFile; fileRef = E8E90B96855ACAE7CDC170CCBC415015 /* UMEventEmitterService.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A160E7803A3D5D4D61911F8F764617C3 /* RCTJSStackFrame.m in Sources */ = {isa = PBXBuildFile; fileRef = 033B1745CA220BFC72F1F3D298B2CBEA /* RCTJSStackFrame.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; A189673CE87F612ED3488113F9DAFE98 /* ieee.h in Headers */ = {isa = PBXBuildFile; fileRef = 960015C324FBB9A2A11B648A61C3741B /* ieee.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A22EF5FDB378EFD122EC00B1BB5DC7D1 /* RCTBackedTextInputDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 31ED1D95307ADA19B6E67C3A4C0C150D /* RCTBackedTextInputDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A2BE83DE6FF01B8F0B0E7D8B5DD9CC0D /* RCTVersion.m in Sources */ = {isa = PBXBuildFile; fileRef = E8443FABDF7C5A8A1A2E55B50A2FC032 /* RCTVersion.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - A2C124DAF0039F63864FDE72CF633349 /* RCTSourceCode.h in Headers */ = {isa = PBXBuildFile; fileRef = 06F52B42EC9DDCC305A56107335EF571 /* RCTSourceCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A314BCA6523D7CA45B9D895D89578287 /* UMLogHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = A92EFFF272A0EA0FC429F1F65C1ED263 /* UMLogHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A38D1D1C7A43023A1B0CA9950285C61A /* RCTMultipartStreamReader.h in Headers */ = {isa = PBXBuildFile; fileRef = 86F51720E6CC25F87EC645911BA0BC2D /* RCTMultipartStreamReader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A415AFE0F17D1746DC4BD0CF3E588F4D /* REAPropsNode.h in Headers */ = {isa = PBXBuildFile; fileRef = E66D5776E179E07849225A4FC13635BC /* REAPropsNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A4707508981C419446F3256053DE9844 /* TextDetectorManager.h in Headers */ = {isa = PBXBuildFile; fileRef = F6B415CD3D3D1F279141AEBD17BC3674 /* TextDetectorManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A4B467E40F7E342592B65F3AEC3D9E97 /* REAFunctionNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 62443AFFDFF8E94DF437377320E53C64 /* REAFunctionNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A4C63255CAB3DA53A9D697FD7FCC26B5 /* REAValueNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 9502895718D99FDD9BE1B59B77FA8DF8 /* REAValueNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A555C6E5ABAA5DB1F62A09D2BC49DA51 /* RCTTurboModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2F01FFBE2D79FE839B40A16B7B916E08 /* RCTTurboModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - A55F73E73A81AB3E9F61D647CE2A0FFF /* CoreModulesPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = EF9E0ACD61EF4DEABC4A1539EA59274D /* CoreModulesPlugins.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - A62ABA1DD4C7ACBE9B77643EBC1BAE1F /* UMLogManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A5D9A11FF1E5D2F0FECFE0BD52A7D9CA /* UMLogManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A68E7D29846405C373513533E57BF889 /* RNConvertPhAsset.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B7692F269BF71F9442A62622C719886 /* RNConvertPhAsset.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A6B0499FB2BB176BAF722A73A61DC3E7 /* UMAppDelegateWrapper.m in Sources */ = {isa = PBXBuildFile; fileRef = 9219A9EAFE7F8CA73B649E5714BB3A9B /* UMAppDelegateWrapper.m */; }; - A71E57B5FD8371D966838921ADD65DC0 /* RCTTextTransform.h in Headers */ = {isa = PBXBuildFile; fileRef = 3147379C96305CF167B48640A8127951 /* RCTTextTransform.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A726DBB575700243315EC1F897B408F7 /* RCTUITextField.m in Sources */ = {isa = PBXBuildFile; fileRef = 17317436ED9A7A90C34B38A5FE5073B8 /* RCTUITextField.m */; }; - A77A01D80082E702AE279FAE5FD9B59B /* RCTScrollContentShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2216D47FB74799240FA9DB388868F403 /* RCTScrollContentShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - A78CD47A72FE6E4E8EBA02A0B003CB1C /* RCTAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 6DF1C684F8FA9B21B88FFE1CC802CC70 /* RCTAnimatedNode.m */; }; - A7C6CA4554F58BB1C409F0F4A97C1656 /* RNVectorIconsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = AA35B0C12E917CD830D16D76E84276A0 /* RNVectorIconsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A8B6D15DA68092B480483FE020894204 /* EXFileSystemAssetLibraryHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 0BD2DE15973EF8B558064967993A72EE /* EXFileSystemAssetLibraryHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A8B8BEB2134D3E68B9907C5A48A04A03 /* RNGestureHandlerDirection.h in Headers */ = {isa = PBXBuildFile; fileRef = 76E4DF36734D9E52A45100D47D410604 /* RNGestureHandlerDirection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A8C335B8581CBE27F7AD7868CD4C9455 /* FaceDetectorManagerMlkit.h in Headers */ = {isa = PBXBuildFile; fileRef = 866D4FDACCD65D99CD3E2C54047F1AF0 /* FaceDetectorManagerMlkit.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A8F49D0AD682FAEC64FD0DFE710813EE /* RCTRefreshControlManager.m in Sources */ = {isa = PBXBuildFile; fileRef = FDD3F541E318D97EAF93260E1ADECF7E /* RCTRefreshControlManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - A9102589774A3FD3F3808AB2F0F83ACA /* RNNativeViewHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F3D8027A3E8EC9B86419A6E1408FD85 /* RNNativeViewHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AA4D3E08FA9673ABC3E47AB124A68D75 /* RCTWebSocketExecutor.m in Sources */ = {isa = PBXBuildFile; fileRef = A72E22033170BF0B3016A1CC0F7A8B74 /* RCTWebSocketExecutor.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - AA5F944B8A228102EAB6BF9BF25031DA /* EXRemoteNotificationPermissionRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 164B184AF133E1194BC37CA881F83CBD /* EXRemoteNotificationPermissionRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AA9FEF3F2CC1FD02BA55E9BBF3224367 /* RCTBackedTextInputDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 31ED1D95307ADA19B6E67C3A4C0C150D /* RCTBackedTextInputDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AACB290F406EFC33A121A3A29A0F7A77 /* RCTValueAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = C82261DE4B194D1977601A5BA2FAE640 /* RCTValueAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AAE3C47A93D1E6B9C643FEB27927CE4E /* EXReactNativeUserNotificationCenterProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = F64008AF993BEDDAC34E41757EEFDCD8 /* EXReactNativeUserNotificationCenterProxy.m */; }; - AB3D7DB1EA128DF34656E9FDFCDAEF1A /* RCTImageLoaderProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 295734123C3FA69B44FE968AE53B481C /* RCTImageLoaderProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A22EF5FDB378EFD122EC00B1BB5DC7D1 /* RCTBackedTextInputDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 57BF4C3322F0E2C42D8C11F0172E8333 /* RCTBackedTextInputDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A2BE83DE6FF01B8F0B0E7D8B5DD9CC0D /* RCTVersion.m in Sources */ = {isa = PBXBuildFile; fileRef = C264D7281EEE7DA399B203AABF03A69E /* RCTVersion.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + A2C124DAF0039F63864FDE72CF633349 /* RCTSourceCode.h in Headers */ = {isa = PBXBuildFile; fileRef = 9CFA89935F176E7D697AB88081FCEE28 /* RCTSourceCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A314BCA6523D7CA45B9D895D89578287 /* UMLogHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 501A8191399EA8C0F62DAD7631FE5EA9 /* UMLogHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A38D1D1C7A43023A1B0CA9950285C61A /* RCTMultipartStreamReader.h in Headers */ = {isa = PBXBuildFile; fileRef = 9804CC641A574D1DABD482B5A0A78475 /* RCTMultipartStreamReader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A415AFE0F17D1746DC4BD0CF3E588F4D /* REAPropsNode.h in Headers */ = {isa = PBXBuildFile; fileRef = C5704F5F904ABD7C69A42912ED134654 /* REAPropsNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A4707508981C419446F3256053DE9844 /* TextDetectorManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 084E3251816B4EF8BD4F282FC86D0A05 /* TextDetectorManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A4B467E40F7E342592B65F3AEC3D9E97 /* REAFunctionNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D1BA4CAD33A7AABB55DB558189A0D48 /* REAFunctionNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A4C63255CAB3DA53A9D697FD7FCC26B5 /* REAValueNode.h in Headers */ = {isa = PBXBuildFile; fileRef = BF4404D75AD35BE4987451ABF2094D66 /* REAValueNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A555C6E5ABAA5DB1F62A09D2BC49DA51 /* RCTTurboModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2CE00C535A3C1C7E11F55C6A73525A2B /* RCTTurboModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + A55F73E73A81AB3E9F61D647CE2A0FFF /* CoreModulesPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2037F14B0026EEFD238DD96CCCBD8CE9 /* CoreModulesPlugins.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + A62ABA1DD4C7ACBE9B77643EBC1BAE1F /* UMLogManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 2038C81182265457FB4A62C5DDAF2CDE /* UMLogManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A68E7D29846405C373513533E57BF889 /* RNConvertPhAsset.h in Headers */ = {isa = PBXBuildFile; fileRef = 16E6DAB056AC5626F73B00234449D321 /* RNConvertPhAsset.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A6B0499FB2BB176BAF722A73A61DC3E7 /* UMAppDelegateWrapper.m in Sources */ = {isa = PBXBuildFile; fileRef = 023F159855AD4AA4B4864AAE0282346E /* UMAppDelegateWrapper.m */; }; + A71E57B5FD8371D966838921ADD65DC0 /* RCTTextTransform.h in Headers */ = {isa = PBXBuildFile; fileRef = 87B246F7C81C625BE5D0AC880FA93FE6 /* RCTTextTransform.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A726DBB575700243315EC1F897B408F7 /* RCTUITextField.m in Sources */ = {isa = PBXBuildFile; fileRef = 8516EBBDBE13D1F2F45D2C8A98A47F63 /* RCTUITextField.m */; }; + A77A01D80082E702AE279FAE5FD9B59B /* RCTScrollContentShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 027EA9E05C3A69E6E63B9C7149C11C2C /* RCTScrollContentShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + A78CD47A72FE6E4E8EBA02A0B003CB1C /* RCTAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 3062B8DCD584F3B29EEA55917B69959F /* RCTAnimatedNode.m */; }; + A7C6CA4554F58BB1C409F0F4A97C1656 /* RNVectorIconsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = F5EDF193EBE3A1B89DCFC5CC23E2B153 /* RNVectorIconsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A8B6D15DA68092B480483FE020894204 /* EXFileSystemAssetLibraryHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = B51DBE3A02CBA8F41F7F3B28B45883EF /* EXFileSystemAssetLibraryHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A8B8BEB2134D3E68B9907C5A48A04A03 /* RNGestureHandlerDirection.h in Headers */ = {isa = PBXBuildFile; fileRef = BB5329DC83B405A969DCA856790D24FA /* RNGestureHandlerDirection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A8C335B8581CBE27F7AD7868CD4C9455 /* FaceDetectorManagerMlkit.h in Headers */ = {isa = PBXBuildFile; fileRef = 03DFAAF9F4306E7FC481BEAD34D65B22 /* FaceDetectorManagerMlkit.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A8F49D0AD682FAEC64FD0DFE710813EE /* RCTRefreshControlManager.m in Sources */ = {isa = PBXBuildFile; fileRef = ABBA53DEA836681216154574629882C3 /* RCTRefreshControlManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + A9102589774A3FD3F3808AB2F0F83ACA /* RNNativeViewHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 0803985A9E39A78B526693CBD1A6B90B /* RNNativeViewHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AA4D3E08FA9673ABC3E47AB124A68D75 /* RCTWebSocketExecutor.m in Sources */ = {isa = PBXBuildFile; fileRef = 2DFBF02FF4D8338947FB5CE4A536585F /* RCTWebSocketExecutor.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + AA5F944B8A228102EAB6BF9BF25031DA /* EXRemoteNotificationPermissionRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D63B378A9680A234B81C2861554C8AE /* EXRemoteNotificationPermissionRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AA9FEF3F2CC1FD02BA55E9BBF3224367 /* RCTBackedTextInputDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 57BF4C3322F0E2C42D8C11F0172E8333 /* RCTBackedTextInputDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AACB290F406EFC33A121A3A29A0F7A77 /* RCTValueAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 30E48F53448A97401A4CB46B784A0E0F /* RCTValueAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AAE3C47A93D1E6B9C643FEB27927CE4E /* EXReactNativeUserNotificationCenterProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3627C85245EE16785FB7291520CF12CB /* EXReactNativeUserNotificationCenterProxy.m */; }; + AB3D7DB1EA128DF34656E9FDFCDAEF1A /* RCTImageLoaderProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C07BD50991435BFFE23E8247AA3C733 /* RCTImageLoaderProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; AB6B490BE3CD6208CF2D24E3EB7C6E10 /* String.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FFBCDAEF9450AA561AD8CF897E247CB5 /* String.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - AB71242585E87C1ABAFF732A17092713 /* RNGestureHandlerModule.h in Headers */ = {isa = PBXBuildFile; fileRef = FA9C493D552E04C239CB8C70BD8443CB /* RNGestureHandlerModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AB884FAC11DD84E9F0FC2007572B8F94 /* UMNativeModulesProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 4FA78F58D3015EADFA8E270108949172 /* UMNativeModulesProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ABE34A7F75F57F78DF7BE31C00746692 /* RCTModalHostViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A21B276A3A3FB7598CF0260C179E61B0 /* RCTModalHostViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ABEF1973E5E4D967429811B3FFC3929E /* RCTProfileTrampoline-arm.S in Sources */ = {isa = PBXBuildFile; fileRef = 2698781D458D7E07D6B25084717B4A49 /* RCTProfileTrampoline-arm.S */; }; - ABF2CC2A82B21BD83C54BC8D8459AB63 /* log.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D2292D7D85D5D1A841A1621A1D568EE /* log.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AC9944ECE62178BDA9261452756A6AF2 /* RCTVirtualTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 572970113B665D053325DE721CD6F314 /* RCTVirtualTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ACD5CDAB5F0724B498437299A32FECCA /* REANode.m in Sources */ = {isa = PBXBuildFile; fileRef = C2A513347E8430C2F092059CC8C2CA99 /* REANode.m */; }; - AD18B7A0E8DDDC93415D37E22B649F4A /* RCTShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 157E37FFD31C5E5441089C528A3E0AC6 /* RCTShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AD51BA43873DFE8CC3C27D856A4546DB /* Yoga-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 79D1435DA08FDE2A133FBAE503127873 /* Yoga-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ADA3946EAA2980DADA40C2E59980D292 /* RNCSafeAreaView.h in Headers */ = {isa = PBXBuildFile; fileRef = 843E7E466AA9271CF17157DDDF57A6CB /* RNCSafeAreaView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AE08FA419970B66549AAF2284CD5B021 /* RCTInputAccessoryViewContent.m in Sources */ = {isa = PBXBuildFile; fileRef = 0837D52D173358E60A915D76FC33EFDD /* RCTInputAccessoryViewContent.m */; }; - AE5CEE065C8159B8373F9DE61F2AD5C1 /* CxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = BF1A98845E48D5BF8842906200736FEA /* CxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AE88EFDF5C41BA06BB594DC237671600 /* RCTBaseTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = C4880304D640F32E7F110A7562FA37FA /* RCTBaseTextViewManager.m */; }; - AEB75D4031965EEFA6CB951EBCFD4B0B /* RCTTrackingAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 067E27503D71F084343D81F902CBE450 /* RCTTrackingAnimatedNode.m */; }; - AF1B27C6FB5F1552E8E3CDB62EB948A3 /* Yoga.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8DBDEDFDDB833FD4C45AF20DAEFDC440 /* Yoga.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - AFA988F46AAC347C3B02DAD46AF0F9D4 /* RCTModuleMethod.h in Headers */ = {isa = PBXBuildFile; fileRef = F2EC7E37574AC9B8A51A4964B13BF358 /* RCTModuleMethod.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B0262F59F567CC35EDBE9E329078AC8A /* RCTMessageThread.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1C65F90F71788A3CDF8D5312CC90EE91 /* RCTMessageThread.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - B0649287E8C6F9F4101DB57FDFBDC5E2 /* REANodesManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 23AE07067A927E618EF93901F1262224 /* REANodesManager.m */; }; - B084CFF79C9861F55BE5D25D33FB2E4D /* RCTReconnectingWebSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D3D6EB447E676CD896B62D403EF494A /* RCTReconnectingWebSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AB71242585E87C1ABAFF732A17092713 /* RNGestureHandlerModule.h in Headers */ = {isa = PBXBuildFile; fileRef = F8CEC9AD6669928BAFCE66B5CCACCED5 /* RNGestureHandlerModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AB884FAC11DD84E9F0FC2007572B8F94 /* UMNativeModulesProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 8677605B478C464AAC1169BED97B39A8 /* UMNativeModulesProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ABE34A7F75F57F78DF7BE31C00746692 /* RCTModalHostViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C8F8716376386C42E85842A7ADF32C0 /* RCTModalHostViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ABEF1973E5E4D967429811B3FFC3929E /* RCTProfileTrampoline-arm.S in Sources */ = {isa = PBXBuildFile; fileRef = D710B1564976AA707D9E49212A760C03 /* RCTProfileTrampoline-arm.S */; }; + ABF2CC2A82B21BD83C54BC8D8459AB63 /* log.h in Headers */ = {isa = PBXBuildFile; fileRef = FBD08346B1B7A0645ED1847CCFA8C88D /* log.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AC9944ECE62178BDA9261452756A6AF2 /* RCTVirtualTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 4AEB93B318A3729FF2A6CD3AB1AA549C /* RCTVirtualTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ACD5CDAB5F0724B498437299A32FECCA /* REANode.m in Sources */ = {isa = PBXBuildFile; fileRef = 897C54A5BC791B5298653BA6E3D2375A /* REANode.m */; }; + AD18B7A0E8DDDC93415D37E22B649F4A /* RCTShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 1912A6D0B8774B430E5C7A3E8AD6C793 /* RCTShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AD51BA43873DFE8CC3C27D856A4546DB /* Yoga-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C569B606DC4A3DD8A2825006AA644F5 /* Yoga-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ADA3946EAA2980DADA40C2E59980D292 /* RNCSafeAreaView.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D883740CD80A8DB07979F6D98CDEA61 /* RNCSafeAreaView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AE08FA419970B66549AAF2284CD5B021 /* RCTInputAccessoryViewContent.m in Sources */ = {isa = PBXBuildFile; fileRef = B6E8DD7802A68BF929AF0C21DA4C51DE /* RCTInputAccessoryViewContent.m */; }; + AE5CEE065C8159B8373F9DE61F2AD5C1 /* CxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 86FBC0B18E4962A47569D4089AD9060E /* CxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AE88EFDF5C41BA06BB594DC237671600 /* RCTBaseTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = E1884924F14DFAD13C954F03C32F4CF2 /* RCTBaseTextViewManager.m */; }; + AEB75D4031965EEFA6CB951EBCFD4B0B /* RCTTrackingAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = F348E67BEE0085C8EEDD35F44F176B14 /* RCTTrackingAnimatedNode.m */; }; + AF1B27C6FB5F1552E8E3CDB62EB948A3 /* Yoga.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DD0CD1B01D58A2020035BCF25DD877A1 /* Yoga.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + AFA988F46AAC347C3B02DAD46AF0F9D4 /* RCTModuleMethod.h in Headers */ = {isa = PBXBuildFile; fileRef = BAFC2F59B7AA5F73EB0F8C16C1470DB4 /* RCTModuleMethod.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B0262F59F567CC35EDBE9E329078AC8A /* RCTMessageThread.mm in Sources */ = {isa = PBXBuildFile; fileRef = 068EF292DD569F13D468971AA62917F5 /* RCTMessageThread.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + B0649287E8C6F9F4101DB57FDFBDC5E2 /* REANodesManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 95B242A9F97824608EDB42A9C49EB813 /* REANodesManager.m */; }; + B084CFF79C9861F55BE5D25D33FB2E4D /* RCTReconnectingWebSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 62F8E28C1BBFFA4B67CF7E437E7D165C /* RCTReconnectingWebSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; B0B59FA17582A70333F69C23652A32D6 /* signalhandler.cc in Sources */ = {isa = PBXBuildFile; fileRef = 71E5E83FF94F52A0A4A21853829164C9 /* signalhandler.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; - B0CDE34AEDD71502678BE73D9D85D59C /* CameraFocusSquare.m in Sources */ = {isa = PBXBuildFile; fileRef = 5E649318998C6A5430F3CDE02BA51186 /* CameraFocusSquare.m */; }; - B1208ABEFA22504998B800C8C953EEED /* RNTapHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 112DA1F3ED74934A7764E435DFBED505 /* RNTapHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B16724A8F7C19E4FC4BD422274463B4F /* RCTCxxModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = BA0D02AB25FD68CE5D6938980F487B06 /* RCTCxxModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + B0CDE34AEDD71502678BE73D9D85D59C /* CameraFocusSquare.m in Sources */ = {isa = PBXBuildFile; fileRef = 550B5EE61F73825430ECF964A49C05A6 /* CameraFocusSquare.m */; }; + B1208ABEFA22504998B800C8C953EEED /* RNTapHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A97F230E660BEF62DB9BF866A45EFEE /* RNTapHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B16724A8F7C19E4FC4BD422274463B4F /* RCTCxxModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = 666FC157E5FFE289E0E367F117200C85 /* RCTCxxModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; B24DA0CD9143E6B032CDF58ED5E0289F /* Folly-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A4FEA76D779F17972F10DC9E920A5CC4 /* Folly-dummy.m */; }; - B27BA7F21D6F636713330F5EC0FD8633 /* REAConcatNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 600211BA79C0EAEB5B49D9A99278FBAA /* REAConcatNode.m */; }; - B2C2527A1FF9C1DC23B0DCA3EC826247 /* React-RCTLinking-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 014FE4B40633076A3A4334E076148E47 /* React-RCTLinking-dummy.m */; }; - B3539346B1C9E6FD20FE4154AF13EEC1 /* RCTRedBox.m in Sources */ = {isa = PBXBuildFile; fileRef = 077E612CE09C09CCF429BC58654C4D23 /* RCTRedBox.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - B35B5D8E6D76DADE212DF6B6C86A60C4 /* react-native-orientation-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C476E58380310A71AB3B95A564666610 /* react-native-orientation-dummy.m */; }; - B3B86426245AD3207D9474A2D05E85ED /* React-jsinspector-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = AE256E6A9C11D469359003E1DC7AE7DE /* React-jsinspector-dummy.m */; }; - B4078508AC34C3783089C450D5ABE6B0 /* RCTLocalAssetImageLoader.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B48C579089EA1FEAFD47034E328993D /* RCTLocalAssetImageLoader.m */; }; - B4681C085E07706AAD0AC18E0183E0ED /* RNGestureHandlerRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = AEDED901194A7C82DD4B794089A3EF1D /* RNGestureHandlerRegistry.m */; }; - B47DAC5CAA4AC680D3180C307BFFCED9 /* RCTPerfMonitor.m in Sources */ = {isa = PBXBuildFile; fileRef = F24171EB5D139C46DCC84BEB3E4DE0E2 /* RCTPerfMonitor.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - B4BD045C0010A019A59B05DB94275A55 /* REAJSCallNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 512A2C5F4AC9A891FFEBC459EC89CF9D /* REAJSCallNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B4DAB21BCAD302B508475FDFDB78409B /* RCTPackagerConnection.mm in Sources */ = {isa = PBXBuildFile; fileRef = FB0385AC837AEDF1F30127B5FEB97EF5 /* RCTPackagerConnection.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - B5109084AB1C72F568AFDEE188E22825 /* NSTextStorage+FontScaling.h in Headers */ = {isa = PBXBuildFile; fileRef = 1482F37D0F4EBBE275207AC077784DA9 /* NSTextStorage+FontScaling.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B51985E814CD545D8F72520796A8BED1 /* RCTInvalidating.h in Headers */ = {isa = PBXBuildFile; fileRef = A63FC4F6AAD03E59182B41BE8B64FAAF /* RCTInvalidating.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B56D6522E9DBE1544BF2B20FD944A8D8 /* RCTNativeAnimatedNodesManager.h in Headers */ = {isa = PBXBuildFile; fileRef = C970F1F2028F7E825154FB3532920205 /* RCTNativeAnimatedNodesManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B5994B4DC92F837840F25C4C48692423 /* RCTNativeAnimatedModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 89C2C4DE17D0C265FA92BEF480EEFB53 /* RCTNativeAnimatedModule.m */; }; + B27BA7F21D6F636713330F5EC0FD8633 /* REAConcatNode.m in Sources */ = {isa = PBXBuildFile; fileRef = E8BB1C92171F980A036F15CF703D2655 /* REAConcatNode.m */; }; + B2C2527A1FF9C1DC23B0DCA3EC826247 /* React-RCTLinking-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 282C7D94A04847EB9FA6AE0BD259F8D8 /* React-RCTLinking-dummy.m */; }; + B3539346B1C9E6FD20FE4154AF13EEC1 /* RCTRedBox.m in Sources */ = {isa = PBXBuildFile; fileRef = 0005E70164CDFF3B3206CB0F8EBF8E75 /* RCTRedBox.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + B35B5D8E6D76DADE212DF6B6C86A60C4 /* react-native-orientation-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9E48BE69E25DFF1B74EE92BCE148F2E7 /* react-native-orientation-dummy.m */; }; + B3B86426245AD3207D9474A2D05E85ED /* React-jsinspector-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E552C4DDCC56FB6ADD1E9DEDCBC41C9A /* React-jsinspector-dummy.m */; }; + B4078508AC34C3783089C450D5ABE6B0 /* RCTLocalAssetImageLoader.m in Sources */ = {isa = PBXBuildFile; fileRef = 28E9F8D2113326A2244D7F4A71CB7ED0 /* RCTLocalAssetImageLoader.m */; }; + B4681C085E07706AAD0AC18E0183E0ED /* RNGestureHandlerRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = 1569131E6999C5BD135B6C6CCE9613D0 /* RNGestureHandlerRegistry.m */; }; + B47DAC5CAA4AC680D3180C307BFFCED9 /* RCTPerfMonitor.m in Sources */ = {isa = PBXBuildFile; fileRef = C5DB47E4D1D7655780FE690C51A332B7 /* RCTPerfMonitor.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + B4BD045C0010A019A59B05DB94275A55 /* REAJSCallNode.h in Headers */ = {isa = PBXBuildFile; fileRef = C2A32AD7DEE14D8BC0E2F5C7A7B368AC /* REAJSCallNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B4DAB21BCAD302B508475FDFDB78409B /* RCTPackagerConnection.mm in Sources */ = {isa = PBXBuildFile; fileRef = 007D1CC115DFD9D5AE3B637D7422A780 /* RCTPackagerConnection.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + B5109084AB1C72F568AFDEE188E22825 /* NSTextStorage+FontScaling.h in Headers */ = {isa = PBXBuildFile; fileRef = E7B2BB32FCF0F092E6BE401E426BDA86 /* NSTextStorage+FontScaling.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B51985E814CD545D8F72520796A8BED1 /* RCTInvalidating.h in Headers */ = {isa = PBXBuildFile; fileRef = D84ABB41D3D5DDFDDBDDB14C7A267A55 /* RCTInvalidating.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B56D6522E9DBE1544BF2B20FD944A8D8 /* RCTNativeAnimatedNodesManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 92EA2FA2BC9283B558A8FB35FEE7131E /* RCTNativeAnimatedNodesManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B5994B4DC92F837840F25C4C48692423 /* RCTNativeAnimatedModule.m in Sources */ = {isa = PBXBuildFile; fileRef = F528BBEB9617135FFBC85E9A066D5D28 /* RCTNativeAnimatedModule.m */; }; B59D37D2CFF577A6226C70FAED9EA531 /* symbolize.cc in Sources */ = {isa = PBXBuildFile; fileRef = 87FFB3FA9C29696B0DD9B99AC1679381 /* symbolize.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; - B663FEEF6DDA20F7A4C3A750029E1C7E /* UMExportedModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 5B4C22897017D0D00F4836C2CD2D8A32 /* UMExportedModule.m */; }; - B67C1013B73E7F795FCAFF91C0414A86 /* RCTClipboard.m in Sources */ = {isa = PBXBuildFile; fileRef = E1D892D52509A41E45A420C9BDEA509D /* RCTClipboard.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - B711DC0A736D6097B0F95C7D1A976246 /* RCTDisplayLink.h in Headers */ = {isa = PBXBuildFile; fileRef = D534C0D10BAD2A44DEE6CFD4876B7DAB /* RCTDisplayLink.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B73A61F34B008CCB1DAC3621D458D69B /* RCTTouchHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 807AECB982EB97A888AE9E276AFD5749 /* RCTTouchHandler.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - B76E9345993F77912E36B899C50E0D03 /* RCTScrollContentView.h in Headers */ = {isa = PBXBuildFile; fileRef = BC0A767680AA2AAAE602C039A71661B3 /* RCTScrollContentView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B7960B2A4F1B3A056186D0BCD8F4EBAD /* EXReactNativeUserNotificationCenterProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 604F96CA21DA985827609DE6F4577FCD /* EXReactNativeUserNotificationCenterProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B809511BC0E992CA4B37C5D757DD2C64 /* REATransitionAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 670DD1EDD4BB93F4E9846454B3CB5C99 /* REATransitionAnimation.m */; }; - B8288C1D694F4E09B3E05A8870626172 /* RCTSwitch.m in Sources */ = {isa = PBXBuildFile; fileRef = 06FF1B86279EC5C934ECB60C16D5B9C0 /* RCTSwitch.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - B83F9F62BDE5B8069E75C2D9BC6283F9 /* threadsafe.h in Headers */ = {isa = PBXBuildFile; fileRef = 94BB76D024184AF88F0AC994CA1D89DC /* threadsafe.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B847045B9594652516104C8D9F96040A /* RCTSurfaceHostingView.h in Headers */ = {isa = PBXBuildFile; fileRef = 3BFEDEC95A48DE06F0F9A4BE8CE1ABD6 /* RCTSurfaceHostingView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B8658BECB241EAF328A8179AD782433E /* RCTAlertManager.m in Sources */ = {isa = PBXBuildFile; fileRef = FA84C403E623B17058851E24086D6741 /* RCTAlertManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - B8C46A54C9193FD97A1F9C644037740B /* jsilib.h in Headers */ = {isa = PBXBuildFile; fileRef = 38D0F374AB8C10D9372084EF97E14BE7 /* jsilib.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B8E1B2766B8F4286673BA0B890B66089 /* RCTErrorCustomizer.h in Headers */ = {isa = PBXBuildFile; fileRef = C91132CA3291AEF4B3AC1657672B88F8 /* RCTErrorCustomizer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B8E6AA5140889B505D7C041C2BDE358D /* RCTImageUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 2ED3AF2EDD33ED334632267202BF010F /* RCTImageUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B932DBA4FA44BE82A70E53761463B47F /* RCTSinglelineTextInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = 5F33ADFE567B686958709945AC9F113C /* RCTSinglelineTextInputView.m */; }; - B9405D10CD2B01033E11D8E45E3994EE /* RCTVideoManager.m in Sources */ = {isa = PBXBuildFile; fileRef = DCA7EF4205A31B5D1E64F03E81059447 /* RCTVideoManager.m */; }; - B942D61EF09F4C379437E77204188557 /* UMViewManagerAdapterClassesRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = C4A0BADCC27407CA7A88BFD598740FCF /* UMViewManagerAdapterClassesRegistry.m */; }; - B94843E17F5FA92FF4512E2B8B434F8D /* RNCamera.m in Sources */ = {isa = PBXBuildFile; fileRef = C16C3CC1916DDC683966A0D5EA5C2636 /* RNCamera.m */; }; - B9B71E4D06047FCF2117114B0FF8BFB5 /* RCTSlider.h in Headers */ = {isa = PBXBuildFile; fileRef = D2D07B3C8561E7B757023EDE0F95F2BB /* RCTSlider.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B9CE32CCD128B13B2F754DD3CB76AFE0 /* RCTModalHostView.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B9F478CDE5117AE104F775B6AC24017 /* RCTModalHostView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BA3FC11A7C0C6E05CCD7A3FC12B22217 /* RCTRedBoxExtraDataViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2A09EFA9EB4AFDB37AD112F31E313FB2 /* RCTRedBoxExtraDataViewController.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - BAD5815289C220326E9F1D7CB5DE4680 /* UMErrorCodes.m in Sources */ = {isa = PBXBuildFile; fileRef = 833A1F30F1602B4686727D01E6BA8A0D /* UMErrorCodes.m */; }; - BB3E17305A788D135849D08536601622 /* RCTInputAccessoryShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 7B08C817C2A4CA86C666144054103956 /* RCTInputAccessoryShadowView.m */; }; - BBA18A1809A7D9CEA4DD967A2F57589C /* RCTBaseTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 3458FEF3282F71C742DBFED0F4ACE5F2 /* RCTBaseTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BC078CE9778D7673FDA393A34CCD0620 /* RCTUITextField.h in Headers */ = {isa = PBXBuildFile; fileRef = 3414968FA24E930067023BA989525279 /* RCTUITextField.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BD09DEECB6F7F6CF4436824C9E689186 /* react-native-safe-area-context-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = DAE0DB364751BABFC4333A2018736367 /* react-native-safe-area-context-dummy.m */; }; - BD2F3A5D3BE9EBE838733CC340E19BB2 /* RCTBaseTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = C03DE86B6183B91A2D1002ECD0F3C633 /* RCTBaseTextShadowView.m */; }; - BDB930D0EA25A5176E47B3C2928E6D68 /* RCTImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = 229D4E674C556D84E3A6FAFE16BA698D /* RCTImageView.m */; }; - BE4A011C4EB3BF3C61E7A1464307AD7C /* RCTHTTPRequestHandler.mm in Sources */ = {isa = PBXBuildFile; fileRef = 45A3A1959E89CB7A924A5F5DBEE5A886 /* RCTHTTPRequestHandler.mm */; }; - BEB36E500C7AD02AAB33B43BF82553C1 /* RCTFrameUpdate.h in Headers */ = {isa = PBXBuildFile; fileRef = 14F57078C1B912051D87EAB514928A02 /* RCTFrameUpdate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B663FEEF6DDA20F7A4C3A750029E1C7E /* UMExportedModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 566EC866F2FE6329E9AD0D239732284A /* UMExportedModule.m */; }; + B67C1013B73E7F795FCAFF91C0414A86 /* RCTClipboard.m in Sources */ = {isa = PBXBuildFile; fileRef = 2EBC887BD603FCF68C3BFC86D907DB5E /* RCTClipboard.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + B711DC0A736D6097B0F95C7D1A976246 /* RCTDisplayLink.h in Headers */ = {isa = PBXBuildFile; fileRef = DE81447EB452C9AD6354A9C3D8E90280 /* RCTDisplayLink.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B73A61F34B008CCB1DAC3621D458D69B /* RCTTouchHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 869158775941F341280BA71930DB984D /* RCTTouchHandler.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + B76E9345993F77912E36B899C50E0D03 /* RCTScrollContentView.h in Headers */ = {isa = PBXBuildFile; fileRef = 8AA26B89B90521B1C98D6A84013A9C85 /* RCTScrollContentView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B7960B2A4F1B3A056186D0BCD8F4EBAD /* EXReactNativeUserNotificationCenterProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 66D7175AF5EF95F35D9CFB4B360EEAFB /* EXReactNativeUserNotificationCenterProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B809511BC0E992CA4B37C5D757DD2C64 /* REATransitionAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 7AEC7B08D47B95D8F1162E0711769ECA /* REATransitionAnimation.m */; }; + B8288C1D694F4E09B3E05A8870626172 /* RCTSwitch.m in Sources */ = {isa = PBXBuildFile; fileRef = 1B291E1D20E76324FC9EA3C11C68B8B7 /* RCTSwitch.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + B83F9F62BDE5B8069E75C2D9BC6283F9 /* threadsafe.h in Headers */ = {isa = PBXBuildFile; fileRef = ACA84FD7D9EC2C88AF577CC08132B709 /* threadsafe.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B847045B9594652516104C8D9F96040A /* RCTSurfaceHostingView.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E0C796F08D3E3D7B72FCEE5115D99E8 /* RCTSurfaceHostingView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B8658BECB241EAF328A8179AD782433E /* RCTAlertManager.m in Sources */ = {isa = PBXBuildFile; fileRef = E3074A6DCCBC150DDB6DDC69B5383512 /* RCTAlertManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + B8C46A54C9193FD97A1F9C644037740B /* jsilib.h in Headers */ = {isa = PBXBuildFile; fileRef = 115214FBA4EDFED79A5DB7A29E309F27 /* jsilib.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B8E1B2766B8F4286673BA0B890B66089 /* RCTErrorCustomizer.h in Headers */ = {isa = PBXBuildFile; fileRef = BEBC596E8638F1F2819A6828DBE4366A /* RCTErrorCustomizer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B8E6AA5140889B505D7C041C2BDE358D /* RCTImageUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = F85CBD7C6F5037CCDE62675ED5541350 /* RCTImageUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B932DBA4FA44BE82A70E53761463B47F /* RCTSinglelineTextInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = 4DD38D4F2FB487D4F3CEAFDF75A693F8 /* RCTSinglelineTextInputView.m */; }; + B9405D10CD2B01033E11D8E45E3994EE /* RCTVideoManager.m in Sources */ = {isa = PBXBuildFile; fileRef = C8A704030CF4B9DB26BC1AE2FA54ACA8 /* RCTVideoManager.m */; }; + B942D61EF09F4C379437E77204188557 /* UMViewManagerAdapterClassesRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = 3AFF82016765511ECC8267629165A92F /* UMViewManagerAdapterClassesRegistry.m */; }; + B94843E17F5FA92FF4512E2B8B434F8D /* RNCamera.m in Sources */ = {isa = PBXBuildFile; fileRef = CEFAFCF3422708163F62A4C0FD92BD3E /* RNCamera.m */; }; + B9B71E4D06047FCF2117114B0FF8BFB5 /* RCTSlider.h in Headers */ = {isa = PBXBuildFile; fileRef = D6BC9B67EF47A79A63B94B2433F577D7 /* RCTSlider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B9CE32CCD128B13B2F754DD3CB76AFE0 /* RCTModalHostView.h in Headers */ = {isa = PBXBuildFile; fileRef = B39D9ABDE0B3B30EC13029D95F9E1B71 /* RCTModalHostView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BA3FC11A7C0C6E05CCD7A3FC12B22217 /* RCTRedBoxExtraDataViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 98CCE817C111B6B202BC9C93472A3BC4 /* RCTRedBoxExtraDataViewController.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + BAD5815289C220326E9F1D7CB5DE4680 /* UMErrorCodes.m in Sources */ = {isa = PBXBuildFile; fileRef = 3E46702D5F8738D878AF64F2FBC6BE75 /* UMErrorCodes.m */; }; + BB3E17305A788D135849D08536601622 /* RCTInputAccessoryShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 9462A3FC7BE6A36F90F46BDA99E04633 /* RCTInputAccessoryShadowView.m */; }; + BBA18A1809A7D9CEA4DD967A2F57589C /* RCTBaseTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D78EB8750DC2045728DB7B116D2D4DA /* RCTBaseTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BC078CE9778D7673FDA393A34CCD0620 /* RCTUITextField.h in Headers */ = {isa = PBXBuildFile; fileRef = F6A5A8BD0F9EB01D3547E58B7CC26285 /* RCTUITextField.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BD09DEECB6F7F6CF4436824C9E689186 /* react-native-safe-area-context-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3A5645A6165F061A35A9C4260C436883 /* react-native-safe-area-context-dummy.m */; }; + BD2F3A5D3BE9EBE838733CC340E19BB2 /* RCTBaseTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 6A98A91B5B09E6B622CC04643E8748F5 /* RCTBaseTextShadowView.m */; }; + BDB930D0EA25A5176E47B3C2928E6D68 /* RCTImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = 1E915664A5E16084BA46C2BF3C354F49 /* RCTImageView.m */; }; + BE4A011C4EB3BF3C61E7A1464307AD7C /* RCTHTTPRequestHandler.mm in Sources */ = {isa = PBXBuildFile; fileRef = D89D04B80239B0D5C25AAB670263D3CB /* RCTHTTPRequestHandler.mm */; }; + BEB36E500C7AD02AAB33B43BF82553C1 /* RCTFrameUpdate.h in Headers */ = {isa = PBXBuildFile; fileRef = D9FF789928E6E3D83C537D98694E96E3 /* RCTFrameUpdate.h */; settings = {ATTRIBUTES = (Project, ); }; }; BEC1052E6EC8BDA846B649FFD43F6826 /* cached-powers.h in Headers */ = {isa = PBXBuildFile; fileRef = EF8FD382D1231A72ACCFEFECB6726CAC /* cached-powers.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BED0FC9FCD92D79E60833F7BCE953B90 /* UMNativeModulesProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = C5189A30922755C9BBF86CEA5EA31FF5 /* UMNativeModulesProxy.m */; }; - BF2CC947A4C41569B3A195A9B21F9713 /* RCTVideoPlayerViewControllerDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 12C2D159AEE0B3530469B437EB1BC015 /* RCTVideoPlayerViewControllerDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BF5BFFED0F9BE163BFED37CECF6D034D /* RCTErrorInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 086899C963756EA81D3BF66068B998F7 /* RCTErrorInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C080E71D0C6CDE3C7D84D56D70CC3305 /* RCTSurfaceDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = C4B119A8AAC5E979C098B537A87B1A61 /* RCTSurfaceDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C08B14F8E317755AB9F8F2D70FA22B16 /* RCTActivityIndicatorView.h in Headers */ = {isa = PBXBuildFile; fileRef = C07C61D3CB14F6722D3F4A411DBF04EB /* RCTActivityIndicatorView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C0A20603BC8975A17D1E3A0888E30A3F /* UMPermissionsInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = 349274FA4532F67E1E9F946F122BF708 /* UMPermissionsInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C0B6128EAB81DF4B5C7ECBC60B5F4828 /* RCTScrollableProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = F11AA1C827B436C10A93758DD6EFCB7D /* RCTScrollableProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C0F17CA83F23652EC75D981B008AA6FC /* RCTSettingsManager.m in Sources */ = {isa = PBXBuildFile; fileRef = DBDF23D0789AFBD8383ACBF560BBA95F /* RCTSettingsManager.m */; }; - C12F7B16155CCF917AC223EB8DBC686A /* RCTComponentData.m in Sources */ = {isa = PBXBuildFile; fileRef = 0EB82F5303D0A642BFEEFC441C4FCFC8 /* RCTComponentData.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - C13607802A82E097C94614A6F16A33AE /* RNVectorIcons-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = EB071BF1C50B68C08E9CDC61C2DCBF5D /* RNVectorIcons-dummy.m */; }; - C13728C0CF5BB9AC2E7C7AD120BE6624 /* RCTImageEditingManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 3E462645B293C991F3AFC41480962B3B /* RCTImageEditingManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - C1527E631CCA0A9E697CE853758205F9 /* RNPanHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 1E8F5F4D5A9D9229ADC3EE36FE531D22 /* RNPanHandler.m */; }; + BED0FC9FCD92D79E60833F7BCE953B90 /* UMNativeModulesProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0DA1A11409D4A54CF044BC3C38D8B884 /* UMNativeModulesProxy.m */; }; + BF2CC947A4C41569B3A195A9B21F9713 /* RCTVideoPlayerViewControllerDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 67515C489929A7704712C3AAF53AD8D3 /* RCTVideoPlayerViewControllerDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BF5BFFED0F9BE163BFED37CECF6D034D /* RCTErrorInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = F3B205F865893ED75D98DA9B3B779E32 /* RCTErrorInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C080E71D0C6CDE3C7D84D56D70CC3305 /* RCTSurfaceDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 500C861B6F5A5F3CE412B862735FE960 /* RCTSurfaceDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C08B14F8E317755AB9F8F2D70FA22B16 /* RCTActivityIndicatorView.h in Headers */ = {isa = PBXBuildFile; fileRef = 555A5011C5B1585BBEC6F6D271C4310D /* RCTActivityIndicatorView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C0A20603BC8975A17D1E3A0888E30A3F /* UMPermissionsInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C88B9377961B7019B30852F612ADBD2 /* UMPermissionsInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C0B6128EAB81DF4B5C7ECBC60B5F4828 /* RCTScrollableProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 7223C56D07FF20B511BCBAD45428584C /* RCTScrollableProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C0F17CA83F23652EC75D981B008AA6FC /* RCTSettingsManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 666E04838D81234DF8C3BCD493D64A4E /* RCTSettingsManager.m */; }; + C12F7B16155CCF917AC223EB8DBC686A /* RCTComponentData.m in Sources */ = {isa = PBXBuildFile; fileRef = 0792C0AEF2C49BAC2254F69C7BA3795F /* RCTComponentData.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + C13607802A82E097C94614A6F16A33AE /* RNVectorIcons-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C48E26751BD2AB7AA01DBD40EAE75B52 /* RNVectorIcons-dummy.m */; }; + C13728C0CF5BB9AC2E7C7AD120BE6624 /* RCTImageEditingManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 585D44828C856694AD9E5284093EADF1 /* RCTImageEditingManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + C1527E631CCA0A9E697CE853758205F9 /* RNPanHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = B45725A360E4D3C289C92AE8F3762E1A /* RNPanHandler.m */; }; C183A3FDF741F37E9C84126EC6229BE5 /* Demangle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AF5FEFBFE2542D115E781E1196528FEA /* Demangle.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - C183C6E11A0E0A2F431CBF0CA057B88D /* REACallFuncNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 91F0680B5FBDB320DA5B1CE14BA5CD97 /* REACallFuncNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C18606E7265B2067D9C3DABA552BD22C /* RCTKeyCommands.m in Sources */ = {isa = PBXBuildFile; fileRef = B59B620B27E493DC4791A71E5BB8AE41 /* RCTKeyCommands.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + C183C6E11A0E0A2F431CBF0CA057B88D /* REACallFuncNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 505E36D64915D7A88E64B7558047259A /* REACallFuncNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C18606E7265B2067D9C3DABA552BD22C /* RCTKeyCommands.m in Sources */ = {isa = PBXBuildFile; fileRef = ECD37467A1FBC28F6F4D3A43C34FA258 /* RCTKeyCommands.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; C19E8A5D19A1B49C02CBF1B71BA3D71C /* logging.h in Headers */ = {isa = PBXBuildFile; fileRef = 6838636928192296AC6A3C7011825B83 /* logging.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C28AF797E6A2FDBA3A2FC1083AA204C8 /* RCTRedBox.h in Headers */ = {isa = PBXBuildFile; fileRef = C760D2FE8CBC7683CA5878308C1220A4 /* RCTRedBox.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C2DAABCFA14AF3B14F81C7763C0E9B44 /* REAAllTransitions.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F8C3E7062668D5612A3CBCD373775C9 /* REAAllTransitions.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C34870C7ED16DC9641A6F0E6BFADD3DE /* RCTDatePickerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 2631CCEA21E0CC13052E7A2CCD6CAC30 /* RCTDatePickerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C3A39C164379D80DCB78279575A30F48 /* RCTActionSheetManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 56D230802F5E8DC720B20D5115D3014F /* RCTActionSheetManager.m */; }; - C3CE9B1296228D05C37E4E14CF3E4FB6 /* RCTDecayAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 959E793967DE0C8AA0D2C7333533AE1E /* RCTDecayAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C465CC3EF3F4442CED2AFE6D3B71E956 /* RCTEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B64F40F35233B181D912FD312C16661 /* RCTEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C468445B3A9C01F4B3DEBF7897799B6F /* RCTRefreshControlManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 060C8D20608E35E2C0CDCE51C353EE8F /* RCTRefreshControlManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C4A816A1EC177762D557BF38D7FD147D /* RCTFileReaderModule.m in Sources */ = {isa = PBXBuildFile; fileRef = F71C9B21F79BCF67CBA9B3A5AD5DDC5F /* RCTFileReaderModule.m */; }; - C4CE73B94D86E2A81FBE89A800ED0820 /* RCTTextView.h in Headers */ = {isa = PBXBuildFile; fileRef = B0877B53FC2A3E1D5C69ED4F13410A56 /* RCTTextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C4F688FCAE7867B655AA233592971E0C /* MethodCall.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F753FBF9CF82F017FD7C7B4EBF186DD /* MethodCall.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C5230A9F781A3C9B4BFB1D3241CB3DD6 /* RecoverableError.h in Headers */ = {isa = PBXBuildFile; fileRef = 2CA33A682B6983DFA4E84579DD33057B /* RecoverableError.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C5B4C06C4D28832A72CCB4CE33A10670 /* RCTSwitch.h in Headers */ = {isa = PBXBuildFile; fileRef = CEC1574962E20BE79C055ECC3C4ED987 /* RCTSwitch.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C6B6684C3D88C826389C24634EC328EC /* RCTTypedModuleConstants.mm in Sources */ = {isa = PBXBuildFile; fileRef = 81DA9D40D390E28AAA405D533327E92C /* RCTTypedModuleConstants.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32"; }; }; - C728DB078687BD659BBAD389E48E594B /* RCTScrollViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = C5C2B38E39BCFA67F89F878A58F3A8B3 /* RCTScrollViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - C75F90E750B2E0A3641D387B721E0F35 /* RCTBaseTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = FBE70897D287E740951C8C7342833B60 /* RCTBaseTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C7AB0C74FACC8FB8ED7AA5E38999D2BE /* RCTCxxConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = 366E87D3760B5D7F69DB262C17336604 /* RCTCxxConvert.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C7B54C967318F61468B5526684FC207A /* RNCMaskedViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 45E7525E71377662BFCA7B4293B90388 /* RNCMaskedViewManager.m */; }; - C81CB174FD8729398234BF36FD9565BF /* RCTImageLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 48C13046297A23E9A646404382A83DD9 /* RCTImageLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C919781D88E19B76B6F01FE770D86872 /* YGConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = B82090EB2C3365D5C668E652FF2894D6 /* YGConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C98B27F94C0BFAA23B39DF31B94E96C2 /* EXAppRecordInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = ABBDAAF2A5D55B4750E480B170BE921A /* EXAppRecordInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C9A3D20A7DC4A667511DF7291A61AFA9 /* Orientation.m in Sources */ = {isa = PBXBuildFile; fileRef = A0D16A2851CF6B1BC763CED058E8C6BC /* Orientation.m */; }; - C9A698DB4AA8BC7608FD8B943F4FFFAA /* NSTextStorage+FontScaling.m in Sources */ = {isa = PBXBuildFile; fileRef = B5DBEA77F485ECC234109C0F6AC30C19 /* NSTextStorage+FontScaling.m */; }; - C9EB3B7BD3C03FE53AD3B843B3B6B185 /* RCTConvertHelpers.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6538B95547B82FC3BDF0DE50923E4D04 /* RCTConvertHelpers.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32"; }; }; - CA540BBC07934B0375D489DD66E8E4A9 /* RCTInputAccessoryViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 4AE562E4A98ACF339D049547E2D0CBCD /* RCTInputAccessoryViewManager.m */; }; - CB63C422B363DEBF9C7FDD7142F8A8F5 /* RCTTextView.h in Headers */ = {isa = PBXBuildFile; fileRef = B0877B53FC2A3E1D5C69ED4F13410A56 /* RCTTextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CB65EED5B312B95000AEC2753869F310 /* InspectorInterfaces.h in Headers */ = {isa = PBXBuildFile; fileRef = 2FD1803E8A42BFE1498A7D4B266C2843 /* InspectorInterfaces.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CBD84F95DFE7C7DB79E3A894F378B537 /* RCTBorderDrawing.h in Headers */ = {isa = PBXBuildFile; fileRef = EEF2E2FFC3FEDBD506B4F8EFFB8023F7 /* RCTBorderDrawing.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CC27914FA992B557AE4396880F993CA9 /* RCTUIManagerObserverCoordinator.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F7CABD3FFE4787F2DBB25EDD776997C /* RCTUIManagerObserverCoordinator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CC39BA71608BA9FFD62F8C5AF65B227F /* LongLivedObject.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7FB8089FE6EC752844280235A12124BB /* LongLivedObject.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - CC5EF4A75164FE3420B586029B79936D /* RNFileSystem.m in Sources */ = {isa = PBXBuildFile; fileRef = 0E909D598FE185404D4BAAA254294D0B /* RNFileSystem.m */; }; - CCB3004A303FA33AF597BBA0ABF46F1F /* RCTAlertManager.h in Headers */ = {isa = PBXBuildFile; fileRef = F89497025726010111188D1600E20582 /* RCTAlertManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CCBC7DFE55808D219BC9B1D9989B62B7 /* JSINativeModules.h in Headers */ = {isa = PBXBuildFile; fileRef = E0632D0EB795A9B0499FEB0E63199DCA /* JSINativeModules.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CCE1D405A708DAE7323BFB84F0F0E4D2 /* RCTSurface.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1123AE41F1651D38824405696F1A04B3 /* RCTSurface.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - CD09BEC741A7FC17EEB38983AA6B327F /* UMReactLogHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D14EDD194DD2199C3E3FA25415C154D /* UMReactLogHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CD42B174C547C06175A3B735E2D6F227 /* RCTSurfaceView.h in Headers */ = {isa = PBXBuildFile; fileRef = 32D1C246107B244ABFC60B55866FD8BB /* RCTSurfaceView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CD6EB6A8BAC4127FFD44D230AD6D83D6 /* RCTConvert+CoreLocation.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B28319654F6747C5E845EA0999A77AD /* RCTConvert+CoreLocation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CDBF9E5042AA209F0DC26458C3E0A33A /* EXConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = E8E1E9DBCA36C7FB3BEF1DBD87B5C3B7 /* EXConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CE06FC0B40399ED9AC1D7CE1291D0C35 /* React-CoreModules-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1CAF3E18892A67FB4C6C1F2789F768CC /* React-CoreModules-dummy.m */; }; - CE813D3F8918A3F9BA411D7700B2AE88 /* RCTJavaScriptLoader.mm in Sources */ = {isa = PBXBuildFile; fileRef = C9B8C2057C488A65EFA2EA318EA66D1F /* RCTJavaScriptLoader.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - CE8811AB4273BEA213991FB188A39FC3 /* RCTAppState.m in Sources */ = {isa = PBXBuildFile; fileRef = FCDF9554889A1901A252F189D87DA0A1 /* RCTAppState.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - CEC08CBAD5757C8F1EA3B272FCC11AA8 /* RCTResizeMode.m in Sources */ = {isa = PBXBuildFile; fileRef = 82DAF64B6E6366F44043B62FF95EB3C1 /* RCTResizeMode.m */; }; - CECCE3C5CB8954E76878C910F4D36638 /* RCTPlatform.h in Headers */ = {isa = PBXBuildFile; fileRef = A14A4635526A8D683BD33DA62C88A288 /* RCTPlatform.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C28AF797E6A2FDBA3A2FC1083AA204C8 /* RCTRedBox.h in Headers */ = {isa = PBXBuildFile; fileRef = 78FB08534A002FD038F0F4386A91F0D3 /* RCTRedBox.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C2DAABCFA14AF3B14F81C7763C0E9B44 /* REAAllTransitions.h in Headers */ = {isa = PBXBuildFile; fileRef = 3064E577B834E14AA7BEEFA5F550EFB8 /* REAAllTransitions.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C34870C7ED16DC9641A6F0E6BFADD3DE /* RCTDatePickerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 5F87FDD7F728AC044E529080AD09FDB6 /* RCTDatePickerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C3A39C164379D80DCB78279575A30F48 /* RCTActionSheetManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 730AF6C42D77524C35855EC5A736953A /* RCTActionSheetManager.m */; }; + C3CE9B1296228D05C37E4E14CF3E4FB6 /* RCTDecayAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 28326EFEE933079BA8555732F148E567 /* RCTDecayAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C465CC3EF3F4442CED2AFE6D3B71E956 /* RCTEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 06C0AD5D49FC63345E72AD6193101846 /* RCTEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C468445B3A9C01F4B3DEBF7897799B6F /* RCTRefreshControlManager.h in Headers */ = {isa = PBXBuildFile; fileRef = ECA68C965208CC9BDBBC557A7B2D7BAC /* RCTRefreshControlManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C4A816A1EC177762D557BF38D7FD147D /* RCTFileReaderModule.m in Sources */ = {isa = PBXBuildFile; fileRef = FC68FE4FB41B24BE666E8AC9F8AA02EA /* RCTFileReaderModule.m */; }; + C4CE73B94D86E2A81FBE89A800ED0820 /* RCTTextView.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E0CA864C1AF0C38F5957BCB49759CC7 /* RCTTextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C4F688FCAE7867B655AA233592971E0C /* MethodCall.h in Headers */ = {isa = PBXBuildFile; fileRef = 18D14CD2E1BDA0C6180E077DBF9CEFF7 /* MethodCall.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C5230A9F781A3C9B4BFB1D3241CB3DD6 /* RecoverableError.h in Headers */ = {isa = PBXBuildFile; fileRef = 904F4A543F81D341E52A71E8C855496F /* RecoverableError.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C5B4C06C4D28832A72CCB4CE33A10670 /* RCTSwitch.h in Headers */ = {isa = PBXBuildFile; fileRef = C3413D762A50600A20DEAC119185BB2C /* RCTSwitch.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C6B6684C3D88C826389C24634EC328EC /* RCTTypedModuleConstants.mm in Sources */ = {isa = PBXBuildFile; fileRef = 26C31A65F398319F402241F790D6822C /* RCTTypedModuleConstants.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32"; }; }; + C728DB078687BD659BBAD389E48E594B /* RCTScrollViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = EA1591B3EDD9E30ABCAC6F75E3E53A05 /* RCTScrollViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + C75F90E750B2E0A3641D387B721E0F35 /* RCTBaseTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 6083BC4F305C34E71A53504B73A15530 /* RCTBaseTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C7AB0C74FACC8FB8ED7AA5E38999D2BE /* RCTCxxConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = 6823B9E6EBA09774A6288027D70BF1C7 /* RCTCxxConvert.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C7B54C967318F61468B5526684FC207A /* RNCMaskedViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 74B83ABC77CCD11ABF2E38DB951EA243 /* RNCMaskedViewManager.m */; }; + C815D4197155A0546E490F20EC4B3B73 /* Uploader.m in Sources */ = {isa = PBXBuildFile; fileRef = 380ECDFF72AAF2807953070302C09F87 /* Uploader.m */; }; + C81CB174FD8729398234BF36FD9565BF /* RCTImageLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E03C3174AFCAD31170A89A2561224B0 /* RCTImageLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C919781D88E19B76B6F01FE770D86872 /* YGConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 21E171956009B8B32887C7BC5E665939 /* YGConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C98B27F94C0BFAA23B39DF31B94E96C2 /* EXAppRecordInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = 7FFAD254679829E0D0C91D88A5520C3B /* EXAppRecordInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C9A3D20A7DC4A667511DF7291A61AFA9 /* Orientation.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C7256A5C691284987BE6163219C587F /* Orientation.m */; }; + C9A698DB4AA8BC7608FD8B943F4FFFAA /* NSTextStorage+FontScaling.m in Sources */ = {isa = PBXBuildFile; fileRef = 8A699BDA504A6826A0A34F0DAD7D0846 /* NSTextStorage+FontScaling.m */; }; + C9EB3B7BD3C03FE53AD3B843B3B6B185 /* RCTConvertHelpers.mm in Sources */ = {isa = PBXBuildFile; fileRef = 7DF857E53656F23E44A941AB6DBF9BA6 /* RCTConvertHelpers.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32"; }; }; + CA540BBC07934B0375D489DD66E8E4A9 /* RCTInputAccessoryViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F0A7E989EA06C875F7392E82B6864698 /* RCTInputAccessoryViewManager.m */; }; + CB63C422B363DEBF9C7FDD7142F8A8F5 /* RCTTextView.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E0CA864C1AF0C38F5957BCB49759CC7 /* RCTTextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CB65EED5B312B95000AEC2753869F310 /* InspectorInterfaces.h in Headers */ = {isa = PBXBuildFile; fileRef = 046093F414C53ED46D7E55D92316A10E /* InspectorInterfaces.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CBD84F95DFE7C7DB79E3A894F378B537 /* RCTBorderDrawing.h in Headers */ = {isa = PBXBuildFile; fileRef = 8EF1EF27B92C01D582DAE07B4AB2A5E0 /* RCTBorderDrawing.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CC27914FA992B557AE4396880F993CA9 /* RCTUIManagerObserverCoordinator.h in Headers */ = {isa = PBXBuildFile; fileRef = 72661D85B1FA2DD393B3D288961DAAF7 /* RCTUIManagerObserverCoordinator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CC39BA71608BA9FFD62F8C5AF65B227F /* LongLivedObject.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 97706CEE0487AC75FF7F4DAD9A339DED /* LongLivedObject.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + CC5EF4A75164FE3420B586029B79936D /* RNFileSystem.m in Sources */ = {isa = PBXBuildFile; fileRef = 3561429ADB9A922F9FBA74B850B20F59 /* RNFileSystem.m */; }; + CCB3004A303FA33AF597BBA0ABF46F1F /* RCTAlertManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E44516640C7B0DA30FC8C3BF411EF8A /* RCTAlertManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CCBC7DFE55808D219BC9B1D9989B62B7 /* JSINativeModules.h in Headers */ = {isa = PBXBuildFile; fileRef = F48D23DE414F808E84FE271AEEDF1BC9 /* JSINativeModules.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CCE1D405A708DAE7323BFB84F0F0E4D2 /* RCTSurface.mm in Sources */ = {isa = PBXBuildFile; fileRef = C8F2489699F473FE28620E24E05F44AF /* RCTSurface.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + CD09BEC741A7FC17EEB38983AA6B327F /* UMReactLogHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = E57A66CE0DB2E9A42356484F620E4E89 /* UMReactLogHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CD42B174C547C06175A3B735E2D6F227 /* RCTSurfaceView.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F5C588284FE5D683F5BFFAD7FD5C944 /* RCTSurfaceView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CD6EB6A8BAC4127FFD44D230AD6D83D6 /* RCTConvert+CoreLocation.h in Headers */ = {isa = PBXBuildFile; fileRef = BC26774C0CE80C801CD09DEB3E1D9A32 /* RCTConvert+CoreLocation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CDBF9E5042AA209F0DC26458C3E0A33A /* EXConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = EA2EDC0D3A941227B80F8FA0AEDA8617 /* EXConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CE06FC0B40399ED9AC1D7CE1291D0C35 /* React-CoreModules-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 21A1C87776F303A84C0EB93FDB7E06F6 /* React-CoreModules-dummy.m */; }; + CE813D3F8918A3F9BA411D7700B2AE88 /* RCTJavaScriptLoader.mm in Sources */ = {isa = PBXBuildFile; fileRef = 68C6036F8774BCD185A6259B33518FBB /* RCTJavaScriptLoader.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + CE8811AB4273BEA213991FB188A39FC3 /* RCTAppState.m in Sources */ = {isa = PBXBuildFile; fileRef = 6DC80DA32531B95A6747B693158D9A50 /* RCTAppState.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + CEC08CBAD5757C8F1EA3B272FCC11AA8 /* RCTResizeMode.m in Sources */ = {isa = PBXBuildFile; fileRef = 245DB2D57770A38D77955A277B3654CC /* RCTResizeMode.m */; }; + CECCE3C5CB8954E76878C910F4D36638 /* RCTPlatform.h in Headers */ = {isa = PBXBuildFile; fileRef = A9CCE015207CB356D2540CF06488F73A /* RCTPlatform.h */; settings = {ATTRIBUTES = (Project, ); }; }; CF27ED776621CED5EAD6945D637A06D9 /* Format.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FF510B75956696EF93E64075AE725F0E /* Format.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - CF4D7A926A961308575E23457848AE9D /* RCTUIUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = FB47E41C9994F9F5C6D0DFBB0485764B /* RCTUIUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - CF4DAE0AB8D7F5E464F16AD5B4E5822F /* RCTMaskedViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = B6EDDFDC6BAB43C9BCF97A00C15AFC20 /* RCTMaskedViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - D082688B674EE2208906EF4596C6908C /* RCTPicker.h in Headers */ = {isa = PBXBuildFile; fileRef = 69DD798EB76A2A754D6ADB37E4756378 /* RCTPicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D0D5174880B58CC2DB4B15A38AA6C951 /* RCTTouchEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = EC4C848556E4CD0D318924ED5C7F49DB /* RCTTouchEvent.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - D0FFF58C8032BBC8DA4503F871A52338 /* RCTConvert+CoreLocation.m in Sources */ = {isa = PBXBuildFile; fileRef = EBBBD67DBF4923EC98909CB2EDAD617E /* RCTConvert+CoreLocation.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - D128E8CBA5A95481D8F13A9145952020 /* RCTShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 1ADC0723D393D861F4FE512F6313DBE6 /* RCTShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - D147B0E443F980903412C205391FA8B4 /* UMModuleRegistryConsumer.h in Headers */ = {isa = PBXBuildFile; fileRef = 91F486FCB1E5D3A49B7B4F04A61A7FFB /* UMModuleRegistryConsumer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D15A2B9818A7C5B57C47465992BFA806 /* RCTAnimationType.h in Headers */ = {isa = PBXBuildFile; fileRef = C060BB77DB978ECF0CD3B972AF31B996 /* RCTAnimationType.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D15AC2DBC6AB16559AD4010FBF9F1F76 /* RCTSafeAreaShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = CC4FCCD87429DF8783DD499F178525DC /* RCTSafeAreaShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - D2090274F10AB25196240CE3FF379E96 /* RCTInputAccessoryShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 0967124F7CD6AE861F151F1885587DC7 /* RCTInputAccessoryShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D2258A291CF8E9E8C9A366DF12F38F7F /* REAOperatorNode.m in Sources */ = {isa = PBXBuildFile; fileRef = D53A669573DD3D8FD7EF37729D6C735F /* REAOperatorNode.m */; }; - D29F28485DEE738B6FA3CCF80F59FAB2 /* RNLongPressHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 7779B5CCEE4D3942C4EEA5A5912E8A30 /* RNLongPressHandler.m */; }; - D2BB3BE2838625C446C0652A88B5F757 /* UMModuleRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 2FFA59A067CBEFD0512376F0B519D859 /* UMModuleRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D2E3F128183968A01722637960BB62D3 /* RCTDevSettings.h in Headers */ = {isa = PBXBuildFile; fileRef = 27341365B10BF5650ECFC725AEFA3F24 /* RCTDevSettings.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D324A869357B797F126C128ED6D20A35 /* RNCameraUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = B302632E0A609AF3A7C36D4508EF2737 /* RNCameraUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D3A7FA3870DB151036037D68EED9539D /* RCTProgressViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = C9FFFA9E0AC2BEC5269CBB578F7DB009 /* RCTProgressViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - D3E6EEA9641B5852C5B326C098FE7415 /* RCTDataRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 5814D8698695B074DEA9EA8D72F9770C /* RCTDataRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D4039B7C9D0664273E7640238C9117C6 /* RCTReloadCommand.h in Headers */ = {isa = PBXBuildFile; fileRef = B1B129C745244EA3B453CA72DA8FBB1A /* RCTReloadCommand.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D411D4F1C26BDD8CF0801FB3DCD7930C /* REAStyleNode.m in Sources */ = {isa = PBXBuildFile; fileRef = BD049275A32211837C6AC17E3354FDAB /* REAStyleNode.m */; }; - D4393C515A60BA3486325521F01E5CBE /* RCTScrollContentViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 4AA467ADA93F5BA0B5CC5442E044473E /* RCTScrollContentViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D4492AA35116BD68F0668FD3DBC22437 /* RNGestureHandlerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 0146FA48F6863D5D44FB4733EE5F0BAB /* RNGestureHandlerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D4A7E44648FAA7CC3DECC62D4B274945 /* RCTAppState.h in Headers */ = {isa = PBXBuildFile; fileRef = 347F15CCFBAF62BB6C3EE1FD548D6216 /* RCTAppState.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D551D6EBCC58C874EAED9BECFAC7F957 /* RCTScrollContentShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = B8F6E7FE66DC80E02E433801E75785DB /* RCTScrollContentShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D5990A20D9548425F38F87E4CAAF53E7 /* RCTPackagerConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = E730AED7E1CBFE3703177FDFE4543494 /* RCTPackagerConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D5EB936081DE1ABD23F6EF6E9A31D4A9 /* RNGestureHandlerModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 79A397822646D79F4DE38521B20B8864 /* RNGestureHandlerModule.m */; }; - D602075009B1429AB8F3F530A7CB76C1 /* RCTBorderStyle.h in Headers */ = {isa = PBXBuildFile; fileRef = B7F94D66B638D1AD7A0FD3E0A0D3281A /* RCTBorderStyle.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D62FA9984E76D017A9FDDC5880FB36E2 /* RCTKeyboardObserver.m in Sources */ = {isa = PBXBuildFile; fileRef = 83B17312F9D2E1BEAA7746909BAFA316 /* RCTKeyboardObserver.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - D63164B5DBC7F7C5E8DFFD433ECE3371 /* RCTInterpolationAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = B276013B3739D9B0DFDD8BD868440477 /* RCTInterpolationAnimatedNode.m */; }; - D64EC2A207E520CAC7FD95490FB3B420 /* RCTComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = F153BBE7435A9A435E981F55ACDE6A64 /* RCTComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D697590A49CE72C3B551D7AB750EBE2F /* RCTAssert.m in Sources */ = {isa = PBXBuildFile; fileRef = DEF877F6A8610D103EFCF55DED7F63EE /* RCTAssert.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - D70CC8E9D5D839CC74E2450CA3C7F493 /* JSIDynamic.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A55903FE4C5244F252999AD46936959E /* JSIDynamic.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - D74FFDC85A25F62F1B5AE4B8AB0B65D0 /* RNGestureHandlerRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E97F6236F9732B9AB03922A388A7508 /* RNGestureHandlerRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D81AC0C4DC01BB7B898EF80BA080B002 /* RNCAssetsLibraryRequestHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 5F1656CD56384AAA4E9D52DEEEE1CE7C /* RNCAssetsLibraryRequestHandler.m */; }; - D8381F8F51F652DB757C7CF69E9B33B2 /* REAFunctionNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 698D003C78B10261D92E6694CB9C5D0E /* REAFunctionNode.m */; }; - D88E3FFA86E38BAD35E656E27A5382E8 /* RNConvertPhAsset-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 190AE97954575319E827C60D7664DFCB /* RNConvertPhAsset-dummy.m */; }; - D8EEAC7C783F8F8799CE65437B2336DB /* RCTImageViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A2FECB4CED542D75695BF5EACB83980 /* RCTImageViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D91E7E6D452A3DA8FF9524AC08E8093C /* RCTSliderManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 9DB13257361743EE2F575C2CBB8F6AB0 /* RCTSliderManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D942F947E98B998E31292371B94924C1 /* RNFlingHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 811580E6C382992BF055E1644C3D95F5 /* RNFlingHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D9DF1EE668A48E101B4DE3E9BA5B5251 /* JSIExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 77347179A6A08E89A1A18FCF418630BF /* JSIExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DA0379DC5D39C25ED85E86DDB57DB940 /* JSINativeModules.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EA362ED20E5E5D3E597DE6DCE497DD79 /* JSINativeModules.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - DA44C5AD2F6F101450542CC79BA62BBA /* RCTInputAccessoryView.h in Headers */ = {isa = PBXBuildFile; fileRef = 575BD7545EDFE6534CEF81B12F1B9663 /* RCTInputAccessoryView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DA553EAB5D6042B76746804E1EAB9AAC /* RNSScreen.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C19D5A7B9A87FB8FB13149BCF3375DD /* RNSScreen.m */; }; - DA75E620ED19F6B3EA09B55F085DA9E6 /* RCTInputAccessoryShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 0967124F7CD6AE861F151F1885587DC7 /* RCTInputAccessoryShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DA9EE774CF939AFC136CFF0C1418CBD4 /* RNRotationHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = BF94741026CF9A250BB4A29F327BD816 /* RNRotationHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DAE1D53E1CB1AF01BF988E7E9D421E2D /* RCTSafeAreaViewLocalData.h in Headers */ = {isa = PBXBuildFile; fileRef = 141731C3FA492DF2F4AA6656C5041D36 /* RCTSafeAreaViewLocalData.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DAE3A5F5238022292E47333A1456CDF4 /* RCTImageEditingManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 302CC09A182B62441AC731F3D246855B /* RCTImageEditingManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DB237AF4E8189CBA56800FAA2DB5E354 /* RCTComponentEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = 0930BA6CC270D548CBCF7BDD321C90BB /* RCTComponentEvent.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - DB46E287E52DAF8028E5E436A1CED725 /* UMModuleRegistryProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = DAB1C4AD9FE34E451678EFE050AD05B0 /* UMModuleRegistryProvider.m */; }; - DB7453AA7276EAE43F16788C031FC022 /* RNGestureHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 578761657F6A1B59D354A87A346F2AD7 /* RNGestureHandler.m */; }; - DBB5DF09AA103C6B5C2410567FC0F306 /* RNGestureHandlerButton.m in Sources */ = {isa = PBXBuildFile; fileRef = AF7B7B8AEF46B2B6322D96E955304824 /* RNGestureHandlerButton.m */; }; - DBE43D26DE06EE2C5DFFE92024BB14D0 /* RCTImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C143D92341987BB03C4588D22636843 /* RCTImageView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DBF7A40C93CED8912C3C3FA2435FE0A9 /* RCTTiming.h in Headers */ = {isa = PBXBuildFile; fileRef = 04704F258A410C6628362C881A0F1AB8 /* RCTTiming.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DC08C129DCC4AF03CC0987E719AC93FC /* RCTSurfaceRootView.h in Headers */ = {isa = PBXBuildFile; fileRef = E8F208ADBFEC9B0A638D8F7E4069050D /* RCTSurfaceRootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DD14A2612F2B64801D9FFC36B588BE89 /* REAPropsNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 0793ED594F3C2BA8EA06589754CF6D38 /* REAPropsNode.m */; }; - DD355E73AD18C234879AF3950D6CE93F /* RCTVideoPlayerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = B10B0088C471DC66528A7241F441A27E /* RCTVideoPlayerViewController.m */; }; - DE019F4CC79951E8784BE707F1FFEBA1 /* event.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 53144F697C32AF10D37DDF8CED64AD9B /* event.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - DE0DF52E9BA4B1C1C243190D445CA27D /* RCTMultilineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C93B5840C6E0F129D4F74CCB9632334 /* RCTMultilineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DE3DDCC0F92A86B3EFA683DC54F9AE65 /* CxxNativeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 90B2CF4D23329B44ED4AC9638AD7F975 /* CxxNativeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DE941FAD016BA577A594227BEC449D5E /* RCTNetworkTask.h in Headers */ = {isa = PBXBuildFile; fileRef = 458A8E0FCCDF9C6BCE4929B8BAAC49E4 /* RCTNetworkTask.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DEB0B780460C435FC36F2F1D5DC6759E /* RCTDiffClampAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 22E5EC80B168F850FE824A7C6009657D /* RCTDiffClampAnimatedNode.m */; }; - DF96AB3308E52565A04CD6B0DFF66818 /* RCTNullability.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D07A28B636181B81F49C199C22562AC /* RCTNullability.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CF4D7A926A961308575E23457848AE9D /* RCTUIUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = B2ED732CD676556305D652460FD2A07A /* RCTUIUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + CF4DAE0AB8D7F5E464F16AD5B4E5822F /* RCTMaskedViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F78FEE0E231EC7FF85CC3D133641BA52 /* RCTMaskedViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + D082688B674EE2208906EF4596C6908C /* RCTPicker.h in Headers */ = {isa = PBXBuildFile; fileRef = 58D4E61028B804ACCB3BFDFF335159E4 /* RCTPicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D0D5174880B58CC2DB4B15A38AA6C951 /* RCTTouchEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = 8F9178450DA044E60034D8573DC97F56 /* RCTTouchEvent.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + D0FFF58C8032BBC8DA4503F871A52338 /* RCTConvert+CoreLocation.m in Sources */ = {isa = PBXBuildFile; fileRef = 000C44F7F29038ADACDD0D27E807740E /* RCTConvert+CoreLocation.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + D128E8CBA5A95481D8F13A9145952020 /* RCTShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = A3F5DFC77E71D7B82A91ABA0508CC67E /* RCTShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + D147B0E443F980903412C205391FA8B4 /* UMModuleRegistryConsumer.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C0B89D54205F34E5A0B56287CF3BC65 /* UMModuleRegistryConsumer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D15A2B9818A7C5B57C47465992BFA806 /* RCTAnimationType.h in Headers */ = {isa = PBXBuildFile; fileRef = D5D4BCC4529F3BA15BCF05FA1DB9A206 /* RCTAnimationType.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D15AC2DBC6AB16559AD4010FBF9F1F76 /* RCTSafeAreaShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 7A9D0C725A26D563A130E87931EA7BCA /* RCTSafeAreaShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + D2090274F10AB25196240CE3FF379E96 /* RCTInputAccessoryShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E9B9BA9C061EB75DA804400702FB5E9 /* RCTInputAccessoryShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D2258A291CF8E9E8C9A366DF12F38F7F /* REAOperatorNode.m in Sources */ = {isa = PBXBuildFile; fileRef = CC88B7BC58F7F2DA6A40351EE5B0EE0C /* REAOperatorNode.m */; }; + D29F28485DEE738B6FA3CCF80F59FAB2 /* RNLongPressHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = E27F1ECA9B92D57E0A67D03218EF4B67 /* RNLongPressHandler.m */; }; + D2BB3BE2838625C446C0652A88B5F757 /* UMModuleRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D2FFD58A4EEB33A832B59EC208A9089 /* UMModuleRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D2E3F128183968A01722637960BB62D3 /* RCTDevSettings.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E7D2DA0894912FFEB5A50E52137E1B1 /* RCTDevSettings.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D324A869357B797F126C128ED6D20A35 /* RNCameraUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = B25F1DE9B06E555DF5413D4F404518EF /* RNCameraUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D3A7FA3870DB151036037D68EED9539D /* RCTProgressViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 8DAFE0D398CE10E5EC050008DADD783E /* RCTProgressViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + D3E6EEA9641B5852C5B326C098FE7415 /* RCTDataRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 7CE6E54315D4DBF20967F1DF6FC4838D /* RCTDataRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D4039B7C9D0664273E7640238C9117C6 /* RCTReloadCommand.h in Headers */ = {isa = PBXBuildFile; fileRef = E42087FDBA47C891889708433BC0CC99 /* RCTReloadCommand.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D411D4F1C26BDD8CF0801FB3DCD7930C /* REAStyleNode.m in Sources */ = {isa = PBXBuildFile; fileRef = D5C1D89653471B8F65B074EF1288ED76 /* REAStyleNode.m */; }; + D4393C515A60BA3486325521F01E5CBE /* RCTScrollContentViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 11FB3135C7C316191D97C3698E2F7399 /* RCTScrollContentViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D4492AA35116BD68F0668FD3DBC22437 /* RNGestureHandlerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 26710D576F9E5EE6CAECE652E5CECE3D /* RNGestureHandlerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D4A7E44648FAA7CC3DECC62D4B274945 /* RCTAppState.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F4D6B16C84C6DBBA8E47490F22D1BB7 /* RCTAppState.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D551D6EBCC58C874EAED9BECFAC7F957 /* RCTScrollContentShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 8DF29E368BF77FC9AD288DF274FDB305 /* RCTScrollContentShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D5990A20D9548425F38F87E4CAAF53E7 /* RCTPackagerConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C40609B62D08ECD3D6BE5592B810B2C /* RCTPackagerConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D5EB936081DE1ABD23F6EF6E9A31D4A9 /* RNGestureHandlerModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 8A68D20604028228384E240407A2B2CD /* RNGestureHandlerModule.m */; }; + D602075009B1429AB8F3F530A7CB76C1 /* RCTBorderStyle.h in Headers */ = {isa = PBXBuildFile; fileRef = 2AA7B3D22B21157AB31711C5FE39A7E2 /* RCTBorderStyle.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D62FA9984E76D017A9FDDC5880FB36E2 /* RCTKeyboardObserver.m in Sources */ = {isa = PBXBuildFile; fileRef = 76EB26079D0E90E70FDEE6B082880F0D /* RCTKeyboardObserver.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + D63164B5DBC7F7C5E8DFFD433ECE3371 /* RCTInterpolationAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 87A6475E8D5A8EB6EE803AE69F977846 /* RCTInterpolationAnimatedNode.m */; }; + D64EC2A207E520CAC7FD95490FB3B420 /* RCTComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = 7103211814C275BC99E0B1D9D69EEEBE /* RCTComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D697590A49CE72C3B551D7AB750EBE2F /* RCTAssert.m in Sources */ = {isa = PBXBuildFile; fileRef = F8AA33BBA7905A2364D83A41E3D4797C /* RCTAssert.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + D70CC8E9D5D839CC74E2450CA3C7F493 /* JSIDynamic.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E621BC4F3DC024D6256BA3A13BAB4889 /* JSIDynamic.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + D74FFDC85A25F62F1B5AE4B8AB0B65D0 /* RNGestureHandlerRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 638B5B971E1338ED9DE3056F4B85A468 /* RNGestureHandlerRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D81AC0C4DC01BB7B898EF80BA080B002 /* RNCAssetsLibraryRequestHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = DB9D40C0D9B81F4171C98347D5216C6C /* RNCAssetsLibraryRequestHandler.m */; }; + D8381F8F51F652DB757C7CF69E9B33B2 /* REAFunctionNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 5DCA7C03F4338D58F066CC8C6EB22A51 /* REAFunctionNode.m */; }; + D88E3FFA86E38BAD35E656E27A5382E8 /* RNConvertPhAsset-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 5C5D87D8C818CC5091D87E35B2670D3E /* RNConvertPhAsset-dummy.m */; }; + D8EEAC7C783F8F8799CE65437B2336DB /* RCTImageViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 65E0EBF94546A595A9C9346940CC5810 /* RCTImageViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D91E7E6D452A3DA8FF9524AC08E8093C /* RCTSliderManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 293EDE29DE9E73423366EC7E2155C485 /* RCTSliderManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D942F947E98B998E31292371B94924C1 /* RNFlingHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 099E8DE55B3A377D44FB36C7C265A221 /* RNFlingHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D9DF1EE668A48E101B4DE3E9BA5B5251 /* JSIExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 09536F0364F464C94CF70CEA54CDB1E1 /* JSIExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DA0379DC5D39C25ED85E86DDB57DB940 /* JSINativeModules.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB7699772AC1B4F8C41E96643BF3B5A5 /* JSINativeModules.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + DA44C5AD2F6F101450542CC79BA62BBA /* RCTInputAccessoryView.h in Headers */ = {isa = PBXBuildFile; fileRef = 662DF4B52126CFCA910AA60BE28A2324 /* RCTInputAccessoryView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DA553EAB5D6042B76746804E1EAB9AAC /* RNSScreen.m in Sources */ = {isa = PBXBuildFile; fileRef = 7B3E573945A8A658487E58335CCB0254 /* RNSScreen.m */; }; + DA75E620ED19F6B3EA09B55F085DA9E6 /* RCTInputAccessoryShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E9B9BA9C061EB75DA804400702FB5E9 /* RCTInputAccessoryShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DA9EE774CF939AFC136CFF0C1418CBD4 /* RNRotationHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = E97D7C7E7B3DA2A67C08F204C6323ACE /* RNRotationHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DAE1D53E1CB1AF01BF988E7E9D421E2D /* RCTSafeAreaViewLocalData.h in Headers */ = {isa = PBXBuildFile; fileRef = 728A642A96752CA241F12ACBECA2C39A /* RCTSafeAreaViewLocalData.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DAE3A5F5238022292E47333A1456CDF4 /* RCTImageEditingManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 908D19C0D19BF023521DF36EBFC3C3EE /* RCTImageEditingManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DB237AF4E8189CBA56800FAA2DB5E354 /* RCTComponentEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = D0ECECBF1987AFACD2B8A663E18AB463 /* RCTComponentEvent.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + DB46E287E52DAF8028E5E436A1CED725 /* UMModuleRegistryProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = E80BAE8CA5E879443EDAF2BCC9E42BE8 /* UMModuleRegistryProvider.m */; }; + DB7453AA7276EAE43F16788C031FC022 /* RNGestureHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = DA548A36C7D5AA89A935F1F569623757 /* RNGestureHandler.m */; }; + DBB5DF09AA103C6B5C2410567FC0F306 /* RNGestureHandlerButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 36CA0F897DB19A4C6057485A8781FDB1 /* RNGestureHandlerButton.m */; }; + DBE43D26DE06EE2C5DFFE92024BB14D0 /* RCTImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = 884780291078A4A72E3FB3B9BDC30F66 /* RCTImageView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DBF7A40C93CED8912C3C3FA2435FE0A9 /* RCTTiming.h in Headers */ = {isa = PBXBuildFile; fileRef = CB17859AE6FD76E2B1FD6B7C59D6D822 /* RCTTiming.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DC08C129DCC4AF03CC0987E719AC93FC /* RCTSurfaceRootView.h in Headers */ = {isa = PBXBuildFile; fileRef = D3050E0454A03AC556EA2DC79AE7F6F5 /* RCTSurfaceRootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DD14A2612F2B64801D9FFC36B588BE89 /* REAPropsNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 4C1E2D7D0B146FD6602B37E3DCE7253E /* REAPropsNode.m */; }; + DD355E73AD18C234879AF3950D6CE93F /* RCTVideoPlayerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = A42C86E64992C86B3C76EFB7D365D1F7 /* RCTVideoPlayerViewController.m */; }; + DE019F4CC79951E8784BE707F1FFEBA1 /* event.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 711884B48504235415B13F90D084CD66 /* event.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + DE0DF52E9BA4B1C1C243190D445CA27D /* RCTMultilineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 2DDC53D355666FB708B641ACA9DFA1D0 /* RCTMultilineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DE3DDCC0F92A86B3EFA683DC54F9AE65 /* CxxNativeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = CA3FA550DD5E1BDDA634FC84308272E5 /* CxxNativeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DE941FAD016BA577A594227BEC449D5E /* RCTNetworkTask.h in Headers */ = {isa = PBXBuildFile; fileRef = 05BF770255AE31C9B619F54D32C409CB /* RCTNetworkTask.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DEB0B780460C435FC36F2F1D5DC6759E /* RCTDiffClampAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = A7B1B351FA386E492267DCCFAE681CCC /* RCTDiffClampAnimatedNode.m */; }; + DF96AB3308E52565A04CD6B0DFF66818 /* RCTNullability.h in Headers */ = {isa = PBXBuildFile; fileRef = A2860E16D1AA81E80508370F04F33A47 /* RCTNullability.h */; settings = {ATTRIBUTES = (Project, ); }; }; E00185F7890A51AD00E51C25BBD80D1B /* Assume.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2B044ADD3795A01968B2078E083E1BF5 /* Assume.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - E0D3705D832446D3FEB5C2823DCFEB8A /* REAOperatorNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 75E9BC26125CADE0B2B74312CAE94F51 /* REAOperatorNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E11D57B973664CF5804D353ECBEA4FF2 /* RCTWebSocketModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 3881B9E1E45C7679C6E3E95A5B35122A /* RCTWebSocketModule.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - E20C7E78D1507C8CA71F2FD747F57883 /* RCTAnimatedImage.m in Sources */ = {isa = PBXBuildFile; fileRef = D670C028E2D1C3825135EC45FA068670 /* RCTAnimatedImage.m */; }; - E265276741F6CCD0B0197C40C1EBA401 /* RCTVideoManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 8628256E24FE48A83AC233FD52A77C4F /* RCTVideoManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E280DCFD418D6D9D730BDD4DC8785FFE /* RCTAnimationUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 36B4689623CD0453B726DFEEF5F4AF7D /* RCTAnimationUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E30D350E328FC6B89FBE47AAC06B36D8 /* RCTLocalAssetImageLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C75FA2414A7E3FEFC5095A5A9ADC8FF /* RCTLocalAssetImageLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E36C51C3E220533F43779A4C14BDF1B9 /* RCTMultilineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E574DAF80A4E05B5F6FDACFDCE009479 /* RCTMultilineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E374F3695520D2A247004F69FAF8FB6B /* RCTProfile.h in Headers */ = {isa = PBXBuildFile; fileRef = 719636828CA82BB840379C429AF01647 /* RCTProfile.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E38F57AA43BC472A0A7377F0DC64EAD3 /* RCTModuleMethod.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8B8972EB016354758E7C016EAD1E8C86 /* RCTModuleMethod.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - E3D899247BA051EF2CCED618D78F98BD /* EXPermissions.h in Headers */ = {isa = PBXBuildFile; fileRef = D27B16463EB7A0D5615333C4A9543BFF /* EXPermissions.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E3EE9ED3F0DE7971647E51C981116F70 /* EXAppLoaderProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 833FEDCBE02578BE28B03ED8C55CB268 /* EXAppLoaderProvider.m */; }; - E40DB184BE297B6EDE9790FD7CED850F /* RCTFrameAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = D777A2A60A47FACE596D5FEE39A71233 /* RCTFrameAnimation.m */; }; - E4371B1E44E185F3F7756EE3FFC0D0D4 /* RNLongPressHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 93BFFD85E59009B8D652DD24A1F9A095 /* RNLongPressHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E4EF3A7C1240B5B9C74BEEC8683644DC /* YGValue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F6BF7B403F75884FE916A273DE8EFD14 /* YGValue.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - E514911259C84D2DD0928E5BD46A6D5E /* RCTScrollContentViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = D00014DEF63C4BDD50DD7F02849E33A7 /* RCTScrollContentViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - E554598FD317EE9149AB8454AA9059F8 /* RNScreens-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 462041C5B81A962600E25E28DC10C5A9 /* RNScreens-dummy.m */; }; - E58350CF83487DFB57D27891CBD8EB50 /* RCTLayoutAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F341A15EEFE4F8E8089DF18572A52C2 /* RCTLayoutAnimation.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - E5C6E1CB8D701EF04B3B4A88CB5EBAEB /* RCTComponentData.h in Headers */ = {isa = PBXBuildFile; fileRef = FD3B52C7890202D8034102AE36903F17 /* RCTComponentData.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E5EB830C4C12B28B58C395262C7D74DF /* RCTWebSocketModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 05B9F05F02BC9CA17D407AA34CEC4C02 /* RCTWebSocketModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E5FB31F6C23D375DE5CBC98123BE9B8D /* RNGestureHandlerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = E50009782DE85E9953AFCB151B308CBB /* RNGestureHandlerManager.m */; }; - E610C2244971A9291BE3ACFC2313C182 /* RCTLog.h in Headers */ = {isa = PBXBuildFile; fileRef = 4DDC6BCDC740BA0E8668EC5C11BFC529 /* RCTLog.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E6513BA85B0E6C2102CD8408B65935C7 /* RCTTiming.m in Sources */ = {isa = PBXBuildFile; fileRef = 3F9B0F90AB616B192111B0067D7446AB /* RCTTiming.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - E6F486259DE4E983CF4B2FD33BFDAACF /* RCTMaskedViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D6BA45CBBBABDE73908DD603A3A5E30 /* RCTMaskedViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E75B4970944AD4C977568BB51345E0F7 /* RCTTextSelection.h in Headers */ = {isa = PBXBuildFile; fileRef = 14E0ED3B8F5CCF12BD6C9B0E05D58099 /* RCTTextSelection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E76867E1B103BDF58882841F5400D9C3 /* RCTSurfaceRootShadowViewDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 8FE1912AA96ABC77692CD2F81F12FE06 /* RCTSurfaceRootShadowViewDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E7DB067695F4B5580F9BF955333937A7 /* RCTCxxBridge.mm in Sources */ = {isa = PBXBuildFile; fileRef = C5059A2802BF1C71F647EE66704C33E4 /* RCTCxxBridge.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - E8196AB9FC904C8DAADDE39C83C40696 /* RNImageUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 3DA642626E58D97735B71A6E1C20CA46 /* RNImageUtils.m */; }; - E849D2D1DDBB84F9799CC79DFF349E5C /* UMViewManagerAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = 44FC3DDA1CEB33B4066D816B1190FB01 /* UMViewManagerAdapter.m */; }; - E8A4BA0AFC1B0895C8A2614959A56E58 /* RCTJavaScriptLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = A9D0B8D18725FBE98A7CE8F979D4D0BC /* RCTJavaScriptLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E91311326FF7121ACEBB99D87FC175AD /* MethodCall.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 414634FD654535CA429C1332F3035549 /* MethodCall.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + E0058738355C0756A8BA6821D6D4C26E /* NSArray+Map.h in Headers */ = {isa = PBXBuildFile; fileRef = 77A879542502F7070AF9A8C69ADB3DDE /* NSArray+Map.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E088268A133ED2BB30952B9D8BF49E6C /* RNFSManager.m in Sources */ = {isa = PBXBuildFile; fileRef = CDFB79D1B72CC9F115EC4D15C238462B /* RNFSManager.m */; }; + E0D3705D832446D3FEB5C2823DCFEB8A /* REAOperatorNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 4AE9F2690ECE94E80D8AB94F054A75A1 /* REAOperatorNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E11D57B973664CF5804D353ECBEA4FF2 /* RCTWebSocketModule.m in Sources */ = {isa = PBXBuildFile; fileRef = D574AF6572A929E692D2B2D68D951157 /* RCTWebSocketModule.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + E20C7E78D1507C8CA71F2FD747F57883 /* RCTAnimatedImage.m in Sources */ = {isa = PBXBuildFile; fileRef = 7552595668B1D5809A62165425A6BEC6 /* RCTAnimatedImage.m */; }; + E265276741F6CCD0B0197C40C1EBA401 /* RCTVideoManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 6BC47DCDBD003D879DED230526A1DB95 /* RCTVideoManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E280DCFD418D6D9D730BDD4DC8785FFE /* RCTAnimationUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = CB607327DFC2A1838432FBADD88F97CC /* RCTAnimationUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E30D350E328FC6B89FBE47AAC06B36D8 /* RCTLocalAssetImageLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 26B70F46B490A1CA672ECA4F89AD102C /* RCTLocalAssetImageLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E36C51C3E220533F43779A4C14BDF1B9 /* RCTMultilineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A4569BE764460C66EEB4D92B9D9DF68 /* RCTMultilineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E374F3695520D2A247004F69FAF8FB6B /* RCTProfile.h in Headers */ = {isa = PBXBuildFile; fileRef = B0189DD220FC52262BD69028449F639E /* RCTProfile.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E38F57AA43BC472A0A7377F0DC64EAD3 /* RCTModuleMethod.mm in Sources */ = {isa = PBXBuildFile; fileRef = 647F111DBDFA643A4BAFF9BD075ABF04 /* RCTModuleMethod.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + E3D899247BA051EF2CCED618D78F98BD /* EXPermissions.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B95312A46203FF91B8A5AC270845DDC /* EXPermissions.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E3EE9ED3F0DE7971647E51C981116F70 /* EXAppLoaderProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = E23304D48D63146C4F14E7E958EECDFA /* EXAppLoaderProvider.m */; }; + E40DB184BE297B6EDE9790FD7CED850F /* RCTFrameAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = BDC5D614AAEE255FBE94F9F91DA40A75 /* RCTFrameAnimation.m */; }; + E4371B1E44E185F3F7756EE3FFC0D0D4 /* RNLongPressHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 4EDC4231F1503CDF71867940E7A04CDB /* RNLongPressHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E4EF3A7C1240B5B9C74BEEC8683644DC /* YGValue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BEF33791C98F694E5064D0860B8FADF8 /* YGValue.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + E514911259C84D2DD0928E5BD46A6D5E /* RCTScrollContentViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 817E25E07D4FEE3267236BA226B05BA4 /* RCTScrollContentViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + E554598FD317EE9149AB8454AA9059F8 /* RNScreens-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = DC9CEE7B5B087774B0E5DB232DADD542 /* RNScreens-dummy.m */; }; + E58350CF83487DFB57D27891CBD8EB50 /* RCTLayoutAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 464F110C02C82D8DDF32400D33FF7957 /* RCTLayoutAnimation.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + E5C6E1CB8D701EF04B3B4A88CB5EBAEB /* RCTComponentData.h in Headers */ = {isa = PBXBuildFile; fileRef = A4BC0B3B28D58C6832EC6003F1017ED9 /* RCTComponentData.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E5EB830C4C12B28B58C395262C7D74DF /* RCTWebSocketModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 4280107D1C7859D3C158AD3CE4AC1437 /* RCTWebSocketModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E5FB31F6C23D375DE5CBC98123BE9B8D /* RNGestureHandlerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 17995E2273EDB53DB57D131C0AABE02C /* RNGestureHandlerManager.m */; }; + E610C2244971A9291BE3ACFC2313C182 /* RCTLog.h in Headers */ = {isa = PBXBuildFile; fileRef = F76357596DE29FD3A090101A88ACD711 /* RCTLog.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E6513BA85B0E6C2102CD8408B65935C7 /* RCTTiming.m in Sources */ = {isa = PBXBuildFile; fileRef = 16360E0C4E8EFD917281F350C5FF7953 /* RCTTiming.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + E6F486259DE4E983CF4B2FD33BFDAACF /* RCTMaskedViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E969F2D2926AA76C4D00864E432C416 /* RCTMaskedViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E75B4970944AD4C977568BB51345E0F7 /* RCTTextSelection.h in Headers */ = {isa = PBXBuildFile; fileRef = B3922BC1CCF6E018444C351A3ECFF2F2 /* RCTTextSelection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E76867E1B103BDF58882841F5400D9C3 /* RCTSurfaceRootShadowViewDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 1307C039C25584E682A9C37C6BC9C8E4 /* RCTSurfaceRootShadowViewDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E7DB067695F4B5580F9BF955333937A7 /* RCTCxxBridge.mm in Sources */ = {isa = PBXBuildFile; fileRef = 9F5018CE0F6346D124D0A604BF93D1CF /* RCTCxxBridge.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + E8196AB9FC904C8DAADDE39C83C40696 /* RNImageUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = E72D6762D6F4E3229A40FC09BADF7F6B /* RNImageUtils.m */; }; + E849D2D1DDBB84F9799CC79DFF349E5C /* UMViewManagerAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = E1B67068675B97E6AA906B084FDE2B2A /* UMViewManagerAdapter.m */; }; + E8A4BA0AFC1B0895C8A2614959A56E58 /* RCTJavaScriptLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 2513938770EB82708FF014EC688613A7 /* RCTJavaScriptLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E90B927499B48F81A40091270F0B3303 /* RNFS-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 625AD851801A3BC2BA6D70D3A8146D25 /* RNFS-dummy.m */; }; + E91311326FF7121ACEBB99D87FC175AD /* MethodCall.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C74412F88738106CF6FBBA3512232651 /* MethodCall.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; E94ABC326E5A462BDE56DB62C28ADA66 /* F14Table.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B00D670DA1C8FBE1E86AEDFBE8D4B36E /* F14Table.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; E953548BA212D0038557EBF302E5FB1A /* fast-dtoa.h in Headers */ = {isa = PBXBuildFile; fileRef = 811C4B626C8F60E7304B47AEAC617E30 /* fast-dtoa.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E986C3ED432C325DCFDD9769A5D9D0F1 /* UMModuleRegistryProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B71048A5C7E32DE5C2A7CAB1A55EE85 /* UMModuleRegistryProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E99670DE6BBAD7C09E618409533D1080 /* EXDownloadDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 9FE0F75AE364A7C1DE9F7AB5F38F8ABF /* EXDownloadDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E9ABE6CDA901BA67D9F98839416BEACC /* RCTSegmentedControl.h in Headers */ = {isa = PBXBuildFile; fileRef = BE7CF68B670457DC7DBBCE6E71AB08FA /* RCTSegmentedControl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E9B1E68417AFB795BFAAC25CD3A20986 /* RCTModalHostViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B7470A4CD0AB92A16DBAEB3B47168DA /* RCTModalHostViewController.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - EA317FD5D355296D0721C2E79A1F6AA9 /* NSMutableDictionary+ImageMetadata.m in Sources */ = {isa = PBXBuildFile; fileRef = 3FEBB170ECE6FBE930F0C00F5F5B9888 /* NSMutableDictionary+ImageMetadata.m */; }; - EA6023DB70DB81EB2683A8BB7C38CF83 /* RCTObjcExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 45383396281F8384D3116150DE16C7FE /* RCTObjcExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EA7E5D455770F8A77B3A1AB0712CB98D /* RCTStatusBarManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 523DB8724BDEC8418505F0991B2639D1 /* RCTStatusBarManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - EB2B8E5BBA7BA67BDB1181031AEA2796 /* RCTErrorInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = F4372AF93419DD78500473B7AFA091E6 /* RCTErrorInfo.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - EB9447AD0415217885C538ED8CA120B5 /* RCTEventAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 8ADF7ACDB4280CC12F028075F4161835 /* RCTEventAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EBA14ECF6325AE246FF34646A5D8CA77 /* RCTTypedModuleConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 97B4FC401451166465BAA5F950638C92 /* RCTTypedModuleConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EBA79B0AE533BE87BCF47925BEEF5A58 /* RNGestureHandlerEvents.m in Sources */ = {isa = PBXBuildFile; fileRef = D99FF3E2A9C59DFB249B5841B5A55019 /* RNGestureHandlerEvents.m */; }; - EC3D18348DB3DC93777CD727DB4BBB1B /* RCTSinglelineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = BBADBB1EA2E5AE0FF6AC7976797BC216 /* RCTSinglelineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ECAC33586186CB94B60F253DAFBEAB01 /* RCTDevMenu.h in Headers */ = {isa = PBXBuildFile; fileRef = 97D5BB053C9C1D7D848E0458AADDBAC9 /* RCTDevMenu.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ECE34F1B32EAE58C5A36F0AD04B827E6 /* UMViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 32CFF65879726B1899A1CBF0C3B81CD0 /* UMViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ECE66264C55D9B7BAEBFF7A3AE7A36BC /* RNCSafeAreaViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = E07A84DA96218348B49118ECDCEF2904 /* RNCSafeAreaViewManager.m */; }; - ECE7940ACCA39C2C35C4D929BE8F7BA6 /* RCTReloadCommand.m in Sources */ = {isa = PBXBuildFile; fileRef = 338A5695A7CD602E2CCD515C444E00D3 /* RCTReloadCommand.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + E986C3ED432C325DCFDD9769A5D9D0F1 /* UMModuleRegistryProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = C6D1A8B73E850E887F7EF0501A1B5B13 /* UMModuleRegistryProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E99670DE6BBAD7C09E618409533D1080 /* EXDownloadDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 38046096E9F2F9FB4D95181CA0B2C463 /* EXDownloadDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E9ABE6CDA901BA67D9F98839416BEACC /* RCTSegmentedControl.h in Headers */ = {isa = PBXBuildFile; fileRef = 4CC93F8ABA032297191E3E99F813604D /* RCTSegmentedControl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E9B1E68417AFB795BFAAC25CD3A20986 /* RCTModalHostViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = AC155F125D5AA52A343929FE7BDAC626 /* RCTModalHostViewController.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + EA317FD5D355296D0721C2E79A1F6AA9 /* NSMutableDictionary+ImageMetadata.m in Sources */ = {isa = PBXBuildFile; fileRef = EC22D5A5D51740C1D727AB192024DD9F /* NSMutableDictionary+ImageMetadata.m */; }; + EA6023DB70DB81EB2683A8BB7C38CF83 /* RCTObjcExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 72B36530859D2E5550669E1E3C042972 /* RCTObjcExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EA7E5D455770F8A77B3A1AB0712CB98D /* RCTStatusBarManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F57B158A418B2DCF2DDBE405967E7351 /* RCTStatusBarManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + EB2B8E5BBA7BA67BDB1181031AEA2796 /* RCTErrorInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 0C74FBAF2FB940BD5B6DE29AA224F2E6 /* RCTErrorInfo.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + EB9447AD0415217885C538ED8CA120B5 /* RCTEventAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 50CC2760FCC830DCE595D6B8D98F67B8 /* RCTEventAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EBA14ECF6325AE246FF34646A5D8CA77 /* RCTTypedModuleConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 5DBFC4B974BBF0709DFEF1F2B6FA6FC2 /* RCTTypedModuleConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EBA79B0AE533BE87BCF47925BEEF5A58 /* RNGestureHandlerEvents.m in Sources */ = {isa = PBXBuildFile; fileRef = 055741D97CC66254675FFFE83B7585C1 /* RNGestureHandlerEvents.m */; }; + EC3D18348DB3DC93777CD727DB4BBB1B /* RCTSinglelineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D2F82D9FC6F110282C03B470CF4DC52 /* RCTSinglelineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ECAC33586186CB94B60F253DAFBEAB01 /* RCTDevMenu.h in Headers */ = {isa = PBXBuildFile; fileRef = A2ECB9FC67E295735737B5DA6DDA9D49 /* RCTDevMenu.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ECE34F1B32EAE58C5A36F0AD04B827E6 /* UMViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = C9774FC5B433E134616FB64740E5419F /* UMViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ECE66264C55D9B7BAEBFF7A3AE7A36BC /* RNCSafeAreaViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 420262690A180B41C6359BD56BD9A9E3 /* RNCSafeAreaViewManager.m */; }; + ECE7940ACCA39C2C35C4D929BE8F7BA6 /* RCTReloadCommand.m in Sources */ = {isa = PBXBuildFile; fileRef = 38FB221FD4BCC65DC85BE9B252FA9F87 /* RCTReloadCommand.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; ECF6206665987814DF7108E5D43A19BD /* ColdClass.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FFC57E46B275BE9B41BACF372B1BF023 /* ColdClass.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - ED8406232AC807B51FD5E6F8E11B1184 /* RCTInterpolationAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 7BB78C5C844AB15B88955897E94FAF78 /* RCTInterpolationAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ED8DFEF2925738083FDD82E187BAE53E /* RCTPerformanceLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 750F52775A288BF229AE42C5D1CCB0C4 /* RCTPerformanceLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ED99A0EFED2F3B36787B54661BEF2E74 /* RCTTrackingAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B877B67BF39C396492756DE959885EF /* RCTTrackingAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EDC6F61D8EBD9AB8E1B58284102EE99F /* Yoga.h in Headers */ = {isa = PBXBuildFile; fileRef = BA8E0DB04791DD6AF156286B135903D6 /* Yoga.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EDE230B3ED106F6819D221ABFB95DECE /* RCTNetworkTask.m in Sources */ = {isa = PBXBuildFile; fileRef = 46FD4CE86562D4E135199CF95ADF2E26 /* RCTNetworkTask.m */; }; - EE967BC5C40256F1F4E8989D777C3A38 /* RCTBridge+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = DF44912341ECB7D419B05AC16F495184 /* RCTBridge+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EEC25726BBB8B8766A47D5AF36CBC408 /* RCTStyleAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 95C2F0E606967752511D2C35D088AC2F /* RCTStyleAnimatedNode.m */; }; - EF077870B9D3ACEEB1857EC27EBA38C6 /* UMJavaScriptContextProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = C5718913AC2355948D57DD094DF44D42 /* UMJavaScriptContextProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EF16449A9922E859447ACD974C382338 /* RCTDivisionAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = BB32CC8778C293681E90A0064EE7967A /* RCTDivisionAnimatedNode.m */; }; + ED8406232AC807B51FD5E6F8E11B1184 /* RCTInterpolationAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 2BF71FCE2C47FC505ABB71E0E5747D54 /* RCTInterpolationAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ED8DFEF2925738083FDD82E187BAE53E /* RCTPerformanceLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 00298528A02CCF3098F9037F043659E6 /* RCTPerformanceLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ED99A0EFED2F3B36787B54661BEF2E74 /* RCTTrackingAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C6D3125CA86D820BD9EB74EB3972799 /* RCTTrackingAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EDC6F61D8EBD9AB8E1B58284102EE99F /* Yoga.h in Headers */ = {isa = PBXBuildFile; fileRef = 33F6A3757C2FBB7EE9F8C8BFAFC77E10 /* Yoga.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EDE230B3ED106F6819D221ABFB95DECE /* RCTNetworkTask.m in Sources */ = {isa = PBXBuildFile; fileRef = 123533AD2569FE5E4230B743DE07A21B /* RCTNetworkTask.m */; }; + EE967BC5C40256F1F4E8989D777C3A38 /* RCTBridge+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = DDB6C2690DEFEB73DF27A8B41A971543 /* RCTBridge+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EEC25726BBB8B8766A47D5AF36CBC408 /* RCTStyleAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 6AF2080122CB66D87D7373BAC5D2B09E /* RCTStyleAnimatedNode.m */; }; + EF077870B9D3ACEEB1857EC27EBA38C6 /* UMJavaScriptContextProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B15B4F9EF165F011B0009F26F45A81F /* UMJavaScriptContextProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EF16449A9922E859447ACD974C382338 /* RCTDivisionAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 78AA6B97F23F8B6FA8D711D9882D3584 /* RCTDivisionAnimatedNode.m */; }; EF7B2AEA2F10988325CBED09453AF049 /* MallocImpl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 19FC52C88E761337352B0E43EE9A58CE /* MallocImpl.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - F00E5B9E3F723863FE28BF398C8B9E78 /* RCTSwitchManager.h in Headers */ = {isa = PBXBuildFile; fileRef = B1E4E0975FDEA1705A7950DD62784FDA /* RCTSwitchManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F01722E2A34C4286F5C8531A91301574 /* RCTLayoutAnimationGroup.h in Headers */ = {isa = PBXBuildFile; fileRef = 69AB34CC87762CB3E7E3EC23B62134DD /* RCTLayoutAnimationGroup.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F02C80E50A42C5C5D22B26EC7C971239 /* RNPinchHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = ACDAED66F2340F63BD1BB670495D082B /* RNPinchHandler.m */; }; - F036F92B06A1D33ECB4AC2FD1ACEEF48 /* YGConfig.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3434AA37908B5B206E27A3CCF84CE998 /* YGConfig.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - F079552F0B5598B4B500B527B52E8036 /* RCTView.h in Headers */ = {isa = PBXBuildFile; fileRef = FE03EA5E7F76C19C6C321422F5988833 /* RCTView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F094926DC4D2352308536A6D7A52EC15 /* RCTShadowView+Layout.h in Headers */ = {isa = PBXBuildFile; fileRef = 1321C2A26616712E599B03417314F93C /* RCTShadowView+Layout.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F0AB1EAEB67FA9F7F0EAC55737D635B8 /* TurboModuleBinding.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 84F344DBB3CAD0AD021BC3F70A38991B /* TurboModuleBinding.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + F00E5B9E3F723863FE28BF398C8B9E78 /* RCTSwitchManager.h in Headers */ = {isa = PBXBuildFile; fileRef = AC80CA6CB0023C211AC987BCDE542AC5 /* RCTSwitchManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F01722E2A34C4286F5C8531A91301574 /* RCTLayoutAnimationGroup.h in Headers */ = {isa = PBXBuildFile; fileRef = 55424E6DE1E5945B416911AB4DD371C3 /* RCTLayoutAnimationGroup.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F02C80E50A42C5C5D22B26EC7C971239 /* RNPinchHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 222C5D587EB5199E1624E37DB95C1CBC /* RNPinchHandler.m */; }; + F036F92B06A1D33ECB4AC2FD1ACEEF48 /* YGConfig.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1CA1183E0421FC38D49FB2BDF05F9002 /* YGConfig.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + F079552F0B5598B4B500B527B52E8036 /* RCTView.h in Headers */ = {isa = PBXBuildFile; fileRef = CD9973ACA95E9957F713CF36613A1EC0 /* RCTView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F094926DC4D2352308536A6D7A52EC15 /* RCTShadowView+Layout.h in Headers */ = {isa = PBXBuildFile; fileRef = F06FBE94467DCD3EB4B69D2622EFEA6C /* RCTShadowView+Layout.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F0AB1EAEB67FA9F7F0EAC55737D635B8 /* TurboModuleBinding.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7CF29E9DE28A8E52D78E59D6256E29B8 /* TurboModuleBinding.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; F10066FFFCB05691561796C75A21D831 /* fixed-dtoa.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3D7E85AE6DA022DF1693B883059A7508 /* fixed-dtoa.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - F14E6DF65029801DF73C6E5626CB1E8F /* NSTextStorage+FontScaling.h in Headers */ = {isa = PBXBuildFile; fileRef = 1482F37D0F4EBBE275207AC077784DA9 /* NSTextStorage+FontScaling.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F1680D2982D6B5BF13DD0D4B00708253 /* UMReactNativeEventEmitter.m in Sources */ = {isa = PBXBuildFile; fileRef = 81C6E572A0D81F177745262C2AA80DAA /* UMReactNativeEventEmitter.m */; }; - F1C9F4E42F4A56E913312C595314D0D1 /* UMCore-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 477415626F6F69FB2A3460D473EAC2DF /* UMCore-dummy.m */; }; + F14E6DF65029801DF73C6E5626CB1E8F /* NSTextStorage+FontScaling.h in Headers */ = {isa = PBXBuildFile; fileRef = E7B2BB32FCF0F092E6BE401E426BDA86 /* NSTextStorage+FontScaling.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F1680D2982D6B5BF13DD0D4B00708253 /* UMReactNativeEventEmitter.m in Sources */ = {isa = PBXBuildFile; fileRef = 980AADFAD2FCE5804B469C508EDBBF7E /* UMReactNativeEventEmitter.m */; }; + F1C9F4E42F4A56E913312C595314D0D1 /* UMCore-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = CADA8FE388888B70F5E2E0FBF3E19D74 /* UMCore-dummy.m */; }; F23B083BA9E52FB6BBAD6D4C68CE8074 /* Conv.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D803CD10E45FD26731AE64091D39DAA9 /* Conv.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - F29899D44586B15A3CFBB354C1DC1406 /* RCTTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 21D16B827DCB58B7F8A3B6F05AC893D1 /* RCTTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F2DC4D68D95807B1FAB1279790CB7918 /* RNTapHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 5ED8FF045F3A6F0E03952F16445AE82F /* RNTapHandler.m */; }; - F3900C767C910B42F8FCC8DBA03C9437 /* RNFaceDetectorModuleMLKit.h in Headers */ = {isa = PBXBuildFile; fileRef = F8C3CC2F123ACD79C72348D7F6932655 /* RNFaceDetectorModuleMLKit.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F396192FB6CE41B6D7350FED798D864D /* RCTMaskedView.h in Headers */ = {isa = PBXBuildFile; fileRef = A8065E04FFEC55C1B6069CC4ED4E7B92 /* RCTMaskedView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F3ACCF48EE9D4D168F349A203E4574CE /* YGNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 06AA441D921D83722FA7B84AB994BB39 /* YGNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F3F21F6F7BD053F8D574ED622A610CDD /* RCTManagedPointer.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0BBD5AFBE87640D5A21E2EF4C8062B33 /* RCTManagedPointer.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - F405AE01E7D68344B5AB3C5410DD7A21 /* RCTWrapperViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 22924032C5C2C77395260138B858309C /* RCTWrapperViewController.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - F415A453C55B874749C2168D436F6936 /* RCTModalHostViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 663724B2BDC2A9385FB4B35E76D4DAB3 /* RCTModalHostViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - F515A6E7B426BDEB13B544686F7E09B5 /* REABezierNode.m in Sources */ = {isa = PBXBuildFile; fileRef = B0AA41B36B9153B4E6F656CE44686C36 /* REABezierNode.m */; }; - F5BB886BC1EBB2A424AE9EE9181ABDF1 /* RCTCxxUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 51FCD41CD6C6DDEFEC4380AB70054F53 /* RCTCxxUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F72DE4140B33070BE3D15A9CBB33AECF /* RCTFPSGraph.m in Sources */ = {isa = PBXBuildFile; fileRef = 728DDE532B5750ACBEB4C07C1CD49F55 /* RCTFPSGraph.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - F7326C54AFF5725D5AA4170653AAA9FF /* RCTSurfaceRootShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = F7237D2889014968DB6CB793134D0284 /* RCTSurfaceRootShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - F78C6ADFA1E90EC7F56800A1E9C832E2 /* RCTEventAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 58B87AAC8C250697040FFCB4287EB42E /* RCTEventAnimation.m */; }; - F7AC13F95A17CF6206A70FE3D8603087 /* RCTTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = A0EC43392EB35229109BCBC6769D0BA2 /* RCTTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F7D1A587F1C235937C3D4E9D5D40773B /* jsi.h in Headers */ = {isa = PBXBuildFile; fileRef = 671299675E69ABE360C734E2002791DB /* jsi.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F7D9C010C66216A32D145C2F0995523C /* RCTMultipartStreamReader.m in Sources */ = {isa = PBXBuildFile; fileRef = 46DC234F8A08E34CE0A551A9349C2D43 /* RCTMultipartStreamReader.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - F7E6ADB5A82436CC44CDD9E45DC38EDF /* RCTLinkingManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 2EBED2F2909DD60BABE3AA796A7D1C9C /* RCTLinkingManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F81FF22160618B72776526BDBF04DA77 /* RCTInspector.h in Headers */ = {isa = PBXBuildFile; fileRef = 4FFDB14E4B37EA9BB4F18CFDB892D196 /* RCTInspector.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F851A3334F426A1A8747B2C1F82BDDC8 /* RCTSafeAreaView.h in Headers */ = {isa = PBXBuildFile; fileRef = 29FB66FBBA4C427F4CBAE22965023D83 /* RCTSafeAreaView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F867C8BA9113139FA8BB500FEE27E18E /* RCTBlobCollector.mm in Sources */ = {isa = PBXBuildFile; fileRef = 98B7CAAD50B7BC18BC9808B4746BD3B0 /* RCTBlobCollector.mm */; }; - F8F72885ABCF30422BC5456A960DE453 /* React-RCTSettings-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1B1B0EB03AC1AB09BA336B6920AEF443 /* React-RCTSettings-dummy.m */; }; - F978A9DF718A5D75012FCF2212EA24A8 /* RCTPickerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A14788E3694B83A0C295867DFE9B2F0 /* RCTPickerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F9C99A700FF08B75D32062B06FE7D5EC /* jsi-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = D897CDEB8D698C777AC28E337DAB14D5 /* jsi-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F9D0A6ED2C433954E6022AB7DA1D35D5 /* RCTInspectorDevServerHelper.mm in Sources */ = {isa = PBXBuildFile; fileRef = BABE3B01D22EF36FA4A43A982614D34B /* RCTInspectorDevServerHelper.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - FA0866E6A67970A9021695DD201F297F /* RCTTextDecorationLineType.h in Headers */ = {isa = PBXBuildFile; fileRef = DD31F66820844903766E1DEC5174A4BA /* RCTTextDecorationLineType.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FA261EF55BDA4678D08512DF89105B12 /* RNSScreenStackHeaderConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 84689D554179BD137E377E64409A2BF5 /* RNSScreenStackHeaderConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FA42CF4FDAE3EDEE8B5D4C57A5CAA731 /* RCTRedBoxExtraDataViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 35D0F916DB212A571FBDDB4D2999DF5B /* RCTRedBoxExtraDataViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FA6CDEB2A292F61C8FA52F4239629B79 /* RNVectorIconsManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 284C7E99721531552E6745077D14A20B /* RNVectorIconsManager.m */; }; - FA6F427622DE65F1E1952196D41C3F73 /* RCTSurfaceView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1553F36F63D53A6F1ECCB7EA083BDEE9 /* RCTSurfaceView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - FAC68A2364FC07AD1B7A518A0E30BB65 /* JSDeltaBundleClient.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3F7A6612E5BA5C5B2A36EB87BAA4C7A2 /* JSDeltaBundleClient.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - FB0862EEBD07B034EBDFF030FA104DA1 /* RCTSurfacePresenterStub.m in Sources */ = {isa = PBXBuildFile; fileRef = A8715A1BCCFD8FC20A034A78275DBDCD /* RCTSurfacePresenterStub.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - FB56FB57C184B356DAE59AA1CAFD9D21 /* UMReactNativeEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 4737F454B2F45B034C96C2A4B62F4634 /* UMReactNativeEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FB72FD83F67C894AD142EB1845000CF2 /* RNCAsyncStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = 98433722ED81079DB8D9E18BCDC1E0A0 /* RNCAsyncStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FBFF4FFC1C7203191B2ABD4852C48896 /* RCTAutoInsetsProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 44A4CA8B1AD544203167897360A9421C /* RCTAutoInsetsProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FD0FD721DD68A6C1A0E02CD6C8D21303 /* EXUserNotificationPermissionRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = 983793D4A777F37B896A7B04A7356447 /* EXUserNotificationPermissionRequester.m */; }; - FD558301388205087339CC2E79ECF3B8 /* RCTUIManagerUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = DE8A821F4AAA32AAE138CF48AE6A7C4F /* RCTUIManagerUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FD9601CB76452E298560A4D94A4410C6 /* RCTTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 548DAD15D04F59EB0818CCE9D9CD0345 /* RCTTextViewManager.m */; }; - FDBAF6439467D3A92850A0A6D6736E60 /* JSCExecutorFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 6AEFFAFA642065680A33528D7EEB96BB /* JSCExecutorFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FE1616727C8839FAE81A846F60310781 /* RCTNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = 695D055CF2DDE658FC547D68DC319AC5 /* RCTNetworking.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F29899D44586B15A3CFBB354C1DC1406 /* RCTTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D8C944CA73176CA901EDE3E863B88B5 /* RCTTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F2DC4D68D95807B1FAB1279790CB7918 /* RNTapHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 0CDD2E0C1512A339D8D61F48E07F695D /* RNTapHandler.m */; }; + F3900C767C910B42F8FCC8DBA03C9437 /* RNFaceDetectorModuleMLKit.h in Headers */ = {isa = PBXBuildFile; fileRef = C3D65C9FE172BB39FD4D4393F7FBF768 /* RNFaceDetectorModuleMLKit.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F396192FB6CE41B6D7350FED798D864D /* RCTMaskedView.h in Headers */ = {isa = PBXBuildFile; fileRef = C217362007CA7F70B72A86A7F2345DD8 /* RCTMaskedView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F3ACCF48EE9D4D168F349A203E4574CE /* YGNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 06E29E602A93DF0E54FF5B90983D5A56 /* YGNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F3F21F6F7BD053F8D574ED622A610CDD /* RCTManagedPointer.mm in Sources */ = {isa = PBXBuildFile; fileRef = C958BC4224C4F38A81C812D018D82ECF /* RCTManagedPointer.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + F405AE01E7D68344B5AB3C5410DD7A21 /* RCTWrapperViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C9AA8DC980A2DDB69A5F3CCDD7FD594 /* RCTWrapperViewController.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + F415A453C55B874749C2168D436F6936 /* RCTModalHostViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 0EEAD73B2AF11A61CAA18AD53195C650 /* RCTModalHostViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + F515A6E7B426BDEB13B544686F7E09B5 /* REABezierNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 2A0C45F73723728076A06DF693A10012 /* REABezierNode.m */; }; + F5BB886BC1EBB2A424AE9EE9181ABDF1 /* RCTCxxUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = F66901A7D43B99BA9C511B685A37D560 /* RCTCxxUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F72DE4140B33070BE3D15A9CBB33AECF /* RCTFPSGraph.m in Sources */ = {isa = PBXBuildFile; fileRef = E40023310D2C5EE8B5190F590183ED19 /* RCTFPSGraph.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + F7326C54AFF5725D5AA4170653AAA9FF /* RCTSurfaceRootShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = D48E33E2E3AE7E63AD35F08F19206144 /* RCTSurfaceRootShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + F78C6ADFA1E90EC7F56800A1E9C832E2 /* RCTEventAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = FDF6B85A0F0BBEAAAB6A2FF8E208847B /* RCTEventAnimation.m */; }; + F7AC13F95A17CF6206A70FE3D8603087 /* RCTTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = D2501C267A2FC93AB67F41F770596AB2 /* RCTTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F7D1A587F1C235937C3D4E9D5D40773B /* jsi.h in Headers */ = {isa = PBXBuildFile; fileRef = F977DF969BE617C98B499B21C3CE4F06 /* jsi.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F7D9C010C66216A32D145C2F0995523C /* RCTMultipartStreamReader.m in Sources */ = {isa = PBXBuildFile; fileRef = FA88DEC679531C41480CEAF5C4CA8C6F /* RCTMultipartStreamReader.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + F7E6ADB5A82436CC44CDD9E45DC38EDF /* RCTLinkingManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 64519E38A6C92671B46DF5FD0AF5BD54 /* RCTLinkingManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F81FF22160618B72776526BDBF04DA77 /* RCTInspector.h in Headers */ = {isa = PBXBuildFile; fileRef = 542A3190289E3A6BEC639996A66A0504 /* RCTInspector.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F851A3334F426A1A8747B2C1F82BDDC8 /* RCTSafeAreaView.h in Headers */ = {isa = PBXBuildFile; fileRef = 26252FBE589074A427D3745B55447735 /* RCTSafeAreaView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F867C8BA9113139FA8BB500FEE27E18E /* RCTBlobCollector.mm in Sources */ = {isa = PBXBuildFile; fileRef = 3EAB8A9995B5C981EEA031B5A2AC5A16 /* RCTBlobCollector.mm */; }; + F8F72885ABCF30422BC5456A960DE453 /* React-RCTSettings-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7CD9262359A5544A180A26C9BD6DF5BB /* React-RCTSettings-dummy.m */; }; + F978A9DF718A5D75012FCF2212EA24A8 /* RCTPickerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 019AF45DFB14E2DB3428D0DAF47F21D7 /* RCTPickerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F9C99A700FF08B75D32062B06FE7D5EC /* jsi-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C0D2B5CD737E3F327B775EED3BFA02F /* jsi-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F9D0A6ED2C433954E6022AB7DA1D35D5 /* RCTInspectorDevServerHelper.mm in Sources */ = {isa = PBXBuildFile; fileRef = 7ECECB2978C5985B2AD61C235E9684B8 /* RCTInspectorDevServerHelper.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + FA0866E6A67970A9021695DD201F297F /* RCTTextDecorationLineType.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AD73D3E84ED8357104BFCE0B64297DA /* RCTTextDecorationLineType.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FA261EF55BDA4678D08512DF89105B12 /* RNSScreenStackHeaderConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A05ED24B77DED6444B96D157B0803CE /* RNSScreenStackHeaderConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FA42CF4FDAE3EDEE8B5D4C57A5CAA731 /* RCTRedBoxExtraDataViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 269CF863648C9C33064D8E42E71EFB1B /* RCTRedBoxExtraDataViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FA6CDEB2A292F61C8FA52F4239629B79 /* RNVectorIconsManager.m in Sources */ = {isa = PBXBuildFile; fileRef = E16C3A288DB88F55B9D390A55DC1D1DE /* RNVectorIconsManager.m */; }; + FA6F427622DE65F1E1952196D41C3F73 /* RCTSurfaceView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 5A2EF89CC871A7DDC0CE7D89961C99BB /* RCTSurfaceView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + FAC68A2364FC07AD1B7A518A0E30BB65 /* JSDeltaBundleClient.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CAC00BA0FB4393F3B460E569497828A9 /* JSDeltaBundleClient.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + FB0862EEBD07B034EBDFF030FA104DA1 /* RCTSurfacePresenterStub.m in Sources */ = {isa = PBXBuildFile; fileRef = 9D54075CCBBE8BABF61E2CC863B4D0C8 /* RCTSurfacePresenterStub.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + FB56FB57C184B356DAE59AA1CAFD9D21 /* UMReactNativeEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 974792B850F0F5442722BFBF8CF9CE5E /* UMReactNativeEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FB72FD83F67C894AD142EB1845000CF2 /* RNCAsyncStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = E091C94898AEE5E3632D86374FDD54F7 /* RNCAsyncStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FBFF4FFC1C7203191B2ABD4852C48896 /* RCTAutoInsetsProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 7394745DA1D3FC508866D75D8D5214C1 /* RCTAutoInsetsProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FD0FD721DD68A6C1A0E02CD6C8D21303 /* EXUserNotificationPermissionRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = 4C626D52A19D42C28012E524FD1CFE3E /* EXUserNotificationPermissionRequester.m */; }; + FD558301388205087339CC2E79ECF3B8 /* RCTUIManagerUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B855DB1E40B17FD5B2EE29C614996CA /* RCTUIManagerUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FD9601CB76452E298560A4D94A4410C6 /* RCTTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 8EB285CDFEA6B7164C2AB101BB8A60A2 /* RCTTextViewManager.m */; }; + FDBAF6439467D3A92850A0A6D6736E60 /* JSCExecutorFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 781E815DFCFA603CE1F2850A07238B6D /* JSCExecutorFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FE1616727C8839FAE81A846F60310781 /* RCTNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = ED8C9E85B728EA63B9F64F249976EBEC /* RCTNetworking.h */; settings = {ATTRIBUTES = (Project, ); }; }; FE1968DB86F4E0A940ED78C4F73608BB /* raw_logging.cc in Sources */ = {isa = PBXBuildFile; fileRef = B6383B11B3C2B5AF20D2358AF8DF6C3D /* raw_logging.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; - FE7D0BE1B4F581460DB11DCED18BCE1B /* RNCAssetsLibraryRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 022C65181BD44561DEEE336E7D47B230 /* RNCAssetsLibraryRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FE9B5C3BD53A20ACA7827E225EE6EBC5 /* RCTInputAccessoryView.h in Headers */ = {isa = PBXBuildFile; fileRef = 575BD7545EDFE6534CEF81B12F1B9663 /* RCTInputAccessoryView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FEBC97B6ED22D0D591A9EEF111F4DC40 /* Orientation.h in Headers */ = {isa = PBXBuildFile; fileRef = 6408394EE21554C5DE7CF7CA5D3287A9 /* Orientation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FF149D4E59EA448645E5A52B2A396D26 /* RCTVibration.m in Sources */ = {isa = PBXBuildFile; fileRef = A5C5F73F1DE14E9BA4F8BAE69BFEC48E /* RCTVibration.m */; }; - FF60B7B41824DC680D901D24F8DB2F78 /* EXFileSystemLocalFileHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = DA1F2C15975EAE9E33E6E7696716335B /* EXFileSystemLocalFileHandler.m */; }; - FF9BF9600499CC3AA58736CBD6E9A04B /* RCTImageBlurUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 78C53C4399F64F7BC6A2B0A0C1B7F78D /* RCTImageBlurUtils.m */; }; + FE7D0BE1B4F581460DB11DCED18BCE1B /* RNCAssetsLibraryRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 24DCDE9E0996B2A81964DBCFDCB7BDB8 /* RNCAssetsLibraryRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FE9B5C3BD53A20ACA7827E225EE6EBC5 /* RCTInputAccessoryView.h in Headers */ = {isa = PBXBuildFile; fileRef = 662DF4B52126CFCA910AA60BE28A2324 /* RCTInputAccessoryView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FEBC97B6ED22D0D591A9EEF111F4DC40 /* Orientation.h in Headers */ = {isa = PBXBuildFile; fileRef = DBA59528C711B7D806929A07238A4BD7 /* Orientation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FF149D4E59EA448645E5A52B2A396D26 /* RCTVibration.m in Sources */ = {isa = PBXBuildFile; fileRef = 96F14BFE5D2CD4C94FF02C435C55EB81 /* RCTVibration.m */; }; + FF60B7B41824DC680D901D24F8DB2F78 /* EXFileSystemLocalFileHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 2FE427E1DE0F47281825F31DEF6B8978 /* EXFileSystemLocalFileHandler.m */; }; + FF9BF9600499CC3AA58736CBD6E9A04B /* RCTImageBlurUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = A965ABB094651BB1367120B749FDC2A3 /* RCTImageBlurUtils.m */; }; /* End PBXBuildFile section */ /* Begin PBXContainerItemProxy section */ - 006840259776247409B3F66A825DB282 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = BA3F5E5AA483B263B69601DE2FA269CB; - remoteInfo = "react-native-cameraroll"; - }; 013C8C712E31279FB89EBADB1C1A4BC4 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -1067,6 +1069,14 @@ remoteGlobalIDString = 2644525CCE081E967809A8163D893A93; remoteInfo = UMFileSystemInterface; }; +<<<<<<< HEAD + 022A69187B745A99E8012320225C7C64 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; + remoteInfo = RCTTypeSafety; +======= <<<<<<< HEAD 017C04025A4298BEACD45894215CECA3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -1089,14 +1099,23 @@ remoteGlobalIDString = F7D033C4C128EECAA020990641FA985F; remoteInfo = "React-jsinspector"; >>>>>>> master +>>>>>>> master + }; + 043E72047BBF4C25EE4A500A7EECF0CC /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; + remoteInfo = FBReactNativeSpec; }; +<<<<<<< HEAD 0462D3CA59B20A414813848E693AB128 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = A4F685BE3CAC127BDCE4E0DBBD88D191; remoteInfo = Folly; - }; +======= <<<<<<< HEAD 06FA4EC2E0CB9E742F29052798CC58CB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -1111,6 +1130,7 @@ proxyType = 1; remoteGlobalIDString = E7E7CE52C8C68B17224FF8C262D80ABF; remoteInfo = RCTRequired; +>>>>>>> master >>>>>>> master }; 084F499F0E75CA5B6B09C094AB6A9F45 /* PBXContainerItemProxy */ = { @@ -1127,27 +1147,6 @@ remoteGlobalIDString = 651511D7DA7F07F9FC9AA40A2E86270D; remoteInfo = "React-RCTNetwork"; }; - 0BC718BF7EFBA5FC483F865022BB9F6A /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; - remoteInfo = UMCore; - }; - 0C1D275275A60CCE8A0FAEB1B02C607B /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; - remoteInfo = RCTTypeSafety; - }; - 0C3F665A0A26301DE99BCE44233DB4B1 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2B122E1CB26AAA2917F6794BBD7CA90D; - remoteInfo = "react-native-orientation"; - }; 0E7E9C1E8AF5EB58DB904FD1ACC9FFBC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -1169,13 +1168,6 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - 10A61B74271A7D441BED76E361E5E6E2 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2644525CCE081E967809A8163D893A93; - remoteInfo = UMFileSystemInterface; - }; 10AC45DE3E2B4156F4C1D366EC6D4CD3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -1221,12 +1213,12 @@ remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; remoteInfo = DoubleConversion; }; - 19E6BA3B2973A9237D5DD31749342917 /* PBXContainerItemProxy */ = { + 196A1450460DC65FEC15EE2B4B9ED0D5 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 214E42634D1E187D876346D36184B655; - remoteInfo = RNScreens; + remoteGlobalIDString = F7845084F0CF03F54107EEF7411760AD; + remoteInfo = UMPermissionsInterface; }; <<<<<<< HEAD ======= @@ -1245,12 +1237,12 @@ remoteGlobalIDString = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6; remoteInfo = "React-RCTText"; }; - 1F0F922FA8E8A73E8C9FE995B8816522 /* PBXContainerItemProxy */ = { + 20EBCAFFC6E5931FDADBC80ED7E023F0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 97C4DE84FA3CC4EC06AA6D8C249949B7; - remoteInfo = UMImageLoaderInterface; + remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; + remoteInfo = "React-jsi"; }; 21E2E58CC7895C92D7CB4994458BCD18 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -1259,19 +1251,19 @@ remoteGlobalIDString = A4F685BE3CAC127BDCE4E0DBBD88D191; remoteInfo = Folly; }; - 222F340C5B38F7EDF0338073D6E0C915 /* PBXContainerItemProxy */ = { + 2284921B4FC397971FFFACC555D01A18 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 4F265533AAB7C8985856EC78A33164BB; - remoteInfo = "React-RCTImage"; + remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; + remoteInfo = UMCore; }; - 2284921B4FC397971FFFACC555D01A18 /* PBXContainerItemProxy */ = { + 2355BB068517EB300E315EDB1F91A128 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; - remoteInfo = UMCore; + remoteGlobalIDString = BA3F5E5AA483B263B69601DE2FA269CB; + remoteInfo = "react-native-cameraroll"; }; 22FA82389D74D5AB40C2DDE322CCBA4B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -1294,6 +1286,13 @@ remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; + 2473E6F7BF2CC2F40C1F20CEC64D44DA /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; + remoteInfo = React; + }; 2539C386890D7883A108FF4E3829524A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -1308,6 +1307,9 @@ remoteGlobalIDString = 95D98F901D07557EF7CA38D3F03832C5; remoteInfo = "React-RCTBlob"; }; +<<<<<<< HEAD + 2774DD5A4E80133CAAADF1C3033036AE /* PBXContainerItemProxy */ = { +======= <<<<<<< HEAD 25B12FA3C7242BC8FA3F4FB3A7C9BB61 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -1331,18 +1333,31 @@ remoteInfo = "react-native-background-timer"; ======= 26CEE5406D2A89E527E14B1D9B545A82 /* PBXContainerItemProxy */ = { +>>>>>>> master isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2038C6F97563AAD6162C284B3EDD5B3B; - remoteInfo = UMSensorsInterface; + remoteGlobalIDString = DA0709CAAD589C6E7963495210438021; + remoteInfo = "React-jsiexecutor"; + }; + 27E030B71CA720AD9F4A8984F4D468FE /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; +<<<<<<< HEAD + remoteGlobalIDString = 651511D7DA7F07F9FC9AA40A2E86270D; + remoteInfo = "React-RCTNetwork"; }; - 2B0E3F4BA6E71CAEC049CD7C15A4E074 /* PBXContainerItemProxy */ = { + 2A16277A4C375BF94553F16BF77D7D6A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; + remoteGlobalIDString = 53D121F9F9BB0F8AC1C94A12C5A8572F; + remoteInfo = "React-RCTVibration"; +======= remoteGlobalIDString = 0A915EE9D35CA5636731F8763E774951; remoteInfo = UMCameraInterface; +>>>>>>> master >>>>>>> master }; 2C95DFFCB2EC326C56D43774DED19805 /* PBXContainerItemProxy */ = { @@ -1366,13 +1381,21 @@ remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; remoteInfo = DoubleConversion; }; + 2E9BDD202015131E923392F2B82C80D4 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2FE1A9244861B63BCB2A33D4371EF594; + remoteInfo = "mobile-ffmpeg-https"; + }; +<<<<<<< HEAD 2F587ACE4394FEF29D235749F36160EA /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 651511D7DA7F07F9FC9AA40A2E86270D; remoteInfo = "React-RCTNetwork"; - }; +======= <<<<<<< HEAD 308B4D3E8A26A4E2B79BDE47DD07A9A4 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -1387,6 +1410,7 @@ proxyType = 1; remoteGlobalIDString = 0A72FB88825FDC7D301C9DD1F8F96824; remoteInfo = EXPermissions; +>>>>>>> master >>>>>>> master }; 30AFDC8C12A95C26C7691C294D90E751 /* PBXContainerItemProxy */ = { @@ -1396,6 +1420,8 @@ remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; remoteInfo = DoubleConversion; }; +<<<<<<< HEAD +======= <<<<<<< HEAD 313594F07E2830ECB88F648E6335B6C2 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -1420,6 +1446,7 @@ remoteInfo = "React-Core"; }; <<<<<<< HEAD +>>>>>>> master 32EDED458FEDBDD31B9D588BD688E1DA /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -1427,21 +1454,25 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; +<<<<<<< HEAD + 352AE51E27DF75EE5DFB442A67433ED4 /* PBXContainerItemProxy */ = { +======= ======= >>>>>>> master 3567AD7E2B44760020C17476D70D0A0F /* PBXContainerItemProxy */ = { +>>>>>>> master isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; - remoteInfo = "React-Core"; + remoteGlobalIDString = ED2506AE7DE35D654F61254441EA7155; + remoteInfo = "boost-for-react-native"; }; - 359F12048A0E6E0276E5D164A7AE0DAB /* PBXContainerItemProxy */ = { + 3567AD7E2B44760020C17476D70D0A0F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 49821C2B9E764AEDF2B35DFE9AA7022F; - remoteInfo = UMBarCodeScannerInterface; + remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; + remoteInfo = "React-Core"; }; <<<<<<< HEAD ======= @@ -1467,14 +1498,18 @@ remoteGlobalIDString = 53D121F9F9BB0F8AC1C94A12C5A8572F; remoteInfo = "React-RCTVibration"; }; +<<<<<<< HEAD + 3B499D4426741C4807AA59D1C741C947 /* PBXContainerItemProxy */ = { +======= <<<<<<< HEAD ======= 3A83D3180BFAFF5D575A7828E5C8E439 /* PBXContainerItemProxy */ = { +>>>>>>> master isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B9E8F4CA2A4A8599389FEB665A9B96FF; - remoteInfo = RNGestureHandler; + remoteGlobalIDString = 430D7C4A9EC9AB29B0505AFA151AABBF; + remoteInfo = RNFS; }; 3D69E568D16B4C943E5D2D7B30C2E1A3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -1519,6 +1554,14 @@ remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; remoteInfo = UMCore; }; +<<<<<<< HEAD + 4188498391260E7F980D6F6DDFD53AE7 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 0A915EE9D35CA5636731F8763E774951; + remoteInfo = UMCameraInterface; +======= <<<<<<< HEAD 3FDC7DAE1F304D4827EE579BAA93C8B7 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -1533,6 +1576,7 @@ proxyType = 1; remoteGlobalIDString = B61CD5C777103B0E15D29F836672F0FA; remoteInfo = "react-native-ffmpeg"; +>>>>>>> master >>>>>>> master }; 43F59371536BD2E5EDFAE85A8E196BD1 /* PBXContainerItemProxy */ = { @@ -1542,6 +1586,14 @@ remoteGlobalIDString = 938CCE22F6C4094B3FB6CF1478579E4B; remoteInfo = "React-RCTAnimation"; }; +<<<<<<< HEAD + 484CD2027B56D60D8813A6BCA5A6F38B /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 97C4DE84FA3CC4EC06AA6D8C249949B7; + remoteInfo = UMImageLoaderInterface; +======= <<<<<<< HEAD 4522036C529378F74AE2D05C429463BF /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -1579,6 +1631,7 @@ proxyType = 1; remoteGlobalIDString = 3E5D106F8D3D591BD871408EEE0CC9FD; remoteInfo = "react-native-video"; +>>>>>>> master }; 4BDE049EAF4FCC4C06846444404009A6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -1586,6 +1639,15 @@ proxyType = 1; remoteGlobalIDString = DA0709CAAD589C6E7963495210438021; remoteInfo = "React-jsiexecutor"; +<<<<<<< HEAD + }; + 4EA72F7C46A82E7D28AA877EF319152E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 4F265533AAB7C8985856EC78A33164BB; + remoteInfo = "React-RCTImage"; +======= ======= 501B288BDA2468CB25040B1F6F996BAD /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -1593,6 +1655,7 @@ proxyType = 1; remoteGlobalIDString = 2B25F90D819B9ADF2AF2D8733A890333; remoteInfo = Yoga; +>>>>>>> master >>>>>>> master }; 50B64EDB1396A9A4103C2C868FB8CEA4 /* PBXContainerItemProxy */ = { @@ -1609,6 +1672,9 @@ remoteGlobalIDString = F7D033C4C128EECAA020990641FA985F; remoteInfo = "React-jsinspector"; }; +<<<<<<< HEAD + 5271DD0C30B27892E9E52157660DCF9D /* PBXContainerItemProxy */ = { +======= <<<<<<< HEAD 51EC1EA86D9DEDC38B2B17DB485C5FE2 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -1627,12 +1693,13 @@ 54C5791BF2A73F9955F8B0AF19E4D3E6 /* PBXContainerItemProxy */ = { ======= 535422785A797FC1672DBDEA9ECADC1A /* PBXContainerItemProxy */ = { +>>>>>>> master >>>>>>> master isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; - remoteInfo = ReactCommon; + remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; + remoteInfo = DoubleConversion; }; 54C5791BF2A73F9955F8B0AF19E4D3E6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -1641,6 +1708,8 @@ remoteGlobalIDString = 4F265533AAB7C8985856EC78A33164BB; remoteInfo = "React-RCTImage"; }; +<<<<<<< HEAD +======= <<<<<<< HEAD 55FCEE3BA96050C87F063495D05A48EB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -1663,6 +1732,7 @@ remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; remoteInfo = DoubleConversion; }; +>>>>>>> master 557407361285FA301951204E241F9CDB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -1685,13 +1755,6 @@ remoteGlobalIDString = ED2506AE7DE35D654F61254441EA7155; remoteInfo = "boost-for-react-native"; }; - 60A39B2C51C47E186EACB73802692640 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; - remoteInfo = "React-jsi"; - }; 60C8C9FAE390605B1F6A1DB1051A40F6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -1706,6 +1769,14 @@ remoteGlobalIDString = F7845084F0CF03F54107EEF7411760AD; remoteInfo = UMPermissionsInterface; }; +<<<<<<< HEAD + 62A08A5883D34E94F83BACEB548EF934 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2B25F90D819B9ADF2AF2D8733A890333; + remoteInfo = Yoga; +======= 62ABB81E4692A83A16F5BF0C75B9CF09 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -1720,6 +1791,7 @@ proxyType = 1; remoteGlobalIDString = 1A0445474DA11CA659C4BCC5AB64B1BF; remoteInfo = RNCMaskedView; +>>>>>>> master }; 642FA260DF79A27F5482F3DCED24BA54 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -1751,12 +1823,12 @@ remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; remoteInfo = "React-jsi"; }; - 68ADA07DCC825B41AED64B06D80F2432 /* PBXContainerItemProxy */ = { + 6A06C84563DB7500F6F90162BFFAD584 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 53D121F9F9BB0F8AC1C94A12C5A8572F; - remoteInfo = "React-RCTVibration"; + remoteGlobalIDString = 897EF6A99176326E24F51E2F2103828C; + remoteInfo = UMReactNativeAdapter; }; <<<<<<< HEAD ======= @@ -1775,6 +1847,35 @@ remoteGlobalIDString = 11989A5E568B3B69655EE0C13DCDA3F9; remoteInfo = "React-RCTActionSheet"; }; +<<<<<<< HEAD + 6E549C39B62A2D0DFE1863583542D0F4 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = B61CD5C777103B0E15D29F836672F0FA; + remoteInfo = "react-native-ffmpeg"; + }; + 727F4F9014835EEE9620F21E47BBFDEC /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 95D98F901D07557EF7CA38D3F03832C5; + remoteInfo = "React-RCTBlob"; + }; + 77AA5B31142CF1967B67A9D557C8314F /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = E7E7CE52C8C68B17224FF8C262D80ABF; + remoteInfo = RCTRequired; + }; + 782845BBC0586138D9EBA8D80B64309E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = BD9A27D8398DEB3205D3F8937B0672A0; + remoteInfo = "react-native-safe-area-context"; +======= <<<<<<< HEAD 7070CBE5D742E4A6EFD94F3C13CC8273 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -1789,6 +1890,7 @@ proxyType = 1; remoteGlobalIDString = 8CC4EAA817AA86310D1900F1DAB3580F; remoteInfo = FBLazyVector; +>>>>>>> master >>>>>>> master }; 792B3D8442DA2A8D402C83EAD2089652 /* PBXContainerItemProxy */ = { @@ -1798,23 +1900,60 @@ remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; +<<<<<<< HEAD + 7C53CB5C717DF2F107152E0C7B720455 /* PBXContainerItemProxy */ = { +======= <<<<<<< HEAD ======= 7A40305E6516DA8E2504D45739BEF86D /* PBXContainerItemProxy */ = { +>>>>>>> master isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 651511D7DA7F07F9FC9AA40A2E86270D; - remoteInfo = "React-RCTNetwork"; + remoteGlobalIDString = D0EFEFB685D97280256C559792236873; + remoteInfo = glog; + }; +<<<<<<< HEAD + 7E73B821E47E66F34DB62C682A499426 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 3E5D106F8D3D591BD871408EEE0CC9FD; + remoteInfo = "react-native-video"; }; + 809BFB273142BAA84AB15A8D0D25D23D /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; + remoteInfo = "React-Core"; + }; + 80F11B737078565757CD5C94294E674A /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2AD4F40E67E1874A0816F6B34289EB41; + remoteInfo = UMFaceDetectorInterface; + }; + 869D69563A1383EF0DF163A58C8E251A /* PBXContainerItemProxy */ = { +======= >>>>>>> master 7C53CB5C717DF2F107152E0C7B720455 /* PBXContainerItemProxy */ = { +>>>>>>> master isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = D0EFEFB685D97280256C559792236873; remoteInfo = glog; }; +<<<<<<< HEAD + 86EF611DB731C2BCD9B2366F895CB667 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 89F573A6B1292B3B2296B2206BFDC3D7; + remoteInfo = RNCAsyncStorage; +======= 7C88565D72F0B3290464DC8A0EDA3EB4 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -1843,6 +1982,7 @@ proxyType = 1; remoteGlobalIDString = F7845084F0CF03F54107EEF7411760AD; remoteInfo = UMPermissionsInterface; +>>>>>>> master }; 87BEB6118A17348FD49D4F20F1B3188F /* PBXContainerItemProxy */ = { ======= @@ -1862,9 +2002,27 @@ remoteGlobalIDString = 49821C2B9E764AEDF2B35DFE9AA7022F; remoteInfo = UMBarCodeScannerInterface; }; +<<<<<<< HEAD + 8BBD1676D440ED47082864D3F9E5B262 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 9668C19AA6D8EA320F83875FA286855A; + remoteInfo = UMConstantsInterface; + }; + 8EEA90B825D566B6F08CA9AAECE6309D /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 730404A8DD175FF6B60B6A43DC6E554B; + remoteInfo = "react-native-camera"; + }; + 8F8D97FDA93DF806279F1C90D2E34F62 /* PBXContainerItemProxy */ = { +======= 89E27F07DAC6CEB310C2DB58EC2981F5 /* PBXContainerItemProxy */ = { ======= 8FCA539193912F0A28E12DB893598290 /* PBXContainerItemProxy */ = { +>>>>>>> master >>>>>>> master isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -1880,8 +2038,18 @@ remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; remoteInfo = ReactCommon; }; +<<<<<<< HEAD + 92B964EF82107DCE7B455D719EF70047 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 1A0445474DA11CA659C4BCC5AB64B1BF; + remoteInfo = RNCMaskedView; + }; +======= 8A4A4E6E8DA4967D0D2C726A07AAE571 /* PBXContainerItemProxy */ = { ======= +>>>>>>> master 95BD7607104E910918F88DD81F19B1C1 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -1889,13 +2057,17 @@ remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; remoteInfo = DoubleConversion; }; +<<<<<<< HEAD + 96B3B296E3EC6B765BBE272240410A11 /* PBXContainerItemProxy */ = { +======= 95D22B0643BC6805C1630C55B0030764 /* PBXContainerItemProxy */ = { +>>>>>>> master >>>>>>> master isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 3E5D106F8D3D591BD871408EEE0CC9FD; - remoteInfo = "react-native-video"; + remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; + remoteInfo = ReactCommon; }; 8F4DAD641A72C7E467D26D3EF334DEE0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -1911,6 +2083,21 @@ remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; +<<<<<<< HEAD + 9C3891C361780C4080959D951789621E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2B8C13513C1F6D610976B0C8F4402EC1; + remoteInfo = EXAppLoaderProvider; + }; + 9C54FCF0CDD641D4B84CA3B01DCA1228 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 6C1893932A69822CBE3502F2E0BCFB6D; + remoteInfo = EXConstants; +======= <<<<<<< HEAD 8FCA539193912F0A28E12DB893598290 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -1925,6 +2112,7 @@ proxyType = 1; remoteGlobalIDString = 868B90C74770285449C60DBA82181479; remoteInfo = EXFileSystem; +>>>>>>> master >>>>>>> master }; 955ADCD1A5F83A78C678264E4BFCA1A3 /* PBXContainerItemProxy */ = { @@ -1959,23 +2147,83 @@ remoteGlobalIDString = A4F685BE3CAC127BDCE4E0DBBD88D191; remoteInfo = Folly; }; +<<<<<<< HEAD + A17EF969FDFC8F71CFB5CF090E0B112E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6; + remoteInfo = "React-RCTText"; + }; + A2714C3F770F38D4074DD0F61DA9CF45 /* PBXContainerItemProxy */ = { +======= 9741AD2B804B0186649AC82B1B70281C /* PBXContainerItemProxy */ = { +>>>>>>> master isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = D0EFEFB685D97280256C559792236873; remoteInfo = glog; }; -<<<<<<< HEAD - 985F5810F648751095292C172C5F1AC8 /* PBXContainerItemProxy */ = { -======= - A72359166EB499C6C897C389CABC6D70 /* PBXContainerItemProxy */ = { +<<<<<<< HEAD + A412BAC35D280689C2E819A0E8BDEA9D /* PBXContainerItemProxy */ = { +======= +<<<<<<< HEAD + 985F5810F648751095292C172C5F1AC8 /* PBXContainerItemProxy */ = { +======= + A72359166EB499C6C897C389CABC6D70 /* PBXContainerItemProxy */ = { +>>>>>>> master + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 6FE9147F8AAA4DE676C190F680F47AE2; + remoteInfo = "React-RCTLinking"; + }; +<<<<<<< HEAD + A767E996F2D83E9A0765483DC3C5C0FC /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2038C6F97563AAD6162C284B3EDD5B3B; + remoteInfo = UMSensorsInterface; + }; + A81EACD521CA9F8C3CFC8E96E71C6E10 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = AC1ED4B51A5664E3FBB86D17D6436D82; + remoteInfo = RNConvertPhAsset; + }; + A8D228C6F74629133C291F6B44D7694D /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 4F265533AAB7C8985856EC78A33164BB; + remoteInfo = "React-RCTImage"; + }; + AA413E426B1A802303EEFD0F503A1E63 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = F7D033C4C128EECAA020990641FA985F; + remoteInfo = "React-jsinspector"; + }; + AA8E4070BC5EACD7D3AE95FB6EE11F05 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = B9E8F4CA2A4A8599389FEB665A9B96FF; + remoteInfo = RNGestureHandler; + }; + AAC0B69771572718DFAD1AB1F1A9521E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 9668C19AA6D8EA320F83875FA286855A; - remoteInfo = UMConstantsInterface; + remoteGlobalIDString = FF879E718031128A75E7DE54046E6219; + remoteInfo = RNReanimated; }; + AAE156940C2BFD61AF0129A155031810 /* PBXContainerItemProxy */ = { +======= A8D228C6F74629133C291F6B44D7694D /* PBXContainerItemProxy */ = { >>>>>>> master isa = PBXContainerItemProxy; @@ -2053,13 +2301,17 @@ A2714C3F770F38D4074DD0F61DA9CF45 /* PBXContainerItemProxy */ = { ======= B16A8F20D1B72E011ED0A1BEAB8653AB /* PBXContainerItemProxy */ = { +>>>>>>> master >>>>>>> master isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = F7845084F0CF03F54107EEF7411760AD; - remoteInfo = UMPermissionsInterface; + remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; + remoteInfo = React; }; +<<<<<<< HEAD + ADFE5E3E355C01B63807CDB4C1118FF9 /* PBXContainerItemProxy */ = { +======= <<<<<<< HEAD A6C577C31ABCF738EC73B01CD0E5F333 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2076,23 +2328,23 @@ remoteInfo = "React-RCTImage"; ======= B5915EFF0428291ECDF44B9D536FA68B /* PBXContainerItemProxy */ = { +>>>>>>> master isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 014495932E402CA67C37681988047CA2; remoteInfo = UMFontInterface; }; - B8A30D3175C8D145B1F1613CDF6A5F1E /* PBXContainerItemProxy */ = { + B414B46CD731324B0ECF8DB8099B5724 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = DA0709CAAD589C6E7963495210438021; - remoteInfo = "React-jsiexecutor"; +<<<<<<< HEAD + remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; + remoteInfo = UMCore; }; - B8FEB81441BF35DC79A635DFA7298563 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; + B5AB5D79F2323E9F94B8D0D74798E26B /* PBXContainerItemProxy */ = { +======= remoteGlobalIDString = 2B8C13513C1F6D610976B0C8F4402EC1; remoteInfo = EXAppLoaderProvider; >>>>>>> master @@ -2162,32 +2414,33 @@ remoteInfo = FBReactNativeSpec; ======= BC5B594C7492D375CACB13663127AD1A /* PBXContainerItemProxy */ = { +>>>>>>> master isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 95D98F901D07557EF7CA38D3F03832C5; - remoteInfo = "React-RCTBlob"; + remoteGlobalIDString = 8CC4EAA817AA86310D1900F1DAB3580F; + remoteInfo = FBLazyVector; }; - BF54428802FA9E9D5DC08C42906D21A2 /* PBXContainerItemProxy */ = { + B7724A3DB0308CF3C26343581E263151 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 96150F524B245896B800F84F369A9A5A; - remoteInfo = RNVectorIcons; + remoteGlobalIDString = 014495932E402CA67C37681988047CA2; + remoteInfo = UMFontInterface; }; - C03A5C9A2D726690789CEC82DC174D8B /* PBXContainerItemProxy */ = { + BB43E3440C83F8BC24E141BE6C01D507 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1A0445474DA11CA659C4BCC5AB64B1BF; - remoteInfo = RNCMaskedView; + remoteGlobalIDString = A4F685BE3CAC127BDCE4E0DBBD88D191; + remoteInfo = Folly; }; - C0F8E2D62C837EA79F7703C6D8495539 /* PBXContainerItemProxy */ = { + C1701EB26656822DD350BCC29B6615F8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; - remoteInfo = "React-Core"; + remoteGlobalIDString = 214E42634D1E187D876346D36184B655; + remoteInfo = RNScreens; }; C583A5691E3DAE99E4675FD1989CDA14 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2196,6 +2449,8 @@ remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; remoteInfo = FBReactNativeSpec; }; +<<<<<<< HEAD +======= C71C57DE1F5DF2BB6949A075B59DAD30 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -2218,6 +2473,7 @@ remoteInfo = "React-RCTText"; >>>>>>> master }; +>>>>>>> master CAD9ABFE1D8247DFCA7C5B5DC70C1C94 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -2226,6 +2482,8 @@ remoteInfo = React; }; <<<<<<< HEAD +======= +<<<<<<< HEAD ======= CCCF8E92289C3EEC4FCA4C8F47EE2CEB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2234,6 +2492,7 @@ remoteGlobalIDString = 680299219D3A48D42A648AF6706275A9; remoteInfo = "React-RCTSettings"; }; +>>>>>>> master >>>>>>> master CE8ED3B765478B8EBFC5731084A0710F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2258,13 +2517,24 @@ remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; remoteInfo = "React-jsi"; }; +<<<<<<< HEAD + D1F7ABCD4A507EC1DFA007C84DB12F55 /* PBXContainerItemProxy */ = { +======= D0A17F054E5443583621FFC2CD0D6804 /* PBXContainerItemProxy */ = { +>>>>>>> master >>>>>>> master isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; - remoteInfo = React; + remoteGlobalIDString = 50188AAB5FAECCA9583327DBA2B0AF2B; + remoteInfo = UMTaskManagerInterface; + }; + D41969A338578A0B7915087A574884FE /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 680299219D3A48D42A648AF6706275A9; + remoteInfo = "React-RCTSettings"; }; D559DECC25944752D63D3A5C405239C0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2287,21 +2557,32 @@ remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; remoteInfo = "React-jsi"; }; - D8E27FD3930263DBE144E6DEE6DD8F43 /* PBXContainerItemProxy */ = { + D673D70E00249ACBAE3CCDCFFDD02711 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = A4F685BE3CAC127BDCE4E0DBBD88D191; - remoteInfo = Folly; + remoteGlobalIDString = 0A72FB88825FDC7D301C9DD1F8F96824; + remoteInfo = EXPermissions; }; +<<<<<<< HEAD + D8B34CB29AD78ACB1DEE6563851CF69A /* PBXContainerItemProxy */ = { +======= <<<<<<< HEAD ======= DAEF9EF1386A0C0C3EC6A4BCBB230ACF /* PBXContainerItemProxy */ = { +>>>>>>> master isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = ED2506AE7DE35D654F61254441EA7155; - remoteInfo = "boost-for-react-native"; + remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; + remoteInfo = React; + }; + D8E27FD3930263DBE144E6DEE6DD8F43 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = A4F685BE3CAC127BDCE4E0DBBD88D191; + remoteInfo = Folly; }; >>>>>>> master DBCDE55D7A7B4D7DB2985F5622A53357 /* PBXContainerItemProxy */ = { @@ -2318,6 +2599,14 @@ remoteGlobalIDString = D0EFEFB685D97280256C559792236873; remoteInfo = glog; }; +<<<<<<< HEAD + DE998AE17CE3BAB104C80189D9B1C2D4 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 938CCE22F6C4094B3FB6CF1478579E4B; + remoteInfo = "React-RCTAnimation"; +======= <<<<<<< HEAD DF33AE84614476ECB27AC1DB17DDA8A9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2332,6 +2621,7 @@ proxyType = 1; remoteGlobalIDString = 6C1893932A69822CBE3502F2E0BCFB6D; remoteInfo = EXConstants; +>>>>>>> master >>>>>>> master }; E12CEF0BB724DDDA3132C4E7F85D3B6E /* PBXContainerItemProxy */ = { @@ -2348,6 +2638,9 @@ remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; +<<<<<<< HEAD + E2C686D965E383CFCB67E08DC3AC0D4D /* PBXContainerItemProxy */ = { +======= E3DCB3D8F0A533B7BB46EB61E99CA3EE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -2399,18 +2692,24 @@ remoteInfo = RNConvertPhAsset; }; E6F529F8886C18FBFA96FE832FE3BCAA /* PBXContainerItemProxy */ = { +>>>>>>> master isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 89F573A6B1292B3B2296B2206BFDC3D7; - remoteInfo = RNCAsyncStorage; + remoteGlobalIDString = 2644525CCE081E967809A8163D893A93; + remoteInfo = UMFileSystemInterface; }; - E773F1F26189CBCA29A995D513AC6576 /* PBXContainerItemProxy */ = { + E3DCB3D8F0A533B7BB46EB61E99CA3EE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; +<<<<<<< HEAD + remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; + remoteInfo = "React-jsi"; +======= remoteGlobalIDString = 11989A5E568B3B69655EE0C13DCDA3F9; remoteInfo = "React-RCTActionSheet"; +>>>>>>> master >>>>>>> master }; E83554FF4DE7678D4E491D021D3B299A /* PBXContainerItemProxy */ = { @@ -2460,7 +2759,17 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; +<<<<<<< HEAD + EB74E43F57C4DD85B5E0A5B0552D93CA /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 868B90C74770285449C60DBA82181479; + remoteInfo = EXFileSystem; + }; ======= +======= +>>>>>>> master >>>>>>> master EB78F127128FA96556E9CAECF5B151BF /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2490,6 +2799,13 @@ remoteGlobalIDString = A4F685BE3CAC127BDCE4E0DBBD88D191; remoteInfo = Folly; }; + EF49C6D05F30EEA9D1B3157CE0C7A453 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 96150F524B245896B800F84F369A9A5A; + remoteInfo = RNVectorIcons; + }; EFAB938296ABA2965A63F4EE7C372057 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -2497,6 +2813,15 @@ remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; remoteInfo = RCTTypeSafety; }; +<<<<<<< HEAD + EFFD766711268C54CC4D07F94E9943D7 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 463F41A7E8B252F8AC5024DA1F4AF6DA; + remoteInfo = "React-cxxreact"; + }; +======= <<<<<<< HEAD F07051DA07B621B3C95B74D8E51A31C2 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2512,6 +2837,7 @@ remoteGlobalIDString = A4F685BE3CAC127BDCE4E0DBBD88D191; remoteInfo = Folly; ======= +>>>>>>> master F1D31400DE78E76FE461920F078645F1 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -2519,15 +2845,20 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - F34B52C2FF7F6D62449D5ADBBABFB331 /* PBXContainerItemProxy */ = { + F549E224441AAF24782D8506FE84287B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; +<<<<<<< HEAD + remoteGlobalIDString = 2B122E1CB26AAA2917F6794BBD7CA90D; + remoteInfo = "react-native-orientation"; +======= remoteGlobalIDString = D0EFEFB685D97280256C559792236873; remoteInfo = glog; +>>>>>>> master >>>>>>> master }; - F41EB3E301644596EC843867EB700612 /* PBXContainerItemProxy */ = { + F7A43957251213EA53F5559F536D3153 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; @@ -2535,6 +2866,8 @@ remoteInfo = "React-CoreModules"; }; <<<<<<< HEAD +======= +<<<<<<< HEAD ======= F9674BF474C592CC303AF73D4552C5F0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2543,6 +2876,7 @@ remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; remoteInfo = FBReactNativeSpec; }; +>>>>>>> master >>>>>>> master F9D3756881C74D34E390BDDADE67CF64 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2575,12 +2909,19 @@ remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - FD198AFDB70D8DBD046161B7CB9A5C65 /* PBXContainerItemProxy */ = { + FD11F6DB2AFC1B9356DCF5B467265D6E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = BD9A27D8398DEB3205D3F8937B0672A0; - remoteInfo = "react-native-safe-area-context"; + remoteGlobalIDString = 11989A5E568B3B69655EE0C13DCDA3F9; + remoteInfo = "React-RCTActionSheet"; + }; + FD339F019A5605B212205D80AC4E5CB8 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = A4F685BE3CAC127BDCE4E0DBBD88D191; + remoteInfo = Folly; }; FD6F7C063B0D5D823B61827AB81BC1B4 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2589,9 +2930,22 @@ remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; remoteInfo = UMCore; }; + FF78B1EC582D7BD6B8F649B3115CF487 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 49821C2B9E764AEDF2B35DFE9AA7022F; + remoteInfo = UMBarCodeScannerInterface; + }; /* End PBXContainerItemProxy section */ /* Begin PBXFileReference section */ +<<<<<<< HEAD + 0005E70164CDFF3B3206CB0F8EBF8E75 /* RCTRedBox.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRedBox.m; sourceTree = ""; }; + 000C44F7F29038ADACDD0D27E807740E /* RCTConvert+CoreLocation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+CoreLocation.m"; sourceTree = ""; }; + 001B2FCAAACF1B3314838492381CB0FA /* RCTInspectorDevServerHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInspectorDevServerHelper.h; sourceTree = ""; }; + 00298528A02CCF3098F9037F043659E6 /* RCTPerformanceLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPerformanceLogger.h; sourceTree = ""; }; +======= <<<<<<< HEAD 00607B40244A57940C409B194BAC1DF8 /* NSDataBigString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NSDataBigString.h; sourceTree = ""; }; 007025D285590456338DDB77E8B0269F /* React-RCTVibration-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTVibration-dummy.m"; sourceTree = ""; }; @@ -3788,1158 +4142,1171 @@ FFEBF521A275FEE686DFE59869DCF3C1 /* RCTDivisionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDivisionAnimatedNode.h; sourceTree = ""; }; ======= 00248347B97B6B4B6EB5E8B514EF846A /* React-RCTActionSheet-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTActionSheet-prefix.pch"; sourceTree = ""; }; +>>>>>>> master 002FFF2B2DF59AC3B80A98BEADA688C4 /* Unicode.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Unicode.cpp; path = folly/Unicode.cpp; sourceTree = ""; }; - 0146FA48F6863D5D44FB4733EE5F0BAB /* RNGestureHandlerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerManager.h; path = ios/RNGestureHandlerManager.h; sourceTree = ""; }; - 014FE4B40633076A3A4334E076148E47 /* React-RCTLinking-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTLinking-dummy.m"; sourceTree = ""; }; - 0160572B2FEA8F16889B3F54C43DFAE7 /* UMErrorCodes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMErrorCodes.h; path = UMCore/UMErrorCodes.h; sourceTree = ""; }; - 018D3B8B517A7BA0E0F405D7F79CC6D9 /* RNFlingHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFlingHandler.m; sourceTree = ""; }; - 022C65181BD44561DEEE336E7D47B230 /* RNCAssetsLibraryRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAssetsLibraryRequestHandler.h; path = ios/RNCAssetsLibraryRequestHandler.h; sourceTree = ""; }; - 022CCE8F88D4ECE1AD8FC21530DAD011 /* UMTaskManagerInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMTaskManagerInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 02394B6FC9BDBDE1C63BEDFE28279DC9 /* RCTClipboard.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTClipboard.h; sourceTree = ""; }; - 027E45DA2E825EBB33A4F1D35E899FC3 /* UMLogManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMLogManager.m; sourceTree = ""; }; - 02BBA283D57D5289BC022B9691358AB5 /* React-RCTVibration.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-RCTVibration.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 02C87CEB373E9EBB06855EB0D82F05BF /* RNReanimated.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNReanimated.xcconfig; sourceTree = ""; }; - 02DE686D9FC2A4732D0DA443448F0CD2 /* RCTRawTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRawTextShadowView.h; sourceTree = ""; }; - 030AC7098EEDA455B2796CE81C14860B /* RCTModalManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalManager.m; sourceTree = ""; }; - 03FA5EC04092D36F43B098932369D7D8 /* RCTDataRequestHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDataRequestHandler.m; sourceTree = ""; }; - 04704F258A410C6628362C881A0F1AB8 /* RCTTiming.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTiming.h; sourceTree = ""; }; - 048A092D1926B8D88C9CCEC702C8B50F /* React-jsi-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-jsi-prefix.pch"; sourceTree = ""; }; - 04ED5FE8FAE486660E5111A53A974DAB /* NativeToJsBridge.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NativeToJsBridge.h; sourceTree = ""; }; + 0046533C4B7BCD806BBBE6AE0B455B32 /* RCTSegmentedControlManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSegmentedControlManager.h; sourceTree = ""; }; + 005926AE0A8677AC1F2D9DCAE7BEFFB2 /* RCTGIFImageDecoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTGIFImageDecoder.h; path = Libraries/Image/RCTGIFImageDecoder.h; sourceTree = ""; }; + 007D1CC115DFD9D5AE3B637D7422A780 /* RCTPackagerConnection.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTPackagerConnection.mm; sourceTree = ""; }; + 00A3953EC22CD23C9FAFE370DF6C1FD6 /* UMErrorCodes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMErrorCodes.h; path = UMCore/UMErrorCodes.h; sourceTree = ""; }; + 00C4EF272C2B9F0368BDA8E476935BA6 /* RCTBaseTextInputShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextInputShadowView.h; sourceTree = ""; }; + 019AF45DFB14E2DB3428D0DAF47F21D7 /* RCTPickerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPickerManager.h; sourceTree = ""; }; + 01B288C9FE0E9E01AE42E165AF4CE7A3 /* UMModuleRegistryAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistryAdapter.m; sourceTree = ""; }; + 01C29ABD6C13B90C2F2BAEA203EEA6E9 /* UMAppLifecycleListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMAppLifecycleListener.h; sourceTree = ""; }; + 01E51322FC93C61555207D23CFD95FB8 /* UMExportedModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMExportedModule.h; path = UMCore/UMExportedModule.h; sourceTree = ""; }; + 023F159855AD4AA4B4864AAE0282346E /* UMAppDelegateWrapper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMAppDelegateWrapper.m; path = UMCore/UMAppDelegateWrapper.m; sourceTree = ""; }; + 023FFDB9EF107B37E53771E1115D2EB5 /* react-native-orientation-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-orientation-prefix.pch"; sourceTree = ""; }; + 027EA9E05C3A69E6E63B9C7149C11C2C /* RCTScrollContentShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentShadowView.m; sourceTree = ""; }; + 0293B398CCDD8756EB6C0ECC3467C675 /* RCTMultiplicationAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultiplicationAnimatedNode.m; sourceTree = ""; }; + 02969131455FC9944F6B06DDBC5C2D3C /* EXFileSystem.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXFileSystem.xcconfig; sourceTree = ""; }; + 029E912D9AC35FC318A98A69CA57DB1B /* Uploader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Uploader.h; sourceTree = ""; }; + 0309487709F664D12A436D2CDF5C7EEE /* RCTSubtractionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSubtractionAnimatedNode.h; sourceTree = ""; }; + 033B1745CA220BFC72F1F3D298B2CBEA /* RCTJSStackFrame.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTJSStackFrame.m; sourceTree = ""; }; + 03DFAAF9F4306E7FC481BEAD34D65B22 /* FaceDetectorManagerMlkit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FaceDetectorManagerMlkit.h; path = ios/RN/FaceDetectorManagerMlkit.h; sourceTree = ""; }; + 046093F414C53ED46D7E55D92316A10E /* InspectorInterfaces.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = InspectorInterfaces.h; sourceTree = ""; }; + 04AAE2BB1F1F0F2C79341771AA61406D /* RNRotationHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNRotationHandler.m; sourceTree = ""; }; + 04B3AD354ED8E59A3E1EF7BA12460175 /* RNConvertPhAsset-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNConvertPhAsset-prefix.pch"; sourceTree = ""; }; + 055741D97CC66254675FFFE83B7585C1 /* RNGestureHandlerEvents.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerEvents.m; path = ios/RNGestureHandlerEvents.m; sourceTree = ""; }; 05A356F889E51FC510E861A05031D0C1 /* Pods-Gladeo_App-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-Gladeo_App-acknowledgements.markdown"; sourceTree = ""; }; - 05B9F05F02BC9CA17D407AA34CEC4C02 /* RCTWebSocketModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTWebSocketModule.h; path = Libraries/WebSocket/RCTWebSocketModule.h; sourceTree = ""; }; - 060C8D20608E35E2C0CDCE51C353EE8F /* RCTRefreshControlManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRefreshControlManager.h; sourceTree = ""; }; + 05BF770255AE31C9B619F54D32C409CB /* RCTNetworkTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNetworkTask.h; path = Libraries/Network/RCTNetworkTask.h; sourceTree = ""; }; 06489499588BFA8FD5E63DD6375CD533 /* libFolly.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFolly.a; path = libFolly.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 066EAA6E1B5CE8DCCDED5B537456554F /* ModuleRegistry.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = ModuleRegistry.cpp; sourceTree = ""; }; - 067E27503D71F084343D81F902CBE450 /* RCTTrackingAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTrackingAnimatedNode.m; sourceTree = ""; }; - 06AA441D921D83722FA7B84AB994BB39 /* YGNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGNode.h; path = yoga/YGNode.h; sourceTree = ""; }; - 06ADA87EA5ABACDB06F06D0F3B11BBD3 /* decorator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = decorator.h; sourceTree = ""; }; - 06F52B42EC9DDCC305A56107335EF571 /* RCTSourceCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSourceCode.h; sourceTree = ""; }; - 06FF1B86279EC5C934ECB60C16D5B9C0 /* RCTSwitch.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSwitch.m; sourceTree = ""; }; - 0775FEB3DCA3B39EEC7DE72A7AFD6F41 /* RCTImageBlurUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageBlurUtils.h; path = Libraries/Image/RCTImageBlurUtils.h; sourceTree = ""; }; - 077E612CE09C09CCF429BC58654C4D23 /* RCTRedBox.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRedBox.m; sourceTree = ""; }; - 0793ED594F3C2BA8EA06589754CF6D38 /* REAPropsNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAPropsNode.m; sourceTree = ""; }; - 0837D52D173358E60A915D76FC33EFDD /* RCTInputAccessoryViewContent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryViewContent.m; sourceTree = ""; }; - 086899C963756EA81D3BF66068B998F7 /* RCTErrorInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTErrorInfo.h; sourceTree = ""; }; - 0886B0A584D2426494EC2B77B279311A /* TurboModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TurboModule.h; path = turbomodule/core/TurboModule.h; sourceTree = ""; }; - 090DF051C115997FB83AAE2E59509FE3 /* RCTConvert+Text.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+Text.h"; path = "Libraries/Text/RCTConvert+Text.h"; sourceTree = ""; }; - 0930BA6CC270D548CBCF7BDD321C90BB /* RCTComponentEvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTComponentEvent.m; sourceTree = ""; }; - 095DCD84FC107612A095BDC9EBF23D8C /* REAClockNodes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAClockNodes.h; sourceTree = ""; }; - 0967124F7CD6AE861F151F1885587DC7 /* RCTInputAccessoryShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryShadowView.h; sourceTree = ""; }; - 09E57E63BCE00D48B904B4E52C271932 /* React-RCTImage.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-RCTImage.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 0A01F8104C11C1235C0B1045001F2D0D /* BarcodeDetectorManagerMlkit.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BarcodeDetectorManagerMlkit.m; path = ios/RN/BarcodeDetectorManagerMlkit.m; sourceTree = ""; }; - 0ADF2B9E98D7A34B6DE9510D2CC58986 /* RNGestureHandler.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNGestureHandler.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 0AF57DD0534C64131065DB4E3120658D /* BridgeJSCallInvoker.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = BridgeJSCallInvoker.cpp; path = jscallinvoker/ReactCommon/BridgeJSCallInvoker.cpp; sourceTree = ""; }; - 0B713A2A0E9377333850709EFE96A555 /* React-RCTNetwork-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTNetwork-dummy.m"; sourceTree = ""; }; - 0BBD5AFBE87640D5A21E2EF4C8062B33 /* RCTManagedPointer.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTManagedPointer.mm; sourceTree = ""; }; - 0BCD1FDFCD20065B7B8F128C09EC0054 /* RCTPickerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPickerManager.m; sourceTree = ""; }; - 0BD2DE15973EF8B558064967993A72EE /* EXFileSystemAssetLibraryHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFileSystemAssetLibraryHandler.h; path = EXFileSystem/EXFileSystemAssetLibraryHandler.h; sourceTree = ""; }; - 0D07A28B636181B81F49C199C22562AC /* RCTNullability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTNullability.h; sourceTree = ""; }; - 0D3D6EB447E676CD896B62D403EF494A /* RCTReconnectingWebSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTReconnectingWebSocket.h; path = Libraries/WebSocket/RCTReconnectingWebSocket.h; sourceTree = ""; }; - 0D5350BA92B246B22919C98EF8C9FAD9 /* RNConvertPhAsset-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNConvertPhAsset-prefix.pch"; sourceTree = ""; }; - 0D5F2D927735D71E989418AAB473DCB5 /* RCTConvert+REATransition.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+REATransition.m"; sourceTree = ""; }; - 0D6BA45CBBBABDE73908DD603A3A5E30 /* RCTMaskedViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMaskedViewManager.h; sourceTree = ""; }; - 0DBB111E897E4FD2A336DDF3E2B43EE6 /* SimpleLineIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = SimpleLineIcons.ttf; path = Fonts/SimpleLineIcons.ttf; sourceTree = ""; }; + 068EF292DD569F13D468971AA62917F5 /* RCTMessageThread.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTMessageThread.mm; sourceTree = ""; }; + 06C0AD5D49FC63345E72AD6193101846 /* RCTEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventEmitter.h; sourceTree = ""; }; + 06CF59F69276C0F8EF15868EE9E75ADC /* RCTVirtualTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVirtualTextViewManager.h; sourceTree = ""; }; + 06E29E602A93DF0E54FF5B90983D5A56 /* YGNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGNode.h; path = yoga/YGNode.h; sourceTree = ""; }; + 0792C0AEF2C49BAC2254F69C7BA3795F /* RCTComponentData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTComponentData.m; sourceTree = ""; }; + 079FD49760AA479E5EB24BE063924692 /* LongLivedObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LongLivedObject.h; path = turbomodule/core/LongLivedObject.h; sourceTree = ""; }; + 07AD5E690A405656CFF17E3BBA1D64DA /* react-native-cameraroll-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-cameraroll-dummy.m"; sourceTree = ""; }; + 07AEBF9379A72269C3600744369DA05A /* LICENCE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENCE; sourceTree = ""; }; + 07C6637CB57B922F1BB276A071D2DC8B /* UMFaceDetectorManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFaceDetectorManager.h; path = UMFaceDetectorInterface/UMFaceDetectorManager.h; sourceTree = ""; }; + 07C9F6DA9F78A24DB1BDC0B813E55440 /* RCTImageDataDecoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageDataDecoder.h; path = Libraries/Image/RCTImageDataDecoder.h; sourceTree = ""; }; + 0803985A9E39A78B526693CBD1A6B90B /* RNNativeViewHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNNativeViewHandler.h; sourceTree = ""; }; + 083BB995FA9FF923940025F229F38537 /* RCTSubtractionAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSubtractionAnimatedNode.m; sourceTree = ""; }; + 08470F3634AF01656F53F2449E1D156D /* RNCSafeAreaView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaView.m; path = ios/SafeAreaView/RNCSafeAreaView.m; sourceTree = ""; }; + 084A8A05DF99B08AE1210B63F6A3D638 /* React-CoreModules.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-CoreModules.xcconfig"; sourceTree = ""; }; + 084E3251816B4EF8BD4F282FC86D0A05 /* TextDetectorManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TextDetectorManager.h; path = ios/RN/TextDetectorManager.h; sourceTree = ""; }; + 091121A09A9A57CE1AE5A4785B952D1D /* BridgeJSCallInvoker.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = BridgeJSCallInvoker.cpp; path = jscallinvoker/ReactCommon/BridgeJSCallInvoker.cpp; sourceTree = ""; }; + 09157A1CE59DDBA1C6459CEBFE30019A /* RCTRefreshControl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRefreshControl.h; sourceTree = ""; }; + 09536F0364F464C94CF70CEA54CDB1E1 /* JSIExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JSIExecutor.h; path = jsireact/JSIExecutor.h; sourceTree = ""; }; + 0976C0A48EACFB544890B3FE2724FBFB /* CoreModulesPlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CoreModulesPlugins.h; path = React/CoreModules/CoreModulesPlugins.h; sourceTree = ""; }; + 099E8DE55B3A377D44FB36C7C265A221 /* RNFlingHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFlingHandler.h; sourceTree = ""; }; + 09BB9BA9335B103AA645FBCBAF81FE05 /* RCTRequired.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RCTRequired.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 0A3478210C90530A40CD04CE2B813A96 /* RNFFmpegModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFFmpegModule.h; path = ios/RNFFmpegModule.h; sourceTree = ""; }; + 0A6C0F782DD12ACDC6C772A18B9F3C5F /* UMCameraInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMCameraInterface.h; path = UMCameraInterface/UMCameraInterface.h; sourceTree = ""; }; + 0A6D35461BE12F16D46B0828E59A9930 /* YGLayout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGLayout.h; path = yoga/YGLayout.h; sourceTree = ""; }; + 0A97F230E660BEF62DB9BF866A45EFEE /* RNTapHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNTapHandler.h; sourceTree = ""; }; + 0AE44B5B8A6F35DEFF4BD820C66AFB9E /* JSIndexedRAMBundle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSIndexedRAMBundle.h; sourceTree = ""; }; + 0AF1EB0840CFF957C1EE3DA6FDB91BE5 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 0AFA09A24DE77125FF99862CE6B6C09E /* UMPermissionsMethodsDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMPermissionsMethodsDelegate.h; path = UMPermissionsInterface/UMPermissionsMethodsDelegate.h; sourceTree = ""; }; + 0B8BA87D1EC6A4418FC4868144539A2F /* YGNode.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGNode.cpp; path = yoga/YGNode.cpp; sourceTree = ""; }; + 0BAA3748AC45E2477B85BA8EF1410F83 /* ReactMarker.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = ReactMarker.cpp; sourceTree = ""; }; + 0BE1A497289E5EF3532807BB0672CA50 /* REATransition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransition.h; sourceTree = ""; }; + 0C656C2D51EF02AF5617723943BD99D4 /* RCTRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootView.h; sourceTree = ""; }; + 0C74FBAF2FB940BD5B6DE29AA224F2E6 /* RCTErrorInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTErrorInfo.m; sourceTree = ""; }; + 0C7A6A89A21B65E3A16DF82E84F0F91F /* RCTAdditionAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAdditionAnimatedNode.m; sourceTree = ""; }; + 0CC583AA92A2AD0BEE1A14ABA44FB5D0 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 0CDD2E0C1512A339D8D61F48E07F695D /* RNTapHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNTapHandler.m; sourceTree = ""; }; + 0DA1A11409D4A54CF044BC3C38D8B884 /* UMNativeModulesProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMNativeModulesProxy.m; sourceTree = ""; }; 0DCA53C5A734EC5B0404E46FD0637538 /* bignum.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = bignum.cc; path = "double-conversion/bignum.cc"; sourceTree = ""; }; - 0DD37996CD6533D002C700A236438A91 /* RCTUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUtils.m; sourceTree = ""; }; - 0E47F03A478B4FD772E713E71D08D4E2 /* TurboModuleUtils.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TurboModuleUtils.cpp; path = turbomodule/core/TurboModuleUtils.cpp; sourceTree = ""; }; - 0E84E3040A6275CB88A0DF50AA52C5BF /* RCTUITextView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUITextView.h; sourceTree = ""; }; - 0E909D598FE185404D4BAAA254294D0B /* RNFileSystem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFileSystem.m; path = ios/RN/RNFileSystem.m; sourceTree = ""; }; - 0EB82F5303D0A642BFEEFC441C4FCFC8 /* RCTComponentData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTComponentData.m; sourceTree = ""; }; - 0F436F7ABCADA6734387A280D6ADE238 /* UMImageLoaderInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMImageLoaderInterface.h; path = UMImageLoaderInterface/UMImageLoaderInterface.h; sourceTree = ""; }; - 0FC5C5704C9DCD1329F667A65D19B583 /* UMReactNativeAdapter-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UMReactNativeAdapter-dummy.m"; sourceTree = ""; }; - 0FC6639E40BF6EF4E48F00203143586A /* RCTSourceCode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSourceCode.m; sourceTree = ""; }; - 0FD2743F6865CDCDE1AFBB731C4FE20B /* RCTPlatform.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTPlatform.mm; sourceTree = ""; }; - 101832BC1197373EFED59FF5547F2704 /* REATransition.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransition.m; sourceTree = ""; }; - 11204EC325279A7F3C0A58207ECFF547 /* RCTConvert+Transform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+Transform.h"; sourceTree = ""; }; - 1123AE41F1651D38824405696F1A04B3 /* RCTSurface.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurface.mm; sourceTree = ""; }; - 112DA1F3ED74934A7764E435DFBED505 /* RNTapHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNTapHandler.h; sourceTree = ""; }; - 11F867C82A73A0531F719AD6D216BD22 /* EXFileSystemAssetLibraryHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFileSystemAssetLibraryHandler.m; path = EXFileSystem/EXFileSystemAssetLibraryHandler.m; sourceTree = ""; }; - 127E6EECEAF934BB66F837485D69ADBF /* RNCAsyncStorage.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNCAsyncStorage.xcconfig; sourceTree = ""; }; - 128672B9F71A6BD8D10A3C8978A8B2AF /* React-RCTText.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTText.xcconfig"; sourceTree = ""; }; - 12C2D159AEE0B3530469B437EB1BC015 /* RCTVideoPlayerViewControllerDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTVideoPlayerViewControllerDelegate.h; path = ios/Video/RCTVideoPlayerViewControllerDelegate.h; sourceTree = ""; }; - 12E1E5A4C3FC44A79D3160CFE897B8D2 /* YGValue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGValue.h; path = yoga/YGValue.h; sourceTree = ""; }; - 1321C2A26616712E599B03417314F93C /* RCTShadowView+Layout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTShadowView+Layout.h"; sourceTree = ""; }; - 1379C4D52BC06398417544F11F7AC83D /* RCTLinkingManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLinkingManager.m; sourceTree = ""; }; - 13823ED65FCEB90841808BEABFEF8BFA /* RCTModuleData.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTModuleData.mm; sourceTree = ""; }; - 141731C3FA492DF2F4AA6656C5041D36 /* RCTSafeAreaViewLocalData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaViewLocalData.h; sourceTree = ""; }; - 1482F37D0F4EBBE275207AC077784DA9 /* NSTextStorage+FontScaling.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSTextStorage+FontScaling.h"; sourceTree = ""; }; - 14E0ED3B8F5CCF12BD6C9B0E05D58099 /* RCTTextSelection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextSelection.h; sourceTree = ""; }; - 14E822A7A4373074D3C23D89BF08C563 /* EXFileSystemLocalFileHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFileSystemLocalFileHandler.h; path = EXFileSystem/EXFileSystemLocalFileHandler.h; sourceTree = ""; }; - 14F57078C1B912051D87EAB514928A02 /* RCTFrameUpdate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFrameUpdate.h; sourceTree = ""; }; - 14FABAAE2F022BCFD2E184A5F2D52540 /* InspectorInterfaces.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = InspectorInterfaces.cpp; sourceTree = ""; }; - 150D45248CE575601B241A56E86184FE /* Utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Utils.h; path = yoga/Utils.h; sourceTree = ""; }; - 1534E0F42D1653F13F97F0B31A1B1782 /* UMReactNativeAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactNativeAdapter.h; sourceTree = ""; }; - 1553F36F63D53A6F1ECCB7EA083BDEE9 /* RCTSurfaceView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceView.mm; sourceTree = ""; }; - 15564939E08FD811906387A1CAC2A74C /* RNFileSystem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFileSystem.h; path = ios/RN/RNFileSystem.h; sourceTree = ""; }; - 157E37FFD31C5E5441089C528A3E0AC6 /* RCTShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTShadowView.h; sourceTree = ""; }; - 15B67CC7E3EC5125681FDEFB2F03E93E /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 16105C0D605078B6F1D32288138590F7 /* EXConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXConstants.m; path = EXConstants/EXConstants.m; sourceTree = ""; }; - 164B184AF133E1194BC37CA881F83CBD /* EXRemoteNotificationPermissionRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXRemoteNotificationPermissionRequester.h; sourceTree = ""; }; - 17317436ED9A7A90C34B38A5FE5073B8 /* RCTUITextField.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUITextField.m; sourceTree = ""; }; - 175823D9304E6B1DD9ABFF9CB4EF4870 /* RNVectorIcons-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNVectorIcons-prefix.pch"; sourceTree = ""; }; - 177CB1DA91FB9A88DF88C2265073F5FA /* NativeToJsBridge.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = NativeToJsBridge.cpp; sourceTree = ""; }; - 17CEAC20CCD5B93BD83118110CB0B41D /* RCTActionSheetManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTActionSheetManager.h; path = Libraries/ActionSheetIOS/RCTActionSheetManager.h; sourceTree = ""; }; - 17DB9377CDF20217573960C23EF8180A /* RCTSafeAreaViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaViewManager.m; sourceTree = ""; }; - 18097062BCC8BFA39A1595BE1EEC4763 /* JSExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSExecutor.cpp; sourceTree = ""; }; - 188FD2E72006B93930D728FB5364CF10 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 190AE97954575319E827C60D7664DFCB /* RNConvertPhAsset-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNConvertPhAsset-dummy.m"; sourceTree = ""; }; - 194AEAC348FB93BEDD90D39BA2B8E6E4 /* RCTView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTView.m; sourceTree = ""; }; - 196BAE997023B8FC0992B5FF2E57A568 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 0DDB7A8618190A733B555DAE07632A0F /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 0EB5FEB66D0EA5C919112294CE012916 /* React.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = React.xcconfig; sourceTree = ""; }; + 0EEAD73B2AF11A61CAA18AD53195C650 /* RCTModalHostViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostViewManager.m; sourceTree = ""; }; + 0F0237F5C94374C8E94B80480E661156 /* UMTaskServiceInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskServiceInterface.h; path = UMTaskManagerInterface/UMTaskServiceInterface.h; sourceTree = ""; }; + 0F48E2F03F3027518A578F7DFAF2578E /* React-RCTSettings.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTSettings.xcconfig"; sourceTree = ""; }; + 0F6CBFC16CE78E4F9A85F244A6C27157 /* RCTResizeMode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTResizeMode.h; path = Libraries/Image/RCTResizeMode.h; sourceTree = ""; }; + 100C9F1C3FAE5382E23D9488DE7E9643 /* RCTBridge.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBridge.m; sourceTree = ""; }; + 10AC722CE70564440EC0841FFC4F37E1 /* React-RCTSettings.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-RCTSettings.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 111341F7CDD1EF069906B16774B13BA0 /* UMAccelerometerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMAccelerometerInterface.h; path = UMSensorsInterface/UMAccelerometerInterface.h; sourceTree = ""; }; + 115214FBA4EDFED79A5DB7A29E309F27 /* jsilib.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = jsilib.h; sourceTree = ""; }; + 11B1C6D7ACE3DBBDCD0AFCF7EB9F9DEF /* RCTWebSocketExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTWebSocketExecutor.h; path = Libraries/WebSocket/RCTWebSocketExecutor.h; sourceTree = ""; }; + 11CFF4564C4B7F989CC6B9E4E56C19D3 /* React-RCTText.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-RCTText.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 11F049CD5B2DDA74F086BA0A03722F53 /* RCTExceptionsManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTExceptionsManager.mm; sourceTree = ""; }; + 11FB3135C7C316191D97C3698E2F7399 /* RCTScrollContentViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentViewManager.h; sourceTree = ""; }; + 122393B78EAAE45A999E469B03393C5C /* React-RCTBlob.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTBlob.xcconfig"; sourceTree = ""; }; + 122B890482FCD7133611A5C18B90E0EF /* RCTTextAttributes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTTextAttributes.h; path = Libraries/Text/RCTTextAttributes.h; sourceTree = ""; }; + 123533AD2569FE5E4230B743DE07A21B /* RCTNetworkTask.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTNetworkTask.m; sourceTree = ""; }; + 124705ABB177239BAC7EA2C6B2BAF7F0 /* RNCAsyncStorage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNCAsyncStorage-dummy.m"; sourceTree = ""; }; + 1302B759B7F4E7FC730B079563613D4E /* React-RCTNetwork-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTNetwork-prefix.pch"; sourceTree = ""; }; + 1307C039C25584E682A9C37C6BC9C8E4 /* RCTSurfaceRootShadowViewDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootShadowViewDelegate.h; sourceTree = ""; }; + 13C382E153A5297EEAE5B27E367C80C7 /* RCTSensorOrientationChecker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTSensorOrientationChecker.m; path = ios/RCT/RCTSensorOrientationChecker.m; sourceTree = ""; }; + 13DB4649A6514DE9AD5FCCE6BD1D26BF /* RCTTouchEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTouchEvent.h; sourceTree = ""; }; + 142089E68B4E828C83404E460E3FE8E1 /* EXConstants-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXConstants-prefix.pch"; sourceTree = ""; }; + 1435C217D7BE552E2924CCCE8022795A /* RCTPropsAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPropsAnimatedNode.m; sourceTree = ""; }; + 1439959EB2CB9D273F4B89010C340A83 /* RCTModalManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalManager.h; sourceTree = ""; }; + 143FC1623178F4EAAB73606002BB101D /* RCTSurfaceRootView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceRootView.mm; sourceTree = ""; }; + 145C823290B66AB0AE26ED13AB2CB75B /* Utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Utils.h; path = yoga/Utils.h; sourceTree = ""; }; + 14D3442FE37040422EAC2E45BE0E4B73 /* RCTUIManagerUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIManagerUtils.m; sourceTree = ""; }; + 1569131E6999C5BD135B6C6CCE9613D0 /* RNGestureHandlerRegistry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerRegistry.m; path = ios/RNGestureHandlerRegistry.m; sourceTree = ""; }; + 15AC984FAE1A8689EAB660B1CE59A2F8 /* RCTTextAttributes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextAttributes.m; sourceTree = ""; }; + 15C8D1D4155359D2B4D6D6242B50C3DE /* JSBigString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSBigString.h; sourceTree = ""; }; + 1629222CF7B604F84D42B3FF4EBFB11E /* NativeToJsBridge.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NativeToJsBridge.h; sourceTree = ""; }; + 16360E0C4E8EFD917281F350C5FF7953 /* RCTTiming.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTiming.m; sourceTree = ""; }; + 16E6DAB056AC5626F73B00234449D321 /* RNConvertPhAsset.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNConvertPhAsset.h; path = ios/RNConvertPhAsset.h; sourceTree = ""; }; + 17995E2273EDB53DB57D131C0AABE02C /* RNGestureHandlerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerManager.m; path = ios/RNGestureHandlerManager.m; sourceTree = ""; }; + 185510C96CC264AA2D629CFAEC175FEF /* RCTURLRequestDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTURLRequestDelegate.h; sourceTree = ""; }; + 18D14CD2E1BDA0C6180E077DBF9CEFF7 /* MethodCall.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MethodCall.h; sourceTree = ""; }; + 1912A6D0B8774B430E5C7A3E8AD6C793 /* RCTShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTShadowView.h; sourceTree = ""; }; + 19DABD1E274F5FC039C41A680EB334AB /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; 19FC52C88E761337352B0E43EE9A58CE /* MallocImpl.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = MallocImpl.cpp; path = folly/memory/detail/MallocImpl.cpp; sourceTree = ""; }; - 1A32273B1E0B1D7C3B8CB4EEBE2C0B7D /* React-jsiexecutor.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsiexecutor.xcconfig"; sourceTree = ""; }; + 1A4569BE764460C66EEB4D92B9D9DF68 /* RCTMultilineTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultilineTextInputViewManager.h; sourceTree = ""; }; 1AC05645A782831DC2E7D43541532A8E /* double-conversion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "double-conversion.h"; path = "double-conversion/double-conversion.h"; sourceTree = ""; }; - 1ADC0723D393D861F4FE512F6313DBE6 /* RCTShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTShadowView.m; sourceTree = ""; }; - 1ADEF493FA1D06222BDEE49078C26A39 /* Foundation.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Foundation.ttf; path = Fonts/Foundation.ttf; sourceTree = ""; }; - 1B1B0EB03AC1AB09BA336B6920AEF443 /* React-RCTSettings-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTSettings-dummy.m"; sourceTree = ""; }; - 1B914367C1F6C559CBF7A18167666C35 /* RCTBaseTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextViewManager.h; sourceTree = ""; }; - 1C39DFAE7B553C4559B43C5D60649D45 /* FBReactNativeSpec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBReactNativeSpec.h; path = FBReactNativeSpec/FBReactNativeSpec.h; sourceTree = ""; }; - 1C65F90F71788A3CDF8D5312CC90EE91 /* RCTMessageThread.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTMessageThread.mm; sourceTree = ""; }; - 1CAF3E18892A67FB4C6C1F2789F768CC /* React-CoreModules-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-CoreModules-dummy.m"; sourceTree = ""; }; - 1CD223FA8C4761DD0DB9FAE549EB3B78 /* EXFileSystem-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXFileSystem-prefix.pch"; sourceTree = ""; }; - 1CEA3B7001165FC8F946660199830E73 /* RCTManagedPointer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTManagedPointer.h; sourceTree = ""; }; - 1D14EDD194DD2199C3E3FA25415C154D /* UMReactLogHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactLogHandler.h; sourceTree = ""; }; - 1D2292D7D85D5D1A841A1621A1D568EE /* log.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = log.h; path = yoga/log.h; sourceTree = ""; }; - 1D3003F7E9A8E4C3D620728CF9908FEC /* RCTTurboModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTurboModule.h; sourceTree = ""; }; - 1D5C6E59B170D018B79733F767B0A4B0 /* RCTRootContentView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootContentView.m; sourceTree = ""; }; - 1D6A4F290DAAC3B71389B5BBE37416FB /* EXFileSystem-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXFileSystem-dummy.m"; sourceTree = ""; }; - 1DF0F230092EFDF9E52B0054726C5956 /* RCTUIImageViewAnimated.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIImageViewAnimated.m; sourceTree = ""; }; - 1DF0F387C49BA7550E993B9F45A0A622 /* REAEventNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAEventNode.m; sourceTree = ""; }; - 1E019E6439924DC1166B028508E895B4 /* RCTWeakProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTWeakProxy.h; sourceTree = ""; }; - 1E8AA4BD8FA9EAC285A13989DAECCF93 /* YGMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGMacros.h; path = yoga/YGMacros.h; sourceTree = ""; }; - 1E8F5F4D5A9D9229ADC3EE36FE531D22 /* RNPanHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNPanHandler.m; sourceTree = ""; }; - 1E97E900D22848007F6A5DC15C2D0A17 /* RCTAdditionAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAdditionAnimatedNode.m; sourceTree = ""; }; - 1EA94D2586BBE7D9BFCB83206D0F4CEA /* UMFontManagerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontManagerInterface.h; path = UMFontInterface/UMFontManagerInterface.h; sourceTree = ""; }; - 1F68D1B71C821AFE3706612C0586D8CA /* RCTJavaScriptExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJavaScriptExecutor.h; sourceTree = ""; }; - 20619492E8F06CCFA2AB068319ED78B1 /* EXAppLoaderProvider.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXAppLoaderProvider.xcconfig; sourceTree = ""; }; - 20714491BF54003D0BD9AA33F56EA21B /* REAAlwaysNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAAlwaysNode.m; sourceTree = ""; }; - 21493CAC93246D53919041D773A51113 /* ReactCommon.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ReactCommon.xcconfig; sourceTree = ""; }; - 21881733B97D17438FC094FE530B7022 /* RCTWrapperViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTWrapperViewController.h; sourceTree = ""; }; - 21AE6A3C6DCDAC664A996A9C45E133A9 /* RCTSurfaceSizeMeasureMode.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceSizeMeasureMode.mm; sourceTree = ""; }; - 21CB225F5AF46EF8DFF571B3779AA98F /* RCTImageSource.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageSource.m; sourceTree = ""; }; - 21D16B827DCB58B7F8A3B6F05AC893D1 /* RCTTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextViewManager.h; sourceTree = ""; }; + 1ACAD497CB7CE6CD298841F0C52A0334 /* RCTRootViewDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootViewDelegate.h; sourceTree = ""; }; + 1ADB9CC00C5DBBC7A6F0D43985AD1A3C /* RCTSurfacePresenterStub.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfacePresenterStub.h; sourceTree = ""; }; + 1B291E1D20E76324FC9EA3C11C68B8B7 /* RCTSwitch.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSwitch.m; sourceTree = ""; }; + 1B5EB1EE0ED9E0A03E950460F367B5F9 /* RCTInputAccessoryViewContent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryViewContent.h; sourceTree = ""; }; + 1C4BB3F85F6A2CE35AD22262D370CE72 /* RNCMaskedView-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNCMaskedView-prefix.pch"; sourceTree = ""; }; + 1C6EF90CBC6375E3CBAA88A653C6BEEB /* UMBarometerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBarometerInterface.h; path = UMSensorsInterface/UMBarometerInterface.h; sourceTree = ""; }; + 1C940033FA863B686F0E668A17956B2B /* react-native-ffmpeg-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-ffmpeg-dummy.m"; sourceTree = ""; }; + 1CA1183E0421FC38D49FB2BDF05F9002 /* YGConfig.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGConfig.cpp; path = yoga/YGConfig.cpp; sourceTree = ""; }; + 1D1BA4CAD33A7AABB55DB558189A0D48 /* REAFunctionNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAFunctionNode.h; sourceTree = ""; }; + 1D883740CD80A8DB07979F6D98CDEA61 /* RNCSafeAreaView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaView.h; path = ios/SafeAreaView/RNCSafeAreaView.h; sourceTree = ""; }; + 1DF6692A48DF0009AB87A5292D3CA3AE /* RCTDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDefines.h; sourceTree = ""; }; + 1E6B6CE0364C64CA0B2C1C95B93601D6 /* RCTUIImageViewAnimated.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTUIImageViewAnimated.h; path = Libraries/Image/RCTUIImageViewAnimated.h; sourceTree = ""; }; + 1E915664A5E16084BA46C2BF3C354F49 /* RCTImageView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageView.m; sourceTree = ""; }; + 1EC8FE8B7E18485A3A5670F0DFAFA063 /* UMPermissionsMethodsDelegate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMPermissionsMethodsDelegate.m; path = UMPermissionsInterface/UMPermissionsMethodsDelegate.m; sourceTree = ""; }; + 1EDA6D24E2D61D3DD4B8FF171109BCF0 /* EXUserNotificationPermissionRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXUserNotificationPermissionRequester.h; sourceTree = ""; }; + 1F19C2BDE3441343DA7C2F0F2D8BB95B /* RNCMaskedView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCMaskedView.m; path = ios/RNCMaskedView.m; sourceTree = ""; }; + 1F78BE74F70334DC01F1690714B8733D /* RCTObjcExecutor.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTObjcExecutor.mm; sourceTree = ""; }; + 1F8EDAF873C0C53EAE22EDE1147917E3 /* UMPermissionsInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMPermissionsInterface.xcconfig; sourceTree = ""; }; + 1FADFD1C7B6755F2692F5A1E43CF8D3C /* TurboModule.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TurboModule.cpp; path = turbomodule/core/TurboModule.cpp; sourceTree = ""; }; + 1FEE709FA36B0E6383F7A3FF3735E118 /* UMTaskConsumerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskConsumerInterface.h; path = UMTaskManagerInterface/UMTaskConsumerInterface.h; sourceTree = ""; }; + 200B564D83D709BD15C330C61C24FBE0 /* RCTSafeAreaView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaView.m; sourceTree = ""; }; + 2037F14B0026EEFD238DD96CCCBD8CE9 /* CoreModulesPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = CoreModulesPlugins.mm; sourceTree = ""; }; + 2038C81182265457FB4A62C5DDAF2CDE /* UMLogManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMLogManager.h; sourceTree = ""; }; + 20DD2EB70B59296D8FEEBAF29E7D04AC /* React-RCTActionSheet.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-RCTActionSheet.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 20EDBA392CE0549EA72709998DAB4CF3 /* REATransition.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransition.m; sourceTree = ""; }; + 219916BBAB9C8B6CD7A2BD41DF4907EC /* RCTNativeAnimatedModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNativeAnimatedModule.h; path = Libraries/NativeAnimation/RCTNativeAnimatedModule.h; sourceTree = ""; }; + 21A1C87776F303A84C0EB93FDB7E06F6 /* React-CoreModules-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-CoreModules-dummy.m"; sourceTree = ""; }; + 21BEE26C8CF98E6DC73D49C744DDE4CD /* RCTDatePicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDatePicker.h; sourceTree = ""; }; + 21E171956009B8B32887C7BC5E665939 /* YGConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGConfig.h; path = yoga/YGConfig.h; sourceTree = ""; }; + 21ECFB7E8546332ED113CC6753D7C0E8 /* RNNativeViewHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNNativeViewHandler.m; sourceTree = ""; }; 220361FF3B2778F8F38C2C4DCC5B49FD /* libEXConstants.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXConstants.a; path = libEXConstants.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 220576A80DC635CC4CF6A3C1561526FA /* TurboModuleBinding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TurboModuleBinding.h; path = turbomodule/core/TurboModuleBinding.h; sourceTree = ""; }; - 220869C23004F6C37A12911E9D3C9BD8 /* RCTBaseTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputViewManager.m; sourceTree = ""; }; - 2216D47FB74799240FA9DB388868F403 /* RCTScrollContentShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentShadowView.m; sourceTree = ""; }; - 22924032C5C2C77395260138B858309C /* RCTWrapperViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTWrapperViewController.m; sourceTree = ""; }; - 2295102D9E63957D79A6C4DD5B4F165E /* RCTBaseTextInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextInputView.h; sourceTree = ""; }; - 229D4E674C556D84E3A6FAFE16BA698D /* RCTImageView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageView.m; sourceTree = ""; }; - 22D1752257CE12FD0D5E65D520ED73C7 /* TurboCxxModule.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TurboCxxModule.cpp; path = turbomodule/core/TurboCxxModule.cpp; sourceTree = ""; }; - 22E5EC80B168F850FE824A7C6009657D /* RCTDiffClampAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDiffClampAnimatedNode.m; sourceTree = ""; }; - 23AE07067A927E618EF93901F1262224 /* REANodesManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = REANodesManager.m; path = ios/REANodesManager.m; sourceTree = ""; }; - 2426860BD069CE41DB60BCFABC0DF7E1 /* RCTSpringAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSpringAnimation.h; sourceTree = ""; }; - 242C7CAF09D52400CB075F5A9618E02F /* react-native-cameraroll.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-cameraroll.xcconfig"; sourceTree = ""; }; - 242FEF393A192BE57EEA12103EC3984B /* EXConstants-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXConstants-dummy.m"; sourceTree = ""; }; - 24645A6101C6802C978A1489AD5798F2 /* React-RCTSettings.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-RCTSettings.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 222C5D587EB5199E1624E37DB95C1CBC /* RNPinchHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNPinchHandler.m; sourceTree = ""; }; + 2287AEE38F030660DC26BF22E3EDD4DD /* EXPermissions.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXPermissions.xcconfig; sourceTree = ""; }; + 22F748F3D3462CAE6EDB5BEF0D9563CA /* RCTPerformanceLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPerformanceLogger.m; sourceTree = ""; }; + 236A00FF033EAEA4AF28CFBB07C03D7C /* React-RCTLinking.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-RCTLinking.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 23D4AD65058D3C2D9384417F25577FD3 /* RCTConvertHelpers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTConvertHelpers.h; sourceTree = ""; }; + 23FB1B1C3F5AD794F5DC41A86A6A2B8A /* YGEnums.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGEnums.cpp; path = yoga/YGEnums.cpp; sourceTree = ""; }; + 2420FF852A748811BE052AEBCF3E591B /* RNSScreenContainer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreenContainer.m; path = ios/RNSScreenContainer.m; sourceTree = ""; }; + 24403DEBAE9BE1EAE898F16E86C7ED61 /* RCTShadowView+Layout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTShadowView+Layout.m"; sourceTree = ""; }; + 245DB2D57770A38D77955A277B3654CC /* RCTResizeMode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTResizeMode.m; sourceTree = ""; }; + 24822E4AA3851B16F74DA333465018EC /* RCTTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextShadowView.m; sourceTree = ""; }; + 24B8D86926F4F4667D26D7B77755B000 /* RCTMultilineTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultilineTextInputViewManager.m; sourceTree = ""; }; + 24C177ADF47D5B9AA6D7BE9D248A8AB6 /* RNCAsyncStorage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNCAsyncStorage-prefix.pch"; sourceTree = ""; }; 24C74D1AC7A0A48FEDFF332FFE8EF00E /* Pods-Gladeo_App.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Gladeo_App.debug.xcconfig"; sourceTree = ""; }; - 25148C0EC587165889D3C3B10A1702F5 /* RCTAccessibilityManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAccessibilityManager.h; sourceTree = ""; }; - 251730F1F9CFAAABAA1824B7A2D55DC4 /* React-RCTVibration-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTVibration-dummy.m"; sourceTree = ""; }; + 24DCDE9E0996B2A81964DBCFDCB7BDB8 /* RNCAssetsLibraryRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAssetsLibraryRequestHandler.h; path = ios/RNCAssetsLibraryRequestHandler.h; sourceTree = ""; }; + 2513938770EB82708FF014EC688613A7 /* RCTJavaScriptLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJavaScriptLoader.h; sourceTree = ""; }; 2577F299FCB0A19824FE989BE77B8E8F /* libReact-jsinspector.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-jsinspector.a"; path = "libReact-jsinspector.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 25CE2798B7732795CD21F211DA45D12E /* RCTSegmentedControl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSegmentedControl.m; sourceTree = ""; }; - 25D1F24F9AB409DE43BE625D1EC571B7 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 25EEBA49AE086F0ECB8BD9A094146FEB /* UMEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMEventEmitter.h; sourceTree = ""; }; + 25967F861375411FC8A89266362E9266 /* RCTTransformAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTransformAnimatedNode.h; sourceTree = ""; }; 25F7A98F264B4A86B093172062A63663 /* dynamic.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = dynamic.cpp; path = folly/dynamic.cpp; sourceTree = ""; }; - 2631CCEA21E0CC13052E7A2CCD6CAC30 /* RCTDatePickerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDatePickerManager.h; sourceTree = ""; }; - 2698781D458D7E07D6B25084717B4A49 /* RCTProfileTrampoline-arm.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-arm.S"; sourceTree = ""; }; + 26252FBE589074A427D3745B55447735 /* RCTSafeAreaView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaView.h; sourceTree = ""; }; + 262ACA4622FEF40859DBCA07EC0E5788 /* EXFileSystem-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXFileSystem-prefix.pch"; sourceTree = ""; }; + 26710D576F9E5EE6CAECE652E5CECE3D /* RNGestureHandlerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerManager.h; path = ios/RNGestureHandlerManager.h; sourceTree = ""; }; 269BE773C9482484B70949A40F4EA525 /* libReact-RCTSettings.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTSettings.a"; path = "libReact-RCTSettings.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 26BA9BDE276BB4626B8B352F14F3B2DB /* RCTCxxMethod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxMethod.h; sourceTree = ""; }; - 26C85BB7C62A0291B4631540EDD8B82C /* RCTBundleURLProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBundleURLProvider.h; sourceTree = ""; }; - 27341365B10BF5650ECFC725AEFA3F24 /* RCTDevSettings.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDevSettings.h; sourceTree = ""; }; - 2734AB12BB05607E2FDBA7C29858766B /* RCTModuleData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuleData.h; sourceTree = ""; }; - 27FCB61624459BC0366A1D992CE91116 /* UMModuleRegistryAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistryAdapter.m; sourceTree = ""; }; - 2842420D9151969B6BD4FCC58C457023 /* RCTDatePickerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDatePickerManager.m; sourceTree = ""; }; - 284C7E99721531552E6745077D14A20B /* RNVectorIconsManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNVectorIconsManager.m; path = RNVectorIconsManager/RNVectorIconsManager.m; sourceTree = ""; }; - 287C7587689F2C8C6E2F4EA229551FDB /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 295734123C3FA69B44FE968AE53B481C /* RCTImageLoaderProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageLoaderProtocol.h; path = Libraries/Image/RCTImageLoaderProtocol.h; sourceTree = ""; }; - 29D66464F66E2BD694FC8F551923B8EE /* RCTRootViewDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootViewDelegate.h; sourceTree = ""; }; - 29FB66FBBA4C427F4CBAE22965023D83 /* RCTSafeAreaView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaView.h; sourceTree = ""; }; - 2A09EFA9EB4AFDB37AD112F31E313FB2 /* RCTRedBoxExtraDataViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRedBoxExtraDataViewController.m; sourceTree = ""; }; - 2A48200A992D333C1DE1CD281437DD09 /* RNReanimated-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNReanimated-prefix.pch"; sourceTree = ""; }; - 2A57A78ADB948E7D6B7BDA4E91FDC02E /* RNCameraUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCameraUtils.m; path = ios/RN/RNCameraUtils.m; sourceTree = ""; }; - 2AF6B28BAFCE26EDF6377D3155D19866 /* FontAwesome5_Solid.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = FontAwesome5_Solid.ttf; path = Fonts/FontAwesome5_Solid.ttf; sourceTree = ""; }; + 269CF863648C9C33064D8E42E71EFB1B /* RCTRedBoxExtraDataViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRedBoxExtraDataViewController.h; sourceTree = ""; }; + 26A7A84B79D50EAB16D223C258A77EED /* FBReactNativeSpec-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FBReactNativeSpec-dummy.m"; sourceTree = ""; }; + 26B70F46B490A1CA672ECA4F89AD102C /* RCTLocalAssetImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTLocalAssetImageLoader.h; path = Libraries/Image/RCTLocalAssetImageLoader.h; sourceTree = ""; }; + 26C31A65F398319F402241F790D6822C /* RCTTypedModuleConstants.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTTypedModuleConstants.mm; sourceTree = ""; }; + 276C16B6712BDFA19361D113EC519FD6 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 2825FF21CEA7F8B29A3FDAC1D34776E6 /* RNGestureHandler.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNGestureHandler.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 282C7D94A04847EB9FA6AE0BD259F8D8 /* React-RCTLinking-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTLinking-dummy.m"; sourceTree = ""; }; + 28326EFEE933079BA8555732F148E567 /* RCTDecayAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDecayAnimation.h; sourceTree = ""; }; + 28977C6B8FD49EFE32857DFB1A08F739 /* RCTCamera.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTCamera.h; path = ios/RCT/RCTCamera.h; sourceTree = ""; }; + 28A502637E7C76DAEE8221527FC26AC3 /* EXAppLoaderProvider.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXAppLoaderProvider.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 28C6E5C4C400012BA6E71C1FD5CDD8E4 /* jsilib-posix.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = "jsilib-posix.cpp"; sourceTree = ""; }; + 28E9F8D2113326A2244D7F4A71CB7ED0 /* RCTLocalAssetImageLoader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLocalAssetImageLoader.m; sourceTree = ""; }; + 28F77E4A2D0D134FB487364758B24E38 /* AntDesign.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = AntDesign.ttf; path = Fonts/AntDesign.ttf; sourceTree = ""; }; + 292013A0A5283436B2815A6D014D7C5E /* REABlockNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REABlockNode.h; sourceTree = ""; }; + 293EDE29DE9E73423366EC7E2155C485 /* RCTSliderManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSliderManager.h; sourceTree = ""; }; + 29ECDB1B1107A6FD7BB002178BE986B3 /* UMBarCodeScannerProviderInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBarCodeScannerProviderInterface.h; path = UMBarCodeScannerInterface/UMBarCodeScannerProviderInterface.h; sourceTree = ""; }; + 29FAB5F46ABB07B4FF5364EAA7BFC04A /* RCTBaseTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputView.m; sourceTree = ""; }; + 2A0C45F73723728076A06DF693A10012 /* REABezierNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REABezierNode.m; sourceTree = ""; }; + 2A2B3A820963BA080674D8DE416D1964 /* RCTNetInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTNetInfo.m; sourceTree = ""; }; + 2A5D4FD97C98DB85D4C97F6C05B4278B /* RCTImageCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageCache.h; path = Libraries/Image/RCTImageCache.h; sourceTree = ""; }; + 2AA7B3D22B21157AB31711C5FE39A7E2 /* RCTBorderStyle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBorderStyle.h; sourceTree = ""; }; 2B044ADD3795A01968B2078E083E1BF5 /* Assume.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Assume.cpp; path = folly/lang/Assume.cpp; sourceTree = ""; }; - 2B28319654F6747C5E845EA0999A77AD /* RCTConvert+CoreLocation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+CoreLocation.h"; sourceTree = ""; }; 2B59D9FEC0B642EA15A35F647DA86754 /* utilities.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = utilities.cc; path = src/utilities.cc; sourceTree = ""; }; - 2BE5CA94122FEC590AA36AD6B156752C /* REATransformNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransformNode.m; sourceTree = ""; }; - 2C19D5A7B9A87FB8FB13149BCF3375DD /* RNSScreen.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreen.m; path = ios/RNSScreen.m; sourceTree = ""; }; - 2C1CF6E89C0AD3A8ADAA6B9B85C78A41 /* RCTPackagerClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPackagerClient.m; sourceTree = ""; }; - 2C5189C75A7B9D6A5115CA1C0E958D24 /* RCTDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDefines.h; sourceTree = ""; }; - 2CA33A682B6983DFA4E84579DD33057B /* RecoverableError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RecoverableError.h; sourceTree = ""; }; - 2CFC25A227E0EE0D8A93BABD80C141A4 /* RNGestureHandler-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNGestureHandler-prefix.pch"; sourceTree = ""; }; - 2D18CDD8A66DF13080BE00ED2CD501D7 /* RCTBridgeMethod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeMethod.h; sourceTree = ""; }; - 2D62C174B80D005AA1E509EEE67F1E6C /* RCTFPSGraph.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFPSGraph.h; sourceTree = ""; }; - 2D6EDFE7B99B9E14083822DFEEFDDE7E /* RCTAssert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAssert.h; sourceTree = ""; }; - 2DC49D03950BBE02396ADBFAFBC84648 /* LICENSE.md */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE.md; sourceTree = ""; }; - 2DD37BA7298D9D81210B0C6245E5F2FE /* RCTAdditionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAdditionAnimatedNode.h; sourceTree = ""; }; - 2E24DF46D515469CF4167E4141DE6FF5 /* RCTMultipartDataTask.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultipartDataTask.m; sourceTree = ""; }; - 2E3164A41CFEA7355A3846A05EF95027 /* REAClockNodes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAClockNodes.m; sourceTree = ""; }; - 2E4F38403B0960C6246FCD958E33F09E /* RCTLayout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayout.h; sourceTree = ""; }; - 2E5143FE63CD01FC7347937B2438DD8A /* React-RCTBlob.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-RCTBlob.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 2B867B3CE1C693216843B6D74993CD07 /* TurboModuleUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TurboModuleUtils.h; path = turbomodule/core/TurboModuleUtils.h; sourceTree = ""; }; + 2B9EBF4744171DE5917AF839123F8723 /* RCTAssert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAssert.h; sourceTree = ""; }; + 2BC89F73F4E5BC5ADF2C218EAFF4F3B6 /* RCTImageShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageShadowView.m; sourceTree = ""; }; + 2BF71FCE2C47FC505ABB71E0E5747D54 /* RCTInterpolationAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInterpolationAnimatedNode.h; sourceTree = ""; }; + 2C091676A4C95E0E5C12803E6A71AC9A /* RNFFmpegModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFFmpegModule.m; path = ios/RNFFmpegModule.m; sourceTree = ""; }; + 2C6D3125CA86D820BD9EB74EB3972799 /* RCTTrackingAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTrackingAnimatedNode.h; sourceTree = ""; }; + 2C7256A5C691284987BE6163219C587F /* Orientation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Orientation.m; path = iOS/RCTOrientation/Orientation.m; sourceTree = ""; }; + 2CBF645A0A960BDCF5D00D98C8BF154E /* React-RCTActionSheet.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTActionSheet.xcconfig"; sourceTree = ""; }; + 2CD3258A682E289E456C618D9F94BEFE /* SystraceSection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = SystraceSection.h; sourceTree = ""; }; + 2CE00C535A3C1C7E11F55C6A73525A2B /* RCTTurboModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTTurboModule.mm; sourceTree = ""; }; + 2D51CE9D12CADF783BEAC9466743BB97 /* RCTVideoPlayerViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTVideoPlayerViewController.h; path = ios/Video/RCTVideoPlayerViewController.h; sourceTree = ""; }; + 2D5AA430A4D201F5CCFA6B2EA167FFAB /* UMReactNativeAdapter-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UMReactNativeAdapter-prefix.pch"; sourceTree = ""; }; + 2D69A82D6BAD420D193400E5F728D03B /* RCTImageViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageViewManager.m; sourceTree = ""; }; + 2DD241268875DFB5C640B7B2DEBF79E0 /* FontAwesome5_Solid.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = FontAwesome5_Solid.ttf; path = Fonts/FontAwesome5_Solid.ttf; sourceTree = ""; }; + 2DDC53D355666FB708B641ACA9DFA1D0 /* RCTMultilineTextInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultilineTextInputView.h; sourceTree = ""; }; + 2DFBF02FF4D8338947FB5CE4A536585F /* RCTWebSocketExecutor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTWebSocketExecutor.m; path = Libraries/WebSocket/RCTWebSocketExecutor.m; sourceTree = ""; }; + 2E1B0400FB6CBA4F52196B5A5E24E5B2 /* react-native-orientation.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-orientation.xcconfig"; sourceTree = ""; }; 2E66A7443BBC8FA9D616A17E15B5F258 /* utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = utils.h; path = "double-conversion/utils.h"; sourceTree = ""; }; - 2E97F6236F9732B9AB03922A388A7508 /* RNGestureHandlerRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerRegistry.h; path = ios/RNGestureHandlerRegistry.h; sourceTree = ""; }; - 2EBED2F2909DD60BABE3AA796A7D1C9C /* RCTLinkingManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTLinkingManager.h; path = Libraries/LinkingIOS/RCTLinkingManager.h; sourceTree = ""; }; - 2ED3AF2EDD33ED334632267202BF010F /* RCTImageUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageUtils.h; path = Libraries/Image/RCTImageUtils.h; sourceTree = ""; }; - 2F01FFBE2D79FE839B40A16B7B916E08 /* RCTTurboModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTTurboModule.mm; sourceTree = ""; }; - 2F341A15EEFE4F8E8089DF18572A52C2 /* RCTLayoutAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayoutAnimation.m; sourceTree = ""; }; - 2F4EFA992CB991F3BEA083CF208555A4 /* UMKernelService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMKernelService.h; sourceTree = ""; }; - 2F7CABD3FFE4787F2DBB25EDD776997C /* RCTUIManagerObserverCoordinator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManagerObserverCoordinator.h; sourceTree = ""; }; - 2FD1803E8A42BFE1498A7D4B266C2843 /* InspectorInterfaces.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = InspectorInterfaces.h; sourceTree = ""; }; - 2FFA59A067CBEFD0512376F0B519D859 /* UMModuleRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistry.h; sourceTree = ""; }; - 302CC09A182B62441AC731F3D246855B /* RCTImageEditingManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageEditingManager.h; path = React/CoreModules/RCTImageEditingManager.h; sourceTree = ""; }; - 3067FF57D95E00C6C3673DDE86B2F48A /* RCTFileReaderModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTFileReaderModule.h; path = Libraries/Blob/RCTFileReaderModule.h; sourceTree = ""; }; - 308F48010BC6D3E74AF5596BDF109B25 /* RNCameraManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCameraManager.h; path = ios/RN/RNCameraManager.h; sourceTree = ""; }; - 30F0E81137D12F9BC819DB468A7B4A19 /* RCTBlobManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTBlobManager.mm; sourceTree = ""; }; - 31175F671A81AA95B04B421452CBE45D /* RCTUIManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManager.h; sourceTree = ""; }; - 311ECD9C3F2700BAD4C3AE771C402EEF /* RCTSettingsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTSettingsManager.h; path = Libraries/Settings/RCTSettingsManager.h; sourceTree = ""; }; - 313949B62486167A8189206D0F6359E5 /* instrumentation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = instrumentation.h; sourceTree = ""; }; - 3147379C96305CF167B48640A8127951 /* RCTTextTransform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTTextTransform.h; path = Libraries/Text/RCTTextTransform.h; sourceTree = ""; }; - 31ED1D95307ADA19B6E67C3A4C0C150D /* RCTBackedTextInputDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputDelegate.h; sourceTree = ""; }; - 322970E7B7CE74EEF963ABCDFDE703A6 /* RCTConvertHelpers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTConvertHelpers.h; sourceTree = ""; }; + 2E8FD2842D86EFF1437926BAB28D89CB /* React-cxxreact-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-cxxreact-dummy.m"; sourceTree = ""; }; + 2EBC887BD603FCF68C3BFC86D907DB5E /* RCTClipboard.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTClipboard.m; sourceTree = ""; }; + 2ECD171BD73075B2FEEE140063E833A3 /* Downloader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Downloader.h; sourceTree = ""; }; + 2F3C723996D79CA7E88673C4730F5767 /* jsilib-windows.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = "jsilib-windows.cpp"; sourceTree = ""; }; + 2F8DB64D9CCCF2F99AF0E36F8D414DBE /* UMFontInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFontInterface.xcconfig; sourceTree = ""; }; + 2FE427E1DE0F47281825F31DEF6B8978 /* EXFileSystemLocalFileHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFileSystemLocalFileHandler.m; path = EXFileSystem/EXFileSystemLocalFileHandler.m; sourceTree = ""; }; + 302FC132F1C00A68A5749C97B57C7FC9 /* Instance.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Instance.h; sourceTree = ""; }; + 3062B8DCD584F3B29EEA55917B69959F /* RCTAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAnimatedNode.m; sourceTree = ""; }; + 3064E577B834E14AA7BEEFA5F550EFB8 /* REAAllTransitions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAAllTransitions.h; sourceTree = ""; }; + 30CCF8B07D8E64BACD48ABECAF0665A0 /* RNCMaskedView.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNCMaskedView.xcconfig; sourceTree = ""; }; + 30E48F53448A97401A4CB46B784A0E0F /* RCTValueAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTValueAnimatedNode.h; sourceTree = ""; }; + 311F7AAE4AB96FBE852D1FD3373DA5B8 /* RCTSurfaceView+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTSurfaceView+Internal.h"; sourceTree = ""; }; + 31AF60FA20FC938D62E6EA7C77294F41 /* React-jsinspector.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-jsinspector.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 31C93939583EC4FBAA1B76C7C881C181 /* RCTHTTPRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTHTTPRequestHandler.h; path = Libraries/Network/RCTHTTPRequestHandler.h; sourceTree = ""; }; + 31D05B387B92E4A716FC6FCD1E818BB9 /* TurboCxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TurboCxxModule.h; path = turbomodule/core/TurboCxxModule.h; sourceTree = ""; }; 323F3549D5C56E470837B5CB9CDF2378 /* gmp.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = gmp.framework; sourceTree = ""; }; - 32572940B7237605108D19BABDBAA92C /* RCTImageStoreManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageStoreManager.m; sourceTree = ""; }; - 32602D3FA54823E2837ADA749DBEC205 /* RCTTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextShadowView.m; sourceTree = ""; }; - 329A76F82BA337D174D3D3802005B0F4 /* React-jsiexecutor-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-jsiexecutor-dummy.m"; sourceTree = ""; }; - 32CFF65879726B1899A1CBF0C3B81CD0 /* UMViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMViewManager.h; path = UMCore/UMViewManager.h; sourceTree = ""; }; - 32D1C246107B244ABFC60B55866FD8BB /* RCTSurfaceView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceView.h; sourceTree = ""; }; - 333C144DFBB96E17F29FC5FE1A6B7F8E /* UMReactNativeAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactNativeAdapter.m; sourceTree = ""; }; - 338A5695A7CD602E2CCD515C444E00D3 /* RCTReloadCommand.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTReloadCommand.m; sourceTree = ""; }; - 3396059F0751177F44BDC08AD1D999DE /* JsArgumentHelpers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JsArgumentHelpers.h; sourceTree = ""; }; - 33A4E2B28A76266CFF7488176DF4847A /* REATransition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransition.h; sourceTree = ""; }; - 33F8F6C01B924822C83A3C45F8ACC798 /* RCTSlider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSlider.m; sourceTree = ""; }; - 3414968FA24E930067023BA989525279 /* RCTUITextField.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUITextField.h; sourceTree = ""; }; + 3359D6CB88796236E3C60FDE8A5CF4CA /* RNScreens.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNScreens.xcconfig; sourceTree = ""; }; + 3376256E25F4B9D09295A2D94200BA10 /* EXConstants-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXConstants-dummy.m"; sourceTree = ""; }; + 33C0D2F9896F73D13D96606AB6E8952C /* YGLayout.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGLayout.cpp; path = yoga/YGLayout.cpp; sourceTree = ""; }; + 33F6A3757C2FBB7EE9F8C8BFAFC77E10 /* Yoga.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Yoga.h; path = yoga/Yoga.h; sourceTree = ""; }; + 341B0EE2F562D0A7AC9EB2E850382B8C /* UMAppDelegateWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMAppDelegateWrapper.h; path = UMCore/UMAppDelegateWrapper.h; sourceTree = ""; }; + 34213CC0ED6281A8A86AEC774A315D30 /* react-native-camera.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-camera.xcconfig"; sourceTree = ""; }; 342D933FB92E6866CA8DE995B0BFD32A /* fast-dtoa.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "fast-dtoa.cc"; path = "double-conversion/fast-dtoa.cc"; sourceTree = ""; }; - 3434AA37908B5B206E27A3CCF84CE998 /* YGConfig.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGConfig.cpp; path = yoga/YGConfig.cpp; sourceTree = ""; }; - 3458FEF3282F71C742DBFED0F4ACE5F2 /* RCTBaseTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextInputViewManager.h; sourceTree = ""; }; - 346E6CB7AC5BED48E5033FF5BA18E9FB /* RCTTypeSafety.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RCTTypeSafety.xcconfig; sourceTree = ""; }; - 347F15CCFBAF62BB6C3EE1FD548D6216 /* RCTAppState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAppState.h; sourceTree = ""; }; - 349274FA4532F67E1E9F946F122BF708 /* UMPermissionsInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMPermissionsInterface.h; path = UMPermissionsInterface/UMPermissionsInterface.h; sourceTree = ""; }; - 353E92BFC01E4D0964B5941D92B26B01 /* RCTSegmentedControlManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSegmentedControlManager.h; sourceTree = ""; }; - 353EA34AEDF45E9214FE077716053F24 /* RCTRootShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootShadowView.h; sourceTree = ""; }; - 356CFCF6D7613D648C087DF9CEA73F5E /* react-native-orientation-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-orientation-prefix.pch"; sourceTree = ""; }; - 357D18531E0BF5EDAD9B37F11CB07ED2 /* RCTComponentEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTComponentEvent.h; sourceTree = ""; }; - 35D0F916DB212A571FBDDB4D2999DF5B /* RCTRedBoxExtraDataViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRedBoxExtraDataViewController.h; sourceTree = ""; }; - 3605B4EA55493DAE714E7BA25BBFC6E8 /* UMBarCodeScannerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBarCodeScannerInterface.h; path = UMBarCodeScannerInterface/UMBarCodeScannerInterface.h; sourceTree = ""; }; - 366E87D3760B5D7F69DB262C17336604 /* RCTCxxConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxConvert.h; sourceTree = ""; }; - 3672BE3C5A475521E7BBBA8D7C8F3C26 /* UMTaskConsumerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskConsumerInterface.h; path = UMTaskManagerInterface/UMTaskConsumerInterface.h; sourceTree = ""; }; - 367A4B7F89ED473F6D15D11BDF391825 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 36B4689623CD0453B726DFEEF5F4AF7D /* RCTAnimationUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAnimationUtils.h; path = Libraries/NativeAnimation/RCTAnimationUtils.h; sourceTree = ""; }; - 36F571DC41806C09AF333FD93F7CD527 /* RNRotationHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNRotationHandler.m; sourceTree = ""; }; + 34538C34D0B38F343683BC22F96E0F22 /* RCTAnimatedImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAnimatedImage.h; path = Libraries/Image/RCTAnimatedImage.h; sourceTree = ""; }; + 346E04B3581CC27303E1C05A41B86298 /* JSBigString.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSBigString.cpp; sourceTree = ""; }; + 34AB717BF15267CDB020DD7501918E98 /* RNCameraManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCameraManager.h; path = ios/RN/RNCameraManager.h; sourceTree = ""; }; + 34C3FFF0BC7F31313DB61A711842CB0C /* react-native-cameraroll-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-cameraroll-prefix.pch"; sourceTree = ""; }; + 35272515542012F664BD6191FBBF6117 /* RCTBaseTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputViewManager.m; sourceTree = ""; }; + 3561429ADB9A922F9FBA74B850B20F59 /* RNFileSystem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFileSystem.m; path = ios/RN/RNFileSystem.m; sourceTree = ""; }; + 3582715A75B520A99F302474FE8F0F0C /* RCTMultipartDataTask.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultipartDataTask.m; sourceTree = ""; }; + 3627C85245EE16785FB7291520CF12CB /* EXReactNativeUserNotificationCenterProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXReactNativeUserNotificationCenterProxy.m; path = EXPermissions/EXReactNativeUserNotificationCenterProxy.m; sourceTree = ""; }; + 3655A5708697F6288D7AD2DA87F37AD2 /* RCTDevLoadingView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDevLoadingView.h; sourceTree = ""; }; + 36CA0F897DB19A4C6057485A8781FDB1 /* RNGestureHandlerButton.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerButton.m; path = ios/RNGestureHandlerButton.m; sourceTree = ""; }; + 3715F5076DFDC3FFCB4EA60F2F961E3B /* Downloader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = Downloader.m; sourceTree = ""; }; 37592FDAD45752511010F4B06AC57355 /* libReact-cxxreact.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-cxxreact.a"; path = "libReact-cxxreact.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 378C2F2736E8CDA084E16B24EBF7126D /* FBReactNativeSpec-generated.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = "FBReactNativeSpec-generated.mm"; path = "FBReactNativeSpec/FBReactNativeSpec-generated.mm"; sourceTree = ""; }; - 37C3FBCE136A14EB5D378A1986DBB1EE /* CoreModulesPlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CoreModulesPlugins.h; path = React/CoreModules/CoreModulesPlugins.h; sourceTree = ""; }; - 37F68DB47258C5125B3C036D3DD71A87 /* RCTSurfaceHostingView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceHostingView.mm; sourceTree = ""; }; - 380D0F6F7C64D8D8A5D5869EAD5F4FC4 /* UMUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMUtilities.h; path = UMCore/UMUtilities.h; sourceTree = ""; }; - 381E31337C1972A78AA8EFFB758FCE98 /* UMFileSystemInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFileSystemInterface.xcconfig; sourceTree = ""; }; - 385A5776F92ADDB6D0A79DE6EB5866CA /* UMModuleRegistry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistry.m; sourceTree = ""; }; - 3881B9E1E45C7679C6E3E95A5B35122A /* RCTWebSocketModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTWebSocketModule.m; path = Libraries/WebSocket/RCTWebSocketModule.m; sourceTree = ""; }; - 38D0F374AB8C10D9372084EF97E14BE7 /* jsilib.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = jsilib.h; sourceTree = ""; }; - 38D1961F08DD8DBC2424E7FAEEDCA7AE /* UMTaskServiceInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskServiceInterface.h; path = UMTaskManagerInterface/UMTaskServiceInterface.h; sourceTree = ""; }; - 3A3985C6709DC2616852677703D339C1 /* RNScreens.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNScreens.xcconfig; sourceTree = ""; }; - 3A5A687DE9C356BD7A4097EAF8E7CA9B /* React-jsinspector-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-jsinspector-prefix.pch"; sourceTree = ""; }; - 3AA41AF15620C9CFEF9A35D4DCB8540D /* REANode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REANode.h; sourceTree = ""; }; - 3AB5A6988F6F5CDB3360A8C89EE1165A /* RCTBaseTextInputShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputShadowView.m; sourceTree = ""; }; - 3AC1268FA9C89C5240FE96BA4A6A6F5B /* react-native-video-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-video-prefix.pch"; sourceTree = ""; }; - 3ACAB150D57CBFEAC1F9051CBAA7AA52 /* RCTObjcExecutor.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTObjcExecutor.mm; sourceTree = ""; }; - 3B1D9B1499191404B49538EC60EF9267 /* RNCMaskedView.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNCMaskedView.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 3B56B2BDEC84EDF155510BD1CD647977 /* UMPermissionsInterface-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UMPermissionsInterface-prefix.pch"; sourceTree = ""; }; + 37DEDEBE11BF4D519B1DA919FF17E992 /* EXAppLoaderProvider.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXAppLoaderProvider.xcconfig; sourceTree = ""; }; + 37DF00E23E1BB6F18AC5F64EB7BF5340 /* RCTCameraManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTCameraManager.h; path = ios/RCT/RCTCameraManager.h; sourceTree = ""; }; + 38046096E9F2F9FB4D95181CA0B2C463 /* EXDownloadDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXDownloadDelegate.h; path = EXFileSystem/EXDownloadDelegate.h; sourceTree = ""; }; + 380ECDFF72AAF2807953070302C09F87 /* Uploader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = Uploader.m; sourceTree = ""; }; + 3819E68577D981B6899EA9BF4CD7E2C2 /* RNGestureHandler-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNGestureHandler-prefix.pch"; sourceTree = ""; }; + 38330834A671B9B4C3436E5DC991A50C /* REAAlwaysNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAAlwaysNode.m; sourceTree = ""; }; + 38FB221FD4BCC65DC85BE9B252FA9F87 /* RCTReloadCommand.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTReloadCommand.m; sourceTree = ""; }; + 390E7DD87AE82F1F5332D0C3189A27C5 /* RCTFrameUpdate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFrameUpdate.m; sourceTree = ""; }; + 39330F60D03B6CC17BC18D2973BC5F4A /* EXPermissions.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXPermissions.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 394D092C22F16A88223BD0C4AD52F8E2 /* RCTCxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxModule.h; sourceTree = ""; }; + 3980EB2052F198FEBC3DA51784E07E4E /* UMUserNotificationCenterProxyInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMUserNotificationCenterProxyInterface.h; path = UMPermissionsInterface/UMUserNotificationCenterProxyInterface.h; sourceTree = ""; }; + 3A486D19624F6F6D828397E30B7191E0 /* RCTViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTViewManager.h; sourceTree = ""; }; + 3A4D81D2430BDB022B75817AE31A9F39 /* RCTSpringAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSpringAnimation.h; sourceTree = ""; }; + 3A5645A6165F061A35A9C4260C436883 /* react-native-safe-area-context-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-safe-area-context-dummy.m"; sourceTree = ""; }; + 3A957E101D6154542479437D2375A491 /* UMModuleRegistry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistry.m; sourceTree = ""; }; + 3AC3509DE20D897CCA963863CD9EF25D /* UMUtilities.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMUtilities.m; path = UMCore/UMUtilities.m; sourceTree = ""; }; + 3AD5513AD0BAB2DAE104CC750CA20421 /* RAMBundleRegistry.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = RAMBundleRegistry.cpp; sourceTree = ""; }; + 3AFF82016765511ECC8267629165A92F /* UMViewManagerAdapterClassesRegistry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMViewManagerAdapterClassesRegistry.m; sourceTree = ""; }; + 3B16EDF670400F5B8FCF0364BB88E253 /* RCTSwitchManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSwitchManager.m; sourceTree = ""; }; + 3B592D3E37D3D8D3A1A0DA724D642A93 /* RCTModuleData.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTModuleData.mm; sourceTree = ""; }; 3B640835BAA914DD267B5E780D8CFEC7 /* libUMReactNativeAdapter.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libUMReactNativeAdapter.a; path = libUMReactNativeAdapter.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 3BFEDEC95A48DE06F0F9A4BE8CE1ABD6 /* RCTSurfaceHostingView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceHostingView.h; sourceTree = ""; }; - 3C0196A6952595558D07C7E5C0367AB9 /* RCTSwitchManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSwitchManager.m; sourceTree = ""; }; - 3C75FA2414A7E3FEFC5095A5A9ADC8FF /* RCTLocalAssetImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTLocalAssetImageLoader.h; path = Libraries/Image/RCTLocalAssetImageLoader.h; sourceTree = ""; }; - 3C9B49C9439C57ECB512B8A679C2F83A /* RCTFont.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTFont.mm; sourceTree = ""; }; + 3B95312A46203FF91B8A5AC270845DDC /* EXPermissions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXPermissions.h; path = EXPermissions/EXPermissions.h; sourceTree = ""; }; + 3BCFDAE2AAA5F22BB3BFE5E40E38FD16 /* RNGestureHandlerEvents.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerEvents.h; path = ios/RNGestureHandlerEvents.h; sourceTree = ""; }; + 3BEB0C4A31A8D27A5097162C6CCF0F3A /* React-Core-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-Core-prefix.pch"; sourceTree = ""; }; + 3C8F8716376386C42E85842A7ADF32C0 /* RCTModalHostViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostViewManager.h; sourceTree = ""; }; 3CA7A9404CCDD6BA22C97F8348CE3209 /* libglog.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libglog.a; path = libglog.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 3D0EB323433925C846E6001788083ADD /* RNSScreenStack.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreenStack.h; path = ios/RNSScreenStack.h; sourceTree = ""; }; + 3D25016F1EE9D3358822EBC1F87C79FE /* RCTRawTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRawTextViewManager.m; sourceTree = ""; }; + 3D2F82D9FC6F110282C03B470CF4DC52 /* RCTSinglelineTextInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSinglelineTextInputView.h; sourceTree = ""; }; + 3D2FFD58A4EEB33A832B59EC208A9089 /* UMModuleRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistry.h; sourceTree = ""; }; + 3D36B5F97330B21A81145CFE01C0B1C0 /* React-jsi.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsi.xcconfig"; sourceTree = ""; }; + 3D50841F93BB099B6FE2866E7C00C25D /* RCTBaseTextInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextInputView.h; sourceTree = ""; }; 3D50A987A5C7EEDE40A6784D6877669B /* fixed-dtoa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "fixed-dtoa.h"; path = "double-conversion/fixed-dtoa.h"; sourceTree = ""; }; 3D7E85AE6DA022DF1693B883059A7508 /* fixed-dtoa.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "fixed-dtoa.cc"; path = "double-conversion/fixed-dtoa.cc"; sourceTree = ""; }; - 3D81BA879CB3037A2C2CCF7612780A91 /* RCTScrollViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollViewManager.h; sourceTree = ""; }; - 3D9D3B498DCA304D4791E93B63F80FEB /* RCTBorderDrawing.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBorderDrawing.m; sourceTree = ""; }; - 3DA642626E58D97735B71A6E1C20CA46 /* RNImageUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNImageUtils.m; path = ios/RN/RNImageUtils.m; sourceTree = ""; }; - 3DC2A7DA8E458E6428584AB49A4659FE /* UIView+FindUIViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+FindUIViewController.h"; path = "ios/Video/UIView+FindUIViewController.h"; sourceTree = ""; }; + 3D86ABA8FF75F08BCE5EF41DEF3E0F3D /* RCTImageSource.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageSource.m; sourceTree = ""; }; + 3DBCE1FDF690695FEF1D60A2967C97A6 /* UMCore.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMCore.xcconfig; sourceTree = ""; }; 3DE2159BF129CBCF2141FC55147BA84E /* double-conversion.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "double-conversion.cc"; path = "double-conversion/double-conversion.cc"; sourceTree = ""; }; - 3DE842BA46A2C0D1A69233D1EDC1901C /* RCTTypeSafety-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTTypeSafety-prefix.pch"; sourceTree = ""; }; - 3E2EE004D9E74ADA315184C97A526ED5 /* RNScreens.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNScreens.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 3E3DA73A446B7AABE2E3EAEF7AF5B742 /* RNFFmpegModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFFmpegModule.h; path = ios/RNFFmpegModule.h; sourceTree = ""; }; - 3E462645B293C991F3AFC41480962B3B /* RCTImageEditingManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageEditingManager.m; sourceTree = ""; }; - 3E690A2B2B992AC33537A3454B34180B /* RAMBundleRegistry.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = RAMBundleRegistry.cpp; sourceTree = ""; }; - 3E98846AD71FAED5E3808EC9B6CD89C8 /* UMReactNativeAdapter.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMReactNativeAdapter.xcconfig; sourceTree = ""; }; - 3EF34854820DDCA66A3ED5BA03F32146 /* JSModulesUnbundle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSModulesUnbundle.h; sourceTree = ""; }; - 3F7A6612E5BA5C5B2A36EB87BAA4C7A2 /* JSDeltaBundleClient.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSDeltaBundleClient.cpp; sourceTree = ""; }; - 3F7D29F3ED9BCBD4D47F7609F8C4F989 /* RCTViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTViewManager.m; sourceTree = ""; }; - 3F8C3E7062668D5612A3CBCD373775C9 /* REAAllTransitions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAAllTransitions.h; sourceTree = ""; }; - 3F9B0F90AB616B192111B0067D7446AB /* RCTTiming.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTiming.m; sourceTree = ""; }; - 3FEBB170ECE6FBE930F0C00F5F5B9888 /* NSMutableDictionary+ImageMetadata.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSMutableDictionary+ImageMetadata.m"; path = "ios/RCT/NSMutableDictionary+ImageMetadata.m"; sourceTree = ""; }; - 3FFA1B269613070EB61EAC8C212B2052 /* RCTBaseTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputView.m; sourceTree = ""; }; + 3E2497CFF5B44EF3CED40A491A35717A /* RCTBackedTextInputViewProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputViewProtocol.h; sourceTree = ""; }; + 3E2579914050E9B98FB220D05867FC4F /* Utils.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Utils.cpp; path = yoga/Utils.cpp; sourceTree = ""; }; + 3E46702D5F8738D878AF64F2FBC6BE75 /* UMErrorCodes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMErrorCodes.m; path = UMCore/UMErrorCodes.m; sourceTree = ""; }; + 3E52AC1E943D2853992E50BC2AAEF42F /* RCTAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimatedNode.h; sourceTree = ""; }; + 3EAB8A9995B5C981EEA031B5A2AC5A16 /* RCTBlobCollector.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTBlobCollector.mm; sourceTree = ""; }; + 3F3E14DF533048AD6EDF6B99D5F2DF42 /* RCTSinglelineTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSinglelineTextInputViewManager.m; sourceTree = ""; }; + 3FCA3F86F4BB2A57CCE3934C74790A5C /* RCTDivisionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDivisionAnimatedNode.h; sourceTree = ""; }; + 4018DA290C8536575EBAACC902294EA6 /* UMFontInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMFontInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 401DE84F0D1EC27860CFF7B066A473FD /* libavdevice.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = libavdevice.framework; sourceTree = ""; }; - 40223E763EC99E2B4C9CD893F62EB313 /* experiments.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = experiments.cpp; sourceTree = ""; }; - 4051B81D904406A95D40658642E09B40 /* RCTCamera.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTCamera.h; path = ios/RCT/RCTCamera.h; sourceTree = ""; }; - 40D6370EE7D2ECEAFCC2742233571730 /* REAJSCallNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAJSCallNode.m; sourceTree = ""; }; - 40F095788E9E830E964CCDB47A3DC786 /* UMEventEmitterService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMEventEmitterService.h; sourceTree = ""; }; + 402CCD0B64F13BA80F93843DD81C3D76 /* UMBridgeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBridgeModule.h; path = UMReactNativeAdapter/UMBridgeModule.h; sourceTree = ""; }; 4101D8465AE06A96D96674BCA2B20DD8 /* DoubleConversion-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DoubleConversion-prefix.pch"; sourceTree = ""; }; - 414634FD654535CA429C1332F3035549 /* MethodCall.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = MethodCall.cpp; sourceTree = ""; }; - 41467A36F1D21CBD95AF9E19FE6C4A36 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 42484617FE820C7EE347D6248A57BCF7 /* React-RCTAnimation.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-RCTAnimation.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 4275FEE937ACBE071A77D106D5826272 /* RCTProfileTrampoline-x86_64.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-x86_64.S"; sourceTree = ""; }; + 4112E9F338E7AAE116969DC4C003C800 /* react-native-camera.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-camera.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 411A0EF66E164798F2E6448243EEE9F0 /* RCTStatusBarManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTStatusBarManager.h; sourceTree = ""; }; + 418CFEAD9181107E08B9D773FEB1D04E /* RCTInputAccessoryViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryViewManager.h; sourceTree = ""; }; + 420262690A180B41C6359BD56BD9A9E3 /* RNCSafeAreaViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaViewManager.m; path = ios/SafeAreaView/RNCSafeAreaViewManager.m; sourceTree = ""; }; + 4221F5F8EA28B8D6B12DE2195EE2FE7F /* RCTWeakProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTWeakProxy.h; sourceTree = ""; }; + 4258A99E7C5F054C8980D97865DEF636 /* RNCCameraRollManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCCameraRollManager.m; path = ios/RNCCameraRollManager.m; sourceTree = ""; }; + 4280107D1C7859D3C158AD3CE4AC1437 /* RCTWebSocketModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTWebSocketModule.h; path = Libraries/WebSocket/RCTWebSocketModule.h; sourceTree = ""; }; + 429325098BC429F055DC2D732D8FBF24 /* UMFilePermissionModuleInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFilePermissionModuleInterface.h; path = UMFileSystemInterface/UMFilePermissionModuleInterface.h; sourceTree = ""; }; + 42E29207C5C3CBDF3BE6FE02659838B1 /* UMFaceDetectorInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMFaceDetectorInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 4314F3A8572CA00A9242DE63C27C368D /* Pods-Gladeo_App.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Gladeo_App.release.xcconfig"; sourceTree = ""; }; - 43A8576A00BEE143E79020C4A93B8946 /* RNSScreen.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreen.h; path = ios/RNSScreen.h; sourceTree = ""; }; - 43BED6D75D35D0F3326693876E964266 /* UMFontScalerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontScalerInterface.h; path = UMFontInterface/UMFontScalerInterface.h; sourceTree = ""; }; - 4470CC3CA74BDE1A78EE1DB9119F7DE7 /* Instance.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Instance.h; sourceTree = ""; }; - 44A4CA8B1AD544203167897360A9421C /* RCTAutoInsetsProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAutoInsetsProtocol.h; sourceTree = ""; }; - 44FC3DDA1CEB33B4066D816B1190FB01 /* UMViewManagerAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMViewManagerAdapter.m; sourceTree = ""; }; - 45383396281F8384D3116150DE16C7FE /* RCTObjcExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTObjcExecutor.h; sourceTree = ""; }; - 458A8E0FCCDF9C6BCE4929B8BAAC49E4 /* RCTNetworkTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNetworkTask.h; path = Libraries/Network/RCTNetworkTask.h; sourceTree = ""; }; - 45A3A1959E89CB7A924A5F5DBEE5A886 /* RCTHTTPRequestHandler.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTHTTPRequestHandler.mm; sourceTree = ""; }; - 45E7525E71377662BFCA7B4293B90388 /* RNCMaskedViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCMaskedViewManager.m; path = ios/RNCMaskedViewManager.m; sourceTree = ""; }; - 462041C5B81A962600E25E28DC10C5A9 /* RNScreens-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNScreens-dummy.m"; sourceTree = ""; }; - 46980176F3D5DF6E11953EA08A406928 /* RCTSinglelineTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSinglelineTextInputViewManager.m; sourceTree = ""; }; + 43800A5D40964170F26E2AA3F2BF5AF4 /* React-cxxreact.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-cxxreact.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 441DAB638974F0C2E2355E468437FC3B /* TurboModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TurboModule.h; path = turbomodule/core/TurboModule.h; sourceTree = ""; }; + 444D13031DEF10D1E52CBC5F648C17FD /* RNGestureHandler-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNGestureHandler-dummy.m"; sourceTree = ""; }; + 44AA16E5A27EFE336D4C2814D179C268 /* DispatchMessageQueueThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = DispatchMessageQueueThread.h; sourceTree = ""; }; + 454D75458945A70E8E6448B729A6F59C /* React-Core-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-Core-dummy.m"; sourceTree = ""; }; + 459FFEA25362F62C4228C91B2BB5F813 /* RCTRootView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootView.m; sourceTree = ""; }; + 4625AD264FC19F0EEFFE0AC5585CC11A /* RCTPackagerClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPackagerClient.h; sourceTree = ""; }; + 464F110C02C82D8DDF32400D33FF7957 /* RCTLayoutAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayoutAnimation.m; sourceTree = ""; }; + 465B092FA76CF6048E7527E63D8BEE89 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 46627E09F9AA590A8180C0CA0F42D20F /* REATransformNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransformNode.m; sourceTree = ""; }; 46B35A756CCB640358337753B0DE7BD1 /* gnutls.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = gnutls.framework; sourceTree = ""; }; - 46D6B19BDAB49C1CC8FB4ADA93DA4634 /* log.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = log.cpp; path = yoga/log.cpp; sourceTree = ""; }; - 46DC234F8A08E34CE0A551A9349C2D43 /* RCTMultipartStreamReader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultipartStreamReader.m; sourceTree = ""; }; - 46FD4CE86562D4E135199CF95ADF2E26 /* RCTNetworkTask.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTNetworkTask.m; sourceTree = ""; }; - 4737F454B2F45B034C96C2A4B62F4634 /* UMReactNativeEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactNativeEventEmitter.h; sourceTree = ""; }; - 47439F85956474E9C5C2DD507879F7B7 /* CxxNativeModule.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = CxxNativeModule.cpp; sourceTree = ""; }; - 477415626F6F69FB2A3460D473EAC2DF /* UMCore-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UMCore-dummy.m"; sourceTree = ""; }; - 477F7AF76908C4DF595ECC0B23DA7FBC /* RCTSurfaceSizeMeasureMode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceSizeMeasureMode.h; sourceTree = ""; }; - 47AF2B7385AF622DE91A0DA99DC6CF59 /* React-CoreModules.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-CoreModules.xcconfig"; sourceTree = ""; }; - 47EF5D06576F6A10F1CDB49677C896BF /* RNPinchHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNPinchHandler.h; sourceTree = ""; }; - 480D54252AF0D9D67154FFB9DB9FFBD0 /* react-native-camera.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-camera.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 48C13046297A23E9A646404382A83DD9 /* RCTImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageLoader.h; path = React/CoreModules/RCTImageLoader.h; sourceTree = ""; }; - 48C2ECDD9194500FC2CC29FCAACBA71D /* UMFaceDetectorManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFaceDetectorManager.h; path = UMFaceDetectorInterface/UMFaceDetectorManager.h; sourceTree = ""; }; - 48D4A7CFA88B854012F9DF1FE403654F /* React-RCTLinking-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTLinking-prefix.pch"; sourceTree = ""; }; - 494F2DD41DDE82A80F9D18B6D0E95496 /* REAValueNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAValueNode.m; sourceTree = ""; }; - 496F8B93E1DC46D1ED9189A3DB25F1DF /* RCTCxxConvert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTCxxConvert.m; sourceTree = ""; }; - 499D2E34FFD1435C0FDB3F78A75C5AC8 /* EXConstants.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXConstants.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 4A2FECB4CED542D75695BF5EACB83980 /* RCTImageViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageViewManager.h; path = Libraries/Image/RCTImageViewManager.h; sourceTree = ""; }; - 4AA467ADA93F5BA0B5CC5442E044473E /* RCTScrollContentViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentViewManager.h; sourceTree = ""; }; - 4AC71E56E0CC4206FD47EEFCD4149D66 /* LICENSE.GPLv3 */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE.GPLv3; sourceTree = ""; }; - 4ACFB7EABBF11E1F344C33D1341576F5 /* RNForceTouchHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNForceTouchHandler.h; sourceTree = ""; }; + 46C5669D1A0A671BFE1D81CC99BBE0B5 /* RCTTypeSafety-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTTypeSafety-prefix.pch"; sourceTree = ""; }; + 472483273F4BB06B1284E224DAFE2DD2 /* RNCMaskedView-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNCMaskedView-dummy.m"; sourceTree = ""; }; + 478026929EF88038BCDAF0831FA7D0F0 /* React-RCTImage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTImage-prefix.pch"; sourceTree = ""; }; + 478789F4F50E4C1F932B0B3132B4D8C5 /* RCTFollyConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFollyConvert.h; sourceTree = ""; }; + 486B778D268F95FC930E1403639B80D8 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 4883BB8710E3633C6CF302F39B828E7E /* RCTStyleAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTStyleAnimatedNode.h; sourceTree = ""; }; + 488BEDA1A8E816A182E0230739CF1F27 /* UMReactNativeAdapter-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UMReactNativeAdapter-dummy.m"; sourceTree = ""; }; + 49B4C6F6A074A1E135E32D5B740CC805 /* RCTSurfaceHostingProxyRootView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceHostingProxyRootView.mm; sourceTree = ""; }; + 49CAAB87787B048436F8627A77ECA3C7 /* RCTScrollViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollViewManager.h; sourceTree = ""; }; 4ADFBA8EF528FEE024A99B2D451B8AAC /* libavcodec.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = libavcodec.framework; sourceTree = ""; }; - 4AE562E4A98ACF339D049547E2D0CBCD /* RCTInputAccessoryViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryViewManager.m; sourceTree = ""; }; - 4B15C7523007E87CA27F761E7D97EB5D /* RCTNativeModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTNativeModule.mm; sourceTree = ""; }; - 4B48C579089EA1FEAFD47034E328993D /* RCTLocalAssetImageLoader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLocalAssetImageLoader.m; sourceTree = ""; }; - 4B5979E980C79FAEE2526F9EC8B06DE1 /* RCTVirtualTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVirtualTextViewManager.h; sourceTree = ""; }; - 4B71048A5C7E32DE5C2A7CAB1A55EE85 /* UMModuleRegistryProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryProvider.h; sourceTree = ""; }; - 4B7470A4CD0AB92A16DBAEB3B47168DA /* RCTModalHostViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostViewController.m; sourceTree = ""; }; - 4B877B67BF39C396492756DE959885EF /* RCTTrackingAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTrackingAnimatedNode.h; sourceTree = ""; }; - 4BED723E49883507790D2844973A59BB /* REATransitionManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransitionManager.h; sourceTree = ""; }; - 4CDD436380B67DE886A42E36FC09C0CB /* RCTImageURLLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageURLLoader.h; path = Libraries/Image/RCTImageURLLoader.h; sourceTree = ""; }; - 4CE289C13D364C829AE3DF58716F1DF5 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 4CF78638BA52DDDD4EA2FD45C088D98E /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 4D22EA356BCBAC7895844273149AC7D2 /* React-RCTImage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTImage-dummy.m"; sourceTree = ""; }; - 4D71FF1EB775B29C33F22D37DFF2B17D /* RNCAsyncStorage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNCAsyncStorage-dummy.m"; sourceTree = ""; }; - 4D7EA6B6BBD870BEE8615A8EF1D16C7A /* RCTAnimationUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAnimationUtils.m; sourceTree = ""; }; - 4DDC6BCDC740BA0E8668EC5C11BFC529 /* RCTLog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLog.h; sourceTree = ""; }; - 4E3395A966C792B848A2489906255EA4 /* RCTUITextView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUITextView.m; sourceTree = ""; }; - 4E8E517988831C1E77B714152D31D664 /* RCTStyleAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTStyleAnimatedNode.h; sourceTree = ""; }; + 4AE9F2690ECE94E80D8AB94F054A75A1 /* REAOperatorNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAOperatorNode.h; sourceTree = ""; }; + 4AEB93B318A3729FF2A6CD3AB1AA549C /* RCTVirtualTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVirtualTextShadowView.h; sourceTree = ""; }; + 4B855DB1E40B17FD5B2EE29C614996CA /* RCTUIManagerUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManagerUtils.h; sourceTree = ""; }; + 4B8BFF4C841C9775D25AC81C42A41459 /* RCTSafeAreaShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaShadowView.h; sourceTree = ""; }; + 4BB7AD8E999355C4558585C6BBBC6CDA /* UMDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMDefines.h; path = UMCore/UMDefines.h; sourceTree = ""; }; + 4C0D2B5CD737E3F327B775EED3BFA02F /* jsi-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "jsi-inl.h"; sourceTree = ""; }; + 4C1E2D7D0B146FD6602B37E3DCE7253E /* REAPropsNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAPropsNode.m; sourceTree = ""; }; + 4C626D52A19D42C28012E524FD1CFE3E /* EXUserNotificationPermissionRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXUserNotificationPermissionRequester.m; sourceTree = ""; }; + 4C8E172BCD8818FAF5F600F9A7CFA89E /* RCTConvert+REATransition.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+REATransition.m"; sourceTree = ""; }; + 4CC93F8ABA032297191E3E99F813604D /* RCTSegmentedControl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSegmentedControl.h; sourceTree = ""; }; + 4CF5E8ACEC420FC453C562E6F5E421A3 /* RNFileSystem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFileSystem.h; path = ios/RN/RNFileSystem.h; sourceTree = ""; }; + 4DD38D4F2FB487D4F3CEAFDF75A693F8 /* RCTSinglelineTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSinglelineTextInputView.m; sourceTree = ""; }; + 4DD759DC7E35EDE732BA80CE3FDEE840 /* EvilIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = EvilIcons.ttf; path = Fonts/EvilIcons.ttf; sourceTree = ""; }; + 4E0C796F08D3E3D7B72FCEE5115D99E8 /* RCTSurfaceHostingView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceHostingView.h; sourceTree = ""; }; + 4E28129FE0BD30F7B7ADE0132E5DEED8 /* JsArgumentHelpers-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "JsArgumentHelpers-inl.h"; sourceTree = ""; }; + 4E2F58F2548E00E235D8EAA2C965D19D /* RCTRefreshControl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRefreshControl.m; sourceTree = ""; }; + 4E6A2B087E72CD4D681F721D9D2780E7 /* Entypo.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Entypo.ttf; path = Fonts/Entypo.ttf; sourceTree = ""; }; + 4E7D2DA0894912FFEB5A50E52137E1B1 /* RCTDevSettings.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDevSettings.h; sourceTree = ""; }; 4E9F0138A7ACA7D4621E6530606AF966 /* libhogweed.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = libhogweed.framework; sourceTree = ""; }; - 4F35CF383459906ECCADF6DD834BEA8C /* RCTKeyCommands.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTKeyCommands.h; sourceTree = ""; }; - 4F3A78BF5A5F8D2CB558CC5142C40BF4 /* RNCAsyncStorage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNCAsyncStorage-prefix.pch"; sourceTree = ""; }; - 4F8997B536CBC346079AFABB11FB2860 /* DispatchMessageQueueThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = DispatchMessageQueueThread.h; sourceTree = ""; }; - 4FA78F58D3015EADFA8E270108949172 /* UMNativeModulesProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMNativeModulesProxy.h; sourceTree = ""; }; - 4FFDB14E4B37EA9BB4F18CFDB892D196 /* RCTInspector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInspector.h; sourceTree = ""; }; - 5024297038356BFD3678670A46371EC9 /* RCTWeakProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTWeakProxy.m; sourceTree = ""; }; - 507D222F2ECE21A357B5E0561B7E7298 /* RCTSurfaceStage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSurfaceStage.m; sourceTree = ""; }; + 4EDC4231F1503CDF71867940E7A04CDB /* RNLongPressHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNLongPressHandler.h; sourceTree = ""; }; + 4F4C0DC0E8EFFD57AE8A3FB10990E1B9 /* react-native-video.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-video.xcconfig"; sourceTree = ""; }; + 4FDB8F086B18724E43CE496DE9C5B9A7 /* RCTConvert+Transform.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+Transform.m"; sourceTree = ""; }; + 4FE5712E059C4EC4DD4F7A36E48B811E /* RCTCxxMethod.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxMethod.mm; sourceTree = ""; }; + 500C861B6F5A5F3CE412B862735FE960 /* RCTSurfaceDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceDelegate.h; sourceTree = ""; }; + 501A8191399EA8C0F62DAD7631FE5EA9 /* UMLogHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMLogHandler.h; sourceTree = ""; }; + 505E36D64915D7A88E64B7558047259A /* REACallFuncNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REACallFuncNode.h; sourceTree = ""; }; 50B5347C9A6E93B7D4CFC3673BA6FB7E /* libRNScreens.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNScreens.a; path = libRNScreens.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 50C7DDA89DF7BD466FE4F82DF093EE78 /* RAMBundleRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RAMBundleRegistry.h; sourceTree = ""; }; - 50DDD41CA92DC02F4DBF8C2CF2EA67E4 /* RNNativeViewHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNNativeViewHandler.m; sourceTree = ""; }; - 512A2C5F4AC9A891FFEBC459EC89CF9D /* REAJSCallNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAJSCallNode.h; sourceTree = ""; }; - 515386C56C91A5884F828C3FB29EA824 /* RCTMultiplicationAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultiplicationAnimatedNode.m; sourceTree = ""; }; - 51FCD41CD6C6DDEFEC4380AB70054F53 /* RCTCxxUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxUtils.h; sourceTree = ""; }; - 520DFEB7D216CE8AA4C99175BEEC5517 /* RCTBackedTextInputDelegateAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputDelegateAdapter.h; sourceTree = ""; }; - 52247AD75C34C0314A6536FA16067E88 /* RCTTextAttributes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTTextAttributes.h; path = Libraries/Text/RCTTextAttributes.h; sourceTree = ""; }; - 523DB8724BDEC8418505F0991B2639D1 /* RCTStatusBarManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTStatusBarManager.m; sourceTree = ""; }; - 526FE0456B33C48B70C147A4E9A46FE3 /* RCTRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootView.h; sourceTree = ""; }; + 50CC2760FCC830DCE595D6B8D98F67B8 /* RCTEventAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventAnimation.h; sourceTree = ""; }; + 50D75608382758F1A5DC78BAF88BBB83 /* Yoga.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Yoga.xcconfig; sourceTree = ""; }; + 5130ED97FEC66E0B88C082831CDC7784 /* RCTLog.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTLog.mm; sourceTree = ""; }; + 51453F4627BB01CF3C500B843BCA6C1D /* Yoga.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = Yoga.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 51532E2C18688722FEBF1A8FA513624D /* YGNodePrint.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGNodePrint.cpp; path = yoga/YGNodePrint.cpp; sourceTree = ""; }; + 5179961A01992A597B40C719AC6C9E92 /* JSIndexedRAMBundle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSIndexedRAMBundle.cpp; sourceTree = ""; }; + 51D9759694E2A5782A617E7C56431D68 /* RCTAsyncLocalStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAsyncLocalStorage.h; sourceTree = ""; }; + 51EB1DCE5F87EE152D199661C525C275 /* RNVectorIcons.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNVectorIcons.xcconfig; sourceTree = ""; }; + 5216AEF7B61BF0F6BB185B829DFB4ABF /* YGEnums.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGEnums.h; path = yoga/YGEnums.h; sourceTree = ""; }; + 52324F3618681E549D3AEEAE1ED35034 /* log.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = log.cpp; path = yoga/log.cpp; sourceTree = ""; }; + 526975F9E0C566E7C4F3EC9178C1F6A0 /* ModuleRegistry.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = ModuleRegistry.cpp; sourceTree = ""; }; + 526A3BD35B28AF2B50310FE70C4D7174 /* REAModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = REAModule.m; path = ios/REAModule.m; sourceTree = ""; }; + 52C181B53E456CA3124AE8189A703850 /* RCTLayoutAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayoutAnimation.h; sourceTree = ""; }; + 52E11FFEB95FB72B4452EE7C594201D1 /* RCTI18nManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTI18nManager.h; sourceTree = ""; }; 52FCF98CEFF94C742080B6965D537AD0 /* libreact-native-safe-area-context.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libreact-native-safe-area-context.a"; path = "libreact-native-safe-area-context.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 53144F697C32AF10D37DDF8CED64AD9B /* event.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = event.cpp; sourceTree = ""; }; - 531E22D6F197DAEAB5919F40FE6DA298 /* react-native-video.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-video.xcconfig"; sourceTree = ""; }; 53218FC1C2D178D5209D2861F151F4E4 /* libswresample.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = libswresample.framework; sourceTree = ""; }; - 53F615DCA0C3DC04F83A0C95CF121BAF /* EXConstants-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXConstants-prefix.pch"; sourceTree = ""; }; - 54323649DD650B092AE3DBE74AE711DE /* REABezierNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REABezierNode.h; sourceTree = ""; }; - 545E2337CD5A0E5897CD046ABD756385 /* RCTImageStoreManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageStoreManager.h; path = React/CoreModules/RCTImageStoreManager.h; sourceTree = ""; }; + 533944B29600A5030447BE0FEDEA08ED /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 535EE6CF347F2C90E6253A35A4F9B905 /* experiments.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = experiments.cpp; sourceTree = ""; }; + 5360168E60046EC246E4C488EE9646F3 /* React-RCTBlob-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTBlob-dummy.m"; sourceTree = ""; }; + 53AE4A70A9BF6A6619F381B22A251282 /* EXPermissions-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXPermissions-dummy.m"; sourceTree = ""; }; + 53B580C15542344DF4342F70AD468B58 /* BarcodeDetectorManagerMlkit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BarcodeDetectorManagerMlkit.h; path = ios/RN/BarcodeDetectorManagerMlkit.h; sourceTree = ""; }; + 542A3190289E3A6BEC639996A66A0504 /* RCTInspector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInspector.h; sourceTree = ""; }; + 545E658F0BC0D36A99F38ECE6E87BA4D /* RCTTypeSafety.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RCTTypeSafety.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 5470FCA3200C6C354A9D405B0CAED572 /* log_severity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = log_severity.h; path = src/glog/log_severity.h; sourceTree = ""; }; - 548DAD15D04F59EB0818CCE9D9CD0345 /* RCTTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextViewManager.m; sourceTree = ""; }; - 551CDFB185D5EE5BF0C438DF69884D1F /* FBReactNativeSpec-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FBReactNativeSpec-dummy.m"; sourceTree = ""; }; - 553A3D5A2C86EFD43C029951C5776AC1 /* EXPermissions.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXPermissions.xcconfig; sourceTree = ""; }; - 565FEDAD9608E9A4B487F341C916DA75 /* Octicons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Octicons.ttf; path = Fonts/Octicons.ttf; sourceTree = ""; }; - 569C5F16B5C15DB2CD701B491DC6EB3F /* UMUtilitiesInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMUtilitiesInterface.h; sourceTree = ""; }; - 56D230802F5E8DC720B20D5115D3014F /* RCTActionSheetManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTActionSheetManager.m; sourceTree = ""; }; - 572970113B665D053325DE721CD6F314 /* RCTVirtualTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVirtualTextShadowView.h; sourceTree = ""; }; + 5478D97F209106F8F633F2CA56CFF9B9 /* RCTAsyncLocalStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAsyncLocalStorage.m; sourceTree = ""; }; + 54D7E954E8B80E06E9DECE1E6C31DFE1 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 54DFA6ED893984E6572985CA55D53DE4 /* UMConstantsInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMConstantsInterface.xcconfig; sourceTree = ""; }; + 550B5EE61F73825430ECF964A49C05A6 /* CameraFocusSquare.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = CameraFocusSquare.m; path = ios/RCT/CameraFocusSquare.m; sourceTree = ""; }; + 55424E6DE1E5945B416911AB4DD371C3 /* RCTLayoutAnimationGroup.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayoutAnimationGroup.h; sourceTree = ""; }; + 555A5011C5B1585BBEC6F6D271C4310D /* RCTActivityIndicatorView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTActivityIndicatorView.h; sourceTree = ""; }; + 55A9AC527C19E941392C2127C474D8AE /* RCTImageLoader.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTImageLoader.mm; sourceTree = ""; }; + 55FEC7A3F07DFD16A300F6EF9712E135 /* RNScreens-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNScreens-prefix.pch"; sourceTree = ""; }; + 563B48D3510EC86E434A7C80C323F125 /* RCTBorderDrawing.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBorderDrawing.m; sourceTree = ""; }; + 56498514FE7223E399A253A39BC18094 /* RNScreens.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNScreens.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 566EC866F2FE6329E9AD0D239732284A /* UMExportedModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMExportedModule.m; path = UMCore/UMExportedModule.m; sourceTree = ""; }; + 56805774687B0A4344863FB290C36401 /* RCTVideo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTVideo.m; path = ios/Video/RCTVideo.m; sourceTree = ""; }; + 56B7FAFBA8A92F9810211AB40DB4C00A /* RCTDevLoadingView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDevLoadingView.m; sourceTree = ""; }; 5737DDB4BC95AD399B3206838AB97095 /* libRNCAsyncStorage.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNCAsyncStorage.a; path = libRNCAsyncStorage.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 575BD7545EDFE6534CEF81B12F1B9663 /* RCTInputAccessoryView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryView.h; sourceTree = ""; }; - 578761657F6A1B59D354A87A346F2AD7 /* RNGestureHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandler.m; path = ios/RNGestureHandler.m; sourceTree = ""; }; - 57B51377FC32462F9C02D181467F86B4 /* MessageQueueThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MessageQueueThread.h; sourceTree = ""; }; - 57D69A41C866B3BDC48175DE9DC65510 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 5814D8698695B074DEA9EA8D72F9770C /* RCTDataRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTDataRequestHandler.h; path = Libraries/Network/RCTDataRequestHandler.h; sourceTree = ""; }; - 585589C8AFD2912B0E1511FCA1C76228 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 588ACC47B36E98EE70D293ED9E5CE457 /* Yoga.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = Yoga.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 58A94ABA7CAFC3EEDF01A1B0E8469126 /* RNFaceDetectorModuleMLKit.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFaceDetectorModuleMLKit.m; path = ios/RN/RNFaceDetectorModuleMLKit.m; sourceTree = ""; }; + 57BF4C3322F0E2C42D8C11F0172E8333 /* RCTBackedTextInputDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputDelegate.h; sourceTree = ""; }; + 57CFA568DA0301C13D37BA5B80946A69 /* UMFontScalerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontScalerInterface.h; path = UMFontInterface/UMFontScalerInterface.h; sourceTree = ""; }; + 57D8B1B4D0564D2F1A48039AC798F15A /* EXAppLoaderProvider-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXAppLoaderProvider-dummy.m"; sourceTree = ""; }; + 5823B0FE1E2ABB65D21C72353406FCD2 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 584B2272272316C0D5E05461F638BF07 /* RCTI18nUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTI18nUtil.m; sourceTree = ""; }; + 585D44828C856694AD9E5284093EADF1 /* RCTImageEditingManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageEditingManager.m; sourceTree = ""; }; 58B15695D149C2D25F437E2852DF1718 /* vlog_is_on.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = vlog_is_on.cc; path = src/vlog_is_on.cc; sourceTree = ""; }; - 58B87AAC8C250697040FFCB4287EB42E /* RCTEventAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventAnimation.m; sourceTree = ""; }; - 597612FC14859CAEA0EC5C6A67FC6B61 /* RCTSegmentedControlManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSegmentedControlManager.m; sourceTree = ""; }; - 5A580ADCBA0DB4163EB61AED51784069 /* Yoga-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Yoga-dummy.m"; sourceTree = ""; }; - 5AB44CB8775EDA1EA37AF5174421DC48 /* UMConstantsInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMConstantsInterface.h; path = UMConstantsInterface/UMConstantsInterface.h; sourceTree = ""; }; - 5ADEB25EBC36B5FC7D863FD6B6F93BBB /* RCTVibration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTVibration.h; path = Libraries/Vibration/RCTVibration.h; sourceTree = ""; }; - 5AE8295C2F421A18A895646BAA2E6C6C /* Yoga-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Yoga-prefix.pch"; sourceTree = ""; }; - 5AEFA695FB3318CB3FD08089DE24C087 /* REAEventNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAEventNode.h; sourceTree = ""; }; - 5B4C22897017D0D00F4836C2CD2D8A32 /* UMExportedModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMExportedModule.m; path = UMCore/UMExportedModule.m; sourceTree = ""; }; + 58B4CB373052A80C5522EC76CE200961 /* React-RCTText-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTText-prefix.pch"; sourceTree = ""; }; + 58D4E61028B804ACCB3BFDFF335159E4 /* RCTPicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPicker.h; sourceTree = ""; }; + 5927A2340243D96BE152909FFC064456 /* REAClockNodes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAClockNodes.m; sourceTree = ""; }; + 5961778C7A7DAFC78E86ADF763B203EA /* YGMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGMacros.h; path = yoga/YGMacros.h; sourceTree = ""; }; + 5A2EF89CC871A7DDC0CE7D89961C99BB /* RCTSurfaceView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceView.mm; sourceTree = ""; }; + 5A6CB37443C9CE25E62D5139851C6C46 /* React-jsinspector.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsinspector.xcconfig"; sourceTree = ""; }; + 5AA5068473539AE78580B715B26FF0A5 /* YGValue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGValue.h; path = yoga/YGValue.h; sourceTree = ""; }; + 5B0D6213C0FE795D48F71DFB2402A121 /* RCTWrapperViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTWrapperViewController.h; sourceTree = ""; }; + 5B15B4F9EF165F011B0009F26F45A81F /* UMJavaScriptContextProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMJavaScriptContextProvider.h; sourceTree = ""; }; + 5B3000B2D747DF16C9791F6C5B25EDA9 /* RCTPropsAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPropsAnimatedNode.h; sourceTree = ""; }; + 5B4AF2DDBBC72FA8D267DEE3A552A403 /* React-jsinspector-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-jsinspector-prefix.pch"; sourceTree = ""; }; 5B6417ADA0E0C08D2A68F8D9977DBA60 /* Pods-Gladeo_App-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-Gladeo_App-dummy.m"; sourceTree = ""; }; - 5B64F40F35233B181D912FD312C16661 /* RCTEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventEmitter.h; sourceTree = ""; }; - 5C6C987030B68B8420445F33E6E6A8C9 /* React-jsi-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-jsi-dummy.m"; sourceTree = ""; }; + 5C5D87D8C818CC5091D87E35B2670D3E /* RNConvertPhAsset-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNConvertPhAsset-dummy.m"; sourceTree = ""; }; 5CB7BBD47382666097F5280F14EAE322 /* Folly.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Folly.xcconfig; sourceTree = ""; }; - 5D153C7FA55895617B84F47D99C7AD20 /* UIView+React.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIView+React.h"; sourceTree = ""; }; - 5D49430C7353ED679EEF310FE1E0D5A2 /* RCTKeyboardObserver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTKeyboardObserver.h; sourceTree = ""; }; - 5D4DE9D0A5A0984BBABB8CF342401060 /* RNCMaskedView-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNCMaskedView-prefix.pch"; sourceTree = ""; }; - 5D81590F072913BF2407FCF813F9C9CF /* RCTConvert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTConvert.m; sourceTree = ""; }; - 5DC71E22B3960EDD2DFA62044E8E890F /* REATransitionValues.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransitionValues.h; sourceTree = ""; }; - 5DF36115EDBFDD70B30DD2AC193FCD2B /* RNSScreenContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreenContainer.h; path = ios/RNSScreenContainer.h; sourceTree = ""; }; - 5E36C82ED48B6010FA9553AA8074F289 /* Entypo.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Entypo.ttf; path = Fonts/Entypo.ttf; sourceTree = ""; }; - 5E649318998C6A5430F3CDE02BA51186 /* CameraFocusSquare.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = CameraFocusSquare.m; path = ios/RCT/CameraFocusSquare.m; sourceTree = ""; }; - 5ED8FF045F3A6F0E03952F16445AE82F /* RNTapHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNTapHandler.m; sourceTree = ""; }; - 5F1656CD56384AAA4E9D52DEEEE1CE7C /* RNCAssetsLibraryRequestHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCAssetsLibraryRequestHandler.m; path = ios/RNCAssetsLibraryRequestHandler.m; sourceTree = ""; }; - 5F28148803167A3A19E3F75039461C0B /* EXDownloadDelegate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXDownloadDelegate.m; path = EXFileSystem/EXDownloadDelegate.m; sourceTree = ""; }; - 5F33ADFE567B686958709945AC9F113C /* RCTSinglelineTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSinglelineTextInputView.m; sourceTree = ""; }; - 5F8B997DCA661854CFE2048F71106FCF /* React-cxxreact.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-cxxreact.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 600211BA79C0EAEB5B49D9A99278FBAA /* REAConcatNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAConcatNode.m; sourceTree = ""; }; - 604F96CA21DA985827609DE6F4577FCD /* EXReactNativeUserNotificationCenterProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXReactNativeUserNotificationCenterProxy.h; path = EXPermissions/EXReactNativeUserNotificationCenterProxy.h; sourceTree = ""; }; - 6072EE8736C9627B5DF027A43D3041F0 /* REATransitionAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransitionAnimation.h; sourceTree = ""; }; - 60A3EFCD4755384601C55FD7C929A972 /* RCTURLRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTURLRequestHandler.h; sourceTree = ""; }; - 615265094B42616F7AC53D87A893547F /* REABlockNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REABlockNode.m; sourceTree = ""; }; - 6157E15334073FF8C0F354230352B5C3 /* REAModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = REAModule.m; path = ios/REAModule.m; sourceTree = ""; }; - 6160151481DC530820F8784CA307B735 /* React-RCTActionSheet.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTActionSheet.xcconfig"; sourceTree = ""; }; - 6174731E350F401AB5D3CF9CC30E2594 /* UMFontProcessorInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontProcessorInterface.h; path = UMFontInterface/UMFontProcessorInterface.h; sourceTree = ""; }; - 61CC0F2E974A9DA420899A9A20FCDFA9 /* UMUIManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMUIManager.h; sourceTree = ""; }; - 61E644FD605EF3FD766BF8D65811E27E /* Bitfield.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Bitfield.h; path = yoga/Bitfield.h; sourceTree = ""; }; - 622DD301913CCB53E9F25714202B9121 /* UMCameraInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMCameraInterface.xcconfig; sourceTree = ""; }; - 62443AFFDFF8E94DF437377320E53C64 /* REAFunctionNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAFunctionNode.h; sourceTree = ""; }; - 625E0EFD383A33D7F882BBC3B12A0305 /* RCTPropsAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPropsAnimatedNode.m; sourceTree = ""; }; - 626818D74C93E9D8D81784210AA87442 /* RCTActivityIndicatorViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTActivityIndicatorViewManager.h; sourceTree = ""; }; - 6356F31FAB4832CC95D0D7F145BA4405 /* RCTBridge.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBridge.m; sourceTree = ""; }; - 636C772A06CD64876AE6A932B82935DE /* RCTTypeSafety.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RCTTypeSafety.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 6394375F7C2379A55EF541C031EBAAFA /* BridgeJSCallInvoker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BridgeJSCallInvoker.h; path = jscallinvoker/ReactCommon/BridgeJSCallInvoker.h; sourceTree = ""; }; - 6408394EE21554C5DE7CF7CA5D3287A9 /* Orientation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Orientation.h; path = iOS/RCTOrientation/Orientation.h; sourceTree = ""; }; - 643A0E822C90AC526DCF4A33CA19597A /* REATransitionManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransitionManager.m; sourceTree = ""; }; - 64935D264B32BE984538330992522E9A /* RNScreens-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNScreens-prefix.pch"; sourceTree = ""; }; + 5CC80F92AD5835C29B56F4EBD638D76E /* RCTInspectorPackagerConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInspectorPackagerConnection.h; sourceTree = ""; }; + 5D48BAFB1C309A57A7D6FB6E19406628 /* UMReactNativeAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactNativeAdapter.m; sourceTree = ""; }; + 5D5E9268A5B127AB628B83A7790983F4 /* RCTActionSheetManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTActionSheetManager.h; path = Libraries/ActionSheetIOS/RCTActionSheetManager.h; sourceTree = ""; }; + 5DA11D18C06D26F2DC879797D4498031 /* UMFontScalersManagerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontScalersManagerInterface.h; path = UMFontInterface/UMFontScalersManagerInterface.h; sourceTree = ""; }; + 5DBFC4B974BBF0709DFEF1F2B6FA6FC2 /* RCTTypedModuleConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTypedModuleConstants.h; sourceTree = ""; }; + 5DCA7C03F4338D58F066CC8C6EB22A51 /* REAFunctionNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAFunctionNode.m; sourceTree = ""; }; + 5E37AD8BAF4166F4B7B1CAA49FB9502F /* RNPinchHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNPinchHandler.h; sourceTree = ""; }; + 5E53BC1F40B21DE55A3A42489753B629 /* RCTModuloAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModuloAnimatedNode.m; sourceTree = ""; }; + 5E591863137F4BEADD8AB40F82D9307C /* RCTRawTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRawTextShadowView.h; sourceTree = ""; }; + 5F37232C31097EE2669F71244B3EF2E3 /* RCTKeyCommands.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTKeyCommands.h; sourceTree = ""; }; + 5F676D5F059945D32423B7D38719CFB4 /* RCTRawTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRawTextViewManager.h; sourceTree = ""; }; + 5F87FDD7F728AC044E529080AD09FDB6 /* RCTDatePickerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDatePickerManager.h; sourceTree = ""; }; + 60117552B5A6B355E76610B5F720F876 /* react-native-cameraroll.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-cameraroll.xcconfig"; sourceTree = ""; }; + 607BAF9703EF8D93C21728BE7384BD7C /* RCTSafeAreaViewLocalData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaViewLocalData.m; sourceTree = ""; }; + 6083BC4F305C34E71A53504B73A15530 /* RCTBaseTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextShadowView.h; sourceTree = ""; }; + 60846BA9074878BD3A1CE611CFC2A904 /* REANodesManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = REANodesManager.h; path = ios/REANodesManager.h; sourceTree = ""; }; + 60ACFB73402A2771A30B75046DD37A9E /* JSExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSExecutor.h; sourceTree = ""; }; + 60BCC9C7037496570C777E366A5C54D7 /* React-RCTSettings-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTSettings-prefix.pch"; sourceTree = ""; }; + 60E7F0114D1A92A59B9E10EB959D7799 /* TextDetectorManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = TextDetectorManager.m; path = ios/RN/TextDetectorManager.m; sourceTree = ""; }; + 60F87D2EEE599CF74CE0D3AAED775537 /* RCTShadowView+Internal.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTShadowView+Internal.m"; sourceTree = ""; }; + 615C1B850263BB26E0AC6D83714BFED1 /* React-cxxreact.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-cxxreact.xcconfig"; sourceTree = ""; }; + 61D6DCAAF572F0C6BF78F22FA818AC75 /* RCTNetInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNetInfo.h; path = Libraries/Network/RCTNetInfo.h; sourceTree = ""; }; + 6232D3E3F26E7A15361DD75502217861 /* RCTDataRequestHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDataRequestHandler.m; sourceTree = ""; }; + 624361FE9BDCE3D2FB03E97B222E046B /* RNSScreenContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreenContainer.h; path = ios/RNSScreenContainer.h; sourceTree = ""; }; + 625AD851801A3BC2BA6D70D3A8146D25 /* RNFS-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNFS-dummy.m"; sourceTree = ""; }; + 62629948206B22A5E1106A4A1EFDC6ED /* RCTInspector.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTInspector.mm; sourceTree = ""; }; + 62F8E28C1BBFFA4B67CF7E437E7D165C /* RCTReconnectingWebSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTReconnectingWebSocket.h; path = Libraries/WebSocket/RCTReconnectingWebSocket.h; sourceTree = ""; }; + 63242B7128911462580F1F55AA05D56A /* RCTConvert+Text.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+Text.m"; sourceTree = ""; }; + 634B95F4772D0E382B9BFF1D1A19F918 /* React-jsi-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-jsi-prefix.pch"; sourceTree = ""; }; + 638A5A5682986B44675B34694FFEFCF1 /* SharedProxyCxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = SharedProxyCxxModule.h; sourceTree = ""; }; + 638B5B971E1338ED9DE3056F4B85A468 /* RNGestureHandlerRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerRegistry.h; path = ios/RNGestureHandlerRegistry.h; sourceTree = ""; }; + 63F7A324A12688347CDBE33EB604C86C /* RCTSensorOrientationChecker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTSensorOrientationChecker.h; path = ios/RCT/RCTSensorOrientationChecker.h; sourceTree = ""; }; + 6412F594304C04C25AEBB302111A4DF4 /* React-RCTBlob.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-RCTBlob.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 64519E38A6C92671B46DF5FD0AF5BD54 /* RCTLinkingManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTLinkingManager.h; path = Libraries/LinkingIOS/RCTLinkingManager.h; sourceTree = ""; }; + 647E440E1C472A931005B9A2923C8ADA /* RNPanHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNPanHandler.h; sourceTree = ""; }; + 647F111DBDFA643A4BAFF9BD075ABF04 /* RCTModuleMethod.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTModuleMethod.mm; sourceTree = ""; }; + 64914B619541B1B02B0467672D0F31CB /* React-RCTVibration.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-RCTVibration.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 64E951122A08DF28B1FD68353352D83C /* demangle.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = demangle.cc; path = src/demangle.cc; sourceTree = ""; }; - 64FB95F4FD5F0BD02D45E6CA5F42CCF7 /* REACondNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REACondNode.h; sourceTree = ""; }; - 6538B95547B82FC3BDF0DE50923E4D04 /* RCTConvertHelpers.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTConvertHelpers.mm; sourceTree = ""; }; - 653D5DD087ED5F179D82C7D1DE613FBC /* RCTInspectorPackagerConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInspectorPackagerConnection.h; sourceTree = ""; }; + 6578D5B4EA7164BD3131E013B04300D5 /* RCTCxxBridgeDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxBridgeDelegate.h; sourceTree = ""; }; + 6589BB751548BF57A7C63F3414F07913 /* RCTAnimationUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAnimationUtils.m; sourceTree = ""; }; 65D0A19C165FA1126B1360680FE6DB12 /* libYoga.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libYoga.a; path = libYoga.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 65D4E0F8409463BD8042B69A5014C94A /* UMConstantsInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMConstantsInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 65E0EBF94546A595A9C9346940CC5810 /* RCTImageViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageViewManager.h; path = Libraries/Image/RCTImageViewManager.h; sourceTree = ""; }; 65EA8F5F8CBD89A51B25A3A13FEC0F6D /* libavformat.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = libavformat.framework; sourceTree = ""; }; - 663724B2BDC2A9385FB4B35E76D4DAB3 /* RCTModalHostViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostViewManager.m; sourceTree = ""; }; - 66528678682B48D16410BC85DFEE5DA0 /* UMFileSystemInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMFileSystemInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 665D261D84D873FCAA80AB8FD8FCD225 /* RCTPointerEvents.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPointerEvents.h; sourceTree = ""; }; - 66AF66B801DE97B857B893DF1396BB51 /* SharedProxyCxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = SharedProxyCxxModule.h; sourceTree = ""; }; - 66BBE58B4B6C3B6BF78790AC4FFCE0E4 /* UMFaceDetectorInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMFaceDetectorInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 670DD1EDD4BB93F4E9846454B3CB5C99 /* REATransitionAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransitionAnimation.m; sourceTree = ""; }; - 67126E77D331A0A8651DE04A530EC27C /* EXAppLoaderProvider.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXAppLoaderProvider.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 671299675E69ABE360C734E2002791DB /* jsi.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = jsi.h; sourceTree = ""; }; - 6714AB4E2BAAE27B2CEE331B3FF86225 /* YGNodePrint.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGNodePrint.cpp; path = yoga/YGNodePrint.cpp; sourceTree = ""; }; + 662DF4B52126CFCA910AA60BE28A2324 /* RCTInputAccessoryView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryView.h; sourceTree = ""; }; + 6665CCCE6BACFFA2D038426708CBD502 /* EXFileSystem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFileSystem.m; path = EXFileSystem/EXFileSystem.m; sourceTree = ""; }; + 666E04838D81234DF8C3BCD493D64A4E /* RCTSettingsManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSettingsManager.m; sourceTree = ""; }; + 666FC157E5FFE289E0E367F117200C85 /* RCTCxxModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxModule.mm; sourceTree = ""; }; + 66A038DDFD79950D0B8DF6266FB00CBD /* EXDownloadDelegate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXDownloadDelegate.m; path = EXFileSystem/EXDownloadDelegate.m; sourceTree = ""; }; + 66D7175AF5EF95F35D9CFB4B360EEAFB /* EXReactNativeUserNotificationCenterProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXReactNativeUserNotificationCenterProxy.h; path = EXPermissions/EXReactNativeUserNotificationCenterProxy.h; sourceTree = ""; }; + 67515C489929A7704712C3AAF53AD8D3 /* RCTVideoPlayerViewControllerDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTVideoPlayerViewControllerDelegate.h; path = ios/Video/RCTVideoPlayerViewControllerDelegate.h; sourceTree = ""; }; 6771D231F4C8C5976470A369C474B32E /* libReact-CoreModules.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-CoreModules.a"; path = "libReact-CoreModules.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 677C15D981FA39D53B115615A18BA4E9 /* UMTaskLaunchReason.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskLaunchReason.h; path = UMTaskManagerInterface/UMTaskLaunchReason.h; sourceTree = ""; }; + 67D7DA22FF06DE7B2E9F08CEC955FF2A /* React-RCTNetwork.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTNetwork.xcconfig"; sourceTree = ""; }; + 6819262F3EDC6586E978A040CEEA6A82 /* RNCameraManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCameraManager.m; path = ios/RN/RNCameraManager.m; sourceTree = ""; }; + 6823B9E6EBA09774A6288027D70BF1C7 /* RCTCxxConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxConvert.h; sourceTree = ""; }; 6838636928192296AC6A3C7011825B83 /* logging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = logging.h; path = src/glog/logging.h; sourceTree = ""; }; - 688926F8B1DF7C41C66C28AB2F8AB947 /* RCTImageCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageCache.h; path = Libraries/Image/RCTImageCache.h; sourceTree = ""; }; - 695D055CF2DDE658FC547D68DC319AC5 /* RCTNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNetworking.h; path = Libraries/Network/RCTNetworking.h; sourceTree = ""; }; - 69831E84FEFD22A8B7180DD5EB23703C /* RCTRefreshControl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRefreshControl.m; sourceTree = ""; }; - 698D003C78B10261D92E6694CB9C5D0E /* REAFunctionNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAFunctionNode.m; sourceTree = ""; }; - 69AB34CC87762CB3E7E3EC23B62134DD /* RCTLayoutAnimationGroup.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayoutAnimationGroup.h; sourceTree = ""; }; - 69DA112128396E4CFD94895F7B3546BD /* React-Core-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-Core-dummy.m"; sourceTree = ""; }; - 69DD798EB76A2A754D6ADB37E4756378 /* RCTPicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPicker.h; sourceTree = ""; }; - 6A1DFB3FA7027F6A8EBEED6CA09D3FC2 /* RNCAsyncStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCAsyncStorage.m; path = ios/RNCAsyncStorage.m; sourceTree = ""; }; - 6AEFFAFA642065680A33528D7EEB96BB /* JSCExecutorFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSCExecutorFactory.h; sourceTree = ""; }; - 6B6A947B817F27C9D03341DCBBECCB56 /* RCTMessageThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMessageThread.h; sourceTree = ""; }; - 6B6F3D31671CE974E6BE5272D9D78A29 /* UMBridgeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBridgeModule.h; path = UMReactNativeAdapter/UMBridgeModule.h; sourceTree = ""; }; - 6BCB95541ED9706950920F660C22B966 /* RCTPicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPicker.m; sourceTree = ""; }; - 6BEF6E00C2E1B9B96D0EEC6F7F189BE4 /* RCTUIImageViewAnimated.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTUIImageViewAnimated.h; path = Libraries/Image/RCTUIImageViewAnimated.h; sourceTree = ""; }; - 6C689029C05CBE1A4A49FA79E2B1F876 /* RCTImageLoader.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTImageLoader.mm; sourceTree = ""; }; + 687055E0BF2B360B2EED58EAA8AB4B3D /* RCTUIUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIUtils.h; sourceTree = ""; }; + 68C6036F8774BCD185A6259B33518FBB /* RCTJavaScriptLoader.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTJavaScriptLoader.mm; sourceTree = ""; }; + 69117598BCC1CA3D01B947BA9B41B222 /* RCTMessageThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMessageThread.h; sourceTree = ""; }; + 698DDE4C7C66AF9BE2838F42FA5B206C /* RCTSurfaceStage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceStage.h; sourceTree = ""; }; + 6A05ED24B77DED6444B96D157B0803CE /* RNSScreenStackHeaderConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreenStackHeaderConfig.h; path = ios/RNSScreenStackHeaderConfig.h; sourceTree = ""; }; + 6A08AFFF7ABB2A73C740720DC8B48B45 /* RNFSManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFSManager.h; sourceTree = ""; }; + 6A315255C4E512F2B49708898B46E03D /* REAModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = REAModule.h; path = ios/REAModule.h; sourceTree = ""; }; + 6A5605010B9C7EA9DCB2792E562EC759 /* YGFloatOptional.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGFloatOptional.h; path = yoga/YGFloatOptional.h; sourceTree = ""; }; + 6A98A91B5B09E6B622CC04643E8748F5 /* RCTBaseTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextShadowView.m; sourceTree = ""; }; + 6AF2080122CB66D87D7373BAC5D2B09E /* RCTStyleAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTStyleAnimatedNode.m; sourceTree = ""; }; + 6B00BAF098C7E38B8F28DD1B24F505BC /* RCTDatePicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDatePicker.m; sourceTree = ""; }; + 6B25D318E42C9E07A26C1E599FB18F12 /* RCTVibration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTVibration.h; path = Libraries/Vibration/RCTVibration.h; sourceTree = ""; }; + 6BBD9FF394C439FD433EE6702DF4C495 /* RCTSurfaceHostingProxyRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceHostingProxyRootView.h; sourceTree = ""; }; + 6BC47DCDBD003D879DED230526A1DB95 /* RCTVideoManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTVideoManager.h; path = ios/Video/RCTVideoManager.h; sourceTree = ""; }; + 6BD9EA80CCC8FED1BFF759C488622EFD /* Yoga-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Yoga-prefix.pch"; sourceTree = ""; }; + 6C0B89D54205F34E5A0B56287CF3BC65 /* UMModuleRegistryConsumer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryConsumer.h; sourceTree = ""; }; + 6C53BE1DC700EC506740737E1A94D215 /* RNCSafeAreaViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaViewManager.h; path = ios/SafeAreaView/RNCSafeAreaViewManager.h; sourceTree = ""; }; + 6C569B606DC4A3DD8A2825006AA644F5 /* Yoga-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Yoga-internal.h"; path = "yoga/Yoga-internal.h"; sourceTree = ""; }; + 6C5DDF11F3BC85C322A6EFA1EF9C808D /* react-native-ffmpeg-logo-v2.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "react-native-ffmpeg-logo-v2.png"; path = "docs/assets/react-native-ffmpeg-logo-v2.png"; sourceTree = ""; }; + 6C88B9377961B7019B30852F612ADBD2 /* UMPermissionsInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMPermissionsInterface.h; path = UMPermissionsInterface/UMPermissionsInterface.h; sourceTree = ""; }; 6C9790F1A25C1E3828E179A8F0850851 /* libreact-native-camera.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libreact-native-camera.a"; path = "libreact-native-camera.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 6CBC7BDCE64333DFB51CA45B19AE1CD8 /* REAAllTransitions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAAllTransitions.m; sourceTree = ""; }; - 6CD5F3AC0CED9941890DA81047C001D8 /* RCTAnimatedImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAnimatedImage.h; path = Libraries/Image/RCTAnimatedImage.h; sourceTree = ""; }; - 6D764D0D04DF297287F3C3241196D4A4 /* READebugNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = READebugNode.h; sourceTree = ""; }; - 6DF1C684F8FA9B21B88FFE1CC802CC70 /* RCTAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAnimatedNode.m; sourceTree = ""; }; - 6EFF6AA31AD0C200DD7670C80A0F7100 /* FaceDetectorManagerMlkit.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FaceDetectorManagerMlkit.m; path = ios/RN/FaceDetectorManagerMlkit.m; sourceTree = ""; }; - 6F3D8027A3E8EC9B86419A6E1408FD85 /* RNNativeViewHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNNativeViewHandler.h; sourceTree = ""; }; - 6F753FBF9CF82F017FD7C7B4EBF186DD /* MethodCall.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MethodCall.h; sourceTree = ""; }; - 6F98967D5010D284C2B0472D6E6FFD05 /* RCTGIFImageDecoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTGIFImageDecoder.m; sourceTree = ""; }; - 6FD7C7827EF8BEA71601A534A9BAD84D /* JSIExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = JSIExecutor.cpp; path = jsireact/JSIExecutor.cpp; sourceTree = ""; }; + 6C9AA8DC980A2DDB69A5F3CCDD7FD594 /* RCTWrapperViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTWrapperViewController.m; sourceTree = ""; }; + 6CA5C419FED8770EE598125529B46422 /* EXFileSystemAssetLibraryHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFileSystemAssetLibraryHandler.m; path = EXFileSystem/EXFileSystemAssetLibraryHandler.m; sourceTree = ""; }; + 6CE90B049C84D0CB760377DF408F8333 /* REACallFuncNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REACallFuncNode.m; sourceTree = ""; }; + 6D023802C9B02332E126EF46F29283B0 /* react-native-ffmpeg.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-ffmpeg.xcconfig"; sourceTree = ""; }; + 6D38F1B7603B854BB50E815CBAC50E64 /* RCTRequired.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTRequired.h; path = RCTRequired/RCTRequired.h; sourceTree = ""; }; + 6D6D6F9FAF45664AC1C8627F0E383B00 /* UMFileSystemInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFileSystemInterface.xcconfig; sourceTree = ""; }; + 6D8C944CA73176CA901EDE3E863B88B5 /* RCTTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextViewManager.h; sourceTree = ""; }; + 6DC80DA32531B95A6747B693158D9A50 /* RCTAppState.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAppState.m; sourceTree = ""; }; + 6E03C3174AFCAD31170A89A2561224B0 /* RCTImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageLoader.h; path = React/CoreModules/RCTImageLoader.h; sourceTree = ""; }; + 6E2F842C9F526D6AACC58EC5705672CA /* React-jsi.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-jsi.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 6E6761026A3E382EA0A30C8E0CE69498 /* RCTJavaScriptExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJavaScriptExecutor.h; sourceTree = ""; }; + 6E7CAFB5537E436A40807C5622C3F38F /* RCTDatePickerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDatePickerManager.m; sourceTree = ""; }; + 6ED2BA8445DB8C5EDF1E6D988F5E3CD2 /* Feather.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Feather.ttf; path = Fonts/Feather.ttf; sourceTree = ""; }; + 6EE56DDBFB4CD859867D2709D361AF1B /* UMModuleRegistryAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryAdapter.h; sourceTree = ""; }; + 6F063066FAAEEA2DD621BA6E4A406EEC /* EXAppLoaderInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXAppLoaderInterface.h; sourceTree = ""; }; + 6F73506351EAC0C2FCEC307A5E5EB756 /* RCTMultiplicationAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultiplicationAnimatedNode.h; sourceTree = ""; }; 6FFB7B2992BB53405E6B771A5BA1E97D /* libDoubleConversion.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libDoubleConversion.a; path = libDoubleConversion.a; sourceTree = BUILT_PRODUCTS_DIR; }; 6FFC324CD762FE19295E1E5243AA9A76 /* glog-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "glog-dummy.m"; sourceTree = ""; }; - 702586A2E8E8E1353ED69833ACF444D6 /* REANodesManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = REANodesManager.h; path = ios/REANodesManager.h; sourceTree = ""; }; - 709737A3BBDB965C69B4E9D2FD0AC0BD /* RCTVideoPlayerViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTVideoPlayerViewController.h; path = ios/Video/RCTVideoPlayerViewController.h; sourceTree = ""; }; - 714F3269053996557377B63E0EEFCE8B /* react-native-cameraroll.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-cameraroll.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 717024D3028EB8CE8C865964753A9E2F /* RCTParserUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTParserUtils.m; sourceTree = ""; }; - 719636828CA82BB840379C429AF01647 /* RCTProfile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTProfile.h; sourceTree = ""; }; - 71C7209EB793156064668091A52FC12D /* UIView+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIView+Private.h"; sourceTree = ""; }; + 7032FDA57AE8A03EB4FF88CDDAE31147 /* RCTRootContentView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootContentView.h; sourceTree = ""; }; + 7054E11A07D57529BED09A3BC1CF1D83 /* UMImageLoaderInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMImageLoaderInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 7103211814C275BC99E0B1D9D69EEEBE /* RCTComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTComponent.h; sourceTree = ""; }; + 711884B48504235415B13F90D084CD66 /* event.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = event.cpp; sourceTree = ""; }; 71D30ADCACECF654DFDB8F9E55DB580D /* Pods-Gladeo_App-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Gladeo_App-acknowledgements.plist"; sourceTree = ""; }; 71E5E83FF94F52A0A4A21853829164C9 /* signalhandler.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = signalhandler.cc; path = src/signalhandler.cc; sourceTree = ""; }; + 71FD0FA7FE3F5ED0D470C0BDEF2646D9 /* RCTAccessibilityManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAccessibilityManager.h; sourceTree = ""; }; + 7223C56D07FF20B511BCBAD45428584C /* RCTScrollableProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollableProtocol.h; sourceTree = ""; }; 72357EA9BCB3FF24DBA10960E02EDED4 /* Folly-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Folly-prefix.pch"; sourceTree = ""; }; - 724C77C640A5DFE06CDF8E4CF74981A7 /* RCTScrollContentView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentView.m; sourceTree = ""; }; - 7255927FE6CD35228EF7C3622DAD4DBC /* React-RCTVibration.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTVibration.xcconfig"; sourceTree = ""; }; - 728DDE532B5750ACBEB4C07C1CD49F55 /* RCTFPSGraph.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFPSGraph.m; sourceTree = ""; }; - 72952713740A1031D51E210AC0A8EFD0 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 72661D85B1FA2DD393B3D288961DAAF7 /* RCTUIManagerObserverCoordinator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManagerObserverCoordinator.h; sourceTree = ""; }; + 728A642A96752CA241F12ACBECA2C39A /* RCTSafeAreaViewLocalData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaViewLocalData.h; sourceTree = ""; }; + 729DFDBCE8AABD0175FB791BF30D3296 /* react-native-ffmpeg.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-ffmpeg.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 729F76FFFDDAC527BA9FFD106513FE58 /* ModuleRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ModuleRegistry.h; sourceTree = ""; }; + 72A873AB3E20C3AEE69E9EE93737A684 /* EXConstantsService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXConstantsService.h; path = EXConstants/EXConstantsService.h; sourceTree = ""; }; + 72B36530859D2E5550669E1E3C042972 /* RCTObjcExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTObjcExecutor.h; sourceTree = ""; }; 72E494917AC5EC2582197F07061A28B0 /* libEXPermissions.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXPermissions.a; path = libEXPermissions.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 72F507715FB574C4CDD23238F2DC37DC /* UMFilePermissionModuleInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFilePermissionModuleInterface.h; path = UMFileSystemInterface/UMFilePermissionModuleInterface.h; sourceTree = ""; }; + 730AF6C42D77524C35855EC5A736953A /* RCTActionSheetManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTActionSheetManager.m; sourceTree = ""; }; + 7394745DA1D3FC508866D75D8D5214C1 /* RCTAutoInsetsProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAutoInsetsProtocol.h; sourceTree = ""; }; + 739FA1A7A42404A776FC77980E95A600 /* UIView+FindUIViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+FindUIViewController.m"; path = "ios/Video/UIView+FindUIViewController.m"; sourceTree = ""; }; + 73CA6B04C1363A92610BEF9651646E9F /* React-RCTAnimation-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTAnimation-dummy.m"; sourceTree = ""; }; + 73E3BF365C4FD88C19534C8EC9C26346 /* RCTMaskedView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMaskedView.m; sourceTree = ""; }; 73F8A95B79671F501F31EA4F1D04AA8B /* libReact-RCTActionSheet.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTActionSheet.a"; path = "libReact-RCTActionSheet.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 74A0E49000BA0FA51FE8CBB556D3C717 /* RCTI18nManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTI18nManager.h; sourceTree = ""; }; + 74B83ABC77CCD11ABF2E38DB951EA243 /* RNCMaskedViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCMaskedViewManager.m; path = ios/RNCMaskedViewManager.m; sourceTree = ""; }; 74EBE97E312E273EA688E3718687C983 /* strtod.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = strtod.cc; path = "double-conversion/strtod.cc"; sourceTree = ""; }; - 750F52775A288BF229AE42C5D1CCB0C4 /* RCTPerformanceLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPerformanceLogger.h; sourceTree = ""; }; - 755CE02FEF7D73588BF35B87946515D1 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 75CB3B4CD6F9C5ED935E87DC0E8C82A6 /* RCTDatePicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDatePicker.m; sourceTree = ""; }; - 75E9BC26125CADE0B2B74312CAE94F51 /* REAOperatorNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAOperatorNode.h; sourceTree = ""; }; - 760A40825B5931FF183202C3A5E66C7F /* RCTImageShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageShadowView.h; path = Libraries/Image/RCTImageShadowView.h; sourceTree = ""; }; - 762E3274DCBA71387D9BCCEAEEB806A0 /* RCTCxxMethod.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxMethod.mm; sourceTree = ""; }; - 76E4DF36734D9E52A45100D47D410604 /* RNGestureHandlerDirection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerDirection.h; path = ios/RNGestureHandlerDirection.h; sourceTree = ""; }; - 76FAD1045632FE6FDE34B2FBFB68EC7A /* UMModuleRegistryAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryAdapter.h; sourceTree = ""; }; - 772EA2D7BDB6EE943E77CC3A23A1F8AD /* RCTSurface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurface.h; sourceTree = ""; }; - 7730AB860C454C4ADB87814B10B0F557 /* RCTSurfaceStage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceStage.h; sourceTree = ""; }; - 77347179A6A08E89A1A18FCF418630BF /* JSIExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JSIExecutor.h; path = jsireact/JSIExecutor.h; sourceTree = ""; }; - 77429F93EBF2EEF53EFA795BB3A1CB1E /* RCTCamera.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTCamera.m; path = ios/RCT/RCTCamera.m; sourceTree = ""; }; - 7779B5CCEE4D3942C4EEA5A5912E8A30 /* RNLongPressHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNLongPressHandler.m; sourceTree = ""; }; - 777E8059EBF555C61A5B1DD07C71EEDB /* RNConvertPhAsset.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNConvertPhAsset.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 77950938D25254755107AF7A3DA3DAD3 /* RCTBundleURLProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBundleURLProvider.m; sourceTree = ""; }; - 77F3ECAC00F1B342A3AFC13483A5FB71 /* RCTRequired.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RCTRequired.xcconfig; sourceTree = ""; }; - 77F7E2C1DE1135C2F37F7D93914D3569 /* UMReactFontManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactFontManager.m; sourceTree = ""; }; - 7881A140BC6358C0EE1328412DFB0079 /* REAAlwaysNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAAlwaysNode.h; sourceTree = ""; }; - 78B53CFA5EA1A3CA27ECB0DEE4F1E7DD /* RCTInputAccessoryViewContent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryViewContent.h; sourceTree = ""; }; - 78BC713191CFE484DCF5E5F9D9622C6F /* RNCMaskedView.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNCMaskedView.xcconfig; sourceTree = ""; }; - 78C53C4399F64F7BC6A2B0A0C1B7F78D /* RCTImageBlurUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageBlurUtils.m; sourceTree = ""; }; - 78DD080CDBE8E1F65FFCC75A70BBE21B /* RCTAccessibilityManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAccessibilityManager.m; sourceTree = ""; }; - 79189DFE2486A8792FD0609B7089FF70 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 79279DF20D28E71191074425CC655277 /* YGNode.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGNode.cpp; path = yoga/YGNode.cpp; sourceTree = ""; }; - 7927E7AF9F480517CC37FE70D95F2EC8 /* React-RCTBlob-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTBlob-prefix.pch"; sourceTree = ""; }; - 7929707B62D49351AFC8444C359CA59D /* REASetNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REASetNode.h; sourceTree = ""; }; - 792A64225550DBD9E02E3C69E5976E6A /* RCTNativeAnimatedNodesManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTNativeAnimatedNodesManager.m; sourceTree = ""; }; - 7996953F2A1900FE4B14DCECA49AE0C7 /* EXFileSystem.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXFileSystem.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 79A397822646D79F4DE38521B20B8864 /* RNGestureHandlerModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerModule.m; path = ios/RNGestureHandlerModule.m; sourceTree = ""; }; - 79D1435DA08FDE2A133FBAE503127873 /* Yoga-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Yoga-internal.h"; path = "yoga/Yoga-internal.h"; sourceTree = ""; }; + 754919DD06036427D42CA0883EB46B1F /* RCTProfile.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTProfile.m; sourceTree = ""; }; + 7552595668B1D5809A62165425A6BEC6 /* RCTAnimatedImage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAnimatedImage.m; sourceTree = ""; }; + 755C3D6AEF5175F50DF002B88556C2E1 /* RCTSafeAreaViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaViewManager.m; sourceTree = ""; }; + 75DB962E226C097E996B858C50817A2E /* React-jsiexecutor-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-jsiexecutor-dummy.m"; sourceTree = ""; }; + 75EFF2B2BA6607B316A19D5EB7D81BE8 /* FontAwesome5_Regular.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = FontAwesome5_Regular.ttf; path = Fonts/FontAwesome5_Regular.ttf; sourceTree = ""; }; + 764F6F6595A1834102105DD73F7A22DC /* UMCore-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UMCore-prefix.pch"; sourceTree = ""; }; + 76EB26079D0E90E70FDEE6B082880F0D /* RCTKeyboardObserver.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTKeyboardObserver.m; sourceTree = ""; }; + 77519740819497A1B2325233B964FFA6 /* EXFilePermissionModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFilePermissionModule.m; path = EXFileSystem/EXFilePermissionModule.m; sourceTree = ""; }; + 77A879542502F7070AF9A8C69ADB3DDE /* NSArray+Map.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSArray+Map.h"; sourceTree = ""; }; + 77DA8146BDCD24C321C037ED0A85E799 /* UMImageLoaderInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMImageLoaderInterface.xcconfig; sourceTree = ""; }; + 781E815DFCFA603CE1F2850A07238B6D /* JSCExecutorFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSCExecutorFactory.h; sourceTree = ""; }; + 7869800FF01CFD4F4E9A522395C82B4F /* RCTLayout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayout.h; sourceTree = ""; }; + 78AA6B97F23F8B6FA8D711D9882D3584 /* RCTDivisionAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDivisionAnimatedNode.m; sourceTree = ""; }; + 78B9C21C2618C89315E325F2E6F60C37 /* React-RCTNetwork.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-RCTNetwork.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 78E1CA0655721910630D3CE34D3A1981 /* RCTSettingsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTSettingsManager.h; path = Libraries/Settings/RCTSettingsManager.h; sourceTree = ""; }; + 78FB08534A002FD038F0F4386A91F0D3 /* RCTRedBox.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRedBox.h; sourceTree = ""; }; + 7981B9B91FBE6EC19DDCF8DDA1B290F4 /* YGNodePrint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGNodePrint.h; path = yoga/YGNodePrint.h; sourceTree = ""; }; + 79C420094E4350FC3E93DAC0D64FD079 /* REAAllTransitions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAAllTransitions.m; sourceTree = ""; }; + 79C919DFD21DCBABB45D387C497820D6 /* UMFaceDetectorInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFaceDetectorInterface.xcconfig; sourceTree = ""; }; 79E255820A28B835DB608247A838EA5C /* libRNConvertPhAsset.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNConvertPhAsset.a; path = libRNConvertPhAsset.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 7B08C817C2A4CA86C666144054103956 /* RCTInputAccessoryShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryShadowView.m; sourceTree = ""; }; - 7BB78C5C844AB15B88955897E94FAF78 /* RCTInterpolationAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInterpolationAnimatedNode.h; sourceTree = ""; }; - 7BF4C8AA55B29278B57806595E82FD9E /* RCTFileRequestHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFileRequestHandler.m; sourceTree = ""; }; - 7C1BD55412F8E5C6B47635501D5DBC01 /* RNRootViewGestureRecognizer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNRootViewGestureRecognizer.h; path = ios/RNRootViewGestureRecognizer.h; sourceTree = ""; }; - 7C24906DDFF8C57FFBD11709A664663D /* React-cxxreact.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-cxxreact.xcconfig"; sourceTree = ""; }; - 7C813D57598019AC330FC65A556837EA /* React-CoreModules-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-CoreModules-prefix.pch"; sourceTree = ""; }; - 7C99EF4D5DC6CB9A0998FA0158D997ED /* UMModuleRegistryDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryDelegate.h; sourceTree = ""; }; - 7D1B54C3F151C31AC512B821555EDF4A /* RCTBackedTextInputViewProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputViewProtocol.h; sourceTree = ""; }; - 7D63A7F0C3E18A2EFEAA236DCF3BDC0F /* RCTImageUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageUtils.m; sourceTree = ""; }; - 7D83B928B0E09FFFE93E88A41DD9DC6D /* UMImageLoaderInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMImageLoaderInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 7D9B018F6BA77C0DA3A411556A6050C2 /* JSBundleType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSBundleType.h; sourceTree = ""; }; - 7DAD2876527B3F0CB6B9F0A217434BFB /* React-cxxreact-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-cxxreact-dummy.m"; sourceTree = ""; }; - 7E4CF91875B5D3F15BC7F2D2CCBF3858 /* UMSensorsInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMSensorsInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 7F67BE09741B9B90A7ABC142CE1E0A3B /* React-RCTLinking.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTLinking.xcconfig"; sourceTree = ""; }; - 7F90DA9DD514B1B6E657857A3990A15B /* RNVectorIcons.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNVectorIcons.xcconfig; sourceTree = ""; }; - 7FAEC9F93C6EF40344816F547580B0F0 /* RNSScreenStack.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreenStack.m; path = ios/RNSScreenStack.m; sourceTree = ""; }; - 7FB8089FE6EC752844280235A12124BB /* LongLivedObject.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = LongLivedObject.cpp; path = turbomodule/core/LongLivedObject.cpp; sourceTree = ""; }; - 7FBAF565A0DD320505C699A93708975D /* JSBundleType.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSBundleType.cpp; sourceTree = ""; }; - 800B397DB693CC7307458BF5349CFF95 /* RCTHTTPRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTHTTPRequestHandler.h; path = Libraries/Network/RCTHTTPRequestHandler.h; sourceTree = ""; }; + 7A13C258951D14E6D754463E2A708294 /* RCTUITextView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUITextView.h; sourceTree = ""; }; + 7A6CA5CFB337765149A71769F3D648FD /* UMUtilitiesInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMUtilitiesInterface.h; sourceTree = ""; }; + 7A9D0C725A26D563A130E87931EA7BCA /* RCTSafeAreaShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaShadowView.m; sourceTree = ""; }; + 7ACEDDC5A851F73E80FADD786BA9E7D3 /* UMConstantsInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMConstantsInterface.h; path = UMConstantsInterface/UMConstantsInterface.h; sourceTree = ""; }; + 7AEC7B08D47B95D8F1162E0711769ECA /* REATransitionAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransitionAnimation.m; sourceTree = ""; }; + 7B3E573945A8A658487E58335CCB0254 /* RNSScreen.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreen.m; path = ios/RNSScreen.m; sourceTree = ""; }; + 7B7A230C1F4044F3FC99F3F9AFE0A102 /* react-native-video-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-video-prefix.pch"; sourceTree = ""; }; + 7B92F4F297E0AF7F9B7D6E704B4C14B9 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 7C07BD50991435BFFE23E8247AA3C733 /* RCTImageLoaderProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageLoaderProtocol.h; path = Libraries/Image/RCTImageLoaderProtocol.h; sourceTree = ""; }; + 7C40609B62D08ECD3D6BE5592B810B2C /* RCTPackagerConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPackagerConnection.h; sourceTree = ""; }; + 7C67D702A56EB20F3E79146A2899EA52 /* React-RCTVibration-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTVibration-dummy.m"; sourceTree = ""; }; + 7CD3CF0D47E49C4CD18C67925B61D850 /* RNCAsyncStorage.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNCAsyncStorage.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 7CD9262359A5544A180A26C9BD6DF5BB /* React-RCTSettings-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTSettings-dummy.m"; sourceTree = ""; }; + 7CE6E54315D4DBF20967F1DF6FC4838D /* RCTDataRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTDataRequestHandler.h; path = Libraries/Network/RCTDataRequestHandler.h; sourceTree = ""; }; + 7CF29E9DE28A8E52D78E59D6256E29B8 /* TurboModuleBinding.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TurboModuleBinding.cpp; path = turbomodule/core/TurboModuleBinding.cpp; sourceTree = ""; }; + 7D85E2EB9F93DDACFAF9BF1E27ECD9E5 /* UMInternalModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMInternalModule.h; sourceTree = ""; }; + 7D961F12E603E2DE6A35E0F808F176A9 /* React-RCTVibration.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTVibration.xcconfig"; sourceTree = ""; }; + 7DDBB44BE3F7F544BE51C71BAE66D2F4 /* REACondNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REACondNode.m; sourceTree = ""; }; + 7DE57CCDFE8374965969D6D3CC6EFF80 /* RCTModuleData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuleData.h; sourceTree = ""; }; + 7DF857E53656F23E44A941AB6DBF9BA6 /* RCTConvertHelpers.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTConvertHelpers.mm; sourceTree = ""; }; + 7DF95894A7BE3E17065E4EF43DF6A621 /* RCTRootViewInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootViewInternal.h; sourceTree = ""; }; + 7E969F2D2926AA76C4D00864E432C416 /* RCTMaskedViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMaskedViewManager.h; sourceTree = ""; }; + 7ECECB2978C5985B2AD61C235E9684B8 /* RCTInspectorDevServerHelper.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTInspectorDevServerHelper.mm; sourceTree = ""; }; + 7ED0A2D05733885E8FB5663A799E3DF3 /* RCTSafeAreaViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaViewManager.h; sourceTree = ""; }; + 7ED446FF7739FA0236E3404FDB5538AB /* UMBarCodeScannerInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMBarCodeScannerInterface.xcconfig; sourceTree = ""; }; + 7F2289CDDBF4A035D703667C15A58B58 /* RCTBridgeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeModule.h; sourceTree = ""; }; + 7F2A5D2F87C892EEB2F3B4BB52892683 /* RNForceTouchHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNForceTouchHandler.h; sourceTree = ""; }; + 7F4D6B16C84C6DBBA8E47490F22D1BB7 /* RCTAppState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAppState.h; sourceTree = ""; }; + 7FB083390F4ED2D2067C64A2947971B0 /* REABezierNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REABezierNode.h; sourceTree = ""; }; + 7FFAD254679829E0D0C91D88A5520C3B /* EXAppRecordInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXAppRecordInterface.h; sourceTree = ""; }; 802121F5B756ACBFDD6D08C36246DADD /* libReact-RCTLinking.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTLinking.a"; path = "libReact-RCTLinking.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 803182C68C68EFFB8593578DEF1AB183 /* RNCMaskedView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCMaskedView.h; path = ios/RNCMaskedView.h; sourceTree = ""; }; - 807AECB982EB97A888AE9E276AFD5749 /* RCTTouchHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTouchHandler.m; sourceTree = ""; }; - 80904F518A757EF66BB56D8FE02F659C /* UMViewManagerAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMViewManagerAdapter.h; sourceTree = ""; }; - 809CFD57BA47FE8D8343F7D2E45C81C4 /* RCTShadowView+Layout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTShadowView+Layout.m"; sourceTree = ""; }; + 802B6850CFE8EB827AD66BB2DB9B7BA7 /* RCTLayout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayout.m; sourceTree = ""; }; + 803D7D8A465E7CD5A16DE0ACCC97FBF2 /* RCTScrollContentView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentView.m; sourceTree = ""; }; + 80BB34C456647626591BB91C90A378BC /* FBReactNativeSpec.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FBReactNativeSpec.xcconfig; sourceTree = ""; }; 80BE6D5D8BA5017C7B4CBFF7217C8C80 /* Demangle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Demangle.cpp; path = folly/Demangle.cpp; sourceTree = ""; }; - 80E9BDBCA02503BCE916B4A383512F80 /* RCTSensorOrientationChecker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTSensorOrientationChecker.m; path = ios/RCT/RCTSensorOrientationChecker.m; sourceTree = ""; }; - 811580E6C382992BF055E1644C3D95F5 /* RNFlingHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFlingHandler.h; sourceTree = ""; }; 811C4B626C8F60E7304B47AEAC617E30 /* fast-dtoa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "fast-dtoa.h"; path = "double-conversion/fast-dtoa.h"; sourceTree = ""; }; - 8144BD6ECFF6512D2F2FC48A80A72354 /* UMInternalModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMInternalModule.h; sourceTree = ""; }; - 816263B06970499608C4612EEB4C5F28 /* React-RCTText-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTText-dummy.m"; sourceTree = ""; }; - 81A788F50E15368FD2B30BB430F19737 /* UIView+React.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UIView+React.m"; sourceTree = ""; }; - 81AAC5A5194915C2EAE22298A4937CF4 /* RCTBackedTextInputDelegateAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBackedTextInputDelegateAdapter.m; sourceTree = ""; }; - 81C6E572A0D81F177745262C2AA80DAA /* UMReactNativeEventEmitter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactNativeEventEmitter.m; sourceTree = ""; }; - 81DA9D40D390E28AAA405D533327E92C /* RCTTypedModuleConstants.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTTypedModuleConstants.mm; sourceTree = ""; }; - 82DAF64B6E6366F44043B62FF95EB3C1 /* RCTResizeMode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTResizeMode.m; sourceTree = ""; }; - 833A1F30F1602B4686727D01E6BA8A0D /* UMErrorCodes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMErrorCodes.m; path = UMCore/UMErrorCodes.m; sourceTree = ""; }; - 833FEDCBE02578BE28B03ED8C55CB268 /* EXAppLoaderProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAppLoaderProvider.m; path = EXAppLoaderProvider/EXAppLoaderProvider.m; sourceTree = ""; }; - 8382F1399CD3282AF0540C9699856042 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 83B17312F9D2E1BEAA7746909BAFA316 /* RCTKeyboardObserver.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTKeyboardObserver.m; sourceTree = ""; }; - 83CE7F25AB35ED044098591D03CFFBDE /* YGEnums.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGEnums.h; path = yoga/YGEnums.h; sourceTree = ""; }; - 83D12F7F6A27AA9121DAE2DEB11188C6 /* NSDataBigString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NSDataBigString.h; sourceTree = ""; }; - 83F2A8ED671006EC8DC347F68A7FC644 /* react-native-ffmpeg.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-ffmpeg.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 83F629F89DFF113EAB7EE6EE0DE7BA86 /* RNCAsyncStorage.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNCAsyncStorage.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 8401FC75455876AF07EA3B02EA29558B /* Yoga.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Yoga.xcconfig; sourceTree = ""; }; - 843E7E466AA9271CF17157DDDF57A6CB /* RNCSafeAreaView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaView.h; path = ios/SafeAreaView/RNCSafeAreaView.h; sourceTree = ""; }; - 84689D554179BD137E377E64409A2BF5 /* RNSScreenStackHeaderConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreenStackHeaderConfig.h; path = ios/RNSScreenStackHeaderConfig.h; sourceTree = ""; }; - 84DD675711033BA04DC9415DD6334CFD /* RNReanimated.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNReanimated.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 84F344DBB3CAD0AD021BC3F70A38991B /* TurboModuleBinding.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TurboModuleBinding.cpp; path = turbomodule/core/TurboModuleBinding.cpp; sourceTree = ""; }; - 85008557FA91E2157A4032DBF5F0C6B6 /* RCTFrameAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFrameAnimation.h; sourceTree = ""; }; - 853D068B55DCEE088299CE1CD9B019EB /* FBLazyVector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLazyVector.h; path = FBLazyVector/FBLazyVector.h; sourceTree = ""; }; - 853F269CDA5EEB9639BDB783FCF8C573 /* RNCMaskedViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCMaskedViewManager.h; path = ios/RNCMaskedViewManager.h; sourceTree = ""; }; - 8598CE246990A95F592FD67BE0F90DF5 /* RCTSafeAreaViewLocalData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaViewLocalData.m; sourceTree = ""; }; - 85A1172C991511F2F7A66D6D1D438FD5 /* RCTBridgeDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeDelegate.h; sourceTree = ""; }; - 85C89B70F45DD79C723D4707281AB5F9 /* UMCameraInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMCameraInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 8628256E24FE48A83AC233FD52A77C4F /* RCTVideoManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTVideoManager.h; path = ios/Video/RCTVideoManager.h; sourceTree = ""; }; - 866D4FDACCD65D99CD3E2C54047F1AF0 /* FaceDetectorManagerMlkit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FaceDetectorManagerMlkit.h; path = ios/RN/FaceDetectorManagerMlkit.h; sourceTree = ""; }; - 86AACD2BCDB97CB0988524510F5CBFD0 /* experiments.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = experiments.h; sourceTree = ""; }; + 817864B6170BB3D729B4C5A9D79FE671 /* React-RCTText.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTText.xcconfig"; sourceTree = ""; }; + 817E25E07D4FEE3267236BA226B05BA4 /* RCTScrollContentViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentViewManager.m; sourceTree = ""; }; + 81D722FA7D7FCAC10A54BE8734006014 /* RCTDecayAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDecayAnimation.m; sourceTree = ""; }; + 82C33BA47432C1F489A935708F718D43 /* FontAwesome5_Brands.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = FontAwesome5_Brands.ttf; path = Fonts/FontAwesome5_Brands.ttf; sourceTree = ""; }; + 833FF5D437B6802258D9BCC48AEC3CC1 /* RCTVirtualTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVirtualTextShadowView.m; sourceTree = ""; }; + 83400C51734A4C599E6167787E22A004 /* RCTShadowView+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTShadowView+Internal.h"; sourceTree = ""; }; + 8345EA79D2AE85BC724E41A2F4EAB757 /* REAEventNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAEventNode.h; sourceTree = ""; }; + 834BE59D96D7B6E2CE7F3CFFE0D56643 /* RCTAdditionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAdditionAnimatedNode.h; sourceTree = ""; }; + 835ED31D2BF918E4758940C6B7B9B3DF /* RCTSRWebSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTSRWebSocket.h; path = Libraries/WebSocket/RCTSRWebSocket.h; sourceTree = ""; }; + 839C0A226E98B630DA630EFF7EC45481 /* RCTSinglelineTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSinglelineTextInputViewManager.h; sourceTree = ""; }; + 83DF5D6F37AD34128EA102A1009DDE97 /* RCTBlobManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTBlobManager.h; path = Libraries/Blob/RCTBlobManager.h; sourceTree = ""; }; + 843A46A3C66FDDD5974CA1B81ADC48B5 /* RCTTypeSafety-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTTypeSafety-dummy.m"; sourceTree = ""; }; + 84418C3F8035F27CAD1554CF3654D720 /* RCTTurboModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTurboModule.h; sourceTree = ""; }; + 84809013014C5ED1C177F3F5D9679CC8 /* RCTDisplayLink.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDisplayLink.m; sourceTree = ""; }; + 84A85F0120AED5002847234ED187242A /* RNReanimated-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNReanimated-dummy.m"; sourceTree = ""; }; + 8516EBBDBE13D1F2F45D2C8A98A47F63 /* RCTUITextField.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUITextField.m; sourceTree = ""; }; + 857D6A43C3D050FF37C22BC86E96A704 /* RCTVideo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTVideo.h; path = ios/Video/RCTVideo.h; sourceTree = ""; }; + 859E19A3C1243F72CE0DA5B8E458F4A0 /* RCTImageSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTImageSource.h; sourceTree = ""; }; + 85FF03777D7E79870AC51C11E098AC8C /* RCTConvert+Text.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+Text.h"; path = "Libraries/Text/RCTConvert+Text.h"; sourceTree = ""; }; + 8677605B478C464AAC1169BED97B39A8 /* UMNativeModulesProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMNativeModulesProxy.h; sourceTree = ""; }; + 86903C6E80AAD2D8DCFFFFBE4FF826D6 /* UMUIManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMUIManager.h; sourceTree = ""; }; + 869158775941F341280BA71930DB984D /* RCTTouchHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTouchHandler.m; sourceTree = ""; }; + 869A65C588018DD7E3C707D1153B63C9 /* RCTSourceCode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSourceCode.m; sourceTree = ""; }; + 86BDA1E2F092F78303198A14E23FD392 /* React-RCTBlob-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTBlob-prefix.pch"; sourceTree = ""; }; 86E1293F04DC92C6D51ED0EB4F9FBA59 /* glog.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = glog.xcconfig; sourceTree = ""; }; - 86F51720E6CC25F87EC645911BA0BC2D /* RCTMultipartStreamReader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultipartStreamReader.h; sourceTree = ""; }; - 87203606E3C6A220E61532F3E7341D4B /* react-native-camera-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-camera-dummy.m"; sourceTree = ""; }; - 8746EC0AEB36A9BD3759A8A0CCB7E80E /* RCTPerformanceLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPerformanceLogger.m; sourceTree = ""; }; - 875F80A549BC502CE7BA5B5D21A3907A /* RCTI18nManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTI18nManager.m; sourceTree = ""; }; - 87F103AE7E5FA7007EA177F5F4FCCA28 /* JSBigString.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSBigString.cpp; sourceTree = ""; }; + 86FBC0B18E4962A47569D4089AD9060E /* CxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CxxModule.h; sourceTree = ""; }; + 86FDF0CB4DB115CB3EC44B79845C6BAC /* ReactCommon-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "ReactCommon-dummy.m"; sourceTree = ""; }; + 87A6475E8D5A8EB6EE803AE69F977846 /* RCTInterpolationAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInterpolationAnimatedNode.m; sourceTree = ""; }; + 87B246F7C81C625BE5D0AC880FA93FE6 /* RCTTextTransform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTTextTransform.h; path = Libraries/Text/RCTTextTransform.h; sourceTree = ""; }; + 87CE761A684BA1864C66DF5A2F7F4CA5 /* EXFilePermissionModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFilePermissionModule.h; path = EXFileSystem/EXFilePermissionModule.h; sourceTree = ""; }; 87FFB3FA9C29696B0DD9B99AC1679381 /* symbolize.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = symbolize.cc; path = src/symbolize.cc; sourceTree = ""; }; 880EDE7DEC6DD6FE244305CBC1B50831 /* glog-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "glog-prefix.pch"; sourceTree = ""; }; - 88A3162C7148A0A251BABC9E47F65EA2 /* React-RCTAnimation-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTAnimation-dummy.m"; sourceTree = ""; }; - 88BC3D01E8231AA2265D77B412BA0B63 /* RCTBaseTextInputShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextInputShadowView.h; sourceTree = ""; }; - 892E3B801505716D9776C7571E9039A1 /* TurboModule.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TurboModule.cpp; path = turbomodule/core/TurboModule.cpp; sourceTree = ""; }; - 895B06E692842355FF6F590FC2331264 /* UMSensorsInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMSensorsInterface.xcconfig; sourceTree = ""; }; - 898F0CF682798C3A50C59DA2B9CAFF7B /* RNPanHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNPanHandler.h; sourceTree = ""; }; + 884780291078A4A72E3FB3B9BDC30F66 /* RCTImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageView.h; path = Libraries/Image/RCTImageView.h; sourceTree = ""; }; + 884A8BAC45782BC545264E6FF40549D1 /* RCTBaseTextInputShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputShadowView.m; sourceTree = ""; }; + 8871BB4A637D1304AC8191B4D6A0F60F /* React-jsiexecutor.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsiexecutor.xcconfig"; sourceTree = ""; }; + 8878EDA91BBCBD82A71A83D166FB2B6A /* experiments-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "experiments-inl.h"; sourceTree = ""; }; + 88E84C08CC556CF50AEF55A75C7A207C /* react-native-camera-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-camera-prefix.pch"; sourceTree = ""; }; + 897C54A5BC791B5298653BA6E3D2375A /* REANode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REANode.m; sourceTree = ""; }; 8998273719FDD789E6F9C7541AFD0B33 /* libRNVectorIcons.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNVectorIcons.a; path = libRNVectorIcons.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 89A5397EAE84935DF903D65372F6CCF6 /* RCTResizeMode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTResizeMode.h; path = Libraries/Image/RCTResizeMode.h; sourceTree = ""; }; - 89C2C4DE17D0C265FA92BEF480EEFB53 /* RCTNativeAnimatedModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTNativeAnimatedModule.m; sourceTree = ""; }; - 89E2A1C82D69E02AEE6401814D47CDD8 /* RCTViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTViewManager.h; sourceTree = ""; }; - 8A14788E3694B83A0C295867DFE9B2F0 /* RCTPickerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPickerManager.h; sourceTree = ""; }; - 8A3E60D8CEF9DD08BAC07DBB85FE6491 /* React-RCTAnimation.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTAnimation.xcconfig"; sourceTree = ""; }; - 8A9AEDA41B0C780392898DA5ACDDDB8F /* UMDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMDefines.h; path = UMCore/UMDefines.h; sourceTree = ""; }; - 8AB8E8181375E083D3E53DC39A76A9BF /* RNConvertPhAsset.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNConvertPhAsset.m; path = ios/RNConvertPhAsset.m; sourceTree = ""; }; - 8ADF7ACDB4280CC12F028075F4161835 /* RCTEventAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventAnimation.h; sourceTree = ""; }; - 8B4040FA1D446113665A80ABB83181A6 /* RCTInspectorDevServerHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInspectorDevServerHelper.h; sourceTree = ""; }; - 8B8972EB016354758E7C016EAD1E8C86 /* RCTModuleMethod.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTModuleMethod.mm; sourceTree = ""; }; - 8B930F9C0008B463196586ADE424DEF8 /* RCTJSStackFrame.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTJSStackFrame.m; sourceTree = ""; }; - 8B9F478CDE5117AE104F775B6AC24017 /* RCTModalHostView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostView.h; sourceTree = ""; }; - 8BA32AB2A9FEA8BBE1B13E7C8B6DDCEB /* RCTUIManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIManager.m; sourceTree = ""; }; + 8A4094EC4400B59D0F17BA3204D5CD82 /* RCTImageStoreManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageStoreManager.m; sourceTree = ""; }; + 8A68D20604028228384E240407A2B2CD /* RNGestureHandlerModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerModule.m; path = ios/RNGestureHandlerModule.m; sourceTree = ""; }; + 8A699BDA504A6826A0A34F0DAD7D0846 /* NSTextStorage+FontScaling.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "NSTextStorage+FontScaling.m"; sourceTree = ""; }; + 8AA26B89B90521B1C98D6A84013A9C85 /* RCTScrollContentView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentView.h; sourceTree = ""; }; + 8B5788F982C9A1CBCC725E1709019A9E /* REAConcatNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAConcatNode.h; sourceTree = ""; }; 8BE0E34DDA69686409734DAE1545ADC3 /* mobileffmpeg.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = mobileffmpeg.framework; sourceTree = ""; }; + 8BF7E7C2B06CB774CB471182C0F63C0A /* UMTaskManagerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskManagerInterface.h; path = UMTaskManagerInterface/UMTaskManagerInterface.h; sourceTree = ""; }; + 8C1F199F184D36E3DD58D189CEB5742D /* JSDeltaBundleClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSDeltaBundleClient.h; sourceTree = ""; }; 8C3E2A6E6F93E60E397F6C0BBA710BF5 /* libreact-native-cameraroll.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libreact-native-cameraroll.a"; path = "libreact-native-cameraroll.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 8C737A388ADC5FB753F8D4307A0A0667 /* RCTVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVersion.h; sourceTree = ""; }; - 8C84BD9D7FC4FC104B90B07C7CE72DAA /* RCTActivityIndicatorViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTActivityIndicatorViewManager.m; sourceTree = ""; }; - 8C9718E3B9AAC79BC6BA2BB52D94AC6C /* React-jsi.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-jsi.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 8C9F0B182BF7FA1B80DF112F60130C4E /* FBLazyVector.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FBLazyVector.xcconfig; sourceTree = ""; }; - 8D72A973383E0B35A3C4DA5D63DA286C /* RCTConvert+REATransition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+REATransition.h"; sourceTree = ""; }; - 8DBDEDFDDB833FD4C45AF20DAEFDC440 /* Yoga.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Yoga.cpp; path = yoga/Yoga.cpp; sourceTree = ""; }; - 8DEFEF8F9410EC5482A9753C0DBD7C6C /* RCTExceptionsManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTExceptionsManager.mm; sourceTree = ""; }; - 8E9CDDF7E007CF282E5EFF07B3BA4DB1 /* FBReactNativeSpec.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FBReactNativeSpec.xcconfig; sourceTree = ""; }; - 8E9E129B09C666F1C243FDC8BDB08E4D /* UMPermissionsMethodsDelegate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMPermissionsMethodsDelegate.m; path = UMPermissionsInterface/UMPermissionsMethodsDelegate.m; sourceTree = ""; }; - 8EB675CAF6351F58F782C161FB3A18C7 /* RCTTouchHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTouchHandler.h; sourceTree = ""; }; - 8F21273D48FA5BA310E9FF26B62D35CE /* TextDetectorManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = TextDetectorManager.m; path = ios/RN/TextDetectorManager.m; sourceTree = ""; }; + 8C5710167078B9E92207C4E461F57A89 /* Foundation.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Foundation.ttf; path = Fonts/Foundation.ttf; sourceTree = ""; }; + 8C6F4EE1F9C650E9C9A6D1C931A3753D /* React-RCTImage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTImage-dummy.m"; sourceTree = ""; }; + 8CC553E096EB8CF76BECCA2887C784CF /* RCTFileRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTFileRequestHandler.h; path = Libraries/Network/RCTFileRequestHandler.h; sourceTree = ""; }; + 8D6B4FCD54CF5DE87315DB4A5709BE2B /* EXPermissions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXPermissions.m; path = EXPermissions/EXPermissions.m; sourceTree = ""; }; + 8D6F1C844C5584DADE9C47488C14E269 /* React-jsiexecutor-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-jsiexecutor-prefix.pch"; sourceTree = ""; }; + 8D78EB8750DC2045728DB7B116D2D4DA /* RCTBaseTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextInputViewManager.h; sourceTree = ""; }; + 8D8E72A8E70A35BCC1D4381FFE8F5DFA /* RCTPickerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPickerManager.m; sourceTree = ""; }; + 8DAFE0D398CE10E5EC050008DADD783E /* RCTProgressViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTProgressViewManager.m; sourceTree = ""; }; + 8DDAB5E4F1BC86BC8B6AB3E831E03EF5 /* REATransitionValues.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransitionValues.m; sourceTree = ""; }; + 8DE0767620CE90CEE02C6EA236B5ED8C /* MaterialCommunityIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = MaterialCommunityIcons.ttf; path = Fonts/MaterialCommunityIcons.ttf; sourceTree = ""; }; + 8DF29E368BF77FC9AD288DF274FDB305 /* RCTScrollContentShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentShadowView.h; sourceTree = ""; }; + 8E604E140E84CD475309034EA42B855C /* UMUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMUtilities.h; path = UMCore/UMUtilities.h; sourceTree = ""; }; + 8EB285CDFEA6B7164C2AB101BB8A60A2 /* RCTTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextViewManager.m; sourceTree = ""; }; + 8ED41D161C9B641A462293B574F4FC88 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 8EF1EF27B92C01D582DAE07B4AB2A5E0 /* RCTBorderDrawing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBorderDrawing.h; sourceTree = ""; }; 8F65F9361F2069CF9E9D751272968DE4 /* libRNGestureHandler.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNGestureHandler.a; path = libRNGestureHandler.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 8FA796098311A71A4BE63CFF00E4EAF9 /* UMFontScalersManagerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontScalersManagerInterface.h; path = UMFontInterface/UMFontScalersManagerInterface.h; sourceTree = ""; }; - 8FE1912AA96ABC77692CD2F81F12FE06 /* RCTSurfaceRootShadowViewDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootShadowViewDelegate.h; sourceTree = ""; }; - 9034EBEDF2F50BF023AE210BA0BCAF14 /* RCTJSStackFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJSStackFrame.h; sourceTree = ""; }; - 90B2CF4D23329B44ED4AC9638AD7F975 /* CxxNativeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CxxNativeModule.h; sourceTree = ""; }; - 912E58763854F0F6D6F68B19034E4B69 /* UMReactFontManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactFontManager.h; sourceTree = ""; }; - 91349DE5D373447F75BFADED39ECE630 /* UIView+FindUIViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+FindUIViewController.m"; path = "ios/Video/UIView+FindUIViewController.m"; sourceTree = ""; }; - 91C5B3E3D55AC5E4A83519530AB71FAF /* RCTAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimatedNode.h; sourceTree = ""; }; - 91F0680B5FBDB320DA5B1CE14BA5CD97 /* REACallFuncNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REACallFuncNode.h; sourceTree = ""; }; - 91F486FCB1E5D3A49B7B4F04A61A7FFB /* UMModuleRegistryConsumer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryConsumer.h; sourceTree = ""; }; - 9219A9EAFE7F8CA73B649E5714BB3A9B /* UMAppDelegateWrapper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMAppDelegateWrapper.m; path = UMCore/UMAppDelegateWrapper.m; sourceTree = ""; }; - 924D179DFC2AC724B34A1D3874F22BCF /* EXConstantsService.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXConstantsService.m; path = EXConstants/EXConstantsService.m; sourceTree = ""; }; - 926A6320B9A0BF32BEE32408B72558DB /* react-native-ffmpeg-logo-v1.jpeg */ = {isa = PBXFileReference; includeInIndex = 1; name = "react-native-ffmpeg-logo-v1.jpeg"; path = "docs/assets/react-native-ffmpeg-logo-v1.jpeg"; sourceTree = ""; }; - 926D97954AB1FD616C6DF2F154024A94 /* UMPermissionsInterface-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UMPermissionsInterface-dummy.m"; sourceTree = ""; }; - 928EE9986CDF6976B4A5CB3DD999FA08 /* RCTSubtractionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSubtractionAnimatedNode.h; sourceTree = ""; }; - 92FFA6AF3A3EA04478E15D37648D0733 /* RCTImageCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageCache.m; sourceTree = ""; }; - 937249AD00966108E40C7FAFD6FC5E50 /* RNCMaskedView-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNCMaskedView-dummy.m"; sourceTree = ""; }; - 93BFFD85E59009B8D652DD24A1F9A095 /* RNLongPressHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNLongPressHandler.h; sourceTree = ""; }; - 93CD581046033FA8922BAD20F0041B43 /* UMMagnetometerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMMagnetometerInterface.h; path = UMSensorsInterface/UMMagnetometerInterface.h; sourceTree = ""; }; - 94BB76D024184AF88F0AC994CA1D89DC /* threadsafe.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = threadsafe.h; sourceTree = ""; }; - 94F5F8A9787458C185E9F990F90FC826 /* UMBarometerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBarometerInterface.h; path = UMSensorsInterface/UMBarometerInterface.h; sourceTree = ""; }; - 9502895718D99FDD9BE1B59B77FA8DF8 /* REAValueNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAValueNode.h; sourceTree = ""; }; - 95716B346E106C128A87AAC0C3F1C2E0 /* UMTaskInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskInterface.h; path = UMTaskManagerInterface/UMTaskInterface.h; sourceTree = ""; }; - 959E793967DE0C8AA0D2C7333533AE1E /* RCTDecayAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDecayAnimation.h; sourceTree = ""; }; - 95B1B98679287C0464D1F16DF0045983 /* React-cxxreact-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-cxxreact-prefix.pch"; sourceTree = ""; }; - 95C2F0E606967752511D2C35D088AC2F /* RCTStyleAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTStyleAnimatedNode.m; sourceTree = ""; }; - 95CFB4AE876FEF06DD1F334C41E2D273 /* RCTRefreshControl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRefreshControl.h; sourceTree = ""; }; + 8F9178450DA044E60034D8573DC97F56 /* RCTTouchEvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTouchEvent.m; sourceTree = ""; }; + 8FB7033998222FC0C9BAD8D53C89ACEA /* RNGestureHandlerState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerState.h; path = ios/RNGestureHandlerState.h; sourceTree = ""; }; + 8FFA1B6E16491D7A0740A54369208B1C /* react-native-ffmpeg-logo-v1.jpeg */ = {isa = PBXFileReference; includeInIndex = 1; name = "react-native-ffmpeg-logo-v1.jpeg"; path = "docs/assets/react-native-ffmpeg-logo-v1.jpeg"; sourceTree = ""; }; + 903DDEC9B1A5C4FC2562F3F849F11A72 /* RNCMaskedView.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNCMaskedView.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 904F4A543F81D341E52A71E8C855496F /* RecoverableError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RecoverableError.h; sourceTree = ""; }; + 90726D02EC4A41EC2332A7F76C5C6FE0 /* RCTWeakProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTWeakProxy.m; sourceTree = ""; }; + 908D19C0D19BF023521DF36EBFC3C3EE /* RCTImageEditingManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageEditingManager.h; path = React/CoreModules/RCTImageEditingManager.h; sourceTree = ""; }; + 90C20F1B21CC2A61E46C05C4A6083FB0 /* react-native-video-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-video-dummy.m"; sourceTree = ""; }; + 90CD281D75F95183F2ECB97AD522A510 /* RCTImageCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageCache.m; sourceTree = ""; }; + 9131F71BD35058FC58D9574792059C0C /* RCTCameraManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTCameraManager.m; path = ios/RCT/RCTCameraManager.m; sourceTree = ""; }; + 91A8DB37447C944B0600FF90E40FD844 /* JSIExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = JSIExecutor.cpp; path = jsireact/JSIExecutor.cpp; sourceTree = ""; }; + 922F7666A3DE6326A858B81AE3521EE4 /* RCTConvert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTConvert.m; sourceTree = ""; }; + 929E9B46276747AC1132EF99AF3FB597 /* RCTFrameAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFrameAnimation.h; sourceTree = ""; }; + 92B55A7DD985BD301A5B1D25C938B5C9 /* React-RCTActionSheet-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTActionSheet-prefix.pch"; sourceTree = ""; }; + 92EA2FA2BC9283B558A8FB35FEE7131E /* RCTNativeAnimatedNodesManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNativeAnimatedNodesManager.h; path = Libraries/NativeAnimation/RCTNativeAnimatedNodesManager.h; sourceTree = ""; }; + 93A2009511D617A6A19816B75D766D19 /* UMPermissionsInterface-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UMPermissionsInterface-dummy.m"; sourceTree = ""; }; + 93E7A1D26B31B27E2A8C12AB7041ADA3 /* RCTEventDispatcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventDispatcher.m; sourceTree = ""; }; + 942A08D2F61D40D81D337860BED9B8C4 /* React-RCTAnimation.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTAnimation.xcconfig"; sourceTree = ""; }; + 9462A3FC7BE6A36F90F46BDA99E04633 /* RCTInputAccessoryShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryShadowView.m; sourceTree = ""; }; + 9537B61141201FB98D3F5062797E6E62 /* RCTImageBlurUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageBlurUtils.h; path = Libraries/Image/RCTImageBlurUtils.h; sourceTree = ""; }; + 9558EB1657418A6AD3D9D617214F79AC /* ios_test_app.gif */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.gif; name = ios_test_app.gif; path = docs/assets/ios_test_app.gif; sourceTree = ""; }; + 95703A9FB86E0BA6B62FAEB401871DFC /* RCTValueAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTValueAnimatedNode.m; sourceTree = ""; }; + 95B242A9F97824608EDB42A9C49EB813 /* REANodesManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = REANodesManager.m; path = ios/REANodesManager.m; sourceTree = ""; }; + 95DB89AD58B1DAA2B1A1878554F96CCD /* React-CoreModules-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-CoreModules-prefix.pch"; sourceTree = ""; }; 960015C324FBB9A2A11B648A61C3741B /* ieee.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ieee.h; path = "double-conversion/ieee.h"; sourceTree = ""; }; - 96264036E7BA414DB2D4AE17F46C7303 /* react-native-video.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-video.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 96640E38DC6080ACE6217387B4538A93 /* UMPermissionsInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMPermissionsInterface.xcconfig; sourceTree = ""; }; - 96E0AA996B6A57048F0B8B94A192D1E7 /* UMExportedModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMExportedModule.h; path = UMCore/UMExportedModule.h; sourceTree = ""; }; - 9709F639037310D052C5DE3062D3551D /* event.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = event.h; sourceTree = ""; }; - 977C4EB52B058B8058311AE6B2549941 /* RCTDeviceInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDeviceInfo.h; sourceTree = ""; }; - 978F4FBE5906442AD10F3FD2B9A50644 /* JSCallInvoker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JSCallInvoker.h; path = jscallinvoker/ReactCommon/JSCallInvoker.h; sourceTree = ""; }; - 979D04B76B0D6DA154F54C8403D4DB83 /* RCTFollyConvert.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTFollyConvert.mm; sourceTree = ""; }; - 97A08FEA435D143D6AD23D0E2A24E997 /* RCTAnimationDriver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimationDriver.h; sourceTree = ""; }; - 97B4FC401451166465BAA5F950638C92 /* RCTTypedModuleConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTypedModuleConstants.h; sourceTree = ""; }; - 97D5BB053C9C1D7D848E0458AADDBAC9 /* RCTDevMenu.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDevMenu.h; sourceTree = ""; }; - 9815E74DB5B104451F86AB1FD50E90F3 /* RCTSRWebSocket.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTSRWebSocket.m; path = Libraries/WebSocket/RCTSRWebSocket.m; sourceTree = ""; }; - 983793D4A777F37B896A7B04A7356447 /* EXUserNotificationPermissionRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXUserNotificationPermissionRequester.m; sourceTree = ""; }; - 98433722ED81079DB8D9E18BCDC1E0A0 /* RNCAsyncStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAsyncStorage.h; path = ios/RNCAsyncStorage.h; sourceTree = ""; }; - 98B7CAAD50B7BC18BC9808B4746BD3B0 /* RCTBlobCollector.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTBlobCollector.mm; sourceTree = ""; }; + 961BFD851D86C8BF3B049B85B6D12DD6 /* React-RCTImage.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-RCTImage.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 9620FD21A6738612E74DFF32F1454CF1 /* RCTVirtualTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVirtualTextViewManager.m; sourceTree = ""; }; + 9670AD3A3E8E639D0C87DEA3086DC020 /* RCTBundleURLProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBundleURLProvider.h; sourceTree = ""; }; + 96F14BFE5D2CD4C94FF02C435C55EB81 /* RCTVibration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVibration.m; sourceTree = ""; }; + 974792B850F0F5442722BFBF8CF9CE5E /* UMReactNativeEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactNativeEventEmitter.h; sourceTree = ""; }; + 97706CEE0487AC75FF7F4DAD9A339DED /* LongLivedObject.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = LongLivedObject.cpp; path = turbomodule/core/LongLivedObject.cpp; sourceTree = ""; }; + 9804CC641A574D1DABD482B5A0A78475 /* RCTMultipartStreamReader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultipartStreamReader.h; sourceTree = ""; }; + 980AADFAD2FCE5804B469C508EDBBF7E /* UMReactNativeEventEmitter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactNativeEventEmitter.m; sourceTree = ""; }; + 9874A0018CDCA4C293F9B246BBBC1359 /* RCTUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUtils.m; sourceTree = ""; }; 98BB7C1FDA9E4AA9905645C05C35254F /* cached-powers.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "cached-powers.cc"; path = "double-conversion/cached-powers.cc"; sourceTree = ""; }; - 9902AB225D7811FDCE2770983C93E84C /* RNCCameraRollManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCCameraRollManager.m; path = ios/RNCCameraRollManager.m; sourceTree = ""; }; - 9926BD16A7CD82FECD69E790A0CB8497 /* ios_test_app.gif */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.gif; name = ios_test_app.gif; path = docs/assets/ios_test_app.gif; sourceTree = ""; }; - 99DC2622CC6851584257341D936E3A83 /* UMCore.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMCore.xcconfig; sourceTree = ""; }; - 9A28481C9F1153DF8BB4C0AFE4323DF9 /* JSBigString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSBigString.h; sourceTree = ""; }; - 9A369FD0516FFCFD1EA72C8DBF250426 /* EXPermissions-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXPermissions-dummy.m"; sourceTree = ""; }; - 9A92218C7346264F25F5042A8BB691EC /* UMViewManagerAdapterClassesRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMViewManagerAdapterClassesRegistry.h; sourceTree = ""; }; - 9ABA934F0D9F11D76ED5C290A19B7CC1 /* React-RCTNetwork-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTNetwork-prefix.pch"; sourceTree = ""; }; - 9B6CF4CE2EF6CAF0023314C51A731B54 /* RCTVideo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTVideo.m; path = ios/Video/RCTVideo.m; sourceTree = ""; }; - 9B7692F269BF71F9442A62622C719886 /* RNConvertPhAsset.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNConvertPhAsset.h; path = ios/RNConvertPhAsset.h; sourceTree = ""; }; - 9B95BF19CFCFC0A4E2488050D085C2E4 /* UMCore-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UMCore-prefix.pch"; sourceTree = ""; }; - 9BA5B98857B5222782BB1CCE9844E692 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 9BC84F9E2485D28FF96252BE70F9BEBB /* ModuleRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ModuleRegistry.h; sourceTree = ""; }; - 9C0A285B7C1AE58817F8A603DCD85241 /* UMFileSystemInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFileSystemInterface.h; path = UMFileSystemInterface/UMFileSystemInterface.h; sourceTree = ""; }; - 9C143D92341987BB03C4588D22636843 /* RCTImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageView.h; path = Libraries/Image/RCTImageView.h; sourceTree = ""; }; - 9C740197E8A9F482E6343600D3707559 /* RCTInspectorPackagerConnection.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInspectorPackagerConnection.m; sourceTree = ""; }; - 9C93B5840C6E0F129D4F74CCB9632334 /* RCTMultilineTextInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultilineTextInputView.h; sourceTree = ""; }; - 9D5B270D157A44EABB7F127CD15FAF52 /* EvilIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = EvilIcons.ttf; path = Fonts/EvilIcons.ttf; sourceTree = ""; }; - 9D7A5B8520C72549D4B692F6D4E984B3 /* React-RCTBlob.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTBlob.xcconfig"; sourceTree = ""; }; + 98CCE817C111B6B202BC9C93472A3BC4 /* RCTRedBoxExtraDataViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRedBoxExtraDataViewController.m; sourceTree = ""; }; + 98DD0EF3FB5C0F3A0B598C137808432C /* React-Core.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-Core.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 990878471A8D3809942AE1B5E4283D67 /* JSCallInvoker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JSCallInvoker.h; path = jscallinvoker/ReactCommon/JSCallInvoker.h; sourceTree = ""; }; + 9962F8716FC1C25BD3B90A213604E7C4 /* REAClockNodes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAClockNodes.h; sourceTree = ""; }; + 99BDBD13CBD7B84654906A7AB91AC055 /* UMImageLoaderInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMImageLoaderInterface.h; path = UMImageLoaderInterface/UMImageLoaderInterface.h; sourceTree = ""; }; + 99C645BF9C71F7D38DE9951B60B42998 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 9A60620470D0168DB7AA9664FC6015E9 /* RCTTransformAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTransformAnimatedNode.m; sourceTree = ""; }; + 9A70011370B46387FBFE517906404002 /* libRNFS.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNFS.a; path = libRNFS.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 9ACD9ED56677B214E7CF8CDB8458B058 /* RCTFont.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTFont.mm; sourceTree = ""; }; + 9AD73D3E84ED8357104BFCE0B64297DA /* RCTTextDecorationLineType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextDecorationLineType.h; sourceTree = ""; }; + 9B5BD241E880C1597209CCFED363D163 /* UMAppLifecycleService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMAppLifecycleService.h; sourceTree = ""; }; + 9C21BD99C4DDA6830D9C6931F9E92052 /* RCTImageURLLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageURLLoader.h; path = Libraries/Image/RCTImageURLLoader.h; sourceTree = ""; }; + 9CE079DFDA6F909F40D10CDFFBFFE6B3 /* RCTBaseTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextViewManager.h; sourceTree = ""; }; + 9CFA89935F176E7D697AB88081FCEE28 /* RCTSourceCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSourceCode.h; sourceTree = ""; }; + 9D0E2EAC7996BD1775A7634CA5B35E3D /* UMSensorsInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMSensorsInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 9D54075CCBBE8BABF61E2CC863B4D0C8 /* RCTSurfacePresenterStub.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSurfacePresenterStub.m; sourceTree = ""; }; + 9D63B378A9680A234B81C2861554C8AE /* EXRemoteNotificationPermissionRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXRemoteNotificationPermissionRequester.h; sourceTree = ""; }; 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 9DB13257361743EE2F575C2CBB8F6AB0 /* RCTSliderManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSliderManager.h; sourceTree = ""; }; - 9DDB2CFF8D681B72ABC207C9376CBB45 /* UMPermissionsMethodsDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMPermissionsMethodsDelegate.h; path = UMPermissionsInterface/UMPermissionsMethodsDelegate.h; sourceTree = ""; }; - 9EB620E9B6F530C44CBB867073CB21B7 /* RCTRawTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRawTextViewManager.h; sourceTree = ""; }; - 9EE18748CDAF6F8A53D944A9AB936579 /* REAParamNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAParamNode.h; sourceTree = ""; }; - 9EEC431B44896D533C1F77D26D1A84A9 /* React-RCTNetwork.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-RCTNetwork.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 9F3AB5B21672C8FD806A4A28041D7497 /* RCTBridge.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridge.h; sourceTree = ""; }; - 9F625AB4CF2D1A6D2986B43D91D6A37B /* JSIndexedRAMBundle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSIndexedRAMBundle.h; sourceTree = ""; }; - 9FA3D208A8E5EEBEB222001AF80737CD /* REAStyleNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAStyleNode.h; sourceTree = ""; }; - 9FA8077DD4C86BED2C7A26BA3EF9ABFD /* EXFileSystem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFileSystem.m; path = EXFileSystem/EXFileSystem.m; sourceTree = ""; }; - 9FE0F75AE364A7C1DE9F7AB5F38F8ABF /* EXDownloadDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXDownloadDelegate.h; path = EXFileSystem/EXDownloadDelegate.h; sourceTree = ""; }; - A07BA7286321363302BB46C5009ADF25 /* RCTCameraManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTCameraManager.m; path = ios/RCT/RCTCameraManager.m; sourceTree = ""; }; - A0AB68ECD1178BCB131EBDA07FA0B0D7 /* RCTUIManagerUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIManagerUtils.m; sourceTree = ""; }; - A0D16A2851CF6B1BC763CED058E8C6BC /* Orientation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Orientation.m; path = iOS/RCTOrientation/Orientation.m; sourceTree = ""; }; + 9D966D5F675EBCC32F38F17AB8AF9AAC /* React-RCTImage.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTImage.xcconfig"; sourceTree = ""; }; + 9DCB996BA90EA34FA9E61EB674C5D217 /* RCTRequired.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RCTRequired.xcconfig; sourceTree = ""; }; + 9DF7E7175EDC89CE632878838868F4FE /* UMTaskManagerInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMTaskManagerInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 9E0CA864C1AF0C38F5957BCB49759CC7 /* RCTTextView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextView.h; sourceTree = ""; }; + 9E44516640C7B0DA30FC8C3BF411EF8A /* RCTAlertManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAlertManager.h; sourceTree = ""; }; + 9E48BE69E25DFF1B74EE92BCE148F2E7 /* react-native-orientation-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-orientation-dummy.m"; sourceTree = ""; }; + 9E5C7155EB4B749183C593939F3F108F /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 9E8DA04D446D49A1405485C619B83588 /* React-RCTNetwork-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTNetwork-dummy.m"; sourceTree = ""; }; + 9E9B9BA9C061EB75DA804400702FB5E9 /* RCTInputAccessoryShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryShadowView.h; sourceTree = ""; }; + 9EC5B4816090F2B979DA04DA86AD4D26 /* RCTBundleURLProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBundleURLProvider.m; sourceTree = ""; }; + 9EF044147073AA8C6CA7FDE770DC2585 /* RCTSRWebSocket.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTSRWebSocket.m; path = Libraries/WebSocket/RCTSRWebSocket.m; sourceTree = ""; }; + 9F1A5FCAC27E7E72A12AFE754A607D49 /* UMTaskLaunchReason.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskLaunchReason.h; path = UMTaskManagerInterface/UMTaskLaunchReason.h; sourceTree = ""; }; + 9F5018CE0F6346D124D0A604BF93D1CF /* RCTCxxBridge.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxBridge.mm; sourceTree = ""; }; + 9F5C588284FE5D683F5BFFAD7FD5C944 /* RCTSurfaceView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceView.h; sourceTree = ""; }; + 9F9234CFA4F981CF70D590967D5C113D /* UMBarCodeScannerInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMBarCodeScannerInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 9FA99A854DCC538C71240342393A5143 /* READebugNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = READebugNode.h; sourceTree = ""; }; + A0DE6DE0A0DDE9A4ACCC4D090FEE6423 /* UMCameraInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMCameraInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; A0DF2B31B7D457EABDE9D1B967CEE7C5 /* boost-for-react-native.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "boost-for-react-native.xcconfig"; sourceTree = ""; }; - A0EC43392EB35229109BCBC6769D0BA2 /* RCTTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextShadowView.h; sourceTree = ""; }; - A0F661B6218B48E760FC74E9A9EB7975 /* RNImageUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNImageUtils.h; path = ios/RN/RNImageUtils.h; sourceTree = ""; }; - A14A4635526A8D683BD33DA62C88A288 /* RCTPlatform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTPlatform.h; path = React/CoreModules/RCTPlatform.h; sourceTree = ""; }; - A14D26C1C8F07530335D37BE501A8132 /* RCTProfileTrampoline-arm64.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-arm64.S"; sourceTree = ""; }; - A16EE34C910DCBB40CB0DF0379A9B3D5 /* UMAppLifecycleListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMAppLifecycleListener.h; sourceTree = ""; }; - A1A628292518E6EC2B90111C99F7B3ED /* JSCRuntime.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSCRuntime.cpp; sourceTree = ""; }; - A20DC3CF392D7C830A7E7E1334289C78 /* RCTRawTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRawTextViewManager.m; sourceTree = ""; }; - A21B276A3A3FB7598CF0260C179E61B0 /* RCTModalHostViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostViewManager.h; sourceTree = ""; }; + A17ACC19B4564E0010933AC0BC6A88C0 /* RNReanimated.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNReanimated.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + A17E2C6C9762C46BB50A58ACE410F9CC /* EXConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXConstants.m; path = EXConstants/EXConstants.m; sourceTree = ""; }; + A1F2EC047E594CFA4D0885FFA0C78CA8 /* RCTLinkingManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLinkingManager.m; sourceTree = ""; }; + A213275041290A01068D83FD72A5FB1B /* RNConvertPhAsset.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNConvertPhAsset.m; path = ios/RNConvertPhAsset.m; sourceTree = ""; }; + A21F26E7E4EEA58E334F1940975D606B /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; A225ED83E33DC48D25B9FF35BA50CCD0 /* libEXAppLoaderProvider.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXAppLoaderProvider.a; path = libEXAppLoaderProvider.a; sourceTree = BUILT_PRODUCTS_DIR; }; - A22622EF3326994B4ED2D05E406A8EDE /* UMBarCodeScannerInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMBarCodeScannerInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - A2287FA90E130F91559C400F63536366 /* UMFaceDetectorInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFaceDetectorInterface.xcconfig; sourceTree = ""; }; - A42B7E816325CB524A35343DB4D737F9 /* React-jsinspector.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-jsinspector.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - A47B989657B3F357255E8A16725FE627 /* UMMagnetometerUncalibratedInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMMagnetometerUncalibratedInterface.h; path = UMSensorsInterface/UMMagnetometerUncalibratedInterface.h; sourceTree = ""; }; - A48F913A3015CF47254B6AAE9B0FBCA5 /* experiments-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "experiments-inl.h"; sourceTree = ""; }; + A2860E16D1AA81E80508370F04F33A47 /* RCTNullability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTNullability.h; sourceTree = ""; }; + A28B13E7A998AD3E36A2CA10B7331D30 /* RCTAccessibilityManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAccessibilityManager.m; sourceTree = ""; }; + A2DB5EC90236A7AFF4F352B3CB99EC88 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + A2EB8E322708FCB4C38E823FD11F5614 /* RCTPointerEvents.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPointerEvents.h; sourceTree = ""; }; + A2ECB9FC67E295735737B5DA6DDA9D49 /* RCTDevMenu.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDevMenu.h; sourceTree = ""; }; + A31314635E65F4D915316FC30AE634E9 /* RCTPackagerClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPackagerClient.m; sourceTree = ""; }; + A36714787BDC9C09238A282576623035 /* RCTAnimationDriver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimationDriver.h; sourceTree = ""; }; + A383AA38C73126607CD716CD36C0F477 /* RCTActivityIndicatorViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTActivityIndicatorViewManager.m; sourceTree = ""; }; + A3F5DFC77E71D7B82A91ABA0508CC67E /* RCTShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTShadowView.m; sourceTree = ""; }; + A42C86E64992C86B3C76EFB7D365D1F7 /* RCTVideoPlayerViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTVideoPlayerViewController.m; path = ios/Video/RCTVideoPlayerViewController.m; sourceTree = ""; }; + A440C71D033BBE9BA55E93D52EADB32E /* UIView+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIView+Private.h"; sourceTree = ""; }; + A46471AA4E2D27413C601FBAD0D7DD10 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + A469E2616303D0AC55A0C6C90B5C98E9 /* RCTTypeSafety.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RCTTypeSafety.xcconfig; sourceTree = ""; }; + A48BEB7C07E8320F4DC27BD4E3E0447A /* RCTSegmentedControlManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSegmentedControlManager.m; sourceTree = ""; }; + A4BC0B3B28D58C6832EC6003F1017ED9 /* RCTComponentData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTComponentData.h; sourceTree = ""; }; A4FEA76D779F17972F10DC9E920A5CC4 /* Folly-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Folly-dummy.m"; sourceTree = ""; }; - A55903FE4C5244F252999AD46936959E /* JSIDynamic.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSIDynamic.cpp; sourceTree = ""; }; - A563DA35E862CC7B527D2A71FF53B49A /* RNGestureHandlerState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerState.h; path = ios/RNGestureHandlerState.h; sourceTree = ""; }; - A5A0EED8886E145BC9154833E8680BB5 /* JSCExecutorFactory.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = JSCExecutorFactory.mm; sourceTree = ""; }; - A5C5F73F1DE14E9BA4F8BAE69BFEC48E /* RCTVibration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVibration.m; sourceTree = ""; }; - A5D9A11FF1E5D2F0FECFE0BD52A7D9CA /* UMLogManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMLogManager.h; sourceTree = ""; }; - A5F50BE9119F0A88307B22813BEBDFC9 /* RCTImageViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageViewManager.m; sourceTree = ""; }; - A614C204B0CF0E7E4E9A05F62C402D84 /* RNGestureHandler.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNGestureHandler.xcconfig; sourceTree = ""; }; - A63FC4F6AAD03E59182B41BE8B64FAAF /* RCTInvalidating.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInvalidating.h; sourceTree = ""; }; + A503E0961E43C9CA12E1312F55B741CA /* UMTaskManagerInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMTaskManagerInterface.xcconfig; sourceTree = ""; }; + A52114C229DFA0C7355D82CF13BDC171 /* FBReactNativeSpec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBReactNativeSpec.h; path = FBReactNativeSpec/FBReactNativeSpec.h; sourceTree = ""; }; + A56C1F583615E2D8DB60374B5F9B752E /* UMSensorsInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMSensorsInterface.xcconfig; sourceTree = ""; }; + A5CA17E5AFBAB405E7B46D97883BE18D /* RNSScreen.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreen.h; path = ios/RNSScreen.h; sourceTree = ""; }; + A5D3627BD629932D9D693E27E71F3258 /* RCTImageUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageUtils.m; sourceTree = ""; }; + A5E1FA72468AD21AE8048E18EC0648E9 /* UMReactFontManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactFontManager.m; sourceTree = ""; }; + A5E23FA24B4A4D3A35D5F88EC5AEEAEE /* EXConstants.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXConstants.xcconfig; sourceTree = ""; }; + A601848B171E24C7F28225037D1140DE /* EXFileSystem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFileSystem.h; path = EXFileSystem/EXFileSystem.h; sourceTree = ""; }; + A640FC97D51C0EC6EA55BEBCF6A8E33F /* UIView+FindUIViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+FindUIViewController.h"; path = "ios/Video/UIView+FindUIViewController.h"; sourceTree = ""; }; A67E3871817DC07459AD8BCC126A6178 /* DoubleConversion.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DoubleConversion.xcconfig; sourceTree = ""; }; - A67F9C8C8DAFB94DA3E38DE52E9755C8 /* RCTCameraManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTCameraManager.h; path = ios/RCT/RCTCameraManager.h; sourceTree = ""; }; + A687EDEC5D12E60C4CC53503F6FD0146 /* RCTUITextView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUITextView.m; sourceTree = ""; }; A68E5A9B69A3BA0FD52CAF7A354EC93B /* libReact-RCTNetwork.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTNetwork.a"; path = "libReact-RCTNetwork.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - A6A6BD2D3FCC84D3D5D6EB98791D798A /* UMUtilities.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMUtilities.m; path = UMCore/UMUtilities.m; sourceTree = ""; }; - A6F81D1E00159C60DEDF1F6D93BB727F /* RCTFont.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFont.h; sourceTree = ""; }; - A72E22033170BF0B3016A1CC0F7A8B74 /* RCTWebSocketExecutor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTWebSocketExecutor.m; path = Libraries/WebSocket/RCTWebSocketExecutor.m; sourceTree = ""; }; - A7D0D56475BE8F593A5E14868FB1983F /* React-RCTText.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-RCTText.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - A7D675764C87B181AC0A36BFF9B4BD47 /* UMTaskManagerInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMTaskManagerInterface.xcconfig; sourceTree = ""; }; - A8065E04FFEC55C1B6069CC4ED4E7B92 /* RCTMaskedView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMaskedView.h; sourceTree = ""; }; - A8715A1BCCFD8FC20A034A78275DBDCD /* RCTSurfacePresenterStub.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSurfacePresenterStub.m; sourceTree = ""; }; - A8A3A4CAA8748E26831A9BCB9FAA66CE /* RCTDevSettings.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTDevSettings.mm; sourceTree = ""; }; - A8EF390CABA3A0ADD137B4981393CEAA /* NativeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NativeModule.h; sourceTree = ""; }; - A92EFFF272A0EA0FC429F1F65C1ED263 /* UMLogHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMLogHandler.h; sourceTree = ""; }; - A97F3E1AD4F67D4AB165E1C269D6E11B /* React-jsiexecutor.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-jsiexecutor.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + A6B9F5BD4BBF21813F7CD193FEBA4BE7 /* React-jsiexecutor.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-jsiexecutor.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + A6EBD4FBB705B457C5AD1F271A6365B2 /* READebugNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = READebugNode.m; sourceTree = ""; }; + A724C78E2286A87FF51042B47EFF6039 /* RNRootViewGestureRecognizer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNRootViewGestureRecognizer.m; path = ios/RNRootViewGestureRecognizer.m; sourceTree = ""; }; + A76D4EE9AAE9E915EA3078ADD2B38669 /* RCTBridge.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridge.h; sourceTree = ""; }; + A7B1B351FA386E492267DCCFAE681CCC /* RCTDiffClampAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDiffClampAnimatedNode.m; sourceTree = ""; }; + A7BF460147BE7E60F26B9F23CEFF91EC /* RCTBackedTextInputDelegateAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputDelegateAdapter.h; sourceTree = ""; }; + A7EED9FC6A1B5CC8EE2099A4FD6820AE /* UMLogManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMLogManager.m; sourceTree = ""; }; + A7EEEA56EBE56384566179197039D143 /* BridgeJSCallInvoker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BridgeJSCallInvoker.h; path = jscallinvoker/ReactCommon/BridgeJSCallInvoker.h; sourceTree = ""; }; + A83DA77DA2E7E838F9C91EE45DDA18AE /* UMCameraInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMCameraInterface.xcconfig; sourceTree = ""; }; + A84A06C4C7EB7C03F6BD3C2B557B1E0B /* Bitfield.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Bitfield.h; path = yoga/Bitfield.h; sourceTree = ""; }; + A86DF5A6816C0CDAFA5DCE4C09A2AE65 /* RCTPicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPicker.m; sourceTree = ""; }; + A8C72B04510F2FD9E634872D8FCF810C /* RCTFollyConvert.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTFollyConvert.mm; sourceTree = ""; }; + A965ABB094651BB1367120B749FDC2A3 /* RCTImageBlurUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageBlurUtils.m; sourceTree = ""; }; A9A121EB668732FBAC70C8E5DD643D6F /* json.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = json.cpp; path = folly/json.cpp; sourceTree = ""; }; - A9A40BF2069B23ED1B6256FFC4671B3A /* RCTSurfaceHostingProxyRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceHostingProxyRootView.h; sourceTree = ""; }; - A9AEEB5317CBB3525A577890A300AB7C /* REABlockNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REABlockNode.h; sourceTree = ""; }; - A9D0B8D18725FBE98A7CE8F979D4D0BC /* RCTJavaScriptLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJavaScriptLoader.h; sourceTree = ""; }; - AA08217600FF87240F2ABF6EF3EC3571 /* REACallFuncNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REACallFuncNode.m; sourceTree = ""; }; - AA240960F9D895D9E7EC797345D9BC76 /* RNReanimated-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNReanimated-dummy.m"; sourceTree = ""; }; - AA35B0C12E917CD830D16D76E84276A0 /* RNVectorIconsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNVectorIconsManager.h; path = RNVectorIconsManager/RNVectorIconsManager.h; sourceTree = ""; }; - AA5216790B663069224B852754906999 /* React-Core.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-Core.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - AA7CC2FFD8E25FD2FAE5BCC2FF267E52 /* RCTDecayAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDecayAnimation.m; sourceTree = ""; }; - AABE711E721EF49CBF3D80CD20E84065 /* RCTBlobCollector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBlobCollector.h; sourceTree = ""; }; - AB50854B0DB3E5C0604C2985B47E9875 /* UMUserNotificationCenterProxyInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMUserNotificationCenterProxyInterface.h; path = UMPermissionsInterface/UMUserNotificationCenterProxyInterface.h; sourceTree = ""; }; - ABBDAAF2A5D55B4750E480B170BE921A /* EXAppRecordInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXAppRecordInterface.h; sourceTree = ""; }; + A9AC11E9C4EBA30121139ABC9DD3721F /* NSArray+Map.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "NSArray+Map.m"; sourceTree = ""; }; + A9CCE015207CB356D2540CF06488F73A /* RCTPlatform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTPlatform.h; path = React/CoreModules/RCTPlatform.h; sourceTree = ""; }; + A9E459B1F2C3D1FB528DC2BFDEE15371 /* RNForceTouchHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNForceTouchHandler.m; sourceTree = ""; }; + A9E5D254BF0FE173F00BF431FCEEB634 /* RCTSurfaceSizeMeasureMode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceSizeMeasureMode.h; sourceTree = ""; }; + AA1929C5F2EBA33ED7EE345B42D7F059 /* RCTBackedTextInputDelegateAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBackedTextInputDelegateAdapter.m; sourceTree = ""; }; + AA220265858705F92F8B58F404D01A80 /* UMReactNativeAdapter.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMReactNativeAdapter.xcconfig; sourceTree = ""; }; + AA5FA871B169560692C6DDBD745A68FF /* RCTTextView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextView.m; sourceTree = ""; }; + AB028410BB24CF42EF3382F3BA71E505 /* RCTNativeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTNativeModule.h; sourceTree = ""; }; + AB2CD411583043DB74204C0ADEAECC7E /* REAAlwaysNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAAlwaysNode.h; sourceTree = ""; }; + AB68F41F582C06F19D1EA064C1B7278B /* RCTUIManagerObserverCoordinator.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTUIManagerObserverCoordinator.mm; sourceTree = ""; }; + AB72953C79447B5507E02F698EF1E39B /* react-native-cameraroll.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-cameraroll.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + AB7699772AC1B4F8C41E96643BF3B5A5 /* JSINativeModules.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = JSINativeModules.cpp; path = jsireact/JSINativeModules.cpp; sourceTree = ""; }; + ABBA53DEA836681216154574629882C3 /* RCTRefreshControlManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRefreshControlManager.m; sourceTree = ""; }; + ABC4DC8E4F8901337D8571776B64E9E8 /* REAParamNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAParamNode.m; sourceTree = ""; }; ABFEEA82A6C346B22843FBE0B0582182 /* libFBReactNativeSpec.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFBReactNativeSpec.a; path = libFBReactNativeSpec.a; sourceTree = BUILT_PRODUCTS_DIR; }; - AC034016018228A5B98655C28AFBE96F /* RCTFollyConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFollyConvert.h; sourceTree = ""; }; - AC4FA1B381716947813C53059476AA19 /* RCTValueAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTValueAnimatedNode.m; sourceTree = ""; }; - ACDAED66F2340F63BD1BB670495D082B /* RNPinchHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNPinchHandler.m; sourceTree = ""; }; - AD06A1BE05009B425E8A40A317B17F8A /* React.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = React.xcconfig; sourceTree = ""; }; + AC155F125D5AA52A343929FE7BDAC626 /* RCTModalHostViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostViewController.m; sourceTree = ""; }; + AC21FDFD3CDAD88BB90D983E7ABCFF77 /* UMModuleRegistryDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryDelegate.h; sourceTree = ""; }; + AC80CA6CB0023C211AC987BCDE542AC5 /* RCTSwitchManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSwitchManager.h; sourceTree = ""; }; + AC921E0F770DDDC35E3844E971F7B979 /* UMPermissionsInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMPermissionsInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + ACA84FD7D9EC2C88AF577CC08132B709 /* threadsafe.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = threadsafe.h; sourceTree = ""; }; + ACBF25313F605F6D762E1ED0B3890530 /* JSModulesUnbundle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSModulesUnbundle.h; sourceTree = ""; }; AD30CF9426D8BEBDDC6A207B021A513A /* raw_logging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = raw_logging.h; path = src/glog/raw_logging.h; sourceTree = ""; }; + AD96FD80389FAF24C192D44EEBF1CCA2 /* MessageQueueThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MessageQueueThread.h; sourceTree = ""; }; AD99F46253DE1DABC274EF83FEE70A4E /* ScopeGuard.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ScopeGuard.cpp; path = folly/ScopeGuard.cpp; sourceTree = ""; }; - ADAABF21100F405B63720EFEEE6085EB /* RCTTextView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextView.m; sourceTree = ""; }; - AE256E6A9C11D469359003E1DC7AE7DE /* React-jsinspector-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-jsinspector-dummy.m"; sourceTree = ""; }; - AE549E6ED0E9983CD0D62B5868769621 /* RCTPropsAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPropsAnimatedNode.h; sourceTree = ""; }; - AEB3A2D91D0935A8347BE0B1E2BE3DAC /* UMSingletonModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMSingletonModule.m; path = UMCore/UMSingletonModule.m; sourceTree = ""; }; - AEDED901194A7C82DD4B794089A3EF1D /* RNGestureHandlerRegistry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerRegistry.m; path = ios/RNGestureHandlerRegistry.m; sourceTree = ""; }; + ADB52200B41DC832B505A6A53FF161D9 /* RCTKeyboardObserver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTKeyboardObserver.h; sourceTree = ""; }; + ADF5A9DB359B3E4333BBC0C07CEA3738 /* RCTMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMacros.h; sourceTree = ""; }; + AE1E9B0AD2301AC8764A8457A7E4AEA7 /* TurboCxxModule.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TurboCxxModule.cpp; path = turbomodule/core/TurboCxxModule.cpp; sourceTree = ""; }; + AE4980713AC7959A1F9231387F8E5C72 /* React-RCTText-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTText-dummy.m"; sourceTree = ""; }; + AEBD49A8C680BFD0B16A29B5965C404D /* RCTBridgeMethod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeMethod.h; sourceTree = ""; }; + AEF99DA48A8333AD07744B757CC6AFA7 /* EXFileSystem.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXFileSystem.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + AF0FA27995E607831DEF37A77595C493 /* RCTBlobCollector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBlobCollector.h; sourceTree = ""; }; + AF49C4C2500230C63A9EBE908722AFBB /* MaterialIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = MaterialIcons.ttf; path = Fonts/MaterialIcons.ttf; sourceTree = ""; }; AF5FEFBFE2542D115E781E1196528FEA /* Demangle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Demangle.cpp; path = folly/detail/Demangle.cpp; sourceTree = ""; }; AF72FD600DE7E2D330BA50F877993E05 /* libUMCore.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libUMCore.a; path = libUMCore.a; sourceTree = BUILT_PRODUCTS_DIR; }; - AF7B7B8AEF46B2B6322D96E955304824 /* RNGestureHandlerButton.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerButton.m; path = ios/RNGestureHandlerButton.m; sourceTree = ""; }; - AF9779DE8AD88866F94701EEDE91E756 /* React.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = React.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - AFBF20A6BECDA091CBA13D2B8E472D06 /* react-native-orientation.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-orientation.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + AFE515FD08BDC9DB7624044BC2D6C1A6 /* YGStyle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGStyle.h; path = yoga/YGStyle.h; sourceTree = ""; }; B00D670DA1C8FBE1E86AEDFBE8D4B36E /* F14Table.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = F14Table.cpp; path = folly/container/detail/F14Table.cpp; sourceTree = ""; }; - B055B23AC0FBB8FBA619EE474BA25582 /* UMDeviceMotionInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMDeviceMotionInterface.h; path = UMSensorsInterface/UMDeviceMotionInterface.h; sourceTree = ""; }; + B0189DD220FC52262BD69028449F639E /* RCTProfile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTProfile.h; sourceTree = ""; }; + B03A2DACE2650E67AA35EF6EE5FBB1AE /* InspectorInterfaces.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = InspectorInterfaces.cpp; sourceTree = ""; }; B058F035CFD84ECBF8414E4EAE5834FC /* libreact-native-video.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libreact-native-video.a"; path = "libreact-native-video.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - B07E1722D506BDE270C22A0B50991260 /* React-RCTAnimation-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTAnimation-prefix.pch"; sourceTree = ""; }; - B0877B53FC2A3E1D5C69ED4F13410A56 /* RCTTextView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextView.h; sourceTree = ""; }; - B0AA41B36B9153B4E6F656CE44686C36 /* REABezierNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REABezierNode.m; sourceTree = ""; }; - B0AC09A08C3E0F1D884BA4C2C78EAF0B /* Fontisto.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Fontisto.ttf; path = Fonts/Fontisto.ttf; sourceTree = ""; }; - B10B0088C471DC66528A7241F441A27E /* RCTVideoPlayerViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTVideoPlayerViewController.m; path = ios/Video/RCTVideoPlayerViewController.m; sourceTree = ""; }; - B16B67996C2B2F57E7297F99D3552851 /* RNGestureHandler-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNGestureHandler-dummy.m"; sourceTree = ""; }; - B1B129C745244EA3B453CA72DA8FBB1A /* RCTReloadCommand.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTReloadCommand.h; sourceTree = ""; }; - B1E4E0975FDEA1705A7950DD62784FDA /* RCTSwitchManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSwitchManager.h; sourceTree = ""; }; - B214FF4432545598B88EF755A5179DA8 /* UMPermissionsInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMPermissionsInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - B2325C71D792BEA03D7B7038F72B6BB5 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - B2709C2A2A82DF59B93920E343F0BF71 /* RCTDisplayLink.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDisplayLink.m; sourceTree = ""; }; - B276013B3739D9B0DFDD8BD868440477 /* RCTInterpolationAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInterpolationAnimatedNode.m; sourceTree = ""; }; - B2EF11B29D406CC845A86545090C709A /* jsilib-windows.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = "jsilib-windows.cpp"; sourceTree = ""; }; - B2F07DADD3BEA2130319C8B14C68DE8A /* REATransitionValues.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransitionValues.m; sourceTree = ""; }; - B302632E0A609AF3A7C36D4508EF2737 /* RNCameraUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCameraUtils.h; path = ios/RN/RNCameraUtils.h; sourceTree = ""; }; - B30B2ED5CBD3170E4542399767A54AB7 /* RCTLog.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTLog.mm; sourceTree = ""; }; + B095B568D03E6DA24B9EC6BDD96CDA5B /* Octicons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Octicons.ttf; path = Fonts/Octicons.ttf; sourceTree = ""; }; + B1317A709B24821FB990E3E0ED0C7424 /* RNFS.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFS.xcconfig; sourceTree = ""; }; + B163EB9C3DEDEE82BF61C93C66BAB736 /* NSDataBigString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NSDataBigString.h; sourceTree = ""; }; + B173B113E341AF49AD9F89830F301CB0 /* TurboModuleBinding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TurboModuleBinding.h; path = turbomodule/core/TurboModuleBinding.h; sourceTree = ""; }; + B17702B86687C5A50CC3FDFCC1189B91 /* React-jsi-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-jsi-dummy.m"; sourceTree = ""; }; + B1C9728C371E27A29ACBE79CFB110E51 /* RNFlingHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFlingHandler.m; sourceTree = ""; }; + B1E5C32BC3B85C240C9279005D2E2735 /* RNFaceDetectorModuleMLKit.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFaceDetectorModuleMLKit.m; path = ios/RN/RNFaceDetectorModuleMLKit.m; sourceTree = ""; }; + B22E6BB2E5A45377D079CFC42003A094 /* RCTModalHostView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostView.m; sourceTree = ""; }; + B2315634F42CC21AC5F8FC1D3F273F9E /* RCTTouchHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTouchHandler.h; sourceTree = ""; }; + B24AF3D3CD5691B399C71946A9EFB2F3 /* RNFS.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNFS.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + B25F1DE9B06E555DF5413D4F404518EF /* RNCameraUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCameraUtils.h; path = ios/RN/RNCameraUtils.h; sourceTree = ""; }; + B2E8F68F68F88C8EA38AD07BF555AAD3 /* RCTDeviceInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDeviceInfo.h; sourceTree = ""; }; + B2ED732CD676556305D652460FD2A07A /* RCTUIUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIUtils.m; sourceTree = ""; }; B3468F61FDF50256D47661DBE91600A0 /* bignum-dtoa.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "bignum-dtoa.cc"; path = "double-conversion/bignum-dtoa.cc"; sourceTree = ""; }; - B3557E1750E4CA0C50DE71D9F5E70DA5 /* React-Core.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-Core.xcconfig"; sourceTree = ""; }; - B39A68DA30BEA6706508ED0BC07600A5 /* FBReactNativeSpec-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FBReactNativeSpec-prefix.pch"; sourceTree = ""; }; - B473093B3848ADE141E9543E7A692506 /* RCTUIManagerObserverCoordinator.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTUIManagerObserverCoordinator.mm; sourceTree = ""; }; - B54F44131C9ED95D0FD60F06F129AA1F /* EXAppLoaderProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAppLoaderProvider.h; path = EXAppLoaderProvider/EXAppLoaderProvider.h; sourceTree = ""; }; - B59B620B27E493DC4791A71E5BB8AE41 /* RCTKeyCommands.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTKeyCommands.m; sourceTree = ""; }; - B5DBEA77F485ECC234109C0F6AC30C19 /* NSTextStorage+FontScaling.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "NSTextStorage+FontScaling.m"; sourceTree = ""; }; - B603C64F9D0065A639F19EDE4F8D85A4 /* RCTSafeAreaShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaShadowView.h; sourceTree = ""; }; + B3922BC1CCF6E018444C351A3ECFF2F2 /* RCTTextSelection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextSelection.h; sourceTree = ""; }; + B39D9ABDE0B3B30EC13029D95F9E1B71 /* RCTModalHostView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostView.h; sourceTree = ""; }; + B428375BEA1E50DA29ECA38A9CB83665 /* EXFileSystem-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXFileSystem-dummy.m"; sourceTree = ""; }; + B45725A360E4D3C289C92AE8F3762E1A /* RNPanHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNPanHandler.m; sourceTree = ""; }; + B519FEA9D00472E76869F6690BD88A9A /* EXConstantsService.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXConstantsService.m; path = EXConstants/EXConstantsService.m; sourceTree = ""; }; + B51DBE3A02CBA8F41F7F3B28B45883EF /* EXFileSystemAssetLibraryHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFileSystemAssetLibraryHandler.h; path = EXFileSystem/EXFileSystemAssetLibraryHandler.h; sourceTree = ""; }; + B526BAC58C528A75A588995980C8C245 /* RCTCxxUtils.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxUtils.mm; sourceTree = ""; }; + B54306C9D682A038DCC1A066679E78DC /* ReactCommon.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ReactCommon.xcconfig; sourceTree = ""; }; + B5B62FA91CE30284F9DF5799D7B93216 /* JSBundleType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSBundleType.h; sourceTree = ""; }; + B5CB9EAB9907872085D0EC1E8E9F7967 /* RNCCameraRollManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCCameraRollManager.h; path = ios/RNCCameraRollManager.h; sourceTree = ""; }; B6383B11B3C2B5AF20D2358AF8DF6C3D /* raw_logging.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = raw_logging.cc; path = src/raw_logging.cc; sourceTree = ""; }; - B678BC6D229F07865815E5BA9413FF00 /* UMBarCodeScannerProviderInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBarCodeScannerProviderInterface.h; path = UMBarCodeScannerInterface/UMBarCodeScannerProviderInterface.h; sourceTree = ""; }; - B67C910F38A433A36F42D27D38770D44 /* RCTInspector.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTInspector.mm; sourceTree = ""; }; + B66BD8CA276906DE829BE569CD1274F3 /* RCTImageStoreManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageStoreManager.h; path = React/CoreModules/RCTImageStoreManager.h; sourceTree = ""; }; B68CD25EA6675AEEFDEE392BC8C32F0D /* bignum.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bignum.h; path = "double-conversion/bignum.h"; sourceTree = ""; }; - B6D3EE1EA781274E53C552B5C1F75F16 /* react-native-ffmpeg-logo-v2.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "react-native-ffmpeg-logo-v2.png"; path = "docs/assets/react-native-ffmpeg-logo-v2.png"; sourceTree = ""; }; - B6EDDFDC6BAB43C9BCF97A00C15AFC20 /* RCTMaskedViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMaskedViewManager.m; sourceTree = ""; }; - B7E7C84F80916996363F62EA6C84CB67 /* EXPermissions.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXPermissions.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - B7ED9E728E1879BEDAAA5B48CD7D038C /* EXPermissions-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXPermissions-prefix.pch"; sourceTree = ""; }; - B7F94D66B638D1AD7A0FD3E0A0D3281A /* RCTBorderStyle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBorderStyle.h; sourceTree = ""; }; - B82090EB2C3365D5C668E652FF2894D6 /* YGConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGConfig.h; path = yoga/YGConfig.h; sourceTree = ""; }; - B8462D1C1CD72600D02606E0D5D32E09 /* RCTCxxBridgeDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxBridgeDelegate.h; sourceTree = ""; }; - B882D8D412F9B7FACDE0FB7D97378AE7 /* JSExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSExecutor.h; sourceTree = ""; }; + B6E8DD7802A68BF929AF0C21DA4C51DE /* RCTInputAccessoryViewContent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryViewContent.m; sourceTree = ""; }; + B6FDE0C17E514110101CF5EE33A548CE /* FBLazyIterator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLazyIterator.h; path = FBLazyVector/FBLazyIterator.h; sourceTree = ""; }; + B7022B2758CE00F37CB7187984EE6EF8 /* react-native-camera-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-camera-dummy.m"; sourceTree = ""; }; + B79398FA68A7675940E92E76D2D33BA3 /* RCTRootContentView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootContentView.m; sourceTree = ""; }; + B797B53C92785CD13CCDCB1D334D3AB1 /* RCTSurfaceRootShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootShadowView.h; sourceTree = ""; }; + B79997B62AB9572D3CCC46E3770013D2 /* react-native-safe-area-context.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-safe-area-context.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + B7FD57CD3F5ED96C13A6A70B82BCADA4 /* UMEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMEventEmitter.h; sourceTree = ""; }; + B852424FD0B1E11CA4438B84D063F81E /* Ionicons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Ionicons.ttf; path = Fonts/Ionicons.ttf; sourceTree = ""; }; + B876C31A7EED581B52E044A4B5DF0A9C /* RNSensorOrientationChecker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSensorOrientationChecker.m; path = ios/RN/RNSensorOrientationChecker.m; sourceTree = ""; }; + B8AD045B2BA52901424575F3317E5E6E /* RCTSpringAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSpringAnimation.m; sourceTree = ""; }; B8CD4B9B578CE9FA38114B638C9CAA78 /* libRNCMaskedView.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNCMaskedView.a; path = libRNCMaskedView.a; sourceTree = BUILT_PRODUCTS_DIR; }; - B8F6E7FE66DC80E02E433801E75785DB /* RCTScrollContentShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentShadowView.h; sourceTree = ""; }; + B95FAA85FEEA6A680A81144AEF1CB07E /* RCTSurfaceHostingView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceHostingView.mm; sourceTree = ""; }; B963363E955DB3FFD6505036AF684873 /* json_pointer.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = json_pointer.cpp; path = folly/json_pointer.cpp; sourceTree = ""; }; - B9B0E1C7DC0E662857F29B87E8B0DC5D /* RCTTurboModuleManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTTurboModuleManager.mm; sourceTree = ""; }; - B9F15C3F633CC8582CEC75116AB0A4D3 /* YGStyle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGStyle.cpp; path = yoga/YGStyle.cpp; sourceTree = ""; }; - B9FE3F82CF6C7EB13A7446DE7657ADB1 /* RCTRootContentView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootContentView.h; sourceTree = ""; }; - BA0D02AB25FD68CE5D6938980F487B06 /* RCTCxxModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxModule.mm; sourceTree = ""; }; - BA0EC66F7C215917F4A8B5BF4B40D360 /* RCTShadowView+Internal.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTShadowView+Internal.m"; sourceTree = ""; }; - BA8E0DB04791DD6AF156286B135903D6 /* Yoga.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Yoga.h; path = yoga/Yoga.h; sourceTree = ""; }; - BAB2051BFBF1D5BD05638AC8E7B85109 /* UMCameraInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMCameraInterface.h; path = UMCameraInterface/UMCameraInterface.h; sourceTree = ""; }; - BABE3B01D22EF36FA4A43A982614D34B /* RCTInspectorDevServerHelper.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTInspectorDevServerHelper.mm; sourceTree = ""; }; - BAE0B1DDD1361D57249A00403015CA3E /* RCTEventEmitter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventEmitter.m; sourceTree = ""; }; - BAE68FB1457755DB7C3EE35937FCA664 /* YGLayout.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGLayout.cpp; path = yoga/YGLayout.cpp; sourceTree = ""; }; - BB32CC8778C293681E90A0064EE7967A /* RCTDivisionAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDivisionAnimatedNode.m; sourceTree = ""; }; - BBADBB1EA2E5AE0FF6AC7976797BC216 /* RCTSinglelineTextInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSinglelineTextInputView.h; sourceTree = ""; }; - BC0A767680AA2AAAE602C039A71661B3 /* RCTScrollContentView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentView.h; sourceTree = ""; }; - BC4079889AA80BA81374663D7EA9F872 /* Utils.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Utils.cpp; path = yoga/Utils.cpp; sourceTree = ""; }; + B989810CCBCDD1146AD9197863AE3044 /* RCTFPSGraph.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFPSGraph.h; sourceTree = ""; }; + B999A89E5ED7004030001B59E1EECEB8 /* REATransformNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransformNode.h; sourceTree = ""; }; + BA021CE6120B35A88E9D681504B8D2BF /* TurboModuleUtils.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TurboModuleUtils.cpp; path = turbomodule/core/TurboModuleUtils.cpp; sourceTree = ""; }; + BA8405276B05AE7F12428C8E0E3227DD /* RNCAsyncStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCAsyncStorage.m; path = ios/RNCAsyncStorage.m; sourceTree = ""; }; + BABD24B1EEE0B492114096ADC933B08C /* EXPermissions-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXPermissions-prefix.pch"; sourceTree = ""; }; + BAFC2F59B7AA5F73EB0F8C16C1470DB4 /* RCTModuleMethod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuleMethod.h; sourceTree = ""; }; + BB07D988A0349BB39E57ADB1D76AA3D7 /* JSIDynamic.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSIDynamic.h; sourceTree = ""; }; + BB2233517BFA621E2B17C1572520B323 /* RCTSurface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurface.h; sourceTree = ""; }; + BB5329DC83B405A969DCA856790D24FA /* RNGestureHandlerDirection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerDirection.h; path = ios/RNGestureHandlerDirection.h; sourceTree = ""; }; + BBAFF1E655AACC306AA83FF5E8546A9A /* LICENSE.md */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE.md; sourceTree = ""; }; + BBE93666BF63C56906619CAAF5D3A83C /* UMDeviceMotionInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMDeviceMotionInterface.h; path = UMSensorsInterface/UMDeviceMotionInterface.h; sourceTree = ""; }; + BC05DCB46DCDF1965011246868A42219 /* FBLazyVector.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = FBLazyVector.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + BC26774C0CE80C801CD09DEB3E1D9A32 /* RCTConvert+CoreLocation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+CoreLocation.h"; sourceTree = ""; }; BC41F4BEFC115303267857B135A144AE /* libUMPermissionsInterface.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libUMPermissionsInterface.a; path = libUMPermissionsInterface.a; sourceTree = BUILT_PRODUCTS_DIR; }; - BC7B987A2643AD0AC61C4F13E6E5E902 /* REAConcatNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAConcatNode.h; sourceTree = ""; }; - BC9271F21EF0A5B2E2926F82A3E134D0 /* RCTEventDispatcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventDispatcher.m; sourceTree = ""; }; - BCAF079CC0A283FEE718C35985733CB5 /* RCTImageSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTImageSource.h; sourceTree = ""; }; - BCD5A3F39E58D13067520B07C64D32A1 /* READebugNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = READebugNode.m; sourceTree = ""; }; - BD049275A32211837C6AC17E3354FDAB /* REAStyleNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAStyleNode.m; sourceTree = ""; }; + BC70A9FA10710502480A43FD3FC40313 /* RCTBridgeDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeDelegate.h; sourceTree = ""; }; + BCD7AC01B5770CD8F8939E574EF1746B /* RCTSurfaceStage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSurfaceStage.m; sourceTree = ""; }; + BCEEB6CC08F4F47E8C855E7E94CCEAA7 /* RNVectorIcons-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNVectorIcons-prefix.pch"; sourceTree = ""; }; + BD4945BB6ADB88C1A20F380D4B42C083 /* RCTJSStackFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJSStackFrame.h; sourceTree = ""; }; BD71E2539823621820F84384064C253A /* libReact-Core.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-Core.a"; path = "libReact-Core.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - BDE86DA84FE2FCEE28B1159272AB3DA3 /* RCTPackagerClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPackagerClient.h; sourceTree = ""; }; - BE7CF68B670457DC7DBBCE6E71AB08FA /* RCTSegmentedControl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSegmentedControl.h; sourceTree = ""; }; - BE83C0792637B8B8DB489B929531CE8F /* Ionicons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Ionicons.ttf; path = Fonts/Ionicons.ttf; sourceTree = ""; }; - BEA6A7677E45C4E4824F58DFACBFBEB1 /* RNGestureHandlerButton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerButton.h; path = ios/RNGestureHandlerButton.h; sourceTree = ""; }; - BEBD1817719495010A54D5DF04D9B4D0 /* RCTDivisionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDivisionAnimatedNode.h; sourceTree = ""; }; - BF1A98845E48D5BF8842906200736FEA /* CxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CxxModule.h; sourceTree = ""; }; - BF3D2935C5B3E3096A7686944A81CCCA /* RNSensorOrientationChecker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSensorOrientationChecker.m; path = ios/RN/RNSensorOrientationChecker.m; sourceTree = ""; }; - BF5AD8641E801494D77B980A094103CF /* UMImageLoaderInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMImageLoaderInterface.xcconfig; sourceTree = ""; }; - BF94741026CF9A250BB4A29F327BD816 /* RNRotationHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNRotationHandler.h; sourceTree = ""; }; - BFAD886CFAE0E9E9F83A8CCEC4C8FC48 /* BarcodeDetectorManagerMlkit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BarcodeDetectorManagerMlkit.h; path = ios/RN/BarcodeDetectorManagerMlkit.h; sourceTree = ""; }; - C01E871F0A701A51A86D186F02A7FFE8 /* RCTDiffClampAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDiffClampAnimatedNode.h; sourceTree = ""; }; - C03CA2C4613272A5A860B5FD0059C75D /* EXUserNotificationPermissionRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXUserNotificationPermissionRequester.h; sourceTree = ""; }; - C03DE86B6183B91A2D1002ECD0F3C633 /* RCTBaseTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextShadowView.m; sourceTree = ""; }; - C060BB77DB978ECF0CD3B972AF31B996 /* RCTAnimationType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimationType.h; sourceTree = ""; }; - C06D8765E54E0CA504170A6131FD3428 /* RCTDevLoadingView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDevLoadingView.m; sourceTree = ""; }; - C07798D7CB54B93C55D5A3C3BCEFC2A1 /* RCTNativeAnimatedModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNativeAnimatedModule.h; path = Libraries/NativeAnimation/RCTNativeAnimatedModule.h; sourceTree = ""; }; - C07C61D3CB14F6722D3F4A411DBF04EB /* RCTActivityIndicatorView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTActivityIndicatorView.h; sourceTree = ""; }; - C0E322BF48D21B54242D50BA87D0C0CA /* React-jsi.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsi.xcconfig"; sourceTree = ""; }; - C1186510553C9A19A8FF00CEE125117A /* RCTTextAttributes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextAttributes.m; sourceTree = ""; }; - C15C6F75EA5EF2622D340FDA0BA279C3 /* JsArgumentHelpers-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "JsArgumentHelpers-inl.h"; sourceTree = ""; }; - C16C3CC1916DDC683966A0D5EA5C2636 /* RNCamera.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCamera.m; path = ios/RN/RNCamera.m; sourceTree = ""; }; + BD8B53154FDEBA03EAD83249F3345F33 /* RCTManagedPointer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTManagedPointer.h; sourceTree = ""; }; + BD9837B6437255BCB859B00D04472465 /* REATransitionManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransitionManager.h; sourceTree = ""; }; + BDC5D614AAEE255FBE94F9F91DA40A75 /* RCTFrameAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFrameAnimation.m; sourceTree = ""; }; + BDC7287F939A2089243201265B5D4CE1 /* RNSensorOrientationChecker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSensorOrientationChecker.h; path = ios/RN/RNSensorOrientationChecker.h; sourceTree = ""; }; + BE432DBCA3E0939375CDE4AF21E03C89 /* UIView+React.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIView+React.h"; sourceTree = ""; }; + BE7BAACE531DAB1F221383ADF0E3031E /* RCTCamera.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTCamera.m; path = ios/RCT/RCTCamera.m; sourceTree = ""; }; + BE8C3334D320B525C489D29C24ADC12F /* CameraFocusSquare.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CameraFocusSquare.h; path = ios/RCT/CameraFocusSquare.h; sourceTree = ""; }; + BE8F624CB1E9B71FD4BC3BBE26488671 /* RNConvertPhAsset.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNConvertPhAsset.xcconfig; sourceTree = ""; }; + BEBC596E8638F1F2819A6828DBE4366A /* RCTErrorCustomizer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTErrorCustomizer.h; sourceTree = ""; }; + BEF33791C98F694E5064D0860B8FADF8 /* YGValue.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGValue.cpp; path = yoga/YGValue.cpp; sourceTree = ""; }; + BEF5CE9AAA106E0EE624C3AEC74AA7A7 /* RCTUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUtils.h; sourceTree = ""; }; + BF038208A066AA28364E20A083A99337 /* JSExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSExecutor.cpp; sourceTree = ""; }; + BF4404D75AD35BE4987451ABF2094D66 /* REAValueNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAValueNode.h; sourceTree = ""; }; + BF515B65E3E57FF8892B526C747577D4 /* React-RCTActionSheet-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTActionSheet-dummy.m"; sourceTree = ""; }; + BF541A0E0B90E487DCF1C8C83BA94220 /* React-Core.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-Core.xcconfig"; sourceTree = ""; }; + C00C80DEDA37F0457FF4A47EB2050871 /* UMViewManagerAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMViewManagerAdapter.h; sourceTree = ""; }; + C018934F675726B435D15A584F8A5DDA /* UMGyroscopeInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMGyroscopeInterface.h; path = UMSensorsInterface/UMGyroscopeInterface.h; sourceTree = ""; }; + C06F6AE585DE1149F919225F819362A9 /* RCTUIManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManager.h; sourceTree = ""; }; + C18C36CE503A7445165F3086223CEB03 /* RCTProgressViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTProgressViewManager.h; sourceTree = ""; }; + C194CC058B532ACBCA3CE4C004B12B61 /* LICENSE.GPLv3 */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE.GPLv3; sourceTree = ""; }; C1A919103EAC9813D236486C34FC0A21 /* libReact-RCTVibration.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTVibration.a"; path = "libReact-RCTVibration.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - C1DDA4E3B16DF11680CD2792EB11BFBE /* RCTSensorOrientationChecker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTSensorOrientationChecker.h; path = ios/RCT/RCTSensorOrientationChecker.h; sourceTree = ""; }; - C2A513347E8430C2F092059CC8C2CA99 /* REANode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REANode.m; sourceTree = ""; }; - C2B59BDFA1C0A9E27DAC5984A22EFC01 /* RNFFmpegModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFFmpegModule.m; path = ios/RNFFmpegModule.m; sourceTree = ""; }; - C2B9EBBE030C8C9DC0049E9F5998C8E6 /* RCTSurfaceRootView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceRootView.mm; sourceTree = ""; }; - C32305C61641C43130CC830AC90FCF5D /* RNSScreenContainer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreenContainer.m; path = ios/RNSScreenContainer.m; sourceTree = ""; }; + C217362007CA7F70B72A86A7F2345DD8 /* RCTMaskedView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMaskedView.h; sourceTree = ""; }; + C23651862EE5E1925B2112671660BD04 /* REAParamNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAParamNode.h; sourceTree = ""; }; + C2429A48312D5F790F6F6838E533BE67 /* RCTClipboard.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTClipboard.h; sourceTree = ""; }; + C264D7281EEE7DA399B203AABF03A69E /* RCTVersion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVersion.m; sourceTree = ""; }; + C27A5B3053D573439F05ADEACB33B0B5 /* RNCAsyncStorageDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAsyncStorageDelegate.h; path = ios/RNCAsyncStorageDelegate.h; sourceTree = ""; }; + C288701615BD9616F86E3D1CEA6E37E4 /* RCTInspectorPackagerConnection.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInspectorPackagerConnection.m; sourceTree = ""; }; + C2A32AD7DEE14D8BC0E2F5C7A7B368AC /* REAJSCallNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAJSCallNode.h; sourceTree = ""; }; + C2B2E3734117EA840BF0FD1571EB12E6 /* YGStyle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGStyle.cpp; path = yoga/YGStyle.cpp; sourceTree = ""; }; + C2D68E6579670C1AE6A924A8E477D932 /* RCTI18nManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTI18nManager.m; sourceTree = ""; }; + C3413D762A50600A20DEAC119185BB2C /* RCTSwitch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSwitch.h; sourceTree = ""; }; + C345575CD0FF76134BEE0E814F36F2B2 /* RNGestureHandler.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNGestureHandler.xcconfig; sourceTree = ""; }; C37C55B76555AA3133FF54342BC25672 /* SpookyHashV2.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SpookyHashV2.cpp; path = folly/hash/SpookyHashV2.cpp; sourceTree = ""; }; - C3D67BFD5029B0B38BE3147A35F0AF92 /* RCTUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUtils.h; sourceTree = ""; }; - C445A8662226BFF95EC8E9C5DB6CC079 /* React-RCTActionSheet-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTActionSheet-dummy.m"; sourceTree = ""; }; - C476E58380310A71AB3B95A564666610 /* react-native-orientation-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-orientation-dummy.m"; sourceTree = ""; }; - C4880304D640F32E7F110A7562FA37FA /* RCTBaseTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextViewManager.m; sourceTree = ""; }; - C4A0BADCC27407CA7A88BFD598740FCF /* UMViewManagerAdapterClassesRegistry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMViewManagerAdapterClassesRegistry.m; sourceTree = ""; }; - C4B119A8AAC5E979C098B537A87B1A61 /* RCTSurfaceDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceDelegate.h; sourceTree = ""; }; - C5059A2802BF1C71F647EE66704C33E4 /* RCTCxxBridge.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxBridge.mm; sourceTree = ""; }; - C5189A30922755C9BBF86CEA5EA31FF5 /* UMNativeModulesProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMNativeModulesProxy.m; sourceTree = ""; }; - C5718913AC2355948D57DD094DF44D42 /* UMJavaScriptContextProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMJavaScriptContextProvider.h; sourceTree = ""; }; - C5C2B38E39BCFA67F89F878A58F3A8B3 /* RCTScrollViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollViewManager.m; sourceTree = ""; }; - C5FE09AC13E912CC13F17F1725B484BA /* RCTScrollView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollView.h; sourceTree = ""; }; - C614ED504029D6545470FC7E75FA6BB1 /* RCTSpringAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSpringAnimation.m; sourceTree = ""; }; - C61EA22DF20111263F22BFF1AC370C3B /* RNGestureHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandler.h; path = ios/RNGestureHandler.h; sourceTree = ""; }; - C65E6A2133CF6AEF92A048FF475593F2 /* RNGestureHandlerEvents.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerEvents.h; path = ios/RNGestureHandlerEvents.h; sourceTree = ""; }; - C6EEA9C4D84D39FD8F4C1008EA25B0C9 /* RCTSinglelineTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSinglelineTextInputViewManager.h; sourceTree = ""; }; - C705C1194C9B0B78DA633613CD1E0DB8 /* react-native-ffmpeg.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-ffmpeg.xcconfig"; sourceTree = ""; }; - C7102AB799C4D19159EAFBCE6E4C3E7F /* EXFilePermissionModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFilePermissionModule.h; path = EXFileSystem/EXFilePermissionModule.h; sourceTree = ""; }; - C732544715094F830748F3E41EAEC0FD /* SystraceSection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = SystraceSection.h; sourceTree = ""; }; - C760D2FE8CBC7683CA5878308C1220A4 /* RCTRedBox.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRedBox.h; sourceTree = ""; }; + C3C1E6036291F0D1D6EF9632FAD688FE /* RCTScrollView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollView.m; sourceTree = ""; }; + C3D65C9FE172BB39FD4D4393F7FBF768 /* RNFaceDetectorModuleMLKit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFaceDetectorModuleMLKit.h; path = ios/RN/RNFaceDetectorModuleMLKit.h; sourceTree = ""; }; + C47D9D601A823B44E62E1C19E7A63E37 /* RNGestureHandlerButton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerButton.h; path = ios/RNGestureHandlerButton.h; sourceTree = ""; }; + C48E26751BD2AB7AA01DBD40EAE75B52 /* RNVectorIcons-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNVectorIcons-dummy.m"; sourceTree = ""; }; + C51EA29F2BE6826AE0F0B9982FE2CAD2 /* decorator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = decorator.h; sourceTree = ""; }; + C5704F5F904ABD7C69A42912ED134654 /* REAPropsNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAPropsNode.h; sourceTree = ""; }; + C573FA56E6EECA6452491BE6D8561B4F /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + C58940A20D11E28D0DB953B6DA98167F /* jsi.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = jsi.cpp; sourceTree = ""; }; + C5973E06DCA2C46B7DF893931280C2A4 /* RCTExceptionsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTExceptionsManager.h; path = React/CoreModules/RCTExceptionsManager.h; sourceTree = ""; }; + C5DB47E4D1D7655780FE690C51A332B7 /* RCTPerfMonitor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPerfMonitor.m; sourceTree = ""; }; + C655804A2DC891E21A116B81E76473CF /* RCTProfileTrampoline-arm64.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-arm64.S"; sourceTree = ""; }; + C6D1A8B73E850E887F7EF0501A1B5B13 /* UMModuleRegistryProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryProvider.h; sourceTree = ""; }; + C6DF65865E92381F35FB6A3CD38C5179 /* RCTFileRequestHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFileRequestHandler.m; sourceTree = ""; }; + C6FD41DBD5DBDC213AEFBBF88D7E7D95 /* FBReactNativeSpec-generated.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = "FBReactNativeSpec-generated.mm"; path = "FBReactNativeSpec/FBReactNativeSpec-generated.mm"; sourceTree = ""; }; + C706FA5ABB95EB6D79083F4BAC94A764 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + C70CED965FB5F4EBFC87E552E5923B95 /* REACondNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REACondNode.h; sourceTree = ""; }; + C74412F88738106CF6FBBA3512232651 /* MethodCall.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = MethodCall.cpp; sourceTree = ""; }; C777CF2FB1E39A45CBBDB54E8693F471 /* libRNReanimated.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNReanimated.a; path = libRNReanimated.a; sourceTree = BUILT_PRODUCTS_DIR; }; - C78D720FBA72D58F0FAE0906F36F00CF /* UMConstantsInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMConstantsInterface.xcconfig; sourceTree = ""; }; - C78F56B5069932849E7FD1FCAD3667DA /* RNCSafeAreaViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaViewManager.h; path = ios/SafeAreaView/RNCSafeAreaViewManager.h; sourceTree = ""; }; - C7B98812A15A664ED5E7DCA66FF1DC49 /* RCTModalHostView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostView.m; sourceTree = ""; }; - C7F8B126526D1B81A074C6155523A3CD /* RCTProfileTrampoline-i386.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-i386.S"; sourceTree = ""; }; + C778977391C8B231B5667FA4155456CC /* RNCMaskedViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCMaskedViewManager.h; path = ios/RNCMaskedViewManager.h; sourceTree = ""; }; + C7C9D54A540D9955365E18CD4D118168 /* RCTGIFImageDecoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTGIFImageDecoder.m; sourceTree = ""; }; C80F48708CBDDCE5978071B38FB8B4E5 /* libreact-native-ffmpeg.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libreact-native-ffmpeg.a"; path = "libreact-native-ffmpeg.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - C82261DE4B194D1977601A5BA2FAE640 /* RCTValueAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTValueAnimatedNode.h; sourceTree = ""; }; - C8799EFEBC205A4F8A281EF687F4E473 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - C8D4563D1FAED6229AA2F11B48F67D59 /* LongLivedObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LongLivedObject.h; path = turbomodule/core/LongLivedObject.h; sourceTree = ""; }; - C8D45F27ECA06DF4D29EB458917361D5 /* react-native-camera-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-camera-prefix.pch"; sourceTree = ""; }; - C8E9DADD5A57F77815F377DA9301FE3D /* EXRemoteNotificationPermissionRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXRemoteNotificationPermissionRequester.m; sourceTree = ""; }; - C91132CA3291AEF4B3AC1657672B88F8 /* RCTErrorCustomizer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTErrorCustomizer.h; sourceTree = ""; }; - C92C4F45BECE6C2ED6B1E346AD9D610C /* react-native-video-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-video-dummy.m"; sourceTree = ""; }; - C935E89E513B84C3E10A9251E0AA71AF /* RCTTransformAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTransformAnimatedNode.m; sourceTree = ""; }; - C970F1F2028F7E825154FB3532920205 /* RCTNativeAnimatedNodesManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNativeAnimatedNodesManager.h; path = Libraries/NativeAnimation/RCTNativeAnimatedNodesManager.h; sourceTree = ""; }; - C9B3464C0B7E20D3977681CCF1AF5774 /* UMSingletonModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMSingletonModule.h; path = UMCore/UMSingletonModule.h; sourceTree = ""; }; - C9B798477E6CAB5E770F44D8DEA5B0E9 /* RCTInputAccessoryView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryView.m; sourceTree = ""; }; - C9B8C2057C488A65EFA2EA318EA66D1F /* RCTJavaScriptLoader.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTJavaScriptLoader.mm; sourceTree = ""; }; - C9F2CBA84AF2BAE6EB1B6576CEC57531 /* YGLayout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGLayout.h; path = yoga/YGLayout.h; sourceTree = ""; }; - C9FFFA9E0AC2BEC5269CBB578F7DB009 /* RCTProgressViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTProgressViewManager.m; sourceTree = ""; }; - CA1B8B1428B8F85BB948C4D591CAFCAD /* RCTBlobManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTBlobManager.h; path = Libraries/Blob/RCTBlobManager.h; sourceTree = ""; }; + C85CC1442D982DE45082A0C6108B2C95 /* experiments.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = experiments.h; sourceTree = ""; }; + C8A704030CF4B9DB26BC1AE2FA54ACA8 /* RCTVideoManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTVideoManager.m; path = ios/Video/RCTVideoManager.m; sourceTree = ""; }; + C8E626DCA9F86152314A004F2943527B /* JSCExecutorFactory.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = JSCExecutorFactory.mm; sourceTree = ""; }; + C8F2489699F473FE28620E24E05F44AF /* RCTSurface.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurface.mm; sourceTree = ""; }; + C8FEDFEEA15684011A328C49A15C4DA4 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + C944F6F1BB9C5626CB270FBDC145EEFD /* RAMBundleRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RAMBundleRegistry.h; sourceTree = ""; }; + C94752D1F539408E76E6DACBFBB67FF1 /* UMReactNativeAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactNativeAdapter.h; sourceTree = ""; }; + C958BC4224C4F38A81C812D018D82ECF /* RCTManagedPointer.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTManagedPointer.mm; sourceTree = ""; }; + C9774FC5B433E134616FB64740E5419F /* UMViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMViewManager.h; path = UMCore/UMViewManager.h; sourceTree = ""; }; + C9E6811E62C1FC318C3584006135A136 /* RNVectorIcons.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNVectorIcons.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; CA20647DF09AB4563C4559C2787A1397 /* libavfilter.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = libavfilter.framework; sourceTree = ""; }; - CA427CE091B4B8C07299BF31BC031772 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - CA7BC6C0CB24AAA743CFF03A4200E272 /* React-RCTActionSheet.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-RCTActionSheet.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - CAADEFC4801553E7CD3D6FC46712BE28 /* RCTReconnectingWebSocket.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTReconnectingWebSocket.m; path = Libraries/WebSocket/RCTReconnectingWebSocket.m; sourceTree = ""; }; - CBB06E65F31DCCD122C8FE93D93C0129 /* NSDataBigString.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = NSDataBigString.mm; sourceTree = ""; }; - CBB0F8F78ACD4127BC2B6E5BA3F799DA /* UMAppLifecycleService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMAppLifecycleService.h; sourceTree = ""; }; - CBC690F1DB7EAD205336199F1396131C /* Zocial.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Zocial.ttf; path = Fonts/Zocial.ttf; sourceTree = ""; }; - CC1015C7A05EC37EE7BC50D4CC16FBAA /* UMGyroscopeInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMGyroscopeInterface.h; path = UMSensorsInterface/UMGyroscopeInterface.h; sourceTree = ""; }; - CC3FBB022D093476AA39711DA11CCF3A /* RCTEventDispatcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventDispatcher.h; sourceTree = ""; }; - CC4FCCD87429DF8783DD499F178525DC /* RCTSafeAreaShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaShadowView.m; sourceTree = ""; }; - CC52CF826446D33AE765DBAE6B9B8FE6 /* EXPermissions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXPermissions.m; path = EXPermissions/EXPermissions.m; sourceTree = ""; }; - CC9D21E55D9D61E113B00D7DE4570075 /* RCTParserUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTParserUtils.h; sourceTree = ""; }; - CCEDECB845A05456C0B9539DB393D74D /* YGNodePrint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGNodePrint.h; path = yoga/YGNodePrint.h; sourceTree = ""; }; - CD24F5E91E9300A22C813DF308C34577 /* REACondNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REACondNode.m; sourceTree = ""; }; - CD35BADEEE5BF3015C59A8F3031160E1 /* UMCore.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMCore.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - CD56FE84DA7F297F14C43F63D7424C76 /* RCTConvert+Transform.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+Transform.m"; sourceTree = ""; }; - CDC2799B64F71BE6E0A83836817BFA92 /* RCTRequired.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTRequired.h; path = RCTRequired/RCTRequired.h; sourceTree = ""; }; - CE0E526A2C6D72A91B50E54AF1215749 /* RCTGIFImageDecoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTGIFImageDecoder.h; path = Libraries/Image/RCTGIFImageDecoder.h; sourceTree = ""; }; - CE68BD50F86430A7B6E0D6C6775B7BB3 /* RCTNativeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTNativeModule.h; sourceTree = ""; }; + CA3FA550DD5E1BDDA634FC84308272E5 /* CxxNativeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CxxNativeModule.h; sourceTree = ""; }; + CA80D3357956EE1D73A49D14424D922F /* REABlockNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REABlockNode.m; sourceTree = ""; }; + CABA6CC2435CB0D738FC11EEC2D96F86 /* RNReanimated-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNReanimated-prefix.pch"; sourceTree = ""; }; + CAC00BA0FB4393F3B460E569497828A9 /* JSDeltaBundleClient.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSDeltaBundleClient.cpp; sourceTree = ""; }; + CADA8FE388888B70F5E2E0FBF3E19D74 /* UMCore-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UMCore-dummy.m"; sourceTree = ""; }; + CB17859AE6FD76E2B1FD6B7C59D6D822 /* RCTTiming.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTiming.h; sourceTree = ""; }; + CB3A8B1A476AA63BE9ABEFFBBB1526EB /* RCTVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVersion.h; sourceTree = ""; }; + CB607327DFC2A1838432FBADD88F97CC /* RCTAnimationUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAnimationUtils.h; path = Libraries/NativeAnimation/RCTAnimationUtils.h; sourceTree = ""; }; + CC88B7BC58F7F2DA6A40351EE5B0EE0C /* REAOperatorNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAOperatorNode.m; sourceTree = ""; }; + CCDE0F2C2E9A40210E99E296D991594C /* UMCore.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMCore.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + CD816FF68900CAFEA02884E1B3082BD7 /* RCTActivityIndicatorViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTActivityIndicatorViewManager.h; sourceTree = ""; }; + CD9973ACA95E9957F713CF36613A1EC0 /* RCTView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTView.h; sourceTree = ""; }; + CDAC5186475F46EE8C96A2781553A07F /* RCTComponentEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTComponentEvent.h; sourceTree = ""; }; + CDF26F1F867AD720B5AEE55C068A61CB /* JSCRuntime.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSCRuntime.cpp; sourceTree = ""; }; + CDFB79D1B72CC9F115EC4D15C238462B /* RNFSManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFSManager.m; sourceTree = ""; }; + CE1ACC7A5F592B34604E4515503DB6A1 /* React-RCTAnimation-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTAnimation-prefix.pch"; sourceTree = ""; }; + CE5D70D3900397FF20C9F58C98880858 /* RCTConvert+Transform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+Transform.h"; sourceTree = ""; }; + CE75E690C2666B1F1F97D212EEE597C4 /* RCTParserUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTParserUtils.m; sourceTree = ""; }; + CE7AFD240AC5ABF0F4E89F09DC9C77EE /* FontAwesome.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = FontAwesome.ttf; path = Fonts/FontAwesome.ttf; sourceTree = ""; }; + CE90EDDF5487C91004BC34F20671330B /* RCTReconnectingWebSocket.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTReconnectingWebSocket.m; path = Libraries/WebSocket/RCTReconnectingWebSocket.m; sourceTree = ""; }; + CE9972E87EED058614B30846877D0E08 /* react-native-safe-area-context-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-safe-area-context-prefix.pch"; sourceTree = ""; }; CE9B6D8AD870BADA404AC6E21F2D1C68 /* DoubleConversion-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "DoubleConversion-dummy.m"; sourceTree = ""; }; - CEB09C3079331BF2C19AFE2D6630AEA2 /* EXAppLoaderProvider-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXAppLoaderProvider-dummy.m"; sourceTree = ""; }; - CEC1574962E20BE79C055ECC3C4ED987 /* RCTSwitch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSwitch.h; sourceTree = ""; }; - CECED4C02E449F82A9681FC9FE9E6E2F /* YGEnums.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGEnums.cpp; path = yoga/YGEnums.cpp; sourceTree = ""; }; - CFB3D038B06F51146F3F7B868FED50EE /* React-RCTText-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTText-prefix.pch"; sourceTree = ""; }; - D00014DEF63C4BDD50DD7F02849E33A7 /* RCTScrollContentViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentViewManager.m; sourceTree = ""; }; - D09498F25CB1644917ED375FA3F9EF7B /* RCTTypeSafety-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTTypeSafety-dummy.m"; sourceTree = ""; }; - D095C7FBEA0716D051E485F30EABAF05 /* FontAwesome.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = FontAwesome.ttf; path = Fonts/FontAwesome.ttf; sourceTree = ""; }; - D0C065E00A5A412D42AF24EFEAD4DFC4 /* RCTTurboModuleManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTurboModuleManager.h; sourceTree = ""; }; - D0CFF0D93723F30496BFDE8EE5CE4899 /* jsi.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = jsi.cpp; sourceTree = ""; }; - D0D015F84A879F38F92D6B086D0716AD /* RCTMultiplicationAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultiplicationAnimatedNode.h; sourceTree = ""; }; - D118F4C2FFDC3359E0CD1553DBAA06C8 /* CompactValue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CompactValue.h; path = yoga/CompactValue.h; sourceTree = ""; }; - D1DA4DD5BB2B96D172D60052BF4DE18F /* RCTRootView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootView.m; sourceTree = ""; }; - D20AC0735E38A417AB6E08B660B16749 /* FBLazyIterator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLazyIterator.h; path = FBLazyVector/FBLazyIterator.h; sourceTree = ""; }; - D223107D8608DA39D7749E6C708D212B /* FBReactNativeSpec.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = FBReactNativeSpec.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + CEB13D94EBD365FFC658C9740DB34393 /* RCTProfileTrampoline-i386.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-i386.S"; sourceTree = ""; }; + CEBB864E5E847848EC733BB4974EC457 /* RCTUIImageViewAnimated.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIImageViewAnimated.m; sourceTree = ""; }; + CEF0DD33059840768A5979973ECB277C /* FBReactNativeSpec-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FBReactNativeSpec-prefix.pch"; sourceTree = ""; }; + CEF2162ABB4F2E2301B798355FF37707 /* RCTSegmentedControl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSegmentedControl.m; sourceTree = ""; }; + CEFAFCF3422708163F62A4C0FD92BD3E /* RNCamera.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCamera.m; path = ios/RN/RNCamera.m; sourceTree = ""; }; + CF8A46E2B75B0A071D7339DE5DC251BE /* REATransitionValues.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransitionValues.h; sourceTree = ""; }; + CF98D7F9B14E28B7C9865B896A7BA9AB /* RCTDiffClampAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDiffClampAnimatedNode.h; sourceTree = ""; }; + D0B05B74F9DF4266DA3D1DE4354FD016 /* RCTRootShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootShadowView.m; sourceTree = ""; }; + D0ECECBF1987AFACD2B8A663E18AB463 /* RCTComponentEvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTComponentEvent.m; sourceTree = ""; }; + D10B05BB82C946964D0F04FBFFA36753 /* RCTProfileTrampoline-x86_64.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-x86_64.S"; sourceTree = ""; }; + D11FC44EFF4E0D069B4527FCAA0D27C5 /* RNCMaskedView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCMaskedView.h; path = ios/RNCMaskedView.h; sourceTree = ""; }; + D12271328575AE677B2B54905677183A /* RCTView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTView.m; sourceTree = ""; }; + D17F346101B42C748B563BEDA6559D0F /* BarcodeDetectorManagerMlkit.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BarcodeDetectorManagerMlkit.m; path = ios/RN/BarcodeDetectorManagerMlkit.m; sourceTree = ""; }; + D1BBBEE04A56BC661CB66C3B69F0873C /* REAJSCallNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAJSCallNode.m; sourceTree = ""; }; + D1C34CC207D80399E23672DD2BCFD8F0 /* UMConstantsInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMConstantsInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + D21D91AE607CC7A31C6EB0B34BB8ED49 /* RCTMultilineTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultilineTextInputView.m; sourceTree = ""; }; D23C7DBF31D099DB40E5B3E27DBE7727 /* diy-fp.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "diy-fp.cc"; path = "double-conversion/diy-fp.cc"; sourceTree = ""; }; - D27B16463EB7A0D5615333C4A9543BFF /* EXPermissions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXPermissions.h; path = EXPermissions/EXPermissions.h; sourceTree = ""; }; - D287687B564EEC61DF0E837E3A3C4EF0 /* RCTMultilineTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultilineTextInputViewManager.m; sourceTree = ""; }; - D2D07B3C8561E7B757023EDE0F95F2BB /* RCTSlider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSlider.h; sourceTree = ""; }; - D397581861A148108831102FDEB7BAD1 /* JSDeltaBundleClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSDeltaBundleClient.h; sourceTree = ""; }; - D3C2F82CE613402A67171D781487AD3D /* MaterialCommunityIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = MaterialCommunityIcons.ttf; path = Fonts/MaterialCommunityIcons.ttf; sourceTree = ""; }; - D3D1BB023991807E848324A2A526CC2F /* RCTModalHostViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostViewController.h; sourceTree = ""; }; + D2501C267A2FC93AB67F41F770596AB2 /* RCTTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextShadowView.h; sourceTree = ""; }; + D28652E6BBEA100B1054DC6CF30BB53A /* UMBarCodeScannerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBarCodeScannerInterface.h; path = UMBarCodeScannerInterface/UMBarCodeScannerInterface.h; sourceTree = ""; }; + D3050E0454A03AC556EA2DC79AE7F6F5 /* RCTSurfaceRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootView.h; sourceTree = ""; }; + D3AA18F5DC2C4F4DB4F3537B69CC04BF /* CxxNativeModule.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = CxxNativeModule.cpp; sourceTree = ""; }; + D3CA3A95F79BD3875B345E2C0FC185CB /* REASetNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REASetNode.h; sourceTree = ""; }; D3E4DD11F1918DE602B2C373F24AD775 /* libPods-Gladeo_App.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libPods-Gladeo_App.a"; path = "libPods-Gladeo_App.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - D42275B1E96E28AD3BB9684BC4D949E5 /* RCTBridgeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeModule.h; sourceTree = ""; }; - D534C0D10BAD2A44DEE6CFD4876B7DAB /* RCTDisplayLink.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDisplayLink.h; sourceTree = ""; }; - D53A669573DD3D8FD7EF37729D6C735F /* REAOperatorNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAOperatorNode.m; sourceTree = ""; }; - D5A8E2F945AAC0549B768510A55625B6 /* ReactMarker.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = ReactMarker.cpp; sourceTree = ""; }; + D48879D0B8FDCD0C4A17DF6DCB96D6F8 /* EXRemoteNotificationPermissionRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXRemoteNotificationPermissionRequester.m; sourceTree = ""; }; + D48E33E2E3AE7E63AD35F08F19206144 /* RCTSurfaceRootShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSurfaceRootShadowView.m; sourceTree = ""; }; + D4A50563B1052196AFE86D6579CAC0DA /* REANode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REANode.h; sourceTree = ""; }; + D4AEB0A467C3C1ED53915E9A231DAD15 /* NativeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NativeModule.h; sourceTree = ""; }; + D4D24A8F527150930F62778AD56C83A3 /* RCTConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTConvert.h; sourceTree = ""; }; + D4FA2B393047ACB658154709DB96A0F8 /* React-RCTAnimation.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-RCTAnimation.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + D551D15A59714ABD8BFD282613E5B321 /* RCTConvert+REATransition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+REATransition.h"; sourceTree = ""; }; + D574AF6572A929E692D2B2D68D951157 /* RCTWebSocketModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTWebSocketModule.m; path = Libraries/WebSocket/RCTWebSocketModule.m; sourceTree = ""; }; + D57629312106D90A291950E77246A079 /* RNConvertPhAsset.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNConvertPhAsset.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + D5C1D89653471B8F65B074EF1288ED76 /* REAStyleNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAStyleNode.m; sourceTree = ""; }; D5C775614AC76D44CECB6BE08B022F1F /* libReactCommon.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libReactCommon.a; path = libReactCommon.a; sourceTree = BUILT_PRODUCTS_DIR; }; - D670C028E2D1C3825135EC45FA068670 /* RCTAnimatedImage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAnimatedImage.m; sourceTree = ""; }; - D7392CB5598B6DBA9B126FE1F171F212 /* RCTVideo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTVideo.h; path = ios/Video/RCTVideo.h; sourceTree = ""; }; - D777A2A60A47FACE596D5FEE39A71233 /* RCTFrameAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFrameAnimation.m; sourceTree = ""; }; + D5D4BCC4529F3BA15BCF05FA1DB9A206 /* RCTAnimationType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimationType.h; sourceTree = ""; }; + D65FFB9C0BDFB4B6AA782CFB82281BC9 /* UMTaskInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskInterface.h; path = UMTaskManagerInterface/UMTaskInterface.h; sourceTree = ""; }; + D68FCA7139FBD96E2D3A6A318DE95F99 /* RCTRootShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootShadowView.h; sourceTree = ""; }; + D6BC9B67EF47A79A63B94B2433F577D7 /* RCTSlider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSlider.h; sourceTree = ""; }; + D710B1564976AA707D9E49212A760C03 /* RCTProfileTrampoline-arm.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-arm.S"; sourceTree = ""; }; + D7E895A5B582943705B84D486EEC69B5 /* RNGestureHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandler.h; path = ios/RNGestureHandler.h; sourceTree = ""; }; D803CD10E45FD26731AE64091D39DAA9 /* Conv.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Conv.cpp; path = folly/Conv.cpp; sourceTree = ""; }; D8106F78B9BEBC4E5B369C4990A343B6 /* stl_logging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stl_logging.h; path = src/glog/stl_logging.h; sourceTree = ""; }; - D8320A356A1B2F6BF58F4B6295B083AE /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - D8752211891E9C9C0D0D830116BF361E /* UMTaskManagerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskManagerInterface.h; path = UMTaskManagerInterface/UMTaskManagerInterface.h; sourceTree = ""; }; - D897CDEB8D698C777AC28E337DAB14D5 /* jsi-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "jsi-inl.h"; sourceTree = ""; }; - D8B835837892E769AA3C71DD4381FD98 /* YGStyle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGStyle.h; path = yoga/YGStyle.h; sourceTree = ""; }; - D8C6897979C3F85E22047F69EA676F4F /* EXAppLoaderInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXAppLoaderInterface.h; sourceTree = ""; }; - D8DCAD62277441FE7E17D1BF869B4F48 /* EXFileSystem.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXFileSystem.xcconfig; sourceTree = ""; }; - D8FBD8BB95CFFA637BF6E3FDF1C60AE1 /* React-jsinspector.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsinspector.xcconfig"; sourceTree = ""; }; - D930FC39F7DE10D64F4811CE1C62ED89 /* RCTImageShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageShadowView.m; sourceTree = ""; }; - D9876019DE00C65D6005009D52ADF9A4 /* RNCameraManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCameraManager.m; path = ios/RN/RNCameraManager.m; sourceTree = ""; }; - D98E28469D48EDC9E6296D7C52B598AC /* RCTLayout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayout.m; sourceTree = ""; }; - D99FF3E2A9C59DFB249B5841B5A55019 /* RNGestureHandlerEvents.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerEvents.m; path = ios/RNGestureHandlerEvents.m; sourceTree = ""; }; + D84ABB41D3D5DDFDDBDDB14C7A267A55 /* RCTInvalidating.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInvalidating.h; sourceTree = ""; }; + D88F85CB1ED49E43FB31F8775F2E190E /* Instance.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = Instance.cpp; sourceTree = ""; }; + D89265E5D5BF37B079DC8C4A73BA4AE7 /* UMFontManagerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontManagerInterface.h; path = UMFontInterface/UMFontManagerInterface.h; sourceTree = ""; }; + D89D04B80239B0D5C25AAB670263D3CB /* RCTHTTPRequestHandler.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTHTTPRequestHandler.mm; sourceTree = ""; }; + D8A8E35D62A9DF2C04DCE751E82CC0EC /* RNImageUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNImageUtils.h; path = ios/RN/RNImageUtils.h; sourceTree = ""; }; + D8D54037967A1AAFE9939A4E9B339727 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; D9A140FE02A20C42B48EDEFA2854DECE /* Pods-Gladeo_App-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-Gladeo_App-resources.sh"; sourceTree = ""; }; - D9B3CBF10926AA720F2C810F30EF5926 /* RCTSRWebSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTSRWebSocket.h; path = Libraries/WebSocket/RCTSRWebSocket.h; sourceTree = ""; }; D9F334F2E90E3EE462FC4192AF5C03BD /* libReact-jsi.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-jsi.a"; path = "libReact-jsi.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - DA1F2C15975EAE9E33E6E7696716335B /* EXFileSystemLocalFileHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFileSystemLocalFileHandler.m; path = EXFileSystem/EXFileSystemLocalFileHandler.m; sourceTree = ""; }; - DAB1C4AD9FE34E451678EFE050AD05B0 /* UMModuleRegistryProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistryProvider.m; sourceTree = ""; }; - DABFEA14D3DB321D7254F9D0BE385626 /* UMReactNativeAdapter.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMReactNativeAdapter.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - DAD97227D406D48D33933D225A6350EF /* react-native-camera.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-camera.xcconfig"; sourceTree = ""; }; - DAE0DB364751BABFC4333A2018736367 /* react-native-safe-area-context-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-safe-area-context-dummy.m"; sourceTree = ""; }; - DBDF23D0789AFBD8383ACBF560BBA95F /* RCTSettingsManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSettingsManager.m; sourceTree = ""; }; - DBE80FC28DE5E6718E15E07A1645FE03 /* CameraFocusSquare.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CameraFocusSquare.h; path = ios/RCT/CameraFocusSquare.h; sourceTree = ""; }; - DBF41954F79CAE4578AA65900310CFFE /* RCTProfile.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTProfile.m; sourceTree = ""; }; - DCA7EF4205A31B5D1E64F03E81059447 /* RCTVideoManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTVideoManager.m; path = ios/Video/RCTVideoManager.m; sourceTree = ""; }; - DCCB36545D72A35F14367E6D18E57774 /* RCTConvert+Text.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+Text.m"; sourceTree = ""; }; - DCE3967CFAD8DD2173098838064D3A4F /* RCTTouchEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTouchEvent.h; sourceTree = ""; }; - DD30E69ACFF1F4CD268FE348E53CA90A /* UMReactNativeAdapter-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UMReactNativeAdapter-prefix.pch"; sourceTree = ""; }; - DD31F66820844903766E1DEC5174A4BA /* RCTTextDecorationLineType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextDecorationLineType.h; sourceTree = ""; }; - DD53B19794B2DD2DC46292777523830D /* UMAccelerometerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMAccelerometerInterface.h; path = UMSensorsInterface/UMAccelerometerInterface.h; sourceTree = ""; }; - DD5ED462B9C07D7B6D88AFCAC34901F6 /* REAParamNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAParamNode.m; sourceTree = ""; }; - DD93267F8BC35AF3488BE80BA8D5A6CF /* JSIDynamic.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSIDynamic.h; sourceTree = ""; }; - DDA77FE557194DB89FBB4D0EC8FE3B73 /* RNCCameraRollManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCCameraRollManager.h; path = ios/RNCCameraRollManager.h; sourceTree = ""; }; - DDF2A4D9C79D1D2D12CE44B73D6697F0 /* RCTCxxUtils.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxUtils.mm; sourceTree = ""; }; - DE53423479474D0129E837491B56EE56 /* RNSensorOrientationChecker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSensorOrientationChecker.h; path = ios/RN/RNSensorOrientationChecker.h; sourceTree = ""; }; - DE6E404395485BA0710CDDEB3EF751F3 /* react-native-safe-area-context-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-safe-area-context-prefix.pch"; sourceTree = ""; }; - DE8A821F4AAA32AAE138CF48AE6A7C4F /* RCTUIManagerUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManagerUtils.h; sourceTree = ""; }; - DEF877F6A8610D103EFCF55DED7F63EE /* RCTAssert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAssert.m; sourceTree = ""; }; - DF045D38F9F5DEF6F2E648252A3C2D38 /* RCTLayoutAnimationGroup.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayoutAnimationGroup.m; sourceTree = ""; }; - DF35500C1B09B2803A2C128372D6A8FF /* RCTMultilineTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultilineTextInputView.m; sourceTree = ""; }; - DF44912341ECB7D419B05AC16F495184 /* RCTBridge+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTBridge+Private.h"; sourceTree = ""; }; - DF4C9232FC8DF8945369EE65A1177DBD /* jsilib-posix.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = "jsilib-posix.cpp"; sourceTree = ""; }; - DF8785E3D62A48E9E82A00B1A128B74D /* EXAppLoaderProvider-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXAppLoaderProvider-prefix.pch"; sourceTree = ""; }; - DFA0C314CC87C016546FFF6093ACC084 /* RNForceTouchHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNForceTouchHandler.m; sourceTree = ""; }; - E01409DE46E979445F903BC79372B7F1 /* FontAwesome5_Regular.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = FontAwesome5_Regular.ttf; path = Fonts/FontAwesome5_Regular.ttf; sourceTree = ""; }; - E0632D0EB795A9B0499FEB0E63199DCA /* JSINativeModules.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JSINativeModules.h; path = jsireact/JSINativeModules.h; sourceTree = ""; }; - E07A84DA96218348B49118ECDCEF2904 /* RNCSafeAreaViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaViewManager.m; path = ios/SafeAreaView/RNCSafeAreaViewManager.m; sourceTree = ""; }; - E12C423A9215C3E86E103A5C8AB4E820 /* RCTRequired.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RCTRequired.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - E14EDA3A80B7C4508FCC3F99F2EEA3B9 /* react-native-ffmpeg-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-ffmpeg-prefix.pch"; sourceTree = ""; }; - E1D892D52509A41E45A420C9BDEA509D /* RCTClipboard.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTClipboard.m; sourceTree = ""; }; - E1F2B825CF45C3B979FAA8ABBDA44513 /* RNRootViewGestureRecognizer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNRootViewGestureRecognizer.m; path = ios/RNRootViewGestureRecognizer.m; sourceTree = ""; }; - E28DF20541674A37532314E4C8B5FF7F /* RCTMaskedView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMaskedView.m; sourceTree = ""; }; + D9FF789928E6E3D83C537D98694E96E3 /* RCTFrameUpdate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFrameUpdate.h; sourceTree = ""; }; + DA36024C35D1C8EDF6C09C943FA539CB /* React.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = React.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + DA413492791A245B32C8A5A3FAA3A619 /* RCTPlatform.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTPlatform.mm; sourceTree = ""; }; + DA548A36C7D5AA89A935F1F569623757 /* RNGestureHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandler.m; path = ios/RNGestureHandler.m; sourceTree = ""; }; + DA84D76B32FA11CFA4298F73AE63C97F /* UMPermissionsInterface-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UMPermissionsInterface-prefix.pch"; sourceTree = ""; }; + DAA2ADF672F9EBC754ABA621D4DB6427 /* RCTLayoutAnimationGroup.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayoutAnimationGroup.m; sourceTree = ""; }; + DB9D40C0D9B81F4171C98347D5216C6C /* RNCAssetsLibraryRequestHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCAssetsLibraryRequestHandler.m; path = ios/RNCAssetsLibraryRequestHandler.m; sourceTree = ""; }; + DBA59528C711B7D806929A07238A4BD7 /* Orientation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Orientation.h; path = iOS/RCTOrientation/Orientation.h; sourceTree = ""; }; + DBF935A9C746B90D47934560E88C6B15 /* EXAppLoaderProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAppLoaderProvider.h; path = EXAppLoaderProvider/EXAppLoaderProvider.h; sourceTree = ""; }; + DC2EA305BFDFE4CADC083EA149E1430F /* RCTMultipartDataTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultipartDataTask.h; sourceTree = ""; }; + DC4934CB41FA8B1D43428328784E6629 /* EXConstants.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXConstants.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + DC9A42406BF604A1A1D1F8FFC9040601 /* React-cxxreact-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-cxxreact-prefix.pch"; sourceTree = ""; }; + DC9CEE7B5B087774B0E5DB232DADD542 /* RNScreens-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNScreens-dummy.m"; sourceTree = ""; }; + DD0CD1B01D58A2020035BCF25DD877A1 /* Yoga.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Yoga.cpp; path = yoga/Yoga.cpp; sourceTree = ""; }; + DDB6C2690DEFEB73DF27A8B41A971543 /* RCTBridge+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTBridge+Private.h"; sourceTree = ""; }; + DDDAD065ACC6E459A65E8AA2BB065C79 /* UMMagnetometerUncalibratedInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMMagnetometerUncalibratedInterface.h; path = UMSensorsInterface/UMMagnetometerUncalibratedInterface.h; sourceTree = ""; }; + DE81447EB452C9AD6354A9C3D8E90280 /* RCTDisplayLink.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDisplayLink.h; sourceTree = ""; }; + DEC25B180C2E1AE3A8C9601E54849533 /* RCTNetworking.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTNetworking.mm; sourceTree = ""; }; + DF46C56660BE67A13562A8CF18678961 /* RCTModuloAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuloAnimatedNode.h; sourceTree = ""; }; + DF64BF36CB5729AE428B6C8CC863A56B /* RNReanimated.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNReanimated.xcconfig; sourceTree = ""; }; + E066239ADE42CC7FE395FC5A6EC18977 /* FBReactNativeSpec.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = FBReactNativeSpec.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + E091C94898AEE5E3632D86374FDD54F7 /* RNCAsyncStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAsyncStorage.h; path = ios/RNCAsyncStorage.h; sourceTree = ""; }; + E0A6CD2EE170BB3E257ACCC28632225E /* RCTTurboModuleManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTurboModuleManager.h; sourceTree = ""; }; + E0F85B9B4A6FA2DC7225B842090C906A /* UMReactLogHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactLogHandler.m; sourceTree = ""; }; + E15A47ADF8BF8B8848EC529EED5D0F95 /* Zocial.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Zocial.ttf; path = Fonts/Zocial.ttf; sourceTree = ""; }; + E16C3A288DB88F55B9D390A55DC1D1DE /* RNVectorIconsManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNVectorIconsManager.m; path = RNVectorIconsManager/RNVectorIconsManager.m; sourceTree = ""; }; + E17485EB0862A6D7C352D04327680888 /* RNRootViewGestureRecognizer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNRootViewGestureRecognizer.h; path = ios/RNRootViewGestureRecognizer.h; sourceTree = ""; }; + E177FDF986F94C193C260C61FA4B399A /* EXAppLoaderProvider-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXAppLoaderProvider-prefix.pch"; sourceTree = ""; }; + E1884924F14DFAD13C954F03C32F4CF2 /* RCTBaseTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextViewManager.m; sourceTree = ""; }; + E195BEC972375C4FD42EF15D43B227D6 /* RNSScreenStackHeaderConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreenStackHeaderConfig.m; path = ios/RNSScreenStackHeaderConfig.m; sourceTree = ""; }; + E1B67068675B97E6AA906B084FDE2B2A /* UMViewManagerAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMViewManagerAdapter.m; sourceTree = ""; }; + E23304D48D63146C4F14E7E958EECDFA /* EXAppLoaderProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAppLoaderProvider.m; path = EXAppLoaderProvider/EXAppLoaderProvider.m; sourceTree = ""; }; + E27F1ECA9B92D57E0A67D03218EF4B67 /* RNLongPressHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNLongPressHandler.m; sourceTree = ""; }; + E286E3DCBC87769168F4B1E7CAEC34B5 /* RCTUIManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIManager.m; sourceTree = ""; }; E29B39773F2D03D3018B86AD44866BD2 /* libreact-native-orientation.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libreact-native-orientation.a"; path = "libreact-native-orientation.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - E2E9ADBE6AB0C754488BB60486224391 /* ReactCommon-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ReactCommon-prefix.pch"; sourceTree = ""; }; - E329CE1D648734DB81CBA865811D4931 /* RCTUIUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIUtils.h; sourceTree = ""; }; - E3D1C8ED1DFA77BC39415280ED19BAD4 /* RCTVirtualTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVirtualTextShadowView.m; sourceTree = ""; }; - E3E4753F1B4103DD1C5B3A43585A6FB3 /* TurboCxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TurboCxxModule.h; path = turbomodule/core/TurboCxxModule.h; sourceTree = ""; }; - E3E568A05A5940FF03803827E72C1303 /* RCTConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTConvert.h; sourceTree = ""; }; - E3FCFF33AA3E2A0F8A9B9B5DD31CB904 /* UMBarCodeScannerInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMBarCodeScannerInterface.xcconfig; sourceTree = ""; }; - E438E35DDA92E697B502E29EB0B53276 /* RCTDevMenu.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDevMenu.m; sourceTree = ""; }; - E445EAC259ECCD13D842215EB1141C19 /* EXConstantsService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXConstantsService.h; path = EXConstants/EXConstantsService.h; sourceTree = ""; }; - E4E351DB9E25F72FD98E9EBFCAA204CF /* react-native-ffmpeg-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-ffmpeg-dummy.m"; sourceTree = ""; }; - E50009782DE85E9953AFCB151B308CBB /* RNGestureHandlerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerManager.m; path = ios/RNGestureHandlerManager.m; sourceTree = ""; }; - E53D90F80835D7BF36E13420C214F5F8 /* AntDesign.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = AntDesign.ttf; path = Fonts/AntDesign.ttf; sourceTree = ""; }; - E5697ECA514229CFE76DDBEE2E50C5F5 /* ReactCommon-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "ReactCommon-dummy.m"; sourceTree = ""; }; - E574DAF80A4E05B5F6FDACFDCE009479 /* RCTMultilineTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultilineTextInputViewManager.h; sourceTree = ""; }; - E5AA7D765C1D7938564B2C0FC4CE84CE /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - E5DA7FB1574DF270DA997AA745F9B82D /* RCTSurfaceRootShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootShadowView.h; sourceTree = ""; }; - E6061CE54DEF89321D15AD404A9F4808 /* RCTFileRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTFileRequestHandler.h; path = Libraries/Network/RCTFileRequestHandler.h; sourceTree = ""; }; - E646420275D81469ADBA372F7A8A5177 /* React-RCTNetwork.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTNetwork.xcconfig"; sourceTree = ""; }; - E66B47A92CF48EA1F906714D58D47002 /* RCTNetInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTNetInfo.m; sourceTree = ""; }; - E66D5776E179E07849225A4FC13635BC /* REAPropsNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAPropsNode.h; sourceTree = ""; }; + E3074A6DCCBC150DDB6DDC69B5383512 /* RCTAlertManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAlertManager.m; sourceTree = ""; }; + E363095CF1CF7626BAC4C320A1546AC6 /* JSCRuntime.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSCRuntime.h; sourceTree = ""; }; + E3A9504296422B05F5C8C2A629C662CA /* RCTDevSettings.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTDevSettings.mm; sourceTree = ""; }; + E3FEBE7A277D09C3924B8C2D1C5C8524 /* react-native-orientation.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-orientation.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + E40023310D2C5EE8B5190F590183ED19 /* RCTFPSGraph.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFPSGraph.m; sourceTree = ""; }; + E40C97F5A44A999A55F8858D6241A76D /* UMFileSystemInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFileSystemInterface.h; path = UMFileSystemInterface/UMFileSystemInterface.h; sourceTree = ""; }; + E42087FDBA47C891889708433BC0CC99 /* RCTReloadCommand.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTReloadCommand.h; sourceTree = ""; }; + E48737FBE28B21701D79381B1912FFDD /* Fontisto.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Fontisto.ttf; path = Fonts/Fontisto.ttf; sourceTree = ""; }; + E4D3885539FE361D5A7F8F3CBA23B6ED /* RCTDeviceInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDeviceInfo.m; sourceTree = ""; }; + E4F55ED13D0D33FC93245C55DD688CC0 /* React-RCTLinking-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTLinking-prefix.pch"; sourceTree = ""; }; + E552C4DDCC56FB6ADD1E9DEDCBC41C9A /* React-jsinspector-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-jsinspector-dummy.m"; sourceTree = ""; }; + E57A66CE0DB2E9A42356484F620E4E89 /* UMReactLogHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactLogHandler.h; sourceTree = ""; }; + E5CC5E216E6FD16ADEEA68397817F7EF /* CompactValue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CompactValue.h; path = yoga/CompactValue.h; sourceTree = ""; }; + E61205B1000E79C57FF7E8ACE104A471 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + E621BC4F3DC024D6256BA3A13BAB4889 /* JSIDynamic.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSIDynamic.cpp; sourceTree = ""; }; + E624689E28820604BD9BDEF5DEE14D55 /* UMSingletonModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMSingletonModule.m; path = UMCore/UMSingletonModule.m; sourceTree = ""; }; + E6331049F4820A8AAF4FC77CBE3865F5 /* instrumentation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = instrumentation.h; sourceTree = ""; }; E6A16705C69FC7DE11C2469A4A0F8358 /* libReact-RCTText.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTText.a"; path = "libReact-RCTText.a"; sourceTree = BUILT_PRODUCTS_DIR; }; E6B9B10EDE44E08AD80ED5C23DA9DD1A /* libswscale.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = libswscale.framework; sourceTree = ""; }; - E730AED7E1CBFE3703177FDFE4543494 /* RCTPackagerConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPackagerConnection.h; sourceTree = ""; }; - E7984395C33CDE85CB9D1ADBBA42AB2F /* RCTExceptionsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTExceptionsManager.h; path = React/CoreModules/RCTExceptionsManager.h; sourceTree = ""; }; - E798B37E810F5B6612AA7EC846E87449 /* RCTSurfaceHostingProxyRootView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceHostingProxyRootView.mm; sourceTree = ""; }; - E7DBCA0B94059E1C12E84EED172209F6 /* RCTRootShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootShadowView.m; sourceTree = ""; }; - E801AD9356AABC33998C08992344697D /* RCTActivityIndicatorView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTActivityIndicatorView.m; sourceTree = ""; }; - E8443FABDF7C5A8A1A2E55B50A2FC032 /* RCTVersion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVersion.m; sourceTree = ""; }; - E853F248843222E236163F95505C0892 /* RCTScrollView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollView.m; sourceTree = ""; }; - E8A4A2A712D9009E965904CE9B29FD9E /* RCTModuloAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuloAnimatedNode.h; sourceTree = ""; }; - E8E1E9DBCA36C7FB3BEF1DBD87B5C3B7 /* EXConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXConstants.h; path = EXConstants/EXConstants.h; sourceTree = ""; }; + E70FAEF34CCE817C4019070422ECB8FA /* RCTSurfaceSizeMeasureMode.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceSizeMeasureMode.mm; sourceTree = ""; }; + E72D6762D6F4E3229A40FC09BADF7F6B /* RNImageUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNImageUtils.m; path = ios/RN/RNImageUtils.m; sourceTree = ""; }; + E7B2BB32FCF0F092E6BE401E426BDA86 /* NSTextStorage+FontScaling.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSTextStorage+FontScaling.h"; sourceTree = ""; }; + E7C4709417D102A02C742F3510E849EB /* RNSScreenStack.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreenStack.m; path = ios/RNSScreenStack.m; sourceTree = ""; }; + E80BAE8CA5E879443EDAF2BCC9E42BE8 /* UMModuleRegistryProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistryProvider.m; sourceTree = ""; }; + E81241A8648AA0F2A93B6C9670383660 /* JSBundleType.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSBundleType.cpp; sourceTree = ""; }; + E8BB1C92171F980A036F15CF703D2655 /* REAConcatNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAConcatNode.m; sourceTree = ""; }; E8E318C26ABACB53229C2E7067177FBB /* diy-fp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "diy-fp.h"; path = "double-conversion/diy-fp.h"; sourceTree = ""; }; - E8F208ADBFEC9B0A638D8F7E4069050D /* RCTSurfaceRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootView.h; sourceTree = ""; }; - E90E9AED0256637B0E790AC4BC170376 /* RCTLayoutAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayoutAnimation.h; sourceTree = ""; }; - E911888582E5D7BF3A07686B5F193C9B /* RNConvertPhAsset.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNConvertPhAsset.xcconfig; sourceTree = ""; }; - E9165BDB49185A75CB884432BFB3AD50 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - E9C851F429595210A359136CDE6FCAF5 /* TurboModuleUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TurboModuleUtils.h; path = turbomodule/core/TurboModuleUtils.h; sourceTree = ""; }; - EA05C5080E86FABEFBB9D60C11FE0152 /* RNCamera.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCamera.h; path = ios/RN/RNCamera.h; sourceTree = ""; }; - EA362ED20E5E5D3E597DE6DCE497DD79 /* JSINativeModules.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = JSINativeModules.cpp; path = jsireact/JSINativeModules.cpp; sourceTree = ""; }; - EA612016CD00BB46814440994B5FA04D /* EXFileSystem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFileSystem.h; path = EXFileSystem/EXFileSystem.h; sourceTree = ""; }; - EB071BF1C50B68C08E9CDC61C2DCBF5D /* RNVectorIcons-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNVectorIcons-dummy.m"; sourceTree = ""; }; - EB2D8FFE28CF8ACD9B93AD0C798A4E04 /* ReactMarker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ReactMarker.h; sourceTree = ""; }; - EB3A92E598FC1648E4489D0823DC5E78 /* RCTProgressViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTProgressViewManager.h; sourceTree = ""; }; - EBBBD67DBF4923EC98909CB2EDAD617E /* RCTConvert+CoreLocation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+CoreLocation.m"; sourceTree = ""; }; - EBC2CFB243ED5E3F36692501E6F9E126 /* RNVectorIcons.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNVectorIcons.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - EBE648519F08A8BA121FADC857DE01A8 /* react-native-safe-area-context.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-safe-area-context.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - EBED3AA1567DC6864D4DEEFBAD906E78 /* RCTI18nUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTI18nUtil.h; sourceTree = ""; }; - EBF7224B6B153A98C1961740B72E3C0E /* React-RCTSettings-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTSettings-prefix.pch"; sourceTree = ""; }; + E8E90B96855ACAE7CDC170CCBC415015 /* UMEventEmitterService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMEventEmitterService.h; sourceTree = ""; }; + E932AA6C7BA7B3A5E8029E28C16213B1 /* RCTBlobManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTBlobManager.mm; sourceTree = ""; }; + E97D7C7E7B3DA2A67C08F204C6323ACE /* RNRotationHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNRotationHandler.h; sourceTree = ""; }; + E97E421D7170698C39CD51DD91548ED6 /* FBLazyVector.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FBLazyVector.xcconfig; sourceTree = ""; }; + E9F4510B953EB633173ADB84B09FB5D4 /* RCTModalHostViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostViewController.h; sourceTree = ""; }; + EA0701CCFB6EC96B3D72C59EC329D4E9 /* ReactMarker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ReactMarker.h; sourceTree = ""; }; + EA1591B3EDD9E30ABCAC6F75E3E53A05 /* RCTScrollViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollViewManager.m; sourceTree = ""; }; + EA2EDC0D3A941227B80F8FA0AEDA8617 /* EXConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXConstants.h; path = EXConstants/EXConstants.h; sourceTree = ""; }; + EA557A994668D9483B5795B4A5ED9C14 /* React-RCTLinking.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTLinking.xcconfig"; sourceTree = ""; }; + EACFCB010709A5A1F4E06920F7B4CF51 /* RCTTurboModuleManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTTurboModuleManager.mm; sourceTree = ""; }; + EAEC52651426996A8821AB191999813A /* RCTDevMenu.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDevMenu.m; sourceTree = ""; }; + EBB4DFBF2A1BB5427042FCF091E942A8 /* RCTNativeAnimatedNodesManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTNativeAnimatedNodesManager.m; sourceTree = ""; }; EBFE7E9395BF528FC352299601FDBDF0 /* logging.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = logging.cc; path = src/logging.cc; sourceTree = ""; }; - EC21F2CA84F3DE87739BD069D8D38C5B /* RCTAsyncLocalStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAsyncLocalStorage.h; sourceTree = ""; }; - EC2FAC3583F25007515CA352CA6926A9 /* Feather.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Feather.ttf; path = Fonts/Feather.ttf; sourceTree = ""; }; - EC4C848556E4CD0D318924ED5C7F49DB /* RCTTouchEvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTouchEvent.m; sourceTree = ""; }; - EC85A22E8843911FD8B38367B9693521 /* UMReactLogHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactLogHandler.m; sourceTree = ""; }; - ED00E6F3581DB3DD3620294137A642C5 /* RCTWebSocketExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTWebSocketExecutor.h; path = Libraries/WebSocket/RCTWebSocketExecutor.h; sourceTree = ""; }; + EC22D5A5D51740C1D727AB192024DD9F /* NSMutableDictionary+ImageMetadata.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSMutableDictionary+ImageMetadata.m"; path = "ios/RCT/NSMutableDictionary+ImageMetadata.m"; sourceTree = ""; }; + ECA68C965208CC9BDBBC557A7B2D7BAC /* RCTRefreshControlManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRefreshControlManager.h; sourceTree = ""; }; + ECD37467A1FBC28F6F4D3A43C34FA258 /* RCTKeyCommands.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTKeyCommands.m; sourceTree = ""; }; ED1E3FC0DC90F4A787472917BFB6B235 /* libEXFileSystem.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXFileSystem.a; path = libEXFileSystem.a; sourceTree = BUILT_PRODUCTS_DIR; }; - ED2BDABA8138144FE7AAED93D5753CE3 /* RCTModuloAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModuloAnimatedNode.m; sourceTree = ""; }; - ED45391CBB659F519C4FF970C5587E81 /* UMAppDelegateWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMAppDelegateWrapper.h; path = UMCore/UMAppDelegateWrapper.h; sourceTree = ""; }; - EE292BE93D3F6530809C4D7AA68F2B7A /* LICENCE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENCE; sourceTree = ""; }; + ED288469A73A4C3B51263B123E2A1F59 /* Yoga-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Yoga-dummy.m"; sourceTree = ""; }; + ED4DE307D6A11CCD123B7B0E67F22C23 /* RNFS-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNFS-prefix.pch"; sourceTree = ""; }; + ED8C9E85B728EA63B9F64F249976EBEC /* RCTNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNetworking.h; path = Libraries/Network/RCTNetworking.h; sourceTree = ""; }; + ED8F2DA67CA3CC5C0B4BA8487636417F /* RCTEventEmitter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventEmitter.m; sourceTree = ""; }; + ED9F711B5505A79D0B30FF1B085DD666 /* react-native-ffmpeg-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-ffmpeg-prefix.pch"; sourceTree = ""; }; + EDF13E43E6D156C1CC76ED77201F8CD7 /* RCTSliderManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSliderManager.m; sourceTree = ""; }; + EE456CD8925E4FA0C312C3EC97385116 /* NSDataBigString.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = NSDataBigString.mm; sourceTree = ""; }; + EE4698B9E60B69787F83BB35335F8695 /* UIView+React.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UIView+React.m"; sourceTree = ""; }; + EE6FF84176108F573AFE6CF97D7B1FDB /* RCTActivityIndicatorView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTActivityIndicatorView.m; sourceTree = ""; }; + EEC578F8F9A6DE2A37052A232CB9B354 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + EED806455D3BA2CB93E0A2F1A54F8F54 /* RCTTextSelection.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextSelection.m; sourceTree = ""; }; EEDBF403E8E0B3885E65C2741B536BC5 /* libReact-RCTImage.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTImage.a"; path = "libReact-RCTImage.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - EEDE59DB5E837334B53E1F69E51ABB53 /* FontAwesome5_Brands.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = FontAwesome5_Brands.ttf; path = Fonts/FontAwesome5_Brands.ttf; sourceTree = ""; }; - EEF2E2FFC3FEDBD506B4F8EFFB8023F7 /* RCTBorderDrawing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBorderDrawing.h; sourceTree = ""; }; - EF1695201EBD1D209D1D71B2C4072685 /* RCTSliderManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSliderManager.m; sourceTree = ""; }; - EF3F64E82363FC81A6F7527DBEDB2140 /* YGFloatOptional.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGFloatOptional.h; path = yoga/YGFloatOptional.h; sourceTree = ""; }; - EF45E326AEC387468B0DF2DBCCE7E69E /* RCTShadowView+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTShadowView+Internal.h"; sourceTree = ""; }; - EF5828C6CD0C8B4554C601C5587F6028 /* React-RCTBlob-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTBlob-dummy.m"; sourceTree = ""; }; + EF7BD5E8FD56405C5C1B3070F1C1C74D /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + EF7D4E1BE66DDD67823C8D4D96D9A840 /* UMFontProcessorInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontProcessorInterface.h; path = UMFontInterface/UMFontProcessorInterface.h; sourceTree = ""; }; EF8FD382D1231A72ACCFEFECB6726CAC /* cached-powers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "cached-powers.h"; path = "double-conversion/cached-powers.h"; sourceTree = ""; }; - EF905AE211121D6BEF9C5AEB6F1A0497 /* UMFontInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFontInterface.xcconfig; sourceTree = ""; }; EF9CE74F40BBDC5254233E55EAA6D53E /* vlog_is_on.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = vlog_is_on.h; path = src/glog/vlog_is_on.h; sourceTree = ""; }; - EF9E0ACD61EF4DEABC4A1539EA59274D /* CoreModulesPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = CoreModulesPlugins.mm; sourceTree = ""; }; - EF9F1ED02BFF950C47BD773B54377D23 /* RCTDevLoadingView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDevLoadingView.h; sourceTree = ""; }; - EFDE1BE8333777C01FB138FC7E21C001 /* REASetNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REASetNode.m; sourceTree = ""; }; - EFF102B825C6DED566FED68AD6FE7754 /* RCTImageDataDecoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageDataDecoder.h; path = Libraries/Image/RCTImageDataDecoder.h; sourceTree = ""; }; + EFD035592A4E3757F422C855308D514C /* React-RCTVibration-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTVibration-prefix.pch"; sourceTree = ""; }; F00D2D7E09BC859BFC5C152BAC4D220A /* libnettle.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = libnettle.framework; sourceTree = ""; }; - F03FAE0313E55A20AF5E7AD4C33867B5 /* JSCRuntime.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSCRuntime.h; sourceTree = ""; }; - F045A01D211904D5A26C2FD1FFCD16F4 /* RCTDeviceInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDeviceInfo.m; sourceTree = ""; }; - F052F1B8ADE208EA0D884E17A35E7938 /* React-Core-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-Core-prefix.pch"; sourceTree = ""; }; - F0CB6D01AFA8EAC1A69B57F4AB0D62AC /* EXConstants.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXConstants.xcconfig; sourceTree = ""; }; - F11AA1C827B436C10A93758DD6EFCB7D /* RCTScrollableProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollableProtocol.h; sourceTree = ""; }; - F1437AC46FA4043E69D75C04A87745C9 /* RCTDatePicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDatePicker.h; sourceTree = ""; }; - F153BBE7435A9A435E981F55ACDE6A64 /* RCTComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTComponent.h; sourceTree = ""; }; + F02C350BC6AEFFEA1D66E85846E68A68 /* UMReactFontManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactFontManager.h; sourceTree = ""; }; + F0557606F9683623829FDEF172C330F3 /* RCTModalManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalManager.m; sourceTree = ""; }; + F06FBE94467DCD3EB4B69D2622EFEA6C /* RCTShadowView+Layout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTShadowView+Layout.h"; sourceTree = ""; }; + F09A5A0FE3B5008C9C7F5F8908ED9404 /* react-native-video.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-video.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + F0A7E989EA06C875F7392E82B6864698 /* RCTInputAccessoryViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryViewManager.m; sourceTree = ""; }; + F1A1BBBF54ED42D4FC1627483DCEA137 /* RCTI18nUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTI18nUtil.h; sourceTree = ""; }; F1BD5675AF1DE7B35ECB267058FF5C2B /* libavutil.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = libavutil.framework; sourceTree = ""; }; - F21D3DD4E51A36DC4A13EBFE79AB2492 /* RCTI18nUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTI18nUtil.m; sourceTree = ""; }; - F24171EB5D139C46DCC84BEB3E4DE0E2 /* RCTPerfMonitor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPerfMonitor.m; sourceTree = ""; }; - F2A394EBB3A21CE48439562716F4BC9B /* RCTSubtractionAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSubtractionAnimatedNode.m; sourceTree = ""; }; - F2DE4DC8A8B979E99E4251015F3A86E8 /* RCTSurfacePresenterStub.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfacePresenterStub.h; sourceTree = ""; }; + F1FDBA4F989662F5DC26437582E5EDD1 /* React-CoreModules.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-CoreModules.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + F2567BF146B787AF05858EE1A1C7B0FE /* RNCAsyncStorage.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNCAsyncStorage.xcconfig; sourceTree = ""; }; + F2BE03EB919897595FB675F67319DC79 /* NativeToJsBridge.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = NativeToJsBridge.cpp; sourceTree = ""; }; F2E7C88DFCD460A4B46B913ADEB8A641 /* libReact-jsiexecutor.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-jsiexecutor.a"; path = "libReact-jsiexecutor.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - F2EC7E37574AC9B8A51A4964B13BF358 /* RCTModuleMethod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuleMethod.h; sourceTree = ""; }; - F30F46E794B249FD88FCAE8CE32727E4 /* RNCAsyncStorageDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAsyncStorageDelegate.h; path = ios/RNCAsyncStorageDelegate.h; sourceTree = ""; }; - F3189BF17907999F990C3CA336544E28 /* RCTTextSelection.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextSelection.m; sourceTree = ""; }; - F335B0706564A89383B0BF00A34EC1E0 /* RCTCxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxModule.h; sourceTree = ""; }; - F33D462E81760BD44CD5990E82BEBBB5 /* React-RCTImage.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTImage.xcconfig"; sourceTree = ""; }; - F3417ABF085CCEAC96B4A3A99EBD882F /* RCTSurfaceView+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTSurfaceView+Internal.h"; sourceTree = ""; }; - F39F2EB88472A3E7F6B8919127499550 /* RCTStatusBarManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTStatusBarManager.h; sourceTree = ""; }; - F3AC3DAFB070F9DD031310EBEC62974A /* RCTNetworking.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTNetworking.mm; sourceTree = ""; }; - F3BF029C5452D1778B4054ACF96E41C9 /* RCTTransformAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTransformAnimatedNode.h; sourceTree = ""; }; - F4071A99A6B6EF72BC1880CE7BE93574 /* react-native-orientation.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-orientation.xcconfig"; sourceTree = ""; }; + F314C97E33E6FDCAE8A15A5ADD705A6D /* RCTViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTViewManager.m; sourceTree = ""; }; + F348E67BEE0085C8EEDD35F44F176B14 /* RCTTrackingAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTrackingAnimatedNode.m; sourceTree = ""; }; + F3B205F865893ED75D98DA9B3B779E32 /* RCTErrorInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTErrorInfo.h; sourceTree = ""; }; F4304FB1018BE9D713A23650851EEA44 /* bignum-dtoa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "bignum-dtoa.h"; path = "double-conversion/bignum-dtoa.h"; sourceTree = ""; }; - F4372AF93419DD78500473B7AFA091E6 /* RCTErrorInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTErrorInfo.m; sourceTree = ""; }; F43FCD8A330E77FCD93B6F965AC85EE9 /* strtod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = strtod.h; path = "double-conversion/strtod.h"; sourceTree = ""; }; F458A8590920D99BE0694119BBF147C4 /* mobile-ffmpeg-https.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "mobile-ffmpeg-https.xcconfig"; sourceTree = ""; }; - F4CEF6DA90851B7C03A5C8E783E6FF6B /* RCTFrameUpdate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFrameUpdate.m; sourceTree = ""; }; - F52B23131D83471799EED79B95B0D380 /* React-CoreModules.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-CoreModules.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - F63234F177C29CB3C36B8E90CC251703 /* JSIndexedRAMBundle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSIndexedRAMBundle.cpp; sourceTree = ""; }; - F64008AF993BEDDAC34E41757EEFDCD8 /* EXReactNativeUserNotificationCenterProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXReactNativeUserNotificationCenterProxy.m; path = EXPermissions/EXReactNativeUserNotificationCenterProxy.m; sourceTree = ""; }; - F658C0B786E670FA410F86FAB49A2FE9 /* RNSScreenStackHeaderConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreenStackHeaderConfig.m; path = ios/RNSScreenStackHeaderConfig.m; sourceTree = ""; }; - F6AEF0EA1FE35A2768BF4F73E009880C /* RCTRootViewInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootViewInternal.h; sourceTree = ""; }; - F6B415CD3D3D1F279141AEBD17BC3674 /* TextDetectorManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TextDetectorManager.h; path = ios/RN/TextDetectorManager.h; sourceTree = ""; }; - F6BF7B403F75884FE916A273DE8EFD14 /* YGValue.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGValue.cpp; path = yoga/YGValue.cpp; sourceTree = ""; }; - F71C9B21F79BCF67CBA9B3A5AD5DDC5F /* RCTFileReaderModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFileReaderModule.m; sourceTree = ""; }; + F473CAF496D4B8568E0F35128F5DBFB6 /* UMMagnetometerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMMagnetometerInterface.h; path = UMSensorsInterface/UMMagnetometerInterface.h; sourceTree = ""; }; + F48D23DE414F808E84FE271AEEDF1BC9 /* JSINativeModules.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JSINativeModules.h; path = jsireact/JSINativeModules.h; sourceTree = ""; }; + F4C035B1870E4EF64B7057572BAA6CC1 /* FaceDetectorManagerMlkit.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FaceDetectorManagerMlkit.m; path = ios/RN/FaceDetectorManagerMlkit.m; sourceTree = ""; }; + F4EFD48F3CE8DBEA8E0AEE17365A7229 /* RCTNativeModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTNativeModule.mm; sourceTree = ""; }; + F51C720754D08F52358FBEB937CB818A /* REAEventNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAEventNode.m; sourceTree = ""; }; + F528BBEB9617135FFBC85E9A066D5D28 /* RCTNativeAnimatedModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTNativeAnimatedModule.m; sourceTree = ""; }; + F536F46D6D4D418D3A5D9136FFBB2A77 /* RCTScrollView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollView.h; sourceTree = ""; }; + F57A15C7A01CC133BF1440BC2A5B7D49 /* RCTImageShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageShadowView.h; path = Libraries/Image/RCTImageShadowView.h; sourceTree = ""; }; + F57B158A418B2DCF2DDBE405967E7351 /* RCTStatusBarManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTStatusBarManager.m; sourceTree = ""; }; + F5EDF193EBE3A1B89DCFC5CC23E2B153 /* RNVectorIconsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNVectorIconsManager.h; path = RNVectorIconsManager/RNVectorIconsManager.h; sourceTree = ""; }; + F65D5AFA965740EFE12F227E5006718A /* REATransitionAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransitionAnimation.h; sourceTree = ""; }; + F66901A7D43B99BA9C511B685A37D560 /* RCTCxxUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxUtils.h; sourceTree = ""; }; + F6A5A8BD0F9EB01D3547E58B7CC26285 /* RCTUITextField.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUITextField.h; sourceTree = ""; }; + F6E068A964849698547480FC1CBE6299 /* EXFileSystemLocalFileHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFileSystemLocalFileHandler.h; path = EXFileSystem/EXFileSystemLocalFileHandler.h; sourceTree = ""; }; F71EBF73F354B475D465FF6DE9A66707 /* libReact-RCTBlob.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTBlob.a"; path = "libReact-RCTBlob.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - F7237D2889014968DB6CB793134D0284 /* RCTSurfaceRootShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSurfaceRootShadowView.m; sourceTree = ""; }; - F7A16594BDBC43BEA097E10F33B2F14E /* RCTRawTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRawTextShadowView.m; sourceTree = ""; }; - F7D961288869DF1D1842539C692B7BC1 /* UMViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMViewManager.m; path = UMCore/UMViewManager.m; sourceTree = ""; }; - F87AB7CFD2D9F1E4F31F64A8CB999C8A /* React-RCTVibration-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTVibration-prefix.pch"; sourceTree = ""; }; - F89497025726010111188D1600E20582 /* RCTAlertManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAlertManager.h; sourceTree = ""; }; - F8C3CC2F123ACD79C72348D7F6932655 /* RNFaceDetectorModuleMLKit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFaceDetectorModuleMLKit.h; path = ios/RN/RNFaceDetectorModuleMLKit.h; sourceTree = ""; }; - F8E67343ED88E5D364A00E618788AD6F /* REAModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = REAModule.h; path = ios/REAModule.h; sourceTree = ""; }; + F726C5236961273F8A0BD96DB979B6E7 /* RNCamera.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCamera.h; path = ios/RN/RNCamera.h; sourceTree = ""; }; + F736712BACA7B818523C111E7C64E8A3 /* ReactCommon-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ReactCommon-prefix.pch"; sourceTree = ""; }; + F738F8EDA8B2362463C6094FF54FF4E6 /* RCTFont.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFont.h; sourceTree = ""; }; + F76357596DE29FD3A090101A88ACD711 /* RCTLog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLog.h; sourceTree = ""; }; + F78FEE0E231EC7FF85CC3D133641BA52 /* RCTMaskedViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMaskedViewManager.m; sourceTree = ""; }; + F7ED4110BB7EE7BD6D8B4ACA8689F069 /* RCTParserUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTParserUtils.h; sourceTree = ""; }; + F7F45963DA6463B543F55F6089D737C1 /* UMReactNativeAdapter.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMReactNativeAdapter.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + F85CBD7C6F5037CCDE62675ED5541350 /* RCTImageUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageUtils.h; path = Libraries/Image/RCTImageUtils.h; sourceTree = ""; }; + F891D39C738DFEB4BB91A3C191307D2F /* REATransitionManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransitionManager.m; sourceTree = ""; }; + F89D14093FD3B5BF37F11E78273638AA /* UMFaceDetectorManagerProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFaceDetectorManagerProvider.h; path = UMFaceDetectorInterface/UMFaceDetectorManagerProvider.h; sourceTree = ""; }; + F8AA33BBA7905A2364D83A41E3D4797C /* RCTAssert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAssert.m; sourceTree = ""; }; + F8CEC9AD6669928BAFCE66B5CCACCED5 /* RNGestureHandlerModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerModule.h; path = ios/RNGestureHandlerModule.h; sourceTree = ""; }; + F919CA8E32E51E959E7E8D9698EC48AD /* RCTCxxConvert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTCxxConvert.m; sourceTree = ""; }; + F935C734CB1B6AAECF11C3EC92B36227 /* RCTSlider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSlider.m; sourceTree = ""; }; + F936B61B7E82836A7B833940D19AA903 /* UMFileSystemInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMFileSystemInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; F958876A082BF810B342435CE3FB5AF6 /* libRCTTypeSafety.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRCTTypeSafety.a; path = libRCTTypeSafety.a; sourceTree = BUILT_PRODUCTS_DIR; }; - F96DCA37D837C6F2F2C5D08670339A3A /* RCTURLRequestDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTURLRequestDelegate.h; sourceTree = ""; }; - FA47C7C7FFA9F9213523AF3AF439F3F1 /* MaterialIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = MaterialIcons.ttf; path = Fonts/MaterialIcons.ttf; sourceTree = ""; }; - FA84C403E623B17058851E24086D6741 /* RCTAlertManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAlertManager.m; sourceTree = ""; }; - FA979A2697E8F9E255F3F1367F77A8B2 /* RCTMultipartDataTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultipartDataTask.h; sourceTree = ""; }; - FA9C493D552E04C239CB8C70BD8443CB /* RNGestureHandlerModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerModule.h; path = ios/RNGestureHandlerModule.h; sourceTree = ""; }; - FABD5E8E04B22837ECFA6237EA9EAC1B /* RCTSafeAreaView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaView.m; sourceTree = ""; }; - FAC3FCEE9F3F3D11970C2E58BC14D746 /* RCTNetInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNetInfo.h; path = Libraries/Network/RCTNetInfo.h; sourceTree = ""; }; - FB0385AC837AEDF1F30127B5FEB97EF5 /* RCTPackagerConnection.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTPackagerConnection.mm; sourceTree = ""; }; - FB47E41C9994F9F5C6D0DFBB0485764B /* RCTUIUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIUtils.m; sourceTree = ""; }; - FB668BBF526324D6BE0B7341899B9E32 /* RNCMaskedView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCMaskedView.m; path = ios/RNCMaskedView.m; sourceTree = ""; }; - FBE70897D287E740951C8C7342833B60 /* RCTBaseTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextShadowView.h; sourceTree = ""; }; - FC08D16385A42994EBF19D6012857B1C /* react-native-cameraroll-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-cameraroll-dummy.m"; sourceTree = ""; }; - FC1906309D863A1AAC2E3D553F1FD345 /* React-jsiexecutor-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-jsiexecutor-prefix.pch"; sourceTree = ""; }; - FC474C0DC9DA24BE0898B3497BA96832 /* UMFaceDetectorManagerProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFaceDetectorManagerProvider.h; path = UMFaceDetectorInterface/UMFaceDetectorManagerProvider.h; sourceTree = ""; }; - FC86C9E51BB496CEE3F3A4474F7F7A96 /* RNCSafeAreaView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaView.m; path = ios/SafeAreaView/RNCSafeAreaView.m; sourceTree = ""; }; - FCC8066090A6CDC5FCB36BD4051F3308 /* react-native-cameraroll-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-cameraroll-prefix.pch"; sourceTree = ""; }; - FCDF9554889A1901A252F189D87DA0A1 /* RCTAppState.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAppState.m; sourceTree = ""; }; - FD3B52C7890202D8034102AE36903F17 /* RCTComponentData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTComponentData.h; sourceTree = ""; }; - FDD3F541E318D97EAF93260E1ADECF7E /* RCTRefreshControlManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRefreshControlManager.m; sourceTree = ""; }; - FDD45AFED0DBE1D96467F7E5E3731BD0 /* RCTMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMacros.h; sourceTree = ""; }; - FDFAD7F97DE705EDE353E302BA5AEF92 /* FBLazyVector.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = FBLazyVector.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - FDFBEF39EAE6D5C094B1698A435AF47D /* RCTModalManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalManager.h; sourceTree = ""; }; - FE03EA5E7F76C19C6C321422F5988833 /* RCTView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTView.h; sourceTree = ""; }; - FE23D2AF7F63ADC6981403D63B652BD9 /* RCTVirtualTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVirtualTextViewManager.m; sourceTree = ""; }; - FE4EA72E608355434E1B7EFA11527BFC /* Instance.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = Instance.cpp; sourceTree = ""; }; - FE5E45A4E8A74B99870A717F3F664099 /* React-RCTSettings.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTSettings.xcconfig"; sourceTree = ""; }; - FE5E58AE8175E9714B5A219046EC1067 /* React-RCTImage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTImage-prefix.pch"; sourceTree = ""; }; + F95A3EB29C5ADDCBDCC71BA3A487B9BE /* event.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = event.h; sourceTree = ""; }; + F96CAAA8A1F5E0DCBB2000FAD7F30A51 /* REAValueNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAValueNode.m; sourceTree = ""; }; + F971F310D923A6EAB889DB1AD2496C84 /* react-native-safe-area-context.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-safe-area-context.xcconfig"; sourceTree = ""; }; + F977DF969BE617C98B499B21C3CE4F06 /* jsi.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = jsi.h; sourceTree = ""; }; + F9F5AD35E34A29456AFE430F7F1B93B1 /* RCTURLRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTURLRequestHandler.h; sourceTree = ""; }; + FA88DEC679531C41480CEAF5C4CA8C6F /* RCTMultipartStreamReader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultipartStreamReader.m; sourceTree = ""; }; + FABA37A55A63AC04287B6EB245CC98CF /* UMViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMViewManager.m; path = UMCore/UMViewManager.m; sourceTree = ""; }; + FABBD1F47A0B9B964AEC2C8FF24DCFE0 /* RCTRawTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRawTextShadowView.m; sourceTree = ""; }; + FBAACB1138943EF35FF7C75CCD6BDD7F /* FBLazyVector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLazyVector.h; path = FBLazyVector/FBLazyVector.h; sourceTree = ""; }; + FBD08346B1B7A0645ED1847CCFA8C88D /* log.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = log.h; path = yoga/log.h; sourceTree = ""; }; + FC0C2E713065AC236249C7D77EF6C785 /* UMKernelService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMKernelService.h; sourceTree = ""; }; + FC68FE4FB41B24BE666E8AC9F8AA02EA /* RCTFileReaderModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFileReaderModule.m; sourceTree = ""; }; + FD396878F4E91C6F688394E9DA1A9538 /* SimpleLineIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = SimpleLineIcons.ttf; path = Fonts/SimpleLineIcons.ttf; sourceTree = ""; }; + FD4C5EB168DAAC29CFE06B9DBDAF18CE /* RNCameraUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCameraUtils.m; path = ios/RN/RNCameraUtils.m; sourceTree = ""; }; + FD4ED4D91A66E975C5C46CBB365E8347 /* UMSingletonModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMSingletonModule.h; path = UMCore/UMSingletonModule.h; sourceTree = ""; }; + FD75197CCC2D655D9C9D65B50075F386 /* RCTEventDispatcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventDispatcher.h; sourceTree = ""; }; + FDDE43EE3AAB93D005C1C90DE287DFFF /* RCTInputAccessoryView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryView.m; sourceTree = ""; }; + FDF6B85A0F0BBEAAAB6A2FF8E208847B /* RCTEventAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventAnimation.m; sourceTree = ""; }; + FDFB98F7935DB064FA17A8FCD5CA526A /* UMViewManagerAdapterClassesRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMViewManagerAdapterClassesRegistry.h; sourceTree = ""; }; + FE44E822AFA7206FCC1F75369FB944CC /* RCTCxxMethod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxMethod.h; sourceTree = ""; }; + FE503983CCC1CDDB8238EDA20E7485FC /* RCTFileReaderModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTFileReaderModule.h; path = Libraries/Blob/RCTFileReaderModule.h; sourceTree = ""; }; FE7B9294FF05AAFD1653E2104E10844A /* libReact-RCTAnimation.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTAnimation.a"; path = "libReact-RCTAnimation.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - FE7E6C63FDCA9B17A570C69559134672 /* EXFilePermissionModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFilePermissionModule.m; path = EXFileSystem/EXFilePermissionModule.m; sourceTree = ""; }; - FE9169F83AFCFBA89E08722767B57688 /* React-RCTLinking.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-RCTLinking.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - FEA3675BD03A419D239F072CF84E3682 /* UMFontInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMFontInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - FEB36A24BB4A9233E415AA01B4DD7225 /* RCTAsyncLocalStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAsyncLocalStorage.m; sourceTree = ""; }; - FEFBBDC48A0FFE98A7C1C43A44DB40DD /* RCTInputAccessoryViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryViewManager.h; sourceTree = ""; }; - FF2AF5222E570DF6153D71941E401DFF /* REATransformNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransformNode.h; sourceTree = ""; }; FF510B75956696EF93E64075AE725F0E /* Format.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Format.cpp; path = folly/Format.cpp; sourceTree = ""; }; - FF5D6643B58BDA928711160ABD5F6126 /* RNSScreenStack.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreenStack.h; path = ios/RNSScreenStack.h; sourceTree = ""; }; - FFA93701CE5F3369A34C81C72F4CBA36 /* RCTSafeAreaViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaViewManager.h; sourceTree = ""; }; - FFABDEBAE71ECF750B419230362FEE8E /* react-native-safe-area-context.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-safe-area-context.xcconfig"; sourceTree = ""; }; + FF933CED0C04922E664730EAC845DBCE /* JsArgumentHelpers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JsArgumentHelpers.h; sourceTree = ""; }; + FF9E1E556E0737C4DC8CB41402FAA694 /* REASetNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REASetNode.m; sourceTree = ""; }; FFBCDAEF9450AA561AD8CF897E247CB5 /* String.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = String.cpp; path = folly/String.cpp; sourceTree = ""; }; + FFBD1BE7DC18190C1CB7395361D37C14 /* REAStyleNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAStyleNode.h; sourceTree = ""; }; FFC57E46B275BE9B41BACF372B1BF023 /* ColdClass.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ColdClass.cpp; path = folly/lang/ColdClass.cpp; sourceTree = ""; }; >>>>>>> master /* End PBXFileReference section */ @@ -5057,6 +5424,13 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 4A1457F4618C68E60761428A5B0CF7B5 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; 4F2B8E1E67742891AA21DEE0CCB1BBA9 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -5187,42 +5561,42 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - BCCBD7FF002375C8E814AD3A7B41A539 /* Frameworks */ = { + BC49ACBE546494EFC9BD02644005D049 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - BED2399A00D7DE5EB608669BB45F5958 /* Frameworks */ = { + BCCBD7FF002375C8E814AD3A7B41A539 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - C254557CF86CCC5C969201743725FEBB /* Frameworks */ = { + BED2399A00D7DE5EB608669BB45F5958 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - CDAFAF1D1F783376A3CC817FD99176DD /* Frameworks */ = { + C254557CF86CCC5C969201743725FEBB /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - D04E7A280248BE68186402B894C608F6 /* Frameworks */ = { + CDAFAF1D1F783376A3CC817FD99176DD /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - F152E80DE1808D687448715E6716DD2B /* Frameworks */ = { + D04E7A280248BE68186402B894C608F6 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -5260,6 +5634,9 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXGroup section */ +<<<<<<< HEAD + 004D0E094AC74E54E91E896078A4D417 /* jscallinvoker */ = { +======= <<<<<<< HEAD 0181435192F8324FED48D0C67137D2F7 /* RCTVibrationHeaders */ = { isa = PBXGroup; @@ -5287,25 +5664,36 @@ 46C5FF8B4976483C609842698FCFA122 /* RCTTypeSafety.podspec */, ======= 009346AC3B0B36B32A5E80AB978CF466 /* BaseText */ = { +>>>>>>> master isa = PBXGroup; children = ( - C03DE86B6183B91A2D1002ECD0F3C633 /* RCTBaseTextShadowView.m */, - C4880304D640F32E7F110A7562FA37FA /* RCTBaseTextViewManager.m */, + 091121A09A9A57CE1AE5A4785B952D1D /* BridgeJSCallInvoker.cpp */, + A7EEEA56EBE56384566179197039D143 /* BridgeJSCallInvoker.h */, + 990878471A8D3809942AE1B5E4283D67 /* JSCallInvoker.h */, ); - name = BaseText; - path = BaseText; + name = jscallinvoker; sourceTree = ""; }; - 015217F7B7A0F987F6E1F8E3CDFD4D5C /* RCTBlobHeaders */ = { + 004E039C0272A1CA658547B2BDA657AE /* Support Files */ = { isa = PBXGroup; children = ( +<<<<<<< HEAD + 9D966D5F675EBCC32F38F17AB8AF9AAC /* React-RCTImage.xcconfig */, + 8C6F4EE1F9C650E9C9A6D1C931A3753D /* React-RCTImage-dummy.m */, + 478026929EF88038BCDAF0831FA7D0F0 /* React-RCTImage-prefix.pch */, +======= CA1B8B1428B8F85BB948C4D591CAFCAD /* RCTBlobManager.h */, 3067FF57D95E00C6C3673DDE86B2F48A /* RCTFileReaderModule.h */, +>>>>>>> master >>>>>>> master ); - name = RCTBlobHeaders; + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-RCTImage"; sourceTree = ""; }; +<<<<<<< HEAD + 012B071576890115C8C499160134EE32 /* CxxBridge */ = { +======= <<<<<<< HEAD 047BA7C7C597849EE501B4C262525853 /* UMTaskManagerInterface */ = { isa = PBXGroup; @@ -5355,38 +5743,69 @@ 62C344F88B623AC35E878F9E98A92809 /* RCTSurfaceSizeMeasureMode.mm */, ======= 06328EB268A2C9ECF37AE0ACA8705DDF /* UserNotification */ = { +>>>>>>> master isa = PBXGroup; children = ( - C03CA2C4613272A5A860B5FD0059C75D /* EXUserNotificationPermissionRequester.h */, - 983793D4A777F37B896A7B04A7356447 /* EXUserNotificationPermissionRequester.m */, + 781E815DFCFA603CE1F2850A07238B6D /* JSCExecutorFactory.h */, + C8E626DCA9F86152314A004F2943527B /* JSCExecutorFactory.mm */, + B163EB9C3DEDEE82BF61C93C66BAB736 /* NSDataBigString.h */, + EE456CD8925E4FA0C312C3EC97385116 /* NSDataBigString.mm */, + 9F5018CE0F6346D124D0A604BF93D1CF /* RCTCxxBridge.mm */, + 6578D5B4EA7164BD3131E013B04300D5 /* RCTCxxBridgeDelegate.h */, + 69117598BCC1CA3D01B947BA9B41B222 /* RCTMessageThread.h */, + 068EF292DD569F13D468971AA62917F5 /* RCTMessageThread.mm */, + 72B36530859D2E5550669E1E3C042972 /* RCTObjcExecutor.h */, + 1F78BE74F70334DC01F1690714B8733D /* RCTObjcExecutor.mm */, ); - name = UserNotification; - path = UserNotification; + name = CxxBridge; + path = React/CxxBridge; sourceTree = ""; }; - 096F42F528D63C67FBCA4916A16A26D9 /* VirtualText */ = { + 01DEA01AB010B5DF80C70F74ACB61A93 /* UMPermissionsInterface */ = { isa = PBXGroup; children = ( - 572970113B665D053325DE721CD6F314 /* RCTVirtualTextShadowView.h */, - 4B5979E980C79FAEE2526F9EC8B06DE1 /* RCTVirtualTextViewManager.h */, + 6C88B9377961B7019B30852F612ADBD2 /* UMPermissionsInterface.h */, + 0AFA09A24DE77125FF99862CE6B6C09E /* UMPermissionsMethodsDelegate.h */, + 1EC8FE8B7E18485A3A5670F0DFAFA063 /* UMPermissionsMethodsDelegate.m */, + 3980EB2052F198FEBC3DA51784E07E4E /* UMUserNotificationCenterProxyInterface.h */, + 05B332F6935BFA1C790372F0592C57F5 /* Pod */, + B01BB2E5AF25B058EE935A33B88C10EB /* Support Files */, ); - name = VirtualText; - path = Libraries/Text/VirtualText; + name = UMPermissionsInterface; + path = "../../node_modules/unimodules-permissions-interface/ios"; sourceTree = ""; }; - 0976D3339A4F77F4F8AAAC916AA5A972 /* Pod */ = { + 036DDE51BC1D6A5CF387FE97A43CFB74 /* Multiline */ = { isa = PBXGroup; children = ( - B2325C71D792BEA03D7B7038F72B6BB5 /* LICENSE */, - 57D69A41C866B3BDC48175DE9DC65510 /* README.md */, - EBC2CFB243ED5E3F36692501E6F9E126 /* RNVectorIcons.podspec */, + 2DDC53D355666FB708B641ACA9DFA1D0 /* RCTMultilineTextInputView.h */, + 1A4569BE764460C66EEB4D92B9D9DF68 /* RCTMultilineTextInputViewManager.h */, + 7A13C258951D14E6D754463E2A708294 /* RCTUITextView.h */, ); - name = Pod; + name = Multiline; + path = Multiline; sourceTree = ""; }; - 0AA08415873E9FFF074EC2FAEC6AE12E /* Pod */ = { + 03D88E44B96F5A4A11BDD7A6149BC81D /* RCTAnimationHeaders */ = { isa = PBXGroup; children = ( +<<<<<<< HEAD + CB607327DFC2A1838432FBADD88F97CC /* RCTAnimationUtils.h */, + 219916BBAB9C8B6CD7A2BD41DF4907EC /* RCTNativeAnimatedModule.h */, + 92EA2FA2BC9283B558A8FB35FEE7131E /* RCTNativeAnimatedNodesManager.h */, + DF11ED37A064A0A23C293483DB1E3CF5 /* Drivers */, + 92824312F3653EE57FB2DD1B31A7A478 /* Nodes */, + ); + name = RCTAnimationHeaders; + sourceTree = ""; + }; + 0493B2B641DA261D2ACF16EDDD40872A /* Support Files */ = { + isa = PBXGroup; + children = ( + EA557A994668D9483B5795B4A5ED9C14 /* React-RCTLinking.xcconfig */, + 282C7D94A04847EB9FA6AE0BD259F8D8 /* React-RCTLinking-dummy.m */, + E4F55ED13D0D33FC93245C55DD688CC0 /* React-RCTLinking-prefix.pch */, +======= 24645A6101C6802C978A1489AD5798F2 /* React-RCTSettings.podspec */, >>>>>>> master ); @@ -5454,31 +5873,38 @@ 370B4C646C67C58B32C3E0A1CBCBAE22 /* Handlers */, 34AE3F85C5E83D1AB876334D6A458451 /* Pod */, ACC08A8CA96CC7EA6FEA6A2D2F83073B /* Support Files */, +>>>>>>> master ); - name = RNGestureHandler; - path = "../../node_modules/react-native-gesture-handler"; + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-RCTLinking"; sourceTree = ""; }; - 0D42D3BB33166F60B687E659172D0507 /* Support Files */ = { + 05B332F6935BFA1C790372F0592C57F5 /* Pod */ = { isa = PBXGroup; children = ( - 895B06E692842355FF6F590FC2331264 /* UMSensorsInterface.xcconfig */, + AC921E0F770DDDC35E3844E971F7B979 /* UMPermissionsInterface.podspec */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMSensorsInterface"; + name = Pod; sourceTree = ""; }; - 0F8715E93A226351211694232211F1A3 /* Pod */ = { + 0630BA677DBCFD8757386F4B74264BB4 /* Pod */ = { isa = PBXGroup; children = ( +<<<<<<< HEAD + 28A502637E7C76DAEE8221527FC26AC3 /* EXAppLoaderProvider.podspec */, +======= 755CE02FEF7D73588BF35B87946515D1 /* LICENSE */, EBE648519F08A8BA121FADC857DE01A8 /* react-native-safe-area-context.podspec */, 585589C8AFD2912B0E1511FCA1C76228 /* README.md */, +>>>>>>> master >>>>>>> master ); name = Pod; sourceTree = ""; }; +<<<<<<< HEAD + 086080FA1C61F9832DA42D718CC82A5F /* Support Files */ = { +======= <<<<<<< HEAD 098FA7B769EDE15DBBDF8E9D41BA4230 /* Support Files */ = { isa = PBXGroup; @@ -5696,312 +6122,322 @@ 59E62CD6B94003059A59FEECA00FF9E7 /* Support Files */, ======= 0FC031157E1960F94B46F70DC2A5E528 /* SurfaceHostingView */ = { +>>>>>>> master isa = PBXGroup; children = ( - A9A40BF2069B23ED1B6256FFC4671B3A /* RCTSurfaceHostingProxyRootView.h */, - E798B37E810F5B6612AA7EC846E87449 /* RCTSurfaceHostingProxyRootView.mm */, - 3BFEDEC95A48DE06F0F9A4BE8CE1ABD6 /* RCTSurfaceHostingView.h */, - 37F68DB47258C5125B3C036D3DD71A87 /* RCTSurfaceHostingView.mm */, - 477F7AF76908C4DF595ECC0B23DA7FBC /* RCTSurfaceSizeMeasureMode.h */, - 21AE6A3C6DCDAC664A996A9C45E133A9 /* RCTSurfaceSizeMeasureMode.mm */, + 3D36B5F97330B21A81145CFE01C0B1C0 /* React-jsi.xcconfig */, + B17702B86687C5A50CC3FDFCC1189B91 /* React-jsi-dummy.m */, + 634B95F4772D0E382B9BFF1D1A19F918 /* React-jsi-prefix.pch */, ); - name = SurfaceHostingView; - path = SurfaceHostingView; + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-jsi"; sourceTree = ""; }; - 10EA3C834FE634400982C6C403F05355 /* BaseText */ = { + 08F0EE616BAE5660E1D531E8066E00E8 /* RNCMaskedView */ = { isa = PBXGroup; children = ( - FBE70897D287E740951C8C7342833B60 /* RCTBaseTextShadowView.h */, - 1B914367C1F6C559CBF7A18167666C35 /* RCTBaseTextViewManager.h */, + D11FC44EFF4E0D069B4527FCAA0D27C5 /* RNCMaskedView.h */, + 1F19C2BDE3441343DA7C2F0F2D8BB95B /* RNCMaskedView.m */, + C778977391C8B231B5667FA4155456CC /* RNCMaskedViewManager.h */, + 74B83ABC77CCD11ABF2E38DB951EA243 /* RNCMaskedViewManager.m */, + 4F755316863923C695177501CDC50B84 /* Pod */, + FFB2442A4641856E518D26132B394B41 /* Support Files */, ); - name = BaseText; - path = Libraries/Text/BaseText; + name = RNCMaskedView; + path = "../../node_modules/@react-native-community/masked-view"; sourceTree = ""; }; - 1288E1A79892AC03B8A50F7DF5638C77 /* RNScreens */ = { + 095720DDF6C17A9CC15EAD1ED45900AC /* core */ = { isa = PBXGroup; children = ( - 43A8576A00BEE143E79020C4A93B8946 /* RNSScreen.h */, - 2C19D5A7B9A87FB8FB13149BCF3375DD /* RNSScreen.m */, - 5DF36115EDBFDD70B30DD2AC193FCD2B /* RNSScreenContainer.h */, - C32305C61641C43130CC830AC90FCF5D /* RNSScreenContainer.m */, - FF5D6643B58BDA928711160ABD5F6126 /* RNSScreenStack.h */, - 7FAEC9F93C6EF40344816F547580B0F0 /* RNSScreenStack.m */, - 84689D554179BD137E377E64409A2BF5 /* RNSScreenStackHeaderConfig.h */, - F658C0B786E670FA410F86FAB49A2FE9 /* RNSScreenStackHeaderConfig.m */, - C4A1C2DB39B1E4CCA1BBFDCDAC30FA60 /* Pod */, - 5453C912003CF0658830D7AAA296CD3D /* Support Files */, + 97706CEE0487AC75FF7F4DAD9A339DED /* LongLivedObject.cpp */, + 079FD49760AA479E5EB24BE063924692 /* LongLivedObject.h */, + AE1E9B0AD2301AC8764A8457A7E4AEA7 /* TurboCxxModule.cpp */, + 31D05B387B92E4A716FC6FCD1E818BB9 /* TurboCxxModule.h */, + 1FADFD1C7B6755F2692F5A1E43CF8D3C /* TurboModule.cpp */, + 441DAB638974F0C2E2355E468437FC3B /* TurboModule.h */, + 7CF29E9DE28A8E52D78E59D6256E29B8 /* TurboModuleBinding.cpp */, + B173B113E341AF49AD9F89830F301CB0 /* TurboModuleBinding.h */, + BA021CE6120B35A88E9D681504B8D2BF /* TurboModuleUtils.cpp */, + 2B867B3CE1C693216843B6D74993CD07 /* TurboModuleUtils.h */, + 9F38787EE821CF04EA3E59A3EF5115A8 /* platform */, ); - name = RNScreens; - path = "../../node_modules/react-native-screens"; + name = core; sourceTree = ""; }; - 1494239583DFBAB4492127DBF9E49B07 /* Support Files */ = { + 0A7607AC1405660159A6EFD7A6B144C8 /* RNVectorIcons */ = { isa = PBXGroup; children = ( - 381E31337C1972A78AA8EFFB758FCE98 /* UMFileSystemInterface.xcconfig */, + F5EDF193EBE3A1B89DCFC5CC23E2B153 /* RNVectorIconsManager.h */, + E16C3A288DB88F55B9D390A55DC1D1DE /* RNVectorIconsManager.m */, + 7B9A844C789A409B1FCD9C5368C764DA /* Pod */, + E4CFAB7DEEFB8024ABAAD6E53562CD3A /* Resources */, + 9B0113D9DB98C892C79BA6B7EB80CE0D /* Support Files */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMFileSystemInterface"; + name = RNVectorIcons; + path = "../../node_modules/react-native-vector-icons"; sourceTree = ""; }; - 15058E0A3E34D77CAB692A441E26D454 /* Support Files */ = { + 0AD8736CA1351B404540D13FAA1A3057 /* Support Files */ = { isa = PBXGroup; children = ( - D8FBD8BB95CFFA637BF6E3FDF1C60AE1 /* React-jsinspector.xcconfig */, - AE256E6A9C11D469359003E1DC7AE7DE /* React-jsinspector-dummy.m */, - 3A5A687DE9C356BD7A4097EAF8E7CA9B /* React-jsinspector-prefix.pch */, + A469E2616303D0AC55A0C6C90B5C98E9 /* RCTTypeSafety.xcconfig */, + 843A46A3C66FDDD5974CA1B81ADC48B5 /* RCTTypeSafety-dummy.m */, + 46C5669D1A0A671BFE1D81CC99BBE0B5 /* RCTTypeSafety-prefix.pch */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-jsinspector"; + path = "../../../../ios/Pods/Target Support Files/RCTTypeSafety"; sourceTree = ""; }; - 166366D55E9122A7CEDF5346A5D25F4C /* React-jsinspector */ = { + 0B78B39A7720FAC3ACCB606446A03D01 /* RCTTextHeaders */ = { isa = PBXGroup; children = ( - 14FABAAE2F022BCFD2E184A5F2D52540 /* InspectorInterfaces.cpp */, - 2FD1803E8A42BFE1498A7D4B266C2843 /* InspectorInterfaces.h */, - 570A9EAE5CB46C4F471F06909A22FCB1 /* Pod */, - 15058E0A3E34D77CAB692A441E26D454 /* Support Files */, + 85FF03777D7E79870AC51C11E098AC8C /* RCTConvert+Text.h */, + 122B890482FCD7133611A5C18B90E0EF /* RCTTextAttributes.h */, + 87B246F7C81C625BE5D0AC880FA93FE6 /* RCTTextTransform.h */, + AE252061CC2C242A05B946C45D91EDD0 /* BaseText */, + E1A362F24EC1A83497B0CF5DD909F427 /* RawText */, + F2978E15F1C414F26E8A4B1598929138 /* Text */, + 93635348BCA6D10B012B40874ED3F720 /* TextInput */, + 770D761431251966CF301390AE01FAB4 /* VirtualText */, ); - name = "React-jsinspector"; - path = "../../node_modules/react-native/ReactCommon/jsinspector"; + name = RCTTextHeaders; sourceTree = ""; }; - 19223789F7CE5A5DA344B5900A74EBC0 /* UMTaskManagerInterface */ = { + 0D6635B82AC55EB0BDE5B784EE21D8DA /* Pod */ = { isa = PBXGroup; children = ( - 3672BE3C5A475521E7BBBA8D7C8F3C26 /* UMTaskConsumerInterface.h */, - 95716B346E106C128A87AAC0C3F1C2E0 /* UMTaskInterface.h */, - 677C15D981FA39D53B115615A18BA4E9 /* UMTaskLaunchReason.h */, - D8752211891E9C9C0D0D830116BF361E /* UMTaskManagerInterface.h */, - 38D1961F08DD8DBC2424E7FAEEDCA7AE /* UMTaskServiceInterface.h */, - 3CA20D211D542E58F04DF86E0FA45F1D /* Pod */, - 19B7C8BD0B907D1ED51FD8D2F3E9EB83 /* Support Files */, + 9558EB1657418A6AD3D9D617214F79AC /* ios_test_app.gif */, + C194CC058B532ACBCA3CE4C004B12B61 /* LICENSE.GPLv3 */, + 729DFDBCE8AABD0175FB791BF30D3296 /* react-native-ffmpeg.podspec */, + 8FFA1B6E16491D7A0740A54369208B1C /* react-native-ffmpeg-logo-v1.jpeg */, + 6C5DDF11F3BC85C322A6EFA1EF9C808D /* react-native-ffmpeg-logo-v2.png */, + 5823B0FE1E2ABB65D21C72353406FCD2 /* README.md */, ); - name = UMTaskManagerInterface; - path = "../../node_modules/unimodules-task-manager-interface/ios"; + name = Pod; + sourceTree = ""; + }; + 0E38585F080C5793DDFFFF02DAC0C4A7 /* RCTNetworkHeaders */ = { + isa = PBXGroup; + children = ( + 7CE6E54315D4DBF20967F1DF6FC4838D /* RCTDataRequestHandler.h */, + 8CC553E096EB8CF76BECCA2887C784CF /* RCTFileRequestHandler.h */, + 31C93939583EC4FBAA1B76C7C881C181 /* RCTHTTPRequestHandler.h */, + 61D6DCAAF572F0C6BF78F22FA818AC75 /* RCTNetInfo.h */, + ED8C9E85B728EA63B9F64F249976EBEC /* RCTNetworking.h */, + 05BF770255AE31C9B619F54D32C409CB /* RCTNetworkTask.h */, + ); + name = RCTNetworkHeaders; + sourceTree = ""; + }; + 0F8715A8867222AB4276032058DBEC47 /* react-native-orientation */ = { + isa = PBXGroup; + children = ( + DBA59528C711B7D806929A07238A4BD7 /* Orientation.h */, + 2C7256A5C691284987BE6163219C587F /* Orientation.m */, + 20218F4860D34B218BF8A845F870A89C /* Pod */, + CBD41C84A2AF984657657005FB19EDE9 /* Support Files */, + ); + name = "react-native-orientation"; + path = "../../node_modules/react-native-orientation"; sourceTree = ""; }; - 19B7C8BD0B907D1ED51FD8D2F3E9EB83 /* Support Files */ = { + 1111556EF7D67A7F0EC6AACA4AB46DF5 /* Support Files */ = { isa = PBXGroup; children = ( - A7D675764C87B181AC0A36BFF9B4BD47 /* UMTaskManagerInterface.xcconfig */, + 37DEDEBE11BF4D519B1DA919FF17E992 /* EXAppLoaderProvider.xcconfig */, + 57D8B1B4D0564D2F1A48039AC798F15A /* EXAppLoaderProvider-dummy.m */, + E177FDF986F94C193C260C61FA4B399A /* EXAppLoaderProvider-prefix.pch */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMTaskManagerInterface"; + path = "../../../ios/Pods/Target Support Files/EXAppLoaderProvider"; sourceTree = ""; }; - 1B9D102269792F64A408F7193B0FFF5E /* Surface */ = { + 123FAF3F3912B33F8F77920819013EED /* SurfaceHostingView */ = { isa = PBXGroup; children = ( - 772EA2D7BDB6EE943E77CC3A23A1F8AD /* RCTSurface.h */, - 1123AE41F1651D38824405696F1A04B3 /* RCTSurface.mm */, - C4B119A8AAC5E979C098B537A87B1A61 /* RCTSurfaceDelegate.h */, - E5DA7FB1574DF270DA997AA745F9B82D /* RCTSurfaceRootShadowView.h */, - F7237D2889014968DB6CB793134D0284 /* RCTSurfaceRootShadowView.m */, - 8FE1912AA96ABC77692CD2F81F12FE06 /* RCTSurfaceRootShadowViewDelegate.h */, - E8F208ADBFEC9B0A638D8F7E4069050D /* RCTSurfaceRootView.h */, - C2B9EBBE030C8C9DC0049E9F5998C8E6 /* RCTSurfaceRootView.mm */, - 7730AB860C454C4ADB87814B10B0F557 /* RCTSurfaceStage.h */, - 507D222F2ECE21A357B5E0561B7E7298 /* RCTSurfaceStage.m */, - 32D1C246107B244ABFC60B55866FD8BB /* RCTSurfaceView.h */, - 1553F36F63D53A6F1ECCB7EA083BDEE9 /* RCTSurfaceView.mm */, - F3417ABF085CCEAC96B4A3A99EBD882F /* RCTSurfaceView+Internal.h */, - 0FC031157E1960F94B46F70DC2A5E528 /* SurfaceHostingView */, + 6BBD9FF394C439FD433EE6702DF4C495 /* RCTSurfaceHostingProxyRootView.h */, + 49B4C6F6A074A1E135E32D5B740CC805 /* RCTSurfaceHostingProxyRootView.mm */, + 4E0C796F08D3E3D7B72FCEE5115D99E8 /* RCTSurfaceHostingView.h */, + B95FAA85FEEA6A680A81144AEF1CB07E /* RCTSurfaceHostingView.mm */, + A9E5D254BF0FE173F00BF431FCEEB634 /* RCTSurfaceSizeMeasureMode.h */, + E70FAEF34CCE817C4019070422ECB8FA /* RCTSurfaceSizeMeasureMode.mm */, ); - name = Surface; - path = Surface; + name = SurfaceHostingView; + path = SurfaceHostingView; sourceTree = ""; }; - 1C1B30C5E3B920845D781749695198C7 /* Support Files */ = { + 140381A55ADD3F87A034FA16836E688D /* Support Files */ = { isa = PBXGroup; children = ( - 8401FC75455876AF07EA3B02EA29558B /* Yoga.xcconfig */, - 5A580ADCBA0DB4163EB61AED51784069 /* Yoga-dummy.m */, - 5AE8295C2F421A18A895646BAA2E6C6C /* Yoga-prefix.pch */, + 817864B6170BB3D729B4C5A9D79FE671 /* React-RCTText.xcconfig */, + AE4980713AC7959A1F9231387F8E5C72 /* React-RCTText-dummy.m */, + 58B4CB373052A80C5522EC76CE200961 /* React-RCTText-prefix.pch */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/Yoga"; + path = "../../../../ios/Pods/Target Support Files/React-RCTText"; sourceTree = ""; }; - 1C5BB0C94B3C86DF78CDF0E143319A27 /* Support Files */ = { + 15029059117A80D5F3C5DD2D56F25DD5 /* React-RCTVibration */ = { isa = PBXGroup; children = ( - C705C1194C9B0B78DA633613CD1E0DB8 /* react-native-ffmpeg.xcconfig */, - E4E351DB9E25F72FD98E9EBFCAA204CF /* react-native-ffmpeg-dummy.m */, - E14EDA3A80B7C4508FCC3F99F2EEA3B9 /* react-native-ffmpeg-prefix.pch */, + 96F14BFE5D2CD4C94FF02C435C55EB81 /* RCTVibration.m */, + A333FA341D9CC237E24C00293F0CEC51 /* Pod */, + 3427623F17D8B72DD4321AFE9FF52149 /* Support Files */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-ffmpeg"; + name = "React-RCTVibration"; + path = "../../node_modules/react-native/Libraries/Vibration"; sourceTree = ""; }; - 1CA8FEFC509BC8F377E2A30FEAAF631C /* Pod */ = { + 15F9774856BE40C52301F27A9AF05014 /* Pod */ = { isa = PBXGroup; children = ( - 9EEC431B44896D533C1F77D26D1A84A9 /* React-RCTNetwork.podspec */, + EF7BD5E8FD56405C5C1B3070F1C1C74D /* LICENSE */, + C8FEDFEEA15684011A328C49A15C4DA4 /* README.md */, + 7CD3CF0D47E49C4CD18C67925B61D850 /* RNCAsyncStorage.podspec */, ); name = Pod; sourceTree = ""; }; - 1D38F91B7ADAAE530CF509356D2BD35F /* Pods-Gladeo_App */ = { + 160AD65CB60995D2D37161AF933E95C8 /* React-RCTSettings */ = { isa = PBXGroup; children = ( - 05A356F889E51FC510E861A05031D0C1 /* Pods-Gladeo_App-acknowledgements.markdown */, - 71D30ADCACECF654DFDB8F9E55DB580D /* Pods-Gladeo_App-acknowledgements.plist */, - 5B6417ADA0E0C08D2A68F8D9977DBA60 /* Pods-Gladeo_App-dummy.m */, - D9A140FE02A20C42B48EDEFA2854DECE /* Pods-Gladeo_App-resources.sh */, - 24C74D1AC7A0A48FEDFF332FFE8EF00E /* Pods-Gladeo_App.debug.xcconfig */, - 4314F3A8572CA00A9242DE63C27C368D /* Pods-Gladeo_App.release.xcconfig */, + 666E04838D81234DF8C3BCD493D64A4E /* RCTSettingsManager.m */, + BA32CB36A0236A46C32A176E8E068EED /* Pod */, + 7160FA275D64759338AB532E2D9E5349 /* Support Files */, ); - name = "Pods-Gladeo_App"; - path = "Target Support Files/Pods-Gladeo_App"; + name = "React-RCTSettings"; + path = "../../node_modules/react-native/Libraries/Settings"; sourceTree = ""; }; - 1E1DA4D2B3B8B27E50DEF29CF349D064 /* Pod */ = { + 17819AA8BFEC4E3C7B629CCC44C9BE00 /* internal */ = { isa = PBXGroup; children = ( - 5F8B997DCA661854CFE2048F71106FCF /* React-cxxreact.podspec */, + 535EE6CF347F2C90E6253A35A4F9B905 /* experiments.cpp */, + C85CC1442D982DE45082A0C6108B2C95 /* experiments.h */, + 8878EDA91BBCBD82A71A83D166FB2B6A /* experiments-inl.h */, ); - name = Pod; + name = internal; + path = yoga/internal; sourceTree = ""; }; - 1E306531ABB98699756489248F3BE670 /* https */ = { + 1786B106C1B3BFA8ED5D00697D7BEFB2 /* UMViewManagerAdapter */ = { isa = PBXGroup; children = ( + C00C80DEDA37F0457FF4A47EB2050871 /* UMViewManagerAdapter.h */, + E1B67068675B97E6AA906B084FDE2B2A /* UMViewManagerAdapter.m */, ); - name = https; + name = UMViewManagerAdapter; + path = UMReactNativeAdapter/UMViewManagerAdapter; sourceTree = ""; }; - 1E9E8C64C801C9CE55F76037EA582A82 /* jsi */ = { + 179BFD2FD4C2DAED93F419ED25E511BE /* https */ = { isa = PBXGroup; children = ( - 06ADA87EA5ABACDB06F06D0F3B11BBD3 /* decorator.h */, - 313949B62486167A8189206D0F6359E5 /* instrumentation.h */, - D0CFF0D93723F30496BFDE8EE5CE4899 /* jsi.cpp */, - 671299675E69ABE360C734E2002791DB /* jsi.h */, - D897CDEB8D698C777AC28E337DAB14D5 /* jsi-inl.h */, - A55903FE4C5244F252999AD46936959E /* JSIDynamic.cpp */, - DD93267F8BC35AF3488BE80BA8D5A6CF /* JSIDynamic.h */, - 38D0F374AB8C10D9372084EF97E14BE7 /* jsilib.h */, - DF4C9232FC8DF8945369EE65A1177DBD /* jsilib-posix.cpp */, - B2EF11B29D406CC845A86545090C709A /* jsilib-windows.cpp */, - 94BB76D024184AF88F0AC994CA1D89DC /* threadsafe.h */, ); - name = jsi; - path = jsi; + name = https; sourceTree = ""; }; - 1F6F78089CA96EE502F8BC54BBF28579 /* React-RCTText */ = { + 18F5F0E85C2240ABC2E4D3A9379407E9 /* Default */ = { isa = PBXGroup; children = ( - DCCB36545D72A35F14367E6D18E57774 /* RCTConvert+Text.m */, - C1186510553C9A19A8FF00CEE125117A /* RCTTextAttributes.m */, - 009346AC3B0B36B32A5E80AB978CF466 /* BaseText */, - 74ABCE2E9CA5193637C8237EBFD5E0BD /* Pod */, - B13DCF0ECBC9BEFD8C87DD0838D49AD0 /* RawText */, - 4C6095138F45F5AEB353C566E7C7FBE1 /* Support Files */, - E63A0A8886F9EAFDE551C2E5168DF143 /* Text */, - E03C615E9719663252476146536064AD /* TextInput */, - 8157A8420240DCC2F1CAC9FE448A1D22 /* VirtualText */, + 83479D00E5ECC027047D166A682F798D /* Base */, + 012B071576890115C8C499160134EE32 /* CxxBridge */, + 5264CA553F63AC97AE316F13B8037637 /* CxxModule */, + F9E3D45B43E4DE5E368BE266FF9519C7 /* CxxUtils */, + 23DBF0C387D1033B65F879F26D8874A4 /* Modules */, + 64AA9799FC23D4B9BF795ECE9099A05C /* Profiler */, + 8F7C2711306390BF4C7F066BFCE42CFA /* UIUtils */, + C924540FAFBEA522B7B50C5AA081DE14 /* Views */, ); - name = "React-RCTText"; - path = "../../node_modules/react-native/Libraries/Text"; + name = Default; sourceTree = ""; }; - 1FE33D7A932012676CE7031831FA0634 /* React-RCTBlob */ = { - isa = PBXGroup; - children = ( - AABE711E721EF49CBF3D80CD20E84065 /* RCTBlobCollector.h */, - 98B7CAAD50B7BC18BC9808B4746BD3B0 /* RCTBlobCollector.mm */, - 30F0E81137D12F9BC819DB468A7B4A19 /* RCTBlobManager.mm */, - F71C9B21F79BCF67CBA9B3A5AD5DDC5F /* RCTFileReaderModule.m */, - 266C9F05E2F717874A96684BA9F85585 /* Pod */, - 932D7A9F68F2DA0DD6399AA61D307172 /* Support Files */, + 1B6C420088A319E291D6953ED44843F4 /* React-cxxreact */ = { + isa = PBXGroup; + children = ( + 86FBC0B18E4962A47569D4089AD9060E /* CxxModule.h */, + D3AA18F5DC2C4F4DB4F3537B69CC04BF /* CxxNativeModule.cpp */, + CA3FA550DD5E1BDDA634FC84308272E5 /* CxxNativeModule.h */, + D88F85CB1ED49E43FB31F8775F2E190E /* Instance.cpp */, + 302FC132F1C00A68A5749C97B57C7FC9 /* Instance.h */, + FF933CED0C04922E664730EAC845DBCE /* JsArgumentHelpers.h */, + 4E28129FE0BD30F7B7ADE0132E5DEED8 /* JsArgumentHelpers-inl.h */, + 346E04B3581CC27303E1C05A41B86298 /* JSBigString.cpp */, + 15C8D1D4155359D2B4D6D6242B50C3DE /* JSBigString.h */, + E81241A8648AA0F2A93B6C9670383660 /* JSBundleType.cpp */, + B5B62FA91CE30284F9DF5799D7B93216 /* JSBundleType.h */, + CAC00BA0FB4393F3B460E569497828A9 /* JSDeltaBundleClient.cpp */, + 8C1F199F184D36E3DD58D189CEB5742D /* JSDeltaBundleClient.h */, + BF038208A066AA28364E20A083A99337 /* JSExecutor.cpp */, + 60ACFB73402A2771A30B75046DD37A9E /* JSExecutor.h */, + 5179961A01992A597B40C719AC6C9E92 /* JSIndexedRAMBundle.cpp */, + 0AE44B5B8A6F35DEFF4BD820C66AFB9E /* JSIndexedRAMBundle.h */, + ACBF25313F605F6D762E1ED0B3890530 /* JSModulesUnbundle.h */, + AD96FD80389FAF24C192D44EEBF1CCA2 /* MessageQueueThread.h */, + C74412F88738106CF6FBBA3512232651 /* MethodCall.cpp */, + 18D14CD2E1BDA0C6180E077DBF9CEFF7 /* MethodCall.h */, + 526975F9E0C566E7C4F3EC9178C1F6A0 /* ModuleRegistry.cpp */, + 729F76FFFDDAC527BA9FFD106513FE58 /* ModuleRegistry.h */, + D4AEB0A467C3C1ED53915E9A231DAD15 /* NativeModule.h */, + F2BE03EB919897595FB675F67319DC79 /* NativeToJsBridge.cpp */, + 1629222CF7B604F84D42B3FF4EBFB11E /* NativeToJsBridge.h */, + 3AD5513AD0BAB2DAE104CC750CA20421 /* RAMBundleRegistry.cpp */, + C944F6F1BB9C5626CB270FBDC145EEFD /* RAMBundleRegistry.h */, + 0BAA3748AC45E2477B85BA8EF1410F83 /* ReactMarker.cpp */, + EA0701CCFB6EC96B3D72C59EC329D4E9 /* ReactMarker.h */, + 904F4A543F81D341E52A71E8C855496F /* RecoverableError.h */, + 638A5A5682986B44675B34694FFEFCF1 /* SharedProxyCxxModule.h */, + 2CD3258A682E289E456C618D9F94BEFE /* SystraceSection.h */, + 6D2E2CFE298B6C67A0B04E6F0D41A3A8 /* Pod */, + DD6B06CF205B8091F62A8180AB6ED14C /* Support Files */, ); - name = "React-RCTBlob"; - path = "../../node_modules/react-native/Libraries/Blob"; + name = "React-cxxreact"; + path = "../../node_modules/react-native/ReactCommon/cxxreact"; sourceTree = ""; }; - 20C0009F2EA20894C9327854C73559F3 /* React-RCTImage */ = { + 1CCF9EA1B4B8EA3B8EAD1B971CDE7731 /* React-Core */ = { isa = PBXGroup; children = ( - D670C028E2D1C3825135EC45FA068670 /* RCTAnimatedImage.m */, - 6F98967D5010D284C2B0472D6E6FFD05 /* RCTGIFImageDecoder.m */, - 78C53C4399F64F7BC6A2B0A0C1B7F78D /* RCTImageBlurUtils.m */, - 92FFA6AF3A3EA04478E15D37648D0733 /* RCTImageCache.m */, - D930FC39F7DE10D64F4811CE1C62ED89 /* RCTImageShadowView.m */, - 7D63A7F0C3E18A2EFEAA236DCF3BDC0F /* RCTImageUtils.m */, - 229D4E674C556D84E3A6FAFE16BA698D /* RCTImageView.m */, - A5F50BE9119F0A88307B22813BEBDFC9 /* RCTImageViewManager.m */, - 4B48C579089EA1FEAFD47034E328993D /* RCTLocalAssetImageLoader.m */, - 82DAF64B6E6366F44043B62FF95EB3C1 /* RCTResizeMode.m */, - 1DF0F230092EFDF9E52B0054726C5956 /* RCTUIImageViewAnimated.m */, - 7E385F6EC566067616AF3708D349FB8A /* Pod */, - 90F777788E5DF25C11A72C898FA21217 /* Support Files */, - ); - name = "React-RCTImage"; - path = "../../node_modules/react-native/Libraries/Image"; - sourceTree = ""; - }; - 212D8A19EC3FD298C9AF4667D74F7F55 /* Nodes */ = { - isa = PBXGroup; - children = ( - 7881A140BC6358C0EE1328412DFB0079 /* REAAlwaysNode.h */, - 20714491BF54003D0BD9AA33F56EA21B /* REAAlwaysNode.m */, - 54323649DD650B092AE3DBE74AE711DE /* REABezierNode.h */, - B0AA41B36B9153B4E6F656CE44686C36 /* REABezierNode.m */, - A9AEEB5317CBB3525A577890A300AB7C /* REABlockNode.h */, - 615265094B42616F7AC53D87A893547F /* REABlockNode.m */, - 91F0680B5FBDB320DA5B1CE14BA5CD97 /* REACallFuncNode.h */, - AA08217600FF87240F2ABF6EF3EC3571 /* REACallFuncNode.m */, - 095DCD84FC107612A095BDC9EBF23D8C /* REAClockNodes.h */, - 2E3164A41CFEA7355A3846A05EF95027 /* REAClockNodes.m */, - BC7B987A2643AD0AC61C4F13E6E5E902 /* REAConcatNode.h */, - 600211BA79C0EAEB5B49D9A99278FBAA /* REAConcatNode.m */, - 64FB95F4FD5F0BD02D45E6CA5F42CCF7 /* REACondNode.h */, - CD24F5E91E9300A22C813DF308C34577 /* REACondNode.m */, - 6D764D0D04DF297287F3C3241196D4A4 /* READebugNode.h */, - BCD5A3F39E58D13067520B07C64D32A1 /* READebugNode.m */, - 5AEFA695FB3318CB3FD08089DE24C087 /* REAEventNode.h */, - 1DF0F387C49BA7550E993B9F45A0A622 /* REAEventNode.m */, - 62443AFFDFF8E94DF437377320E53C64 /* REAFunctionNode.h */, - 698D003C78B10261D92E6694CB9C5D0E /* REAFunctionNode.m */, - 512A2C5F4AC9A891FFEBC459EC89CF9D /* REAJSCallNode.h */, - 40D6370EE7D2ECEAFCC2742233571730 /* REAJSCallNode.m */, - 3AA41AF15620C9CFEF9A35D4DCB8540D /* REANode.h */, - C2A513347E8430C2F092059CC8C2CA99 /* REANode.m */, - 75E9BC26125CADE0B2B74312CAE94F51 /* REAOperatorNode.h */, - D53A669573DD3D8FD7EF37729D6C735F /* REAOperatorNode.m */, - 9EE18748CDAF6F8A53D944A9AB936579 /* REAParamNode.h */, - DD5ED462B9C07D7B6D88AFCAC34901F6 /* REAParamNode.m */, - E66D5776E179E07849225A4FC13635BC /* REAPropsNode.h */, - 0793ED594F3C2BA8EA06589754CF6D38 /* REAPropsNode.m */, - 7929707B62D49351AFC8444C359CA59D /* REASetNode.h */, - EFDE1BE8333777C01FB138FC7E21C001 /* REASetNode.m */, - 9FA3D208A8E5EEBEB222001AF80737CD /* REAStyleNode.h */, - BD049275A32211837C6AC17E3354FDAB /* REAStyleNode.m */, - FF2AF5222E570DF6153D71941E401DFF /* REATransformNode.h */, - 2BE5CA94122FEC590AA36AD6B156752C /* REATransformNode.m */, - 9502895718D99FDD9BE1B59B77FA8DF8 /* REAValueNode.h */, - 494F2DD41DDE82A80F9D18B6D0E95496 /* REAValueNode.m */, + 7788BD897E549AC3908B91DA2D224DB7 /* CoreModulesHeaders */, + 18F5F0E85C2240ABC2E4D3A9379407E9 /* Default */, + 32277B411DDDC6BF55058D21977A2E40 /* DevSupport */, + A6B90515C43CE9DC301EE2C624072D25 /* Pod */, + 7081B8F45F71C7ACB8CC9B80CAF2B4DA /* RCTActionSheetHeaders */, + 03D88E44B96F5A4A11BDD7A6149BC81D /* RCTAnimationHeaders */, + 362EAD6E3F599B29833487923E119F17 /* RCTBlobHeaders */, + 3C8E3FFC3A1DBB19418618F5FB4AE60A /* RCTImageHeaders */, + 9135310E7A4DF3E764632AE9B764A714 /* RCTLinkingHeaders */, + 0E38585F080C5793DDFFFF02DAC0C4A7 /* RCTNetworkHeaders */, + 1CFF399BF6BB189BBEC2BFD3107D3922 /* RCTSettingsHeaders */, + 0B78B39A7720FAC3ACCB606446A03D01 /* RCTTextHeaders */, + 5F665B243967753318642C8ACC75EF6E /* RCTVibrationHeaders */, + AE3E7AB3B3FB3FD0730DD7B3C6686F1C /* RCTWebSocket */, + FB11B6420489477B3BE6F9E10F0E0DAF /* Support Files */, ); - name = Nodes; - path = ios/Nodes; + name = "React-Core"; + path = "../../node_modules/react-native"; sourceTree = ""; }; - 2338EEF4D619BCA481B5C59076AF2A4D /* Pod */ = { + 1CFF399BF6BB189BBEC2BFD3107D3922 /* RCTSettingsHeaders */ = { isa = PBXGroup; children = ( - 499D2E34FFD1435C0FDB3F78A75C5AC8 /* EXConstants.podspec */, +<<<<<<< HEAD + 78E1CA0655721910630D3CE34D3A1981 /* RCTSettingsManager.h */, ); - name = Pod; + name = RCTSettingsHeaders; sourceTree = ""; }; - 25DBB8B1B60C5B6D2EEBB2B5153E83CF /* Pod */ = { + 1D38F91B7ADAAE530CF509356D2BD35F /* Pods-Gladeo_App */ = { isa = PBXGroup; children = ( + 05A356F889E51FC510E861A05031D0C1 /* Pods-Gladeo_App-acknowledgements.markdown */, + 71D30ADCACECF654DFDB8F9E55DB580D /* Pods-Gladeo_App-acknowledgements.plist */, + 5B6417ADA0E0C08D2A68F8D9977DBA60 /* Pods-Gladeo_App-dummy.m */, + D9A140FE02A20C42B48EDEFA2854DECE /* Pods-Gladeo_App-resources.sh */, + 24C74D1AC7A0A48FEDFF332FFE8EF00E /* Pods-Gladeo_App.debug.xcconfig */, + 4314F3A8572CA00A9242DE63C27C368D /* Pods-Gladeo_App.release.xcconfig */, +======= AF9779DE8AD88866F94701EEDE91E756 /* React.podspec */, >>>>>>> master ); @@ -6021,11 +6457,16 @@ isa = PBXGroup; children = ( 7996953F2A1900FE4B14DCECA49AE0C7 /* EXFileSystem.podspec */, +>>>>>>> master >>>>>>> master ); - name = Pod; + name = "Pods-Gladeo_App"; + path = "Target Support Files/Pods-Gladeo_App"; sourceTree = ""; }; +<<<<<<< HEAD + 1F391DF86B83B3237CC05BAC357757D6 /* React-jsinspector */ = { +======= <<<<<<< HEAD 190DA8B09262976CC834FA7C9651B2C8 /* CxxUtils */ = { isa = PBXGroup; @@ -6063,51 +6504,56 @@ name = Pod; ======= 25F359D53FAB4A263AF8E8A356FB4278 /* Support Files */ = { +>>>>>>> master isa = PBXGroup; children = ( - 99DC2622CC6851584257341D936E3A83 /* UMCore.xcconfig */, - 477415626F6F69FB2A3460D473EAC2DF /* UMCore-dummy.m */, - 9B95BF19CFCFC0A4E2488050D085C2E4 /* UMCore-prefix.pch */, + B03A2DACE2650E67AA35EF6EE5FBB1AE /* InspectorInterfaces.cpp */, + 046093F414C53ED46D7E55D92316A10E /* InspectorInterfaces.h */, + 92B9F38C0DCFA46A285AFDAA263A0620 /* Pod */, + A0790BDDA3CC8918DD8E0C7B9366D891 /* Support Files */, ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/UMCore"; + name = "React-jsinspector"; + path = "../../node_modules/react-native/ReactCommon/jsinspector"; sourceTree = ""; }; - 266C9F05E2F717874A96684BA9F85585 /* Pod */ = { + 201E926F3AE7BDF4DB369E8609459110 /* Support Files */ = { isa = PBXGroup; children = ( - 2E5143FE63CD01FC7347937B2438DD8A /* React-RCTBlob.podspec */, + 7ED446FF7739FA0236E3404FDB5538AB /* UMBarCodeScannerInterface.xcconfig */, ); - name = Pod; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/UMBarCodeScannerInterface"; sourceTree = ""; }; - 277E428DB78332ABDA5AE9AEF0717CF2 /* React */ = { + 20218F4860D34B218BF8A845F870A89C /* Pod */ = { isa = PBXGroup; children = ( - 25DBB8B1B60C5B6D2EEBB2B5153E83CF /* Pod */, - B4531B4094B49554C2B334B9E19D9DD7 /* Support Files */, + BBAFF1E655AACC306AA83FF5E8546A9A /* LICENSE.md */, + E3FEBE7A277D09C3924B8C2D1C5C8524 /* react-native-orientation.podspec */, + A2DB5EC90236A7AFF4F352B3CB99EC88 /* README.md */, ); +<<<<<<< HEAD + name = Pod; +======= name = React; path = "../../node_modules/react-native"; +>>>>>>> master >>>>>>> master sourceTree = ""; }; - 29C8D36FCC3E02100C04AF5D3637EBAD /* UMSensorsInterface */ = { + 208EFA4432194E790B6D1EC759967C22 /* Interfaces */ = { isa = PBXGroup; children = ( - DD53B19794B2DD2DC46292777523830D /* UMAccelerometerInterface.h */, - 94F5F8A9787458C185E9F990F90FC826 /* UMBarometerInterface.h */, - B055B23AC0FBB8FBA619EE474BA25582 /* UMDeviceMotionInterface.h */, - CC1015C7A05EC37EE7BC50D4CC16FBAA /* UMGyroscopeInterface.h */, - 93CD581046033FA8922BAD20F0041B43 /* UMMagnetometerInterface.h */, - A47B989657B3F357255E8A16725FE627 /* UMMagnetometerUncalibratedInterface.h */, - D2F8588AD5A06592A80120EC43E8CE67 /* Pod */, - 0D42D3BB33166F60B687E659172D0507 /* Support Files */, + 6F063066FAAEEA2DD621BA6E4A406EEC /* EXAppLoaderInterface.h */, + 7FFAD254679829E0D0C91D88A5520C3B /* EXAppRecordInterface.h */, ); - name = UMSensorsInterface; - path = "../../node_modules/unimodules-sensors-interface/ios"; + name = Interfaces; + path = EXAppLoaderProvider/Interfaces; sourceTree = ""; }; +<<<<<<< HEAD + 216E5DF464E2AD1BAC25F0A5B580398B /* Support Files */ = { +======= <<<<<<< HEAD 1D659975EDF8A3228B771A966B242E6E /* Drivers */ = { isa = PBXGroup; @@ -6237,40 +6683,102 @@ path = "../../node_modules/react-native/Libraries/Network"; ======= 2B25CFFB0F7104B5990A56A4C03CD0C2 /* UMFileSystemInterface */ = { +>>>>>>> master isa = PBXGroup; children = ( - 72F507715FB574C4CDD23238F2DC37DC /* UMFilePermissionModuleInterface.h */, - 9C0A285B7C1AE58817F8A603DCD85241 /* UMFileSystemInterface.h */, - DEC3F443643F481EE8080DDC676F300F /* Pod */, - 1494239583DFBAB4492127DBF9E49B07 /* Support Files */, + 54DFA6ED893984E6572985CA55D53DE4 /* UMConstantsInterface.xcconfig */, ); - name = UMFileSystemInterface; - path = "../../node_modules/unimodules-file-system-interface/ios"; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/UMConstantsInterface"; + sourceTree = ""; + }; + 23DBF0C387D1033B65F879F26D8874A4 /* Modules */ = { + isa = PBXGroup; + children = ( + 71FD0FA7FE3F5ED0D470C0BDEF2646D9 /* RCTAccessibilityManager.h */, + A28B13E7A998AD3E36A2CA10B7331D30 /* RCTAccessibilityManager.m */, + 9E44516640C7B0DA30FC8C3BF411EF8A /* RCTAlertManager.h */, + E3074A6DCCBC150DDB6DDC69B5383512 /* RCTAlertManager.m */, + 7F4D6B16C84C6DBBA8E47490F22D1BB7 /* RCTAppState.h */, + 6DC80DA32531B95A6747B693158D9A50 /* RCTAppState.m */, + 51D9759694E2A5782A617E7C56431D68 /* RCTAsyncLocalStorage.h */, + 5478D97F209106F8F633F2CA56CFF9B9 /* RCTAsyncLocalStorage.m */, + C2429A48312D5F790F6F6838E533BE67 /* RCTClipboard.h */, + 2EBC887BD603FCF68C3BFC86D907DB5E /* RCTClipboard.m */, + B2E8F68F68F88C8EA38AD07BF555AAD3 /* RCTDeviceInfo.h */, + E4D3885539FE361D5A7F8F3CBA23B6ED /* RCTDeviceInfo.m */, + 4E7D2DA0894912FFEB5A50E52137E1B1 /* RCTDevSettings.h */, + E3A9504296422B05F5C8C2A629C662CA /* RCTDevSettings.mm */, + 06C0AD5D49FC63345E72AD6193101846 /* RCTEventEmitter.h */, + ED8F2DA67CA3CC5C0B4BA8487636417F /* RCTEventEmitter.m */, + 52E11FFEB95FB72B4452EE7C594201D1 /* RCTI18nManager.h */, + C2D68E6579670C1AE6A924A8E477D932 /* RCTI18nManager.m */, + F1A1BBBF54ED42D4FC1627483DCEA137 /* RCTI18nUtil.h */, + 584B2272272316C0D5E05461F638BF07 /* RCTI18nUtil.m */, + ADB52200B41DC832B505A6A53FF161D9 /* RCTKeyboardObserver.h */, + 76EB26079D0E90E70FDEE6B082880F0D /* RCTKeyboardObserver.m */, + 52C181B53E456CA3124AE8189A703850 /* RCTLayoutAnimation.h */, + 464F110C02C82D8DDF32400D33FF7957 /* RCTLayoutAnimation.m */, + 55424E6DE1E5945B416911AB4DD371C3 /* RCTLayoutAnimationGroup.h */, + DAA2ADF672F9EBC754ABA621D4DB6427 /* RCTLayoutAnimationGroup.m */, + 78FB08534A002FD038F0F4386A91F0D3 /* RCTRedBox.h */, + 0005E70164CDFF3B3206CB0F8EBF8E75 /* RCTRedBox.m */, + 269CF863648C9C33064D8E42E71EFB1B /* RCTRedBoxExtraDataViewController.h */, + 98CCE817C111B6B202BC9C93472A3BC4 /* RCTRedBoxExtraDataViewController.m */, + 9CFA89935F176E7D697AB88081FCEE28 /* RCTSourceCode.h */, + 869A65C588018DD7E3C707D1153B63C9 /* RCTSourceCode.m */, + 411A0EF66E164798F2E6448243EEE9F0 /* RCTStatusBarManager.h */, + F57B158A418B2DCF2DDBE405967E7351 /* RCTStatusBarManager.m */, + 1ADB9CC00C5DBBC7A6F0D43985AD1A3C /* RCTSurfacePresenterStub.h */, + 9D54075CCBBE8BABF61E2CC863B4D0C8 /* RCTSurfacePresenterStub.m */, + CB17859AE6FD76E2B1FD6B7C59D6D822 /* RCTTiming.h */, + 16360E0C4E8EFD917281F350C5FF7953 /* RCTTiming.m */, + C06F6AE585DE1149F919225F819362A9 /* RCTUIManager.h */, + E286E3DCBC87769168F4B1E7CAEC34B5 /* RCTUIManager.m */, + 72661D85B1FA2DD393B3D288961DAAF7 /* RCTUIManagerObserverCoordinator.h */, + AB68F41F582C06F19D1EA064C1B7278B /* RCTUIManagerObserverCoordinator.mm */, + 4B855DB1E40B17FD5B2EE29C614996CA /* RCTUIManagerUtils.h */, + 14D3442FE37040422EAC2E45BE0E4B73 /* RCTUIManagerUtils.m */, + ); + name = Modules; + path = React/Modules; sourceTree = ""; }; - 2B5EB0E0FF0A89FE9EC7811656672388 /* DevSupport */ = { + 268C175E7E2335A1260087BFA8F6D6CD /* Support Files */ = { isa = PBXGroup; children = ( - 6454614F490341777F59632CFF5DFB1A /* DevSupport */, - FF61BAC1DB0FA7AD38FB86F01424E609 /* Inspector */, + 942A08D2F61D40D81D337860BED9B8C4 /* React-RCTAnimation.xcconfig */, + 73CA6B04C1363A92610BEF9651646E9F /* React-RCTAnimation-dummy.m */, + CE1ACC7A5F592B34604E4515503DB6A1 /* React-RCTAnimation-prefix.pch */, ); - name = DevSupport; + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-RCTAnimation"; sourceTree = ""; }; - 2B8DD4315E8C13407661F20CBFF97EC0 /* Pod */ = { + 28EA1E3934201EDDAF59860F735A152E /* Support Files */ = { isa = PBXGroup; children = ( - C8799EFEBC205A4F8A281EF687F4E473 /* LICENSE */, - 96264036E7BA414DB2D4AE17F46C7303 /* react-native-video.podspec */, - 4CE289C13D364C829AE3DF58716F1DF5 /* README.md */, + 3359D6CB88796236E3C60FDE8A5CF4CA /* RNScreens.xcconfig */, + DC9CEE7B5B087774B0E5DB232DADD542 /* RNScreens-dummy.m */, + 55FEC7A3F07DFD16A300F6EF9712E135 /* RNScreens-prefix.pch */, ); +<<<<<<< HEAD + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/RNScreens"; +======= name = Pod; +>>>>>>> master >>>>>>> master sourceTree = ""; }; - 2BB2564C13052C3DF8395C4FDAB93E9E /* Support Files */ = { + 28EB28AA722F18E86B91BC26C51F7629 /* Support Files */ = { isa = PBXGroup; children = ( +<<<<<<< HEAD + 34213CC0ED6281A8A86AEC774A315D30 /* react-native-camera.xcconfig */, + B7022B2758CE00F37CB7187984EE6EF8 /* react-native-camera-dummy.m */, + 88E84C08CC556CF50AEF55A75C7A207C /* react-native-camera-prefix.pch */, +======= <<<<<<< HEAD DF2CAB456ABEB5DB6844CD472D93BA33 /* boost-for-react-native */, ED34F3262D5318154C24585B30EC5512 /* DoubleConversion */, @@ -6278,12 +6786,16 @@ 54A790357C0046952E9FC37B5A59779B /* glog */, ======= A0DF2B31B7D457EABDE9D1B967CEE7C5 /* boost-for-react-native.xcconfig */, +>>>>>>> master >>>>>>> master ); name = "Support Files"; - path = "../Target Support Files/boost-for-react-native"; + path = "../../ios/Pods/Target Support Files/react-native-camera"; sourceTree = ""; }; +<<<<<<< HEAD + 29F18BC2B1DDC7EF023F6A2FCE8BAC9E /* event */ = { +======= <<<<<<< HEAD 22049DA40269C4C3FD8BDE2D9DC16738 /* Pod */ = { isa = PBXGroup; @@ -6345,99 +6857,100 @@ 36895F85F45C3EF9D879F6D803C985B2 /* Support Files */, ======= 2BEB7F1D0C5B460CEF31E7CBDB535F0E /* Support Files */ = { +>>>>>>> master isa = PBXGroup; children = ( - F4071A99A6B6EF72BC1880CE7BE93574 /* react-native-orientation.xcconfig */, - C476E58380310A71AB3B95A564666610 /* react-native-orientation-dummy.m */, - 356CFCF6D7613D648C087DF9CEA73F5E /* react-native-orientation-prefix.pch */, + 711884B48504235415B13F90D084CD66 /* event.cpp */, + F95A3EB29C5ADDCBDCC71BA3A487B9BE /* event.h */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-orientation"; + name = event; + path = yoga/event; sourceTree = ""; }; - 2C6EA0D80E1F7F14DC4949D83C9078BF /* EXFileSystem */ = { + 2ABF88E2F1EB83F40D82522ACEEAE994 /* Pod */ = { isa = PBXGroup; children = ( - 9FE0F75AE364A7C1DE9F7AB5F38F8ABF /* EXDownloadDelegate.h */, - 5F28148803167A3A19E3F75039461C0B /* EXDownloadDelegate.m */, - C7102AB799C4D19159EAFBCE6E4C3E7F /* EXFilePermissionModule.h */, - FE7E6C63FDCA9B17A570C69559134672 /* EXFilePermissionModule.m */, - EA612016CD00BB46814440994B5FA04D /* EXFileSystem.h */, - 9FA8077DD4C86BED2C7A26BA3EF9ABFD /* EXFileSystem.m */, - 0BD2DE15973EF8B558064967993A72EE /* EXFileSystemAssetLibraryHandler.h */, - 11F867C82A73A0531F719AD6D216BD22 /* EXFileSystemAssetLibraryHandler.m */, - 14E822A7A4373074D3C23D89BF08C563 /* EXFileSystemLocalFileHandler.h */, - DA1F2C15975EAE9E33E6E7696716335B /* EXFileSystemLocalFileHandler.m */, - 25ECF03C3387EDD999F45AFAAB9D2FA9 /* Pod */, - 69FFCAE2208F3F0E8C12EF9A8B9BFE8D /* Support Files */, + 09BB9BA9335B103AA645FBCBAF81FE05 /* RCTRequired.podspec */, ); - name = EXFileSystem; - path = "../../node_modules/expo-file-system/ios"; + name = Pod; sourceTree = ""; }; - 2CDC27358BEF56D7D22E77E90320D136 /* RemoteNotification */ = { + 2BB2564C13052C3DF8395C4FDAB93E9E /* Support Files */ = { isa = PBXGroup; children = ( - 164B184AF133E1194BC37CA881F83CBD /* EXRemoteNotificationPermissionRequester.h */, - C8E9DADD5A57F77815F377DA9301FE3D /* EXRemoteNotificationPermissionRequester.m */, + A0DF2B31B7D457EABDE9D1B967CEE7C5 /* boost-for-react-native.xcconfig */, ); - name = RemoteNotification; - path = RemoteNotification; + name = "Support Files"; + path = "../Target Support Files/boost-for-react-native"; sourceTree = ""; }; - 2DEB7FA272FF540852F3EB3C7E5293A4 /* RNReanimated */ = { + 2BBA0D479CD953799C798E91E0E1A38C /* Nodes */ = { isa = PBXGroup; children = ( - F8E67343ED88E5D364A00E618788AD6F /* REAModule.h */, - 6157E15334073FF8C0F354230352B5C3 /* REAModule.m */, - 702586A2E8E8E1353ED69833ACF444D6 /* REANodesManager.h */, - 23AE07067A927E618EF93901F1262224 /* REANodesManager.m */, - 212D8A19EC3FD298C9AF4667D74F7F55 /* Nodes */, - A2682DA44C00686AD3653CAECB33C12E /* Pod */, - 93C14BF436B8AF57BD0F617D008E8A88 /* Support Files */, - 6299DAE97E434CC57A33C1B9095F42DC /* Transitioning */, + 0C7A6A89A21B65E3A16DF82E84F0F91F /* RCTAdditionAnimatedNode.m */, + 3062B8DCD584F3B29EEA55917B69959F /* RCTAnimatedNode.m */, + A7B1B351FA386E492267DCCFAE681CCC /* RCTDiffClampAnimatedNode.m */, + 78AA6B97F23F8B6FA8D711D9882D3584 /* RCTDivisionAnimatedNode.m */, + 87A6475E8D5A8EB6EE803AE69F977846 /* RCTInterpolationAnimatedNode.m */, + 5E53BC1F40B21DE55A3A42489753B629 /* RCTModuloAnimatedNode.m */, + 0293B398CCDD8756EB6C0ECC3467C675 /* RCTMultiplicationAnimatedNode.m */, + 1435C217D7BE552E2924CCCE8022795A /* RCTPropsAnimatedNode.m */, + 6AF2080122CB66D87D7373BAC5D2B09E /* RCTStyleAnimatedNode.m */, + 083BB995FA9FF923940025F229F38537 /* RCTSubtractionAnimatedNode.m */, + F348E67BEE0085C8EEDD35F44F176B14 /* RCTTrackingAnimatedNode.m */, + 9A60620470D0168DB7AA9664FC6015E9 /* RCTTransformAnimatedNode.m */, + 95703A9FB86E0BA6B62FAEB401871DFC /* RCTValueAnimatedNode.m */, ); - name = RNReanimated; - path = "../../node_modules/react-native-reanimated"; + name = Nodes; + path = Nodes; sourceTree = ""; }; - 2E2A831E051CBAEB06420F30E4277594 /* Support Files */ = { + 30EBE0A530FD2F10DFFF379D00F29292 /* Support Files */ = { isa = PBXGroup; children = ( - 7C24906DDFF8C57FFBD11709A664663D /* React-cxxreact.xcconfig */, - 7DAD2876527B3F0CB6B9F0A217434BFB /* React-cxxreact-dummy.m */, - 95B1B98679287C0464D1F16DF0045983 /* React-cxxreact-prefix.pch */, + B1317A709B24821FB990E3E0ED0C7424 /* RNFS.xcconfig */, + 625AD851801A3BC2BA6D70D3A8146D25 /* RNFS-dummy.m */, + ED4DE307D6A11CCD123B7B0E67F22C23 /* RNFS-prefix.pch */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-cxxreact"; + path = "../../ios/Pods/Target Support Files/RNFS"; sourceTree = ""; }; - 2F01EC6FEC075DCB44C3E0F4CEE7AA48 /* RNConvertPhAsset */ = { + 3105FD2A167FDF64669871628C26EC75 /* Support Files */ = { isa = PBXGroup; children = ( - 9B7692F269BF71F9442A62622C719886 /* RNConvertPhAsset.h */, - 8AB8E8181375E083D3E53DC39A76A9BF /* RNConvertPhAsset.m */, - 716402812B967855DAA97BA09133B55D /* Pod */, - 92D721B8B065915C2186E464003D9F4E /* Support Files */, + 67D7DA22FF06DE7B2E9F08CEC955FF2A /* React-RCTNetwork.xcconfig */, + 9E8DA04D446D49A1405485C619B83588 /* React-RCTNetwork-dummy.m */, + 1302B759B7F4E7FC730B079563613D4E /* React-RCTNetwork-prefix.pch */, ); - name = RNConvertPhAsset; - path = "../../node_modules/react-native-convert-ph-asset"; + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-RCTNetwork"; sourceTree = ""; }; - 2F3545BC41A94F68F0EA7CCB97316D5B /* CoreModulesHeaders */ = { + 3147CEDFCFD598A770694445C9A72288 /* Support Files */ = { isa = PBXGroup; children = ( +<<<<<<< HEAD + F971F310D923A6EAB889DB1AD2496C84 /* react-native-safe-area-context.xcconfig */, + 3A5645A6165F061A35A9C4260C436883 /* react-native-safe-area-context-dummy.m */, + CE9972E87EED058614B30846877D0E08 /* react-native-safe-area-context-prefix.pch */, +======= 37C3FBCE136A14EB5D378A1986DBB1EE /* CoreModulesPlugins.h */, E7984395C33CDE85CB9D1ADBBA42AB2F /* RCTExceptionsManager.h */, 302CC09A182B62441AC731F3D246855B /* RCTImageEditingManager.h */, 48C13046297A23E9A646404382A83DD9 /* RCTImageLoader.h */, 545E2337CD5A0E5897CD046ABD756385 /* RCTImageStoreManager.h */, A14A4635526A8D683BD33DA62C88A288 /* RCTPlatform.h */, +>>>>>>> master >>>>>>> master ); - name = CoreModulesHeaders; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/react-native-safe-area-context"; sourceTree = ""; }; +<<<<<<< HEAD + 32277B411DDDC6BF55058D21977A2E40 /* DevSupport */ = { +======= <<<<<<< HEAD 2615A6D72C0C6F9CB3D7D010E39DE4E3 /* RN */ = { isa = PBXGroup; @@ -6464,36 +6977,68 @@ 5576A92E60CE41C77BA60BA3DE5F4CB9 /* TextDetectorManager.m */, ======= 2F93AFABA20E26876D58E11AE68CAE05 /* UMModuleRegistryAdapter */ = { +>>>>>>> master isa = PBXGroup; children = ( - 76FAD1045632FE6FDE34B2FBFB68EC7A /* UMModuleRegistryAdapter.h */, - 27FCB61624459BC0366A1D992CE91116 /* UMModuleRegistryAdapter.m */, - 9A92218C7346264F25F5042A8BB691EC /* UMViewManagerAdapterClassesRegistry.h */, - C4A0BADCC27407CA7A88BFD598740FCF /* UMViewManagerAdapterClassesRegistry.m */, + 7B06A6E49DA9A78E733E4EC4E3084AED /* DevSupport */, + 51FA962ABC1D8909AE268574BFDA2C67 /* Inspector */, ); - name = UMModuleRegistryAdapter; - path = UMReactNativeAdapter/UMModuleRegistryAdapter; + name = DevSupport; sourceTree = ""; }; - 342CB44D149F1D8902A0C8233518CFAE /* SafeAreaView */ = { + 32775B37899F482CB69979DAC6406442 /* react-native-ffmpeg */ = { isa = PBXGroup; children = ( - B603C64F9D0065A639F19EDE4F8D85A4 /* RCTSafeAreaShadowView.h */, - CC4FCCD87429DF8783DD499F178525DC /* RCTSafeAreaShadowView.m */, - 29FB66FBBA4C427F4CBAE22965023D83 /* RCTSafeAreaView.h */, - FABD5E8E04B22837ECFA6237EA9EAC1B /* RCTSafeAreaView.m */, - 141731C3FA492DF2F4AA6656C5041D36 /* RCTSafeAreaViewLocalData.h */, - 8598CE246990A95F592FD67BE0F90DF5 /* RCTSafeAreaViewLocalData.m */, - FFA93701CE5F3369A34C81C72F4CBA36 /* RCTSafeAreaViewManager.h */, - 17DB9377CDF20217573960C23EF8180A /* RCTSafeAreaViewManager.m */, + 0A3478210C90530A40CD04CE2B813A96 /* RNFFmpegModule.h */, + 2C091676A4C95E0E5C12803E6A71AC9A /* RNFFmpegModule.m */, + 179BFD2FD4C2DAED93F419ED25E511BE /* https */, + 0D6635B82AC55EB0BDE5B784EE21D8DA /* Pod */, + 3BA8514E1AB8C5141869F1878F65733C /* Support Files */, ); - name = SafeAreaView; - path = SafeAreaView; + name = "react-native-ffmpeg"; + path = "../../node_modules/react-native-ffmpeg"; + sourceTree = ""; + }; + 3392C36E29E793D761FAF3D1EFE2F946 /* Support Files */ = { + isa = PBXGroup; + children = ( +<<<<<<< HEAD + C345575CD0FF76134BEE0E814F36F2B2 /* RNGestureHandler.xcconfig */, + 444D13031DEF10D1E52CBC5F648C17FD /* RNGestureHandler-dummy.m */, + 3819E68577D981B6899EA9BF4CD7E2C2 /* RNGestureHandler-prefix.pch */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/RNGestureHandler"; sourceTree = ""; }; - 34604E37A8F331597DE98D703628BA62 /* Pod */ = { + 339C6C0EE70B771090854E2DE3F8E41D /* UMModuleRegistryProvider */ = { isa = PBXGroup; children = ( + C6D1A8B73E850E887F7EF0501A1B5B13 /* UMModuleRegistryProvider.h */, + E80BAE8CA5E879443EDAF2BCC9E42BE8 /* UMModuleRegistryProvider.m */, + ); + name = UMModuleRegistryProvider; + path = UMCore/UMModuleRegistryProvider; + sourceTree = ""; + }; + 33A56A613DD8D3F22D8E078415D10028 /* Pod */ = { + isa = PBXGroup; + children = ( + A6B9F5BD4BBF21813F7CD193FEBA4BE7 /* React-jsiexecutor.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 3427623F17D8B72DD4321AFE9FF52149 /* Support Files */ = { + isa = PBXGroup; + children = ( + 7D961F12E603E2DE6A35E0F808F176A9 /* React-RCTVibration.xcconfig */, + 7C67D702A56EB20F3E79146A2899EA52 /* React-RCTVibration-dummy.m */, + EFD035592A4E3757F422C855308D514C /* React-RCTVibration-prefix.pch */, + ); + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-RCTVibration"; +======= F52B23131D83471799EED79B95B0D380 /* React-CoreModules.podspec */, >>>>>>> master ); @@ -6718,58 +7263,120 @@ ); name = Handlers; path = ios/Handlers; +>>>>>>> master sourceTree = ""; }; - 3722EDB1B50F3918A34899F9E8C1BE40 /* UMConstantsInterface */ = { + 360DF4C3505EDCE2866491AAD717C81F /* React-RCTNetwork */ = { isa = PBXGroup; children = ( - 5AB44CB8775EDA1EA37AF5174421DC48 /* UMConstantsInterface.h */, - AFF49AE215F3E1E14B7F0B638EAC72AC /* Pod */, - FD0EBD2BE2A444E1F8A0186813A06A4E /* Support Files */, + 6232D3E3F26E7A15361DD75502217861 /* RCTDataRequestHandler.m */, + C6DF65865E92381F35FB6A3CD38C5179 /* RCTFileRequestHandler.m */, + D89D04B80239B0D5C25AAB670263D3CB /* RCTHTTPRequestHandler.mm */, + 2A2B3A820963BA080674D8DE416D1964 /* RCTNetInfo.m */, + DEC25B180C2E1AE3A8C9601E54849533 /* RCTNetworking.mm */, + 123533AD2569FE5E4230B743DE07A21B /* RCTNetworkTask.m */, + 71820D2E25F35D8FECA7AB736FF9508B /* Pod */, + 3105FD2A167FDF64669871628C26EC75 /* Support Files */, ); - name = UMConstantsInterface; - path = "../../node_modules/unimodules-constants-interface/ios"; + name = "React-RCTNetwork"; + path = "../../node_modules/react-native/Libraries/Network"; sourceTree = ""; }; - 37A833B897EB3EB99652128370B2ED39 /* ios */ = { + 362EAD6E3F599B29833487923E119F17 /* RCTBlobHeaders */ = { isa = PBXGroup; children = ( - 1D3003F7E9A8E4C3D620728CF9908FEC /* RCTTurboModule.h */, - 2F01FFBE2D79FE839B40A16B7B916E08 /* RCTTurboModule.mm */, - D0C065E00A5A412D42AF24EFEAD4DFC4 /* RCTTurboModuleManager.h */, - B9B0E1C7DC0E662857F29B87E8B0DC5D /* RCTTurboModuleManager.mm */, + 83DF5D6F37AD34128EA102A1009DDE97 /* RCTBlobManager.h */, + FE503983CCC1CDDB8238EDA20E7485FC /* RCTFileReaderModule.h */, ); - name = ios; - path = ios; + name = RCTBlobHeaders; sourceTree = ""; }; - 37F91F830C5DAB600FDABD6E2F2D7585 /* Pod */ = { + 367546DD1C3AEE10E20F8D33A2FB4F49 /* Pod */ = { isa = PBXGroup; children = ( - CA7BC6C0CB24AAA743CFF03A4200E272 /* React-RCTActionSheet.podspec */, + CCDE0F2C2E9A40210E99E296D991594C /* UMCore.podspec */, ); name = Pod; sourceTree = ""; }; - 383EFE6736803A82D9F83272CDF2D520 /* Pod */ = { + 37C1A0E5D3DC45AE48462FB96B0ABBC5 /* Nodes */ = { + isa = PBXGroup; + children = ( + AB2CD411583043DB74204C0ADEAECC7E /* REAAlwaysNode.h */, + 38330834A671B9B4C3436E5DC991A50C /* REAAlwaysNode.m */, + 7FB083390F4ED2D2067C64A2947971B0 /* REABezierNode.h */, + 2A0C45F73723728076A06DF693A10012 /* REABezierNode.m */, + 292013A0A5283436B2815A6D014D7C5E /* REABlockNode.h */, + CA80D3357956EE1D73A49D14424D922F /* REABlockNode.m */, + 505E36D64915D7A88E64B7558047259A /* REACallFuncNode.h */, + 6CE90B049C84D0CB760377DF408F8333 /* REACallFuncNode.m */, + 9962F8716FC1C25BD3B90A213604E7C4 /* REAClockNodes.h */, + 5927A2340243D96BE152909FFC064456 /* REAClockNodes.m */, + 8B5788F982C9A1CBCC725E1709019A9E /* REAConcatNode.h */, + E8BB1C92171F980A036F15CF703D2655 /* REAConcatNode.m */, + C70CED965FB5F4EBFC87E552E5923B95 /* REACondNode.h */, + 7DDBB44BE3F7F544BE51C71BAE66D2F4 /* REACondNode.m */, + 9FA99A854DCC538C71240342393A5143 /* READebugNode.h */, + A6EBD4FBB705B457C5AD1F271A6365B2 /* READebugNode.m */, + 8345EA79D2AE85BC724E41A2F4EAB757 /* REAEventNode.h */, + F51C720754D08F52358FBEB937CB818A /* REAEventNode.m */, + 1D1BA4CAD33A7AABB55DB558189A0D48 /* REAFunctionNode.h */, + 5DCA7C03F4338D58F066CC8C6EB22A51 /* REAFunctionNode.m */, + C2A32AD7DEE14D8BC0E2F5C7A7B368AC /* REAJSCallNode.h */, + D1BBBEE04A56BC661CB66C3B69F0873C /* REAJSCallNode.m */, + D4A50563B1052196AFE86D6579CAC0DA /* REANode.h */, + 897C54A5BC791B5298653BA6E3D2375A /* REANode.m */, + 4AE9F2690ECE94E80D8AB94F054A75A1 /* REAOperatorNode.h */, + CC88B7BC58F7F2DA6A40351EE5B0EE0C /* REAOperatorNode.m */, + C23651862EE5E1925B2112671660BD04 /* REAParamNode.h */, + ABC4DC8E4F8901337D8571776B64E9E8 /* REAParamNode.m */, + C5704F5F904ABD7C69A42912ED134654 /* REAPropsNode.h */, + 4C1E2D7D0B146FD6602B37E3DCE7253E /* REAPropsNode.m */, + D3CA3A95F79BD3875B345E2C0FC185CB /* REASetNode.h */, + FF9E1E556E0737C4DC8CB41402FAA694 /* REASetNode.m */, + FFBD1BE7DC18190C1CB7395361D37C14 /* REAStyleNode.h */, + D5C1D89653471B8F65B074EF1288ED76 /* REAStyleNode.m */, + B999A89E5ED7004030001B59E1EECEB8 /* REATransformNode.h */, + 46627E09F9AA590A8180C0CA0F42D20F /* REATransformNode.m */, + BF4404D75AD35BE4987451ABF2094D66 /* REAValueNode.h */, + F96CAAA8A1F5E0DCBB2000FAD7F30A51 /* REAValueNode.m */, + ); + name = Nodes; + path = ios/Nodes; + sourceTree = ""; + }; + 38F0F76E1A2EBF7F0B18AA37227EA09F /* React-RCTAnimation */ = { isa = PBXGroup; children = ( - 367A4B7F89ED473F6D15D11BDF391825 /* LICENSE */, - 79189DFE2486A8792FD0609B7089FF70 /* README.md */, - 83F629F89DFF113EAB7EE6EE0DE7BA86 /* RNCAsyncStorage.podspec */, + 6589BB751548BF57A7C63F3414F07913 /* RCTAnimationUtils.m */, + F528BBEB9617135FFBC85E9A066D5D28 /* RCTNativeAnimatedModule.m */, + EBB4DFBF2A1BB5427042FCF091E942A8 /* RCTNativeAnimatedNodesManager.m */, + 3EDD976D062CEAFEF737D5AA1825E6AA /* Drivers */, + 2BBA0D479CD953799C798E91E0E1A38C /* Nodes */, + 6F316F2A4F52620D38E261F9A013A6C8 /* Pod */, + 268C175E7E2335A1260087BFA8F6D6CD /* Support Files */, ); - name = Pod; + name = "React-RCTAnimation"; + path = "../../node_modules/react-native/Libraries/NativeAnimation"; sourceTree = ""; }; - 39BFC64796224F7FE2D9B0A8F481FF40 /* Support Files */ = { + 393775EED23F163A35C81649C1859F14 /* Protocols */ = { isa = PBXGroup; children = ( - 78BC713191CFE484DCF5E5F9D9622C6F /* RNCMaskedView.xcconfig */, - 937249AD00966108E40C7FAFD6FC5E50 /* RNCMaskedView-dummy.m */, - 5D4DE9D0A5A0984BBABB8CF342401060 /* RNCMaskedView-prefix.pch */, + 01C29ABD6C13B90C2F2BAEA203EEA6E9 /* UMAppLifecycleListener.h */, + 9B5BD241E880C1597209CCFED363D163 /* UMAppLifecycleService.h */, + B7FD57CD3F5ED96C13A6A70B82BCADA4 /* UMEventEmitter.h */, + E8E90B96855ACAE7CDC170CCBC415015 /* UMEventEmitterService.h */, + 7D85E2EB9F93DDACFAF9BF1E27ECD9E5 /* UMInternalModule.h */, + 5B15B4F9EF165F011B0009F26F45A81F /* UMJavaScriptContextProvider.h */, + FC0C2E713065AC236249C7D77EF6C785 /* UMKernelService.h */, + 501A8191399EA8C0F62DAD7631FE5EA9 /* UMLogHandler.h */, + 6C0B89D54205F34E5A0B56287CF3BC65 /* UMModuleRegistryConsumer.h */, + 86903C6E80AAD2D8DCFFFFBE4FF826D6 /* UMUIManager.h */, + 7A6CA5CFB337765149A71769F3D648FD /* UMUtilitiesInterface.h */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/RNCMaskedView"; + name = Protocols; + path = UMCore/Protocols; sourceTree = ""; }; 3A983F48A52490A8221678A0084B8683 /* Support Files */ = { @@ -6781,36 +7388,85 @@ path = "../Target Support Files/mobile-ffmpeg-https"; sourceTree = ""; }; - 3AE0EE84BCAB7200616AA6DFC218F39F /* Support Files */ = { + 3B07FB1DA4644CE4B0812D0BAFA827B5 /* TextInput */ = { + isa = PBXGroup; + children = ( + AA1929C5F2EBA33ED7EE345B42D7F059 /* RCTBackedTextInputDelegateAdapter.m */, + 884A8BAC45782BC545264E6FF40549D1 /* RCTBaseTextInputShadowView.m */, + 29FAB5F46ABB07B4FF5364EAA7BFC04A /* RCTBaseTextInputView.m */, + 35272515542012F664BD6191FBBF6117 /* RCTBaseTextInputViewManager.m */, + 9462A3FC7BE6A36F90F46BDA99E04633 /* RCTInputAccessoryShadowView.m */, + FDDE43EE3AAB93D005C1C90DE287DFFF /* RCTInputAccessoryView.m */, + B6E8DD7802A68BF929AF0C21DA4C51DE /* RCTInputAccessoryViewContent.m */, + F0A7E989EA06C875F7392E82B6864698 /* RCTInputAccessoryViewManager.m */, + EED806455D3BA2CB93E0A2F1A54F8F54 /* RCTTextSelection.m */, + D2AAAE524B3F578BB2866D41F7D3A6E0 /* Multiline */, + 778EA9E2B105B983F2EC5DAE5EC23B1D /* Singleline */, + ); + name = TextInput; + path = TextInput; + sourceTree = ""; + }; + 3B50BB313B0420C1F616F416BB6A951E /* Pod */ = { + isa = PBXGroup; + children = ( + 545E658F0BC0D36A99F38ECE6E87BA4D /* RCTTypeSafety.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 3BA8514E1AB8C5141869F1878F65733C /* Support Files */ = { isa = PBXGroup; children = ( - 7F67BE09741B9B90A7ABC142CE1E0A3B /* React-RCTLinking.xcconfig */, - 014FE4B40633076A3A4334E076148E47 /* React-RCTLinking-dummy.m */, - 48D4A7CFA88B854012F9DF1FE403654F /* React-RCTLinking-prefix.pch */, + 6D023802C9B02332E126EF46F29283B0 /* react-native-ffmpeg.xcconfig */, + 1C940033FA863B686F0E668A17956B2B /* react-native-ffmpeg-dummy.m */, + ED9F711B5505A79D0B30FF1B085DD666 /* react-native-ffmpeg-prefix.pch */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTLinking"; + path = "../../ios/Pods/Target Support Files/react-native-ffmpeg"; sourceTree = ""; }; - 3B1619E3B2C9921FB27FD0C741209E56 /* Drivers */ = { + 3BCF2DFFAAFE8C15A69BB3796052782D /* RCTRequired */ = { isa = PBXGroup; children = ( - 97A08FEA435D143D6AD23D0E2A24E997 /* RCTAnimationDriver.h */, - 959E793967DE0C8AA0D2C7333533AE1E /* RCTDecayAnimation.h */, - 8ADF7ACDB4280CC12F028075F4161835 /* RCTEventAnimation.h */, - 85008557FA91E2157A4032DBF5F0C6B6 /* RCTFrameAnimation.h */, - 2426860BD069CE41DB60BCFABC0DF7E1 /* RCTSpringAnimation.h */, + 6D38F1B7603B854BB50E815CBAC50E64 /* RCTRequired.h */, + 2ABF88E2F1EB83F40D82522ACEEAE994 /* Pod */, + C20D0C99F9F68F1D307EE835C61E1B84 /* Support Files */, ); - name = Drivers; - path = Libraries/NativeAnimation/Drivers; + name = RCTRequired; + path = "../../node_modules/react-native/Libraries/RCTRequired"; sourceTree = ""; }; - 3CA20D211D542E58F04DF86E0FA45F1D /* Pod */ = { + 3C1941D044FEB638B66FAC448F05A7E6 /* Support Files */ = { isa = PBXGroup; children = ( - 022CCE8F88D4ECE1AD8FC21530DAD011 /* UMTaskManagerInterface.podspec */, + 084A8A05DF99B08AE1210B63F6A3D638 /* React-CoreModules.xcconfig */, + 21A1C87776F303A84C0EB93FDB7E06F6 /* React-CoreModules-dummy.m */, + 95DB89AD58B1DAA2B1A1878554F96CCD /* React-CoreModules-prefix.pch */, ); - name = Pod; + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-CoreModules"; + sourceTree = ""; + }; + 3C8E3FFC3A1DBB19418618F5FB4AE60A /* RCTImageHeaders */ = { + isa = PBXGroup; + children = ( + 34538C34D0B38F343683BC22F96E0F22 /* RCTAnimatedImage.h */, + 005926AE0A8677AC1F2D9DCAE7BEFFB2 /* RCTGIFImageDecoder.h */, + 9537B61141201FB98D3F5062797E6E62 /* RCTImageBlurUtils.h */, + 2A5D4FD97C98DB85D4C97F6C05B4278B /* RCTImageCache.h */, + 07C9F6DA9F78A24DB1BDC0B813E55440 /* RCTImageDataDecoder.h */, + 7C07BD50991435BFFE23E8247AA3C733 /* RCTImageLoaderProtocol.h */, + F57A15C7A01CC133BF1440BC2A5B7D49 /* RCTImageShadowView.h */, + 9C21BD99C4DDA6830D9C6931F9E92052 /* RCTImageURLLoader.h */, + F85CBD7C6F5037CCDE62675ED5541350 /* RCTImageUtils.h */, + 884780291078A4A72E3FB3B9BDC30F66 /* RCTImageView.h */, + 65E0EBF94546A595A9C9346940CC5810 /* RCTImageViewManager.h */, + 26B70F46B490A1CA672ECA4F89AD102C /* RCTLocalAssetImageLoader.h */, + 0F6CBFC16CE78E4F9A85F244A6C27157 /* RCTResizeMode.h */, + 1E6B6CE0364C64CA0B2C1C95B93601D6 /* RCTUIImageViewAnimated.h */, + ); + name = RCTImageHeaders; sourceTree = ""; }; 3CE0D4EAE45ED9A090DA3DDF54E543C1 /* mobile-ffmpeg-https */ = { @@ -6823,23 +7479,16 @@ path = "mobile-ffmpeg-https"; sourceTree = ""; }; - 3F497A171B150E1BA2D40E6D7462757D /* ScrollView */ = { + 3EDD976D062CEAFEF737D5AA1825E6AA /* Drivers */ = { isa = PBXGroup; children = ( - F11AA1C827B436C10A93758DD6EFCB7D /* RCTScrollableProtocol.h */, - B8F6E7FE66DC80E02E433801E75785DB /* RCTScrollContentShadowView.h */, - 2216D47FB74799240FA9DB388868F403 /* RCTScrollContentShadowView.m */, - BC0A767680AA2AAAE602C039A71661B3 /* RCTScrollContentView.h */, - 724C77C640A5DFE06CDF8E4CF74981A7 /* RCTScrollContentView.m */, - 4AA467ADA93F5BA0B5CC5442E044473E /* RCTScrollContentViewManager.h */, - D00014DEF63C4BDD50DD7F02849E33A7 /* RCTScrollContentViewManager.m */, - C5FE09AC13E912CC13F17F1725B484BA /* RCTScrollView.h */, - E853F248843222E236163F95505C0892 /* RCTScrollView.m */, - 3D81BA879CB3037A2C2CCF7612780A91 /* RCTScrollViewManager.h */, - C5C2B38E39BCFA67F89F878A58F3A8B3 /* RCTScrollViewManager.m */, + 81D722FA7D7FCAC10A54BE8734006014 /* RCTDecayAnimation.m */, + FDF6B85A0F0BBEAAAB6A2FF8E208847B /* RCTEventAnimation.m */, + BDC5D614AAEE255FBE94F9F91DA40A75 /* RCTFrameAnimation.m */, + B8AD045B2BA52901424575F3317E5E6E /* RCTSpringAnimation.m */, ); - name = ScrollView; - path = ScrollView; + name = Drivers; + path = Drivers; sourceTree = ""; }; 4020D14E8C3859A8C0D64D8CAB7E90EE /* DoubleConversion */ = { @@ -6869,31 +7518,43 @@ path = DoubleConversion; sourceTree = ""; }; - 417E228E9E9CB3626D44084B8CB265F3 /* Support Files */ = { + 41162EAB2A3EDEC67E9DE50C3A76CFEA /* EXFileSystem */ = { isa = PBXGroup; children = ( - 7F90DA9DD514B1B6E657857A3990A15B /* RNVectorIcons.xcconfig */, - EB071BF1C50B68C08E9CDC61C2DCBF5D /* RNVectorIcons-dummy.m */, - 175823D9304E6B1DD9ABFF9CB4EF4870 /* RNVectorIcons-prefix.pch */, + 38046096E9F2F9FB4D95181CA0B2C463 /* EXDownloadDelegate.h */, + 66A038DDFD79950D0B8DF6266FB00CBD /* EXDownloadDelegate.m */, + 87CE761A684BA1864C66DF5A2F7F4CA5 /* EXFilePermissionModule.h */, + 77519740819497A1B2325233B964FFA6 /* EXFilePermissionModule.m */, + A601848B171E24C7F28225037D1140DE /* EXFileSystem.h */, + 6665CCCE6BACFFA2D038426708CBD502 /* EXFileSystem.m */, + B51DBE3A02CBA8F41F7F3B28B45883EF /* EXFileSystemAssetLibraryHandler.h */, + 6CA5C419FED8770EE598125529B46422 /* EXFileSystemAssetLibraryHandler.m */, + F6E068A964849698547480FC1CBE6299 /* EXFileSystemLocalFileHandler.h */, + 2FE427E1DE0F47281825F31DEF6B8978 /* EXFileSystemLocalFileHandler.m */, + 551B510F1EC8D96CD91ED75865382C36 /* Pod */, + BDF75CEDECF401F2606206CE2860D807 /* Support Files */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNVectorIcons"; + name = EXFileSystem; + path = "../../node_modules/expo-file-system/ios"; sourceTree = ""; }; - 441FE20B0738662BC21906A4D6405644 /* ReactCommon */ = { + 442FCCFEE8AE68C1CE31AFF49043E5F7 /* Support Files */ = { isa = PBXGroup; children = ( - 813F750B16A193B67BCD149AED237107 /* jscallinvoker */, - B2721D04AC84D88E789C68ADDE618068 /* Support Files */, - 77DA40D21760667981433AF61A852EFC /* turbomodule */, + BE8F624CB1E9B71FD4BC3BBE26488671 /* RNConvertPhAsset.xcconfig */, + 5C5D87D8C818CC5091D87E35B2670D3E /* RNConvertPhAsset-dummy.m */, + 04B3AD354ED8E59A3E1EF7BA12460175 /* RNConvertPhAsset-prefix.pch */, ); - name = ReactCommon; - path = "../../node_modules/react-native/ReactCommon"; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/RNConvertPhAsset"; sourceTree = ""; }; - 490736719FAF586523C3033A87237E1B /* Pod */ = { + 44FD57FCC64B861A77CEEC3ED318E9F4 /* Pod */ = { isa = PBXGroup; children = ( +<<<<<<< HEAD + 7054E11A07D57529BED09A3BC1CF1D83 /* UMImageLoaderInterface.podspec */, +======= 42484617FE820C7EE347D6248A57BCF7 /* React-RCTAnimation.podspec */, >>>>>>> master ); @@ -6905,10 +7566,14 @@ isa = PBXGroup; children = ( E64C4DE10504A229D9B7FD7B8BC4FE61 /* React-cxxreact.podspec */, +>>>>>>> master ); name = Pod; sourceTree = ""; }; +<<<<<<< HEAD + 46123BBAE927EBA8BBAEF05221B5F67F /* Support Files */ = { +======= 32FE87CBD21EE9AACEE80DD7CB9F20E3 /* Support Files */ = { isa = PBXGroup; children = ( @@ -6949,53 +7614,67 @@ C61545302A53189A8C34A4FA252D8E56 /* EXConstants.podspec */, ======= 498E75BD147C85EB8146BDEF05C1C0A0 /* UIUtils */ = { +>>>>>>> master isa = PBXGroup; children = ( - E329CE1D648734DB81CBA865811D4931 /* RCTUIUtils.h */, - FB47E41C9994F9F5C6D0DFBB0485764B /* RCTUIUtils.m */, + 77DA8146BDCD24C321C037ED0A85E799 /* UMImageLoaderInterface.xcconfig */, ); - name = UIUtils; - path = React/UIUtils; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/UMImageLoaderInterface"; sourceTree = ""; }; - 4A55BDC50731E26E6F6195DEE631BA8F /* Services */ = { + 463E170844F6DC452E6825BEED47522D /* Pod */ = { isa = PBXGroup; children = ( - A5D9A11FF1E5D2F0FECFE0BD52A7D9CA /* UMLogManager.h */, - 027E45DA2E825EBB33A4F1D35E899FC3 /* UMLogManager.m */, + 6E2F842C9F526D6AACC58EC5705672CA /* React-jsi.podspec */, ); - name = Services; - path = UMCore/Services; + name = Pod; sourceTree = ""; }; - 4C6095138F45F5AEB353C566E7C7FBE1 /* Support Files */ = { + 478223672993A51A4E6FCD9D79EB2859 /* Pod */ = { isa = PBXGroup; children = ( - 128672B9F71A6BD8D10A3C8978A8B2AF /* React-RCTText.xcconfig */, - 816263B06970499608C4612EEB4C5F28 /* React-RCTText-dummy.m */, - CFB3D038B06F51146F3F7B868FED50EE /* React-RCTText-prefix.pch */, + 8ED41D161C9B641A462293B574F4FC88 /* LICENSE */, + C573FA56E6EECA6452491BE6D8561B4F /* README.md */, + B24AF3D3CD5691B399C71946A9EFB2F3 /* RNFS.podspec */, ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTText"; + name = Pod; sourceTree = ""; }; - 4CE835F358C9F943F404EDF92F72C2C3 /* Pod */ = { + 47DD918081A0A12E1C0510F588A347A2 /* Pod */ = { isa = PBXGroup; children = ( - DABFEA14D3DB321D7254F9D0BE385626 /* UMReactNativeAdapter.podspec */, + 4018DA290C8536575EBAACC902294EA6 /* UMFontInterface.podspec */, ); name = Pod; sourceTree = ""; }; - 5175162944D31B939B4E0C2312FAE5E6 /* Pod */ = { + 47FD2A6E53F5F0CABF3609D49D05FD72 /* Pod */ = { isa = PBXGroup; children = ( +<<<<<<< HEAD + EEC578F8F9A6DE2A37052A232CB9B354 /* LICENSE */, + B79997B62AB9572D3CCC46E3770013D2 /* react-native-safe-area-context.podspec */, + 54D7E954E8B80E06E9DECE1E6C31DFE1 /* README.md */, +======= AA5216790B663069224B852754906999 /* React-Core.podspec */, +>>>>>>> master >>>>>>> master ); name = Pod; sourceTree = ""; }; +<<<<<<< HEAD + 48BFDEF7F302596AFE89B183A1F5A1C2 /* react-native-safe-area-context */ = { + isa = PBXGroup; + children = ( + 1D883740CD80A8DB07979F6D98CDEA61 /* RNCSafeAreaView.h */, + 08470F3634AF01656F53F2449E1D156D /* RNCSafeAreaView.m */, + 6C53BE1DC700EC506740737E1A94D215 /* RNCSafeAreaViewManager.h */, + 420262690A180B41C6359BD56BD9A9E3 /* RNCSafeAreaViewManager.m */, + 47FD2A6E53F5F0CABF3609D49D05FD72 /* Pod */, + 3147CEDFCFD598A770694445C9A72288 /* Support Files */, +======= <<<<<<< HEAD 385D532BC3712ED45F5714A6DED89932 /* Pod */ = { isa = PBXGroup; @@ -7008,11 +7687,16 @@ isa = PBXGroup; children = ( 636C772A06CD64876AE6A932B82935DE /* RCTTypeSafety.podspec */, +>>>>>>> master >>>>>>> master ); - name = Pod; + name = "react-native-safe-area-context"; + path = "../../node_modules/react-native-safe-area-context"; sourceTree = ""; }; +<<<<<<< HEAD + 48FBDF293E5B929DFB3EDCC84D4E2095 /* react-native-camera */ = { +======= <<<<<<< HEAD 3A38EFCB3BFF1D4B0404B73255291553 /* EXConstants */ = { isa = PBXGroup; @@ -7088,73 +7772,77 @@ 83B0F608CEC9EA515B236711C84E3A8E /* Support Files */, ======= 537B86BA27446CF2111A082820E8ACA2 /* RCTLinkingHeaders */ = { +>>>>>>> master isa = PBXGroup; children = ( - 2EBED2F2909DD60BABE3AA796A7D1C9C /* RCTLinkingManager.h */, + 8D2E0D7844549F982AB08482B52EE11F /* Pod */, + BF75DCB6B02C536E6469D79D25C43F63 /* RCT */, + 6953760794F822E73FA9CB01A135AA2F /* RN */, + 28EB28AA722F18E86B91BC26C51F7629 /* Support Files */, ); - name = RCTLinkingHeaders; + name = "react-native-camera"; + path = "../../node_modules/react-native-camera"; sourceTree = ""; }; - 53A4968D3A9298B1457973BAF5533AF7 /* Pods */ = { + 4C718FDEFA294080E0BCA41641657AE0 /* React-RCTImage */ = { isa = PBXGroup; children = ( - 9CBE1C68C6EDF9F158AD7764932669F1 /* boost-for-react-native */, - 4020D14E8C3859A8C0D64D8CAB7E90EE /* DoubleConversion */, - CE7D98D8B672ECB3234DF21096081B1A /* Folly */, - 95AE5BAF48A3BD7AAF9532400E69399D /* glog */, - 3CE0D4EAE45ED9A090DA3DDF54E543C1 /* mobile-ffmpeg-https */, + 7552595668B1D5809A62165425A6BEC6 /* RCTAnimatedImage.m */, + C7C9D54A540D9955365E18CD4D118168 /* RCTGIFImageDecoder.m */, + A965ABB094651BB1367120B749FDC2A3 /* RCTImageBlurUtils.m */, + 90CD281D75F95183F2ECB97AD522A510 /* RCTImageCache.m */, + 2BC89F73F4E5BC5ADF2C218EAFF4F3B6 /* RCTImageShadowView.m */, + A5D3627BD629932D9D693E27E71F3258 /* RCTImageUtils.m */, + 1E915664A5E16084BA46C2BF3C354F49 /* RCTImageView.m */, + 2D69A82D6BAD420D193400E5F728D03B /* RCTImageViewManager.m */, + 28E9F8D2113326A2244D7F4A71CB7ED0 /* RCTLocalAssetImageLoader.m */, + 245DB2D57770A38D77955A277B3654CC /* RCTResizeMode.m */, + CEBB864E5E847848EC733BB4974EC457 /* RCTUIImageViewAnimated.m */, + 9267978ABF94F59410AD089AEC6C1570 /* Pod */, + 004E039C0272A1CA658547B2BDA657AE /* Support Files */, ); - name = Pods; + name = "React-RCTImage"; + path = "../../node_modules/react-native/Libraries/Image"; sourceTree = ""; }; - 5453C912003CF0658830D7AAA296CD3D /* Support Files */ = { + 4F755316863923C695177501CDC50B84 /* Pod */ = { isa = PBXGroup; children = ( - 3A3985C6709DC2616852677703D339C1 /* RNScreens.xcconfig */, - 462041C5B81A962600E25E28DC10C5A9 /* RNScreens-dummy.m */, - 64935D264B32BE984538330992522E9A /* RNScreens-prefix.pch */, + D8D54037967A1AAFE9939A4E9B339727 /* README.md */, + 903DDEC9B1A5C4FC2562F3F849F11A72 /* RNCMaskedView.podspec */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNScreens"; + name = Pod; sourceTree = ""; }; - 54D69B6344BE7D9CC442411B123115FA /* React-Core */ = { + 51B2AD9D58B148BA7A724B057CCB35F9 /* Support Files */ = { isa = PBXGroup; children = ( - 2F3545BC41A94F68F0EA7CCB97316D5B /* CoreModulesHeaders */, - ADDD7CE8A02ACD51D01896B760ED7EC2 /* Default */, - 2B5EB0E0FF0A89FE9EC7811656672388 /* DevSupport */, - 5175162944D31B939B4E0C2312FAE5E6 /* Pod */, - 814E7FA843637D0AD9618D2364EB8C3E /* RCTActionSheetHeaders */, - 59C8FE22CEAC2D5BD90CA62426A67E10 /* RCTAnimationHeaders */, - 015217F7B7A0F987F6E1F8E3CDFD4D5C /* RCTBlobHeaders */, - BA7F368313ADD886AD4B65AF0AFB23FF /* RCTImageHeaders */, - 537B86BA27446CF2111A082820E8ACA2 /* RCTLinkingHeaders */, - 74979151D6C06BF9C70317FDCF653ED3 /* RCTNetworkHeaders */, - AD09067294B7B9B08803452FF2DC5103 /* RCTSettingsHeaders */, - 8FE07FD5850215AE9E596333EFD6C273 /* RCTTextHeaders */, - A191B1FA129D6C27FEC1F31EE034A821 /* RCTVibrationHeaders */, - E4EB5AA472E1DBBCB959A4A51FF8D31B /* RCTWebSocket */, - 8C20716655485FCFCBE4E2570CBDD91C /* Support Files */, + 8871BB4A637D1304AC8191B4D6A0F60F /* React-jsiexecutor.xcconfig */, + 75DB962E226C097E996B858C50817A2E /* React-jsiexecutor-dummy.m */, + 8D6F1C844C5584DADE9C47488C14E269 /* React-jsiexecutor-prefix.pch */, ); - name = "React-Core"; - path = "../../node_modules/react-native"; + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-jsiexecutor"; sourceTree = ""; }; - 5673D01CDC558AA7150648BA836368DB /* Support Files */ = { + 51FA962ABC1D8909AE268574BFDA2C67 /* Inspector */ = { isa = PBXGroup; children = ( - 86E1293F04DC92C6D51ED0EB4F9FBA59 /* glog.xcconfig */, - 6FFC324CD762FE19295E1E5243AA9A76 /* glog-dummy.m */, - 880EDE7DEC6DD6FE244305CBC1B50831 /* glog-prefix.pch */, + 542A3190289E3A6BEC639996A66A0504 /* RCTInspector.h */, + 62629948206B22A5E1106A4A1EFDC6ED /* RCTInspector.mm */, + 5CC80F92AD5835C29B56F4EBD638D76E /* RCTInspectorPackagerConnection.h */, + C288701615BD9616F86E3D1CEA6E37E4 /* RCTInspectorPackagerConnection.m */, ); - name = "Support Files"; - path = "../Target Support Files/glog"; + name = Inspector; + path = React/Inspector; sourceTree = ""; }; - 570A9EAE5CB46C4F471F06909A22FCB1 /* Pod */ = { + 52070CFA7CA6B4BC5829EC0983C0F3B0 /* Support Files */ = { isa = PBXGroup; children = ( +<<<<<<< HEAD + A503E0961E43C9CA12E1312F55B741CA /* UMTaskManagerInterface.xcconfig */, +======= A42B7E816325CB524A35343DB4D737F9 /* React-jsinspector.podspec */, >>>>>>> master ); @@ -7182,10 +7870,15 @@ isa = PBXGroup; children = ( 356178961F46F56287A757C6C8D7EC78 /* React-RCTImage.podspec */, +>>>>>>> master ); - name = Pod; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/UMTaskManagerInterface"; sourceTree = ""; }; +<<<<<<< HEAD + 525433E1D6D1B3F8816453191FC12AE0 /* Support Files */ = { +======= 3F650D154EC27E3773520AE8A7840603 /* React-RCTText */ = { isa = PBXGroup; children = ( @@ -7260,245 +7953,184 @@ 78EDE4D3A74C15014E42DDF6DD90C363 /* React-jsiexecutor.podspec */, ======= 5845E925BADBCCECC55D431440A22062 /* EXConstants */ = { +>>>>>>> master isa = PBXGroup; children = ( - E8E1E9DBCA36C7FB3BEF1DBD87B5C3B7 /* EXConstants.h */, - 16105C0D605078B6F1D32288138590F7 /* EXConstants.m */, - E445EAC259ECCD13D842215EB1141C19 /* EXConstantsService.h */, - 924D179DFC2AC724B34A1D3874F22BCF /* EXConstantsService.m */, - 2338EEF4D619BCA481B5C59076AF2A4D /* Pod */, - B94346C8185ECDEA4CFA725C4A002243 /* Support Files */, + AA220265858705F92F8B58F404D01A80 /* UMReactNativeAdapter.xcconfig */, + 488BEDA1A8E816A182E0230739CF1F27 /* UMReactNativeAdapter-dummy.m */, + 2D5AA430A4D201F5CCFA6B2EA167FFAB /* UMReactNativeAdapter-prefix.pch */, ); - name = EXConstants; - path = "../../node_modules/expo-constants/ios"; + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/UMReactNativeAdapter"; sourceTree = ""; }; - 591A605321AA1323E6778EBC0E4FFA6D /* Views */ = { - isa = PBXGroup; - children = ( - C07C61D3CB14F6722D3F4A411DBF04EB /* RCTActivityIndicatorView.h */, - E801AD9356AABC33998C08992344697D /* RCTActivityIndicatorView.m */, - 626818D74C93E9D8D81784210AA87442 /* RCTActivityIndicatorViewManager.h */, - 8C84BD9D7FC4FC104B90B07C7CE72DAA /* RCTActivityIndicatorViewManager.m */, - C060BB77DB978ECF0CD3B972AF31B996 /* RCTAnimationType.h */, - 44A4CA8B1AD544203167897360A9421C /* RCTAutoInsetsProtocol.h */, - EEF2E2FFC3FEDBD506B4F8EFFB8023F7 /* RCTBorderDrawing.h */, - 3D9D3B498DCA304D4791E93B63F80FEB /* RCTBorderDrawing.m */, - B7F94D66B638D1AD7A0FD3E0A0D3281A /* RCTBorderStyle.h */, - F153BBE7435A9A435E981F55ACDE6A64 /* RCTComponent.h */, - FD3B52C7890202D8034102AE36903F17 /* RCTComponentData.h */, - 0EB82F5303D0A642BFEEFC441C4FCFC8 /* RCTComponentData.m */, - 2B28319654F6747C5E845EA0999A77AD /* RCTConvert+CoreLocation.h */, - EBBBD67DBF4923EC98909CB2EDAD617E /* RCTConvert+CoreLocation.m */, - 11204EC325279A7F3C0A58207ECFF547 /* RCTConvert+Transform.h */, - CD56FE84DA7F297F14C43F63D7424C76 /* RCTConvert+Transform.m */, - F1437AC46FA4043E69D75C04A87745C9 /* RCTDatePicker.h */, - 75CB3B4CD6F9C5ED935E87DC0E8C82A6 /* RCTDatePicker.m */, - 2631CCEA21E0CC13052E7A2CCD6CAC30 /* RCTDatePickerManager.h */, - 2842420D9151969B6BD4FCC58C457023 /* RCTDatePickerManager.m */, - A6F81D1E00159C60DEDF1F6D93BB727F /* RCTFont.h */, - 3C9B49C9439C57ECB512B8A679C2F83A /* RCTFont.mm */, - 2E4F38403B0960C6246FCD958E33F09E /* RCTLayout.h */, - D98E28469D48EDC9E6296D7C52B598AC /* RCTLayout.m */, - A8065E04FFEC55C1B6069CC4ED4E7B92 /* RCTMaskedView.h */, - E28DF20541674A37532314E4C8B5FF7F /* RCTMaskedView.m */, - 0D6BA45CBBBABDE73908DD603A3A5E30 /* RCTMaskedViewManager.h */, - B6EDDFDC6BAB43C9BCF97A00C15AFC20 /* RCTMaskedViewManager.m */, - 8B9F478CDE5117AE104F775B6AC24017 /* RCTModalHostView.h */, - C7B98812A15A664ED5E7DCA66FF1DC49 /* RCTModalHostView.m */, - D3D1BB023991807E848324A2A526CC2F /* RCTModalHostViewController.h */, - 4B7470A4CD0AB92A16DBAEB3B47168DA /* RCTModalHostViewController.m */, - A21B276A3A3FB7598CF0260C179E61B0 /* RCTModalHostViewManager.h */, - 663724B2BDC2A9385FB4B35E76D4DAB3 /* RCTModalHostViewManager.m */, - FDFBEF39EAE6D5C094B1698A435AF47D /* RCTModalManager.h */, - 030AC7098EEDA455B2796CE81C14860B /* RCTModalManager.m */, - 69DD798EB76A2A754D6ADB37E4756378 /* RCTPicker.h */, - 6BCB95541ED9706950920F660C22B966 /* RCTPicker.m */, - 8A14788E3694B83A0C295867DFE9B2F0 /* RCTPickerManager.h */, - 0BCD1FDFCD20065B7B8F128C09EC0054 /* RCTPickerManager.m */, - 665D261D84D873FCAA80AB8FD8FCD225 /* RCTPointerEvents.h */, - EB3A92E598FC1648E4489D0823DC5E78 /* RCTProgressViewManager.h */, - C9FFFA9E0AC2BEC5269CBB578F7DB009 /* RCTProgressViewManager.m */, - 95CFB4AE876FEF06DD1F334C41E2D273 /* RCTRefreshControl.h */, - 69831E84FEFD22A8B7180DD5EB23703C /* RCTRefreshControl.m */, - 060C8D20608E35E2C0CDCE51C353EE8F /* RCTRefreshControlManager.h */, - FDD3F541E318D97EAF93260E1ADECF7E /* RCTRefreshControlManager.m */, - 353EA34AEDF45E9214FE077716053F24 /* RCTRootShadowView.h */, - E7DBCA0B94059E1C12E84EED172209F6 /* RCTRootShadowView.m */, - BE7CF68B670457DC7DBBCE6E71AB08FA /* RCTSegmentedControl.h */, - 25CE2798B7732795CD21F211DA45D12E /* RCTSegmentedControl.m */, - 353E92BFC01E4D0964B5941D92B26B01 /* RCTSegmentedControlManager.h */, - 597612FC14859CAEA0EC5C6A67FC6B61 /* RCTSegmentedControlManager.m */, - 157E37FFD31C5E5441089C528A3E0AC6 /* RCTShadowView.h */, - 1ADC0723D393D861F4FE512F6313DBE6 /* RCTShadowView.m */, - EF45E326AEC387468B0DF2DBCCE7E69E /* RCTShadowView+Internal.h */, - BA0EC66F7C215917F4A8B5BF4B40D360 /* RCTShadowView+Internal.m */, - 1321C2A26616712E599B03417314F93C /* RCTShadowView+Layout.h */, - 809CFD57BA47FE8D8343F7D2E45C81C4 /* RCTShadowView+Layout.m */, - D2D07B3C8561E7B757023EDE0F95F2BB /* RCTSlider.h */, - 33F8F6C01B924822C83A3C45F8ACC798 /* RCTSlider.m */, - 9DB13257361743EE2F575C2CBB8F6AB0 /* RCTSliderManager.h */, - EF1695201EBD1D209D1D71B2C4072685 /* RCTSliderManager.m */, - CEC1574962E20BE79C055ECC3C4ED987 /* RCTSwitch.h */, - 06FF1B86279EC5C934ECB60C16D5B9C0 /* RCTSwitch.m */, - B1E4E0975FDEA1705A7950DD62784FDA /* RCTSwitchManager.h */, - 3C0196A6952595558D07C7E5C0367AB9 /* RCTSwitchManager.m */, - DD31F66820844903766E1DEC5174A4BA /* RCTTextDecorationLineType.h */, - FE03EA5E7F76C19C6C321422F5988833 /* RCTView.h */, - 194AEAC348FB93BEDD90D39BA2B8E6E4 /* RCTView.m */, - 89E2A1C82D69E02AEE6401814D47CDD8 /* RCTViewManager.h */, - 3F7D29F3ED9BCBD4D47F7609F8C4F989 /* RCTViewManager.m */, - 21881733B97D17438FC094FE530B7022 /* RCTWrapperViewController.h */, - 22924032C5C2C77395260138B858309C /* RCTWrapperViewController.m */, - 71C7209EB793156064668091A52FC12D /* UIView+Private.h */, - 5D153C7FA55895617B84F47D99C7AD20 /* UIView+React.h */, - 81A788F50E15368FD2B30BB430F19737 /* UIView+React.m */, - 342CB44D149F1D8902A0C8233518CFAE /* SafeAreaView */, - 3F497A171B150E1BA2D40E6D7462757D /* ScrollView */, + 5264CA553F63AC97AE316F13B8037637 /* CxxModule */ = { + isa = PBXGroup; + children = ( + 44AA16E5A27EFE336D4C2814D179C268 /* DispatchMessageQueueThread.h */, + FE44E822AFA7206FCC1F75369FB944CC /* RCTCxxMethod.h */, + 4FE5712E059C4EC4DD4F7A36E48B811E /* RCTCxxMethod.mm */, + 394D092C22F16A88223BD0C4AD52F8E2 /* RCTCxxModule.h */, + 666FC157E5FFE289E0E367F117200C85 /* RCTCxxModule.mm */, + F66901A7D43B99BA9C511B685A37D560 /* RCTCxxUtils.h */, + B526BAC58C528A75A588995980C8C245 /* RCTCxxUtils.mm */, + AB028410BB24CF42EF3382F3BA71E505 /* RCTNativeModule.h */, + F4EFD48F3CE8DBEA8E0AEE17365A7229 /* RCTNativeModule.mm */, ); - name = Views; - path = React/Views; + name = CxxModule; + path = React/CxxModule; sourceTree = ""; }; - 59C8FE22CEAC2D5BD90CA62426A67E10 /* RCTAnimationHeaders */ = { + 52E7BE99FC9A289CAB46323EFA052634 /* Pod */ = { isa = PBXGroup; children = ( - 36B4689623CD0453B726DFEEF5F4AF7D /* RCTAnimationUtils.h */, - C07798D7CB54B93C55D5A3C3BCEFC2A1 /* RCTNativeAnimatedModule.h */, - C970F1F2028F7E825154FB3532920205 /* RCTNativeAnimatedNodesManager.h */, - 3B1619E3B2C9921FB27FD0C741209E56 /* Drivers */, - A52E4BBCAEFA4596E73E85394274672E /* Nodes */, + F936B61B7E82836A7B833940D19AA903 /* UMFileSystemInterface.podspec */, ); - name = RCTAnimationHeaders; + name = Pod; sourceTree = ""; }; - 5BA454A8C28ACC7697ACEFDB8C0364C3 /* React-RCTVibration */ = { + 535862DA5DC31CAF772DD3439259D250 /* Pod */ = { isa = PBXGroup; children = ( - A5C5F73F1DE14E9BA4F8BAE69BFEC48E /* RCTVibration.m */, - D75E9ACDE746AA784B49972F4DCDDAE6 /* Pod */, - B50EC4858549DF19EAFA010C1708BBFC /* Support Files */, + 6412F594304C04C25AEBB302111A4DF4 /* React-RCTBlob.podspec */, ); - name = "React-RCTVibration"; - path = "../../node_modules/react-native/Libraries/Vibration"; + name = Pod; sourceTree = ""; }; - 5D46FC936D0B6D22FC1B8F15D5A2AC64 /* Development Pods */ = { - isa = PBXGroup; - children = ( - 5DEDE26F293F34C141DF3CACE39CE7DA /* EXAppLoaderProvider */, - 5845E925BADBCCECC55D431440A22062 /* EXConstants */, - 2C6EA0D80E1F7F14DC4949D83C9078BF /* EXFileSystem */, - A89D977B7EFF9000ED421806C5B36FFF /* EXPermissions */, - C438C8D9FDEF39E5152FDCC94E30C9C4 /* FBLazyVector */, - 75960294100304FE1020CD868022E455 /* FBReactNativeSpec */, - B6D8721C2382F741D4717E554E3BC09E /* RCTRequired */, - C83112CF6213E9BF5634161952FF8FC7 /* RCTTypeSafety */, - 277E428DB78332ABDA5AE9AEF0717CF2 /* React */, - 54D69B6344BE7D9CC442411B123115FA /* React-Core */, - 9A7ACDBC58DC72C6E65CA516E85DAB2D /* React-CoreModules */, - D74A8763985767DF69A710FD6262DE2C /* React-cxxreact */, - E9F53043DA087C6E5155A3452AECF905 /* React-jsi */, - AADF74AA10701D978F6A9A74FECFCFA6 /* React-jsiexecutor */, - 166366D55E9122A7CEDF5346A5D25F4C /* React-jsinspector */, - 745DB4B9344E4A04701477EF41891242 /* react-native-camera */, - 6A66FEB33B4FC736E55105D079863196 /* react-native-cameraroll */, - 72004BB73400CFCB07D23001C5417EA5 /* react-native-ffmpeg */, - DCA03A75F1D44CF2CCD0833972625151 /* react-native-orientation */, - A69AAC1A4E74D8A351DDA6EB403F0859 /* react-native-safe-area-context */, - DB356A2796B7EEBFC8414B28BF50E3D4 /* react-native-video */, - 9B5049E9B95058E38845CBBF15A4AF56 /* React-RCTActionSheet */, - D311E5560BBB374803AB35FF43B83712 /* React-RCTAnimation */, - 1FE33D7A932012676CE7031831FA0634 /* React-RCTBlob */, - 20C0009F2EA20894C9327854C73559F3 /* React-RCTImage */, - 7010905EF628EA1188934B79EA5A97E2 /* React-RCTLinking */, - E3CBAC3CEE00962FC5A4CB1ED0F09FCC /* React-RCTNetwork */, - 5FC2B39EEB44958145BB133E0FD66930 /* React-RCTSettings */, - 1F6F78089CA96EE502F8BC54BBF28579 /* React-RCTText */, - 5BA454A8C28ACC7697ACEFDB8C0364C3 /* React-RCTVibration */, - 441FE20B0738662BC21906A4D6405644 /* ReactCommon */, - 9A19DBB3CB05AD7E9D555DD383F4A297 /* RNCAsyncStorage */, - 6B5939B12C2B755C046C1AAEAB4B5A87 /* RNCMaskedView */, - 2F01EC6FEC075DCB44C3E0F4CEE7AA48 /* RNConvertPhAsset */, - 0CDA2812306A6A271DF75631B6192D65 /* RNGestureHandler */, - 2DEB7FA272FF540852F3EB3C7E5293A4 /* RNReanimated */, - 1288E1A79892AC03B8A50F7DF5638C77 /* RNScreens */, - 9FED4692A45FF3BCC820E88CDFAD3A58 /* RNVectorIcons */, - E28AB2BE3144CC795E0D0181D0421F7A /* UMBarCodeScannerInterface */, - E779522D797C4953B7DE8DF60603311D /* UMCameraInterface */, - 3722EDB1B50F3918A34899F9E8C1BE40 /* UMConstantsInterface */, - 9F0B9950104F775C19273C31A2FBD43D /* UMCore */, - EBE0216B79C6ECD22ECDD11CC98AAEEA /* UMFaceDetectorInterface */, - 2B25CFFB0F7104B5990A56A4C03CD0C2 /* UMFileSystemInterface */, - 8EB82DE39D10ED1D79A1B3B7E88AF074 /* UMFontInterface */, - 5F6E1A1D533066D87ABD3A3186725CCF /* UMImageLoaderInterface */, - E1F5541FEC5F8352BBAB67DBF555F807 /* UMPermissionsInterface */, - D47104546D6385FA2BD043B62C5A7020 /* UMReactNativeAdapter */, - 29C8D36FCC3E02100C04AF5D3637EBAD /* UMSensorsInterface */, - 19223789F7CE5A5DA344B5900A74EBC0 /* UMTaskManagerInterface */, - BC8B7139A34448517109CEC89DEE1B9A /* Yoga */, + 53A4968D3A9298B1457973BAF5533AF7 /* Pods */ = { + isa = PBXGroup; + children = ( + 9CBE1C68C6EDF9F158AD7764932669F1 /* boost-for-react-native */, + 4020D14E8C3859A8C0D64D8CAB7E90EE /* DoubleConversion */, + CE7D98D8B672ECB3234DF21096081B1A /* Folly */, + 95AE5BAF48A3BD7AAF9532400E69399D /* glog */, + 3CE0D4EAE45ED9A090DA3DDF54E543C1 /* mobile-ffmpeg-https */, ); - name = "Development Pods"; + name = Pods; sourceTree = ""; }; - 5DEDE26F293F34C141DF3CACE39CE7DA /* EXAppLoaderProvider */ = { + 543419CBCBC184DDDB37C0B88ED5BCC9 /* Pod */ = { isa = PBXGroup; children = ( - B54F44131C9ED95D0FD60F06F129AA1F /* EXAppLoaderProvider.h */, - 833FEDCBE02578BE28B03ED8C55CB268 /* EXAppLoaderProvider.m */, - 9641FAED7AFCD161686570AB3B580AD5 /* Interfaces */, - 8E040AB7958986E38891B4714F3D3132 /* Pod */, - F6B6A4E31C0253A69A7C493F1A1FD48B /* Support Files */, + DC4934CB41FA8B1D43428328784E6629 /* EXConstants.podspec */, ); - name = EXAppLoaderProvider; - path = "../../node_modules/expo-app-loader-provider/ios"; + name = Pod; sourceTree = ""; }; - 5E03DC48D8549378BFC7ECEA2016B560 /* Singleline */ = { + 551B510F1EC8D96CD91ED75865382C36 /* Pod */ = { isa = PBXGroup; children = ( - 5F33ADFE567B686958709945AC9F113C /* RCTSinglelineTextInputView.m */, - 46980176F3D5DF6E11953EA08A406928 /* RCTSinglelineTextInputViewManager.m */, - 17317436ED9A7A90C34B38A5FE5073B8 /* RCTUITextField.m */, + AEF99DA48A8333AD07744B757CC6AFA7 /* EXFileSystem.podspec */, ); - name = Singleline; - path = Singleline; + name = Pod; sourceTree = ""; }; - 5F6E1A1D533066D87ABD3A3186725CCF /* UMImageLoaderInterface */ = { + 553340A0841CDF292AF049B3D5F66D0F /* React-CoreModules */ = { isa = PBXGroup; children = ( - 0F436F7ABCADA6734387A280D6ADE238 /* UMImageLoaderInterface.h */, - 6369BBAA1F5F50E09ABC63290C04B1BB /* Pod */, - DF1F2D22E9361F8BA792DA673A43C2CC /* Support Files */, + 2037F14B0026EEFD238DD96CCCBD8CE9 /* CoreModulesPlugins.mm */, + 11F049CD5B2DDA74F086BA0A03722F53 /* RCTExceptionsManager.mm */, + 585D44828C856694AD9E5284093EADF1 /* RCTImageEditingManager.m */, + 55A9AC527C19E941392C2127C474D8AE /* RCTImageLoader.mm */, + 8A4094EC4400B59D0F17BA3204D5CD82 /* RCTImageStoreManager.m */, + DA413492791A245B32C8A5A3FAA3A619 /* RCTPlatform.mm */, + 6696ADD6349A1917004FD1387896DBBC /* Pod */, + 3C1941D044FEB638B66FAC448F05A7E6 /* Support Files */, ); - name = UMImageLoaderInterface; - path = "../../node_modules/unimodules-image-loader-interface/ios"; + name = "React-CoreModules"; + path = "../../node_modules/react-native/React/CoreModules"; sourceTree = ""; }; - 5FC20ACAFFF9E73B130693E427DB2851 /* Support Files */ = { + 5673D01CDC558AA7150648BA836368DB /* Support Files */ = { isa = PBXGroup; children = ( - FE5E45A4E8A74B99870A717F3F664099 /* React-RCTSettings.xcconfig */, - 1B1B0EB03AC1AB09BA336B6920AEF443 /* React-RCTSettings-dummy.m */, - EBF7224B6B153A98C1961740B72E3C0E /* React-RCTSettings-prefix.pch */, + 86E1293F04DC92C6D51ED0EB4F9FBA59 /* glog.xcconfig */, + 6FFC324CD762FE19295E1E5243AA9A76 /* glog-dummy.m */, + 880EDE7DEC6DD6FE244305CBC1B50831 /* glog-prefix.pch */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTSettings"; + path = "../Target Support Files/glog"; sourceTree = ""; }; - 5FC2B39EEB44958145BB133E0FD66930 /* React-RCTSettings */ = { + 5836871BFC7F1B60E97804E089A2F47F /* UMNativeModulesProxy */ = { isa = PBXGroup; children = ( +<<<<<<< HEAD + 8677605B478C464AAC1169BED97B39A8 /* UMNativeModulesProxy.h */, + 0DA1A11409D4A54CF044BC3C38D8B884 /* UMNativeModulesProxy.m */, +======= DBDF23D0789AFBD8383ACBF560BBA95F /* RCTSettingsManager.m */, 0AA08415873E9FFF074EC2FAEC6AE12E /* Pod */, 5FC20ACAFFF9E73B130693E427DB2851 /* Support Files */, +>>>>>>> master >>>>>>> master ); - name = "React-RCTSettings"; - path = "../../node_modules/react-native/Libraries/Settings"; + name = UMNativeModulesProxy; + path = UMReactNativeAdapter/UMNativeModulesProxy; + sourceTree = ""; + }; + 5B472EA8B2C19D9843CAD0A041F5E6AA /* Development Pods */ = { + isa = PBXGroup; + children = ( + B830E1BDEF7B802C73AF112D924A7DC4 /* EXAppLoaderProvider */, + 8311871DE23C86DC56B17E92FAFEF8FB /* EXConstants */, + 41162EAB2A3EDEC67E9DE50C3A76CFEA /* EXFileSystem */, + 71D683E8D764CF5DE725C605FD6DFC67 /* EXPermissions */, + EFF010EFB844810EEEFC6F40C9BCDD42 /* FBLazyVector */, + 92FB405A387815CB583F4183E1A6DFE1 /* FBReactNativeSpec */, + 3BCF2DFFAAFE8C15A69BB3796052782D /* RCTRequired */, + 83A3902C71EF65155C77C0F5365FBBC3 /* RCTTypeSafety */, + 6BF856769CCA777C64B5C1D7DBABD002 /* React */, + 1CCF9EA1B4B8EA3B8EAD1B971CDE7731 /* React-Core */, + 553340A0841CDF292AF049B3D5F66D0F /* React-CoreModules */, + 1B6C420088A319E291D6953ED44843F4 /* React-cxxreact */, + F5BC84F6971DFE2E5A57EBEBCF98C9C8 /* React-jsi */, + B76A1B881DE1C3EB5A4CE3973B80F201 /* React-jsiexecutor */, + 1F391DF86B83B3237CC05BAC357757D6 /* React-jsinspector */, + 48FBDF293E5B929DFB3EDCC84D4E2095 /* react-native-camera */, + 6EC7B2AACE943B6569D5A2AAEDD72EA5 /* react-native-cameraroll */, + 32775B37899F482CB69979DAC6406442 /* react-native-ffmpeg */, + 0F8715A8867222AB4276032058DBEC47 /* react-native-orientation */, + 48BFDEF7F302596AFE89B183A1F5A1C2 /* react-native-safe-area-context */, + 9A37453835C21FBC41776D77C343F006 /* react-native-video */, + A423EE2B70B0F7EC6C3EDA695197A424 /* React-RCTActionSheet */, + 38F0F76E1A2EBF7F0B18AA37227EA09F /* React-RCTAnimation */, + 72E7B6AEADC4FB0335F9EE87CB06A941 /* React-RCTBlob */, + 4C718FDEFA294080E0BCA41641657AE0 /* React-RCTImage */, + EB8C95A9F77B8F117457999A56BFE43F /* React-RCTLinking */, + 360DF4C3505EDCE2866491AAD717C81F /* React-RCTNetwork */, + 160AD65CB60995D2D37161AF933E95C8 /* React-RCTSettings */, + B8B50CFD34259D49DDD2A71A4D68FDBF /* React-RCTText */, + 15029059117A80D5F3C5DD2D56F25DD5 /* React-RCTVibration */, + 82A4E3E7B15BD870096929ED644C80A0 /* ReactCommon */, + 6649F55842836DA1871177212C9CEC7A /* RNCAsyncStorage */, + 08F0EE616BAE5660E1D531E8066E00E8 /* RNCMaskedView */, + CF17B6F2B5E8F96668FC6A88E7867159 /* RNConvertPhAsset */, + EE0279CDA0F258C49A7E8B5F412FD121 /* RNFS */, + FF2994701162A5FAA72EF8A5F65AD9CE /* RNGestureHandler */, + A3B4218D7D0728A9BA824A10C99D8D4E /* RNReanimated */, + DE406136E21F2ECBA1E6C82FFB67BE58 /* RNScreens */, + 0A7607AC1405660159A6EFD7A6B144C8 /* RNVectorIcons */, + EC2681DF3050B07586E8FDE5EFD30A68 /* UMBarCodeScannerInterface */, + 8AF519AF47C27D3183D1732B5F66DA4B /* UMCameraInterface */, + BD3A1DD273E11A206FB70CD756B3DDEF /* UMConstantsInterface */, + D0CC8B959A236DD54C777B1EA66CACF2 /* UMCore */, + E08FBBDB237B9A10EE0E9CBAE40C42A3 /* UMFaceDetectorInterface */, + 8191D43C2D6691D64B68E02154144B75 /* UMFileSystemInterface */, + DED6CF2AA6204F8232C355DA6F380830 /* UMFontInterface */, + 7927CA2ABB44556D9C0986E88B12CCAE /* UMImageLoaderInterface */, + 01DEA01AB010B5DF80C70F74ACB61A93 /* UMPermissionsInterface */, + CD0EDE85FBCD0B4E05249B0277681D78 /* UMReactNativeAdapter */, + B74C7355643AA2F92C25AC62A1F2527B /* UMSensorsInterface */, + B874EF8B710B0909F6790B46467D4278 /* UMTaskManagerInterface */, + 83F455C274EB78718257356290A05589 /* Yoga */, + ); + name = "Development Pods"; sourceTree = ""; }; +<<<<<<< HEAD + 5D4B344944774274720267DA8CCFBA0B /* Products */ = { +======= <<<<<<< HEAD 442EC22683D1DCE0CAC8629D4B7DAA5F /* Pod */ = { isa = PBXGroup; @@ -7516,34 +8148,77 @@ 3EB6F88008D5715D8B90E2F57F77F725 /* React-RCTText.podspec */, ======= 6299DAE97E434CC57A33C1B9095F42DC /* Transitioning */ = { +>>>>>>> master isa = PBXGroup; children = ( - 8D72A973383E0B35A3C4DA5D63DA286C /* RCTConvert+REATransition.h */, - 0D5F2D927735D71E989418AAB473DCB5 /* RCTConvert+REATransition.m */, - 3F8C3E7062668D5612A3CBCD373775C9 /* REAAllTransitions.h */, - 6CBC7BDCE64333DFB51CA45B19AE1CD8 /* REAAllTransitions.m */, - 33A4E2B28A76266CFF7488176DF4847A /* REATransition.h */, - 101832BC1197373EFED59FF5547F2704 /* REATransition.m */, - 6072EE8736C9627B5DF027A43D3041F0 /* REATransitionAnimation.h */, - 670DD1EDD4BB93F4E9846454B3CB5C99 /* REATransitionAnimation.m */, - 4BED723E49883507790D2844973A59BB /* REATransitionManager.h */, - 643A0E822C90AC526DCF4A33CA19597A /* REATransitionManager.m */, - 5DC71E22B3960EDD2DFA62044E8E890F /* REATransitionValues.h */, - B2F07DADD3BEA2130319C8B14C68DE8A /* REATransitionValues.m */, + 6FFB7B2992BB53405E6B771A5BA1E97D /* libDoubleConversion.a */, + A225ED83E33DC48D25B9FF35BA50CCD0 /* libEXAppLoaderProvider.a */, + 220361FF3B2778F8F38C2C4DCC5B49FD /* libEXConstants.a */, + ED1E3FC0DC90F4A787472917BFB6B235 /* libEXFileSystem.a */, + 72E494917AC5EC2582197F07061A28B0 /* libEXPermissions.a */, + ABFEEA82A6C346B22843FBE0B0582182 /* libFBReactNativeSpec.a */, + 06489499588BFA8FD5E63DD6375CD533 /* libFolly.a */, + 3CA7A9404CCDD6BA22C97F8348CE3209 /* libglog.a */, + D3E4DD11F1918DE602B2C373F24AD775 /* libPods-Gladeo_App.a */, + F958876A082BF810B342435CE3FB5AF6 /* libRCTTypeSafety.a */, + BD71E2539823621820F84384064C253A /* libReact-Core.a */, + 6771D231F4C8C5976470A369C474B32E /* libReact-CoreModules.a */, + 37592FDAD45752511010F4B06AC57355 /* libReact-cxxreact.a */, + D9F334F2E90E3EE462FC4192AF5C03BD /* libReact-jsi.a */, + F2E7C88DFCD460A4B46B913ADEB8A641 /* libReact-jsiexecutor.a */, + 2577F299FCB0A19824FE989BE77B8E8F /* libReact-jsinspector.a */, + 6C9790F1A25C1E3828E179A8F0850851 /* libreact-native-camera.a */, + 8C3E2A6E6F93E60E397F6C0BBA710BF5 /* libreact-native-cameraroll.a */, + C80F48708CBDDCE5978071B38FB8B4E5 /* libreact-native-ffmpeg.a */, + E29B39773F2D03D3018B86AD44866BD2 /* libreact-native-orientation.a */, + 52FCF98CEFF94C742080B6965D537AD0 /* libreact-native-safe-area-context.a */, + B058F035CFD84ECBF8414E4EAE5834FC /* libreact-native-video.a */, + 73F8A95B79671F501F31EA4F1D04AA8B /* libReact-RCTActionSheet.a */, + FE7B9294FF05AAFD1653E2104E10844A /* libReact-RCTAnimation.a */, + F71EBF73F354B475D465FF6DE9A66707 /* libReact-RCTBlob.a */, + EEDBF403E8E0B3885E65C2741B536BC5 /* libReact-RCTImage.a */, + 802121F5B756ACBFDD6D08C36246DADD /* libReact-RCTLinking.a */, + A68E5A9B69A3BA0FD52CAF7A354EC93B /* libReact-RCTNetwork.a */, + 269BE773C9482484B70949A40F4EA525 /* libReact-RCTSettings.a */, + E6A16705C69FC7DE11C2469A4A0F8358 /* libReact-RCTText.a */, + C1A919103EAC9813D236486C34FC0A21 /* libReact-RCTVibration.a */, + D5C775614AC76D44CECB6BE08B022F1F /* libReactCommon.a */, + 5737DDB4BC95AD399B3206838AB97095 /* libRNCAsyncStorage.a */, + B8CD4B9B578CE9FA38114B638C9CAA78 /* libRNCMaskedView.a */, + 79E255820A28B835DB608247A838EA5C /* libRNConvertPhAsset.a */, + 9A70011370B46387FBFE517906404002 /* libRNFS.a */, + 8F65F9361F2069CF9E9D751272968DE4 /* libRNGestureHandler.a */, + C777CF2FB1E39A45CBBDB54E8693F471 /* libRNReanimated.a */, + 50B5347C9A6E93B7D4CFC3673BA6FB7E /* libRNScreens.a */, + 8998273719FDD789E6F9C7541AFD0B33 /* libRNVectorIcons.a */, + AF72FD600DE7E2D330BA50F877993E05 /* libUMCore.a */, + BC41F4BEFC115303267857B135A144AE /* libUMPermissionsInterface.a */, + 3B640835BAA914DD267B5E780D8CFEC7 /* libUMReactNativeAdapter.a */, + 65D0A19C165FA1126B1360680FE6DB12 /* libYoga.a */, ); - name = Transitioning; - path = ios/Transitioning; + name = Products; sourceTree = ""; }; - 6369BBAA1F5F50E09ABC63290C04B1BB /* Pod */ = { + 5F665B243967753318642C8ACC75EF6E /* RCTVibrationHeaders */ = { isa = PBXGroup; children = ( +<<<<<<< HEAD + 6B25D318E42C9E07A26C1E599FB18F12 /* RCTVibration.h */, +======= 7D83B928B0E09FFFE93E88A41DD9DC6D /* UMImageLoaderInterface.podspec */, +>>>>>>> master >>>>>>> master ); - name = Pod; + name = RCTVibrationHeaders; sourceTree = ""; }; +<<<<<<< HEAD + 6341B659817BA663815764092EA59579 /* Requesters */ = { + isa = PBXGroup; + children = ( + BBDF177870251182ED1113CB17FDD0A5 /* RemoteNotification */, + 7FE62E77A43D2A506A9B2D158B4A82B7 /* UserNotification */, +======= <<<<<<< HEAD 456ED46CF1168E43970DF8FC33B99BD0 /* Pod */ = { isa = PBXGroup; @@ -7555,10 +8230,58 @@ children = ( B7E7C84F80916996363F62EA6C84CB67 /* EXPermissions.podspec */, >>>>>>> master +>>>>>>> master + ); + name = Requesters; + path = EXPermissions/Requesters; + sourceTree = ""; + }; +<<<<<<< HEAD + 64AA9799FC23D4B9BF795ECE9099A05C /* Profiler */ = { + isa = PBXGroup; + children = ( + B989810CCBCDD1146AD9197863AE3044 /* RCTFPSGraph.h */, + E40023310D2C5EE8B5190F590183ED19 /* RCTFPSGraph.m */, + ADF5A9DB359B3E4333BBC0C07CEA3738 /* RCTMacros.h */, + C5DB47E4D1D7655780FE690C51A332B7 /* RCTPerfMonitor.m */, + B0189DD220FC52262BD69028449F639E /* RCTProfile.h */, + 754919DD06036427D42CA0883EB46B1F /* RCTProfile.m */, + D710B1564976AA707D9E49212A760C03 /* RCTProfileTrampoline-arm.S */, + C655804A2DC891E21A116B81E76473CF /* RCTProfileTrampoline-arm64.S */, + CEB13D94EBD365FFC658C9740DB34393 /* RCTProfileTrampoline-i386.S */, + D10B05BB82C946964D0F04FBFFA36753 /* RCTProfileTrampoline-x86_64.S */, + ); + name = Profiler; + path = React/Profiler; + sourceTree = ""; + }; + 64B7552DC005DFC54B8633ECA964F36B /* Pod */ = { + isa = PBXGroup; + children = ( + 51453F4627BB01CF3C500B843BCA6C1D /* Yoga.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 65821532ACB0A0B3281F435E3CBBF577 /* Pod */ = { + isa = PBXGroup; + children = ( + 07AEBF9379A72269C3600744369DA05A /* LICENCE */, + AB72953C79447B5507E02F698EF1E39B /* react-native-cameraroll.podspec */, + A21F26E7E4EEA58E334F1940975D606B /* README.md */, ); name = Pod; sourceTree = ""; }; + 6649F55842836DA1871177212C9CEC7A /* RNCAsyncStorage */ = { + isa = PBXGroup; + children = ( + E091C94898AEE5E3632D86374FDD54F7 /* RNCAsyncStorage.h */, + BA8405276B05AE7F12428C8E0E3227DD /* RNCAsyncStorage.m */, + C27A5B3053D573439F05ADEACB33B0B5 /* RNCAsyncStorageDelegate.h */, + 15F9774856BE40C52301F27A9AF05014 /* Pod */, + AE439CFEA3E125D60F0B265B774D32A1 /* Support Files */, +======= <<<<<<< HEAD 457D6BC898245CA6085CDA5E3A2B63CB /* Pod */ = { isa = PBXGroup; @@ -7678,54 +8401,75 @@ 9902AB225D7811FDCE2770983C93E84C /* RNCCameraRollManager.m */, 6BFDD807298D0A21C761846397C1775D /* Pod */, 66AEA87E376F2C9C97654E8082E14B4F /* Support Files */, +>>>>>>> master ); - name = "react-native-cameraroll"; - path = "../../node_modules/@react-native-community/cameraroll"; + name = RNCAsyncStorage; + path = "../../node_modules/@react-native-community/async-storage"; sourceTree = ""; }; - 6B5939B12C2B755C046C1AAEAB4B5A87 /* RNCMaskedView */ = { + 6696ADD6349A1917004FD1387896DBBC /* Pod */ = { isa = PBXGroup; children = ( - 803182C68C68EFFB8593578DEF1AB183 /* RNCMaskedView.h */, - FB668BBF526324D6BE0B7341899B9E32 /* RNCMaskedView.m */, - 853F269CDA5EEB9639BDB783FCF8C573 /* RNCMaskedViewManager.h */, - 45E7525E71377662BFCA7B4293B90388 /* RNCMaskedViewManager.m */, - C2976B7A387CB9E09E1261BB5D2E8CCE /* Pod */, - 39BFC64796224F7FE2D9B0A8F481FF40 /* Support Files */, + F1FDBA4F989662F5DC26437582E5EDD1 /* React-CoreModules.podspec */, ); - name = RNCMaskedView; - path = "../../node_modules/@react-native-community/masked-view"; + name = Pod; + sourceTree = ""; + }; + 6953760794F822E73FA9CB01A135AA2F /* RN */ = { + isa = PBXGroup; + children = ( + 53B580C15542344DF4342F70AD468B58 /* BarcodeDetectorManagerMlkit.h */, + D17F346101B42C748B563BEDA6559D0F /* BarcodeDetectorManagerMlkit.m */, + 03DFAAF9F4306E7FC481BEAD34D65B22 /* FaceDetectorManagerMlkit.h */, + F4C035B1870E4EF64B7057572BAA6CC1 /* FaceDetectorManagerMlkit.m */, + F726C5236961273F8A0BD96DB979B6E7 /* RNCamera.h */, + CEFAFCF3422708163F62A4C0FD92BD3E /* RNCamera.m */, + 34AB717BF15267CDB020DD7501918E98 /* RNCameraManager.h */, + 6819262F3EDC6586E978A040CEEA6A82 /* RNCameraManager.m */, + B25F1DE9B06E555DF5413D4F404518EF /* RNCameraUtils.h */, + FD4C5EB168DAAC29CFE06B9DBDAF18CE /* RNCameraUtils.m */, + C3D65C9FE172BB39FD4D4393F7FBF768 /* RNFaceDetectorModuleMLKit.h */, + B1E5C32BC3B85C240C9279005D2E2735 /* RNFaceDetectorModuleMLKit.m */, + 4CF5E8ACEC420FC453C562E6F5E421A3 /* RNFileSystem.h */, + 3561429ADB9A922F9FBA74B850B20F59 /* RNFileSystem.m */, + D8A8E35D62A9DF2C04DCE751E82CC0EC /* RNImageUtils.h */, + E72D6762D6F4E3229A40FC09BADF7F6B /* RNImageUtils.m */, + BDC7287F939A2089243201265B5D4CE1 /* RNSensorOrientationChecker.h */, + B876C31A7EED581B52E044A4B5DF0A9C /* RNSensorOrientationChecker.m */, + 084E3251816B4EF8BD4F282FC86D0A05 /* TextDetectorManager.h */, + 60E7F0114D1A92A59B9E10EB959D7799 /* TextDetectorManager.m */, + ); + name = RN; sourceTree = ""; }; - 6B7E56AB85942C070A65176430A381AA /* Profiler */ = { + 6BF856769CCA777C64B5C1D7DBABD002 /* React */ = { isa = PBXGroup; children = ( - 2D62C174B80D005AA1E509EEE67F1E6C /* RCTFPSGraph.h */, - 728DDE532B5750ACBEB4C07C1CD49F55 /* RCTFPSGraph.m */, - FDD45AFED0DBE1D96467F7E5E3731BD0 /* RCTMacros.h */, - F24171EB5D139C46DCC84BEB3E4DE0E2 /* RCTPerfMonitor.m */, - 719636828CA82BB840379C429AF01647 /* RCTProfile.h */, - DBF41954F79CAE4578AA65900310CFFE /* RCTProfile.m */, - 2698781D458D7E07D6B25084717B4A49 /* RCTProfileTrampoline-arm.S */, - A14D26C1C8F07530335D37BE501A8132 /* RCTProfileTrampoline-arm64.S */, - C7F8B126526D1B81A074C6155523A3CD /* RCTProfileTrampoline-i386.S */, - 4275FEE937ACBE071A77D106D5826272 /* RCTProfileTrampoline-x86_64.S */, + 7BDDFD1867999AF3E53DB61CD6F7AA4A /* Pod */, + 963755E8DD41E3188ABC191F2650EE08 /* Support Files */, ); - name = Profiler; - path = React/Profiler; + name = React; + path = "../../node_modules/react-native"; sourceTree = ""; }; - 6BFDD807298D0A21C761846397C1775D /* Pod */ = { + 6D2E2CFE298B6C67A0B04E6F0D41A3A8 /* Pod */ = { isa = PBXGroup; children = ( +<<<<<<< HEAD + 43800A5D40964170F26E2AA3F2BF5AF4 /* React-cxxreact.podspec */, +======= EE292BE93D3F6530809C4D7AA68F2B7A /* LICENCE */, 714F3269053996557377B63E0EEFCE8B /* react-native-cameraroll.podspec */, 287C7587689F2C8C6E2F4EA229551FDB /* README.md */, +>>>>>>> master >>>>>>> master ); name = RCTLinkingHeaders; sourceTree = ""; }; +<<<<<<< HEAD + 6EC7B2AACE943B6569D5A2AAEDD72EA5 /* react-native-cameraroll */ = { +======= <<<<<<< HEAD 49298A2AA72576A86AB7BD0A126826C1 /* VirtualText */ = { isa = PBXGroup; @@ -7765,77 +8509,69 @@ 04C05A80081BA3FFC74FC2982AB48D19 /* React-RCTActionSheet.podspec */, ======= 6C99025BE4CF902CB13ADF2F7888FAA7 /* Nodes */ = { +>>>>>>> master isa = PBXGroup; children = ( - 1E97E900D22848007F6A5DC15C2D0A17 /* RCTAdditionAnimatedNode.m */, - 6DF1C684F8FA9B21B88FFE1CC802CC70 /* RCTAnimatedNode.m */, - 22E5EC80B168F850FE824A7C6009657D /* RCTDiffClampAnimatedNode.m */, - BB32CC8778C293681E90A0064EE7967A /* RCTDivisionAnimatedNode.m */, - B276013B3739D9B0DFDD8BD868440477 /* RCTInterpolationAnimatedNode.m */, - ED2BDABA8138144FE7AAED93D5753CE3 /* RCTModuloAnimatedNode.m */, - 515386C56C91A5884F828C3FB29EA824 /* RCTMultiplicationAnimatedNode.m */, - 625E0EFD383A33D7F882BBC3B12A0305 /* RCTPropsAnimatedNode.m */, - 95C2F0E606967752511D2C35D088AC2F /* RCTStyleAnimatedNode.m */, - F2A394EBB3A21CE48439562716F4BC9B /* RCTSubtractionAnimatedNode.m */, - 067E27503D71F084343D81F902CBE450 /* RCTTrackingAnimatedNode.m */, - C935E89E513B84C3E10A9251E0AA71AF /* RCTTransformAnimatedNode.m */, - AC4FA1B381716947813C53059476AA19 /* RCTValueAnimatedNode.m */, + 24DCDE9E0996B2A81964DBCFDCB7BDB8 /* RNCAssetsLibraryRequestHandler.h */, + DB9D40C0D9B81F4171C98347D5216C6C /* RNCAssetsLibraryRequestHandler.m */, + B5CB9EAB9907872085D0EC1E8E9F7967 /* RNCCameraRollManager.h */, + 4258A99E7C5F054C8980D97865DEF636 /* RNCCameraRollManager.m */, + 65821532ACB0A0B3281F435E3CBBF577 /* Pod */, + AF16FE27A669EE2FE61A60A96A218009 /* Support Files */, ); - name = Nodes; - path = Nodes; + name = "react-native-cameraroll"; + path = "../../node_modules/@react-native-community/cameraroll"; sourceTree = ""; }; - 6E7F00F33344D636272F908589F20BB3 /* Video */ = { + 6F316F2A4F52620D38E261F9A013A6C8 /* Pod */ = { isa = PBXGroup; children = ( - D7392CB5598B6DBA9B126FE1F171F212 /* RCTVideo.h */, - 9B6CF4CE2EF6CAF0023314C51A731B54 /* RCTVideo.m */, - 8628256E24FE48A83AC233FD52A77C4F /* RCTVideoManager.h */, - DCA7EF4205A31B5D1E64F03E81059447 /* RCTVideoManager.m */, - 709737A3BBDB965C69B4E9D2FD0AC0BD /* RCTVideoPlayerViewController.h */, - B10B0088C471DC66528A7241F441A27E /* RCTVideoPlayerViewController.m */, - 12C2D159AEE0B3530469B437EB1BC015 /* RCTVideoPlayerViewControllerDelegate.h */, - 3DC2A7DA8E458E6428584AB49A4659FE /* UIView+FindUIViewController.h */, - 91349DE5D373447F75BFADED39ECE630 /* UIView+FindUIViewController.m */, + D4FA2B393047ACB658154709DB96A0F8 /* React-RCTAnimation.podspec */, ); - name = Video; + name = Pod; sourceTree = ""; }; - 6F72250811E7A40852719A06E144AD7C /* Pod */ = { + 7081B8F45F71C7ACB8CC9B80CAF2B4DA /* RCTActionSheetHeaders */ = { isa = PBXGroup; children = ( - 9926BD16A7CD82FECD69E790A0CB8497 /* ios_test_app.gif */, - 4AC71E56E0CC4206FD47EEFCD4149D66 /* LICENSE.GPLv3 */, - 83F2A8ED671006EC8DC347F68A7FC644 /* react-native-ffmpeg.podspec */, - 926A6320B9A0BF32BEE32408B72558DB /* react-native-ffmpeg-logo-v1.jpeg */, - B6D3EE1EA781274E53C552B5C1F75F16 /* react-native-ffmpeg-logo-v2.png */, - D8320A356A1B2F6BF58F4B6295B083AE /* README.md */, + 5D5E9268A5B127AB628B83A7790983F4 /* RCTActionSheetManager.h */, ); - name = Pod; + name = RCTActionSheetHeaders; sourceTree = ""; }; - 7010905EF628EA1188934B79EA5A97E2 /* React-RCTLinking */ = { + 7160FA275D64759338AB532E2D9E5349 /* Support Files */ = { isa = PBXGroup; children = ( - 1379C4D52BC06398417544F11F7AC83D /* RCTLinkingManager.m */, - 973822A289225BFAEAB17484C0EAA9FD /* Pod */, - 3AE0EE84BCAB7200616AA6DFC218F39F /* Support Files */, + 0F48E2F03F3027518A578F7DFAF2578E /* React-RCTSettings.xcconfig */, + 7CD9262359A5544A180A26C9BD6DF5BB /* React-RCTSettings-dummy.m */, + 60BCC9C7037496570C777E366A5C54D7 /* React-RCTSettings-prefix.pch */, ); - name = "React-RCTLinking"; - path = "../../node_modules/react-native/Libraries/LinkingIOS"; + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-RCTSettings"; sourceTree = ""; }; - 716402812B967855DAA97BA09133B55D /* Pod */ = { + 71820D2E25F35D8FECA7AB736FF9508B /* Pod */ = { isa = PBXGroup; children = ( +<<<<<<< HEAD + 78B9C21C2618C89315E325F2E6F60C37 /* React-RCTNetwork.podspec */, +======= 188FD2E72006B93930D728FB5364CF10 /* LICENSE */, 41467A36F1D21CBD95AF9E19FE6C4A36 /* README.md */, 777E8059EBF555C61A5B1DD07C71EEDB /* RNConvertPhAsset.podspec */, +>>>>>>> master >>>>>>> master ); name = Pod; sourceTree = ""; }; +<<<<<<< HEAD + 71CFE754365BD13D6F44A7446B4705E8 /* RawText */ = { + isa = PBXGroup; + children = ( + FABBD1F47A0B9B964AEC2C8FF24DCFE0 /* RCTRawTextShadowView.m */, + 3D25016F1EE9D3358822EBC1F87C79FE /* RCTRawTextViewManager.m */, +======= <<<<<<< HEAD 4B0F16829D1210141F712EE2F4BE9E12 /* RNVectorIcons */ = { isa = PBXGroup; @@ -7865,12 +8601,16 @@ 1E306531ABB98699756489248F3BE670 /* https */, 6F72250811E7A40852719A06E144AD7C /* Pod */, 1C5BB0C94B3C86DF78CDF0E143319A27 /* Support Files */, +>>>>>>> master >>>>>>> master ); - name = "react-native-ffmpeg"; - path = "../../node_modules/react-native-ffmpeg"; + name = RawText; + path = RawText; sourceTree = ""; }; +<<<<<<< HEAD + 71D683E8D764CF5DE725C605FD6DFC67 /* EXPermissions */ = { +======= <<<<<<< HEAD 4E82C37897376E728A836DCEC0DA0042 /* React-jsiexecutor */ = { isa = PBXGroup; @@ -7966,58 +8706,77 @@ FB108111A3ACB0EFCFDD9307B99798D0 /* RCTRequired.podspec */, ======= 7217EAD7F8D83F1C76D8D2F298637568 /* Multiline */ = { +>>>>>>> master isa = PBXGroup; children = ( - DF35500C1B09B2803A2C128372D6A8FF /* RCTMultilineTextInputView.m */, - D287687B564EEC61DF0E837E3A3C4EF0 /* RCTMultilineTextInputViewManager.m */, - 4E3395A966C792B848A2489906255EA4 /* RCTUITextView.m */, + 3B95312A46203FF91B8A5AC270845DDC /* EXPermissions.h */, + 8D6B4FCD54CF5DE87315DB4A5709BE2B /* EXPermissions.m */, + 66D7175AF5EF95F35D9CFB4B360EEAFB /* EXReactNativeUserNotificationCenterProxy.h */, + 3627C85245EE16785FB7291520CF12CB /* EXReactNativeUserNotificationCenterProxy.m */, + E2631DA4A4175C72827549CE7714F49F /* Pod */, + 6341B659817BA663815764092EA59579 /* Requesters */, + DDDEBDF276AF5CA7C4EA14B2D2E7DFA3 /* Support Files */, ); - name = Multiline; - path = Multiline; + name = EXPermissions; + path = "../../node_modules/expo-permissions/ios"; sourceTree = ""; }; - 74431CCEA8CEE9FE0B5CEA3F87E2D0D5 /* Pod */ = { + 72E7B6AEADC4FB0335F9EE87CB06A941 /* React-RCTBlob */ = { isa = PBXGroup; children = ( - CD35BADEEE5BF3015C59A8F3031160E1 /* UMCore.podspec */, + AF0FA27995E607831DEF37A77595C493 /* RCTBlobCollector.h */, + 3EAB8A9995B5C981EEA031B5A2AC5A16 /* RCTBlobCollector.mm */, + E932AA6C7BA7B3A5E8029E28C16213B1 /* RCTBlobManager.mm */, + FC68FE4FB41B24BE666E8AC9F8AA02EA /* RCTFileReaderModule.m */, + 535862DA5DC31CAF772DD3439259D250 /* Pod */, + E20255851FA2995A06E49D42084C036A /* Support Files */, ); - name = Pod; + name = "React-RCTBlob"; + path = "../../node_modules/react-native/Libraries/Blob"; sourceTree = ""; }; - 745DB4B9344E4A04701477EF41891242 /* react-native-camera */ = { + 7696A03C67AF76F7D40C45A2CE45AF7F /* UMModuleRegistry */ = { isa = PBXGroup; children = ( - A01D88C5CF286FE215D646BD52B47CA1 /* Pod */, - E84DA5675EE6E12723CB0789425C5385 /* RCT */, - 9EE2BEC6A3E3BE2B116DF48156241B5B /* RN */, - 79B3A035EE5498AEBF342CD3FE17D133 /* Support Files */, + 3D2FFD58A4EEB33A832B59EC208A9089 /* UMModuleRegistry.h */, + 3A957E101D6154542479437D2375A491 /* UMModuleRegistry.m */, + AC21FDFD3CDAD88BB90D983E7ABCFF77 /* UMModuleRegistryDelegate.h */, ); - name = "react-native-camera"; - path = "../../node_modules/react-native-camera"; + name = UMModuleRegistry; + path = UMCore/UMModuleRegistry; sourceTree = ""; }; - 74979151D6C06BF9C70317FDCF653ED3 /* RCTNetworkHeaders */ = { + 770D761431251966CF301390AE01FAB4 /* VirtualText */ = { isa = PBXGroup; children = ( - 5814D8698695B074DEA9EA8D72F9770C /* RCTDataRequestHandler.h */, - E6061CE54DEF89321D15AD404A9F4808 /* RCTFileRequestHandler.h */, - 800B397DB693CC7307458BF5349CFF95 /* RCTHTTPRequestHandler.h */, - FAC3FCEE9F3F3D11970C2E58BC14D746 /* RCTNetInfo.h */, - 695D055CF2DDE658FC547D68DC319AC5 /* RCTNetworking.h */, - 458A8E0FCCDF9C6BCE4929B8BAAC49E4 /* RCTNetworkTask.h */, + 4AEB93B318A3729FF2A6CD3AB1AA549C /* RCTVirtualTextShadowView.h */, + 06CF59F69276C0F8EF15868EE9E75ADC /* RCTVirtualTextViewManager.h */, ); - name = RCTNetworkHeaders; + name = VirtualText; + path = Libraries/Text/VirtualText; sourceTree = ""; }; - 74ABCE2E9CA5193637C8237EBFD5E0BD /* Pod */ = { + 7788BD897E549AC3908B91DA2D224DB7 /* CoreModulesHeaders */ = { isa = PBXGroup; children = ( +<<<<<<< HEAD + 0976C0A48EACFB544890B3FE2724FBFB /* CoreModulesPlugins.h */, + C5973E06DCA2C46B7DF893931280C2A4 /* RCTExceptionsManager.h */, + 908D19C0D19BF023521DF36EBFC3C3EE /* RCTImageEditingManager.h */, + 6E03C3174AFCAD31170A89A2561224B0 /* RCTImageLoader.h */, + B66BD8CA276906DE829BE569CD1274F3 /* RCTImageStoreManager.h */, + A9CCE015207CB356D2540CF06488F73A /* RCTPlatform.h */, +======= A7D0D56475BE8F593A5E14868FB1983F /* React-RCTText.podspec */, +>>>>>>> master >>>>>>> master ); - name = Pod; + name = CoreModulesHeaders; sourceTree = ""; }; +<<<<<<< HEAD + 778EA9E2B105B983F2EC5DAE5EC23B1D /* Singleline */ = { +======= <<<<<<< HEAD 536086D6DF64651098949647FCD4C7FC /* Drivers */ = { isa = PBXGroup; @@ -8092,70 +8851,82 @@ AAAFF0DAD29E32D4170E4F2CAAFB65C2 /* React-CoreModules.podspec */, ======= 75960294100304FE1020CD868022E455 /* FBReactNativeSpec */ = { +>>>>>>> master isa = PBXGroup; children = ( - 1C39DFAE7B553C4559B43C5D60649D45 /* FBReactNativeSpec.h */, - 378C2F2736E8CDA084E16B24EBF7126D /* FBReactNativeSpec-generated.mm */, - C7CD09DB2E0490F73AACB86361E85A6A /* Pod */, - A86A3B0DECCCD0F7B11827597846081E /* Support Files */, + 4DD38D4F2FB487D4F3CEAFDF75A693F8 /* RCTSinglelineTextInputView.m */, + 3F3E14DF533048AD6EDF6B99D5F2DF42 /* RCTSinglelineTextInputViewManager.m */, + 8516EBBDBE13D1F2F45D2C8A98A47F63 /* RCTUITextField.m */, ); - name = FBReactNativeSpec; - path = "../../node_modules/react-native/Libraries/FBReactNativeSpec"; + name = Singleline; + path = Singleline; sourceTree = ""; }; - 75A9AD59A0A92275727C232B92BC2410 /* UMModuleRegistry */ = { + 77F2748119FED77CC2223D01A76F77F0 /* Pod */ = { isa = PBXGroup; children = ( - 2FFA59A067CBEFD0512376F0B519D859 /* UMModuleRegistry.h */, - 385A5776F92ADDB6D0A79DE6EB5866CA /* UMModuleRegistry.m */, - 7C99EF4D5DC6CB9A0998FA0158D997ED /* UMModuleRegistryDelegate.h */, + 9F9234CFA4F981CF70D590967D5C113D /* UMBarCodeScannerInterface.podspec */, ); - name = UMModuleRegistry; - path = UMCore/UMModuleRegistry; + name = Pod; sourceTree = ""; }; - 77DA40D21760667981433AF61A852EFC /* turbomodule */ = { + 7927CA2ABB44556D9C0986E88B12CCAE /* UMImageLoaderInterface */ = { isa = PBXGroup; children = ( - 9854B4F2A820D5EEDDCEC4D42FA5957F /* core */, + 99BDBD13CBD7B84654906A7AB91AC055 /* UMImageLoaderInterface.h */, + 44FD57FCC64B861A77CEEC3ED318E9F4 /* Pod */, + 46123BBAE927EBA8BBAEF05221B5F67F /* Support Files */, ); - name = turbomodule; + name = UMImageLoaderInterface; + path = "../../node_modules/unimodules-image-loader-interface/ios"; sourceTree = ""; }; - 79AEA2AAF26C4D80DB1A3B935A6680BF /* Support Files */ = { + 7B06A6E49DA9A78E733E4EC4E3084AED /* DevSupport */ = { isa = PBXGroup; children = ( - 8A3E60D8CEF9DD08BAC07DBB85FE6491 /* React-RCTAnimation.xcconfig */, - 88A3162C7148A0A251BABC9E47F65EA2 /* React-RCTAnimation-dummy.m */, - B07E1722D506BDE270C22A0B50991260 /* React-RCTAnimation-prefix.pch */, + 3655A5708697F6288D7AD2DA87F37AD2 /* RCTDevLoadingView.h */, + 56B7FAFBA8A92F9810211AB40DB4C00A /* RCTDevLoadingView.m */, + A2ECB9FC67E295735737B5DA6DDA9D49 /* RCTDevMenu.h */, + EAEC52651426996A8821AB191999813A /* RCTDevMenu.m */, + 001B2FCAAACF1B3314838492381CB0FA /* RCTInspectorDevServerHelper.h */, + 7ECECB2978C5985B2AD61C235E9684B8 /* RCTInspectorDevServerHelper.mm */, + 4625AD264FC19F0EEFFE0AC5585CC11A /* RCTPackagerClient.h */, + A31314635E65F4D915316FC30AE634E9 /* RCTPackagerClient.m */, + 7C40609B62D08ECD3D6BE5592B810B2C /* RCTPackagerConnection.h */, + 007D1CC115DFD9D5AE3B637D7422A780 /* RCTPackagerConnection.mm */, ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTAnimation"; + name = DevSupport; + path = React/DevSupport; sourceTree = ""; }; - 79B3A035EE5498AEBF342CD3FE17D133 /* Support Files */ = { + 7B9A844C789A409B1FCD9C5368C764DA /* Pod */ = { isa = PBXGroup; children = ( - DAD97227D406D48D33933D225A6350EF /* react-native-camera.xcconfig */, - 87203606E3C6A220E61532F3E7341D4B /* react-native-camera-dummy.m */, - C8D45F27ECA06DF4D29EB458917361D5 /* react-native-camera-prefix.pch */, + 486B778D268F95FC930E1403639B80D8 /* LICENSE */, + 99C645BF9C71F7D38DE9951B60B42998 /* README.md */, + C9E6811E62C1FC318C3584006135A136 /* RNVectorIcons.podspec */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-camera"; + name = Pod; sourceTree = ""; }; - 79BD1B4B2C73660DD030CDCCE5201011 /* Support Files */ = { + 7BDDFD1867999AF3E53DB61CD6F7AA4A /* Pod */ = { isa = PBXGroup; children = ( +<<<<<<< HEAD + DA36024C35D1C8EDF6C09C943FA539CB /* React.podspec */, +======= FFABDEBAE71ECF750B419230362FEE8E /* react-native-safe-area-context.xcconfig */, DAE0DB364751BABFC4333A2018736367 /* react-native-safe-area-context-dummy.m */, DE6E404395485BA0710CDDEB3EF751F3 /* react-native-safe-area-context-prefix.pch */, +>>>>>>> master >>>>>>> master ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-safe-area-context"; + name = Pod; sourceTree = ""; }; +<<<<<<< HEAD + 7F0C0C40050FE70A7CFA92D10BD044C6 /* jsi */ = { +======= <<<<<<< HEAD 587E4DE10561DA7B1147A71D4D2E1BB1 /* Pod */ = { isa = PBXGroup; @@ -8188,20 +8959,38 @@ 497D99B7A66944067E7C947B035BEBB8 /* Support Files */, ======= 79C8DCFF888FB976EA50CA06C373DF0F /* Text */ = { +>>>>>>> master isa = PBXGroup; children = ( - 1482F37D0F4EBBE275207AC077784DA9 /* NSTextStorage+FontScaling.h */, - A0EC43392EB35229109BCBC6769D0BA2 /* RCTTextShadowView.h */, - B0877B53FC2A3E1D5C69ED4F13410A56 /* RCTTextView.h */, - 21D16B827DCB58B7F8A3B6F05AC893D1 /* RCTTextViewManager.h */, + C51EA29F2BE6826AE0F0B9982FE2CAD2 /* decorator.h */, + E6331049F4820A8AAF4FC77CBE3865F5 /* instrumentation.h */, + C58940A20D11E28D0DB953B6DA98167F /* jsi.cpp */, + F977DF969BE617C98B499B21C3CE4F06 /* jsi.h */, + 4C0D2B5CD737E3F327B775EED3BFA02F /* jsi-inl.h */, + E621BC4F3DC024D6256BA3A13BAB4889 /* JSIDynamic.cpp */, + BB07D988A0349BB39E57ADB1D76AA3D7 /* JSIDynamic.h */, + 115214FBA4EDFED79A5DB7A29E309F27 /* jsilib.h */, + 28C6E5C4C400012BA6E71C1FD5CDD8E4 /* jsilib-posix.cpp */, + 2F3C723996D79CA7E88673C4730F5767 /* jsilib-windows.cpp */, + ACA84FD7D9EC2C88AF577CC08132B709 /* threadsafe.h */, ); - name = Text; - path = Libraries/Text/Text; + name = jsi; + path = jsi; sourceTree = ""; }; - 7E385F6EC566067616AF3708D349FB8A /* Pod */ = { + 7FE62E77A43D2A506A9B2D158B4A82B7 /* UserNotification */ = { isa = PBXGroup; children = ( +<<<<<<< HEAD + 1EDA6D24E2D61D3DD4B8FF171109BCF0 /* EXUserNotificationPermissionRequester.h */, + 4C626D52A19D42C28012E524FD1CFE3E /* EXUserNotificationPermissionRequester.m */, + ); + name = UserNotification; + path = UserNotification; + sourceTree = ""; + }; + 8191D43C2D6691D64B68E02154144B75 /* UMFileSystemInterface */ = { +======= 09E57E63BCE00D48B904B4E52C271932 /* React-RCTImage.podspec */, >>>>>>> master ); @@ -8275,31 +9064,135 @@ E9448BCE008D963C519050E5C00F41CE /* Support Files */, ======= 813F750B16A193B67BCD149AED237107 /* jscallinvoker */ = { +>>>>>>> master isa = PBXGroup; children = ( - 0AF57DD0534C64131065DB4E3120658D /* BridgeJSCallInvoker.cpp */, - 6394375F7C2379A55EF541C031EBAAFA /* BridgeJSCallInvoker.h */, - 978F4FBE5906442AD10F3FD2B9A50644 /* JSCallInvoker.h */, + 429325098BC429F055DC2D732D8FBF24 /* UMFilePermissionModuleInterface.h */, + E40C97F5A44A999A55F8858D6241A76D /* UMFileSystemInterface.h */, + 52E7BE99FC9A289CAB46323EFA052634 /* Pod */, + CEB5CEB78B6158788F4817F1F45C6D17 /* Support Files */, ); - name = jscallinvoker; + name = UMFileSystemInterface; + path = "../../node_modules/unimodules-file-system-interface/ios"; sourceTree = ""; }; - 814E7FA843637D0AD9618D2364EB8C3E /* RCTActionSheetHeaders */ = { + 82A4E3E7B15BD870096929ED644C80A0 /* ReactCommon */ = { isa = PBXGroup; children = ( - 17CEAC20CCD5B93BD83118110CB0B41D /* RCTActionSheetManager.h */, + 004D0E094AC74E54E91E896078A4D417 /* jscallinvoker */, + A197C85C2B63B4C19B25D1B864735830 /* Support Files */, + B38192163FDB44E17189920923F8ED5D /* turbomodule */, ); - name = RCTActionSheetHeaders; + name = ReactCommon; + path = "../../node_modules/react-native/ReactCommon"; sourceTree = ""; }; - 8157A8420240DCC2F1CAC9FE448A1D22 /* VirtualText */ = { + 8311871DE23C86DC56B17E92FAFEF8FB /* EXConstants */ = { isa = PBXGroup; children = ( - E3D1C8ED1DFA77BC39415280ED19BAD4 /* RCTVirtualTextShadowView.m */, - FE23D2AF7F63ADC6981403D63B652BD9 /* RCTVirtualTextViewManager.m */, + EA2EDC0D3A941227B80F8FA0AEDA8617 /* EXConstants.h */, + A17E2C6C9762C46BB50A58ACE410F9CC /* EXConstants.m */, + 72A873AB3E20C3AEE69E9EE93737A684 /* EXConstantsService.h */, + B519FEA9D00472E76869F6690BD88A9A /* EXConstantsService.m */, + 543419CBCBC184DDDB37C0B88ED5BCC9 /* Pod */, + FC75151131D0E6EA2A33C14CB4153253 /* Support Files */, ); - name = VirtualText; - path = VirtualText; + name = EXConstants; + path = "../../node_modules/expo-constants/ios"; + sourceTree = ""; + }; + 831FF9B03E538435289991A777D7A4D2 /* Text */ = { + isa = PBXGroup; + children = ( + 8A699BDA504A6826A0A34F0DAD7D0846 /* NSTextStorage+FontScaling.m */, + 24822E4AA3851B16F74DA333465018EC /* RCTTextShadowView.m */, + AA5FA871B169560692C6DDBD745A68FF /* RCTTextView.m */, + 8EB285CDFEA6B7164C2AB101BB8A60A2 /* RCTTextViewManager.m */, + ); + name = Text; + path = Text; + sourceTree = ""; + }; + 83479D00E5ECC027047D166A682F798D /* Base */ = { + isa = PBXGroup; + children = ( + 2B9EBF4744171DE5917AF839123F8723 /* RCTAssert.h */, + F8AA33BBA7905A2364D83A41E3D4797C /* RCTAssert.m */, + A76D4EE9AAE9E915EA3078ADD2B38669 /* RCTBridge.h */, + 100C9F1C3FAE5382E23D9488DE7E9643 /* RCTBridge.m */, + DDB6C2690DEFEB73DF27A8B41A971543 /* RCTBridge+Private.h */, + BC70A9FA10710502480A43FD3FC40313 /* RCTBridgeDelegate.h */, + AEBD49A8C680BFD0B16A29B5965C404D /* RCTBridgeMethod.h */, + 7F2289CDDBF4A035D703667C15A58B58 /* RCTBridgeModule.h */, + 9670AD3A3E8E639D0C87DEA3086DC020 /* RCTBundleURLProvider.h */, + 9EC5B4816090F2B979DA04DA86AD4D26 /* RCTBundleURLProvider.m */, + CDAC5186475F46EE8C96A2781553A07F /* RCTComponentEvent.h */, + D0ECECBF1987AFACD2B8A663E18AB463 /* RCTComponentEvent.m */, + D4D24A8F527150930F62778AD56C83A3 /* RCTConvert.h */, + 922F7666A3DE6326A858B81AE3521EE4 /* RCTConvert.m */, + 6823B9E6EBA09774A6288027D70BF1C7 /* RCTCxxConvert.h */, + F919CA8E32E51E959E7E8D9698EC48AD /* RCTCxxConvert.m */, + 1DF6692A48DF0009AB87A5292D3CA3AE /* RCTDefines.h */, + DE81447EB452C9AD6354A9C3D8E90280 /* RCTDisplayLink.h */, + 84809013014C5ED1C177F3F5D9679CC8 /* RCTDisplayLink.m */, + BEBC596E8638F1F2819A6828DBE4366A /* RCTErrorCustomizer.h */, + F3B205F865893ED75D98DA9B3B779E32 /* RCTErrorInfo.h */, + 0C74FBAF2FB940BD5B6DE29AA224F2E6 /* RCTErrorInfo.m */, + FD75197CCC2D655D9C9D65B50075F386 /* RCTEventDispatcher.h */, + 93E7A1D26B31B27E2A8C12AB7041ADA3 /* RCTEventDispatcher.m */, + D9FF789928E6E3D83C537D98694E96E3 /* RCTFrameUpdate.h */, + 390E7DD87AE82F1F5332D0C3189A27C5 /* RCTFrameUpdate.m */, + 859E19A3C1243F72CE0DA5B8E458F4A0 /* RCTImageSource.h */, + 3D86ABA8FF75F08BCE5EF41DEF3E0F3D /* RCTImageSource.m */, + D84ABB41D3D5DDFDDBDDB14C7A267A55 /* RCTInvalidating.h */, + 6E6761026A3E382EA0A30C8E0CE69498 /* RCTJavaScriptExecutor.h */, + 2513938770EB82708FF014EC688613A7 /* RCTJavaScriptLoader.h */, + 68C6036F8774BCD185A6259B33518FBB /* RCTJavaScriptLoader.mm */, + BD4945BB6ADB88C1A20F380D4B42C083 /* RCTJSStackFrame.h */, + 033B1745CA220BFC72F1F3D298B2CBEA /* RCTJSStackFrame.m */, + 5F37232C31097EE2669F71244B3EF2E3 /* RCTKeyCommands.h */, + ECD37467A1FBC28F6F4D3A43C34FA258 /* RCTKeyCommands.m */, + F76357596DE29FD3A090101A88ACD711 /* RCTLog.h */, + 5130ED97FEC66E0B88C082831CDC7784 /* RCTLog.mm */, + BD8B53154FDEBA03EAD83249F3345F33 /* RCTManagedPointer.h */, + C958BC4224C4F38A81C812D018D82ECF /* RCTManagedPointer.mm */, + 7DE57CCDFE8374965969D6D3CC6EFF80 /* RCTModuleData.h */, + 3B592D3E37D3D8D3A1A0DA724D642A93 /* RCTModuleData.mm */, + BAFC2F59B7AA5F73EB0F8C16C1470DB4 /* RCTModuleMethod.h */, + 647F111DBDFA643A4BAFF9BD075ABF04 /* RCTModuleMethod.mm */, + DC2EA305BFDFE4CADC083EA149E1430F /* RCTMultipartDataTask.h */, + 3582715A75B520A99F302474FE8F0F0C /* RCTMultipartDataTask.m */, + 9804CC641A574D1DABD482B5A0A78475 /* RCTMultipartStreamReader.h */, + FA88DEC679531C41480CEAF5C4CA8C6F /* RCTMultipartStreamReader.m */, + A2860E16D1AA81E80508370F04F33A47 /* RCTNullability.h */, + F7ED4110BB7EE7BD6D8B4ACA8689F069 /* RCTParserUtils.h */, + CE75E690C2666B1F1F97D212EEE597C4 /* RCTParserUtils.m */, + 00298528A02CCF3098F9037F043659E6 /* RCTPerformanceLogger.h */, + 22F748F3D3462CAE6EDB5BEF0D9563CA /* RCTPerformanceLogger.m */, + E42087FDBA47C891889708433BC0CC99 /* RCTReloadCommand.h */, + 38FB221FD4BCC65DC85BE9B252FA9F87 /* RCTReloadCommand.m */, + 7032FDA57AE8A03EB4FF88CDDAE31147 /* RCTRootContentView.h */, + B79398FA68A7675940E92E76D2D33BA3 /* RCTRootContentView.m */, + 0C656C2D51EF02AF5617723943BD99D4 /* RCTRootView.h */, + 459FFEA25362F62C4228C91B2BB5F813 /* RCTRootView.m */, + 1ACAD497CB7CE6CD298841F0C52A0334 /* RCTRootViewDelegate.h */, + 7DF95894A7BE3E17065E4EF43DF6A621 /* RCTRootViewInternal.h */, + 13DB4649A6514DE9AD5FCCE6BD1D26BF /* RCTTouchEvent.h */, + 8F9178450DA044E60034D8573DC97F56 /* RCTTouchEvent.m */, + B2315634F42CC21AC5F8FC1D3F273F9E /* RCTTouchHandler.h */, + 869158775941F341280BA71930DB984D /* RCTTouchHandler.m */, + 185510C96CC264AA2D629CFAEC175FEF /* RCTURLRequestDelegate.h */, + F9F5AD35E34A29456AFE430F7F1B93B1 /* RCTURLRequestHandler.h */, + BEF5CE9AAA106E0EE624C3AEC74AA7A7 /* RCTUtils.h */, + 9874A0018CDCA4C293F9B246BBBC1359 /* RCTUtils.m */, + CB3A8B1A476AA63BE9ABEFFBBB1526EB /* RCTVersion.h */, + C264D7281EEE7DA399B203AABF03A69E /* RCTVersion.m */, + 4221F5F8EA28B8D6B12DE2195EE2FE7F /* RCTWeakProxy.h */, + 90726D02EC4A41EC2332A7F76C5C6FE0 /* RCTWeakProxy.m */, + EAC20348B781288361091BED05CE52FF /* Surface */, + ); + name = Base; + path = React/Base; sourceTree = ""; }; 834D6B71F6BD270AE948311DA5771976 /* Frameworks */ = { @@ -8321,9 +9214,23 @@ name = Frameworks; sourceTree = ""; }; - 8630BD00BB35456987E2178BB996E30B /* Pod */ = { + 83A3902C71EF65155C77C0F5365FBBC3 /* RCTTypeSafety */ = { isa = PBXGroup; children = ( +<<<<<<< HEAD + 23D4AD65058D3C2D9384417F25577FD3 /* RCTConvertHelpers.h */, + 7DF857E53656F23E44A941AB6DBF9BA6 /* RCTConvertHelpers.mm */, + 5DBFC4B974BBF0709DFEF1F2B6FA6FC2 /* RCTTypedModuleConstants.h */, + 26C31A65F398319F402241F790D6822C /* RCTTypedModuleConstants.mm */, + 3B50BB313B0420C1F616F416BB6A951E /* Pod */, + 0AD8736CA1351B404540D13FAA1A3057 /* Support Files */, + ); + name = RCTTypeSafety; + path = "../../node_modules/react-native/Libraries/TypeSafety"; + sourceTree = ""; + }; + 83CD9258BA41BC70815023E85FE2D575 /* Support Files */ = { +======= FEA3675BD03A419D239F072CF84E3682 /* UMFontInterface.podspec */, >>>>>>> master ); @@ -8368,35 +9275,101 @@ F78604B2B2D8AE5AE01D6E58EB69AFAF /* ios */, ======= 88B5C76E8AC1FC08ECC58942FF297DFB /* platform */ = { +>>>>>>> master isa = PBXGroup; children = ( - 37A833B897EB3EB99652128370B2ED39 /* ios */, + A83DA77DA2E7E838F9C91EE45DDA18AE /* UMCameraInterface.xcconfig */, ); - name = platform; - path = turbomodule/core/platform; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/UMCameraInterface"; sourceTree = ""; }; - 8C20716655485FCFCBE4E2570CBDD91C /* Support Files */ = { - isa = PBXGroup; - children = ( - B3557E1750E4CA0C50DE71D9F5E70DA5 /* React-Core.xcconfig */, - 69DA112128396E4CFD94895F7B3546BD /* React-Core-dummy.m */, - F052F1B8ADE208EA0D884E17A35E7938 /* React-Core-prefix.pch */, + 83F455C274EB78718257356290A05589 /* Yoga */ = { + isa = PBXGroup; + children = ( + A84A06C4C7EB7C03F6BD3C2B557B1E0B /* Bitfield.h */, + E5CC5E216E6FD16ADEEA68397817F7EF /* CompactValue.h */, + 52324F3618681E549D3AEEAE1ED35034 /* log.cpp */, + FBD08346B1B7A0645ED1847CCFA8C88D /* log.h */, + 3E2579914050E9B98FB220D05867FC4F /* Utils.cpp */, + 145C823290B66AB0AE26ED13AB2CB75B /* Utils.h */, + 1CA1183E0421FC38D49FB2BDF05F9002 /* YGConfig.cpp */, + 21E171956009B8B32887C7BC5E665939 /* YGConfig.h */, + 23FB1B1C3F5AD794F5DC41A86A6A2B8A /* YGEnums.cpp */, + 5216AEF7B61BF0F6BB185B829DFB4ABF /* YGEnums.h */, + 6A5605010B9C7EA9DCB2792E562EC759 /* YGFloatOptional.h */, + 33C0D2F9896F73D13D96606AB6E8952C /* YGLayout.cpp */, + 0A6D35461BE12F16D46B0828E59A9930 /* YGLayout.h */, + 5961778C7A7DAFC78E86ADF763B203EA /* YGMacros.h */, + 0B8BA87D1EC6A4418FC4868144539A2F /* YGNode.cpp */, + 06E29E602A93DF0E54FF5B90983D5A56 /* YGNode.h */, + 51532E2C18688722FEBF1A8FA513624D /* YGNodePrint.cpp */, + 7981B9B91FBE6EC19DDCF8DDA1B290F4 /* YGNodePrint.h */, + C2B2E3734117EA840BF0FD1571EB12E6 /* YGStyle.cpp */, + AFE515FD08BDC9DB7624044BC2D6C1A6 /* YGStyle.h */, + BEF33791C98F694E5064D0860B8FADF8 /* YGValue.cpp */, + 5AA5068473539AE78580B715B26FF0A5 /* YGValue.h */, + DD0CD1B01D58A2020035BCF25DD877A1 /* Yoga.cpp */, + 33F6A3757C2FBB7EE9F8C8BFAFC77E10 /* Yoga.h */, + 6C569B606DC4A3DD8A2825006AA644F5 /* Yoga-internal.h */, + 29F18BC2B1DDC7EF023F6A2FCE8BAC9E /* event */, + 17819AA8BFEC4E3C7B629CCC44C9BE00 /* internal */, + 64B7552DC005DFC54B8633ECA964F36B /* Pod */, + AC2F192941D215C7937C46FEEBF04A23 /* Support Files */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/React-Core"; + name = Yoga; + path = "../../node_modules/react-native/ReactCommon/yoga"; sourceTree = ""; }; - 8E040AB7958986E38891B4714F3D3132 /* Pod */ = { + 842352F22697DE8B7D638288EFEF25D1 /* Pod */ = { isa = PBXGroup; children = ( +<<<<<<< HEAD + F7F45963DA6463B543F55F6089D737C1 /* UMReactNativeAdapter.podspec */, +======= 67126E77D331A0A8651DE04A530EC27C /* EXAppLoaderProvider.podspec */, +>>>>>>> master >>>>>>> master ); name = platform; path = turbomodule/core/platform; sourceTree = ""; }; +<<<<<<< HEAD + 86E68867A6E5B27045A95804738EE5C9 /* Video */ = { + isa = PBXGroup; + children = ( + 857D6A43C3D050FF37C22BC86E96A704 /* RCTVideo.h */, + 56805774687B0A4344863FB290C36401 /* RCTVideo.m */, + 6BC47DCDBD003D879DED230526A1DB95 /* RCTVideoManager.h */, + C8A704030CF4B9DB26BC1AE2FA54ACA8 /* RCTVideoManager.m */, + 2D51CE9D12CADF783BEAC9466743BB97 /* RCTVideoPlayerViewController.h */, + A42C86E64992C86B3C76EFB7D365D1F7 /* RCTVideoPlayerViewController.m */, + 67515C489929A7704712C3AAF53AD8D3 /* RCTVideoPlayerViewControllerDelegate.h */, + A640FC97D51C0EC6EA55BEBCF6A8E33F /* UIView+FindUIViewController.h */, + 739FA1A7A42404A776FC77980E95A600 /* UIView+FindUIViewController.m */, + ); + name = Video; + sourceTree = ""; + }; + 8AF519AF47C27D3183D1732B5F66DA4B /* UMCameraInterface */ = { + isa = PBXGroup; + children = ( + 0A6C0F782DD12ACDC6C772A18B9F3C5F /* UMCameraInterface.h */, + AEF18C0E9582FEB47D868506E68772F3 /* Pod */, + 83CD9258BA41BC70815023E85FE2D575 /* Support Files */, + ); + name = UMCameraInterface; + path = "../../node_modules/unimodules-camera-interface/ios"; + sourceTree = ""; + }; + 8D2E0D7844549F982AB08482B52EE11F /* Pod */ = { + isa = PBXGroup; + children = ( + 533944B29600A5030447BE0FEDEA08ED /* LICENSE */, + 4112E9F338E7AAE116969DC4C003C800 /* react-native-camera.podspec */, + 0DDB7A8618190A733B555DAE07632A0F /* README.md */, +======= <<<<<<< HEAD 658F5A5EE6824F7EB04515FD82F64DC6 /* UMModuleRegistry */ = { isa = PBXGroup; @@ -8488,37 +9461,37 @@ isa = PBXGroup; children = ( 77F3ECAC00F1B342A3AFC13483A5FB71 /* RCTRequired.xcconfig */, +>>>>>>> master ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/RCTRequired"; + name = Pod; sourceTree = ""; }; - 90F777788E5DF25C11A72C898FA21217 /* Support Files */ = { + 8F7C2711306390BF4C7F066BFCE42CFA /* UIUtils */ = { isa = PBXGroup; children = ( - F33D462E81760BD44CD5990E82BEBBB5 /* React-RCTImage.xcconfig */, - 4D22EA356BCBAC7895844273149AC7D2 /* React-RCTImage-dummy.m */, - FE5E58AE8175E9714B5A219046EC1067 /* React-RCTImage-prefix.pch */, + 687055E0BF2B360B2EED58EAA8AB4B3D /* RCTUIUtils.h */, + B2ED732CD676556305D652460FD2A07A /* RCTUIUtils.m */, ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTImage"; + name = UIUtils; + path = React/UIUtils; sourceTree = ""; }; - 92861A21098E7BDA38FDA3BDA65086A5 /* Support Files */ = { + 9135310E7A4DF3E764632AE9B764A714 /* RCTLinkingHeaders */ = { isa = PBXGroup; children = ( - 5CB7BBD47382666097F5280F14EAE322 /* Folly.xcconfig */, - A4FEA76D779F17972F10DC9E920A5CC4 /* Folly-dummy.m */, - 72357EA9BCB3FF24DBA10960E02EDED4 /* Folly-prefix.pch */, + 64519E38A6C92671B46DF5FD0AF5BD54 /* RCTLinkingManager.h */, ); - name = "Support Files"; - path = "../Target Support Files/Folly"; + name = RCTLinkingHeaders; sourceTree = ""; }; - 92B9DF64F8E9C73440ACB061895F5D8F /* Pod */ = { + 9267978ABF94F59410AD089AEC6C1570 /* Pod */ = { isa = PBXGroup; children = ( +<<<<<<< HEAD + 961BFD851D86C8BF3B049B85B6D12DD6 /* React-RCTImage.podspec */, +======= A22622EF3326994B4ED2D05E406A8EDE /* UMBarCodeScannerInterface.podspec */, +>>>>>>> master >>>>>>> master ); name = "Support Files"; @@ -8555,45 +9528,65 @@ path = "../../node_modules/react-native/ReactCommon"; sourceTree = ""; }; +<<<<<<< HEAD + 92824312F3653EE57FB2DD1B31A7A478 /* Nodes */ = { +======= 6C7A6FB5468655C777A9CC62BB63EC92 /* Pod */ = { isa = PBXGroup; children = ( A3D3A2B6B0F771754EAB8A0779D819D9 /* UMFontInterface.podspec */, ======= 92D721B8B065915C2186E464003D9F4E /* Support Files */ = { +>>>>>>> master isa = PBXGroup; children = ( - E911888582E5D7BF3A07686B5F193C9B /* RNConvertPhAsset.xcconfig */, - 190AE97954575319E827C60D7664DFCB /* RNConvertPhAsset-dummy.m */, - 0D5350BA92B246B22919C98EF8C9FAD9 /* RNConvertPhAsset-prefix.pch */, + 834BE59D96D7B6E2CE7F3CFFE0D56643 /* RCTAdditionAnimatedNode.h */, + 3E52AC1E943D2853992E50BC2AAEF42F /* RCTAnimatedNode.h */, + CF98D7F9B14E28B7C9865B896A7BA9AB /* RCTDiffClampAnimatedNode.h */, + 3FCA3F86F4BB2A57CCE3934C74790A5C /* RCTDivisionAnimatedNode.h */, + 2BF71FCE2C47FC505ABB71E0E5747D54 /* RCTInterpolationAnimatedNode.h */, + DF46C56660BE67A13562A8CF18678961 /* RCTModuloAnimatedNode.h */, + 6F73506351EAC0C2FCEC307A5E5EB756 /* RCTMultiplicationAnimatedNode.h */, + 5B3000B2D747DF16C9791F6C5B25EDA9 /* RCTPropsAnimatedNode.h */, + 4883BB8710E3633C6CF302F39B828E7E /* RCTStyleAnimatedNode.h */, + 0309487709F664D12A436D2CDF5C7EEE /* RCTSubtractionAnimatedNode.h */, + 2C6D3125CA86D820BD9EB74EB3972799 /* RCTTrackingAnimatedNode.h */, + 25967F861375411FC8A89266362E9266 /* RCTTransformAnimatedNode.h */, + 30E48F53448A97401A4CB46B784A0E0F /* RCTValueAnimatedNode.h */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNConvertPhAsset"; + name = Nodes; + path = Libraries/NativeAnimation/Nodes; sourceTree = ""; }; - 932D7A9F68F2DA0DD6399AA61D307172 /* Support Files */ = { + 92861A21098E7BDA38FDA3BDA65086A5 /* Support Files */ = { isa = PBXGroup; children = ( - 9D7A5B8520C72549D4B692F6D4E984B3 /* React-RCTBlob.xcconfig */, - EF5828C6CD0C8B4554C601C5587F6028 /* React-RCTBlob-dummy.m */, - 7927E7AF9F480517CC37FE70D95F2EC8 /* React-RCTBlob-prefix.pch */, + 5CB7BBD47382666097F5280F14EAE322 /* Folly.xcconfig */, + A4FEA76D779F17972F10DC9E920A5CC4 /* Folly-dummy.m */, + 72357EA9BCB3FF24DBA10960E02EDED4 /* Folly-prefix.pch */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTBlob"; + path = "../Target Support Files/Folly"; sourceTree = ""; }; - 93C14BF436B8AF57BD0F617D008E8A88 /* Support Files */ = { + 92B9F38C0DCFA46A285AFDAA263A0620 /* Pod */ = { isa = PBXGroup; children = ( +<<<<<<< HEAD + 31AF60FA20FC938D62E6EA7C77294F41 /* React-jsinspector.podspec */, +======= 02C87CEB373E9EBB06855EB0D82F05BF /* RNReanimated.xcconfig */, AA240960F9D895D9E7EC797345D9BC76 /* RNReanimated-dummy.m */, 2A48200A992D333C1DE1CD281437DD09 /* RNReanimated-prefix.pch */, +>>>>>>> master >>>>>>> master ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNReanimated"; + name = Pod; sourceTree = ""; }; +<<<<<<< HEAD + 92FB405A387815CB583F4183E1A6DFE1 /* FBReactNativeSpec */ = { +======= <<<<<<< HEAD 6C8100FDABA3596A8F28943F942D8D12 /* React-RCTLinking */ = { isa = PBXGroup; @@ -8633,14 +9626,37 @@ BB173BFECF2079C6675EE97F61C24B7B /* UMCameraInterface.release.xcconfig */, ======= 944E660A68E4D060E79F7E57D813ADAC /* Support Files */ = { +>>>>>>> master isa = PBXGroup; children = ( - 346E6CB7AC5BED48E5033FF5BA18E9FB /* RCTTypeSafety.xcconfig */, - D09498F25CB1644917ED375FA3F9EF7B /* RCTTypeSafety-dummy.m */, - 3DE842BA46A2C0D1A69233D1EDC1901C /* RCTTypeSafety-prefix.pch */, + A52114C229DFA0C7355D82CF13BDC171 /* FBReactNativeSpec.h */, + C6FD41DBD5DBDC213AEFBBF88D7E7D95 /* FBReactNativeSpec-generated.mm */, + EAFB152A02832CAEA680735ECDD1FB34 /* Pod */, + D1A3049E6B739A8EC0C617263AAD1EE1 /* Support Files */, ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/RCTTypeSafety"; + name = FBReactNativeSpec; + path = "../../node_modules/react-native/Libraries/FBReactNativeSpec"; + sourceTree = ""; + }; + 93635348BCA6D10B012B40874ED3F720 /* TextInput */ = { + isa = PBXGroup; + children = ( + 57BF4C3322F0E2C42D8C11F0172E8333 /* RCTBackedTextInputDelegate.h */, + A7BF460147BE7E60F26B9F23CEFF91EC /* RCTBackedTextInputDelegateAdapter.h */, + 3E2497CFF5B44EF3CED40A491A35717A /* RCTBackedTextInputViewProtocol.h */, + 00C4EF272C2B9F0368BDA8E476935BA6 /* RCTBaseTextInputShadowView.h */, + 3D50841F93BB099B6FE2866E7C00C25D /* RCTBaseTextInputView.h */, + 8D78EB8750DC2045728DB7B116D2D4DA /* RCTBaseTextInputViewManager.h */, + 9E9B9BA9C061EB75DA804400702FB5E9 /* RCTInputAccessoryShadowView.h */, + 662DF4B52126CFCA910AA60BE28A2324 /* RCTInputAccessoryView.h */, + 1B5EB1EE0ED9E0A03E950460F367B5F9 /* RCTInputAccessoryViewContent.h */, + 418CFEAD9181107E08B9D773FEB1D04E /* RCTInputAccessoryViewManager.h */, + B3922BC1CCF6E018444C351A3ECFF2F2 /* RCTTextSelection.h */, + 036DDE51BC1D6A5CF387FE97A43CFB74 /* Multiline */, + DF29A54B09DE56DD47BE2753CE8D3F88 /* Singleline */, + ); + name = TextInput; + path = Libraries/Text/TextInput; sourceTree = ""; }; 95AE5BAF48A3BD7AAF9532400E69399D /* glog */ = { @@ -8664,9 +9680,23 @@ path = glog; sourceTree = ""; }; - 9641FAED7AFCD161686570AB3B580AD5 /* Interfaces */ = { + 963755E8DD41E3188ABC191F2650EE08 /* Support Files */ = { + isa = PBXGroup; + children = ( +<<<<<<< HEAD + 0EB5FEB66D0EA5C919112294CE012916 /* React.xcconfig */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/React"; + sourceTree = ""; + }; + 9A37453835C21FBC41776D77C343F006 /* react-native-video */ = { isa = PBXGroup; children = ( + E546D2B795F5B24345D475C0402613DA /* Pod */, + FF53E655C33B4C775BA34B8D32246739 /* Support Files */, + 86E68867A6E5B27045A95804738EE5C9 /* Video */, +======= D8C6897979C3F85E22047F69EA676F4F /* EXAppLoaderInterface.h */, ABBDAAF2A5D55B4750E480B170BE921A /* EXAppRecordInterface.h */, >>>>>>> master @@ -8881,236 +9911,151 @@ isa = PBXGroup; children = ( A2EBF94987417193B5097C4275E332B8 /* FBLazyVector.podspec */, +>>>>>>> master ); - name = Pod; + name = "react-native-video"; + path = "../../node_modules/react-native-video"; sourceTree = ""; }; +<<<<<<< HEAD + 9B0113D9DB98C892C79BA6B7EB80CE0D /* Support Files */ = { +======= 8D354DB059BEB3E5BAC63F704F8F17B1 /* Pod */ = { isa = PBXGroup; children = ( 8102347B0A74EDEDB49FE0756EDE2AE5 /* UMFileSystemInterface.podspec */, ======= 975A133E23E89131D937CF9B87C75F1E /* Support Files */ = { +>>>>>>> master isa = PBXGroup; children = ( - 1A32273B1E0B1D7C3B8CB4EEBE2C0B7D /* React-jsiexecutor.xcconfig */, - 329A76F82BA337D174D3D3802005B0F4 /* React-jsiexecutor-dummy.m */, - FC1906309D863A1AAC2E3D553F1FD345 /* React-jsiexecutor-prefix.pch */, + 51EB1DCE5F87EE152D199661C525C275 /* RNVectorIcons.xcconfig */, + C48E26751BD2AB7AA01DBD40EAE75B52 /* RNVectorIcons-dummy.m */, + BCEEB6CC08F4F47E8C855E7E94CCEAA7 /* RNVectorIcons-prefix.pch */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-jsiexecutor"; - sourceTree = ""; - }; - 9854B4F2A820D5EEDDCEC4D42FA5957F /* core */ = { - isa = PBXGroup; - children = ( - 7FB8089FE6EC752844280235A12124BB /* LongLivedObject.cpp */, - C8D4563D1FAED6229AA2F11B48F67D59 /* LongLivedObject.h */, - 22D1752257CE12FD0D5E65D520ED73C7 /* TurboCxxModule.cpp */, - E3E4753F1B4103DD1C5B3A43585A6FB3 /* TurboCxxModule.h */, - 892E3B801505716D9776C7571E9039A1 /* TurboModule.cpp */, - 0886B0A584D2426494EC2B77B279311A /* TurboModule.h */, - 84F344DBB3CAD0AD021BC3F70A38991B /* TurboModuleBinding.cpp */, - 220576A80DC635CC4CF6A3C1561526FA /* TurboModuleBinding.h */, - 0E47F03A478B4FD772E713E71D08D4E2 /* TurboModuleUtils.cpp */, - E9C851F429595210A359136CDE6FCAF5 /* TurboModuleUtils.h */, - 88B5C76E8AC1FC08ECC58942FF297DFB /* platform */, - ); - name = core; + path = "../../ios/Pods/Target Support Files/RNVectorIcons"; sourceTree = ""; }; - 9A19DBB3CB05AD7E9D555DD383F4A297 /* RNCAsyncStorage */ = { + 9CBE1C68C6EDF9F158AD7764932669F1 /* boost-for-react-native */ = { isa = PBXGroup; children = ( - 98433722ED81079DB8D9E18BCDC1E0A0 /* RNCAsyncStorage.h */, - 6A1DFB3FA7027F6A8EBEED6CA09D3FC2 /* RNCAsyncStorage.m */, - F30F46E794B249FD88FCAE8CE32727E4 /* RNCAsyncStorageDelegate.h */, - 383EFE6736803A82D9F83272CDF2D520 /* Pod */, - D08148750C01EF7F6D3CA07806D33269 /* Support Files */, + 2BB2564C13052C3DF8395C4FDAB93E9E /* Support Files */, ); - name = RNCAsyncStorage; - path = "../../node_modules/@react-native-community/async-storage"; + name = "boost-for-react-native"; + path = "boost-for-react-native"; sourceTree = ""; }; - 9A7ACDBC58DC72C6E65CA516E85DAB2D /* React-CoreModules */ = { + 9F38787EE821CF04EA3E59A3EF5115A8 /* platform */ = { isa = PBXGroup; children = ( - EF9E0ACD61EF4DEABC4A1539EA59274D /* CoreModulesPlugins.mm */, - 8DEFEF8F9410EC5482A9753C0DBD7C6C /* RCTExceptionsManager.mm */, - 3E462645B293C991F3AFC41480962B3B /* RCTImageEditingManager.m */, - 6C689029C05CBE1A4A49FA79E2B1F876 /* RCTImageLoader.mm */, - 32572940B7237605108D19BABDBAA92C /* RCTImageStoreManager.m */, - 0FD2743F6865CDCDE1AFBB731C4FE20B /* RCTPlatform.mm */, - 34604E37A8F331597DE98D703628BA62 /* Pod */, - F82880B1B2BAE926E6826541FBA2C66A /* Support Files */, + D77F58E055CA3FBEBF1815051F8C653E /* ios */, ); - name = "React-CoreModules"; - path = "../../node_modules/react-native/React/CoreModules"; + name = platform; + path = turbomodule/core/platform; sourceTree = ""; }; - 9B5049E9B95058E38845CBBF15A4AF56 /* React-RCTActionSheet */ = { + A0790BDDA3CC8918DD8E0C7B9366D891 /* Support Files */ = { isa = PBXGroup; children = ( - 56D230802F5E8DC720B20D5115D3014F /* RCTActionSheetManager.m */, - 37F91F830C5DAB600FDABD6E2F2D7585 /* Pod */, - A1F21D5F487F76EEBE2495DAC7498F41 /* Support Files */, + 5A6CB37443C9CE25E62D5139851C6C46 /* React-jsinspector.xcconfig */, + E552C4DDCC56FB6ADD1E9DEDCBC41C9A /* React-jsinspector-dummy.m */, + 5B4AF2DDBBC72FA8D267DEE3A552A403 /* React-jsinspector-prefix.pch */, ); - name = "React-RCTActionSheet"; - path = "../../node_modules/react-native/Libraries/ActionSheetIOS"; + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-jsinspector"; sourceTree = ""; }; - 9CBE1C68C6EDF9F158AD7764932669F1 /* boost-for-react-native */ = { + A0ABDFD1227CAB0191284D034AD3DB46 /* UMModuleRegistryAdapter */ = { isa = PBXGroup; children = ( - 2BB2564C13052C3DF8395C4FDAB93E9E /* Support Files */, + 6EE56DDBFB4CD859867D2709D361AF1B /* UMModuleRegistryAdapter.h */, + 01B288C9FE0E9E01AE42E165AF4CE7A3 /* UMModuleRegistryAdapter.m */, + FDFB98F7935DB064FA17A8FCD5CA526A /* UMViewManagerAdapterClassesRegistry.h */, + 3AFF82016765511ECC8267629165A92F /* UMViewManagerAdapterClassesRegistry.m */, ); - name = "boost-for-react-native"; - path = "boost-for-react-native"; + name = UMModuleRegistryAdapter; + path = UMReactNativeAdapter/UMModuleRegistryAdapter; sourceTree = ""; }; - 9DC74D3634F3E59142EB8A4FA490B7EA /* Resources */ = { + A197C85C2B63B4C19B25D1B864735830 /* Support Files */ = { isa = PBXGroup; children = ( - E53D90F80835D7BF36E13420C214F5F8 /* AntDesign.ttf */, - 5E36C82ED48B6010FA9553AA8074F289 /* Entypo.ttf */, - 9D5B270D157A44EABB7F127CD15FAF52 /* EvilIcons.ttf */, - EC2FAC3583F25007515CA352CA6926A9 /* Feather.ttf */, - D095C7FBEA0716D051E485F30EABAF05 /* FontAwesome.ttf */, - EEDE59DB5E837334B53E1F69E51ABB53 /* FontAwesome5_Brands.ttf */, - E01409DE46E979445F903BC79372B7F1 /* FontAwesome5_Regular.ttf */, - 2AF6B28BAFCE26EDF6377D3155D19866 /* FontAwesome5_Solid.ttf */, - B0AC09A08C3E0F1D884BA4C2C78EAF0B /* Fontisto.ttf */, - 1ADEF493FA1D06222BDEE49078C26A39 /* Foundation.ttf */, - BE83C0792637B8B8DB489B929531CE8F /* Ionicons.ttf */, - D3C2F82CE613402A67171D781487AD3D /* MaterialCommunityIcons.ttf */, - FA47C7C7FFA9F9213523AF3AF439F3F1 /* MaterialIcons.ttf */, - 565FEDAD9608E9A4B487F341C916DA75 /* Octicons.ttf */, - 0DBB111E897E4FD2A336DDF3E2B43EE6 /* SimpleLineIcons.ttf */, - CBC690F1DB7EAD205336199F1396131C /* Zocial.ttf */, - ); - name = Resources; - sourceTree = ""; - }; - 9EE2BEC6A3E3BE2B116DF48156241B5B /* RN */ = { - isa = PBXGroup; - children = ( - BFAD886CFAE0E9E9F83A8CCEC4C8FC48 /* BarcodeDetectorManagerMlkit.h */, - 0A01F8104C11C1235C0B1045001F2D0D /* BarcodeDetectorManagerMlkit.m */, - 866D4FDACCD65D99CD3E2C54047F1AF0 /* FaceDetectorManagerMlkit.h */, - 6EFF6AA31AD0C200DD7670C80A0F7100 /* FaceDetectorManagerMlkit.m */, - EA05C5080E86FABEFBB9D60C11FE0152 /* RNCamera.h */, - C16C3CC1916DDC683966A0D5EA5C2636 /* RNCamera.m */, - 308F48010BC6D3E74AF5596BDF109B25 /* RNCameraManager.h */, - D9876019DE00C65D6005009D52ADF9A4 /* RNCameraManager.m */, - B302632E0A609AF3A7C36D4508EF2737 /* RNCameraUtils.h */, - 2A57A78ADB948E7D6B7BDA4E91FDC02E /* RNCameraUtils.m */, - F8C3CC2F123ACD79C72348D7F6932655 /* RNFaceDetectorModuleMLKit.h */, - 58A94ABA7CAFC3EEDF01A1B0E8469126 /* RNFaceDetectorModuleMLKit.m */, - 15564939E08FD811906387A1CAC2A74C /* RNFileSystem.h */, - 0E909D598FE185404D4BAAA254294D0B /* RNFileSystem.m */, - A0F661B6218B48E760FC74E9A9EB7975 /* RNImageUtils.h */, - 3DA642626E58D97735B71A6E1C20CA46 /* RNImageUtils.m */, - DE53423479474D0129E837491B56EE56 /* RNSensorOrientationChecker.h */, - BF3D2935C5B3E3096A7686944A81CCCA /* RNSensorOrientationChecker.m */, - F6B415CD3D3D1F279141AEBD17BC3674 /* TextDetectorManager.h */, - 8F21273D48FA5BA310E9FF26B62D35CE /* TextDetectorManager.m */, - ); - name = RN; - sourceTree = ""; - }; - 9F0B9950104F775C19273C31A2FBD43D /* UMCore */ = { - isa = PBXGroup; - children = ( - ED45391CBB659F519C4FF970C5587E81 /* UMAppDelegateWrapper.h */, - 9219A9EAFE7F8CA73B649E5714BB3A9B /* UMAppDelegateWrapper.m */, - 8A9AEDA41B0C780392898DA5ACDDDB8F /* UMDefines.h */, - 0160572B2FEA8F16889B3F54C43DFAE7 /* UMErrorCodes.h */, - 833A1F30F1602B4686727D01E6BA8A0D /* UMErrorCodes.m */, - 96E0AA996B6A57048F0B8B94A192D1E7 /* UMExportedModule.h */, - 5B4C22897017D0D00F4836C2CD2D8A32 /* UMExportedModule.m */, - C9B3464C0B7E20D3977681CCF1AF5774 /* UMSingletonModule.h */, - AEB3A2D91D0935A8347BE0B1E2BE3DAC /* UMSingletonModule.m */, - 380D0F6F7C64D8D8A5D5869EAD5F4FC4 /* UMUtilities.h */, - A6A6BD2D3FCC84D3D5D6EB98791D798A /* UMUtilities.m */, - 32CFF65879726B1899A1CBF0C3B81CD0 /* UMViewManager.h */, - F7D961288869DF1D1842539C692B7BC1 /* UMViewManager.m */, - 74431CCEA8CEE9FE0B5CEA3F87E2D0D5 /* Pod */, - D90A0FA17AB08FE35742EC7D7306B97F /* Protocols */, - 4A55BDC50731E26E6F6195DEE631BA8F /* Services */, - 25F359D53FAB4A263AF8E8A356FB4278 /* Support Files */, - 75A9AD59A0A92275727C232B92BC2410 /* UMModuleRegistry */, - AC1A5B8583DD910FC44FAAE538AE729D /* UMModuleRegistryProvider */, + B54306C9D682A038DCC1A066679E78DC /* ReactCommon.xcconfig */, + 86FDF0CB4DB115CB3EC44B79845C6BAC /* ReactCommon-dummy.m */, + F736712BACA7B818523C111E7C64E8A3 /* ReactCommon-prefix.pch */, ); - name = UMCore; - path = "../../node_modules/@unimodules/core/ios"; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/ReactCommon"; sourceTree = ""; }; - 9FED4692A45FF3BCC820E88CDFAD3A58 /* RNVectorIcons */ = { + A333FA341D9CC237E24C00293F0CEC51 /* Pod */ = { isa = PBXGroup; children = ( - AA35B0C12E917CD830D16D76E84276A0 /* RNVectorIconsManager.h */, - 284C7E99721531552E6745077D14A20B /* RNVectorIconsManager.m */, - 0976D3339A4F77F4F8AAAC916AA5A972 /* Pod */, - 9DC74D3634F3E59142EB8A4FA490B7EA /* Resources */, - 417E228E9E9CB3626D44084B8CB265F3 /* Support Files */, + 64914B619541B1B02B0467672D0F31CB /* React-RCTVibration.podspec */, ); - name = RNVectorIcons; - path = "../../node_modules/react-native-vector-icons"; + name = Pod; sourceTree = ""; }; - A01D88C5CF286FE215D646BD52B47CA1 /* Pod */ = { + A3B4218D7D0728A9BA824A10C99D8D4E /* RNReanimated */ = { isa = PBXGroup; children = ( - 72952713740A1031D51E210AC0A8EFD0 /* LICENSE */, - 480D54252AF0D9D67154FFB9DB9FFBD0 /* react-native-camera.podspec */, - 9BA5B98857B5222782BB1CCE9844E692 /* README.md */, + 6A315255C4E512F2B49708898B46E03D /* REAModule.h */, + 526A3BD35B28AF2B50310FE70C4D7174 /* REAModule.m */, + 60846BA9074878BD3A1CE611CFC2A904 /* REANodesManager.h */, + 95B242A9F97824608EDB42A9C49EB813 /* REANodesManager.m */, + 37C1A0E5D3DC45AE48462FB96B0ABBC5 /* Nodes */, + CDBA27E707F76533849FE83115178C1B /* Pod */, + B1E5BFFAC6832D2320508F9DAF825AF7 /* Support Files */, + F2FA4D5BEE7A8DA6511E5BA0F298DE26 /* Transitioning */, ); - name = Pod; + name = RNReanimated; + path = "../../node_modules/react-native-reanimated"; sourceTree = ""; }; - A191B1FA129D6C27FEC1F31EE034A821 /* RCTVibrationHeaders */ = { + A423EE2B70B0F7EC6C3EDA695197A424 /* React-RCTActionSheet */ = { isa = PBXGroup; children = ( - 5ADEB25EBC36B5FC7D863FD6B6F93BBB /* RCTVibration.h */, + 730AF6C42D77524C35855EC5A736953A /* RCTActionSheetManager.m */, + A7C1A76941F121B695C3A5D9D461CCA1 /* Pod */, + E79EC77AF86228DC3A9211F09508D2D0 /* Support Files */, ); - name = RCTVibrationHeaders; + name = "React-RCTActionSheet"; + path = "../../node_modules/react-native/Libraries/ActionSheetIOS"; sourceTree = ""; }; - A1F21D5F487F76EEBE2495DAC7498F41 /* Support Files */ = { + A648B206C530CC3FDB40EAA70B8ECF63 /* Pod */ = { isa = PBXGroup; children = ( - 6160151481DC530820F8784CA307B735 /* React-RCTActionSheet.xcconfig */, - C445A8662226BFF95EC8E9C5DB6CC079 /* React-RCTActionSheet-dummy.m */, - 00248347B97B6B4B6EB5E8B514EF846A /* React-RCTActionSheet-prefix.pch */, + 42E29207C5C3CBDF3BE6FE02659838B1 /* UMFaceDetectorInterface.podspec */, ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTActionSheet"; + name = Pod; sourceTree = ""; }; - A24C696C00CA309C41798C6BBDFE4319 /* Support Files */ = { + A6B90515C43CE9DC301EE2C624072D25 /* Pod */ = { isa = PBXGroup; children = ( - E646420275D81469ADBA372F7A8A5177 /* React-RCTNetwork.xcconfig */, - 0B713A2A0E9377333850709EFE96A555 /* React-RCTNetwork-dummy.m */, - 9ABA934F0D9F11D76ED5C290A19B7CC1 /* React-RCTNetwork-prefix.pch */, + 98DD0EF3FB5C0F3A0B598C137808432C /* React-Core.podspec */, ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTNetwork"; + name = Pod; sourceTree = ""; }; - A2682DA44C00686AD3653CAECB33C12E /* Pod */ = { + A7104F979A3C5C3E7FB3D0902241EEB0 /* Pod */ = { isa = PBXGroup; children = ( - E5AA7D765C1D7938564B2C0FC4CE84CE /* LICENSE */, - 8382F1399CD3282AF0540C9699856042 /* README.md */, - 84DD675711033BA04DC9415DD6334CFD /* RNReanimated.podspec */, + 0CC583AA92A2AD0BEE1A14ABA44FB5D0 /* LICENSE */, + E61205B1000E79C57FF7E8ACE104A471 /* README.md */, + D57629312106D90A291950E77246A079 /* RNConvertPhAsset.podspec */, ); name = Pod; sourceTree = ""; }; - A4C8F5678077EABBC0DF00904C66027E /* Pod */ = { + A7C1A76941F121B695C3A5D9D461CCA1 /* Pod */ = { isa = PBXGroup; children = ( +<<<<<<< HEAD + 20DD2EB70B59296D8FEEBAF29E7D04AC /* React-RCTActionSheet.podspec */, +======= B214FF4432545598B88EF755A5179DA8 /* UMPermissionsInterface.podspec */, >>>>>>> master ); @@ -9136,99 +10081,122 @@ 3D29DD265B1155D94EC03CE5EDFBDD42 /* react-native-orientation.debug.xcconfig */, C0E86048753ECF1C695000D6C5FB7C36 /* react-native-orientation.release.xcconfig */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-orientation"; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/react-native-orientation"; + sourceTree = ""; + }; + 924FB686759A4DDD5335EB09AC0E0CA3 /* react-native-video */ = { + isa = PBXGroup; + children = ( + 1D0F8D4FC6835ABC85B3B002E4CEC954 /* Pod */, + 98F71E8739C5A2AC43DF9A513E9AAB60 /* Support Files */, + 833255C9EC56C063F656CA3E5ABD3A16 /* Video */, + ); + name = "react-native-video"; + path = "../../node_modules/react-native-video"; + sourceTree = ""; + }; + 965AAF6E792A4D666BD9FDE86E18C08D /* Pod */ = { + isa = PBXGroup; + children = ( + 90713CD66EA3FE80906C0B1A000D2E5C /* React-RCTLinking.podspec */, +>>>>>>> master + ); + name = Pod; + sourceTree = ""; + }; +<<<<<<< HEAD + A9C2BEA554FAF207A16F825C537FB955 /* Pod */ = { +======= + 96EC80391E4760BDAE39B73449B77631 /* Support Files */ = { + isa = PBXGroup; + children = ( + 639F05E8793401D4ED9AB2869E684D5E /* UMBarCodeScannerInterface.debug.xcconfig */, + 546EA6E66F1D78AF6580FD8F0F4FE9C0 /* UMBarCodeScannerInterface.release.xcconfig */, +======= + A52E4BBCAEFA4596E73E85394274672E /* Nodes */ = { +>>>>>>> master + isa = PBXGroup; + children = ( + 9DF7E7175EDC89CE632878838868F4FE /* UMTaskManagerInterface.podspec */, + ); + name = Pod; sourceTree = ""; }; - 924FB686759A4DDD5335EB09AC0E0CA3 /* react-native-video */ = { + AA563C65B6BA1F215C550DC8317013DD /* Support Files */ = { isa = PBXGroup; children = ( - 1D0F8D4FC6835ABC85B3B002E4CEC954 /* Pod */, - 98F71E8739C5A2AC43DF9A513E9AAB60 /* Support Files */, - 833255C9EC56C063F656CA3E5ABD3A16 /* Video */, + A67E3871817DC07459AD8BCC126A6178 /* DoubleConversion.xcconfig */, + CE9B6D8AD870BADA404AC6E21F2D1C68 /* DoubleConversion-dummy.m */, + 4101D8465AE06A96D96674BCA2B20DD8 /* DoubleConversion-prefix.pch */, ); - name = "react-native-video"; - path = "../../node_modules/react-native-video"; + name = "Support Files"; + path = "../Target Support Files/DoubleConversion"; sourceTree = ""; }; - 965AAF6E792A4D666BD9FDE86E18C08D /* Pod */ = { + AA66D8EA5A2236AFB956E58057B9A893 /* Support Files */ = { isa = PBXGroup; children = ( - 90713CD66EA3FE80906C0B1A000D2E5C /* React-RCTLinking.podspec */, + 3DBCE1FDF690695FEF1D60A2967C97A6 /* UMCore.xcconfig */, + CADA8FE388888B70F5E2E0FBF3E19D74 /* UMCore-dummy.m */, + 764F6F6595A1834102105DD73F7A22DC /* UMCore-prefix.pch */, ); - name = Pod; + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/UMCore"; sourceTree = ""; }; - 96EC80391E4760BDAE39B73449B77631 /* Support Files */ = { - isa = PBXGroup; - children = ( - 639F05E8793401D4ED9AB2869E684D5E /* UMBarCodeScannerInterface.debug.xcconfig */, - 546EA6E66F1D78AF6580FD8F0F4FE9C0 /* UMBarCodeScannerInterface.release.xcconfig */, -======= - A52E4BBCAEFA4596E73E85394274672E /* Nodes */ = { + AAC84F4562117800261AFED58EB78E22 /* Pod */ = { isa = PBXGroup; children = ( - 2DD37BA7298D9D81210B0C6245E5F2FE /* RCTAdditionAnimatedNode.h */, - 91C5B3E3D55AC5E4A83519530AB71FAF /* RCTAnimatedNode.h */, - C01E871F0A701A51A86D186F02A7FFE8 /* RCTDiffClampAnimatedNode.h */, - BEBD1817719495010A54D5DF04D9B4D0 /* RCTDivisionAnimatedNode.h */, - 7BB78C5C844AB15B88955897E94FAF78 /* RCTInterpolationAnimatedNode.h */, - E8A4A2A712D9009E965904CE9B29FD9E /* RCTModuloAnimatedNode.h */, - D0D015F84A879F38F92D6B086D0716AD /* RCTMultiplicationAnimatedNode.h */, - AE549E6ED0E9983CD0D62B5868769621 /* RCTPropsAnimatedNode.h */, - 4E8E517988831C1E77B714152D31D664 /* RCTStyleAnimatedNode.h */, - 928EE9986CDF6976B4A5CB3DD999FA08 /* RCTSubtractionAnimatedNode.h */, - 4B877B67BF39C396492756DE959885EF /* RCTTrackingAnimatedNode.h */, - F3BF029C5452D1778B4054ACF96E41C9 /* RCTTransformAnimatedNode.h */, - C82261DE4B194D1977601A5BA2FAE640 /* RCTValueAnimatedNode.h */, + 236A00FF033EAEA4AF28CFBB07C03D7C /* React-RCTLinking.podspec */, ); - name = Nodes; - path = Libraries/NativeAnimation/Nodes; + name = Pod; sourceTree = ""; }; - A69AAC1A4E74D8A351DDA6EB403F0859 /* react-native-safe-area-context */ = { + ABB3006CCEED73A1E4AE8E28EBC6B66F /* Targets Support Files */ = { isa = PBXGroup; children = ( - 843E7E466AA9271CF17157DDDF57A6CB /* RNCSafeAreaView.h */, - FC86C9E51BB496CEE3F3A4474F7F7A96 /* RNCSafeAreaView.m */, - C78F56B5069932849E7FD1FCAD3667DA /* RNCSafeAreaViewManager.h */, - E07A84DA96218348B49118ECDCEF2904 /* RNCSafeAreaViewManager.m */, - 0F8715E93A226351211694232211F1A3 /* Pod */, - 79BD1B4B2C73660DD030CDCCE5201011 /* Support Files */, +<<<<<<< HEAD + 1D38F91B7ADAAE530CF509356D2BD35F /* Pods-Gladeo_App */, ); - name = "react-native-safe-area-context"; - path = "../../node_modules/react-native-safe-area-context"; + name = "Targets Support Files"; sourceTree = ""; }; - A86A3B0DECCCD0F7B11827597846081E /* Support Files */ = { + AC2F192941D215C7937C46FEEBF04A23 /* Support Files */ = { isa = PBXGroup; children = ( - 8E9CDDF7E007CF282E5EFF07B3BA4DB1 /* FBReactNativeSpec.xcconfig */, - 551CDFB185D5EE5BF0C438DF69884D1F /* FBReactNativeSpec-dummy.m */, - B39A68DA30BEA6706508ED0BC07600A5 /* FBReactNativeSpec-prefix.pch */, + 50D75608382758F1A5DC78BAF88BBB83 /* Yoga.xcconfig */, + ED288469A73A4C3B51263B123E2A1F59 /* Yoga-dummy.m */, + 6BD9EA80CCC8FED1BFF759C488622EFD /* Yoga-prefix.pch */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/FBReactNativeSpec"; + path = "../../../../ios/Pods/Target Support Files/Yoga"; sourceTree = ""; }; - A89D977B7EFF9000ED421806C5B36FFF /* EXPermissions */ = { + AE252061CC2C242A05B946C45D91EDD0 /* BaseText */ = { isa = PBXGroup; children = ( - D27B16463EB7A0D5615333C4A9543BFF /* EXPermissions.h */, - CC52CF826446D33AE765DBAE6B9B8FE6 /* EXPermissions.m */, - 604F96CA21DA985827609DE6F4577FCD /* EXReactNativeUserNotificationCenterProxy.h */, - F64008AF993BEDDAC34E41757EEFDCD8 /* EXReactNativeUserNotificationCenterProxy.m */, - 63A76FC713B86C8256D79FB3D8FAD36E /* Pod */, - DD1A41D1F2806CF8DE9C9123002DF7CA /* Requesters */, - B89814B47183001ADD0CF8FDA731E7EB /* Support Files */, + 6083BC4F305C34E71A53504B73A15530 /* RCTBaseTextShadowView.h */, + 9CE079DFDA6F909F40D10CDFFBFFE6B3 /* RCTBaseTextViewManager.h */, ); - name = EXPermissions; - path = "../../node_modules/expo-permissions/ios"; + name = BaseText; + path = Libraries/Text/BaseText; sourceTree = ""; }; - A999F879C2A19C591E453ACBBFE71EBB /* Pod */ = { + AE3E7AB3B3FB3FD0730DD7B3C6686F1C /* RCTWebSocket */ = { isa = PBXGroup; children = ( + 62F8E28C1BBFFA4B67CF7E437E7D165C /* RCTReconnectingWebSocket.h */, + CE90EDDF5487C91004BC34F20671330B /* RCTReconnectingWebSocket.m */, + 835ED31D2BF918E4758940C6B7B9B3DF /* RCTSRWebSocket.h */, + 9EF044147073AA8C6CA7FDE770DC2585 /* RCTSRWebSocket.m */, + 11B1C6D7ACE3DBBDCD0AFCF7EB9F9DEF /* RCTWebSocketExecutor.h */, + 2DFBF02FF4D8338947FB5CE4A536585F /* RCTWebSocketExecutor.m */, + 4280107D1C7859D3C158AD3CE4AC1437 /* RCTWebSocketModule.h */, + D574AF6572A929E692D2B2D68D951157 /* RCTWebSocketModule.m */, + ); + name = RCTWebSocket; +======= 66BBE58B4B6C3B6BF78790AC4FFCE0E4 /* UMFaceDetectorInterface.podspec */, >>>>>>> master ); @@ -9404,93 +10372,113 @@ 1D38F91B7ADAAE530CF509356D2BD35F /* Pods-Gladeo_App */, ); name = "Targets Support Files"; +>>>>>>> master sourceTree = ""; }; - AC1A5B8583DD910FC44FAAE538AE729D /* UMModuleRegistryProvider */ = { + AE439CFEA3E125D60F0B265B774D32A1 /* Support Files */ = { isa = PBXGroup; children = ( - 4B71048A5C7E32DE5C2A7CAB1A55EE85 /* UMModuleRegistryProvider.h */, - DAB1C4AD9FE34E451678EFE050AD05B0 /* UMModuleRegistryProvider.m */, + F2567BF146B787AF05858EE1A1C7B0FE /* RNCAsyncStorage.xcconfig */, + 124705ABB177239BAC7EA2C6B2BAF7F0 /* RNCAsyncStorage-dummy.m */, + 24C177ADF47D5B9AA6D7BE9D248A8AB6 /* RNCAsyncStorage-prefix.pch */, ); - name = UMModuleRegistryProvider; - path = UMCore/UMModuleRegistryProvider; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/RNCAsyncStorage"; sourceTree = ""; }; - ACC08A8CA96CC7EA6FEA6A2D2F83073B /* Support Files */ = { + AEF18C0E9582FEB47D868506E68772F3 /* Pod */ = { isa = PBXGroup; children = ( - A614C204B0CF0E7E4E9A05F62C402D84 /* RNGestureHandler.xcconfig */, - B16B67996C2B2F57E7297F99D3552851 /* RNGestureHandler-dummy.m */, - 2CFC25A227E0EE0D8A93BABD80C141A4 /* RNGestureHandler-prefix.pch */, + A0DE6DE0A0DDE9A4ACCC4D090FEE6423 /* UMCameraInterface.podspec */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNGestureHandler"; + name = Pod; sourceTree = ""; }; - AD09067294B7B9B08803452FF2DC5103 /* RCTSettingsHeaders */ = { + AF16FE27A669EE2FE61A60A96A218009 /* Support Files */ = { isa = PBXGroup; children = ( - 311ECD9C3F2700BAD4C3AE771C402EEF /* RCTSettingsManager.h */, + 60117552B5A6B355E76610B5F720F876 /* react-native-cameraroll.xcconfig */, + 07AD5E690A405656CFF17E3BBA1D64DA /* react-native-cameraroll-dummy.m */, + 34C3FFF0BC7F31313DB61A711842CB0C /* react-native-cameraroll-prefix.pch */, ); - name = RCTSettingsHeaders; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/react-native-cameraroll"; sourceTree = ""; }; - ADDD7CE8A02ACD51D01896B760ED7EC2 /* Default */ = { + B01BB2E5AF25B058EE935A33B88C10EB /* Support Files */ = { isa = PBXGroup; children = ( - EEEE04AA9AEF63C4249372DFF01DFBA1 /* Base */, - D2B2E07AE2B0DE1D020147E8FAC941BF /* CxxBridge */, - E454C7226D8E7E05C156F2E6BA507AC6 /* CxxModule */, - FBED72020677764CB754B39D5B838B76 /* CxxUtils */, - B8B684E21902890B3C5121E41D4A8945 /* Modules */, - 6B7E56AB85942C070A65176430A381AA /* Profiler */, - 498E75BD147C85EB8146BDEF05C1C0A0 /* UIUtils */, - 591A605321AA1323E6778EBC0E4FFA6D /* Views */, + 1F8EDAF873C0C53EAE22EDE1147917E3 /* UMPermissionsInterface.xcconfig */, + 93A2009511D617A6A19816B75D766D19 /* UMPermissionsInterface-dummy.m */, + DA84D76B32FA11CFA4298F73AE63C97F /* UMPermissionsInterface-prefix.pch */, ); - name = Default; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/UMPermissionsInterface"; sourceTree = ""; }; - AFF49AE215F3E1E14B7F0B638EAC72AC /* Pod */ = { + B1CAC97971220315C6E15311695BC584 /* Handlers */ = { isa = PBXGroup; children = ( - 65D4E0F8409463BD8042B69A5014C94A /* UMConstantsInterface.podspec */, + 099E8DE55B3A377D44FB36C7C265A221 /* RNFlingHandler.h */, + B1C9728C371E27A29ACBE79CFB110E51 /* RNFlingHandler.m */, + 7F2A5D2F87C892EEB2F3B4BB52892683 /* RNForceTouchHandler.h */, + A9E459B1F2C3D1FB528DC2BFDEE15371 /* RNForceTouchHandler.m */, + 4EDC4231F1503CDF71867940E7A04CDB /* RNLongPressHandler.h */, + E27F1ECA9B92D57E0A67D03218EF4B67 /* RNLongPressHandler.m */, + 0803985A9E39A78B526693CBD1A6B90B /* RNNativeViewHandler.h */, + 21ECFB7E8546332ED113CC6753D7C0E8 /* RNNativeViewHandler.m */, + 647E440E1C472A931005B9A2923C8ADA /* RNPanHandler.h */, + B45725A360E4D3C289C92AE8F3762E1A /* RNPanHandler.m */, + 5E37AD8BAF4166F4B7B1CAA49FB9502F /* RNPinchHandler.h */, + 222C5D587EB5199E1624E37DB95C1CBC /* RNPinchHandler.m */, + E97D7C7E7B3DA2A67C08F204C6323ACE /* RNRotationHandler.h */, + 04AAE2BB1F1F0F2C79341771AA61406D /* RNRotationHandler.m */, + 0A97F230E660BEF62DB9BF866A45EFEE /* RNTapHandler.h */, + 0CDD2E0C1512A339D8D61F48E07F695D /* RNTapHandler.m */, ); - name = Pod; + name = Handlers; + path = ios/Handlers; sourceTree = ""; }; - B13DCF0ECBC9BEFD8C87DD0838D49AD0 /* RawText */ = { + B1E5BFFAC6832D2320508F9DAF825AF7 /* Support Files */ = { isa = PBXGroup; children = ( - F7A16594BDBC43BEA097E10F33B2F14E /* RCTRawTextShadowView.m */, - A20DC3CF392D7C830A7E7E1334289C78 /* RCTRawTextViewManager.m */, + DF64BF36CB5729AE428B6C8CC863A56B /* RNReanimated.xcconfig */, + 84A85F0120AED5002847234ED187242A /* RNReanimated-dummy.m */, + CABA6CC2435CB0D738FC11EEC2D96F86 /* RNReanimated-prefix.pch */, ); - name = RawText; - path = RawText; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/RNReanimated"; sourceTree = ""; }; - B2721D04AC84D88E789C68ADDE618068 /* Support Files */ = { + B38192163FDB44E17189920923F8ED5D /* turbomodule */ = { isa = PBXGroup; children = ( - 21493CAC93246D53919041D773A51113 /* ReactCommon.xcconfig */, - E5697ECA514229CFE76DDBEE2E50C5F5 /* ReactCommon-dummy.m */, - E2E9ADBE6AB0C754488BB60486224391 /* ReactCommon-prefix.pch */, + 095720DDF6C17A9CC15EAD1ED45900AC /* core */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/ReactCommon"; + name = turbomodule; sourceTree = ""; }; - B3DA8ED10F1E267F9049A515BA2A6B5D /* internal */ = { + B4AB8A8EC9ABD51AEB0566C9DAB4CABA /* VirtualText */ = { isa = PBXGroup; children = ( +<<<<<<< HEAD + 833FF5D437B6802258D9BCC48AEC3CC1 /* RCTVirtualTextShadowView.m */, + 9620FD21A6738612E74DFF32F1454CF1 /* RCTVirtualTextViewManager.m */, +======= 40223E763EC99E2B4C9CD893F62EB313 /* experiments.cpp */, 86AACD2BCDB97CB0988524510F5CBFD0 /* experiments.h */, A48F913A3015CF47254B6AAE9B0FBCA5 /* experiments-inl.h */, +>>>>>>> master >>>>>>> master ); - name = internal; - path = yoga/internal; + name = VirtualText; + path = VirtualText; sourceTree = ""; }; +<<<<<<< HEAD + B4C45F769A0623AC5683450FAB02DB4F /* ScrollView */ = { +======= <<<<<<< HEAD A50B6EB5B4EC9E3F536E1ACA16F92434 /* Nodes */ = { isa = PBXGroup; @@ -9543,29 +10531,41 @@ 3C78C6DABA91EAC86698A0D3FC778ED4 /* UMFileSystemInterface.release.xcconfig */, ======= B4531B4094B49554C2B334B9E19D9DD7 /* Support Files */ = { +>>>>>>> master isa = PBXGroup; children = ( - AD06A1BE05009B425E8A40A317B17F8A /* React.xcconfig */, + 7223C56D07FF20B511BCBAD45428584C /* RCTScrollableProtocol.h */, + 8DF29E368BF77FC9AD288DF274FDB305 /* RCTScrollContentShadowView.h */, + 027EA9E05C3A69E6E63B9C7149C11C2C /* RCTScrollContentShadowView.m */, + 8AA26B89B90521B1C98D6A84013A9C85 /* RCTScrollContentView.h */, + 803D7D8A465E7CD5A16DE0ACCC97FBF2 /* RCTScrollContentView.m */, + 11FB3135C7C316191D97C3698E2F7399 /* RCTScrollContentViewManager.h */, + 817E25E07D4FEE3267236BA226B05BA4 /* RCTScrollContentViewManager.m */, + F536F46D6D4D418D3A5D9136FFBB2A77 /* RCTScrollView.h */, + C3C1E6036291F0D1D6EF9632FAD688FE /* RCTScrollView.m */, + 49CAAB87787B048436F8627A77ECA3C7 /* RCTScrollViewManager.h */, + EA1591B3EDD9E30ABCAC6F75E3E53A05 /* RCTScrollViewManager.m */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/React"; + name = ScrollView; + path = ScrollView; sourceTree = ""; }; - B50EC4858549DF19EAFA010C1708BBFC /* Support Files */ = { + B57874A858C54D067472054D80AA5A8C /* Pod */ = { isa = PBXGroup; children = ( - 7255927FE6CD35228EF7C3622DAD4DBC /* React-RCTVibration.xcconfig */, - 251730F1F9CFAAABAA1824B7A2D55DC4 /* React-RCTVibration-dummy.m */, - F87AB7CFD2D9F1E4F31F64A8CB999C8A /* React-RCTVibration-prefix.pch */, + 9D0E2EAC7996BD1775A7634CA5B35E3D /* UMSensorsInterface.podspec */, ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTVibration"; + name = Pod; sourceTree = ""; }; - B5C2F8F6B23901457C63DB4C13E53F77 /* Support Files */ = { + B5AF40972DA2063D60A43C338B01D389 /* Support Files */ = { isa = PBXGroup; children = ( +<<<<<<< HEAD + 2F8DB64D9CCCF2F99AF0E36F8D414DBE /* UMFontInterface.xcconfig */, +======= EF905AE211121D6BEF9C5AEB6F1A0497 /* UMFontInterface.xcconfig */, +>>>>>>> master >>>>>>> master ); name = "Support Files"; @@ -9658,29 +10658,44 @@ path = ios/Nodes; sourceTree = ""; }; +<<<<<<< HEAD + B685CF0FC77B277849948E698447F64F /* BaseText */ = { +======= AEB6E7EB43E26A262B9073D276864E07 /* Pod */ = { isa = PBXGroup; children = ( BB3E480A88B1EB7754EB9B56E840A3F0 /* UMFaceDetectorInterface.podspec */, ======= B6D8721C2382F741D4717E554E3BC09E /* RCTRequired */ = { +>>>>>>> master isa = PBXGroup; children = ( - CDC2799B64F71BE6E0A83836817BFA92 /* RCTRequired.h */, - CD600EB0E5AA9FDD5E5739BCD872289F /* Pod */, - 905C80C3A15D71E849FFA9CB62011261 /* Support Files */, + 6A98A91B5B09E6B622CC04643E8748F5 /* RCTBaseTextShadowView.m */, + E1884924F14DFAD13C954F03C32F4CF2 /* RCTBaseTextViewManager.m */, ); - name = RCTRequired; - path = "../../node_modules/react-native/Libraries/RCTRequired"; + name = BaseText; + path = BaseText; sourceTree = ""; }; - B89814B47183001ADD0CF8FDA731E7EB /* Support Files */ = { + B6F558B2638AE63C747891FF84463EAB /* SafeAreaView */ = { isa = PBXGroup; children = ( - 553A3D5A2C86EFD43C029951C5776AC1 /* EXPermissions.xcconfig */, - 9A369FD0516FFCFD1EA72C8DBF250426 /* EXPermissions-dummy.m */, - B7ED9E728E1879BEDAAA5B48CD7D038C /* EXPermissions-prefix.pch */, + 4B8BFF4C841C9775D25AC81C42A41459 /* RCTSafeAreaShadowView.h */, + 7A9D0C725A26D563A130E87931EA7BCA /* RCTSafeAreaShadowView.m */, + 26252FBE589074A427D3745B55447735 /* RCTSafeAreaView.h */, + 200B564D83D709BD15C330C61C24FBE0 /* RCTSafeAreaView.m */, + 728A642A96752CA241F12ACBECA2C39A /* RCTSafeAreaViewLocalData.h */, + 607BAF9703EF8D93C21728BE7384BD7C /* RCTSafeAreaViewLocalData.m */, + 7ED0A2D05733885E8FB5663A799E3DF3 /* RCTSafeAreaViewManager.h */, + 755C3D6AEF5175F50DF002B88556C2E1 /* RCTSafeAreaViewManager.m */, ); +<<<<<<< HEAD + name = SafeAreaView; + path = SafeAreaView; + sourceTree = ""; + }; + B74C7355643AA2F92C25AC62A1F2527B /* UMSensorsInterface */ = { +======= name = "Support Files"; path = "../../../ios/Pods/Target Support Files/EXPermissions"; sourceTree = ""; @@ -9778,58 +10793,61 @@ C85FF9650250650277D9BFB8E8D8262B /* UMReactNativeAdapter.release.xcconfig */, ======= B94346C8185ECDEA4CFA725C4A002243 /* Support Files */ = { +>>>>>>> master isa = PBXGroup; children = ( - F0CB6D01AFA8EAC1A69B57F4AB0D62AC /* EXConstants.xcconfig */, - 242FEF393A192BE57EEA12103EC3984B /* EXConstants-dummy.m */, - 53F615DCA0C3DC04F83A0C95CF121BAF /* EXConstants-prefix.pch */, + 111341F7CDD1EF069906B16774B13BA0 /* UMAccelerometerInterface.h */, + 1C6EF90CBC6375E3CBAA88A653C6BEEB /* UMBarometerInterface.h */, + BBE93666BF63C56906619CAAF5D3A83C /* UMDeviceMotionInterface.h */, + C018934F675726B435D15A584F8A5DDA /* UMGyroscopeInterface.h */, + F473CAF496D4B8568E0F35128F5DBFB6 /* UMMagnetometerInterface.h */, + DDDAD065ACC6E459A65E8AA2BB065C79 /* UMMagnetometerUncalibratedInterface.h */, + B57874A858C54D067472054D80AA5A8C /* Pod */, + D1CE1F18B18143488CF786CA99604C43 /* Support Files */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXConstants"; + name = UMSensorsInterface; + path = "../../node_modules/unimodules-sensors-interface/ios"; sourceTree = ""; }; - BA6D923A49A86A614ECC77360BB817C4 /* TextInput */ = { + B76A1B881DE1C3EB5A4CE3973B80F201 /* React-jsiexecutor */ = { isa = PBXGroup; children = ( - 31ED1D95307ADA19B6E67C3A4C0C150D /* RCTBackedTextInputDelegate.h */, - 520DFEB7D216CE8AA4C99175BEEC5517 /* RCTBackedTextInputDelegateAdapter.h */, - 7D1B54C3F151C31AC512B821555EDF4A /* RCTBackedTextInputViewProtocol.h */, - 88BC3D01E8231AA2265D77B412BA0B63 /* RCTBaseTextInputShadowView.h */, - 2295102D9E63957D79A6C4DD5B4F165E /* RCTBaseTextInputView.h */, - 3458FEF3282F71C742DBFED0F4ACE5F2 /* RCTBaseTextInputViewManager.h */, - 0967124F7CD6AE861F151F1885587DC7 /* RCTInputAccessoryShadowView.h */, - 575BD7545EDFE6534CEF81B12F1B9663 /* RCTInputAccessoryView.h */, - 78B53CFA5EA1A3CA27ECB0DEE4F1E7DD /* RCTInputAccessoryViewContent.h */, - FEFBBDC48A0FFE98A7C1C43A44DB40DD /* RCTInputAccessoryViewManager.h */, - 14E0ED3B8F5CCF12BD6C9B0E05D58099 /* RCTTextSelection.h */, - CD0F5FD8ADCBD0668DA4EDDFC084D6EB /* Multiline */, - 3664659CC0A81A303615473E9367F2A5 /* Singleline */, + 91A8DB37447C944B0600FF90E40FD844 /* JSIExecutor.cpp */, + 09536F0364F464C94CF70CEA54CDB1E1 /* JSIExecutor.h */, + AB7699772AC1B4F8C41E96643BF3B5A5 /* JSINativeModules.cpp */, + F48D23DE414F808E84FE271AEEDF1BC9 /* JSINativeModules.h */, + 33A56A613DD8D3F22D8E078415D10028 /* Pod */, + 51B2AD9D58B148BA7A724B057CCB35F9 /* Support Files */, ); - name = TextInput; - path = Libraries/Text/TextInput; + name = "React-jsiexecutor"; + path = "../../node_modules/react-native/ReactCommon/jsiexecutor"; sourceTree = ""; }; - BA7F368313ADD886AD4B65AF0AFB23FF /* RCTImageHeaders */ = { + B830E1BDEF7B802C73AF112D924A7DC4 /* EXAppLoaderProvider */ = { isa = PBXGroup; children = ( - 6CD5F3AC0CED9941890DA81047C001D8 /* RCTAnimatedImage.h */, - CE0E526A2C6D72A91B50E54AF1215749 /* RCTGIFImageDecoder.h */, - 0775FEB3DCA3B39EEC7DE72A7AFD6F41 /* RCTImageBlurUtils.h */, - 688926F8B1DF7C41C66C28AB2F8AB947 /* RCTImageCache.h */, - EFF102B825C6DED566FED68AD6FE7754 /* RCTImageDataDecoder.h */, - 295734123C3FA69B44FE968AE53B481C /* RCTImageLoaderProtocol.h */, - 760A40825B5931FF183202C3A5E66C7F /* RCTImageShadowView.h */, - 4CDD436380B67DE886A42E36FC09C0CB /* RCTImageURLLoader.h */, - 2ED3AF2EDD33ED334632267202BF010F /* RCTImageUtils.h */, - 9C143D92341987BB03C4588D22636843 /* RCTImageView.h */, - 4A2FECB4CED542D75695BF5EACB83980 /* RCTImageViewManager.h */, - 3C75FA2414A7E3FEFC5095A5A9ADC8FF /* RCTLocalAssetImageLoader.h */, - 89A5397EAE84935DF903D65372F6CCF6 /* RCTResizeMode.h */, - 6BEF6E00C2E1B9B96D0EEC6F7F189BE4 /* RCTUIImageViewAnimated.h */, + DBF935A9C746B90D47934560E88C6B15 /* EXAppLoaderProvider.h */, + E23304D48D63146C4F14E7E958EECDFA /* EXAppLoaderProvider.m */, + 208EFA4432194E790B6D1EC759967C22 /* Interfaces */, + 0630BA677DBCFD8757386F4B74264BB4 /* Pod */, + 1111556EF7D67A7F0EC6AACA4AB46DF5 /* Support Files */, ); - name = RCTImageHeaders; + name = EXAppLoaderProvider; + path = "../../node_modules/expo-app-loader-provider/ios"; sourceTree = ""; }; +<<<<<<< HEAD + B874EF8B710B0909F6790B46467D4278 /* UMTaskManagerInterface */ = { + isa = PBXGroup; + children = ( + 1FEE709FA36B0E6383F7A3FF3735E118 /* UMTaskConsumerInterface.h */, + D65FFB9C0BDFB4B6AA782CFB82281BC9 /* UMTaskInterface.h */, + 9F1A5FCAC27E7E72A12AFE754A607D49 /* UMTaskLaunchReason.h */, + 8BF7E7C2B06CB774CB471182C0F63C0A /* UMTaskManagerInterface.h */, + 0F0237F5C94374C8E94B80480E661156 /* UMTaskServiceInterface.h */, + A9C2BEA554FAF207A16F825C537FB955 /* Pod */, + 52070CFA7CA6B4BC5829EC0983C0F3B0 /* Support Files */, +======= BC8B7139A34448517109CEC89DEE1B9A /* Yoga */ = { isa = PBXGroup; children = ( @@ -9862,12 +10880,27 @@ B3DA8ED10F1E267F9049A515BA2A6B5D /* internal */, D2400C3F0DA7BA83AB4FC9BEA3D42A1D /* Pod */, 1C1B30C5E3B920845D781749695198C7 /* Support Files */, +>>>>>>> master >>>>>>> master ); - name = Yoga; - path = "../../node_modules/react-native/ReactCommon/yoga"; + name = UMTaskManagerInterface; + path = "../../node_modules/unimodules-task-manager-interface/ios"; sourceTree = ""; }; +<<<<<<< HEAD + B8B50CFD34259D49DDD2A71A4D68FDBF /* React-RCTText */ = { + isa = PBXGroup; + children = ( + 63242B7128911462580F1F55AA05D56A /* RCTConvert+Text.m */, + 15AC984FAE1A8689EAB660B1CE59A2F8 /* RCTTextAttributes.m */, + B685CF0FC77B277849948E698447F64F /* BaseText */, + BB7A837FB91EA19BFFDA7AA5905782FA /* Pod */, + 71CFE754365BD13D6F44A7446B4705E8 /* RawText */, + 140381A55ADD3F87A034FA16836E688D /* Support Files */, + 831FF9B03E538435289991A777D7A4D2 /* Text */, + 3B07FB1DA4644CE4B0812D0BAFA827B5 /* TextInput */, + B4AB8A8EC9ABD51AEB0566C9DAB4CABA /* VirtualText */, +======= <<<<<<< HEAD B6D5A540924C0EA42932D42C28AA00AC /* UIUtils */ = { isa = PBXGroup; @@ -9903,12 +10936,16 @@ isa = PBXGroup; children = ( 8C9F0B182BF7FA1B80DF112F60130C4E /* FBLazyVector.xcconfig */, +>>>>>>> master >>>>>>> master ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/FBLazyVector"; + name = "React-RCTText"; + path = "../../node_modules/react-native/Libraries/Text"; sourceTree = ""; }; +<<<<<<< HEAD + BA32CB36A0236A46C32A176E8E068EED /* Pod */ = { +======= <<<<<<< HEAD B9951F605DC8B4F2750AD9E1CFBCA26C /* Pod */ = { isa = PBXGroup; @@ -9981,27 +11018,30 @@ AF1853D98B48E6BA9F4776C084D20B05 /* UMTaskManagerInterface.podspec */, ======= BF6DC6C50827F802501760463C6F99D3 /* UMNativeModulesProxy */ = { +>>>>>>> master isa = PBXGroup; children = ( - 4FA78F58D3015EADFA8E270108949172 /* UMNativeModulesProxy.h */, - C5189A30922755C9BBF86CEA5EA31FF5 /* UMNativeModulesProxy.m */, + 10AC722CE70564440EC0841FFC4F37E1 /* React-RCTSettings.podspec */, ); - name = UMNativeModulesProxy; - path = UMReactNativeAdapter/UMNativeModulesProxy; + name = Pod; sourceTree = ""; }; - C081C95F200F58CE5A9BE2D140AE61CE /* Support Files */ = { + BB07C770CBA967CA021065C2F1D7CF12 /* Services */ = { isa = PBXGroup; children = ( - 622DD301913CCB53E9F25714202B9121 /* UMCameraInterface.xcconfig */, + 2038C81182265457FB4A62C5DDAF2CDE /* UMLogManager.h */, + A7EED9FC6A1B5CC8EE2099A4FD6820AE /* UMLogManager.m */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMCameraInterface"; + name = Services; + path = UMCore/Services; sourceTree = ""; }; - C2976B7A387CB9E09E1261BB5D2E8CCE /* Pod */ = { + BB7A837FB91EA19BFFDA7AA5905782FA /* Pod */ = { isa = PBXGroup; children = ( +<<<<<<< HEAD + 11CFF4564C4B7F989CC6B9E4E56C19D3 /* React-RCTText.podspec */, +======= 196BAE997023B8FC0992B5FF2E57A568 /* README.md */, 3B1D9B1499191404B49538EC60EF9267 /* RNCMaskedView.podspec */, >>>>>>> master @@ -10110,10 +11150,14 @@ isa = PBXGroup; children = ( F0CB7E06B83F00D2B3ACDD86EEC05238 /* UMBarCodeScannerInterface.podspec */, +>>>>>>> master ); name = Pod; sourceTree = ""; }; +<<<<<<< HEAD + BBDF177870251182ED1113CB17FDD0A5 /* RemoteNotification */ = { +======= C97527496C367FC24CB4ACAC930B6923 /* Surface */ = { isa = PBXGroup; children = ( @@ -10144,39 +11188,48 @@ CCBF5C5F65491046815CFC347F16339D /* README.md */, ======= C438C8D9FDEF39E5152FDCC94E30C9C4 /* FBLazyVector */ = { +>>>>>>> master isa = PBXGroup; children = ( - D20AC0735E38A417AB6E08B660B16749 /* FBLazyIterator.h */, - 853D068B55DCEE088299CE1CD9B019EB /* FBLazyVector.h */, - EC3AA9F0B9DA2AF0ACC514481C1842C2 /* Pod */, - BF3A23EDB9235F2249F585A037947611 /* Support Files */, + 9D63B378A9680A234B81C2861554C8AE /* EXRemoteNotificationPermissionRequester.h */, + D48879D0B8FDCD0C4A17DF6DCB96D6F8 /* EXRemoteNotificationPermissionRequester.m */, ); - name = FBLazyVector; - path = "../../node_modules/react-native/Libraries/FBLazyVector"; + name = RemoteNotification; + path = RemoteNotification; sourceTree = ""; }; - C4A1C2DB39B1E4CCA1BBFDCDAC30FA60 /* Pod */ = { + BD3A1DD273E11A206FB70CD756B3DDEF /* UMConstantsInterface */ = { isa = PBXGroup; children = ( - 25D1F24F9AB409DE43BE625D1EC571B7 /* LICENSE */, - 4CF78638BA52DDDD4EA2FD45C088D98E /* README.md */, - 3E2EE004D9E74ADA315184C97A526ED5 /* RNScreens.podspec */, + 7ACEDDC5A851F73E80FADD786BA9E7D3 /* UMConstantsInterface.h */, + E752F1E045CBBF1502B9C0B2640B2502 /* Pod */, + 216E5DF464E2AD1BAC25F0A5B580398B /* Support Files */, ); - name = Pod; + name = UMConstantsInterface; + path = "../../node_modules/unimodules-constants-interface/ios"; sourceTree = ""; }; - C5D5992FD7572FB8B69A2D58A904CD20 /* Support Files */ = { + BDF75CEDECF401F2606206CE2860D807 /* Support Files */ = { isa = PBXGroup; children = ( +<<<<<<< HEAD + 02969131455FC9944F6B06DDBC5C2D3C /* EXFileSystem.xcconfig */, + B428375BEA1E50DA29ECA38A9CB83665 /* EXFileSystem-dummy.m */, + 262ACA4622FEF40859DBCA07EC0E5788 /* EXFileSystem-prefix.pch */, +======= 3E98846AD71FAED5E3808EC9B6CD89C8 /* UMReactNativeAdapter.xcconfig */, 0FC5C5704C9DCD1329F667A65D19B583 /* UMReactNativeAdapter-dummy.m */, DD30E69ACFF1F4CD268FE348E53CA90A /* UMReactNativeAdapter-prefix.pch */, +>>>>>>> master >>>>>>> master ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/UMReactNativeAdapter"; + path = "../../../ios/Pods/Target Support Files/EXFileSystem"; sourceTree = ""; }; +<<<<<<< HEAD + BF75DCB6B02C536E6469D79D25C43F63 /* RCT */ = { +======= <<<<<<< HEAD CB03544489D133A54352CCDBACF5383A /* React-RCTImage */ = { isa = PBXGroup; @@ -10206,28 +11259,125 @@ 61A83286557AB2ADA988AAAF5B8D82D5 /* RNCMaskedView.podspec */, ======= C7CD09DB2E0490F73AACB86361E85A6A /* Pod */ = { +>>>>>>> master isa = PBXGroup; children = ( - D223107D8608DA39D7749E6C708D212B /* FBReactNativeSpec.podspec */, + BE8C3334D320B525C489D29C24ADC12F /* CameraFocusSquare.h */, + 550B5EE61F73825430ECF964A49C05A6 /* CameraFocusSquare.m */, + EC22D5A5D51740C1D727AB192024DD9F /* NSMutableDictionary+ImageMetadata.m */, + 28977C6B8FD49EFE32857DFB1A08F739 /* RCTCamera.h */, + BE7BAACE531DAB1F221383ADF0E3031E /* RCTCamera.m */, + 37DF00E23E1BB6F18AC5F64EB7BF5340 /* RCTCameraManager.h */, + 9131F71BD35058FC58D9574792059C0C /* RCTCameraManager.m */, + 63F7A324A12688347CDBE33EB604C86C /* RCTSensorOrientationChecker.h */, + 13C382E153A5297EEAE5B27E367C80C7 /* RCTSensorOrientationChecker.m */, ); - name = Pod; + name = RCT; sourceTree = ""; }; - C83112CF6213E9BF5634161952FF8FC7 /* RCTTypeSafety */ = { + C20D0C99F9F68F1D307EE835C61E1B84 /* Support Files */ = { isa = PBXGroup; children = ( +<<<<<<< HEAD + 9DCB996BA90EA34FA9E61EB674C5D217 /* RCTRequired.xcconfig */, +======= 322970E7B7CE74EEF963ABCDFDE703A6 /* RCTConvertHelpers.h */, 6538B95547B82FC3BDF0DE50923E4D04 /* RCTConvertHelpers.mm */, 97B4FC401451166465BAA5F950638C92 /* RCTTypedModuleConstants.h */, 81DA9D40D390E28AAA405D533327E92C /* RCTTypedModuleConstants.mm */, 51C10CB787BFA7EA26B32E6D964E5EED /* Pod */, 944E660A68E4D060E79F7E57D813ADAC /* Support Files */, +>>>>>>> master >>>>>>> master ); - name = RCTTypeSafety; - path = "../../node_modules/react-native/Libraries/TypeSafety"; + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/RCTRequired"; sourceTree = ""; }; +<<<<<<< HEAD + C924540FAFBEA522B7B50C5AA081DE14 /* Views */ = { + isa = PBXGroup; + children = ( + 555A5011C5B1585BBEC6F6D271C4310D /* RCTActivityIndicatorView.h */, + EE6FF84176108F573AFE6CF97D7B1FDB /* RCTActivityIndicatorView.m */, + CD816FF68900CAFEA02884E1B3082BD7 /* RCTActivityIndicatorViewManager.h */, + A383AA38C73126607CD716CD36C0F477 /* RCTActivityIndicatorViewManager.m */, + D5D4BCC4529F3BA15BCF05FA1DB9A206 /* RCTAnimationType.h */, + 7394745DA1D3FC508866D75D8D5214C1 /* RCTAutoInsetsProtocol.h */, + 8EF1EF27B92C01D582DAE07B4AB2A5E0 /* RCTBorderDrawing.h */, + 563B48D3510EC86E434A7C80C323F125 /* RCTBorderDrawing.m */, + 2AA7B3D22B21157AB31711C5FE39A7E2 /* RCTBorderStyle.h */, + 7103211814C275BC99E0B1D9D69EEEBE /* RCTComponent.h */, + A4BC0B3B28D58C6832EC6003F1017ED9 /* RCTComponentData.h */, + 0792C0AEF2C49BAC2254F69C7BA3795F /* RCTComponentData.m */, + BC26774C0CE80C801CD09DEB3E1D9A32 /* RCTConvert+CoreLocation.h */, + 000C44F7F29038ADACDD0D27E807740E /* RCTConvert+CoreLocation.m */, + CE5D70D3900397FF20C9F58C98880858 /* RCTConvert+Transform.h */, + 4FDB8F086B18724E43CE496DE9C5B9A7 /* RCTConvert+Transform.m */, + 21BEE26C8CF98E6DC73D49C744DDE4CD /* RCTDatePicker.h */, + 6B00BAF098C7E38B8F28DD1B24F505BC /* RCTDatePicker.m */, + 5F87FDD7F728AC044E529080AD09FDB6 /* RCTDatePickerManager.h */, + 6E7CAFB5537E436A40807C5622C3F38F /* RCTDatePickerManager.m */, + F738F8EDA8B2362463C6094FF54FF4E6 /* RCTFont.h */, + 9ACD9ED56677B214E7CF8CDB8458B058 /* RCTFont.mm */, + 7869800FF01CFD4F4E9A522395C82B4F /* RCTLayout.h */, + 802B6850CFE8EB827AD66BB2DB9B7BA7 /* RCTLayout.m */, + C217362007CA7F70B72A86A7F2345DD8 /* RCTMaskedView.h */, + 73E3BF365C4FD88C19534C8EC9C26346 /* RCTMaskedView.m */, + 7E969F2D2926AA76C4D00864E432C416 /* RCTMaskedViewManager.h */, + F78FEE0E231EC7FF85CC3D133641BA52 /* RCTMaskedViewManager.m */, + B39D9ABDE0B3B30EC13029D95F9E1B71 /* RCTModalHostView.h */, + B22E6BB2E5A45377D079CFC42003A094 /* RCTModalHostView.m */, + E9F4510B953EB633173ADB84B09FB5D4 /* RCTModalHostViewController.h */, + AC155F125D5AA52A343929FE7BDAC626 /* RCTModalHostViewController.m */, + 3C8F8716376386C42E85842A7ADF32C0 /* RCTModalHostViewManager.h */, + 0EEAD73B2AF11A61CAA18AD53195C650 /* RCTModalHostViewManager.m */, + 1439959EB2CB9D273F4B89010C340A83 /* RCTModalManager.h */, + F0557606F9683623829FDEF172C330F3 /* RCTModalManager.m */, + 58D4E61028B804ACCB3BFDFF335159E4 /* RCTPicker.h */, + A86DF5A6816C0CDAFA5DCE4C09A2AE65 /* RCTPicker.m */, + 019AF45DFB14E2DB3428D0DAF47F21D7 /* RCTPickerManager.h */, + 8D8E72A8E70A35BCC1D4381FFE8F5DFA /* RCTPickerManager.m */, + A2EB8E322708FCB4C38E823FD11F5614 /* RCTPointerEvents.h */, + C18C36CE503A7445165F3086223CEB03 /* RCTProgressViewManager.h */, + 8DAFE0D398CE10E5EC050008DADD783E /* RCTProgressViewManager.m */, + 09157A1CE59DDBA1C6459CEBFE30019A /* RCTRefreshControl.h */, + 4E2F58F2548E00E235D8EAA2C965D19D /* RCTRefreshControl.m */, + ECA68C965208CC9BDBBC557A7B2D7BAC /* RCTRefreshControlManager.h */, + ABBA53DEA836681216154574629882C3 /* RCTRefreshControlManager.m */, + D68FCA7139FBD96E2D3A6A318DE95F99 /* RCTRootShadowView.h */, + D0B05B74F9DF4266DA3D1DE4354FD016 /* RCTRootShadowView.m */, + 4CC93F8ABA032297191E3E99F813604D /* RCTSegmentedControl.h */, + CEF2162ABB4F2E2301B798355FF37707 /* RCTSegmentedControl.m */, + 0046533C4B7BCD806BBBE6AE0B455B32 /* RCTSegmentedControlManager.h */, + A48BEB7C07E8320F4DC27BD4E3E0447A /* RCTSegmentedControlManager.m */, + 1912A6D0B8774B430E5C7A3E8AD6C793 /* RCTShadowView.h */, + A3F5DFC77E71D7B82A91ABA0508CC67E /* RCTShadowView.m */, + 83400C51734A4C599E6167787E22A004 /* RCTShadowView+Internal.h */, + 60F87D2EEE599CF74CE0D3AAED775537 /* RCTShadowView+Internal.m */, + F06FBE94467DCD3EB4B69D2622EFEA6C /* RCTShadowView+Layout.h */, + 24403DEBAE9BE1EAE898F16E86C7ED61 /* RCTShadowView+Layout.m */, + D6BC9B67EF47A79A63B94B2433F577D7 /* RCTSlider.h */, + F935C734CB1B6AAECF11C3EC92B36227 /* RCTSlider.m */, + 293EDE29DE9E73423366EC7E2155C485 /* RCTSliderManager.h */, + EDF13E43E6D156C1CC76ED77201F8CD7 /* RCTSliderManager.m */, + C3413D762A50600A20DEAC119185BB2C /* RCTSwitch.h */, + 1B291E1D20E76324FC9EA3C11C68B8B7 /* RCTSwitch.m */, + AC80CA6CB0023C211AC987BCDE542AC5 /* RCTSwitchManager.h */, + 3B16EDF670400F5B8FCF0364BB88E253 /* RCTSwitchManager.m */, + 9AD73D3E84ED8357104BFCE0B64297DA /* RCTTextDecorationLineType.h */, + CD9973ACA95E9957F713CF36613A1EC0 /* RCTView.h */, + D12271328575AE677B2B54905677183A /* RCTView.m */, + 3A486D19624F6F6D828397E30B7191E0 /* RCTViewManager.h */, + F314C97E33E6FDCAE8A15A5ADD705A6D /* RCTViewManager.m */, + 5B0D6213C0FE795D48F71DFB2402A121 /* RCTWrapperViewController.h */, + 6C9AA8DC980A2DDB69A5F3CCDD7FD594 /* RCTWrapperViewController.m */, + A440C71D033BBE9BA55E93D52EADB32E /* UIView+Private.h */, + BE432DBCA3E0939375CDE4AF21E03C89 /* UIView+React.h */, + EE4698B9E60B69787F83BB35335F8695 /* UIView+React.m */, + B6F558B2638AE63C747891FF84463EAB /* SafeAreaView */, + B4C45F769A0623AC5683450FAB02DB4F /* ScrollView */, +======= <<<<<<< HEAD CE3A56663DC7DEC75B229C6B33FE6FEF /* React-RCTActionSheet */ = { isa = PBXGroup; @@ -10406,10 +11556,26 @@ BC41F4BEFC115303267857B135A144AE /* libUMPermissionsInterface.a */, 3B640835BAA914DD267B5E780D8CFEC7 /* libUMReactNativeAdapter.a */, 65D0A19C165FA1126B1360680FE6DB12 /* libYoga.a */, +>>>>>>> master ); - name = Products; + name = Views; + path = React/Views; sourceTree = ""; }; +<<<<<<< HEAD + CBD41C84A2AF984657657005FB19EDE9 /* Support Files */ = { + isa = PBXGroup; + children = ( + 2E1B0400FB6CBA4F52196B5A5E24E5B2 /* react-native-orientation.xcconfig */, + 9E48BE69E25DFF1B74EE92BCE148F2E7 /* react-native-orientation-dummy.m */, + 023FFDB9EF107B37E53771E1115D2EB5 /* react-native-orientation-prefix.pch */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/react-native-orientation"; + sourceTree = ""; + }; + CD0EDE85FBCD0B4E05249B0277681D78 /* UMReactNativeAdapter */ = { +======= <<<<<<< HEAD D526FD5961F15D47784408A21ECB94ED /* React-RCTVibration */ = { isa = PBXGroup; @@ -10508,20 +11674,31 @@ 235935B14589F9A55459961422ADBCEB /* Support Files */, ======= CD0F5FD8ADCBD0668DA4EDDFC084D6EB /* Multiline */ = { +>>>>>>> master isa = PBXGroup; children = ( - 9C93B5840C6E0F129D4F74CCB9632334 /* RCTMultilineTextInputView.h */, - E574DAF80A4E05B5F6FDACFDCE009479 /* RCTMultilineTextInputViewManager.h */, - 0E84E3040A6275CB88A0DF50AA52C5BF /* RCTUITextView.h */, + 402CCD0B64F13BA80F93843DD81C3D76 /* UMBridgeModule.h */, + 842352F22697DE8B7D638288EFEF25D1 /* Pod */, + F80948246AA1F4C8EAB40AC586C5BC8F /* Services */, + 525433E1D6D1B3F8816453191FC12AE0 /* Support Files */, + A0ABDFD1227CAB0191284D034AD3DB46 /* UMModuleRegistryAdapter */, + 5836871BFC7F1B60E97804E089A2F47F /* UMNativeModulesProxy */, + 1786B106C1B3BFA8ED5D00697D7BEFB2 /* UMViewManagerAdapter */, ); - name = Multiline; - path = Multiline; + name = UMReactNativeAdapter; + path = "../../node_modules/@unimodules/react-native-adapter/ios"; sourceTree = ""; }; - CD600EB0E5AA9FDD5E5739BCD872289F /* Pod */ = { + CDBA27E707F76533849FE83115178C1B /* Pod */ = { isa = PBXGroup; children = ( +<<<<<<< HEAD + A46471AA4E2D27413C601FBAD0D7DD10 /* LICENSE */, + 276C16B6712BDFA19361D113EC519FD6 /* README.md */, + A17ACC19B4564E0010933AC0BC6A88C0 /* RNReanimated.podspec */, +======= E12C423A9215C3E86E103A5C8AB4E820 /* RCTRequired.podspec */, +>>>>>>> master >>>>>>> master ); name = EXAppLoaderProvider; @@ -10605,38 +11782,35 @@ path = Folly; sourceTree = ""; }; - CF1408CF629C7361332E53B88F7BD30C = { - isa = PBXGroup; - children = ( - 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */, - 5D46FC936D0B6D22FC1B8F15D5A2AC64 /* Development Pods */, - D89477F20FB1DE18A04690586D7808C4 /* Frameworks */, - 53A4968D3A9298B1457973BAF5533AF7 /* Pods */, - C884871628F2F554DC291ED17B4E8863 /* Products */, - ABB3006CCEED73A1E4AE8E28EBC6B66F /* Targets Support Files */, - ); - sourceTree = ""; - }; - D08148750C01EF7F6D3CA07806D33269 /* Support Files */ = { + CEB5CEB78B6158788F4817F1F45C6D17 /* Support Files */ = { isa = PBXGroup; children = ( - 127E6EECEAF934BB66F837485D69ADBF /* RNCAsyncStorage.xcconfig */, - 4D71FF1EB775B29C33F22D37DFF2B17D /* RNCAsyncStorage-dummy.m */, - 4F3A78BF5A5F8D2CB558CC5142C40BF4 /* RNCAsyncStorage-prefix.pch */, + 6D6D6F9FAF45664AC1C8627F0E383B00 /* UMFileSystemInterface.xcconfig */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/RNCAsyncStorage"; + path = "../../../ios/Pods/Target Support Files/UMFileSystemInterface"; sourceTree = ""; }; - D2400C3F0DA7BA83AB4FC9BEA3D42A1D /* Pod */ = { + CF1408CF629C7361332E53B88F7BD30C = { isa = PBXGroup; children = ( +<<<<<<< HEAD + 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */, + 5B472EA8B2C19D9843CAD0A041F5E6AA /* Development Pods */, + D89477F20FB1DE18A04690586D7808C4 /* Frameworks */, + 53A4968D3A9298B1457973BAF5533AF7 /* Pods */, + 5D4B344944774274720267DA8CCFBA0B /* Products */, + ABB3006CCEED73A1E4AE8E28EBC6B66F /* Targets Support Files */, +======= 588ACC47B36E98EE70D293ED9E5CE457 /* Yoga.podspec */, +>>>>>>> master >>>>>>> master ); - name = Pod; sourceTree = ""; }; +<<<<<<< HEAD + CF17B6F2B5E8F96668FC6A88E7867159 /* RNConvertPhAsset */ = { +======= <<<<<<< HEAD DD29A3A10233D178EB0A5BA0AD01E6C7 /* Pod */ = { isa = PBXGroup; @@ -10693,23 +11867,42 @@ A8E716B049C74450F10FA21A7386F281 /* EXAppLoaderProvider.podspec */, ======= D2B2E07AE2B0DE1D020147E8FAC941BF /* CxxBridge */ = { +>>>>>>> master isa = PBXGroup; children = ( - 6AEFFAFA642065680A33528D7EEB96BB /* JSCExecutorFactory.h */, - A5A0EED8886E145BC9154833E8680BB5 /* JSCExecutorFactory.mm */, - 83D12F7F6A27AA9121DAE2DEB11188C6 /* NSDataBigString.h */, - CBB06E65F31DCCD122C8FE93D93C0129 /* NSDataBigString.mm */, - C5059A2802BF1C71F647EE66704C33E4 /* RCTCxxBridge.mm */, - B8462D1C1CD72600D02606E0D5D32E09 /* RCTCxxBridgeDelegate.h */, - 6B6A947B817F27C9D03341DCBBECCB56 /* RCTMessageThread.h */, - 1C65F90F71788A3CDF8D5312CC90EE91 /* RCTMessageThread.mm */, - 45383396281F8384D3116150DE16C7FE /* RCTObjcExecutor.h */, - 3ACAB150D57CBFEAC1F9051CBAA7AA52 /* RCTObjcExecutor.mm */, + 16E6DAB056AC5626F73B00234449D321 /* RNConvertPhAsset.h */, + A213275041290A01068D83FD72A5FB1B /* RNConvertPhAsset.m */, + A7104F979A3C5C3E7FB3D0902241EEB0 /* Pod */, + 442FCCFEE8AE68C1CE31AFF49043E5F7 /* Support Files */, ); - name = CxxBridge; - path = React/CxxBridge; + name = RNConvertPhAsset; + path = "../../node_modules/react-native-convert-ph-asset"; sourceTree = ""; }; +<<<<<<< HEAD + D0CC8B959A236DD54C777B1EA66CACF2 /* UMCore */ = { + isa = PBXGroup; + children = ( + 341B0EE2F562D0A7AC9EB2E850382B8C /* UMAppDelegateWrapper.h */, + 023F159855AD4AA4B4864AAE0282346E /* UMAppDelegateWrapper.m */, + 4BB7AD8E999355C4558585C6BBBC6CDA /* UMDefines.h */, + 00A3953EC22CD23C9FAFE370DF6C1FD6 /* UMErrorCodes.h */, + 3E46702D5F8738D878AF64F2FBC6BE75 /* UMErrorCodes.m */, + 01E51322FC93C61555207D23CFD95FB8 /* UMExportedModule.h */, + 566EC866F2FE6329E9AD0D239732284A /* UMExportedModule.m */, + FD4ED4D91A66E975C5C46CBB365E8347 /* UMSingletonModule.h */, + E624689E28820604BD9BDEF5DEE14D55 /* UMSingletonModule.m */, + 8E604E140E84CD475309034EA42B855C /* UMUtilities.h */, + 3AC3509DE20D897CCA963863CD9EF25D /* UMUtilities.m */, + C9774FC5B433E134616FB64740E5419F /* UMViewManager.h */, + FABA37A55A63AC04287B6EB245CC98CF /* UMViewManager.m */, + 367546DD1C3AEE10E20F8D33A2FB4F49 /* Pod */, + 393775EED23F163A35C81649C1859F14 /* Protocols */, + BB07C770CBA967CA021065C2F1D7CF12 /* Services */, + AA66D8EA5A2236AFB956E58057B9A893 /* Support Files */, + 7696A03C67AF76F7D40C45A2CE45AF7F /* UMModuleRegistry */, + 339C6C0EE70B771090854E2DE3F8E41D /* UMModuleRegistryProvider */, +======= D2F8588AD5A06592A80120EC43E8CE67 /* Pod */ = { isa = PBXGroup; children = ( @@ -10819,10 +12012,15 @@ isa = PBXGroup; children = ( 145A78B1C54BEDDFAA9EEC5F17E2CF34 /* React-RCTSettings.podspec */, +>>>>>>> master ); - name = Pod; + name = UMCore; + path = "../../node_modules/@unimodules/core/ios"; sourceTree = ""; }; +<<<<<<< HEAD + D1A3049E6B739A8EC0C617263AAD1EE1 /* Support Files */ = { +======= ED34F3262D5318154C24585B30EC5512 /* DoubleConversion */ = { isa = PBXGroup; children = ( @@ -10913,118 +12111,68 @@ F4929BD1C1737EC2C69BDDBD1FFC3911 /* UMConstantsInterface.podspec */, ======= D311E5560BBB374803AB35FF43B83712 /* React-RCTAnimation */ = { +>>>>>>> master isa = PBXGroup; children = ( - 4D7EA6B6BBD870BEE8615A8EF1D16C7A /* RCTAnimationUtils.m */, - 89C2C4DE17D0C265FA92BEF480EEFB53 /* RCTNativeAnimatedModule.m */, - 792A64225550DBD9E02E3C69E5976E6A /* RCTNativeAnimatedNodesManager.m */, - DEE4910422848AB62333644DEBA8326F /* Drivers */, - 6C99025BE4CF902CB13ADF2F7888FAA7 /* Nodes */, - 490736719FAF586523C3033A87237E1B /* Pod */, - 79AEA2AAF26C4D80DB1A3B935A6680BF /* Support Files */, - ); - name = "React-RCTAnimation"; - path = "../../node_modules/react-native/Libraries/NativeAnimation"; - sourceTree = ""; - }; - D40B6877DDC09031656C33CAA7E05E28 /* Support Files */ = { - isa = PBXGroup; - children = ( - 96640E38DC6080ACE6217387B4538A93 /* UMPermissionsInterface.xcconfig */, - 926D97954AB1FD616C6DF2F154024A94 /* UMPermissionsInterface-dummy.m */, - 3B56B2BDEC84EDF155510BD1CD647977 /* UMPermissionsInterface-prefix.pch */, + 80BB34C456647626591BB91C90A378BC /* FBReactNativeSpec.xcconfig */, + 26A7A84B79D50EAB16D223C258A77EED /* FBReactNativeSpec-dummy.m */, + CEF0DD33059840768A5979973ECB277C /* FBReactNativeSpec-prefix.pch */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMPermissionsInterface"; + path = "../../../../ios/Pods/Target Support Files/FBReactNativeSpec"; sourceTree = ""; }; - D41423795668445777DEDB4D1543FE00 /* RawText */ = { + D1CE1F18B18143488CF786CA99604C43 /* Support Files */ = { isa = PBXGroup; children = ( - 02DE686D9FC2A4732D0DA443448F0CD2 /* RCTRawTextShadowView.h */, - 9EB620E9B6F530C44CBB867073CB21B7 /* RCTRawTextViewManager.h */, + A56C1F583615E2D8DB60374B5F9B752E /* UMSensorsInterface.xcconfig */, ); - name = RawText; - path = Libraries/Text/RawText; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/UMSensorsInterface"; sourceTree = ""; }; - D47104546D6385FA2BD043B62C5A7020 /* UMReactNativeAdapter */ = { + D2A5C0349639B2DB43D1B71E7B2FC530 /* Support Files */ = { isa = PBXGroup; children = ( - 6B6F3D31671CE974E6BE5272D9D78A29 /* UMBridgeModule.h */, - 4CE835F358C9F943F404EDF92F72C2C3 /* Pod */, - F47967381F8B1FBFF4583E46810CD296 /* Services */, - C5D5992FD7572FB8B69A2D58A904CD20 /* Support Files */, - 2F93AFABA20E26876D58E11AE68CAE05 /* UMModuleRegistryAdapter */, - BF6DC6C50827F802501760463C6F99D3 /* UMNativeModulesProxy */, - F29C7DEA3A11BCF0F8D82E10EFD071F1 /* UMViewManagerAdapter */, + E97E421D7170698C39CD51DD91548ED6 /* FBLazyVector.xcconfig */, ); - name = UMReactNativeAdapter; - path = "../../node_modules/@unimodules/react-native-adapter/ios"; + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/FBLazyVector"; sourceTree = ""; }; - D5504397557E8A10E03BE1C5B8B8CA40 /* Support Files */ = { + D2AAAE524B3F578BB2866D41F7D3A6E0 /* Multiline */ = { isa = PBXGroup; children = ( - C0E322BF48D21B54242D50BA87D0C0CA /* React-jsi.xcconfig */, - 5C6C987030B68B8420445F33E6E6A8C9 /* React-jsi-dummy.m */, - 048A092D1926B8D88C9CCEC702C8B50F /* React-jsi-prefix.pch */, - ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-jsi"; - sourceTree = ""; - }; - D74A8763985767DF69A710FD6262DE2C /* React-cxxreact */ = { - isa = PBXGroup; - children = ( - BF1A98845E48D5BF8842906200736FEA /* CxxModule.h */, - 47439F85956474E9C5C2DD507879F7B7 /* CxxNativeModule.cpp */, - 90B2CF4D23329B44ED4AC9638AD7F975 /* CxxNativeModule.h */, - FE4EA72E608355434E1B7EFA11527BFC /* Instance.cpp */, - 4470CC3CA74BDE1A78EE1DB9119F7DE7 /* Instance.h */, - 3396059F0751177F44BDC08AD1D999DE /* JsArgumentHelpers.h */, - C15C6F75EA5EF2622D340FDA0BA279C3 /* JsArgumentHelpers-inl.h */, - 87F103AE7E5FA7007EA177F5F4FCCA28 /* JSBigString.cpp */, - 9A28481C9F1153DF8BB4C0AFE4323DF9 /* JSBigString.h */, - 7FBAF565A0DD320505C699A93708975D /* JSBundleType.cpp */, - 7D9B018F6BA77C0DA3A411556A6050C2 /* JSBundleType.h */, - 3F7A6612E5BA5C5B2A36EB87BAA4C7A2 /* JSDeltaBundleClient.cpp */, - D397581861A148108831102FDEB7BAD1 /* JSDeltaBundleClient.h */, - 18097062BCC8BFA39A1595BE1EEC4763 /* JSExecutor.cpp */, - B882D8D412F9B7FACDE0FB7D97378AE7 /* JSExecutor.h */, - F63234F177C29CB3C36B8E90CC251703 /* JSIndexedRAMBundle.cpp */, - 9F625AB4CF2D1A6D2986B43D91D6A37B /* JSIndexedRAMBundle.h */, - 3EF34854820DDCA66A3ED5BA03F32146 /* JSModulesUnbundle.h */, - 57B51377FC32462F9C02D181467F86B4 /* MessageQueueThread.h */, - 414634FD654535CA429C1332F3035549 /* MethodCall.cpp */, - 6F753FBF9CF82F017FD7C7B4EBF186DD /* MethodCall.h */, - 066EAA6E1B5CE8DCCDED5B537456554F /* ModuleRegistry.cpp */, - 9BC84F9E2485D28FF96252BE70F9BEBB /* ModuleRegistry.h */, - A8EF390CABA3A0ADD137B4981393CEAA /* NativeModule.h */, - 177CB1DA91FB9A88DF88C2265073F5FA /* NativeToJsBridge.cpp */, - 04ED5FE8FAE486660E5111A53A974DAB /* NativeToJsBridge.h */, - 3E690A2B2B992AC33537A3454B34180B /* RAMBundleRegistry.cpp */, - 50C7DDA89DF7BD466FE4F82DF093EE78 /* RAMBundleRegistry.h */, - D5A8E2F945AAC0549B768510A55625B6 /* ReactMarker.cpp */, - EB2D8FFE28CF8ACD9B93AD0C798A4E04 /* ReactMarker.h */, - 2CA33A682B6983DFA4E84579DD33057B /* RecoverableError.h */, - 66AF66B801DE97B857B893DF1396BB51 /* SharedProxyCxxModule.h */, - C732544715094F830748F3E41EAEC0FD /* SystraceSection.h */, - 1E1DA4D2B3B8B27E50DEF29CF349D064 /* Pod */, - 2E2A831E051CBAEB06420F30E4277594 /* Support Files */, + D21D91AE607CC7A31C6EB0B34BB8ED49 /* RCTMultilineTextInputView.m */, + 24B8D86926F4F4667D26D7B77755B000 /* RCTMultilineTextInputViewManager.m */, + A687EDEC5D12E60C4CC53503F6FD0146 /* RCTUITextView.m */, ); - name = "React-cxxreact"; - path = "../../node_modules/react-native/ReactCommon/cxxreact"; + name = Multiline; + path = Multiline; sourceTree = ""; }; - D75E9ACDE746AA784B49972F4DCDDAE6 /* Pod */ = { + D71BB777DE39D745BEC7A1F925A351E4 /* Pod */ = { isa = PBXGroup; children = ( - 02BBA283D57D5289BC022B9691358AB5 /* React-RCTVibration.podspec */, + 9E5C7155EB4B749183C593939F3F108F /* LICENSE */, + C706FA5ABB95EB6D79083F4BAC94A764 /* README.md */, + 56498514FE7223E399A253A39BC18094 /* RNScreens.podspec */, ); name = Pod; sourceTree = ""; }; + D77F58E055CA3FBEBF1815051F8C653E /* ios */ = { + isa = PBXGroup; + children = ( + 84418C3F8035F27CAD1554CF3654D720 /* RCTTurboModule.h */, + 2CE00C535A3C1C7E11F55C6A73525A2B /* RCTTurboModule.mm */, + E0A6CD2EE170BB3E257ACCC28632225E /* RCTTurboModuleManager.h */, + EACFCB010709A5A1F4E06920F7B4CF51 /* RCTTurboModuleManager.mm */, + ); + name = ios; + path = ios; + sourceTree = ""; + }; D89477F20FB1DE18A04690586D7808C4 /* Frameworks */ = { isa = PBXGroup; children = ( @@ -11032,220 +12180,223 @@ name = Frameworks; sourceTree = ""; }; - D90A0FA17AB08FE35742EC7D7306B97F /* Protocols */ = { + DD6B06CF205B8091F62A8180AB6ED14C /* Support Files */ = { isa = PBXGroup; children = ( - A16EE34C910DCBB40CB0DF0379A9B3D5 /* UMAppLifecycleListener.h */, - CBB0F8F78ACD4127BC2B6E5BA3F799DA /* UMAppLifecycleService.h */, - 25EEBA49AE086F0ECB8BD9A094146FEB /* UMEventEmitter.h */, - 40F095788E9E830E964CCDB47A3DC786 /* UMEventEmitterService.h */, - 8144BD6ECFF6512D2F2FC48A80A72354 /* UMInternalModule.h */, - C5718913AC2355948D57DD094DF44D42 /* UMJavaScriptContextProvider.h */, - 2F4EFA992CB991F3BEA083CF208555A4 /* UMKernelService.h */, - A92EFFF272A0EA0FC429F1F65C1ED263 /* UMLogHandler.h */, - 91F486FCB1E5D3A49B7B4F04A61A7FFB /* UMModuleRegistryConsumer.h */, - 61CC0F2E974A9DA420899A9A20FCDFA9 /* UMUIManager.h */, - 569C5F16B5C15DB2CD701B491DC6EB3F /* UMUtilitiesInterface.h */, + 615C1B850263BB26E0AC6D83714BFED1 /* React-cxxreact.xcconfig */, + 2E8FD2842D86EFF1437926BAB28D89CB /* React-cxxreact-dummy.m */, + DC9A42406BF604A1A1D1F8FFC9040601 /* React-cxxreact-prefix.pch */, ); - name = Protocols; - path = UMCore/Protocols; + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-cxxreact"; sourceTree = ""; }; - DB356A2796B7EEBFC8414B28BF50E3D4 /* react-native-video */ = { + DDDEBDF276AF5CA7C4EA14B2D2E7DFA3 /* Support Files */ = { isa = PBXGroup; children = ( - 2B8DD4315E8C13407661F20CBFF97EC0 /* Pod */, - DEE618E5824924603EF4890EEB9B45D1 /* Support Files */, - 6E7F00F33344D636272F908589F20BB3 /* Video */, + 2287AEE38F030660DC26BF22E3EDD4DD /* EXPermissions.xcconfig */, + 53AE4A70A9BF6A6619F381B22A251282 /* EXPermissions-dummy.m */, + BABD24B1EEE0B492114096ADC933B08C /* EXPermissions-prefix.pch */, ); - name = "react-native-video"; - path = "../../node_modules/react-native-video"; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/EXPermissions"; sourceTree = ""; }; - DCA03A75F1D44CF2CCD0833972625151 /* react-native-orientation */ = { + DE406136E21F2ECBA1E6C82FFB67BE58 /* RNScreens */ = { isa = PBXGroup; children = ( - 6408394EE21554C5DE7CF7CA5D3287A9 /* Orientation.h */, - A0D16A2851CF6B1BC763CED058E8C6BC /* Orientation.m */, - F4615719A6145FD73540CDA2FB969EE1 /* Pod */, - 2BEB7F1D0C5B460CEF31E7CBDB535F0E /* Support Files */, + A5CA17E5AFBAB405E7B46D97883BE18D /* RNSScreen.h */, + 7B3E573945A8A658487E58335CCB0254 /* RNSScreen.m */, + 624361FE9BDCE3D2FB03E97B222E046B /* RNSScreenContainer.h */, + 2420FF852A748811BE052AEBCF3E591B /* RNSScreenContainer.m */, + 3D0EB323433925C846E6001788083ADD /* RNSScreenStack.h */, + E7C4709417D102A02C742F3510E849EB /* RNSScreenStack.m */, + 6A05ED24B77DED6444B96D157B0803CE /* RNSScreenStackHeaderConfig.h */, + E195BEC972375C4FD42EF15D43B227D6 /* RNSScreenStackHeaderConfig.m */, + D71BB777DE39D745BEC7A1F925A351E4 /* Pod */, + 28EA1E3934201EDDAF59860F735A152E /* Support Files */, ); - name = "react-native-orientation"; - path = "../../node_modules/react-native-orientation"; + name = RNScreens; + path = "../../node_modules/react-native-screens"; sourceTree = ""; }; - DD1A41D1F2806CF8DE9C9123002DF7CA /* Requesters */ = { + DED6CF2AA6204F8232C355DA6F380830 /* UMFontInterface */ = { isa = PBXGroup; children = ( - 2CDC27358BEF56D7D22E77E90320D136 /* RemoteNotification */, - 06328EB268A2C9ECF37AE0ACA8705DDF /* UserNotification */, + D89265E5D5BF37B079DC8C4A73BA4AE7 /* UMFontManagerInterface.h */, + EF7D4E1BE66DDD67823C8D4D96D9A840 /* UMFontProcessorInterface.h */, + 57CFA568DA0301C13D37BA5B80946A69 /* UMFontScalerInterface.h */, + 5DA11D18C06D26F2DC879797D4498031 /* UMFontScalersManagerInterface.h */, + 47DD918081A0A12E1C0510F588A347A2 /* Pod */, + B5AF40972DA2063D60A43C338B01D389 /* Support Files */, ); - name = Requesters; - path = EXPermissions/Requesters; + name = UMFontInterface; + path = "../../node_modules/unimodules-font-interface/ios"; sourceTree = ""; }; - DEC3F443643F481EE8080DDC676F300F /* Pod */ = { + DF11ED37A064A0A23C293483DB1E3CF5 /* Drivers */ = { isa = PBXGroup; children = ( - 66528678682B48D16410BC85DFEE5DA0 /* UMFileSystemInterface.podspec */, + A36714787BDC9C09238A282576623035 /* RCTAnimationDriver.h */, + 28326EFEE933079BA8555732F148E567 /* RCTDecayAnimation.h */, + 50CC2760FCC830DCE595D6B8D98F67B8 /* RCTEventAnimation.h */, + 929E9B46276747AC1132EF99AF3FB597 /* RCTFrameAnimation.h */, + 3A4D81D2430BDB022B75817AE31A9F39 /* RCTSpringAnimation.h */, ); - name = Pod; + name = Drivers; + path = Libraries/NativeAnimation/Drivers; sourceTree = ""; }; - DEE4910422848AB62333644DEBA8326F /* Drivers */ = { + DF29A54B09DE56DD47BE2753CE8D3F88 /* Singleline */ = { isa = PBXGroup; children = ( - AA7CC2FFD8E25FD2FAE5BCC2FF267E52 /* RCTDecayAnimation.m */, - 58B87AAC8C250697040FFCB4287EB42E /* RCTEventAnimation.m */, - D777A2A60A47FACE596D5FEE39A71233 /* RCTFrameAnimation.m */, - C614ED504029D6545470FC7E75FA6BB1 /* RCTSpringAnimation.m */, + 3D2F82D9FC6F110282C03B470CF4DC52 /* RCTSinglelineTextInputView.h */, + 839C0A226E98B630DA630EFF7EC45481 /* RCTSinglelineTextInputViewManager.h */, + F6A5A8BD0F9EB01D3547E58B7CC26285 /* RCTUITextField.h */, ); - name = Drivers; - path = Drivers; + name = Singleline; + path = Singleline; sourceTree = ""; }; - DEE618E5824924603EF4890EEB9B45D1 /* Support Files */ = { + E08FBBDB237B9A10EE0E9CBAE40C42A3 /* UMFaceDetectorInterface */ = { isa = PBXGroup; children = ( - 531E22D6F197DAEAB5919F40FE6DA298 /* react-native-video.xcconfig */, - C92C4F45BECE6C2ED6B1E346AD9D610C /* react-native-video-dummy.m */, - 3AC1268FA9C89C5240FE96BA4A6A6F5B /* react-native-video-prefix.pch */, + 07C6637CB57B922F1BB276A071D2DC8B /* UMFaceDetectorManager.h */, + F89D14093FD3B5BF37F11E78273638AA /* UMFaceDetectorManagerProvider.h */, + A648B206C530CC3FDB40EAA70B8ECF63 /* Pod */, + F8D3DADD4116008C3E9C6E068390BB43 /* Support Files */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-video"; + name = UMFaceDetectorInterface; + path = "../../node_modules/unimodules-face-detector-interface/ios"; sourceTree = ""; }; - DF1F2D22E9361F8BA792DA673A43C2CC /* Support Files */ = { + E1A362F24EC1A83497B0CF5DD909F427 /* RawText */ = { isa = PBXGroup; children = ( - BF5AD8641E801494D77B980A094103CF /* UMImageLoaderInterface.xcconfig */, + 5E591863137F4BEADD8AB40F82D9307C /* RCTRawTextShadowView.h */, + 5F676D5F059945D32423B7D38719CFB4 /* RCTRawTextViewManager.h */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMImageLoaderInterface"; + name = RawText; + path = Libraries/Text/RawText; sourceTree = ""; }; - E03C615E9719663252476146536064AD /* TextInput */ = { + E20255851FA2995A06E49D42084C036A /* Support Files */ = { isa = PBXGroup; children = ( - 81AAC5A5194915C2EAE22298A4937CF4 /* RCTBackedTextInputDelegateAdapter.m */, - 3AB5A6988F6F5CDB3360A8C89EE1165A /* RCTBaseTextInputShadowView.m */, - 3FFA1B269613070EB61EAC8C212B2052 /* RCTBaseTextInputView.m */, - 220869C23004F6C37A12911E9D3C9BD8 /* RCTBaseTextInputViewManager.m */, - 7B08C817C2A4CA86C666144054103956 /* RCTInputAccessoryShadowView.m */, - C9B798477E6CAB5E770F44D8DEA5B0E9 /* RCTInputAccessoryView.m */, - 0837D52D173358E60A915D76FC33EFDD /* RCTInputAccessoryViewContent.m */, - 4AE562E4A98ACF339D049547E2D0CBCD /* RCTInputAccessoryViewManager.m */, - F3189BF17907999F990C3CA336544E28 /* RCTTextSelection.m */, - 7217EAD7F8D83F1C76D8D2F298637568 /* Multiline */, - 5E03DC48D8549378BFC7ECEA2016B560 /* Singleline */, + 122393B78EAAE45A999E469B03393C5C /* React-RCTBlob.xcconfig */, + 5360168E60046EC246E4C488EE9646F3 /* React-RCTBlob-dummy.m */, + 86BDA1E2F092F78303198A14E23FD392 /* React-RCTBlob-prefix.pch */, ); - name = TextInput; - path = TextInput; + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-RCTBlob"; sourceTree = ""; }; - E15BE415BAB630423F0596DE3145B035 /* Pod */ = { + E2631DA4A4175C72827549CE7714F49F /* Pod */ = { isa = PBXGroup; children = ( - 8C9718E3B9AAC79BC6BA2BB52D94AC6C /* React-jsi.podspec */, + 39330F60D03B6CC17BC18D2973BC5F4A /* EXPermissions.podspec */, ); name = Pod; sourceTree = ""; }; - E1F5541FEC5F8352BBAB67DBF555F807 /* UMPermissionsInterface */ = { + E33BCB8E547B5B00497221A2A8D044FD /* Pod */ = { isa = PBXGroup; children = ( - 349274FA4532F67E1E9F946F122BF708 /* UMPermissionsInterface.h */, - 9DDB2CFF8D681B72ABC207C9376CBB45 /* UMPermissionsMethodsDelegate.h */, - 8E9E129B09C666F1C243FDC8BDB08E4D /* UMPermissionsMethodsDelegate.m */, - AB50854B0DB3E5C0604C2985B47E9875 /* UMUserNotificationCenterProxyInterface.h */, - A4C8F5678077EABBC0DF00904C66027E /* Pod */, - D40B6877DDC09031656C33CAA7E05E28 /* Support Files */, + BC05DCB46DCDF1965011246868A42219 /* FBLazyVector.podspec */, ); - name = UMPermissionsInterface; - path = "../../node_modules/unimodules-permissions-interface/ios"; + name = Pod; sourceTree = ""; }; - E28AB2BE3144CC795E0D0181D0421F7A /* UMBarCodeScannerInterface */ = { + E4CFAB7DEEFB8024ABAAD6E53562CD3A /* Resources */ = { isa = PBXGroup; children = ( - 3605B4EA55493DAE714E7BA25BBFC6E8 /* UMBarCodeScannerInterface.h */, - B678BC6D229F07865815E5BA9413FF00 /* UMBarCodeScannerProviderInterface.h */, - 92B9DF64F8E9C73440ACB061895F5D8F /* Pod */, - ED6C894A9C5B50DDA246D7F71AB0FE28 /* Support Files */, + 28F77E4A2D0D134FB487364758B24E38 /* AntDesign.ttf */, + 4E6A2B087E72CD4D681F721D9D2780E7 /* Entypo.ttf */, + 4DD759DC7E35EDE732BA80CE3FDEE840 /* EvilIcons.ttf */, + 6ED2BA8445DB8C5EDF1E6D988F5E3CD2 /* Feather.ttf */, + CE7AFD240AC5ABF0F4E89F09DC9C77EE /* FontAwesome.ttf */, + 82C33BA47432C1F489A935708F718D43 /* FontAwesome5_Brands.ttf */, + 75EFF2B2BA6607B316A19D5EB7D81BE8 /* FontAwesome5_Regular.ttf */, + 2DD241268875DFB5C640B7B2DEBF79E0 /* FontAwesome5_Solid.ttf */, + E48737FBE28B21701D79381B1912FFDD /* Fontisto.ttf */, + 8C5710167078B9E92207C4E461F57A89 /* Foundation.ttf */, + B852424FD0B1E11CA4438B84D063F81E /* Ionicons.ttf */, + 8DE0767620CE90CEE02C6EA236B5ED8C /* MaterialCommunityIcons.ttf */, + AF49C4C2500230C63A9EBE908722AFBB /* MaterialIcons.ttf */, + B095B568D03E6DA24B9EC6BDD96CDA5B /* Octicons.ttf */, + FD396878F4E91C6F688394E9DA1A9538 /* SimpleLineIcons.ttf */, + E15A47ADF8BF8B8848EC529EED5D0F95 /* Zocial.ttf */, ); - name = UMBarCodeScannerInterface; - path = "../../node_modules/unimodules-barcode-scanner-interface/ios"; + name = Resources; sourceTree = ""; }; - E3CBAC3CEE00962FC5A4CB1ED0F09FCC /* React-RCTNetwork */ = { + E546D2B795F5B24345D475C0402613DA /* Pod */ = { isa = PBXGroup; children = ( - 03FA5EC04092D36F43B098932369D7D8 /* RCTDataRequestHandler.m */, - 7BF4C8AA55B29278B57806595E82FD9E /* RCTFileRequestHandler.m */, - 45A3A1959E89CB7A924A5F5DBEE5A886 /* RCTHTTPRequestHandler.mm */, - E66B47A92CF48EA1F906714D58D47002 /* RCTNetInfo.m */, - F3AC3DAFB070F9DD031310EBEC62974A /* RCTNetworking.mm */, - 46FD4CE86562D4E135199CF95ADF2E26 /* RCTNetworkTask.m */, - 1CA8FEFC509BC8F377E2A30FEAAF631C /* Pod */, - A24C696C00CA309C41798C6BBDFE4319 /* Support Files */, + 19DABD1E274F5FC039C41A680EB334AB /* LICENSE */, + F09A5A0FE3B5008C9C7F5F8908ED9404 /* react-native-video.podspec */, + 0AF1EB0840CFF957C1EE3DA6FDB91BE5 /* README.md */, ); - name = "React-RCTNetwork"; - path = "../../node_modules/react-native/Libraries/Network"; + name = Pod; sourceTree = ""; }; - E454C7226D8E7E05C156F2E6BA507AC6 /* CxxModule */ = { + E752F1E045CBBF1502B9C0B2640B2502 /* Pod */ = { isa = PBXGroup; children = ( - 4F8997B536CBC346079AFABB11FB2860 /* DispatchMessageQueueThread.h */, - 26BA9BDE276BB4626B8B352F14F3B2DB /* RCTCxxMethod.h */, - 762E3274DCBA71387D9BCCEAEEB806A0 /* RCTCxxMethod.mm */, - F335B0706564A89383B0BF00A34EC1E0 /* RCTCxxModule.h */, - BA0D02AB25FD68CE5D6938980F487B06 /* RCTCxxModule.mm */, - 51FCD41CD6C6DDEFEC4380AB70054F53 /* RCTCxxUtils.h */, - DDF2A4D9C79D1D2D12CE44B73D6697F0 /* RCTCxxUtils.mm */, - CE68BD50F86430A7B6E0D6C6775B7BB3 /* RCTNativeModule.h */, - 4B15C7523007E87CA27F761E7D97EB5D /* RCTNativeModule.mm */, + D1C34CC207D80399E23672DD2BCFD8F0 /* UMConstantsInterface.podspec */, ); - name = CxxModule; - path = React/CxxModule; + name = Pod; sourceTree = ""; }; - E4EB5AA472E1DBBCB959A4A51FF8D31B /* RCTWebSocket */ = { + E79EC77AF86228DC3A9211F09508D2D0 /* Support Files */ = { isa = PBXGroup; children = ( - 0D3D6EB447E676CD896B62D403EF494A /* RCTReconnectingWebSocket.h */, - CAADEFC4801553E7CD3D6FC46712BE28 /* RCTReconnectingWebSocket.m */, - D9B3CBF10926AA720F2C810F30EF5926 /* RCTSRWebSocket.h */, - 9815E74DB5B104451F86AB1FD50E90F3 /* RCTSRWebSocket.m */, - ED00E6F3581DB3DD3620294137A642C5 /* RCTWebSocketExecutor.h */, - A72E22033170BF0B3016A1CC0F7A8B74 /* RCTWebSocketExecutor.m */, - 05B9F05F02BC9CA17D407AA34CEC4C02 /* RCTWebSocketModule.h */, - 3881B9E1E45C7679C6E3E95A5B35122A /* RCTWebSocketModule.m */, + 2CBF645A0A960BDCF5D00D98C8BF154E /* React-RCTActionSheet.xcconfig */, + BF515B65E3E57FF8892B526C747577D4 /* React-RCTActionSheet-dummy.m */, + 92B55A7DD985BD301A5B1D25C938B5C9 /* React-RCTActionSheet-prefix.pch */, ); - name = RCTWebSocket; + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-RCTActionSheet"; sourceTree = ""; }; - E63A0A8886F9EAFDE551C2E5168DF143 /* Text */ = { + EAC20348B781288361091BED05CE52FF /* Surface */ = { isa = PBXGroup; children = ( - B5DBEA77F485ECC234109C0F6AC30C19 /* NSTextStorage+FontScaling.m */, - 32602D3FA54823E2837ADA749DBEC205 /* RCTTextShadowView.m */, - ADAABF21100F405B63720EFEEE6085EB /* RCTTextView.m */, - 548DAD15D04F59EB0818CCE9D9CD0345 /* RCTTextViewManager.m */, + BB2233517BFA621E2B17C1572520B323 /* RCTSurface.h */, + C8F2489699F473FE28620E24E05F44AF /* RCTSurface.mm */, + 500C861B6F5A5F3CE412B862735FE960 /* RCTSurfaceDelegate.h */, + B797B53C92785CD13CCDCB1D334D3AB1 /* RCTSurfaceRootShadowView.h */, + D48E33E2E3AE7E63AD35F08F19206144 /* RCTSurfaceRootShadowView.m */, + 1307C039C25584E682A9C37C6BC9C8E4 /* RCTSurfaceRootShadowViewDelegate.h */, + D3050E0454A03AC556EA2DC79AE7F6F5 /* RCTSurfaceRootView.h */, + 143FC1623178F4EAAB73606002BB101D /* RCTSurfaceRootView.mm */, + 698DDE4C7C66AF9BE2838F42FA5B206C /* RCTSurfaceStage.h */, + BCD7AC01B5770CD8F8939E574EF1746B /* RCTSurfaceStage.m */, + 9F5C588284FE5D683F5BFFAD7FD5C944 /* RCTSurfaceView.h */, + 5A2EF89CC871A7DDC0CE7D89961C99BB /* RCTSurfaceView.mm */, + 311F7AAE4AB96FBE852D1FD3373DA5B8 /* RCTSurfaceView+Internal.h */, + 123FAF3F3912B33F8F77920819013EED /* SurfaceHostingView */, ); - name = Text; - path = Text; + name = Surface; + path = Surface; sourceTree = ""; }; - E75F0F4B68844AC880D442A34599DB73 /* Pod */ = { + EAFB152A02832CAEA680735ECDD1FB34 /* Pod */ = { isa = PBXGroup; children = ( +<<<<<<< HEAD + E066239ADE42CC7FE395FC5A6EC18977 /* FBReactNativeSpec.podspec */, +======= A97F3E1AD4F67D4AB165E1C269D6E11B /* React-jsiexecutor.podspec */, +>>>>>>> master >>>>>>> master ); name = Pod; sourceTree = ""; }; +<<<<<<< HEAD + EB8C95A9F77B8F117457999A56BFE43F /* React-RCTLinking */ = { +======= <<<<<<< HEAD F56EE7D359F600D92FE4BA1CC9F6EDF2 /* Support Files */ = { isa = PBXGroup; @@ -11279,169 +12430,117 @@ 4733F05DA7CD963C34C93A7CE28FF001 /* Support Files */, ======= E779522D797C4953B7DE8DF60603311D /* UMCameraInterface */ = { +>>>>>>> master isa = PBXGroup; children = ( - BAB2051BFBF1D5BD05638AC8E7B85109 /* UMCameraInterface.h */, - CCA62E81BDE89FFD63039E537C29DE58 /* Pod */, - C081C95F200F58CE5A9BE2D140AE61CE /* Support Files */, + A1F2EC047E594CFA4D0885FFA0C78CA8 /* RCTLinkingManager.m */, + AAC84F4562117800261AFED58EB78E22 /* Pod */, + 0493B2B641DA261D2ACF16EDDD40872A /* Support Files */, ); - name = UMCameraInterface; - path = "../../node_modules/unimodules-camera-interface/ios"; + name = "React-RCTLinking"; + path = "../../node_modules/react-native/Libraries/LinkingIOS"; sourceTree = ""; }; - E84DA5675EE6E12723CB0789425C5385 /* RCT */ = { + EC2681DF3050B07586E8FDE5EFD30A68 /* UMBarCodeScannerInterface */ = { isa = PBXGroup; children = ( - DBE80FC28DE5E6718E15E07A1645FE03 /* CameraFocusSquare.h */, - 5E649318998C6A5430F3CDE02BA51186 /* CameraFocusSquare.m */, - 3FEBB170ECE6FBE930F0C00F5F5B9888 /* NSMutableDictionary+ImageMetadata.m */, - 4051B81D904406A95D40658642E09B40 /* RCTCamera.h */, - 77429F93EBF2EEF53EFA795BB3A1CB1E /* RCTCamera.m */, - A67F9C8C8DAFB94DA3E38DE52E9755C8 /* RCTCameraManager.h */, - A07BA7286321363302BB46C5009ADF25 /* RCTCameraManager.m */, - C1DDA4E3B16DF11680CD2792EB11BFBE /* RCTSensorOrientationChecker.h */, - 80E9BDBCA02503BCE916B4A383512F80 /* RCTSensorOrientationChecker.m */, + D28652E6BBEA100B1054DC6CF30BB53A /* UMBarCodeScannerInterface.h */, + 29ECDB1B1107A6FD7BB002178BE986B3 /* UMBarCodeScannerProviderInterface.h */, + 77F2748119FED77CC2223D01A76F77F0 /* Pod */, + 201E926F3AE7BDF4DB369E8609459110 /* Support Files */, ); - name = RCT; + name = UMBarCodeScannerInterface; + path = "../../node_modules/unimodules-barcode-scanner-interface/ios"; sourceTree = ""; }; - E9F53043DA087C6E5155A3452AECF905 /* React-jsi */ = { + EE0279CDA0F258C49A7E8B5F412FD121 /* RNFS */ = { isa = PBXGroup; children = ( - A1A628292518E6EC2B90111C99F7B3ED /* JSCRuntime.cpp */, - F03FAE0313E55A20AF5E7AD4C33867B5 /* JSCRuntime.h */, - 1E9E8C64C801C9CE55F76037EA582A82 /* jsi */, - E15BE415BAB630423F0596DE3145B035 /* Pod */, - D5504397557E8A10E03BE1C5B8B8CA40 /* Support Files */, + 2ECD171BD73075B2FEEE140063E833A3 /* Downloader.h */, + 3715F5076DFDC3FFCB4EA60F2F961E3B /* Downloader.m */, + 77A879542502F7070AF9A8C69ADB3DDE /* NSArray+Map.h */, + A9AC11E9C4EBA30121139ABC9DD3721F /* NSArray+Map.m */, + 6A08AFFF7ABB2A73C740720DC8B48B45 /* RNFSManager.h */, + CDFB79D1B72CC9F115EC4D15C238462B /* RNFSManager.m */, + 029E912D9AC35FC318A98A69CA57DB1B /* Uploader.h */, + 380ECDFF72AAF2807953070302C09F87 /* Uploader.m */, + 478223672993A51A4E6FCD9D79EB2859 /* Pod */, + 30EBE0A530FD2F10DFFF379D00F29292 /* Support Files */, ); - name = "React-jsi"; - path = "../../node_modules/react-native/ReactCommon/jsi"; + name = RNFS; + path = "../../node_modules/react-native-fs"; sourceTree = ""; }; - EBE0216B79C6ECD22ECDD11CC98AAEEA /* UMFaceDetectorInterface */ = { + EFF010EFB844810EEEFC6F40C9BCDD42 /* FBLazyVector */ = { isa = PBXGroup; children = ( - 48C2ECDD9194500FC2CC29FCAACBA71D /* UMFaceDetectorManager.h */, - FC474C0DC9DA24BE0898B3497BA96832 /* UMFaceDetectorManagerProvider.h */, - A999F879C2A19C591E453ACBBFE71EBB /* Pod */, - FF590B4C25E2F13C8DDD960B6C50F1BD /* Support Files */, + B6FDE0C17E514110101CF5EE33A548CE /* FBLazyIterator.h */, + FBAACB1138943EF35FF7C75CCD6BDD7F /* FBLazyVector.h */, + E33BCB8E547B5B00497221A2A8D044FD /* Pod */, + D2A5C0349639B2DB43D1B71E7B2FC530 /* Support Files */, ); - name = UMFaceDetectorInterface; - path = "../../node_modules/unimodules-face-detector-interface/ios"; + name = FBLazyVector; + path = "../../node_modules/react-native/Libraries/FBLazyVector"; sourceTree = ""; }; - EC3AA9F0B9DA2AF0ACC514481C1842C2 /* Pod */ = { + F2978E15F1C414F26E8A4B1598929138 /* Text */ = { isa = PBXGroup; children = ( - FDFAD7F97DE705EDE353E302BA5AEF92 /* FBLazyVector.podspec */, + E7B2BB32FCF0F092E6BE401E426BDA86 /* NSTextStorage+FontScaling.h */, + D2501C267A2FC93AB67F41F770596AB2 /* RCTTextShadowView.h */, + 9E0CA864C1AF0C38F5957BCB49759CC7 /* RCTTextView.h */, + 6D8C944CA73176CA901EDE3E863B88B5 /* RCTTextViewManager.h */, ); - name = Pod; + name = Text; + path = Libraries/Text/Text; sourceTree = ""; }; - ED6C894A9C5B50DDA246D7F71AB0FE28 /* Support Files */ = { + F2FA4D5BEE7A8DA6511E5BA0F298DE26 /* Transitioning */ = { isa = PBXGroup; children = ( - E3FCFF33AA3E2A0F8A9B9B5DD31CB904 /* UMBarCodeScannerInterface.xcconfig */, + D551D15A59714ABD8BFD282613E5B321 /* RCTConvert+REATransition.h */, + 4C8E172BCD8818FAF5F600F9A7CFA89E /* RCTConvert+REATransition.m */, + 3064E577B834E14AA7BEEFA5F550EFB8 /* REAAllTransitions.h */, + 79C420094E4350FC3E93DAC0D64FD079 /* REAAllTransitions.m */, + 0BE1A497289E5EF3532807BB0672CA50 /* REATransition.h */, + 20EDBA392CE0549EA72709998DAB4CF3 /* REATransition.m */, + F65D5AFA965740EFE12F227E5006718A /* REATransitionAnimation.h */, + 7AEC7B08D47B95D8F1162E0711769ECA /* REATransitionAnimation.m */, + BD9837B6437255BCB859B00D04472465 /* REATransitionManager.h */, + F891D39C738DFEB4BB91A3C191307D2F /* REATransitionManager.m */, + CF8A46E2B75B0A071D7339DE5DC251BE /* REATransitionValues.h */, + 8DDAB5E4F1BC86BC8B6AB3E831E03EF5 /* REATransitionValues.m */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMBarCodeScannerInterface"; + name = Transitioning; + path = ios/Transitioning; sourceTree = ""; }; - EEEE04AA9AEF63C4249372DFF01DFBA1 /* Base */ = { - isa = PBXGroup; - children = ( - 2D6EDFE7B99B9E14083822DFEEFDDE7E /* RCTAssert.h */, - DEF877F6A8610D103EFCF55DED7F63EE /* RCTAssert.m */, - 9F3AB5B21672C8FD806A4A28041D7497 /* RCTBridge.h */, - 6356F31FAB4832CC95D0D7F145BA4405 /* RCTBridge.m */, - DF44912341ECB7D419B05AC16F495184 /* RCTBridge+Private.h */, - 85A1172C991511F2F7A66D6D1D438FD5 /* RCTBridgeDelegate.h */, - 2D18CDD8A66DF13080BE00ED2CD501D7 /* RCTBridgeMethod.h */, - D42275B1E96E28AD3BB9684BC4D949E5 /* RCTBridgeModule.h */, - 26C85BB7C62A0291B4631540EDD8B82C /* RCTBundleURLProvider.h */, - 77950938D25254755107AF7A3DA3DAD3 /* RCTBundleURLProvider.m */, - 357D18531E0BF5EDAD9B37F11CB07ED2 /* RCTComponentEvent.h */, - 0930BA6CC270D548CBCF7BDD321C90BB /* RCTComponentEvent.m */, - E3E568A05A5940FF03803827E72C1303 /* RCTConvert.h */, - 5D81590F072913BF2407FCF813F9C9CF /* RCTConvert.m */, - 366E87D3760B5D7F69DB262C17336604 /* RCTCxxConvert.h */, - 496F8B93E1DC46D1ED9189A3DB25F1DF /* RCTCxxConvert.m */, - 2C5189C75A7B9D6A5115CA1C0E958D24 /* RCTDefines.h */, - D534C0D10BAD2A44DEE6CFD4876B7DAB /* RCTDisplayLink.h */, - B2709C2A2A82DF59B93920E343F0BF71 /* RCTDisplayLink.m */, - C91132CA3291AEF4B3AC1657672B88F8 /* RCTErrorCustomizer.h */, - 086899C963756EA81D3BF66068B998F7 /* RCTErrorInfo.h */, - F4372AF93419DD78500473B7AFA091E6 /* RCTErrorInfo.m */, - CC3FBB022D093476AA39711DA11CCF3A /* RCTEventDispatcher.h */, - BC9271F21EF0A5B2E2926F82A3E134D0 /* RCTEventDispatcher.m */, - 14F57078C1B912051D87EAB514928A02 /* RCTFrameUpdate.h */, - F4CEF6DA90851B7C03A5C8E783E6FF6B /* RCTFrameUpdate.m */, - BCAF079CC0A283FEE718C35985733CB5 /* RCTImageSource.h */, - 21CB225F5AF46EF8DFF571B3779AA98F /* RCTImageSource.m */, - A63FC4F6AAD03E59182B41BE8B64FAAF /* RCTInvalidating.h */, - 1F68D1B71C821AFE3706612C0586D8CA /* RCTJavaScriptExecutor.h */, - A9D0B8D18725FBE98A7CE8F979D4D0BC /* RCTJavaScriptLoader.h */, - C9B8C2057C488A65EFA2EA318EA66D1F /* RCTJavaScriptLoader.mm */, - 9034EBEDF2F50BF023AE210BA0BCAF14 /* RCTJSStackFrame.h */, - 8B930F9C0008B463196586ADE424DEF8 /* RCTJSStackFrame.m */, - 4F35CF383459906ECCADF6DD834BEA8C /* RCTKeyCommands.h */, - B59B620B27E493DC4791A71E5BB8AE41 /* RCTKeyCommands.m */, - 4DDC6BCDC740BA0E8668EC5C11BFC529 /* RCTLog.h */, - B30B2ED5CBD3170E4542399767A54AB7 /* RCTLog.mm */, - 1CEA3B7001165FC8F946660199830E73 /* RCTManagedPointer.h */, - 0BBD5AFBE87640D5A21E2EF4C8062B33 /* RCTManagedPointer.mm */, - 2734AB12BB05607E2FDBA7C29858766B /* RCTModuleData.h */, - 13823ED65FCEB90841808BEABFEF8BFA /* RCTModuleData.mm */, - F2EC7E37574AC9B8A51A4964B13BF358 /* RCTModuleMethod.h */, - 8B8972EB016354758E7C016EAD1E8C86 /* RCTModuleMethod.mm */, - FA979A2697E8F9E255F3F1367F77A8B2 /* RCTMultipartDataTask.h */, - 2E24DF46D515469CF4167E4141DE6FF5 /* RCTMultipartDataTask.m */, - 86F51720E6CC25F87EC645911BA0BC2D /* RCTMultipartStreamReader.h */, - 46DC234F8A08E34CE0A551A9349C2D43 /* RCTMultipartStreamReader.m */, - 0D07A28B636181B81F49C199C22562AC /* RCTNullability.h */, - CC9D21E55D9D61E113B00D7DE4570075 /* RCTParserUtils.h */, - 717024D3028EB8CE8C865964753A9E2F /* RCTParserUtils.m */, - 750F52775A288BF229AE42C5D1CCB0C4 /* RCTPerformanceLogger.h */, - 8746EC0AEB36A9BD3759A8A0CCB7E80E /* RCTPerformanceLogger.m */, - B1B129C745244EA3B453CA72DA8FBB1A /* RCTReloadCommand.h */, - 338A5695A7CD602E2CCD515C444E00D3 /* RCTReloadCommand.m */, - B9FE3F82CF6C7EB13A7446DE7657ADB1 /* RCTRootContentView.h */, - 1D5C6E59B170D018B79733F767B0A4B0 /* RCTRootContentView.m */, - 526FE0456B33C48B70C147A4E9A46FE3 /* RCTRootView.h */, - D1DA4DD5BB2B96D172D60052BF4DE18F /* RCTRootView.m */, - 29D66464F66E2BD694FC8F551923B8EE /* RCTRootViewDelegate.h */, - F6AEF0EA1FE35A2768BF4F73E009880C /* RCTRootViewInternal.h */, - DCE3967CFAD8DD2173098838064D3A4F /* RCTTouchEvent.h */, - EC4C848556E4CD0D318924ED5C7F49DB /* RCTTouchEvent.m */, - 8EB675CAF6351F58F782C161FB3A18C7 /* RCTTouchHandler.h */, - 807AECB982EB97A888AE9E276AFD5749 /* RCTTouchHandler.m */, - F96DCA37D837C6F2F2C5D08670339A3A /* RCTURLRequestDelegate.h */, - 60A3EFCD4755384601C55FD7C929A972 /* RCTURLRequestHandler.h */, - C3D67BFD5029B0B38BE3147A35F0AF92 /* RCTUtils.h */, - 0DD37996CD6533D002C700A236438A91 /* RCTUtils.m */, - 8C737A388ADC5FB753F8D4307A0A0667 /* RCTVersion.h */, - E8443FABDF7C5A8A1A2E55B50A2FC032 /* RCTVersion.m */, - 1E019E6439924DC1166B028508E895B4 /* RCTWeakProxy.h */, - 5024297038356BFD3678670A46371EC9 /* RCTWeakProxy.m */, - 1B9D102269792F64A408F7193B0FFF5E /* Surface */, + F2FAC112AF1A84FA00355B7DE0C861C9 /* Pod */ = { + isa = PBXGroup; + children = ( + 7B92F4F297E0AF7F9B7D6E704B4C14B9 /* LICENSE */, + 465B092FA76CF6048E7527E63D8BEE89 /* README.md */, + 2825FF21CEA7F8B29A3FDAC1D34776E6 /* RNGestureHandler.podspec */, ); - name = Base; - path = React/Base; + name = Pod; sourceTree = ""; }; - F29C7DEA3A11BCF0F8D82E10EFD071F1 /* UMViewManagerAdapter */ = { + F5BC84F6971DFE2E5A57EBEBCF98C9C8 /* React-jsi */ = { isa = PBXGroup; children = ( - 80904F518A757EF66BB56D8FE02F659C /* UMViewManagerAdapter.h */, - 44FC3DDA1CEB33B4066D816B1190FB01 /* UMViewManagerAdapter.m */, +<<<<<<< HEAD + CDF26F1F867AD720B5AEE55C068A61CB /* JSCRuntime.cpp */, + E363095CF1CF7626BAC4C320A1546AC6 /* JSCRuntime.h */, + 7F0C0C40050FE70A7CFA92D10BD044C6 /* jsi */, + 463E170844F6DC452E6825BEED47522D /* Pod */, + 086080FA1C61F9832DA42D718CC82A5F /* Support Files */, ); - name = UMViewManagerAdapter; - path = UMReactNativeAdapter/UMViewManagerAdapter; + name = "React-jsi"; + path = "../../node_modules/react-native/ReactCommon/jsi"; sourceTree = ""; }; - F4615719A6145FD73540CDA2FB969EE1 /* Pod */ = { - isa = PBXGroup; - children = ( + F80948246AA1F4C8EAB40AC586C5BC8F /* Services */ = { +======= 2DC49D03950BBE02396ADBFAFBC84648 /* LICENSE.md */, AFBF20A6BECDA091CBA13D2B8E472D06 /* react-native-orientation.podspec */, CA427CE091B4B8C07299BF31BC031772 /* README.md */, @@ -11592,91 +12691,115 @@ name = "Development Pods"; ======= F47967381F8B1FBFF4583E46810CD296 /* Services */ = { +>>>>>>> master isa = PBXGroup; children = ( - 912E58763854F0F6D6F68B19034E4B69 /* UMReactFontManager.h */, - 77F7E2C1DE1135C2F37F7D93914D3569 /* UMReactFontManager.m */, - 1D14EDD194DD2199C3E3FA25415C154D /* UMReactLogHandler.h */, - EC85A22E8843911FD8B38367B9693521 /* UMReactLogHandler.m */, - 1534E0F42D1653F13F97F0B31A1B1782 /* UMReactNativeAdapter.h */, - 333C144DFBB96E17F29FC5FE1A6B7F8E /* UMReactNativeAdapter.m */, - 4737F454B2F45B034C96C2A4B62F4634 /* UMReactNativeEventEmitter.h */, - 81C6E572A0D81F177745262C2AA80DAA /* UMReactNativeEventEmitter.m */, + F02C350BC6AEFFEA1D66E85846E68A68 /* UMReactFontManager.h */, + A5E1FA72468AD21AE8048E18EC0648E9 /* UMReactFontManager.m */, + E57A66CE0DB2E9A42356484F620E4E89 /* UMReactLogHandler.h */, + E0F85B9B4A6FA2DC7225B842090C906A /* UMReactLogHandler.m */, + C94752D1F539408E76E6DACBFBB67FF1 /* UMReactNativeAdapter.h */, + 5D48BAFB1C309A57A7D6FB6E19406628 /* UMReactNativeAdapter.m */, + 974792B850F0F5442722BFBF8CF9CE5E /* UMReactNativeEventEmitter.h */, + 980AADFAD2FCE5804B469C508EDBBF7E /* UMReactNativeEventEmitter.m */, ); name = Services; path = UMReactNativeAdapter/Services; sourceTree = ""; }; - F5C7DFE99334FD62B789175B06FD3FCC /* event */ = { + F8D3DADD4116008C3E9C6E068390BB43 /* Support Files */ = { isa = PBXGroup; children = ( - 53144F697C32AF10D37DDF8CED64AD9B /* event.cpp */, - 9709F639037310D052C5DE3062D3551D /* event.h */, + 79C919DFD21DCBABB45D387C497820D6 /* UMFaceDetectorInterface.xcconfig */, ); - name = event; - path = yoga/event; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/UMFaceDetectorInterface"; sourceTree = ""; }; - F6B6A4E31C0253A69A7C493F1A1FD48B /* Support Files */ = { + F9E3D45B43E4DE5E368BE266FF9519C7 /* CxxUtils */ = { isa = PBXGroup; children = ( - 20619492E8F06CCFA2AB068319ED78B1 /* EXAppLoaderProvider.xcconfig */, - CEB09C3079331BF2C19AFE2D6630AEA2 /* EXAppLoaderProvider-dummy.m */, - DF8785E3D62A48E9E82A00B1A128B74D /* EXAppLoaderProvider-prefix.pch */, + 478789F4F50E4C1F932B0B3132B4D8C5 /* RCTFollyConvert.h */, + A8C72B04510F2FD9E634872D8FCF810C /* RCTFollyConvert.mm */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXAppLoaderProvider"; + name = CxxUtils; + path = React/CxxUtils; sourceTree = ""; }; - F82880B1B2BAE926E6826541FBA2C66A /* Support Files */ = { + FB11B6420489477B3BE6F9E10F0E0DAF /* Support Files */ = { isa = PBXGroup; children = ( - 47AF2B7385AF622DE91A0DA99DC6CF59 /* React-CoreModules.xcconfig */, - 1CAF3E18892A67FB4C6C1F2789F768CC /* React-CoreModules-dummy.m */, - 7C813D57598019AC330FC65A556837EA /* React-CoreModules-prefix.pch */, + BF541A0E0B90E487DCF1C8C83BA94220 /* React-Core.xcconfig */, + 454D75458945A70E8E6448B729A6F59C /* React-Core-dummy.m */, + 3BEB0C4A31A8D27A5097162C6CCF0F3A /* React-Core-prefix.pch */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-CoreModules"; + path = "../../ios/Pods/Target Support Files/React-Core"; sourceTree = ""; }; - FBED72020677764CB754B39D5B838B76 /* CxxUtils */ = { + FC75151131D0E6EA2A33C14CB4153253 /* Support Files */ = { isa = PBXGroup; children = ( - AC034016018228A5B98655C28AFBE96F /* RCTFollyConvert.h */, - 979D04B76B0D6DA154F54C8403D4DB83 /* RCTFollyConvert.mm */, + A5E23FA24B4A4D3A35D5F88EC5AEEAEE /* EXConstants.xcconfig */, + 3376256E25F4B9D09295A2D94200BA10 /* EXConstants-dummy.m */, + 142089E68B4E828C83404E460E3FE8E1 /* EXConstants-prefix.pch */, ); - name = CxxUtils; - path = React/CxxUtils; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/EXConstants"; sourceTree = ""; }; - FD0EBD2BE2A444E1F8A0186813A06A4E /* Support Files */ = { - isa = PBXGroup; - children = ( - C78D720FBA72D58F0FAE0906F36F00CF /* UMConstantsInterface.xcconfig */, + FF2994701162A5FAA72EF8A5F65AD9CE /* RNGestureHandler */ = { + isa = PBXGroup; + children = ( + D7E895A5B582943705B84D486EEC69B5 /* RNGestureHandler.h */, + DA548A36C7D5AA89A935F1F569623757 /* RNGestureHandler.m */, + C47D9D601A823B44E62E1C19E7A63E37 /* RNGestureHandlerButton.h */, + 36CA0F897DB19A4C6057485A8781FDB1 /* RNGestureHandlerButton.m */, + BB5329DC83B405A969DCA856790D24FA /* RNGestureHandlerDirection.h */, + 3BCFDAE2AAA5F22BB3BFE5E40E38FD16 /* RNGestureHandlerEvents.h */, + 055741D97CC66254675FFFE83B7585C1 /* RNGestureHandlerEvents.m */, + 26710D576F9E5EE6CAECE652E5CECE3D /* RNGestureHandlerManager.h */, + 17995E2273EDB53DB57D131C0AABE02C /* RNGestureHandlerManager.m */, + F8CEC9AD6669928BAFCE66B5CCACCED5 /* RNGestureHandlerModule.h */, + 8A68D20604028228384E240407A2B2CD /* RNGestureHandlerModule.m */, + 638B5B971E1338ED9DE3056F4B85A468 /* RNGestureHandlerRegistry.h */, + 1569131E6999C5BD135B6C6CCE9613D0 /* RNGestureHandlerRegistry.m */, + 8FB7033998222FC0C9BAD8D53C89ACEA /* RNGestureHandlerState.h */, + E17485EB0862A6D7C352D04327680888 /* RNRootViewGestureRecognizer.h */, + A724C78E2286A87FF51042B47EFF6039 /* RNRootViewGestureRecognizer.m */, + B1CAC97971220315C6E15311695BC584 /* Handlers */, + F2FAC112AF1A84FA00355B7DE0C861C9 /* Pod */, + 3392C36E29E793D761FAF3D1EFE2F946 /* Support Files */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMConstantsInterface"; + name = RNGestureHandler; + path = "../../node_modules/react-native-gesture-handler"; sourceTree = ""; }; - FF590B4C25E2F13C8DDD960B6C50F1BD /* Support Files */ = { + FF53E655C33B4C775BA34B8D32246739 /* Support Files */ = { isa = PBXGroup; children = ( - A2287FA90E130F91559C400F63536366 /* UMFaceDetectorInterface.xcconfig */, + 4F4C0DC0E8EFFD57AE8A3FB10990E1B9 /* react-native-video.xcconfig */, + 90C20F1B21CC2A61E46C05C4A6083FB0 /* react-native-video-dummy.m */, + 7B7A230C1F4044F3FC99F3F9AFE0A102 /* react-native-video-prefix.pch */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMFaceDetectorInterface"; + path = "../../ios/Pods/Target Support Files/react-native-video"; sourceTree = ""; }; - FF61BAC1DB0FA7AD38FB86F01424E609 /* Inspector */ = { + FFB2442A4641856E518D26132B394B41 /* Support Files */ = { isa = PBXGroup; children = ( - 4FFDB14E4B37EA9BB4F18CFDB892D196 /* RCTInspector.h */, - B67C910F38A433A36F42D27D38770D44 /* RCTInspector.mm */, - 653D5DD087ED5F179D82C7D1DE613FBC /* RCTInspectorPackagerConnection.h */, - 9C740197E8A9F482E6343600D3707559 /* RCTInspectorPackagerConnection.m */, + 30CCF8B07D8E64BACD48ABECAF0665A0 /* RNCMaskedView.xcconfig */, + 472483273F4BB06B1284E224DAFE2DD2 /* RNCMaskedView-dummy.m */, + 1C4BB3F85F6A2CE35AD22262D370CE72 /* RNCMaskedView-prefix.pch */, ); +<<<<<<< HEAD + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/RNCMaskedView"; +======= name = Inspector; path = React/Inspector; +>>>>>>> master >>>>>>> master sourceTree = ""; }; @@ -11701,6 +12824,17 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 0B741959015901DA5837D9E7E20FC6EB /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 67B31BB892A6256D7D5AC1C8E3A3C50B /* Downloader.h in Headers */, + E0058738355C0756A8BA6821D6D4C26E /* NSArray+Map.h in Headers */, + 15A8831A4069B311A1D8A57F87FE35FB /* RNFSManager.h in Headers */, + 0BBEE39FAAFB6212065F91892C38BE1C /* Uploader.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; 1156B26C59F05F6FC8428B80FE391883 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -12259,13 +13393,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 992E05AB48D992290495EC6C35C1228B /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; 9D66FD68E952A8F203F6F9B8A447A185 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -12471,6 +13598,13 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + FF9C6DD7A10604BEDE6C6AEF8E35B449 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; /* End PBXHeadersBuildPhase section */ /* Begin PBXNativeTarget section */ @@ -12634,6 +13768,24 @@ productReference = B058F035CFD84ECBF8414E4EAE5834FC /* libreact-native-video.a */; productType = "com.apple.product-type.library.static"; }; + 430D7C4A9EC9AB29B0505AFA151AABBF /* RNFS */ = { + isa = PBXNativeTarget; + buildConfigurationList = B247E0332EEE7CB26B063FA63F69D455 /* Build configuration list for PBXNativeTarget "RNFS" */; + buildPhases = ( + 0B741959015901DA5837D9E7E20FC6EB /* Headers */, + A535EBED4706DE7A2D2CF7D99B5CF274 /* Sources */, + 4A1457F4618C68E60761428A5B0CF7B5 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + 368D8CA6A8520BCA5C52E459B13E83BD /* PBXTargetDependency */, + ); + name = RNFS; + productName = RNFS; + productReference = 9A70011370B46387FBFE517906404002 /* libRNFS.a */; + productType = "com.apple.product-type.library.static"; + }; 463F41A7E8B252F8AC5024DA1F4AF6DA /* React-cxxreact */ = { isa = PBXNativeTarget; buildConfigurationList = E8AA29BA0F35EB58274C18D228085DD5 /* Build configuration list for PBXNativeTarget "React-cxxreact" */; @@ -12885,6 +14037,13 @@ }; 9150E4D55D08534096B44A9C64672F3D /* Pods-Gladeo_App */ = { isa = PBXNativeTarget; +<<<<<<< HEAD + buildConfigurationList = EB87FA5E9CBBA7A413CD1E2C9FE00F2D /* Build configuration list for PBXNativeTarget "Pods-Gladeo_App" */; + buildPhases = ( + FF9C6DD7A10604BEDE6C6AEF8E35B449 /* Headers */, + 4B24EB6F40B0774BFA0A571AFCDDB22E /* Sources */, + BC49ACBE546494EFC9BD02644005D049 /* Frameworks */, +======= <<<<<<< HEAD buildConfigurationList = 3473A6583FD1471039C306101CA39727 /* Build configuration list for PBXNativeTarget "Pods-Gladeo_App" */; buildPhases = ( @@ -12897,11 +14056,71 @@ 992E05AB48D992290495EC6C35C1228B /* Headers */, 7A2B993934C383A226E05117494D4973 /* Sources */, F152E80DE1808D687448715E6716DD2B /* Frameworks */, +>>>>>>> master >>>>>>> master ); buildRules = ( ); dependencies = ( +<<<<<<< HEAD + 6B4BE37F265BF9230CA0DE305C00AF2F /* PBXTargetDependency */, + EC25688D2BC35C5982DD3F227E863C4F /* PBXTargetDependency */, + 649F21BD81AAF933EA5EDDDB230BBDAB /* PBXTargetDependency */, + AD58A384FDAA404545031805755BDBEF /* PBXTargetDependency */, + FEC8835CE7CDC483589DA6DBC92EAD53 /* PBXTargetDependency */, + 049B114B20E6F9EED65127400644C53D /* PBXTargetDependency */, + 3E39CB9BA820E245A546AEB8033AD2F9 /* PBXTargetDependency */, + 4212F7FC950AB46B995B611C782E4E05 /* PBXTargetDependency */, + E9A19D417F10A7B14E8D17D95EFA7153 /* PBXTargetDependency */, + 46F45E8BE92E2DEFD02BDBEE9A60E3A3 /* PBXTargetDependency */, + C2762A9D36AAD28E631335FDDB0325DC /* PBXTargetDependency */, + 6B6FE74AF266F6755BCA70F60A6FBE9C /* PBXTargetDependency */, + C94359AD17D1F5EB9B89644052E1B055 /* PBXTargetDependency */, + 73C29EF607C9F600BD9AB9A752217952 /* PBXTargetDependency */, + F648F1EDB3BB2BB5A517A0A7809A7715 /* PBXTargetDependency */, + E79A79604FF1BE904717817F48963CDF /* PBXTargetDependency */, + 40808CDBB209F9F91BBADDF9ED71D9CF /* PBXTargetDependency */, + 798E7A3FAC450300883F6496632C5182 /* PBXTargetDependency */, + D8A70BAA237A2A1A424E2B66DB8A0724 /* PBXTargetDependency */, + 1B0834494CCC5FF6A9564481DACF7B31 /* PBXTargetDependency */, + DE9BA12A43F89D11FD7B1F1CA48592ED /* PBXTargetDependency */, + 7B76A0E3DF2B0B7394E4E31E05227505 /* PBXTargetDependency */, + 2E5719CEFCD82C52760167C6CC7C93BA /* PBXTargetDependency */, + 8BE0C1E9E355AF9F0977864D310A258E /* PBXTargetDependency */, + 93E7BCED58EA57332154F60EC6A51A71 /* PBXTargetDependency */, + B8DB80593B088953E5ECEA6F05B4FD07 /* PBXTargetDependency */, + 511E33DA0CF4F5C5D2B8FBBA3ED26E71 /* PBXTargetDependency */, + 57A8ACAEDE43D8E6D29FEC45782ADAE3 /* PBXTargetDependency */, + 53F0DE3B98FA8C114F58D764638B9FBC /* PBXTargetDependency */, + 9F68B6A0FFEA55C5A21762E81BD782A6 /* PBXTargetDependency */, + 9355A39CBD497C96C370F1C148042E76 /* PBXTargetDependency */, + 0114ED7B95FF3EFA8899611AD2552E93 /* PBXTargetDependency */, + AA83965E3ADD787A86DB16FA91911EBF /* PBXTargetDependency */, + F28CAE64ED11EB368206418D82EB8EE9 /* PBXTargetDependency */, + 74EECDED9B7B08F074AC93696A790D34 /* PBXTargetDependency */, + FA1B84A405DE3DAF9E988E31959A45F6 /* PBXTargetDependency */, + C88C00A4C27FE85FC9AE90C85F9B7456 /* PBXTargetDependency */, + DB844C6A214F376805791DFF6EC06226 /* PBXTargetDependency */, + DA70BF963744E2DBEB51F3C78F95B6A3 /* PBXTargetDependency */, + 1CA504699108EF6E0352963DE8F38F84 /* PBXTargetDependency */, + 89FEEB75A4233492C6634D72B8E103D9 /* PBXTargetDependency */, + 23ACC4A92F04D6A54E8D116B918A48F7 /* PBXTargetDependency */, + 09872D69D37995546697860FBDFF2530 /* PBXTargetDependency */, + 847AEA6D49977A1920E036E96F88130B /* PBXTargetDependency */, + BBBF2D4AD9F5DBFFF9E0EBC6DE74D470 /* PBXTargetDependency */, + 9CF8FB33E648C0407E98246C9A7215D2 /* PBXTargetDependency */, + BF56206633C393A6E4C64C9AE1937DFE /* PBXTargetDependency */, + EB7CC0AAD35A977AA7147F007FF347AA /* PBXTargetDependency */, + 518CFA85961AAE646C676F000476A45C /* PBXTargetDependency */, + 75E2F8ECC0D04AE16A33A93ECCA408EB /* PBXTargetDependency */, + 50014FBD157C014229B6DB7DA990D8FD /* PBXTargetDependency */, + E64A25B19F59036BA3668EFB63A6585F /* PBXTargetDependency */, + 015B6D1C62B95DC5527B68E2BB98F536 /* PBXTargetDependency */, + B3525671B1626E7F4FCF3F6B19DEB1BB /* PBXTargetDependency */, + 6C92BCDB401311592CF60F818DD9ACBE /* PBXTargetDependency */, + 74574FB751690D787566BAD41CA7E6C6 /* PBXTargetDependency */, + 40474E0AFA85046BF1AA4B5E39EF38AA /* PBXTargetDependency */, +======= <<<<<<< HEAD 282A4D1CCFFD1CACB4111CD167F4E46D /* PBXTargetDependency */, 713F84C9F9FE482E2F0FA163671DA469 /* PBXTargetDependency */, @@ -13015,6 +14234,7 @@ F6E1AF2BCB48B0594F193246EE0AC145 /* PBXTargetDependency */, 0F9ABDCB3FE9A3E9F6B91F28B08B0D05 /* PBXTargetDependency */, C3AE48E5BAC2F76E13334FE0702E85E1 /* PBXTargetDependency */, +>>>>>>> master >>>>>>> master ); name = "Pods-Gladeo_App"; @@ -13444,10 +14664,14 @@ Base, ); mainGroup = CF1408CF629C7361332E53B88F7BD30C; +<<<<<<< HEAD + productRefGroup = 5D4B344944774274720267DA8CCFBA0B /* Products */; +======= <<<<<<< HEAD productRefGroup = D4F5F7076905923B725A2242CF4BB536 /* Products */; ======= productRefGroup = C884871628F2F554DC291ED17B4E8863 /* Products */; +>>>>>>> master >>>>>>> master projectDirPath = ""; projectRoot = ""; @@ -13493,6 +14717,7 @@ 89F573A6B1292B3B2296B2206BFDC3D7 /* RNCAsyncStorage */, 1A0445474DA11CA659C4BCC5AB64B1BF /* RNCMaskedView */, AC1ED4B51A5664E3FBB86D17D6436D82 /* RNConvertPhAsset */, + 430D7C4A9EC9AB29B0505AFA151AABBF /* RNFS */, B9E8F4CA2A4A8599389FEB665A9B96FF /* RNGestureHandler */, FF879E718031128A75E7DE54046E6219 /* RNReanimated */, 214E42634D1E187D876346D36184B655 /* RNScreens */, @@ -13688,12 +14913,20 @@ ); runOnlyForDeploymentPostprocessing = 0; }; +<<<<<<< HEAD + 4B24EB6F40B0774BFA0A571AFCDDB22E /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 83AD01363E37A0F8FF3FA782BFCD50B0 /* Pods-Gladeo_App-dummy.m in Sources */, +======= 3B9BC35BB75B83DA0EF54F1CD0A8F341 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( A031A8D4C70ABFA2E6794E0A997A259C /* react-native-background-timer-dummy.m in Sources */, DC83F9A19E21E99237CA1E1903EE6DFD /* RNBackgroundTimer.m in Sources */, +>>>>>>> master ); runOnlyForDeploymentPostprocessing = 0; }; @@ -13919,14 +15152,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 7A2B993934C383A226E05117494D4973 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 8E80213E5EE273CC02792D31928E3A53 /* Pods-Gladeo_App-dummy.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; 9552EA7922793127491C40375E561678 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -14103,6 +15328,18 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + A535EBED4706DE7A2D2CF7D99B5CF274 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 0C417A506245A7F8729ACD3BEB073A5A /* Downloader.m in Sources */, + 750F5607D3226E003289AB5A3FF3024B /* NSArray+Map.m in Sources */, + E90B927499B48F81A40091270F0B3303 /* RNFS-dummy.m in Sources */, + E088268A133ED2BB30952B9D8BF49E6C /* RNFSManager.m in Sources */, + C815D4197155A0546E490F20EC4B3B73 /* Uploader.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; BF08DBB6FF8C0D4E4475C431048A31D0 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -14274,6 +15511,25 @@ target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = 10AC45DE3E2B4156F4C1D366EC6D4CD3 /* PBXContainerItemProxy */; }; +<<<<<<< HEAD + 0114ED7B95FF3EFA8899611AD2552E93 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-jsi"; + target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; + targetProxy = 20EBCAFFC6E5931FDADBC80ED7E023F0 /* PBXContainerItemProxy */; + }; + 015B6D1C62B95DC5527B68E2BB98F536 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-cameraroll"; + target = BA3F5E5AA483B263B69601DE2FA269CB /* react-native-cameraroll */; + targetProxy = 2355BB068517EB300E315EDB1F91A128 /* PBXContainerItemProxy */; + }; + 049B114B20E6F9EED65127400644C53D /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FBLazyVector; + target = 8CC4EAA817AA86310D1900F1DAB3580F /* FBLazyVector */; + targetProxy = B5AB5D79F2323E9F94B8D0D74798E26B /* PBXContainerItemProxy */; +======= <<<<<<< HEAD 028DE5CA5132F475F67497E90229CC7D /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -14286,6 +15542,7 @@ name = "React-CoreModules"; target = E16E206437995280D349D4B67695C894 /* React-CoreModules */; targetProxy = F41EB3E301644596EC843867EB700612 /* PBXContainerItemProxy */; +>>>>>>> master >>>>>>> master }; 04ACF6A7077CB0F39215F8A0835FA361 /* PBXTargetDependency */ = { @@ -14300,11 +15557,19 @@ target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; targetProxy = 6848134DC4F0BD603C0E7B1CC49270EA /* PBXContainerItemProxy */; }; +<<<<<<< HEAD + 09872D69D37995546697860FBDFF2530 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMImageLoaderInterface; + target = 97C4DE84FA3CC4EC06AA6D8C249949B7 /* UMImageLoaderInterface */; + targetProxy = 484CD2027B56D60D8813A6BCA5A6F38B /* PBXContainerItemProxy */; +======= 09C0DF35F4CE0323FE5C8411D8EC2D4F /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-RCTImage"; target = 4F265533AAB7C8985856EC78A33164BB /* React-RCTImage */; targetProxy = 80B79B6295E05BAB007D0A78B8B1B3AF /* PBXContainerItemProxy */; +>>>>>>> master }; 0AA8CC37728D8EAABDB0AD758D63A66C /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -14318,30 +15583,12 @@ target = 8CC4EAA817AA86310D1900F1DAB3580F /* FBLazyVector */; targetProxy = EE98A4C80DE900CD0C9ED8195B4EF52D /* PBXContainerItemProxy */; }; - 0E9FF0D70B75C29F70D522EAEECC3607 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RCTRequired; - target = E7E7CE52C8C68B17224FF8C262D80ABF /* RCTRequired */; - targetProxy = 049EB63AD3F2FF9D9E3DC99EE06EDC5D /* PBXContainerItemProxy */; - }; - 0F9ABDCB3FE9A3E9F6B91F28B08B0D05 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-safe-area-context"; - target = BD9A27D8398DEB3205D3F8937B0672A0 /* react-native-safe-area-context */; - targetProxy = FD198AFDB70D8DBD046161B7CB9A5C65 /* PBXContainerItemProxy */; - }; 10ACD873D4AA06BC39DF0BBD20AF426C /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = DoubleConversion; target = 2AB2EF542954AB1C999E03BFEF8DE806 /* DoubleConversion */; targetProxy = 8A4A4E6E8DA4967D0D2C726A07AAE571 /* PBXContainerItemProxy */; }; - 10B3B6BA977FE283813BD2BD71E3355E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = EXPermissions; - target = 0A72FB88825FDC7D301C9DD1F8F96824 /* EXPermissions */; - targetProxy = 30A7A97BFD45D38ECD4F3245D658773C /* PBXContainerItemProxy */; - }; 11354CC981A9CEB5843219AC9B4611B0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-Core"; @@ -14349,6 +15596,8 @@ targetProxy = 084F499F0E75CA5B6B09C094AB6A9F45 /* PBXContainerItemProxy */; }; <<<<<<< HEAD +======= +<<<<<<< HEAD ======= 122EB90F0A2F45966DBFCDDF98C502F5 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -14356,6 +15605,7 @@ target = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6 /* React-RCTText */; targetProxy = C9FF4B6F18057FA0C80428F4D429ABCE /* PBXContainerItemProxy */; }; +>>>>>>> master >>>>>>> master 18FD1501C797648CCBBE6F5A312BFE05 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -14369,6 +15619,13 @@ target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; targetProxy = D03031D05C2A7191DF12BF8F97F601C4 /* PBXContainerItemProxy */; }; +<<<<<<< HEAD + 1B0834494CCC5FF6A9564481DACF7B31 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-Core"; + target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; + targetProxy = 809BFB273142BAA84AB15A8D0D25D23D /* PBXContainerItemProxy */; +======= <<<<<<< HEAD 19C67FC2A3F594B8F3A7E0FC65B7266D /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -14387,6 +15644,7 @@ name = "React-RCTVibration"; target = 53D121F9F9BB0F8AC1C94A12C5A8572F /* React-RCTVibration */; targetProxy = 68ADA07DCC825B41AED64B06D80F2432 /* PBXContainerItemProxy */; +>>>>>>> master >>>>>>> master }; 1C4E73F4824F6262D0EE4BA14476390A /* PBXTargetDependency */ = { @@ -14395,6 +15653,13 @@ target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = 39687AC1603DF372C203C8932B44B4BC /* PBXContainerItemProxy */; }; +<<<<<<< HEAD + 1CA504699108EF6E0352963DE8F38F84 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMFaceDetectorInterface; + target = 2AD4F40E67E1874A0816F6B34289EB41 /* UMFaceDetectorInterface */; + targetProxy = 80F11B737078565757CD5C94294E674A /* PBXContainerItemProxy */; +======= <<<<<<< HEAD 1CD97BF86EDD84C2CBD6E96F59B7342E /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -14413,6 +15678,7 @@ name = glog; target = D0EFEFB685D97280256C559792236873 /* glog */; targetProxy = F34B52C2FF7F6D62449D5ADBBABFB331 /* PBXContainerItemProxy */; +>>>>>>> master >>>>>>> master }; 1F574EDE65890F00E86F08E709F3AB67 /* PBXTargetDependency */ = { @@ -14421,18 +15687,19 @@ target = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6 /* React-RCTText */; targetProxy = 1D7F919A074687D75E702320F80F17D1 /* PBXContainerItemProxy */; }; - 208B366E3E44EDE6CCC921EF9BF02687 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = EXFileSystem; - target = 868B90C74770285449C60DBA82181479 /* EXFileSystem */; - targetProxy = 9A83A20DE18115AC1C522BB6E1B1B72F /* PBXContainerItemProxy */; - }; 225FB2C80E7F501AB0FCEC431989B3CA /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = UMCore; target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; targetProxy = FD6F7C063B0D5D823B61827AB81BC1B4 /* PBXContainerItemProxy */; }; +<<<<<<< HEAD + 23ACC4A92F04D6A54E8D116B918A48F7 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMFontInterface; + target = 014495932E402CA67C37681988047CA2 /* UMFontInterface */; + targetProxy = B7724A3DB0308CF3C26343581E263151 /* PBXContainerItemProxy */; +======= <<<<<<< HEAD 23F6202BB16086873CC14007CAD434B8 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -14451,6 +15718,7 @@ name = "mobile-ffmpeg-https"; target = 2FE1A9244861B63BCB2A33D4371EF594 /* mobile-ffmpeg-https */; targetProxy = C85B1F7866F6BA1BAE6E65A7E4E474BC /* PBXContainerItemProxy */; +>>>>>>> master >>>>>>> master }; 2559A81BC7753CC57D5A6C1E7CF8D5D9 /* PBXTargetDependency */ = { @@ -14483,6 +15751,8 @@ target = D0EFEFB685D97280256C559792236873 /* glog */; targetProxy = F9D3756881C74D34E390BDDADE67CF64 /* PBXContainerItemProxy */; }; +<<<<<<< HEAD +======= <<<<<<< HEAD 273038539E22C27E6619607975703E3A /* PBXTargetDependency */ = { ======= @@ -14492,6 +15762,7 @@ target = FF879E718031128A75E7DE54046E6219 /* RNReanimated */; targetProxy = AB3E9C47430277AE59B44058C4D2DB4E /* PBXContainerItemProxy */; }; +>>>>>>> master 2AA010E3221FCB666E0D6123C66594C6 /* PBXTargetDependency */ = { >>>>>>> master isa = PBXTargetDependency; @@ -14512,6 +15783,9 @@ target = D0EFEFB685D97280256C559792236873 /* glog */; targetProxy = 7C53CB5C717DF2F107152E0C7B720455 /* PBXContainerItemProxy */; }; +<<<<<<< HEAD + 2E5719CEFCD82C52760167C6CC7C93BA /* PBXTargetDependency */ = { +======= 3B9600BD9B2B7491EB7A1EC41DE42B07 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-cxxreact"; @@ -14519,16 +15793,23 @@ targetProxy = FBFDA3E7B57C3BF2C0FA34647F2347A1 /* PBXContainerItemProxy */; ======= 32D421C0C90F67CD265880C0E2C39D1B /* PBXTargetDependency */ = { +>>>>>>> master isa = PBXTargetDependency; - name = "React-jsinspector"; - target = F7D033C4C128EECAA020990641FA985F /* React-jsinspector */; - targetProxy = 042047E33AA2C11381686F50276826FA /* PBXContainerItemProxy */; + name = "React-RCTAnimation"; + target = 938CCE22F6C4094B3FB6CF1478579E4B /* React-RCTAnimation */; + targetProxy = DE998AE17CE3BAB104C80189D9B1C2D4 /* PBXContainerItemProxy */; }; - 3648396C3F61F696B8AB49932630CF4F /* PBXTargetDependency */ = { + 368D8CA6A8520BCA5C52E459B13E83BD /* PBXTargetDependency */ = { isa = PBXTargetDependency; +<<<<<<< HEAD + name = React; + target = 1BEE828C124E6416179B904A9F66D794 /* React */; + targetProxy = 2473E6F7BF2CC2F40C1F20CEC64D44DA /* PBXContainerItemProxy */; +======= name = RNCAsyncStorage; target = 89F573A6B1292B3B2296B2206BFDC3D7 /* RNCAsyncStorage */; targetProxy = E6F529F8886C18FBFA96FE832FE3BCAA /* PBXContainerItemProxy */; +>>>>>>> master >>>>>>> master }; 3CDE7CA6B5E8DC488FDB8E4812131AE4 /* PBXTargetDependency */ = { @@ -14543,6 +15824,13 @@ target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; targetProxy = 642FA260DF79A27F5482F3DCED24BA54 /* PBXContainerItemProxy */; }; +<<<<<<< HEAD + 3E39CB9BA820E245A546AEB8033AD2F9 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FBReactNativeSpec; + target = C3496D0495E700CF08A90C41EA8FA4BB /* FBReactNativeSpec */; + targetProxy = 043E72047BBF4C25EE4A500A7EECF0CC /* PBXContainerItemProxy */; +======= <<<<<<< HEAD 3EFC2B0EDA630C73F6773CAF59CD79E9 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -14555,6 +15843,7 @@ name = "React-RCTLinking"; target = 6FE9147F8AAA4DE676C190F680F47AE2 /* React-RCTLinking */; targetProxy = 31C15C7F9A779D875549DB55E114BE0F /* PBXContainerItemProxy */; +>>>>>>> master >>>>>>> master }; 3F7236B56B5E8A6757C3252930431D90 /* PBXTargetDependency */ = { @@ -14563,6 +15852,20 @@ target = ED2506AE7DE35D654F61254441EA7155 /* boost-for-react-native */; targetProxy = 5F49B87D97176A32388AA289E77F372E /* PBXContainerItemProxy */; }; +<<<<<<< HEAD + 40474E0AFA85046BF1AA4B5E39EF38AA /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-video"; + target = 3E5D106F8D3D591BD871408EEE0CC9FD /* react-native-video */; + targetProxy = 7E73B821E47E66F34DB62C682A499426 /* PBXContainerItemProxy */; + }; + 40808CDBB209F9F91BBADDF9ED71D9CF /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNScreens; + target = 214E42634D1E187D876346D36184B655 /* RNScreens */; + targetProxy = C1701EB26656822DD350BCC29B6615F8 /* PBXContainerItemProxy */; + }; +======= <<<<<<< HEAD 40D1DCF0E8EF96DCF90E8AF6F5182206 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -14570,6 +15873,7 @@ target = ED2506AE7DE35D654F61254441EA7155 /* boost-for-react-native */; targetProxy = E9895CBFADAAFF47CAB3C17B5754A891 /* PBXContainerItemProxy */; ======= +>>>>>>> master 40B365487B7053B3D7AD37B29890D5EA /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "mobile-ffmpeg-https"; @@ -14583,6 +15887,13 @@ target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; targetProxy = 3567AD7E2B44760020C17476D70D0A0F /* PBXContainerItemProxy */; }; +<<<<<<< HEAD + 4212F7FC950AB46B995B611C782E4E05 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Folly; + target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; + targetProxy = FD339F019A5605B212205D80AC4E5CB8 /* PBXContainerItemProxy */; +======= <<<<<<< HEAD 4414491BEB0846D7CB075AC97CFEBD0E /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -14601,6 +15912,7 @@ name = RNConvertPhAsset; target = AC1ED4B51A5664E3FBB86D17D6436D82 /* RNConvertPhAsset */; targetProxy = E6CED77DF2CCA35F2F1185C99E4F9108 /* PBXContainerItemProxy */; +>>>>>>> master >>>>>>> master }; 4525B78AB9B05D2433479A9579FE333F /* PBXTargetDependency */ = { @@ -14621,11 +15933,11 @@ target = 4F265533AAB7C8985856EC78A33164BB /* React-RCTImage */; targetProxy = 54C5791BF2A73F9955F8B0AF19E4D3E6 /* PBXContainerItemProxy */; }; - 489E26864F96D141CC8503902DCECC16 /* PBXTargetDependency */ = { + 46F45E8BE92E2DEFD02BDBEE9A60E3A3 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = RCTTypeSafety; target = D20469A9A1E5CFB26045EAEBE3F88E5E /* RCTTypeSafety */; - targetProxy = 0C1D275275A60CCE8A0FAEB1B02C607B /* PBXContainerItemProxy */; + targetProxy = 022A69187B745A99E8012320225C7C64 /* PBXContainerItemProxy */; }; 49B84289A3B9871A10A133360307483A /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -14645,18 +15957,6 @@ target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; targetProxy = BB43E3440C83F8BC24E141BE6C01D507 /* PBXContainerItemProxy */; }; - 4A6D91AAD90DFF7D779A52C1483E54B0 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMReactNativeAdapter; - target = 897EF6A99176326E24F51E2F2103828C /* UMReactNativeAdapter */; - targetProxy = C71C57DE1F5DF2BB6949A075B59DAD30 /* PBXContainerItemProxy */; - }; - 4B310D1884088C73D70D74A2CDA63AB8 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = EXConstants; - target = 6C1893932A69822CBE3502F2E0BCFB6D /* EXConstants */; - targetProxy = DDE55CE6E943D13B4C97430779544538 /* PBXContainerItemProxy */; - }; 4B7CF4BCE880915A07A1011FB01F4A55 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-jsi"; @@ -14670,6 +15970,8 @@ targetProxy = 3E4CD36F9EC3B65498E3DB16276FF67A /* PBXContainerItemProxy */; }; <<<<<<< HEAD +======= +<<<<<<< HEAD ======= 4F26FBEF78CB893DD5924C5AD2A920FE /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -14677,6 +15979,7 @@ target = 730404A8DD175FF6B60B6A43DC6E554B /* react-native-camera */; targetProxy = AD7BEAB862AE0C4E05E5D484F02F3DBE /* PBXContainerItemProxy */; }; +>>>>>>> master >>>>>>> master 4F7FBAA168FB752BC980C4CB37D4732D /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -14690,6 +15993,24 @@ target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; targetProxy = 0462D3CA59B20A414813848E693AB128 /* PBXContainerItemProxy */; }; + 50014FBD157C014229B6DB7DA990D8FD /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "mobile-ffmpeg-https"; + target = 2FE1A9244861B63BCB2A33D4371EF594 /* mobile-ffmpeg-https */; + targetProxy = 2E9BDD202015131E923392F2B82C80D4 /* PBXContainerItemProxy */; + }; + 511E33DA0CF4F5C5D2B8FBBA3ED26E71 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTNetwork"; + target = 651511D7DA7F07F9FC9AA40A2E86270D /* React-RCTNetwork */; + targetProxy = 27E030B71CA720AD9F4A8984F4D468FE /* PBXContainerItemProxy */; + }; + 518CFA85961AAE646C676F000476A45C /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "boost-for-react-native"; + target = ED2506AE7DE35D654F61254441EA7155 /* boost-for-react-native */; + targetProxy = 352AE51E27DF75EE5DFB442A67433ED4 /* PBXContainerItemProxy */; + }; 519C04D95086F7860AB8BEFFCF031631 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-Core"; @@ -14726,9 +16047,18 @@ target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; targetProxy = 8F8D97FDA93DF806279F1C90D2E34F62 /* PBXContainerItemProxy */; }; +<<<<<<< HEAD + 53F0DE3B98FA8C114F58D764638B9FBC /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTText"; + target = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6 /* React-RCTText */; + targetProxy = A17EF969FDFC8F71CFB5CF090E0B112E /* PBXContainerItemProxy */; + }; +======= <<<<<<< HEAD 546F15407A691E9E7ECD43BE4E2DA20E /* PBXTargetDependency */ = { ======= +>>>>>>> master 5500D41BB6C1D7DF28C16829C3B83E06 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; @@ -14761,6 +16091,9 @@ target = 651511D7DA7F07F9FC9AA40A2E86270D /* React-RCTNetwork */; targetProxy = A05B4EBB27D4854AD4F42D8232E92998 /* PBXContainerItemProxy */; }; +<<<<<<< HEAD + 57A8ACAEDE43D8E6D29FEC45782ADAE3 /* PBXTargetDependency */ = { +======= 563A35932921094A09D156444F6E0646 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = UMCore; @@ -14798,16 +16131,23 @@ targetProxy = 7A40305E6516DA8E2504D45739BEF86D /* PBXContainerItemProxy */; }; 5AAAA2B0BB7F0EE957012CF6684031B7 /* PBXTargetDependency */ = { +>>>>>>> master isa = PBXTargetDependency; - name = ReactCommon; - target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; - targetProxy = 535422785A797FC1672DBDEA9ECADC1A /* PBXContainerItemProxy */; + name = "React-RCTSettings"; + target = 680299219D3A48D42A648AF6706275A9 /* React-RCTSettings */; + targetProxy = D41969A338578A0B7915087A574884FE /* PBXContainerItemProxy */; }; - 615B0598B6A8548D3ECF1F61FB322A86 /* PBXTargetDependency */ = { + 649F21BD81AAF933EA5EDDDB230BBDAB /* PBXTargetDependency */ = { isa = PBXTargetDependency; +<<<<<<< HEAD + name = EXConstants; + target = 6C1893932A69822CBE3502F2E0BCFB6D /* EXConstants */; + targetProxy = 9C54FCF0CDD641D4B84CA3B01DCA1228 /* PBXContainerItemProxy */; +======= name = UMSensorsInterface; target = 2038C6F97563AAD6162C284B3EDD5B3B /* UMSensorsInterface */; targetProxy = 26CEE5406D2A89E527E14B1D9B545A82 /* PBXContainerItemProxy */; +>>>>>>> master >>>>>>> master }; 66F08441F9F016CA320259F5EC30225B /* PBXTargetDependency */ = { @@ -14816,18 +16156,31 @@ target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; targetProxy = E8FD7532463B0528F9CE61138294EC2E /* PBXContainerItemProxy */; }; - 6782A823C44294C9F6A7269CFEF612C1 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-jsi"; - target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; - targetProxy = 60A39B2C51C47E186EACB73802692640 /* PBXContainerItemProxy */; - }; 687C7745B0C9D33906DF6031B3231B04 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = CAD9ABFE1D8247DFCA7C5B5DC70C1C94 /* PBXContainerItemProxy */; }; +<<<<<<< HEAD + 6B4BE37F265BF9230CA0DE305C00AF2F /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = DoubleConversion; + target = 2AB2EF542954AB1C999E03BFEF8DE806 /* DoubleConversion */; + targetProxy = 5271DD0C30B27892E9E52157660DCF9D /* PBXContainerItemProxy */; + }; + 6B6FE74AF266F6755BCA70F60A6FBE9C /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNCMaskedView; + target = 1A0445474DA11CA659C4BCC5AB64B1BF /* RNCMaskedView */; + targetProxy = 92B964EF82107DCE7B455D719EF70047 /* PBXContainerItemProxy */; + }; + 6C92BCDB401311592CF60F818DD9ACBE /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-orientation"; + target = 2B122E1CB26AAA2917F6794BBD7CA90D /* react-native-orientation */; + targetProxy = F549E224441AAF24782D8506FE84287B /* PBXContainerItemProxy */; +======= <<<<<<< HEAD 68A6EC95FDD5DD87B848D880680B5E58 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -14858,6 +16211,7 @@ name = UMCore; target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; targetProxy = 0BC718BF7EFBA5FC483F865022BB9F6A /* PBXContainerItemProxy */; +>>>>>>> master >>>>>>> master }; 7373D3729CE927782A24D2D0D42B9570 /* PBXTargetDependency */ = { @@ -14866,12 +16220,31 @@ target = 2AB2EF542954AB1C999E03BFEF8DE806 /* DoubleConversion */; targetProxy = 3D8A7999B63D874FCD0BF4497D774EC4 /* PBXContainerItemProxy */; }; + 73C29EF607C9F600BD9AB9A752217952 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNFS; + target = 430D7C4A9EC9AB29B0505AFA151AABBF /* RNFS */; + targetProxy = 3B499D4426741C4807AA59D1C741C947 /* PBXContainerItemProxy */; + }; + 74574FB751690D787566BAD41CA7E6C6 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-safe-area-context"; + target = BD9A27D8398DEB3205D3F8937B0672A0 /* react-native-safe-area-context */; + targetProxy = 782845BBC0586138D9EBA8D80B64309E /* PBXContainerItemProxy */; + }; 7461A63F993AB39EB67CB5B64395C17B /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-Core"; target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; targetProxy = FC21EA40C24BBDB20C2BE4568BC0017C /* PBXContainerItemProxy */; }; +<<<<<<< HEAD + 74EECDED9B7B08F074AC93696A790D34 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = ReactCommon; + target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; + targetProxy = 96B3B296E3EC6B765BBE272240410A11 /* PBXContainerItemProxy */; +======= <<<<<<< HEAD 74CC2B668877BDCB02231872F0BBB882 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -14884,6 +16257,7 @@ name = "React-RCTBlob"; target = 95D98F901D07557EF7CA38D3F03832C5 /* React-RCTBlob */; targetProxy = BC5B594C7492D375CACB13663127AD1A /* PBXContainerItemProxy */; +>>>>>>> master >>>>>>> master }; 75CF4ACDE9251F03DCDE023BACC2B5C9 /* PBXTargetDependency */ = { @@ -14892,11 +16266,11 @@ target = 938CCE22F6C4094B3FB6CF1478579E4B /* React-RCTAnimation */; targetProxy = 43F59371536BD2E5EDFAE85A8E196BD1 /* PBXContainerItemProxy */; }; - 75F46AC8C7B8D737A1BDEC59B237ED94 /* PBXTargetDependency */ = { + 75E2F8ECC0D04AE16A33A93ECCA408EB /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNVectorIcons; - target = 96150F524B245896B800F84F369A9A5A /* RNVectorIcons */; - targetProxy = BF54428802FA9E9D5DC08C42906D21A2 /* PBXContainerItemProxy */; + name = glog; + target = D0EFEFB685D97280256C559792236873 /* glog */; + targetProxy = 869D69563A1383EF0DF163A58C8E251A /* PBXContainerItemProxy */; }; 781E92AB9AD5C64251E7E935A7F59919 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -14904,19 +16278,23 @@ target = D20469A9A1E5CFB26045EAEBE3F88E5E /* RCTTypeSafety */; targetProxy = 386C0EB352726BA92F7F015C2FB264EF /* PBXContainerItemProxy */; }; +<<<<<<< HEAD + 798E7A3FAC450300883F6496632C5182 /* PBXTargetDependency */ = { +======= <<<<<<< HEAD ======= 7AFCC9C1F7383938FE1AA1364B23A269 /* PBXTargetDependency */ = { +>>>>>>> master isa = PBXTargetDependency; - name = UMPermissionsInterface; - target = F7845084F0CF03F54107EEF7411760AD /* UMPermissionsInterface */; - targetProxy = B16A8F20D1B72E011ED0A1BEAB8653AB /* PBXContainerItemProxy */; + name = RNVectorIcons; + target = 96150F524B245896B800F84F369A9A5A /* RNVectorIcons */; + targetProxy = EF49C6D05F30EEA9D1B3157CE0C7A453 /* PBXContainerItemProxy */; }; - 7EF9ED3500F199366F8FDB9A65002312 /* PBXTargetDependency */ = { + 7B76A0E3DF2B0B7394E4E31E05227505 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNScreens; - target = 214E42634D1E187D876346D36184B655 /* RNScreens */; - targetProxy = 19E6BA3B2973A9237D5DD31749342917 /* PBXContainerItemProxy */; + name = "React-RCTActionSheet"; + target = 11989A5E568B3B69655EE0C13DCDA3F9 /* React-RCTActionSheet */; + targetProxy = FD11F6DB2AFC1B9356DCF5B467265D6E /* PBXContainerItemProxy */; }; >>>>>>> master 816BCBEB5C93B0AB6EEDE4140A9F208F /* PBXTargetDependency */ = { @@ -14925,6 +16303,12 @@ target = DA0709CAAD589C6E7963495210438021 /* React-jsiexecutor */; targetProxy = 4BDE049EAF4FCC4C06846444404009A6 /* PBXContainerItemProxy */; }; + 847AEA6D49977A1920E036E96F88130B /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMPermissionsInterface; + target = F7845084F0CF03F54107EEF7411760AD /* UMPermissionsInterface */; + targetProxy = 196A1450460DC65FEC15EE2B4B9ED0D5 /* PBXContainerItemProxy */; + }; 860B56CCF15EBDBDBFB5464DAD976F75 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; @@ -14932,6 +16316,8 @@ targetProxy = AAE156940C2BFD61AF0129A155031810 /* PBXContainerItemProxy */; }; <<<<<<< HEAD +======= +<<<<<<< HEAD ======= 88264492DEFA02F223FF5145B7EC3006 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -14939,6 +16325,7 @@ target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; targetProxy = C0F8E2D62C837EA79F7703C6D8495539 /* PBXContainerItemProxy */; }; +>>>>>>> master >>>>>>> master 88A1A241AB274753A978E2E8CD059830 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -14946,6 +16333,13 @@ target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; targetProxy = 50B64EDB1396A9A4103C2C868FB8CEA4 /* PBXContainerItemProxy */; }; +<<<<<<< HEAD + 89FEEB75A4233492C6634D72B8E103D9 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMFileSystemInterface; + target = 2644525CCE081E967809A8163D893A93 /* UMFileSystemInterface */; + targetProxy = E2C686D965E383CFCB67E08DC3AC0D4D /* PBXContainerItemProxy */; +======= <<<<<<< HEAD 8A8C89163AA09055498C7DD78D6E856C /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -14958,6 +16352,7 @@ name = UMConstantsInterface; target = 9668C19AA6D8EA320F83875FA286855A /* UMConstantsInterface */; targetProxy = A72359166EB499C6C897C389CABC6D70 /* PBXContainerItemProxy */; +>>>>>>> master >>>>>>> master }; 8AF3B758EF2E1060D6636C475758FBB2 /* PBXTargetDependency */ = { @@ -14966,6 +16361,9 @@ target = 2B25F90D819B9ADF2AF2D8733A890333 /* Yoga */; targetProxy = 87BEB6118A17348FD49D4F20F1B3188F /* PBXContainerItemProxy */; }; +<<<<<<< HEAD + 8BE0C1E9E355AF9F0977864D310A258E /* PBXTargetDependency */ = { +======= <<<<<<< HEAD 8AF7CEC631870EB5A0F6B57A8A5B3742 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -14992,16 +16390,29 @@ targetProxy = 7C88565D72F0B3290464DC8A0EDA3EB4 /* PBXContainerItemProxy */; ======= 90A6EC3CCB9E4689678B757C79DFF342 /* PBXTargetDependency */ = { +>>>>>>> master isa = PBXTargetDependency; - name = React; - target = 1BEE828C124E6416179B904A9F66D794 /* React */; - targetProxy = D0A17F054E5443583621FFC2CD0D6804 /* PBXContainerItemProxy */; + name = "React-RCTBlob"; + target = 95D98F901D07557EF7CA38D3F03832C5 /* React-RCTBlob */; + targetProxy = 727F4F9014835EEE9620F21E47BBFDEC /* PBXContainerItemProxy */; + }; + 9355A39CBD497C96C370F1C148042E76 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; +<<<<<<< HEAD + name = "React-cxxreact"; + target = 463F41A7E8B252F8AC5024DA1F4AF6DA /* React-cxxreact */; + targetProxy = EFFD766711268C54CC4D07F94E9943D7 /* PBXContainerItemProxy */; }; - 930E5FD45FBE614783F0906FC298F33E /* PBXTargetDependency */ = { + 93E7BCED58EA57332154F60EC6A51A71 /* PBXTargetDependency */ = { isa = PBXTargetDependency; + name = "React-RCTImage"; + target = 4F265533AAB7C8985856EC78A33164BB /* React-RCTImage */; + targetProxy = 4EA72F7C46A82E7D28AA877EF319152E /* PBXContainerItemProxy */; +======= name = UMCameraInterface; target = 0A915EE9D35CA5636731F8763E774951 /* UMCameraInterface */; targetProxy = 2B0E3F4BA6E71CAEC049CD7C15A4E074 /* PBXContainerItemProxy */; +>>>>>>> master >>>>>>> master }; 956CED54224ED4C72F0369A6636E0549 /* PBXTargetDependency */ = { @@ -15022,6 +16433,19 @@ target = 680299219D3A48D42A648AF6706275A9 /* React-RCTSettings */; targetProxy = E83554FF4DE7678D4E491D021D3B299A /* PBXContainerItemProxy */; }; +<<<<<<< HEAD + 9CF8FB33E648C0407E98246C9A7215D2 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMSensorsInterface; + target = 2038C6F97563AAD6162C284B3EDD5B3B /* UMSensorsInterface */; + targetProxy = A767E996F2D83E9A0765483DC3C5C0FC /* PBXContainerItemProxy */; + }; + 9F68B6A0FFEA55C5A21762E81BD782A6 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTVibration"; + target = 53D121F9F9BB0F8AC1C94A12C5A8572F /* React-RCTVibration */; + targetProxy = 2A16277A4C375BF94553F16BF77D7D6A /* PBXContainerItemProxy */; +======= <<<<<<< HEAD 9D68EBCEA241E9FF72714346A3FFC41B /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -15040,6 +16464,7 @@ name = Yoga; target = 2B25F90D819B9ADF2AF2D8733A890333 /* Yoga */; targetProxy = 501B288BDA2468CB25040B1F6F996BAD /* PBXContainerItemProxy */; +>>>>>>> master >>>>>>> master }; A0C3928F735E03760B70DC4735286B75 /* PBXTargetDependency */ = { @@ -15079,6 +16504,8 @@ targetProxy = 0E9ACF16864F26F5B6DBCBE7DFE47D58 /* PBXContainerItemProxy */; }; <<<<<<< HEAD +======= +<<<<<<< HEAD ======= A2D6A60A426F99DD2830D520F27F655A /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -15104,6 +16531,7 @@ target = 014495932E402CA67C37681988047CA2 /* UMFontInterface */; targetProxy = B5915EFF0428291ECDF44B9D536FA68B /* PBXContainerItemProxy */; }; +>>>>>>> master >>>>>>> master A93263D2192B3B53C87927F1C910E9CE /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -15111,6 +16539,13 @@ target = F7D033C4C128EECAA020990641FA985F /* React-jsinspector */; targetProxy = 60C8C9FAE390605B1F6A1DB1051A40F6 /* PBXContainerItemProxy */; }; +<<<<<<< HEAD + AA83965E3ADD787A86DB16FA91911EBF /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-jsiexecutor"; + target = DA0709CAAD589C6E7963495210438021 /* React-jsiexecutor */; + targetProxy = 2774DD5A4E80133CAAADF1C3033036AE /* PBXContainerItemProxy */; +======= <<<<<<< HEAD AC3CF596A6EFCDE5DFCB69A8C5A70AED /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -15129,6 +16564,7 @@ name = UMTaskManagerInterface; target = 50188AAB5FAECCA9583327DBA2B0AF2B /* UMTaskManagerInterface */; targetProxy = E65B11F86615EB113C31A1F542156A36 /* PBXContainerItemProxy */; +>>>>>>> master >>>>>>> master }; AD44C5B0EA68B0AFDEB378868B937C2A /* PBXTargetDependency */ = { @@ -15137,12 +16573,25 @@ target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; targetProxy = 315229D181720CCB6DF23F8B70D711AA /* PBXContainerItemProxy */; }; + AD58A384FDAA404545031805755BDBEF /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = EXFileSystem; + target = 868B90C74770285449C60DBA82181479 /* EXFileSystem */; + targetProxy = EB74E43F57C4DD85B5E0A5B0552D93CA /* PBXContainerItemProxy */; + }; AD8CC2C3AD641422282F5A8CD85BA0A7 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = ReactCommon; target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; targetProxy = 13EF1229647EEDD20E086226A26C9EA6 /* PBXContainerItemProxy */; }; +<<<<<<< HEAD + B3525671B1626E7F4FCF3F6B19DEB1BB /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-ffmpeg"; + target = B61CD5C777103B0E15D29F836672F0FA /* react-native-ffmpeg */; + targetProxy = 6E549C39B62A2D0DFE1863583542D0F4 /* PBXContainerItemProxy */; +======= B12B66F527111F6B7197C1A6761F1E4D /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = RNCMaskedView; @@ -15173,6 +16622,7 @@ name = FBReactNativeSpec; target = C3496D0495E700CF08A90C41EA8FA4BB /* FBReactNativeSpec */; targetProxy = F9674BF474C592CC303AF73D4552C5F0 /* PBXContainerItemProxy */; +>>>>>>> master >>>>>>> master }; B54D99C8C4E3BA1515C0D8A2956223F2 /* PBXTargetDependency */ = { @@ -15187,13 +16637,17 @@ target = 651511D7DA7F07F9FC9AA40A2E86270D /* React-RCTNetwork */; targetProxy = 0B9D0C12D781EC4A37C4E53443F9E924 /* PBXContainerItemProxy */; }; +<<<<<<< HEAD + B8DB80593B088953E5ECEA6F05B4FD07 /* PBXTargetDependency */ = { +======= <<<<<<< HEAD ======= B78904110CDB161F41191BB985562BD1 /* PBXTargetDependency */ = { +>>>>>>> master isa = PBXTargetDependency; - name = "React-cxxreact"; - target = 463F41A7E8B252F8AC5024DA1F4AF6DA /* React-cxxreact */; - targetProxy = E4FBDF3AF37BA6DC9378071871BEDEBE /* PBXContainerItemProxy */; + name = "React-RCTLinking"; + target = 6FE9147F8AAA4DE676C190F680F47AE2 /* React-RCTLinking */; + targetProxy = A412BAC35D280689C2E819A0E8BDEA9D /* PBXContainerItemProxy */; }; >>>>>>> master BB0C888F9800A9CBBD7F9AB387D65080 /* PBXTargetDependency */ = { @@ -15208,29 +16662,37 @@ target = D0EFEFB685D97280256C559792236873 /* glog */; targetProxy = CE8ED3B765478B8EBFC5731084A0710F /* PBXContainerItemProxy */; }; + BBBF2D4AD9F5DBFFF9E0EBC6DE74D470 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMReactNativeAdapter; + target = 897EF6A99176326E24F51E2F2103828C /* UMReactNativeAdapter */; + targetProxy = 6A06C84563DB7500F6F90162BFFAD584 /* PBXContainerItemProxy */; + }; BD9A27944522233DC0927B646379AEDA /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = Folly; target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; targetProxy = EF35D916FEB5C7D4563D576974DC8374 /* PBXContainerItemProxy */; }; - BF04A40B309E5D70E5298A0F2377CEE0 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTSettings"; - target = 680299219D3A48D42A648AF6706275A9 /* React-RCTSettings */; - targetProxy = CCCF8E92289C3EEC4FCA4C8F47EE2CEB /* PBXContainerItemProxy */; - }; BF23376B1A7E5DFDD5B71433E58CDDA1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = UMCore; target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; targetProxy = 2284921B4FC397971FFFACC555D01A18 /* PBXContainerItemProxy */; }; +<<<<<<< HEAD + BF56206633C393A6E4C64C9AE1937DFE /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMTaskManagerInterface; + target = 50188AAB5FAECCA9583327DBA2B0AF2B /* UMTaskManagerInterface */; + targetProxy = D1F7ABCD4A507EC1DFA007C84DB12F55 /* PBXContainerItemProxy */; +======= BF27D854277F8338396E8107845BAA35 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = RNGestureHandler; target = B9E8F4CA2A4A8599389FEB665A9B96FF /* RNGestureHandler */; targetProxy = 115A7618A024112162C1F3B0D0678AFF /* PBXContainerItemProxy */; +>>>>>>> master }; BF9BF0CDEA697B8AF2D71C6FF954AC77 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -15238,6 +16700,14 @@ target = E7E7CE52C8C68B17224FF8C262D80ABF /* RCTRequired */; targetProxy = 2C95DFFCB2EC326C56D43774DED19805 /* PBXContainerItemProxy */; }; +<<<<<<< HEAD + C2762A9D36AAD28E631335FDDB0325DC /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNCAsyncStorage; + target = 89F573A6B1292B3B2296B2206BFDC3D7 /* RNCAsyncStorage */; + targetProxy = 86EF611DB731C2BCD9B2366F895CB667 /* PBXContainerItemProxy */; + }; +======= <<<<<<< HEAD C296CC6DA585ADBA65DD32DCC0FA8A80 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -15246,6 +16716,7 @@ targetProxy = 25B12FA3C7242BC8FA3F4FB3A7C9BB61 /* PBXContainerItemProxy */; }; ======= +>>>>>>> master >>>>>>> master C2DD820707C8F389B51871D407E6B10A /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -15260,6 +16731,8 @@ targetProxy = 2F587ACE4394FEF29D235749F36160EA /* PBXContainerItemProxy */; }; <<<<<<< HEAD +======= +<<<<<<< HEAD ======= C3AE48E5BAC2F76E13334FE0702E85E1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -15267,6 +16740,7 @@ target = 3E5D106F8D3D591BD871408EEE0CC9FD /* react-native-video */; targetProxy = 95D22B0643BC6805C1630C55B0030764 /* PBXContainerItemProxy */; }; +>>>>>>> master >>>>>>> master C5A0E011AD4DDD3DB47BE2A057285067 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -15280,6 +16754,18 @@ target = 9668C19AA6D8EA320F83875FA286855A /* UMConstantsInterface */; targetProxy = 13791CBAE3B4CCAF1FC636BA2BBD9DE4 /* PBXContainerItemProxy */; }; + C88C00A4C27FE85FC9AE90C85F9B7456 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMCameraInterface; + target = 0A915EE9D35CA5636731F8763E774951 /* UMCameraInterface */; + targetProxy = 4188498391260E7F980D6F6DDFD53AE7 /* PBXContainerItemProxy */; + }; + C94359AD17D1F5EB9B89644052E1B055 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNConvertPhAsset; + target = AC1ED4B51A5664E3FBB86D17D6436D82 /* RNConvertPhAsset */; + targetProxy = A81EACD521CA9F8C3CFC8E96E71C6E10 /* PBXContainerItemProxy */; + }; CB1231450678EB40FF6D52E17793B56F /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = FBReactNativeSpec; @@ -15292,6 +16778,8 @@ target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; targetProxy = 0E7E9C1E8AF5EB58DB904FD1ACC9FFBC /* PBXContainerItemProxy */; }; +<<<<<<< HEAD +======= <<<<<<< HEAD D035A573D20F0A30170DE2CD8FCE0B19 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -15312,12 +16800,15 @@ targetProxy = ACBFDDC9C42C17A3D5372A7A221F976C /* PBXContainerItemProxy */; >>>>>>> master }; +>>>>>>> master D09D4D6E49BA51BBDC11C5E6950F580E /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-cxxreact"; target = 463F41A7E8B252F8AC5024DA1F4AF6DA /* React-cxxreact */; targetProxy = E12CEF0BB724DDDA3132C4E7F85D3B6E /* PBXContainerItemProxy */; }; +<<<<<<< HEAD +======= <<<<<<< HEAD D0B1E3CED606A5E858885327070BC8CE /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -15332,6 +16823,7 @@ targetProxy = 10A61B74271A7D441BED76E361E5E6E2 /* PBXContainerItemProxy */; >>>>>>> master }; +>>>>>>> master D204DCAAA28F232F5C5B2C9E1E1FF9F5 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-Core"; @@ -15344,6 +16836,8 @@ target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; targetProxy = 9CB3083178CBCBA8506F2EBF962490F7 /* PBXContainerItemProxy */; }; +<<<<<<< HEAD +======= <<<<<<< HEAD D368EC073A45F19B8CF6DFB8371F9852 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -15358,6 +16852,7 @@ targetProxy = 3A83D3180BFAFF5D575A7828E5C8E439 /* PBXContainerItemProxy */; >>>>>>> master }; +>>>>>>> master D47C61450FD47102A9D6290885B06872 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = DoubleConversion; @@ -15376,11 +16871,19 @@ target = 95D98F901D07557EF7CA38D3F03832C5 /* React-RCTBlob */; targetProxy = 256BFD98359420AFA8D98FC31FF9C8BA /* PBXContainerItemProxy */; }; +<<<<<<< HEAD + D8A70BAA237A2A1A424E2B66DB8A0724 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = React; + target = 1BEE828C124E6416179B904A9F66D794 /* React */; + targetProxy = D8B34CB29AD78ACB1DEE6563851CF69A /* PBXContainerItemProxy */; +======= D8EDA50E6950B1BD6C2D6942D1F768A0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-RCTBlob"; target = 95D98F901D07557EF7CA38D3F03832C5 /* React-RCTBlob */; targetProxy = BDB0FB5BBBBCF2901AA1E2B291BEEAD5 /* PBXContainerItemProxy */; +>>>>>>> master }; D9125EAC7E280F333F3D5EAA731C1736 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -15388,11 +16891,25 @@ target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; targetProxy = FC1CAD297E31A5399F69C9581BFBC3A7 /* PBXContainerItemProxy */; }; +<<<<<<< HEAD + DA70BF963744E2DBEB51F3C78F95B6A3 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMCore; + target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; + targetProxy = B414B46CD731324B0ECF8DB8099B5724 /* PBXContainerItemProxy */; + }; + DB844C6A214F376805791DFF6EC06226 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMConstantsInterface; + target = 9668C19AA6D8EA320F83875FA286855A /* UMConstantsInterface */; + targetProxy = 8BBD1676D440ED47082864D3F9E5B262 /* PBXContainerItemProxy */; +======= DC7C87426BBA5A89633B6FA19C8DE572 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-RCTText"; target = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6 /* React-RCTText */; targetProxy = E7FA1419799FA995794BFC86EEA6EC01 /* PBXContainerItemProxy */; +>>>>>>> master }; DDFBB112F89C7324E0572676048A6E6D /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -15400,6 +16917,13 @@ target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; targetProxy = 21E2E58CC7895C92D7CB4994458BCD18 /* PBXContainerItemProxy */; }; +<<<<<<< HEAD + DE9BA12A43F89D11FD7B1F1CA48592ED /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-CoreModules"; + target = E16E206437995280D349D4B67695C894 /* React-CoreModules */; + targetProxy = F7A43957251213EA53F5559F536D3153 /* PBXContainerItemProxy */; +======= DFA65019580E1D53BE7E21EFDF362039 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-jsiexecutor"; @@ -15411,6 +16935,7 @@ name = RNConvertPhAsset; target = AC1ED4B51A5664E3FBB86D17D6436D82 /* RNConvertPhAsset */; targetProxy = 86BEBBCEF5394E5F19F54FB709B72202 /* PBXContainerItemProxy */; +>>>>>>> master }; E33A6948181332F36C1B948AB5E3D4F1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -15430,19 +16955,35 @@ target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = EAA9F477386E52EB30E75431006FAA8C /* PBXContainerItemProxy */; }; +<<<<<<< HEAD + E64A25B19F59036BA3668EFB63A6585F /* PBXTargetDependency */ = { +======= <<<<<<< HEAD ======= E622742838DCA26E701DDD0FF323796E /* PBXTargetDependency */ = { +>>>>>>> master isa = PBXTargetDependency; - name = DoubleConversion; - target = 2AB2EF542954AB1C999E03BFEF8DE806 /* DoubleConversion */; - targetProxy = 5561BAA31AC0F5688074A59C7A34875A /* PBXContainerItemProxy */; + name = "react-native-camera"; + target = 730404A8DD175FF6B60B6A43DC6E554B /* react-native-camera */; + targetProxy = 8EEA90B825D566B6F08CA9AAECE6309D /* PBXContainerItemProxy */; }; - E7A7B48C6B4581747CDAE985060D31DE /* PBXTargetDependency */ = { + E79A79604FF1BE904717817F48963CDF /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FBLazyVector; - target = 8CC4EAA817AA86310D1900F1DAB3580F /* FBLazyVector */; - targetProxy = 736195D1BB3A986923B8582AA23575D6 /* PBXContainerItemProxy */; + name = RNReanimated; + target = FF879E718031128A75E7DE54046E6219 /* RNReanimated */; + targetProxy = AAC0B69771572718DFAD1AB1F1A9521E /* PBXContainerItemProxy */; + }; + E9A19D417F10A7B14E8D17D95EFA7153 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RCTRequired; + target = E7E7CE52C8C68B17224FF8C262D80ABF /* RCTRequired */; + targetProxy = 77AA5B31142CF1967B67A9D557C8314F /* PBXContainerItemProxy */; + }; + EB7CC0AAD35A977AA7147F007FF347AA /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Yoga; + target = 2B25F90D819B9ADF2AF2D8733A890333 /* Yoga */; + targetProxy = 62A08A5883D34E94F83BACEB548EF934 /* PBXContainerItemProxy */; }; >>>>>>> master EBA55F61CB988F06D78ED9EC51979119 /* PBXTargetDependency */ = { @@ -15457,6 +16998,12 @@ target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; targetProxy = DBCDE55D7A7B4D7DB2985F5622A53357 /* PBXContainerItemProxy */; }; + EC25688D2BC35C5982DD3F227E863C4F /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = EXAppLoaderProvider; + target = 2B8C13513C1F6D610976B0C8F4402EC1 /* EXAppLoaderProvider */; + targetProxy = 9C3891C361780C4080959D951789621E /* PBXContainerItemProxy */; + }; EC566DF9BFE7FD959CB2819808630F73 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = Folly; @@ -15487,6 +17034,14 @@ target = 463F41A7E8B252F8AC5024DA1F4AF6DA /* React-cxxreact */; targetProxy = 3E2073FF56543FDA76EFCC77A1820700 /* PBXContainerItemProxy */; }; +<<<<<<< HEAD + F28CAE64ED11EB368206418D82EB8EE9 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-jsinspector"; + target = F7D033C4C128EECAA020990641FA985F /* React-jsinspector */; + targetProxy = AA413E426B1A802303EEFD0F503A1E63 /* PBXContainerItemProxy */; + }; +======= <<<<<<< HEAD F18BED106D1C4D3B22F796D0E1208CC4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -15507,6 +17062,7 @@ targetProxy = 49B29C3A34031786FD2E61707BB305DF /* PBXContainerItemProxy */; }; ======= +>>>>>>> master >>>>>>> master F35684772D64C0CA1DF3FAD417B69CDD /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -15514,6 +17070,13 @@ target = D0EFEFB685D97280256C559792236873 /* glog */; targetProxy = EED0646419E036730D0348937F804BB4 /* PBXContainerItemProxy */; }; +<<<<<<< HEAD + F648F1EDB3BB2BB5A517A0A7809A7715 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNGestureHandler; + target = B9E8F4CA2A4A8599389FEB665A9B96FF /* RNGestureHandler */; + targetProxy = AA8E4070BC5EACD7D3AE95FB6EE11F05 /* PBXContainerItemProxy */; +======= <<<<<<< HEAD F42605B0853D2DBA4E54D7B2F82A5CF1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -15538,6 +17101,7 @@ name = EXAppLoaderProvider; target = 2B8C13513C1F6D610976B0C8F4402EC1 /* EXAppLoaderProvider */; targetProxy = B8FEB81441BF35DC79A635DFA7298563 /* PBXContainerItemProxy */; +>>>>>>> master >>>>>>> master }; F7D04D57FB116EFF248374308C552CC8 /* PBXTargetDependency */ = { @@ -15546,11 +17110,11 @@ target = 2AB2EF542954AB1C999E03BFEF8DE806 /* DoubleConversion */; targetProxy = 2DBF470DA8A0AE820A5ABA7AA5EDEBB9 /* PBXContainerItemProxy */; }; - F93BB5EBC4CB8C74EA2CA084B91144F2 /* PBXTargetDependency */ = { + FA1B84A405DE3DAF9E988E31959A45F6 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTAnimation"; - target = 938CCE22F6C4094B3FB6CF1478579E4B /* React-RCTAnimation */; - targetProxy = 4958B9FC4533545A600FD55DBBDE833C /* PBXContainerItemProxy */; + name = UMBarCodeScannerInterface; + target = 49821C2B9E764AEDF2B35DFE9AA7022F /* UMBarCodeScannerInterface */; + targetProxy = FF78B1EC582D7BD6B8F649B3115CF487 /* PBXContainerItemProxy */; }; FAC411C23D2CEEC99A061A1A4B22D07D /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -15564,6 +17128,12 @@ target = ED2506AE7DE35D654F61254441EA7155 /* boost-for-react-native */; targetProxy = 3DFA7A3D896E0923873147B11AC710C1 /* PBXContainerItemProxy */; }; + FEC8835CE7CDC483589DA6DBC92EAD53 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = EXPermissions; + target = 0A72FB88825FDC7D301C9DD1F8F96824 /* EXPermissions */; + targetProxy = D673D70E00249ACBAE3CCDCFFDD02711 /* PBXContainerItemProxy */; + }; /* End PBXTargetDependency section */ /* Begin XCBuildConfiguration section */ @@ -15611,7 +17181,11 @@ }; 03105A7482F28613E820848EC0EE0DE1 /* Release */ = { isa = XCBuildConfiguration; +<<<<<<< HEAD + baseConfigurationReference = 084A8A05DF99B08AE1210B63F6A3D638 /* React-CoreModules.xcconfig */; +======= baseConfigurationReference = 608F9E9893D067D53CA66D1BA007E63A /* React-RCTAnimation.release.xcconfig */; +>>>>>>> master buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -15686,10 +17260,14 @@ }; 0B72C3861D22CB89ECD0CA914F418E75 /* Release */ = { isa = XCBuildConfiguration; +<<<<<<< HEAD + baseConfigurationReference = E97E421D7170698C39CD51DD91548ED6 /* FBLazyVector.xcconfig */; +======= <<<<<<< HEAD baseConfigurationReference = 092C4F93CE70A8D424786130BC4651D2 /* React-RCTImage.release.xcconfig */; ======= baseConfigurationReference = 8C9F0B182BF7FA1B80DF112F60130C4E /* FBLazyVector.xcconfig */; +>>>>>>> master >>>>>>> master buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -15728,10 +17306,14 @@ }; 10C58EC2071363BC1E0C5169BBA8EB0E /* Debug */ = { isa = XCBuildConfiguration; +<<<<<<< HEAD + baseConfigurationReference = 3D36B5F97330B21A81145CFE01C0B1C0 /* React-jsi.xcconfig */; +======= <<<<<<< HEAD baseConfigurationReference = 2E1024BACE6D1D3725301FBE14493FA6 /* React-jsi.debug.xcconfig */; ======= baseConfigurationReference = C0E322BF48D21B54242D50BA87D0C0CA /* React-jsi.xcconfig */; +>>>>>>> master >>>>>>> master buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -15753,6 +17335,8 @@ }; name = Debug; }; +<<<<<<< HEAD +======= <<<<<<< HEAD 12D4C89B412DDFDC3E252068C9748DDC /* Release */ = { isa = XCBuildConfiguration; @@ -15797,6 +17381,7 @@ }; name = Release; }; +>>>>>>> master 196DFA3E4A09A28224918543529A1885 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { @@ -15863,10 +17448,14 @@ }; 1AED48D7F22D504683CD7A711A8C2BC4 /* Release */ = { isa = XCBuildConfiguration; +<<<<<<< HEAD + baseConfigurationReference = 2CBF645A0A960BDCF5D00D98C8BF154E /* React-RCTActionSheet.xcconfig */; +======= <<<<<<< HEAD baseConfigurationReference = CD1905B0262105E3380AACE8793F8068 /* React-cxxreact.release.xcconfig */; ======= baseConfigurationReference = 6160151481DC530820F8784CA307B735 /* React-RCTActionSheet.xcconfig */; +>>>>>>> master >>>>>>> master buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -15896,7 +17485,7 @@ ======= 1BD895AF0BAC799B90541428BE64FDEF /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C705C1194C9B0B78DA633613CD1E0DB8 /* react-native-ffmpeg.xcconfig */; + baseConfigurationReference = 6D023802C9B02332E126EF46F29283B0 /* react-native-ffmpeg.xcconfig */; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -15917,6 +17506,52 @@ }; name = Debug; }; + 225C892B93B5483FF91E933FB6C44A6A /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = B1317A709B24821FB990E3E0ED0C7424 /* RNFS.xcconfig */; + buildSettings = { + CODE_SIGN_IDENTITY = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/RNFS/RNFS-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = RNFS; + PRODUCT_NAME = RNFS; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + 22F7A18DC145F3BB4914E733FF5AE2A1 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 4314F3A8572CA00A9242DE63C27C368D /* Pods-Gladeo_App.release.xcconfig */; + buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + MACH_O_TYPE = staticlib; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; 265DE69E4602E2E9B3D2E5487D9BA6AE /* Debug */ = { isa = XCBuildConfiguration; baseConfigurationReference = 5CB7BBD47382666097F5280F14EAE322 /* Folly.xcconfig */; @@ -15962,7 +17597,11 @@ }; 2C9EBD4E79E216CD5847089174EF32B8 /* Release */ = { isa = XCBuildConfiguration; +<<<<<<< HEAD + baseConfigurationReference = 67D7DA22FF06DE7B2E9F08CEC955FF2A /* React-RCTNetwork.xcconfig */; +======= baseConfigurationReference = E646420275D81469ADBA372F7A8A5177 /* React-RCTNetwork.xcconfig */; +>>>>>>> master >>>>>>> master buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -15987,10 +17626,14 @@ }; 20E143DDACBF763CE189D572B97F56B1 /* Release */ = { isa = XCBuildConfiguration; +<<<<<<< HEAD + baseConfigurationReference = 7D961F12E603E2DE6A35E0F808F176A9 /* React-RCTVibration.xcconfig */; +======= <<<<<<< HEAD baseConfigurationReference = 669FB67696395D1817D876F1E0581700 /* FBLazyVector.release.xcconfig */; ======= baseConfigurationReference = 7255927FE6CD35228EF7C3622DAD4DBC /* React-RCTVibration.xcconfig */; +>>>>>>> master >>>>>>> master buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -16047,10 +17690,14 @@ }; 2A86EC9442F694D852EE536C24942D92 /* Release */ = { isa = XCBuildConfiguration; +<<<<<<< HEAD + baseConfigurationReference = 7D961F12E603E2DE6A35E0F808F176A9 /* React-RCTVibration.xcconfig */; +======= <<<<<<< HEAD baseConfigurationReference = 546EA6E66F1D78AF6580FD8F0F4FE9C0 /* UMBarCodeScannerInterface.release.xcconfig */; ======= baseConfigurationReference = 7255927FE6CD35228EF7C3622DAD4DBC /* React-RCTVibration.xcconfig */; +>>>>>>> master >>>>>>> master buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -16066,10 +17713,14 @@ }; 2CE3C4CE502C6CDCC1ECF1B2E3D116B8 /* Release */ = { isa = XCBuildConfiguration; +<<<<<<< HEAD + baseConfigurationReference = 9D966D5F675EBCC32F38F17AB8AF9AAC /* React-RCTImage.xcconfig */; +======= <<<<<<< HEAD baseConfigurationReference = 059A1DAE992CD15A94E061F64BC0400C /* RNVectorIcons.release.xcconfig */; ======= baseConfigurationReference = F33D462E81760BD44CD5990E82BEBBB5 /* React-RCTImage.xcconfig */; +>>>>>>> master >>>>>>> master buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -16094,10 +17745,14 @@ }; 2D9F0DAA080426549967935AE084000C /* Release */ = { isa = XCBuildConfiguration; +<<<<<<< HEAD + baseConfigurationReference = 2E1B0400FB6CBA4F52196B5A5E24E5B2 /* react-native-orientation.xcconfig */; +======= <<<<<<< HEAD baseConfigurationReference = DD9414FCEDD378DCD66CF2674A3834D6 /* React-Core.release.xcconfig */; ======= baseConfigurationReference = F4071A99A6B6EF72BC1880CE7BE93574 /* react-native-orientation.xcconfig */; +>>>>>>> master >>>>>>> master buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -16122,10 +17777,14 @@ }; 301BDB01D26B969342D0FFAECFCE1DDD /* Debug */ = { isa = XCBuildConfiguration; +<<<<<<< HEAD + baseConfigurationReference = 50D75608382758F1A5DC78BAF88BBB83 /* Yoga.xcconfig */; +======= <<<<<<< HEAD baseConfigurationReference = 8AC07F444D92A217BEE374F6477DA0BA /* React-jsinspector.debug.xcconfig */; ======= baseConfigurationReference = 8401FC75455876AF07EA3B02EA29558B /* Yoga.xcconfig */; +>>>>>>> master >>>>>>> master buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -16149,10 +17808,14 @@ }; 33278E2E692C4880CB8C60D6832905BA /* Debug */ = { isa = XCBuildConfiguration; +<<<<<<< HEAD + baseConfigurationReference = A469E2616303D0AC55A0C6C90B5C98E9 /* RCTTypeSafety.xcconfig */; +======= <<<<<<< HEAD baseConfigurationReference = D90C778810FA71A3EE1E392959C44162 /* UMFileSystemInterface.debug.xcconfig */; ======= baseConfigurationReference = 346E6CB7AC5BED48E5033FF5BA18E9FB /* RCTTypeSafety.xcconfig */; +>>>>>>> master >>>>>>> master buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -16183,7 +17846,7 @@ }; 3D0F19236F9C1495D5B43F41E66C0DB4 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 9D7A5B8520C72549D4B692F6D4E984B3 /* React-RCTBlob.xcconfig */; + baseConfigurationReference = 122393B78EAAE45A999E469B03393C5C /* React-RCTBlob.xcconfig */; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -16205,10 +17868,14 @@ }; 34D5EFEFB66D62C326F5A0C373DE34C6 /* Debug */ = { isa = XCBuildConfiguration; +<<<<<<< HEAD + baseConfigurationReference = 1F8EDAF873C0C53EAE22EDE1147917E3 /* UMPermissionsInterface.xcconfig */; +======= <<<<<<< HEAD baseConfigurationReference = 9CEF851594271BF94AE4B6AE9CDBB3C3 /* EXFileSystem.debug.xcconfig */; ======= baseConfigurationReference = 96640E38DC6080ACE6217387B4538A93 /* UMPermissionsInterface.xcconfig */; +>>>>>>> master >>>>>>> master buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; @@ -16231,6 +17898,11 @@ }; name = Debug; }; +<<<<<<< HEAD + 4BD8B0D32919F6ECDF791C8A44A673EE /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 817864B6170BB3D729B4C5A9D79FE671 /* React-RCTText.xcconfig */; +======= <<<<<<< HEAD 3731B2BE4DA969150ACBA2D26E6FE19A /* Debug */ = { isa = XCBuildConfiguration; @@ -16261,6 +17933,7 @@ 4BD8B0D32919F6ECDF791C8A44A673EE /* Release */ = { isa = XCBuildConfiguration; baseConfigurationReference = 128672B9F71A6BD8D10A3C8978A8B2AF /* React-RCTText.xcconfig */; +>>>>>>> master >>>>>>> master buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -16284,10 +17957,14 @@ }; 39FD7AE648DC505EF32EC6E12AC2CA27 /* Release */ = { isa = XCBuildConfiguration; +<<<<<<< HEAD + baseConfigurationReference = 77DA8146BDCD24C321C037ED0A85E799 /* UMImageLoaderInterface.xcconfig */; +======= <<<<<<< HEAD baseConfigurationReference = 1C1C07504AF1A4C0170B16398992F809 /* UMSensorsInterface.release.xcconfig */; ======= baseConfigurationReference = BF5AD8641E801494D77B980A094103CF /* UMImageLoaderInterface.xcconfig */; +>>>>>>> master >>>>>>> master buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -16303,10 +17980,14 @@ }; 3F442390DF47A2F8E064DF1235163276 /* Debug */ = { isa = XCBuildConfiguration; +<<<<<<< HEAD + baseConfigurationReference = 60117552B5A6B355E76610B5F720F876 /* react-native-cameraroll.xcconfig */; +======= <<<<<<< HEAD baseConfigurationReference = 082B9B961288B023D9C1022504E875CD /* RNCAsyncStorage.debug.xcconfig */; ======= baseConfigurationReference = 242C7CAF09D52400CB075F5A9618E02F /* react-native-cameraroll.xcconfig */; +>>>>>>> master >>>>>>> master buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -16330,10 +18011,14 @@ }; 428AE0CC224FCE577F164AF9DBDD95BF /* Debug */ = { isa = XCBuildConfiguration; +<<<<<<< HEAD + baseConfigurationReference = 942A08D2F61D40D81D337860BED9B8C4 /* React-RCTAnimation.xcconfig */; +======= <<<<<<< HEAD baseConfigurationReference = F1429E791035D18DCBBB4AFD543729AD /* RNCMaskedView.debug.xcconfig */; ======= baseConfigurationReference = 8A3E60D8CEF9DD08BAC07DBB85FE6491 /* React-RCTAnimation.xcconfig */; +>>>>>>> master >>>>>>> master buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -16357,10 +18042,14 @@ }; 429928AED2287D42FDE81D72EAF19AB2 /* Release */ = { isa = XCBuildConfiguration; +<<<<<<< HEAD + baseConfigurationReference = 34213CC0ED6281A8A86AEC774A315D30 /* react-native-camera.xcconfig */; +======= <<<<<<< HEAD baseConfigurationReference = 636D2BBBF889904BC5534B6721461675 /* UMCore.release.xcconfig */; ======= baseConfigurationReference = DAD97227D406D48D33933D225A6350EF /* react-native-camera.xcconfig */; +>>>>>>> master >>>>>>> master buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; @@ -16386,10 +18075,14 @@ }; 44068ABB372B03FC558A13F289901F0D /* Release */ = { isa = XCBuildConfiguration; +<<<<<<< HEAD + baseConfigurationReference = 54DFA6ED893984E6572985CA55D53DE4 /* UMConstantsInterface.xcconfig */; +======= <<<<<<< HEAD baseConfigurationReference = F662A83F5E54AEF77B9861A64F2FA76D /* UMTaskManagerInterface.release.xcconfig */; ======= baseConfigurationReference = C78D720FBA72D58F0FAE0906F36F00CF /* UMConstantsInterface.xcconfig */; +>>>>>>> master >>>>>>> master buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -16405,10 +18098,14 @@ }; 441E24AAE2900B65FA92456CE3AB64CC /* Debug */ = { isa = XCBuildConfiguration; +<<<<<<< HEAD + baseConfigurationReference = 79C919DFD21DCBABB45D387C497820D6 /* UMFaceDetectorInterface.xcconfig */; +======= <<<<<<< HEAD baseConfigurationReference = 467E22BE2D15C5AAEB7F97E79185DAA1 /* UMPermissionsInterface.debug.xcconfig */; ======= baseConfigurationReference = A2287FA90E130F91559C400F63536366 /* UMFaceDetectorInterface.xcconfig */; +>>>>>>> master >>>>>>> master buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; @@ -16461,10 +18158,14 @@ }; 47060B733DAA35F6D4B3D5268A77CAFF /* Release */ = { isa = XCBuildConfiguration; +<<<<<<< HEAD + baseConfigurationReference = B54306C9D682A038DCC1A066679E78DC /* ReactCommon.xcconfig */; +======= <<<<<<< HEAD baseConfigurationReference = 27D4B6C04438372BA553128E59683AA3 /* React-jsinspector.release.xcconfig */; ======= baseConfigurationReference = 21493CAC93246D53919041D773A51113 /* ReactCommon.xcconfig */; +>>>>>>> master >>>>>>> master buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -16489,10 +18190,14 @@ }; 487544CB305AD3EB49CF31EDA829A78E /* Debug */ = { isa = XCBuildConfiguration; +<<<<<<< HEAD + baseConfigurationReference = 2F8DB64D9CCCF2F99AF0E36F8D414DBE /* UMFontInterface.xcconfig */; +======= <<<<<<< HEAD baseConfigurationReference = 676EA741AACB0FB9461D485F6BCDDA43 /* React-jsiexecutor.debug.xcconfig */; ======= baseConfigurationReference = EF905AE211121D6BEF9C5AEB6F1A0497 /* UMFontInterface.xcconfig */; +>>>>>>> master >>>>>>> master buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -16516,10 +18221,14 @@ }; 493A5693B0364F0E9BC415C93E0BEDC5 /* Debug */ = { isa = XCBuildConfiguration; +<<<<<<< HEAD + baseConfigurationReference = 0F48E2F03F3027518A578F7DFAF2578E /* React-RCTSettings.xcconfig */; +======= <<<<<<< HEAD baseConfigurationReference = 2F14BA15227FBE8ADAF49DB583C9F372 /* React-RCTNetwork.debug.xcconfig */; ======= baseConfigurationReference = FE5E45A4E8A74B99870A717F3F664099 /* React-RCTSettings.xcconfig */; +>>>>>>> master >>>>>>> master buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -16543,10 +18252,14 @@ }; 4ABAB77F678E6877EA82652A33AB6699 /* Debug */ = { isa = XCBuildConfiguration; +<<<<<<< HEAD + baseConfigurationReference = 2287AEE38F030660DC26BF22E3EDD4DD /* EXPermissions.xcconfig */; +======= <<<<<<< HEAD baseConfigurationReference = 539BA529D70310BAB548D77493D11CEA /* EXPermissions.debug.xcconfig */; ======= baseConfigurationReference = 553A3D5A2C86EFD43C029951C5776AC1 /* EXPermissions.xcconfig */; +>>>>>>> master >>>>>>> master buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; @@ -16571,10 +18284,14 @@ }; 4BCBAFAC7EBDAF2FCE90B7902A91D992 /* Release */ = { isa = XCBuildConfiguration; +<<<<<<< HEAD + baseConfigurationReference = EA557A994668D9483B5795B4A5ED9C14 /* React-RCTLinking.xcconfig */; +======= <<<<<<< HEAD baseConfigurationReference = C85FF9650250650277D9BFB8E8D8262B /* UMReactNativeAdapter.release.xcconfig */; ======= baseConfigurationReference = 7F67BE09741B9B90A7ABC142CE1E0A3B /* React-RCTLinking.xcconfig */; +>>>>>>> master >>>>>>> master buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; @@ -16600,10 +18317,14 @@ }; 4F1DDC581D418A4933503877B3D2FB11 /* Release */ = { isa = XCBuildConfiguration; +<<<<<<< HEAD + baseConfigurationReference = A83DA77DA2E7E838F9C91EE45DDA18AE /* UMCameraInterface.xcconfig */; +======= <<<<<<< HEAD baseConfigurationReference = 593FAB3AE41B325D10B3137780712884 /* boost-for-react-native.release.xcconfig */; ======= baseConfigurationReference = 622DD301913CCB53E9F25714202B9121 /* UMCameraInterface.xcconfig */; +>>>>>>> master >>>>>>> master buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -16661,10 +18382,14 @@ }; 556700D099D24EC0EBC4681276C9E5F4 /* Release */ = { isa = XCBuildConfiguration; +<<<<<<< HEAD + baseConfigurationReference = 084A8A05DF99B08AE1210B63F6A3D638 /* React-CoreModules.xcconfig */; +======= <<<<<<< HEAD baseConfigurationReference = 11C22A14ED0BA34B42CA589EEB7B2391 /* glog.release.xcconfig */; ======= baseConfigurationReference = 47AF2B7385AF622DE91A0DA99DC6CF59 /* React-CoreModules.xcconfig */; +>>>>>>> master >>>>>>> master buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -16692,7 +18417,7 @@ }; 79B3E0F885BF8B866097919EC7654A4B /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = BF5AD8641E801494D77B980A094103CF /* UMImageLoaderInterface.xcconfig */; + baseConfigurationReference = 77DA8146BDCD24C321C037ED0A85E799 /* UMImageLoaderInterface.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; CLANG_ENABLE_OBJC_WEAK = NO; @@ -16707,10 +18432,14 @@ }; 56803A038663C17CCB19F050FFCF508D /* Release */ = { isa = XCBuildConfiguration; +<<<<<<< HEAD + baseConfigurationReference = 2287AEE38F030660DC26BF22E3EDD4DD /* EXPermissions.xcconfig */; +======= <<<<<<< HEAD baseConfigurationReference = 7D8905EE74FE6309634B700F31E04C4A /* RNGestureHandler.release.xcconfig */; ======= baseConfigurationReference = 553A3D5A2C86EFD43C029951C5776AC1 /* EXPermissions.xcconfig */; +>>>>>>> master >>>>>>> master buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -16740,7 +18469,7 @@ ======= 7AFE008F093C3275EB78EC69B8FE0157 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C705C1194C9B0B78DA633613CD1E0DB8 /* react-native-ffmpeg.xcconfig */; + baseConfigurationReference = 6D023802C9B02332E126EF46F29283B0 /* react-native-ffmpeg.xcconfig */; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -16764,7 +18493,11 @@ }; 7B1AB0726CAB9F846C4E8269755F17A2 /* Debug */ = { isa = XCBuildConfiguration; +<<<<<<< HEAD + baseConfigurationReference = 615C1B850263BB26E0AC6D83714BFED1 /* React-cxxreact.xcconfig */; +======= baseConfigurationReference = 7C24906DDFF8C57FFBD11709A664663D /* React-cxxreact.xcconfig */; +>>>>>>> master >>>>>>> master buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -16788,10 +18521,14 @@ }; 59A22D35CA5C2AB2044E1FA47CA9F385 /* Debug */ = { isa = XCBuildConfiguration; +<<<<<<< HEAD + baseConfigurationReference = F971F310D923A6EAB889DB1AD2496C84 /* react-native-safe-area-context.xcconfig */; +======= <<<<<<< HEAD baseConfigurationReference = A278B4D75DE31FCDAD9C3FEEA470ADA2 /* React-CoreModules.debug.xcconfig */; ======= baseConfigurationReference = FFABDEBAE71ECF750B419230362FEE8E /* react-native-safe-area-context.xcconfig */; +>>>>>>> master >>>>>>> master buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -16815,10 +18552,14 @@ }; 59E87AAF26C4B0424DD9FE9EF90EBA77 /* Debug */ = { isa = XCBuildConfiguration; +<<<<<<< HEAD + baseConfigurationReference = 3D36B5F97330B21A81145CFE01C0B1C0 /* React-jsi.xcconfig */; +======= <<<<<<< HEAD baseConfigurationReference = 204532B49399F6199BA7855EBB469B49 /* React-RCTLinking.debug.xcconfig */; ======= baseConfigurationReference = C0E322BF48D21B54242D50BA87D0C0CA /* React-jsi.xcconfig */; +>>>>>>> master >>>>>>> master buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -16845,7 +18586,7 @@ }; 7ED2663CADBE5D8B55630D2A2DBE74FD /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 895B06E692842355FF6F590FC2331264 /* UMSensorsInterface.xcconfig */; + baseConfigurationReference = A56C1F583615E2D8DB60374B5F9B752E /* UMSensorsInterface.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; CLANG_ENABLE_OBJC_WEAK = NO; @@ -16889,10 +18630,14 @@ }; 5DEB94E06D5831CA3190862F4E495152 /* Debug */ = { isa = XCBuildConfiguration; +<<<<<<< HEAD + baseConfigurationReference = 7ED446FF7739FA0236E3404FDB5538AB /* UMBarCodeScannerInterface.xcconfig */; +======= <<<<<<< HEAD baseConfigurationReference = FCC74AC1A72F1C7E77F37A3D25FA789F /* React-RCTSettings.debug.xcconfig */; ======= baseConfigurationReference = E3FCFF33AA3E2A0F8A9B9B5DD31CB904 /* UMBarCodeScannerInterface.xcconfig */; +>>>>>>> master >>>>>>> master buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -16916,10 +18661,14 @@ }; 5F00601F479CF5EFB1EED530783AB6B0 /* Release */ = { isa = XCBuildConfiguration; +<<<<<<< HEAD + baseConfigurationReference = 02969131455FC9944F6B06DDBC5C2D3C /* EXFileSystem.xcconfig */; +======= <<<<<<< HEAD baseConfigurationReference = 60E0B29F257B27C36274E687A0FA97D8 /* RNConvertPhAsset.release.xcconfig */; ======= baseConfigurationReference = D8DCAD62277441FE7E17D1BF869B4F48 /* EXFileSystem.xcconfig */; +>>>>>>> master >>>>>>> master buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -16944,10 +18693,14 @@ }; 61FCAA635083C0AE852EB54395E3E22F /* Debug */ = { isa = XCBuildConfiguration; +<<<<<<< HEAD + baseConfigurationReference = AA220265858705F92F8B58F404D01A80 /* UMReactNativeAdapter.xcconfig */; +======= <<<<<<< HEAD baseConfigurationReference = 9557EAB550092CE108AFD861240AB1E2 /* UMCore.debug.xcconfig */; ======= baseConfigurationReference = 3E98846AD71FAED5E3808EC9B6CD89C8 /* UMReactNativeAdapter.xcconfig */; +>>>>>>> master >>>>>>> master buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; @@ -16972,10 +18725,14 @@ }; 636EC3A1DF799AE48A0BEE5E635EA2BE /* Debug */ = { isa = XCBuildConfiguration; +<<<<<<< HEAD + baseConfigurationReference = A469E2616303D0AC55A0C6C90B5C98E9 /* RCTTypeSafety.xcconfig */; +======= <<<<<<< HEAD baseConfigurationReference = B221956F7CA6BF821556537D32D3B67C /* react-native-safe-area-context.debug.xcconfig */; ======= baseConfigurationReference = 346E6CB7AC5BED48E5033FF5BA18E9FB /* RCTTypeSafety.xcconfig */; +>>>>>>> master >>>>>>> master buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -17014,9 +18771,13 @@ }; 6DAC92034E6ED1B7C9D68C908B0EC637 /* Release */ = { isa = XCBuildConfiguration; +<<<<<<< HEAD + baseConfigurationReference = 1F8EDAF873C0C53EAE22EDE1147917E3 /* UMPermissionsInterface.xcconfig */; +======= baseConfigurationReference = 21D7D169786DD550A137F3096447F7DC /* EXConstants.release.xcconfig */; ======= baseConfigurationReference = 96640E38DC6080ACE6217387B4538A93 /* UMPermissionsInterface.xcconfig */; +>>>>>>> master >>>>>>> master buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; @@ -17126,10 +18887,14 @@ }; 72A90AD3E6DD0921E3E0F0BF895C0BF2 /* Debug */ = { isa = XCBuildConfiguration; +<<<<<<< HEAD + baseConfigurationReference = BF541A0E0B90E487DCF1C8C83BA94220 /* React-Core.xcconfig */; +======= <<<<<<< HEAD baseConfigurationReference = 15251334C4E3F6063B2C5A99D4274644 /* DoubleConversion.debug.xcconfig */; ======= baseConfigurationReference = D8FBD8BB95CFFA637BF6E3FDF1C60AE1 /* React-jsinspector.xcconfig */; +>>>>>>> master >>>>>>> master buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -17153,10 +18918,14 @@ }; 72E95E611199ED77F3A1E3A3C1B97757 /* Debug */ = { isa = XCBuildConfiguration; +<<<<<<< HEAD + baseConfigurationReference = 8871BB4A637D1304AC8191B4D6A0F60F /* React-jsiexecutor.xcconfig */; +======= <<<<<<< HEAD baseConfigurationReference = 24C74D1AC7A0A48FEDFF332FFE8EF00E /* Pods-Gladeo_App.debug.xcconfig */; ======= baseConfigurationReference = A614C204B0CF0E7E4E9A05F62C402D84 /* RNGestureHandler.xcconfig */; +>>>>>>> master >>>>>>> master buildSettings = { ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; @@ -17179,10 +18948,14 @@ }; 74A54683A2013C818A3916D1B7B9647A /* Release */ = { isa = XCBuildConfiguration; +<<<<<<< HEAD + baseConfigurationReference = F971F310D923A6EAB889DB1AD2496C84 /* react-native-safe-area-context.xcconfig */; +======= <<<<<<< HEAD baseConfigurationReference = 3B58FAAC712F22F23D6352C5C0618C38 /* EXPermissions.release.xcconfig */; ======= baseConfigurationReference = 5CB7BBD47382666097F5280F14EAE322 /* Folly.xcconfig */; +>>>>>>> master >>>>>>> master buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; @@ -17208,10 +18981,14 @@ }; 77BBDE99A78B46799563E2FD6171B153 /* Release */ = { isa = XCBuildConfiguration; +<<<<<<< HEAD + baseConfigurationReference = 5A6CB37443C9CE25E62D5139851C6C46 /* React-jsinspector.xcconfig */; +======= <<<<<<< HEAD baseConfigurationReference = F0556E747B8428EA11FA1E5024B7B8C4 /* React-RCTBlob.release.xcconfig */; ======= baseConfigurationReference = F33D462E81760BD44CD5990E82BEBBB5 /* React-RCTImage.xcconfig */; +>>>>>>> master >>>>>>> master buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -17236,10 +19013,14 @@ }; 7F460301BD7C971092CA99C2AFD1408A /* Debug */ = { isa = XCBuildConfiguration; +<<<<<<< HEAD + baseConfigurationReference = C345575CD0FF76134BEE0E814F36F2B2 /* RNGestureHandler.xcconfig */; +======= <<<<<<< HEAD baseConfigurationReference = 7B972478944DB0D64DFFB0B662858863 /* RNVectorIcons.debug.xcconfig */; ======= baseConfigurationReference = E3FCFF33AA3E2A0F8A9B9B5DD31CB904 /* UMBarCodeScannerInterface.xcconfig */; +>>>>>>> master >>>>>>> master buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -17288,11 +19069,15 @@ }; 808801292FB1553169DE49450C915E43 /* Release */ = { isa = XCBuildConfiguration; +<<<<<<< HEAD + baseConfigurationReference = 9D966D5F675EBCC32F38F17AB8AF9AAC /* React-RCTImage.xcconfig */; +======= baseConfigurationReference = FEC896B3CA6F6076DA3FCFAD0EAB8CAD /* react-native-background-timer.release.xcconfig */; ======= 958BC10E056BCEBA7F9718562EB1F393 /* Debug */ = { isa = XCBuildConfiguration; baseConfigurationReference = 6160151481DC530820F8784CA307B735 /* React-RCTActionSheet.xcconfig */; +>>>>>>> master >>>>>>> master buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -17313,14 +19098,36 @@ TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; }; +<<<<<<< HEAD + name = Debug; + }; + 932715893B5D8A998947BDF948EDEA0F /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 7ED446FF7739FA0236E3404FDB5538AB /* UMBarCodeScannerInterface.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; +======= name = Release; +>>>>>>> master }; 847C3847E227EF10E16B4B40065DD567 /* Release */ = { isa = XCBuildConfiguration; +<<<<<<< HEAD + baseConfigurationReference = 2CBF645A0A960BDCF5D00D98C8BF154E /* React-RCTActionSheet.xcconfig */; +======= <<<<<<< HEAD baseConfigurationReference = 5F83A17750072482E3D1F06828680794 /* React-RCTNetwork.release.xcconfig */; ======= baseConfigurationReference = F4071A99A6B6EF72BC1880CE7BE93574 /* react-native-orientation.xcconfig */; +>>>>>>> master >>>>>>> master buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -17343,12 +19150,40 @@ }; name = Release; }; +<<<<<<< HEAD + 99395B1D029DA4286C9B305A2C6A1836 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 24C74D1AC7A0A48FEDFF332FFE8EF00E /* Pods-Gladeo_App.debug.xcconfig */; + buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + MACH_O_TYPE = staticlib; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + 9B80D93F5EE7C55C6F281ED5145AAE6C /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 2E1B0400FB6CBA4F52196B5A5E24E5B2 /* react-native-orientation.xcconfig */; +======= 85F35D4057997BCD3FA90BFAAAD4EB9D /* Debug */ = { isa = XCBuildConfiguration; <<<<<<< HEAD baseConfigurationReference = C22999E3DBF02499A21F0FAF214C76C2 /* UMReactNativeAdapter.debug.xcconfig */; ======= baseConfigurationReference = A2287FA90E130F91559C400F63536366 /* UMFaceDetectorInterface.xcconfig */; +>>>>>>> master >>>>>>> master buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; @@ -17371,12 +19206,32 @@ }; name = Debug; }; +<<<<<<< HEAD + 9CAE17F3AEAA92514573A6AFC28F58F8 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 79C919DFD21DCBABB45D387C497820D6 /* UMFaceDetectorInterface.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + 9FB04105756BA5146AE1EBE9977B6BD2 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 50D75608382758F1A5DC78BAF88BBB83 /* Yoga.xcconfig */; +======= 86FF69C5A3461DD590F19E2B85AD04BA /* Debug */ = { isa = XCBuildConfiguration; <<<<<<< HEAD baseConfigurationReference = 7EEA63C4DF47BE7055A12C37F7107BB8 /* React-RCTVibration.debug.xcconfig */; ======= baseConfigurationReference = 8401FC75455876AF07EA3B02EA29558B /* Yoga.xcconfig */; +>>>>>>> master >>>>>>> master buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -17400,10 +19255,14 @@ }; 871FD87E13F4D7A3D6B04D63420ABC9D /* Release */ = { isa = XCBuildConfiguration; +<<<<<<< HEAD + baseConfigurationReference = 0EB5FEB66D0EA5C919112294CE012916 /* React.xcconfig */; +======= <<<<<<< HEAD baseConfigurationReference = 850AE3FFA0F21C77AB6D3B42C6BFB873 /* RCTRequired.release.xcconfig */; ======= baseConfigurationReference = AD06A1BE05009B425E8A40A317B17F8A /* React.xcconfig */; +>>>>>>> master >>>>>>> master buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -17423,7 +19282,7 @@ ======= A0CE7427B29B950D5C3D9D14D5F0956F /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C78D720FBA72D58F0FAE0906F36F00CF /* UMConstantsInterface.xcconfig */; + baseConfigurationReference = 54DFA6ED893984E6572985CA55D53DE4 /* UMConstantsInterface.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; CLANG_ENABLE_OBJC_WEAK = NO; @@ -17437,7 +19296,11 @@ }; A254650AB5A3A5E0A7E1C98AF036BC50 /* Debug */ = { isa = XCBuildConfiguration; +<<<<<<< HEAD + baseConfigurationReference = B54306C9D682A038DCC1A066679E78DC /* ReactCommon.xcconfig */; +======= baseConfigurationReference = 21493CAC93246D53919041D773A51113 /* ReactCommon.xcconfig */; +>>>>>>> master >>>>>>> master buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -17461,10 +19324,14 @@ }; 87CF0A8BE3EA0BD0ECB73145E33553F2 /* Debug */ = { isa = XCBuildConfiguration; +<<<<<<< HEAD + baseConfigurationReference = 80BB34C456647626591BB91C90A378BC /* FBReactNativeSpec.xcconfig */; +======= <<<<<<< HEAD baseConfigurationReference = 75047287E362A4D6DF8D0554D9DFB21C /* RCTRequired.debug.xcconfig */; ======= baseConfigurationReference = 8E9CDDF7E007CF282E5EFF07B3BA4DB1 /* FBReactNativeSpec.xcconfig */; +>>>>>>> master >>>>>>> master buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -17478,10 +19345,14 @@ }; 8BE6481ABE6391E69F805F6745F86122 /* Release */ = { isa = XCBuildConfiguration; +<<<<<<< HEAD + baseConfigurationReference = 4F4C0DC0E8EFFD57AE8A3FB10990E1B9 /* react-native-video.xcconfig */; +======= <<<<<<< HEAD baseConfigurationReference = B09918EBE0922D18F04A4520E64DE07D /* RNCMaskedView.release.xcconfig */; ======= baseConfigurationReference = 531E22D6F197DAEAB5919F40FE6DA298 /* react-native-video.xcconfig */; +>>>>>>> master buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -17505,7 +19376,7 @@ }; AA3C608C1EFBFF6195298DABF3846DE1 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 895B06E692842355FF6F590FC2331264 /* UMSensorsInterface.xcconfig */; + baseConfigurationReference = A56C1F583615E2D8DB60374B5F9B752E /* UMSensorsInterface.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; CLANG_ENABLE_OBJC_WEAK = NO; @@ -17519,7 +19390,7 @@ }; AB12FE21A483E604127CB887A19228D4 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 99DC2622CC6851584257341D936E3A83 /* UMCore.xcconfig */; + baseConfigurationReference = 3DBCE1FDF690695FEF1D60A2967C97A6 /* UMCore.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -17556,7 +19427,11 @@ }; AE4827ADF1E6C55AC82D2B1EBD7BB74C /* Debug */ = { isa = XCBuildConfiguration; +<<<<<<< HEAD + baseConfigurationReference = 30CCF8B07D8E64BACD48ABECAF0665A0 /* RNCMaskedView.xcconfig */; +======= baseConfigurationReference = 78BC713191CFE484DCF5E5F9D9622C6F /* RNCMaskedView.xcconfig */; +>>>>>>> master >>>>>>> master buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -17575,7 +19450,107 @@ SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; TARGETED_DEVICE_FAMILY = "1,2"; +<<<<<<< HEAD + }; + name = Debug; + }; + AE9E99A048E2AC9F5BC800ACCD76A08D /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 817864B6170BB3D729B4C5A9D79FE671 /* React-RCTText.xcconfig */; + buildSettings = { + CODE_SIGN_IDENTITY = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/React-RCTText/React-RCTText-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = RCTText; + PRODUCT_NAME = "React-RCTText"; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + B006F308D2A947732D25BF32E328BD7C /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = A503E0961E43C9CA12E1312F55B741CA /* UMTaskManagerInterface.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + B01D14FDC83DCF9D4BE53066BEA96D05 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_ENABLE_OBJC_WEAK = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + ENABLE_NS_ASSERTIONS = NO; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_C_LANGUAGE_STANDARD = gnu11; + GCC_NO_COMMON_BLOCKS = YES; + GCC_PREPROCESSOR_DEFINITIONS = ( + "POD_CONFIGURATION_RELEASE=1", + "$(inherited)", + ); + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + MTL_ENABLE_DEBUG_INFO = NO; + MTL_FAST_MATH = YES; + PRODUCT_NAME = "$(TARGET_NAME)"; + STRIP_INSTALLED_PRODUCT = NO; + SWIFT_COMPILATION_MODE = wholemodule; + SWIFT_OPTIMIZATION_LEVEL = "-O"; + SWIFT_VERSION = 5.0; + SYMROOT = "${SRCROOT}/../build"; +======= VALIDATE_PRODUCT = YES; +>>>>>>> master }; name = Release; }; @@ -17625,10 +19600,14 @@ }; 92B829587E14F4828E7FD3A92126BBBF /* Debug */ = { isa = XCBuildConfiguration; +<<<<<<< HEAD + baseConfigurationReference = A5E23FA24B4A4D3A35D5F88EC5AEEAEE /* EXConstants.xcconfig */; +======= <<<<<<< HEAD baseConfigurationReference = 02B16A8566F7A6FA0DFE236DE54555E7 /* react-native-camera.debug.xcconfig */; ======= baseConfigurationReference = F0CB6D01AFA8EAC1A69B57F4AB0D62AC /* EXConstants.xcconfig */; +>>>>>>> master >>>>>>> master buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -17652,10 +19631,14 @@ }; 9454D05E0C8F9EE7976824476ED29FAE /* Debug */ = { isa = XCBuildConfiguration; +<<<<<<< HEAD + baseConfigurationReference = 0F48E2F03F3027518A578F7DFAF2578E /* React-RCTSettings.xcconfig */; +======= <<<<<<< HEAD baseConfigurationReference = 59C0B072B9A58A2FD6B1A6B6F7F8A067 /* Folly.debug.xcconfig */; ======= baseConfigurationReference = FE5E45A4E8A74B99870A717F3F664099 /* React-RCTSettings.xcconfig */; +>>>>>>> master >>>>>>> master buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -17679,10 +19662,14 @@ }; 99028521A8F9B2764DE22E1BFAF810C6 /* Release */ = { isa = XCBuildConfiguration; +<<<<<<< HEAD + baseConfigurationReference = BF541A0E0B90E487DCF1C8C83BA94220 /* React-Core.xcconfig */; +======= <<<<<<< HEAD baseConfigurationReference = EA4B5E87477AEDCC935F400D193A45DF /* Folly.release.xcconfig */; ======= baseConfigurationReference = B3557E1750E4CA0C50DE71D9F5E70DA5 /* React-Core.xcconfig */; +>>>>>>> master >>>>>>> master buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -17712,7 +19699,7 @@ ======= B6C7034271AD612C0CE2EE28606818D0 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 20619492E8F06CCFA2AB068319ED78B1 /* EXAppLoaderProvider.xcconfig */; + baseConfigurationReference = 37DEDEBE11BF4D519B1DA919FF17E992 /* EXAppLoaderProvider.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -17736,7 +19723,11 @@ }; B6C7F8EC6806DC688694BBE5DE13D65C /* Debug */ = { isa = XCBuildConfiguration; +<<<<<<< HEAD + baseConfigurationReference = 0EB5FEB66D0EA5C919112294CE012916 /* React.xcconfig */; +======= baseConfigurationReference = AD06A1BE05009B425E8A40A317B17F8A /* React.xcconfig */; +>>>>>>> master >>>>>>> master buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -17750,10 +19741,14 @@ }; 9B9C01E1713416B7064FFC4378BEE100 /* Debug */ = { isa = XCBuildConfiguration; +<<<<<<< HEAD + baseConfigurationReference = 3DBCE1FDF690695FEF1D60A2967C97A6 /* UMCore.xcconfig */; +======= <<<<<<< HEAD baseConfigurationReference = 57701A753186DC834D47AC95F2BA5CEB /* RNConvertPhAsset.debug.xcconfig */; ======= baseConfigurationReference = 99DC2622CC6851584257341D936E3A83 /* UMCore.xcconfig */; +>>>>>>> master >>>>>>> master buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -17777,10 +19772,14 @@ }; 9C4D99DBFC56E4118BBB3684CD689F8C /* Debug */ = { isa = XCBuildConfiguration; +<<<<<<< HEAD + baseConfigurationReference = DF64BF36CB5729AE428B6C8CC863A56B /* RNReanimated.xcconfig */; +======= <<<<<<< HEAD baseConfigurationReference = C9CAEB2465C08842A635AF59BB48F882 /* RNScreens.debug.xcconfig */; ======= baseConfigurationReference = 02C87CEB373E9EBB06855EB0D82F05BF /* RNReanimated.xcconfig */; +>>>>>>> master >>>>>>> master buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -17807,7 +19806,7 @@ }; B74A66D1B4DB325F337289BC6923B612 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 77F3ECAC00F1B342A3AFC13483A5FB71 /* RCTRequired.xcconfig */; + baseConfigurationReference = 9DCB996BA90EA34FA9E61EB674C5D217 /* RCTRequired.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -17821,10 +19820,14 @@ }; 9FAECB6FFEF1C5C7980CAA35364D6F2A /* Debug */ = { isa = XCBuildConfiguration; +<<<<<<< HEAD + baseConfigurationReference = 4F4C0DC0E8EFFD57AE8A3FB10990E1B9 /* react-native-video.xcconfig */; +======= <<<<<<< HEAD baseConfigurationReference = A219BAA7526ADA0294662A296F9A35E2 /* React-RCTImage.debug.xcconfig */; ======= baseConfigurationReference = 531E22D6F197DAEAB5919F40FE6DA298 /* react-native-video.xcconfig */; +>>>>>>> master >>>>>>> master buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -17848,10 +19851,14 @@ }; A02196AF3843A5DFC2DB0C00F1C7BB1D /* Release */ = { isa = XCBuildConfiguration; +<<<<<<< HEAD + baseConfigurationReference = A83DA77DA2E7E838F9C91EE45DDA18AE /* UMCameraInterface.xcconfig */; +======= <<<<<<< HEAD baseConfigurationReference = 412B4FEAD71BE4160C52C53E8281DD25 /* React-jsiexecutor.release.xcconfig */; ======= baseConfigurationReference = 622DD301913CCB53E9F25714202B9121 /* UMCameraInterface.xcconfig */; +>>>>>>> master >>>>>>> master buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -17876,10 +19883,14 @@ }; A05E277F68641F20CBD51EC9FC485DC5 /* Release */ = { isa = XCBuildConfiguration; +<<<<<<< HEAD + baseConfigurationReference = 37DEDEBE11BF4D519B1DA919FF17E992 /* EXAppLoaderProvider.xcconfig */; +======= <<<<<<< HEAD baseConfigurationReference = 3C78C6DABA91EAC86698A0D3FC778ED4 /* UMFileSystemInterface.release.xcconfig */; ======= baseConfigurationReference = 20619492E8F06CCFA2AB068319ED78B1 /* EXAppLoaderProvider.xcconfig */; +>>>>>>> master >>>>>>> master buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -17893,12 +19904,42 @@ }; name = Release; }; +<<<<<<< HEAD + BFB0CFBFF57A9F4100E78EED7D2A649A /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = B1317A709B24821FB990E3E0ED0C7424 /* RNFS.xcconfig */; + buildSettings = { + CODE_SIGN_IDENTITY = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/RNFS/RNFS-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = RNFS; + PRODUCT_NAME = RNFS; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + C128C18739AA9067D388429C13824733 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = E97E421D7170698C39CD51DD91548ED6 /* FBLazyVector.xcconfig */; +======= A797DDC1656F04F4782B6AD39FD32E4F /* Release */ = { isa = XCBuildConfiguration; <<<<<<< HEAD baseConfigurationReference = 3B57AF248E3D7452B7F983B5F09BA26B /* React.release.xcconfig */; ======= baseConfigurationReference = 8C9F0B182BF7FA1B80DF112F60130C4E /* FBLazyVector.xcconfig */; +>>>>>>> master >>>>>>> master buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -17913,10 +19954,14 @@ }; A7C724F9F194C9B874123546EB9E9684 /* Release */ = { isa = XCBuildConfiguration; +<<<<<<< HEAD + baseConfigurationReference = BE8F624CB1E9B71FD4BC3BBE26488671 /* RNConvertPhAsset.xcconfig */; +======= <<<<<<< HEAD baseConfigurationReference = 160EE1C3CC320E050372CC9C6A47C283 /* React-RCTSettings.release.xcconfig */; ======= baseConfigurationReference = E911888582E5D7BF3A07686B5F193C9B /* RNConvertPhAsset.xcconfig */; +>>>>>>> master >>>>>>> master buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -17941,10 +19986,14 @@ }; A7CD1B33F9498A090885B036E5149419 /* Debug */ = { isa = XCBuildConfiguration; +<<<<<<< HEAD + baseConfigurationReference = F2567BF146B787AF05858EE1A1C7B0FE /* RNCAsyncStorage.xcconfig */; +======= <<<<<<< HEAD baseConfigurationReference = F31B957EFF1CD2424FBEA2FD1EB1BD8C /* FBReactNativeSpec.debug.xcconfig */; ======= baseConfigurationReference = 127E6EECEAF934BB66F837485D69ADBF /* RNCAsyncStorage.xcconfig */; +>>>>>>> master >>>>>>> master buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -17968,10 +20017,14 @@ }; A85B983528EB0949AE3C104568CC09B5 /* Release */ = { isa = XCBuildConfiguration; +<<<<<<< HEAD + baseConfigurationReference = 942A08D2F61D40D81D337860BED9B8C4 /* React-RCTAnimation.xcconfig */; +======= <<<<<<< HEAD baseConfigurationReference = 3C59D533DD876CA35D68F3D6B99BE56F /* UMFaceDetectorInterface.release.xcconfig */; ======= baseConfigurationReference = 8A3E60D8CEF9DD08BAC07DBB85FE6491 /* React-RCTAnimation.xcconfig */; +>>>>>>> master >>>>>>> master buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -17987,10 +20040,14 @@ }; A8B6E56AC162E01A66D27254BBAC7CDB /* Release */ = { isa = XCBuildConfiguration; +<<<<<<< HEAD + baseConfigurationReference = 122393B78EAAE45A999E469B03393C5C /* React-RCTBlob.xcconfig */; +======= <<<<<<< HEAD baseConfigurationReference = DF3D1C4D67E4049A5D8174ACB1128ADE /* RNReanimated.release.xcconfig */; ======= baseConfigurationReference = 9D7A5B8520C72549D4B692F6D4E984B3 /* React-RCTBlob.xcconfig */; +>>>>>>> master >>>>>>> master buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -18015,6 +20072,9 @@ }; AD09C941AC8CC80B677642375C0883B8 /* Debug */ = { isa = XCBuildConfiguration; +<<<<<<< HEAD + baseConfigurationReference = EA557A994668D9483B5795B4A5ED9C14 /* React-RCTLinking.xcconfig */; +======= <<<<<<< HEAD baseConfigurationReference = 1A458884410D3D5745F1D07E2ABA3BF1 /* UMConstantsInterface.debug.xcconfig */; buildSettings = { @@ -18033,6 +20093,7 @@ baseConfigurationReference = 656B95D4F136D4FFDF1656BF81B31179 /* ReactCommon.debug.xcconfig */; ======= baseConfigurationReference = 7F67BE09741B9B90A7ABC142CE1E0A3B /* React-RCTLinking.xcconfig */; +>>>>>>> master >>>>>>> master buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -18117,9 +20178,13 @@ }; B0BE6B5951266E29EF0540108A66D997 /* Release */ = { isa = XCBuildConfiguration; +<<<<<<< HEAD + baseConfigurationReference = 67D7DA22FF06DE7B2E9F08CEC955FF2A /* React-RCTNetwork.xcconfig */; +======= baseConfigurationReference = F6CBB9BE032C4C22D959140C34DD422F /* RCTTypeSafety.release.xcconfig */; ======= baseConfigurationReference = E646420275D81469ADBA372F7A8A5177 /* React-RCTNetwork.xcconfig */; +>>>>>>> master >>>>>>> master buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -18144,10 +20209,14 @@ }; B21296C1A15E1B2BC568F6E75F8D7B90 /* Release */ = { isa = XCBuildConfiguration; +<<<<<<< HEAD + baseConfigurationReference = 51EB1DCE5F87EE152D199661C525C275 /* RNVectorIcons.xcconfig */; +======= <<<<<<< HEAD baseConfigurationReference = 6238D3705BB8810D2043E594A6896D12 /* react-native-camera.release.xcconfig */; ======= baseConfigurationReference = 7F90DA9DD514B1B6E657857A3990A15B /* RNVectorIcons.xcconfig */; +>>>>>>> master >>>>>>> master buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -18172,10 +20241,14 @@ }; B2D3D4104838EA9FB1A3F849FEC59A3C /* Debug */ = { isa = XCBuildConfiguration; +<<<<<<< HEAD + baseConfigurationReference = 3359D6CB88796236E3C60FDE8A5CF4CA /* RNScreens.xcconfig */; +======= <<<<<<< HEAD baseConfigurationReference = A60301C3626AEBFA5B192E6D30D2E0C0 /* RNGestureHandler.debug.xcconfig */; ======= baseConfigurationReference = 3A3985C6709DC2616852677703D339C1 /* RNScreens.xcconfig */; +>>>>>>> master >>>>>>> master buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -18199,10 +20272,14 @@ }; B7A12E78417DC741D97490019BE499AB /* Debug */ = { isa = XCBuildConfiguration; +<<<<<<< HEAD + baseConfigurationReference = BE8F624CB1E9B71FD4BC3BBE26488671 /* RNConvertPhAsset.xcconfig */; +======= <<<<<<< HEAD baseConfigurationReference = 2435F0F2D0A494171714B09478491D9B /* React-RCTText.debug.xcconfig */; ======= baseConfigurationReference = E911888582E5D7BF3A07686B5F193C9B /* RNConvertPhAsset.xcconfig */; +>>>>>>> master >>>>>>> master buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -18228,7 +20305,7 @@ }; D338DBE12EAEC66131F53EE4259FD4E3 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 381E31337C1972A78AA8EFFB758FCE98 /* UMFileSystemInterface.xcconfig */; + baseConfigurationReference = 6D6D6F9FAF45664AC1C8627F0E383B00 /* UMFileSystemInterface.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; CLANG_ENABLE_OBJC_WEAK = NO; @@ -18243,7 +20320,7 @@ }; D59C3B7BE5D98BD3A70A5E5B073C631B /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = A7D675764C87B181AC0A36BFF9B4BD47 /* UMTaskManagerInterface.xcconfig */; + baseConfigurationReference = A503E0961E43C9CA12E1312F55B741CA /* UMTaskManagerInterface.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; CLANG_ENABLE_OBJC_WEAK = NO; @@ -18273,10 +20350,14 @@ }; B8A494FE93868642A9F6F03637F4549D /* Debug */ = { isa = XCBuildConfiguration; +<<<<<<< HEAD + baseConfigurationReference = 5A6CB37443C9CE25E62D5139851C6C46 /* React-jsinspector.xcconfig */; +======= <<<<<<< HEAD baseConfigurationReference = AF840395ABFC9D94945B3E5C7C13C448 /* EXConstants.debug.xcconfig */; ======= baseConfigurationReference = D8FBD8BB95CFFA637BF6E3FDF1C60AE1 /* React-jsinspector.xcconfig */; +>>>>>>> master >>>>>>> master buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; @@ -18301,10 +20382,14 @@ }; BF3A34CF8604C80D7370340C291ADA8C /* Debug */ = { isa = XCBuildConfiguration; +<<<<<<< HEAD + baseConfigurationReference = 60117552B5A6B355E76610B5F720F876 /* react-native-cameraroll.xcconfig */; +======= <<<<<<< HEAD baseConfigurationReference = A7E54C6E2D880ACCE1F25B1C42236D34 /* Yoga.debug.xcconfig */; ======= baseConfigurationReference = 242C7CAF09D52400CB075F5A9618E02F /* react-native-cameraroll.xcconfig */; +>>>>>>> master >>>>>>> master buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -18328,10 +20413,14 @@ }; C2BFC5DBC8756F63D0A08F6C44194984 /* Release */ = { isa = XCBuildConfiguration; +<<<<<<< HEAD + baseConfigurationReference = 9DCB996BA90EA34FA9E61EB674C5D217 /* RCTRequired.xcconfig */; +======= <<<<<<< HEAD baseConfigurationReference = 08371F495A4B842C4B5DDAAAE1C77BE8 /* ReactCommon.release.xcconfig */; ======= baseConfigurationReference = 77F3ECAC00F1B342A3AFC13483A5FB71 /* RCTRequired.xcconfig */; +>>>>>>> master >>>>>>> master buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -18357,7 +20446,7 @@ }; E38047BBE4979D9C53D6D7FEA4422373 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = EF905AE211121D6BEF9C5AEB6F1A0497 /* UMFontInterface.xcconfig */; + baseConfigurationReference = 2F8DB64D9CCCF2F99AF0E36F8D414DBE /* UMFontInterface.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; CLANG_ENABLE_OBJC_WEAK = NO; @@ -18375,10 +20464,14 @@ }; C47D87E0D61AFEB134317833E73381C5 /* Debug */ = { isa = XCBuildConfiguration; +<<<<<<< HEAD + baseConfigurationReference = C345575CD0FF76134BEE0E814F36F2B2 /* RNGestureHandler.xcconfig */; +======= <<<<<<< HEAD baseConfigurationReference = 3D29DD265B1155D94EC03CE5EDFBDD42 /* react-native-orientation.debug.xcconfig */; ======= baseConfigurationReference = A614C204B0CF0E7E4E9A05F62C402D84 /* RNGestureHandler.xcconfig */; +>>>>>>> master >>>>>>> master buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -18402,10 +20495,14 @@ }; C67B9C4AE8B652C46049C405358FD47D /* Debug */ = { isa = XCBuildConfiguration; +<<<<<<< HEAD + baseConfigurationReference = 80BB34C456647626591BB91C90A378BC /* FBReactNativeSpec.xcconfig */; +======= <<<<<<< HEAD baseConfigurationReference = 2F372942CE5D5F28313FB9EBFD33E869 /* react-native-background-timer.debug.xcconfig */; ======= baseConfigurationReference = 8E9CDDF7E007CF282E5EFF07B3BA4DB1 /* FBReactNativeSpec.xcconfig */; +>>>>>>> master >>>>>>> master buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -18429,10 +20526,14 @@ }; C82751E790485B5719D38F5A126F4828 /* Release */ = { isa = XCBuildConfiguration; +<<<<<<< HEAD + baseConfigurationReference = F2567BF146B787AF05858EE1A1C7B0FE /* RNCAsyncStorage.xcconfig */; +======= <<<<<<< HEAD baseConfigurationReference = C0E86048753ECF1C695000D6C5FB7C36 /* react-native-orientation.release.xcconfig */; ======= baseConfigurationReference = 127E6EECEAF934BB66F837485D69ADBF /* RNCAsyncStorage.xcconfig */; +>>>>>>> master >>>>>>> master buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -18457,10 +20558,14 @@ }; CAD6F242A0850DC46F584FDF4451E9D8 /* Debug */ = { isa = XCBuildConfiguration; +<<<<<<< HEAD + baseConfigurationReference = DF64BF36CB5729AE428B6C8CC863A56B /* RNReanimated.xcconfig */; +======= <<<<<<< HEAD baseConfigurationReference = 09591B70263D3A09786A4827115FA5D6 /* React-cxxreact.debug.xcconfig */; ======= baseConfigurationReference = 02C87CEB373E9EBB06855EB0D82F05BF /* RNReanimated.xcconfig */; +>>>>>>> master >>>>>>> master buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -18484,10 +20589,14 @@ }; CE91C3D07849BA0294B059D4B0D617A6 /* Release */ = { isa = XCBuildConfiguration; +<<<<<<< HEAD + baseConfigurationReference = AA220265858705F92F8B58F404D01A80 /* UMReactNativeAdapter.xcconfig */; +======= <<<<<<< HEAD baseConfigurationReference = EA0E82271F0EA9ADA90A577B76E157BB /* react-native-video.release.xcconfig */; ======= baseConfigurationReference = 3E98846AD71FAED5E3808EC9B6CD89C8 /* UMReactNativeAdapter.xcconfig */; +>>>>>>> master >>>>>>> master buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -18512,10 +20621,14 @@ }; CF7DD08E89E1FF8EA047B498B8E7FA91 /* Release */ = { isa = XCBuildConfiguration; +<<<<<<< HEAD + baseConfigurationReference = A5E23FA24B4A4D3A35D5F88EC5AEEAEE /* EXConstants.xcconfig */; +======= <<<<<<< HEAD baseConfigurationReference = A091A42D70AEA15592C2652EA8B61117 /* react-native-safe-area-context.release.xcconfig */; ======= baseConfigurationReference = F0CB6D01AFA8EAC1A69B57F4AB0D62AC /* EXConstants.xcconfig */; +>>>>>>> master >>>>>>> master buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -18554,10 +20667,14 @@ }; D207E72981BDD091E023B9E64A12C92F /* Release */ = { isa = XCBuildConfiguration; +<<<<<<< HEAD + baseConfigurationReference = 02969131455FC9944F6B06DDBC5C2D3C /* EXFileSystem.xcconfig */; +======= <<<<<<< HEAD baseConfigurationReference = D86032605C3624A1CB06291B12DAA865 /* RNScreens.release.xcconfig */; ======= baseConfigurationReference = D8DCAD62277441FE7E17D1BF869B4F48 /* EXFileSystem.xcconfig */; +>>>>>>> master >>>>>>> master buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -18596,10 +20713,14 @@ }; D482E6C8A08B57DFE3F0FE119E048E32 /* Release */ = { isa = XCBuildConfiguration; +<<<<<<< HEAD + baseConfigurationReference = 8871BB4A637D1304AC8191B4D6A0F60F /* React-jsiexecutor.xcconfig */; +======= <<<<<<< HEAD baseConfigurationReference = D4BF146C7BAC783A205430095E771D3F /* React-RCTLinking.release.xcconfig */; ======= baseConfigurationReference = 1A32273B1E0B1D7C3B8CB4EEBE2C0B7D /* React-jsiexecutor.xcconfig */; +>>>>>>> master >>>>>>> master buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -18624,10 +20745,14 @@ }; D646C2B0FA6644C14ED4612C4D442965 /* Release */ = { isa = XCBuildConfiguration; +<<<<<<< HEAD + baseConfigurationReference = 3359D6CB88796236E3C60FDE8A5CF4CA /* RNScreens.xcconfig */; +======= <<<<<<< HEAD baseConfigurationReference = EE2F10C38FF012971D7E31EDC83767C7 /* UMPermissionsInterface.release.xcconfig */; ======= baseConfigurationReference = 3A3985C6709DC2616852677703D339C1 /* RNScreens.xcconfig */; +>>>>>>> master >>>>>>> master buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; @@ -18653,10 +20778,14 @@ }; DD8E3F2612E674AF562B6BB0E8FECCA5 /* Debug */ = { isa = XCBuildConfiguration; +<<<<<<< HEAD + baseConfigurationReference = 6D6D6F9FAF45664AC1C8627F0E383B00 /* UMFileSystemInterface.xcconfig */; +======= <<<<<<< HEAD baseConfigurationReference = 9150BEA2B56A1D0AE35A6D82186025D2 /* EXAppLoaderProvider.debug.xcconfig */; ======= baseConfigurationReference = 381E31337C1972A78AA8EFFB758FCE98 /* UMFileSystemInterface.xcconfig */; +>>>>>>> master >>>>>>> master buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; @@ -18681,10 +20810,14 @@ }; EA693A7303A3F117B29C235898A88739 /* Release */ = { isa = XCBuildConfiguration; +<<<<<<< HEAD + baseConfigurationReference = 615C1B850263BB26E0AC6D83714BFED1 /* React-cxxreact.xcconfig */; +======= <<<<<<< HEAD baseConfigurationReference = 5A724B048F1B5EC6B6A10120A41A744F /* React-RCTActionSheet.release.xcconfig */; ======= baseConfigurationReference = 7C24906DDFF8C57FFBD11709A664663D /* React-cxxreact.xcconfig */; +>>>>>>> master >>>>>>> master buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -18709,6 +20842,9 @@ }; EE315A41EE968DA89FAFA2393266579F /* Release */ = { isa = XCBuildConfiguration; +<<<<<<< HEAD + baseConfigurationReference = 34213CC0ED6281A8A86AEC774A315D30 /* react-native-camera.xcconfig */; +======= baseConfigurationReference = B152FFE8414A42564EDBED98C97D1BD4 /* UMImageLoaderInterface.release.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -18742,6 +20878,7 @@ baseConfigurationReference = E8BA651FA33FBE1545AF9AABC730C19B /* DoubleConversion.release.xcconfig */; ======= baseConfigurationReference = DAD97227D406D48D33933D225A6350EF /* react-native-camera.xcconfig */; +>>>>>>> master >>>>>>> master buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -18793,10 +20930,14 @@ }; FBE1A335FAF8FEFEE307792D6181D5A8 /* Release */ = { isa = XCBuildConfiguration; +<<<<<<< HEAD + baseConfigurationReference = 51EB1DCE5F87EE152D199661C525C275 /* RNVectorIcons.xcconfig */; +======= <<<<<<< HEAD baseConfigurationReference = 2E9606CB7E47A06E31DB0BCE193BE1BA /* EXAppLoaderProvider.release.xcconfig */; ======= baseConfigurationReference = 7F90DA9DD514B1B6E657857A3990A15B /* RNVectorIcons.xcconfig */; +>>>>>>> master >>>>>>> master buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; @@ -18822,10 +20963,14 @@ }; FBF7E965F26139C167F0928D70CC35FD /* Debug */ = { isa = XCBuildConfiguration; +<<<<<<< HEAD + baseConfigurationReference = 30CCF8B07D8E64BACD48ABECAF0665A0 /* RNCMaskedView.xcconfig */; +======= <<<<<<< HEAD baseConfigurationReference = CC1992B0D9FB5FB719D245821C05EDC7 /* React-RCTBlob.debug.xcconfig */; ======= baseConfigurationReference = 78BC713191CFE484DCF5E5F9D9622C6F /* RNCMaskedView.xcconfig */; +>>>>>>> master >>>>>>> master buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -19236,20 +21381,25 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - B3E76B1390AF20A46D319CDCE2224F68 /* Build configuration list for PBXNativeTarget "ReactCommon" */ = { + B247E0332EEE7CB26B063FA63F69D455 /* Build configuration list for PBXNativeTarget "RNFS" */ = { isa = XCConfigurationList; buildConfigurations = ( +<<<<<<< HEAD + 225C892B93B5483FF91E933FB6C44A6A /* Debug */, + BFB0CFBFF57A9F4100E78EED7D2A649A /* Release */, +======= AF325193A604CA5AD89DE0AE47974A3F /* Debug */, C2BFC5DBC8756F63D0A08F6C44194984 /* Release */, +>>>>>>> master ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - BF62FFAFAB13C31AAC5CC7FE6C5C9B31 /* Build configuration list for PBXNativeTarget "Pods-Gladeo_App" */ = { + B3E76B1390AF20A46D319CDCE2224F68 /* Build configuration list for PBXNativeTarget "ReactCommon" */ = { isa = XCConfigurationList; buildConfigurations = ( - 45CBFE825370B29129D7D1264DF166C3 /* Debug */, - 1779D5FEE7871DCC446CE50C2EF70A24 /* Release */, + A254650AB5A3A5E0A7E1C98AF036BC50 /* Debug */, + 6A6F39801D45DD240C91ED76E02A5716 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -19380,6 +21530,15 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; + EB87FA5E9CBBA7A413CD1E2C9FE00F2D /* Build configuration list for PBXNativeTarget "Pods-Gladeo_App" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 99395B1D029DA4286C9B305A2C6A1836 /* Debug */, + 22F7A18DC145F3BB4914E733FF5AE2A1 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; F3B5D9DA1E40073F034CC27A3F9CD632 /* Build configuration list for PBXNativeTarget "FBReactNativeSpec" */ = { isa = XCConfigurationList; buildConfigurations = ( diff --git a/ios/Pods/Target Support Files/Pods-Gladeo_App/Pods-Gladeo_App-acknowledgements.markdown b/ios/Pods/Target Support Files/Pods-Gladeo_App/Pods-Gladeo_App-acknowledgements.markdown index 7bea440c..b243fb33 100644 --- a/ios/Pods/Target Support Files/Pods-Gladeo_App/Pods-Gladeo_App-acknowledgements.markdown +++ b/ios/Pods/Target Support Files/Pods-Gladeo_App/Pods-Gladeo_App-acknowledgements.markdown @@ -261,6 +261,31 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +## RNFS + +The MIT License (MIT) + +Copyright (c) 2015 Johannes Lumpe + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + ## RNGestureHandler The MIT License (MIT) diff --git a/ios/Pods/Target Support Files/Pods-Gladeo_App/Pods-Gladeo_App-acknowledgements.plist b/ios/Pods/Target Support Files/Pods-Gladeo_App/Pods-Gladeo_App-acknowledgements.plist index b09a4c97..badcdda0 100644 --- a/ios/Pods/Target Support Files/Pods-Gladeo_App/Pods-Gladeo_App-acknowledgements.plist +++ b/ios/Pods/Target Support Files/Pods-Gladeo_App/Pods-Gladeo_App-acknowledgements.plist @@ -300,6 +300,37 @@ SOFTWARE. FooterText The MIT License (MIT) +Copyright (c) 2015 Johannes Lumpe + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + License + MIT + Title + RNFS + Type + PSGroupSpecifier + + + FooterText + The MIT License (MIT) + Copyright (c) 2016 Krzysztof Magiera Permission is hereby granted, free of charge, to any person obtaining a copy diff --git a/ios/Pods/Target Support Files/Pods-Gladeo_App/Pods-Gladeo_App.debug.xcconfig b/ios/Pods/Target Support Files/Pods-Gladeo_App/Pods-Gladeo_App.debug.xcconfig index ae83727e..9a64c2d4 100644 --- a/ios/Pods/Target Support Files/Pods-Gladeo_App/Pods-Gladeo_App.debug.xcconfig +++ b/ios/Pods/Target Support Files/Pods-Gladeo_App/Pods-Gladeo_App.debug.xcconfig @@ -1,8 +1,8 @@ FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/mobile-ffmpeg-https" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/EXAppLoaderProvider" "${PODS_ROOT}/Headers/Public/EXConstants" "${PODS_ROOT}/Headers/Public/EXFileSystem" "${PODS_ROOT}/Headers/Public/EXPermissions" "${PODS_ROOT}/Headers/Public/FBLazyVector" "${PODS_ROOT}/Headers/Public/FBReactNativeSpec" "${PODS_ROOT}/Headers/Public/RCTRequired" "${PODS_ROOT}/Headers/Public/RCTTypeSafety" "${PODS_ROOT}/Headers/Public/RNCAsyncStorage" "${PODS_ROOT}/Headers/Public/RNCMaskedView" "${PODS_ROOT}/Headers/Public/RNConvertPhAsset" "${PODS_ROOT}/Headers/Public/RNGestureHandler" "${PODS_ROOT}/Headers/Public/RNReanimated" "${PODS_ROOT}/Headers/Public/RNScreens" "${PODS_ROOT}/Headers/Public/RNVectorIcons" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-RCTBlob" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/ReactCommon" "${PODS_ROOT}/Headers/Public/UMBarCodeScannerInterface" "${PODS_ROOT}/Headers/Public/UMCameraInterface" "${PODS_ROOT}/Headers/Public/UMConstantsInterface" "${PODS_ROOT}/Headers/Public/UMCore" "${PODS_ROOT}/Headers/Public/UMFaceDetectorInterface" "${PODS_ROOT}/Headers/Public/UMFileSystemInterface" "${PODS_ROOT}/Headers/Public/UMFontInterface" "${PODS_ROOT}/Headers/Public/UMImageLoaderInterface" "${PODS_ROOT}/Headers/Public/UMPermissionsInterface" "${PODS_ROOT}/Headers/Public/UMReactNativeAdapter" "${PODS_ROOT}/Headers/Public/UMSensorsInterface" "${PODS_ROOT}/Headers/Public/UMTaskManagerInterface" "${PODS_ROOT}/Headers/Public/Yoga" "${PODS_ROOT}/Headers/Public/glog" "${PODS_ROOT}/Headers/Public/react-native-camera" "${PODS_ROOT}/Headers/Public/react-native-cameraroll" "${PODS_ROOT}/Headers/Public/react-native-ffmpeg" "${PODS_ROOT}/Headers/Public/react-native-orientation" "${PODS_ROOT}/Headers/Public/react-native-safe-area-context" "${PODS_ROOT}/Headers/Public/react-native-video" "$(PODS_ROOT)/Headers/Private/React-Core" -LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/DoubleConversion" "${PODS_CONFIGURATION_BUILD_DIR}/EXAppLoaderProvider" "${PODS_CONFIGURATION_BUILD_DIR}/EXConstants" "${PODS_CONFIGURATION_BUILD_DIR}/EXFileSystem" "${PODS_CONFIGURATION_BUILD_DIR}/EXPermissions" "${PODS_CONFIGURATION_BUILD_DIR}/FBReactNativeSpec" "${PODS_CONFIGURATION_BUILD_DIR}/Folly" "${PODS_CONFIGURATION_BUILD_DIR}/RCTTypeSafety" "${PODS_CONFIGURATION_BUILD_DIR}/RNCAsyncStorage" "${PODS_CONFIGURATION_BUILD_DIR}/RNCMaskedView" "${PODS_CONFIGURATION_BUILD_DIR}/RNConvertPhAsset" "${PODS_CONFIGURATION_BUILD_DIR}/RNGestureHandler" "${PODS_CONFIGURATION_BUILD_DIR}/RNReanimated" "${PODS_CONFIGURATION_BUILD_DIR}/RNScreens" "${PODS_CONFIGURATION_BUILD_DIR}/RNVectorIcons" "${PODS_CONFIGURATION_BUILD_DIR}/React-Core" "${PODS_CONFIGURATION_BUILD_DIR}/React-CoreModules" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTActionSheet" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTAnimation" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTBlob" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTImage" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTLinking" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTNetwork" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTSettings" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTText" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTVibration" "${PODS_CONFIGURATION_BUILD_DIR}/React-cxxreact" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsi" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsiexecutor" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsinspector" "${PODS_CONFIGURATION_BUILD_DIR}/ReactCommon" "${PODS_CONFIGURATION_BUILD_DIR}/UMCore" "${PODS_CONFIGURATION_BUILD_DIR}/UMPermissionsInterface" "${PODS_CONFIGURATION_BUILD_DIR}/UMReactNativeAdapter" "${PODS_CONFIGURATION_BUILD_DIR}/Yoga" "${PODS_CONFIGURATION_BUILD_DIR}/glog" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-camera" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-cameraroll" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-ffmpeg" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-orientation" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-safe-area-context" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-video" -OTHER_LDFLAGS = $(inherited) -ObjC -l"DoubleConversion" -l"EXAppLoaderProvider" -l"EXConstants" -l"EXFileSystem" -l"EXPermissions" -l"FBReactNativeSpec" -l"Folly" -l"RCTTypeSafety" -l"RNCAsyncStorage" -l"RNCMaskedView" -l"RNConvertPhAsset" -l"RNGestureHandler" -l"RNReanimated" -l"RNScreens" -l"RNVectorIcons" -l"React-Core" -l"React-CoreModules" -l"React-RCTActionSheet" -l"React-RCTAnimation" -l"React-RCTBlob" -l"React-RCTImage" -l"React-RCTLinking" -l"React-RCTNetwork" -l"React-RCTSettings" -l"React-RCTText" -l"React-RCTVibration" -l"React-cxxreact" -l"React-jsi" -l"React-jsiexecutor" -l"React-jsinspector" -l"ReactCommon" -l"UMCore" -l"UMPermissionsInterface" -l"UMReactNativeAdapter" -l"Yoga" -l"bz2" -l"c++" -l"glog" -l"iconv" -l"react-native-camera" -l"react-native-cameraroll" -l"react-native-ffmpeg" -l"react-native-orientation" -l"react-native-safe-area-context" -l"react-native-video" -l"stdc++" -l"z" -framework "AVFoundation" -framework "AudioToolbox" -framework "CoreMedia" -framework "JavaScriptCore" -framework "VideoToolbox" -framework "gmp" -framework "gnutls" -framework "libavcodec" -framework "libavdevice" -framework "libavfilter" -framework "libavformat" -framework "libavutil" -framework "libhogweed" -framework "libnettle" -framework "libswresample" -framework "libswscale" -framework "mobileffmpeg" +HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/EXAppLoaderProvider" "${PODS_ROOT}/Headers/Public/EXConstants" "${PODS_ROOT}/Headers/Public/EXFileSystem" "${PODS_ROOT}/Headers/Public/EXPermissions" "${PODS_ROOT}/Headers/Public/FBLazyVector" "${PODS_ROOT}/Headers/Public/FBReactNativeSpec" "${PODS_ROOT}/Headers/Public/RCTRequired" "${PODS_ROOT}/Headers/Public/RCTTypeSafety" "${PODS_ROOT}/Headers/Public/RNCAsyncStorage" "${PODS_ROOT}/Headers/Public/RNCMaskedView" "${PODS_ROOT}/Headers/Public/RNConvertPhAsset" "${PODS_ROOT}/Headers/Public/RNFS" "${PODS_ROOT}/Headers/Public/RNGestureHandler" "${PODS_ROOT}/Headers/Public/RNReanimated" "${PODS_ROOT}/Headers/Public/RNScreens" "${PODS_ROOT}/Headers/Public/RNVectorIcons" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-RCTBlob" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/ReactCommon" "${PODS_ROOT}/Headers/Public/UMBarCodeScannerInterface" "${PODS_ROOT}/Headers/Public/UMCameraInterface" "${PODS_ROOT}/Headers/Public/UMConstantsInterface" "${PODS_ROOT}/Headers/Public/UMCore" "${PODS_ROOT}/Headers/Public/UMFaceDetectorInterface" "${PODS_ROOT}/Headers/Public/UMFileSystemInterface" "${PODS_ROOT}/Headers/Public/UMFontInterface" "${PODS_ROOT}/Headers/Public/UMImageLoaderInterface" "${PODS_ROOT}/Headers/Public/UMPermissionsInterface" "${PODS_ROOT}/Headers/Public/UMReactNativeAdapter" "${PODS_ROOT}/Headers/Public/UMSensorsInterface" "${PODS_ROOT}/Headers/Public/UMTaskManagerInterface" "${PODS_ROOT}/Headers/Public/Yoga" "${PODS_ROOT}/Headers/Public/glog" "${PODS_ROOT}/Headers/Public/react-native-camera" "${PODS_ROOT}/Headers/Public/react-native-cameraroll" "${PODS_ROOT}/Headers/Public/react-native-ffmpeg" "${PODS_ROOT}/Headers/Public/react-native-orientation" "${PODS_ROOT}/Headers/Public/react-native-safe-area-context" "${PODS_ROOT}/Headers/Public/react-native-video" "$(PODS_ROOT)/Headers/Private/React-Core" +LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/DoubleConversion" "${PODS_CONFIGURATION_BUILD_DIR}/EXAppLoaderProvider" "${PODS_CONFIGURATION_BUILD_DIR}/EXConstants" "${PODS_CONFIGURATION_BUILD_DIR}/EXFileSystem" "${PODS_CONFIGURATION_BUILD_DIR}/EXPermissions" "${PODS_CONFIGURATION_BUILD_DIR}/FBReactNativeSpec" "${PODS_CONFIGURATION_BUILD_DIR}/Folly" "${PODS_CONFIGURATION_BUILD_DIR}/RCTTypeSafety" "${PODS_CONFIGURATION_BUILD_DIR}/RNCAsyncStorage" "${PODS_CONFIGURATION_BUILD_DIR}/RNCMaskedView" "${PODS_CONFIGURATION_BUILD_DIR}/RNConvertPhAsset" "${PODS_CONFIGURATION_BUILD_DIR}/RNFS" "${PODS_CONFIGURATION_BUILD_DIR}/RNGestureHandler" "${PODS_CONFIGURATION_BUILD_DIR}/RNReanimated" "${PODS_CONFIGURATION_BUILD_DIR}/RNScreens" "${PODS_CONFIGURATION_BUILD_DIR}/RNVectorIcons" "${PODS_CONFIGURATION_BUILD_DIR}/React-Core" "${PODS_CONFIGURATION_BUILD_DIR}/React-CoreModules" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTActionSheet" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTAnimation" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTBlob" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTImage" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTLinking" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTNetwork" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTSettings" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTText" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTVibration" "${PODS_CONFIGURATION_BUILD_DIR}/React-cxxreact" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsi" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsiexecutor" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsinspector" "${PODS_CONFIGURATION_BUILD_DIR}/ReactCommon" "${PODS_CONFIGURATION_BUILD_DIR}/UMCore" "${PODS_CONFIGURATION_BUILD_DIR}/UMPermissionsInterface" "${PODS_CONFIGURATION_BUILD_DIR}/UMReactNativeAdapter" "${PODS_CONFIGURATION_BUILD_DIR}/Yoga" "${PODS_CONFIGURATION_BUILD_DIR}/glog" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-camera" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-cameraroll" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-ffmpeg" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-orientation" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-safe-area-context" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-video" +OTHER_LDFLAGS = $(inherited) -ObjC -l"DoubleConversion" -l"EXAppLoaderProvider" -l"EXConstants" -l"EXFileSystem" -l"EXPermissions" -l"FBReactNativeSpec" -l"Folly" -l"RCTTypeSafety" -l"RNCAsyncStorage" -l"RNCMaskedView" -l"RNConvertPhAsset" -l"RNFS" -l"RNGestureHandler" -l"RNReanimated" -l"RNScreens" -l"RNVectorIcons" -l"React-Core" -l"React-CoreModules" -l"React-RCTActionSheet" -l"React-RCTAnimation" -l"React-RCTBlob" -l"React-RCTImage" -l"React-RCTLinking" -l"React-RCTNetwork" -l"React-RCTSettings" -l"React-RCTText" -l"React-RCTVibration" -l"React-cxxreact" -l"React-jsi" -l"React-jsiexecutor" -l"React-jsinspector" -l"ReactCommon" -l"UMCore" -l"UMPermissionsInterface" -l"UMReactNativeAdapter" -l"Yoga" -l"bz2" -l"c++" -l"glog" -l"iconv" -l"react-native-camera" -l"react-native-cameraroll" -l"react-native-ffmpeg" -l"react-native-orientation" -l"react-native-safe-area-context" -l"react-native-video" -l"stdc++" -l"z" -framework "AVFoundation" -framework "AudioToolbox" -framework "CoreMedia" -framework "JavaScriptCore" -framework "VideoToolbox" -framework "gmp" -framework "gnutls" -framework "libavcodec" -framework "libavdevice" -framework "libavfilter" -framework "libavformat" -framework "libavutil" -framework "libhogweed" -framework "libnettle" -framework "libswresample" -framework "libswscale" -framework "mobileffmpeg" PODS_BUILD_DIR = ${BUILD_DIR} PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) PODS_PODFILE_DIR_PATH = ${SRCROOT}/. diff --git a/ios/Pods/Target Support Files/Pods-Gladeo_App/Pods-Gladeo_App.release.xcconfig b/ios/Pods/Target Support Files/Pods-Gladeo_App/Pods-Gladeo_App.release.xcconfig index ae83727e..9a64c2d4 100644 --- a/ios/Pods/Target Support Files/Pods-Gladeo_App/Pods-Gladeo_App.release.xcconfig +++ b/ios/Pods/Target Support Files/Pods-Gladeo_App/Pods-Gladeo_App.release.xcconfig @@ -1,8 +1,8 @@ FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/mobile-ffmpeg-https" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/EXAppLoaderProvider" "${PODS_ROOT}/Headers/Public/EXConstants" "${PODS_ROOT}/Headers/Public/EXFileSystem" "${PODS_ROOT}/Headers/Public/EXPermissions" "${PODS_ROOT}/Headers/Public/FBLazyVector" "${PODS_ROOT}/Headers/Public/FBReactNativeSpec" "${PODS_ROOT}/Headers/Public/RCTRequired" "${PODS_ROOT}/Headers/Public/RCTTypeSafety" "${PODS_ROOT}/Headers/Public/RNCAsyncStorage" "${PODS_ROOT}/Headers/Public/RNCMaskedView" "${PODS_ROOT}/Headers/Public/RNConvertPhAsset" "${PODS_ROOT}/Headers/Public/RNGestureHandler" "${PODS_ROOT}/Headers/Public/RNReanimated" "${PODS_ROOT}/Headers/Public/RNScreens" "${PODS_ROOT}/Headers/Public/RNVectorIcons" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-RCTBlob" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/ReactCommon" "${PODS_ROOT}/Headers/Public/UMBarCodeScannerInterface" "${PODS_ROOT}/Headers/Public/UMCameraInterface" "${PODS_ROOT}/Headers/Public/UMConstantsInterface" "${PODS_ROOT}/Headers/Public/UMCore" "${PODS_ROOT}/Headers/Public/UMFaceDetectorInterface" "${PODS_ROOT}/Headers/Public/UMFileSystemInterface" "${PODS_ROOT}/Headers/Public/UMFontInterface" "${PODS_ROOT}/Headers/Public/UMImageLoaderInterface" "${PODS_ROOT}/Headers/Public/UMPermissionsInterface" "${PODS_ROOT}/Headers/Public/UMReactNativeAdapter" "${PODS_ROOT}/Headers/Public/UMSensorsInterface" "${PODS_ROOT}/Headers/Public/UMTaskManagerInterface" "${PODS_ROOT}/Headers/Public/Yoga" "${PODS_ROOT}/Headers/Public/glog" "${PODS_ROOT}/Headers/Public/react-native-camera" "${PODS_ROOT}/Headers/Public/react-native-cameraroll" "${PODS_ROOT}/Headers/Public/react-native-ffmpeg" "${PODS_ROOT}/Headers/Public/react-native-orientation" "${PODS_ROOT}/Headers/Public/react-native-safe-area-context" "${PODS_ROOT}/Headers/Public/react-native-video" "$(PODS_ROOT)/Headers/Private/React-Core" -LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/DoubleConversion" "${PODS_CONFIGURATION_BUILD_DIR}/EXAppLoaderProvider" "${PODS_CONFIGURATION_BUILD_DIR}/EXConstants" "${PODS_CONFIGURATION_BUILD_DIR}/EXFileSystem" "${PODS_CONFIGURATION_BUILD_DIR}/EXPermissions" "${PODS_CONFIGURATION_BUILD_DIR}/FBReactNativeSpec" "${PODS_CONFIGURATION_BUILD_DIR}/Folly" "${PODS_CONFIGURATION_BUILD_DIR}/RCTTypeSafety" "${PODS_CONFIGURATION_BUILD_DIR}/RNCAsyncStorage" "${PODS_CONFIGURATION_BUILD_DIR}/RNCMaskedView" "${PODS_CONFIGURATION_BUILD_DIR}/RNConvertPhAsset" "${PODS_CONFIGURATION_BUILD_DIR}/RNGestureHandler" "${PODS_CONFIGURATION_BUILD_DIR}/RNReanimated" "${PODS_CONFIGURATION_BUILD_DIR}/RNScreens" "${PODS_CONFIGURATION_BUILD_DIR}/RNVectorIcons" "${PODS_CONFIGURATION_BUILD_DIR}/React-Core" "${PODS_CONFIGURATION_BUILD_DIR}/React-CoreModules" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTActionSheet" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTAnimation" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTBlob" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTImage" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTLinking" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTNetwork" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTSettings" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTText" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTVibration" "${PODS_CONFIGURATION_BUILD_DIR}/React-cxxreact" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsi" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsiexecutor" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsinspector" "${PODS_CONFIGURATION_BUILD_DIR}/ReactCommon" "${PODS_CONFIGURATION_BUILD_DIR}/UMCore" "${PODS_CONFIGURATION_BUILD_DIR}/UMPermissionsInterface" "${PODS_CONFIGURATION_BUILD_DIR}/UMReactNativeAdapter" "${PODS_CONFIGURATION_BUILD_DIR}/Yoga" "${PODS_CONFIGURATION_BUILD_DIR}/glog" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-camera" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-cameraroll" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-ffmpeg" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-orientation" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-safe-area-context" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-video" -OTHER_LDFLAGS = $(inherited) -ObjC -l"DoubleConversion" -l"EXAppLoaderProvider" -l"EXConstants" -l"EXFileSystem" -l"EXPermissions" -l"FBReactNativeSpec" -l"Folly" -l"RCTTypeSafety" -l"RNCAsyncStorage" -l"RNCMaskedView" -l"RNConvertPhAsset" -l"RNGestureHandler" -l"RNReanimated" -l"RNScreens" -l"RNVectorIcons" -l"React-Core" -l"React-CoreModules" -l"React-RCTActionSheet" -l"React-RCTAnimation" -l"React-RCTBlob" -l"React-RCTImage" -l"React-RCTLinking" -l"React-RCTNetwork" -l"React-RCTSettings" -l"React-RCTText" -l"React-RCTVibration" -l"React-cxxreact" -l"React-jsi" -l"React-jsiexecutor" -l"React-jsinspector" -l"ReactCommon" -l"UMCore" -l"UMPermissionsInterface" -l"UMReactNativeAdapter" -l"Yoga" -l"bz2" -l"c++" -l"glog" -l"iconv" -l"react-native-camera" -l"react-native-cameraroll" -l"react-native-ffmpeg" -l"react-native-orientation" -l"react-native-safe-area-context" -l"react-native-video" -l"stdc++" -l"z" -framework "AVFoundation" -framework "AudioToolbox" -framework "CoreMedia" -framework "JavaScriptCore" -framework "VideoToolbox" -framework "gmp" -framework "gnutls" -framework "libavcodec" -framework "libavdevice" -framework "libavfilter" -framework "libavformat" -framework "libavutil" -framework "libhogweed" -framework "libnettle" -framework "libswresample" -framework "libswscale" -framework "mobileffmpeg" +HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/EXAppLoaderProvider" "${PODS_ROOT}/Headers/Public/EXConstants" "${PODS_ROOT}/Headers/Public/EXFileSystem" "${PODS_ROOT}/Headers/Public/EXPermissions" "${PODS_ROOT}/Headers/Public/FBLazyVector" "${PODS_ROOT}/Headers/Public/FBReactNativeSpec" "${PODS_ROOT}/Headers/Public/RCTRequired" "${PODS_ROOT}/Headers/Public/RCTTypeSafety" "${PODS_ROOT}/Headers/Public/RNCAsyncStorage" "${PODS_ROOT}/Headers/Public/RNCMaskedView" "${PODS_ROOT}/Headers/Public/RNConvertPhAsset" "${PODS_ROOT}/Headers/Public/RNFS" "${PODS_ROOT}/Headers/Public/RNGestureHandler" "${PODS_ROOT}/Headers/Public/RNReanimated" "${PODS_ROOT}/Headers/Public/RNScreens" "${PODS_ROOT}/Headers/Public/RNVectorIcons" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-RCTBlob" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/ReactCommon" "${PODS_ROOT}/Headers/Public/UMBarCodeScannerInterface" "${PODS_ROOT}/Headers/Public/UMCameraInterface" "${PODS_ROOT}/Headers/Public/UMConstantsInterface" "${PODS_ROOT}/Headers/Public/UMCore" "${PODS_ROOT}/Headers/Public/UMFaceDetectorInterface" "${PODS_ROOT}/Headers/Public/UMFileSystemInterface" "${PODS_ROOT}/Headers/Public/UMFontInterface" "${PODS_ROOT}/Headers/Public/UMImageLoaderInterface" "${PODS_ROOT}/Headers/Public/UMPermissionsInterface" "${PODS_ROOT}/Headers/Public/UMReactNativeAdapter" "${PODS_ROOT}/Headers/Public/UMSensorsInterface" "${PODS_ROOT}/Headers/Public/UMTaskManagerInterface" "${PODS_ROOT}/Headers/Public/Yoga" "${PODS_ROOT}/Headers/Public/glog" "${PODS_ROOT}/Headers/Public/react-native-camera" "${PODS_ROOT}/Headers/Public/react-native-cameraroll" "${PODS_ROOT}/Headers/Public/react-native-ffmpeg" "${PODS_ROOT}/Headers/Public/react-native-orientation" "${PODS_ROOT}/Headers/Public/react-native-safe-area-context" "${PODS_ROOT}/Headers/Public/react-native-video" "$(PODS_ROOT)/Headers/Private/React-Core" +LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/DoubleConversion" "${PODS_CONFIGURATION_BUILD_DIR}/EXAppLoaderProvider" "${PODS_CONFIGURATION_BUILD_DIR}/EXConstants" "${PODS_CONFIGURATION_BUILD_DIR}/EXFileSystem" "${PODS_CONFIGURATION_BUILD_DIR}/EXPermissions" "${PODS_CONFIGURATION_BUILD_DIR}/FBReactNativeSpec" "${PODS_CONFIGURATION_BUILD_DIR}/Folly" "${PODS_CONFIGURATION_BUILD_DIR}/RCTTypeSafety" "${PODS_CONFIGURATION_BUILD_DIR}/RNCAsyncStorage" "${PODS_CONFIGURATION_BUILD_DIR}/RNCMaskedView" "${PODS_CONFIGURATION_BUILD_DIR}/RNConvertPhAsset" "${PODS_CONFIGURATION_BUILD_DIR}/RNFS" "${PODS_CONFIGURATION_BUILD_DIR}/RNGestureHandler" "${PODS_CONFIGURATION_BUILD_DIR}/RNReanimated" "${PODS_CONFIGURATION_BUILD_DIR}/RNScreens" "${PODS_CONFIGURATION_BUILD_DIR}/RNVectorIcons" "${PODS_CONFIGURATION_BUILD_DIR}/React-Core" "${PODS_CONFIGURATION_BUILD_DIR}/React-CoreModules" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTActionSheet" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTAnimation" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTBlob" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTImage" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTLinking" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTNetwork" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTSettings" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTText" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTVibration" "${PODS_CONFIGURATION_BUILD_DIR}/React-cxxreact" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsi" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsiexecutor" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsinspector" "${PODS_CONFIGURATION_BUILD_DIR}/ReactCommon" "${PODS_CONFIGURATION_BUILD_DIR}/UMCore" "${PODS_CONFIGURATION_BUILD_DIR}/UMPermissionsInterface" "${PODS_CONFIGURATION_BUILD_DIR}/UMReactNativeAdapter" "${PODS_CONFIGURATION_BUILD_DIR}/Yoga" "${PODS_CONFIGURATION_BUILD_DIR}/glog" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-camera" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-cameraroll" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-ffmpeg" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-orientation" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-safe-area-context" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-video" +OTHER_LDFLAGS = $(inherited) -ObjC -l"DoubleConversion" -l"EXAppLoaderProvider" -l"EXConstants" -l"EXFileSystem" -l"EXPermissions" -l"FBReactNativeSpec" -l"Folly" -l"RCTTypeSafety" -l"RNCAsyncStorage" -l"RNCMaskedView" -l"RNConvertPhAsset" -l"RNFS" -l"RNGestureHandler" -l"RNReanimated" -l"RNScreens" -l"RNVectorIcons" -l"React-Core" -l"React-CoreModules" -l"React-RCTActionSheet" -l"React-RCTAnimation" -l"React-RCTBlob" -l"React-RCTImage" -l"React-RCTLinking" -l"React-RCTNetwork" -l"React-RCTSettings" -l"React-RCTText" -l"React-RCTVibration" -l"React-cxxreact" -l"React-jsi" -l"React-jsiexecutor" -l"React-jsinspector" -l"ReactCommon" -l"UMCore" -l"UMPermissionsInterface" -l"UMReactNativeAdapter" -l"Yoga" -l"bz2" -l"c++" -l"glog" -l"iconv" -l"react-native-camera" -l"react-native-cameraroll" -l"react-native-ffmpeg" -l"react-native-orientation" -l"react-native-safe-area-context" -l"react-native-video" -l"stdc++" -l"z" -framework "AVFoundation" -framework "AudioToolbox" -framework "CoreMedia" -framework "JavaScriptCore" -framework "VideoToolbox" -framework "gmp" -framework "gnutls" -framework "libavcodec" -framework "libavdevice" -framework "libavfilter" -framework "libavformat" -framework "libavutil" -framework "libhogweed" -framework "libnettle" -framework "libswresample" -framework "libswscale" -framework "mobileffmpeg" PODS_BUILD_DIR = ${BUILD_DIR} PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) PODS_PODFILE_DIR_PATH = ${SRCROOT}/. diff --git a/ios/Pods/Target Support Files/RNFS/RNFS-dummy.m b/ios/Pods/Target Support Files/RNFS/RNFS-dummy.m new file mode 100644 index 00000000..e326fb73 --- /dev/null +++ b/ios/Pods/Target Support Files/RNFS/RNFS-dummy.m @@ -0,0 +1,5 @@ +#import +@interface PodsDummy_RNFS : NSObject +@end +@implementation PodsDummy_RNFS +@end diff --git a/ios/Pods/Target Support Files/RNFS/RNFS-prefix.pch b/ios/Pods/Target Support Files/RNFS/RNFS-prefix.pch new file mode 100644 index 00000000..beb2a244 --- /dev/null +++ b/ios/Pods/Target Support Files/RNFS/RNFS-prefix.pch @@ -0,0 +1,12 @@ +#ifdef __OBJC__ +#import +#else +#ifndef FOUNDATION_EXPORT +#if defined(__cplusplus) +#define FOUNDATION_EXPORT extern "C" +#else +#define FOUNDATION_EXPORT extern +#endif +#endif +#endif + diff --git a/ios/Pods/Target Support Files/RNFS/RNFS.xcconfig b/ios/Pods/Target Support Files/RNFS/RNFS.xcconfig new file mode 100644 index 00000000..cae4114e --- /dev/null +++ b/ios/Pods/Target Support Files/RNFS/RNFS.xcconfig @@ -0,0 +1,9 @@ +CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/RNFS +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/RNFS" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/RNFS" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-RCTBlob" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/Yoga" "${PODS_ROOT}/Headers/Public/glog" +PODS_BUILD_DIR = ${BUILD_DIR} +PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) +PODS_ROOT = ${SRCROOT} +PODS_TARGET_SRCROOT = ${PODS_ROOT}/../../node_modules/react-native-fs +PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} +SKIP_INSTALL = YES diff --git a/ios/Pods/Target Support Files/mobile-ffmpeg-https/mobile-ffmpeg-https.debug.xcconfig b/ios/Pods/Target Support Files/mobile-ffmpeg-https/mobile-ffmpeg-https.debug.xcconfig deleted file mode 100644 index a42e684c..00000000 --- a/ios/Pods/Target Support Files/mobile-ffmpeg-https/mobile-ffmpeg-https.debug.xcconfig +++ /dev/null @@ -1,10 +0,0 @@ -CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/mobile-ffmpeg-https -FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/mobile-ffmpeg-https" -GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -PODS_BUILD_DIR = ${BUILD_DIR} -PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) -PODS_ROOT = ${SRCROOT} -PODS_TARGET_SRCROOT = ${PODS_ROOT}/mobile-ffmpeg-https -PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} -SKIP_INSTALL = YES -USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/ios/Pods/Target Support Files/mobile-ffmpeg-https/mobile-ffmpeg-https.release.xcconfig b/ios/Pods/Target Support Files/mobile-ffmpeg-https/mobile-ffmpeg-https.release.xcconfig deleted file mode 100644 index a42e684c..00000000 --- a/ios/Pods/Target Support Files/mobile-ffmpeg-https/mobile-ffmpeg-https.release.xcconfig +++ /dev/null @@ -1,10 +0,0 @@ -CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/mobile-ffmpeg-https -FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/mobile-ffmpeg-https" -GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -PODS_BUILD_DIR = ${BUILD_DIR} -PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) -PODS_ROOT = ${SRCROOT} -PODS_TARGET_SRCROOT = ${PODS_ROOT}/mobile-ffmpeg-https -PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} -SKIP_INSTALL = YES -USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/ios/Pods/Target Support Files/react-native-ffmpeg/react-native-ffmpeg.debug.xcconfig b/ios/Pods/Target Support Files/react-native-ffmpeg/react-native-ffmpeg.debug.xcconfig deleted file mode 100644 index dc77fd32..00000000 --- a/ios/Pods/Target Support Files/react-native-ffmpeg/react-native-ffmpeg.debug.xcconfig +++ /dev/null @@ -1,11 +0,0 @@ -CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/react-native-ffmpeg -FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/mobile-ffmpeg-https" -GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/react-native-ffmpeg" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-RCTBlob" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/Yoga" "${PODS_ROOT}/Headers/Public/glog" "${PODS_ROOT}/Headers/Public/react-native-ffmpeg" -PODS_BUILD_DIR = ${BUILD_DIR} -PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) -PODS_ROOT = ${SRCROOT} -PODS_TARGET_SRCROOT = ${PODS_ROOT}/../../node_modules/react-native-ffmpeg -PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} -SKIP_INSTALL = YES -USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/ios/Pods/Target Support Files/react-native-ffmpeg/react-native-ffmpeg.release.xcconfig b/ios/Pods/Target Support Files/react-native-ffmpeg/react-native-ffmpeg.release.xcconfig deleted file mode 100644 index dc77fd32..00000000 --- a/ios/Pods/Target Support Files/react-native-ffmpeg/react-native-ffmpeg.release.xcconfig +++ /dev/null @@ -1,11 +0,0 @@ -CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/react-native-ffmpeg -FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/mobile-ffmpeg-https" -GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/react-native-ffmpeg" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-RCTBlob" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/Yoga" "${PODS_ROOT}/Headers/Public/glog" "${PODS_ROOT}/Headers/Public/react-native-ffmpeg" -PODS_BUILD_DIR = ${BUILD_DIR} -PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) -PODS_ROOT = ${SRCROOT} -PODS_TARGET_SRCROOT = ${PODS_ROOT}/../../node_modules/react-native-ffmpeg -PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} -SKIP_INSTALL = YES -USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/package.json b/package.json index 8d7d6322..1a91f034 100644 --- a/package.json +++ b/package.json @@ -46,10 +46,12 @@ "@types/react-test-renderer": "^16.9.1", "airtable": "^0.8.1", "bcrypt": "^3.0.7", + "canvas": "^2.6.1", "core-js": "^3", "core-util-is": "^1.0.2", "dotenv": "^8.2.0", "express-session": "^1.17.0", + "gifencoder": "^2.0.1", "googleapis": "^49.0.0", "mem": "^6.0.1", "metro-react-native-babel-preset": "^0.59.0", @@ -60,21 +62,25 @@ "react-native-animated-ellipsis": "^2.0.0", "react-native-background-timer": "^2.2.0", "react-native-camera": "^3.23.1", + "react-native-canvas": "^0.1.37", "react-native-confirmation-code-field": "^6.0.0", "react-native-convert-ph-asset": "^1.0.3", "react-native-dotenv": "^0.2.0", "react-native-elements": "^1.2.7", "react-native-ffmpeg": "^0.4.4", + "react-native-fs": "^2.16.6", "react-native-gesture-handler": "~1.5.0", "react-native-modal": "^11.5.3", "react-native-orientation": "^3.1.3", "react-native-reanimated": "~1.4.0", "react-native-safe-area-context": "0.6.0", "react-native-screens": "2.0.0-alpha.12", + "react-native-stream": "^0.1.9", "react-native-unimodules": "~0.7.0", "react-native-vector-icons": "^6.6.0", "react-native-video": "^4.4.5", "react-native-web": "^0.11.7", + "react-native-webview": "^9.4.0", "react-navigation": "^4.0.10", "react-navigation-stack": "^2.0.13", "react-navigation-tabs": "^2.7.0", @@ -83,6 +89,7 @@ "redux": "^4.0.5", "redux-persist": "^6.0.0", "reselect": "^4.0.0", + "stream": "0.0.2", "typescript": "^3.7.2" }, "devDependencies": { diff --git a/src/screens/Main/EditStack/CreatingVideoScreen/CreatingVideoScreen.tsx b/src/screens/Main/EditStack/CreatingVideoScreen/CreatingVideoScreen.tsx index 3db00253..47601a89 100644 --- a/src/screens/Main/EditStack/CreatingVideoScreen/CreatingVideoScreen.tsx +++ b/src/screens/Main/EditStack/CreatingVideoScreen/CreatingVideoScreen.tsx @@ -1,5 +1,7 @@ import React, { useState, useEffect } from 'react' import AnimatedEllipsis from 'react-native-animated-ellipsis' +import Canvas from 'react-native-canvas' +import { Dimensions } from 'react-native' import { Text, View, @@ -26,11 +28,111 @@ interface Props { videos: Array>, } +interface User { + Name: string, + Title: string, + Company: string, +} + function CreatingVideoScreen(props: Props) { const [renderComplete, setRenderComplete] = useState(false) const [videoURI, setVideoURI] = useState() const {push} = props.navigation const videosToCombine = props.navigation.state.params.videosToCombine + let user: User + + async function getUser() { + fetch(`${BASE_PATH}/api/user`) + .then(res => res.json()) + .then(data => { + console.log(data) + user = { + Name: data['Full Name'], + Title: data['Current Title'], + Company: data.Company + } + }) + .catch(error => { + console.log('Error' + error) + }) + } + + function generateInfoTitleCard(user: User) { + console.log('info titlecard') + + const GIFEncoder = require('gifencoder') + const fs = require('react-native-fs') + + // screen dimensions + const width = Math.round(Dimensions.get('window').width) + const height = Math.round(Dimensions.get('window').height) + console.log(width) + + const encoder = new GIFEncoder(width, height) + encoder.start() + encoder.setRepeat(0) + encoder.setDelay(0) + encoder.setQuality(10) + + const ctx = Canvas.getContext('2d') + + // set white background + ctx.fillStyle='#FFFFFF' + ctx.fillRect(0, 0, width, height) + + // set name text + ctx.font = '48px Roboto-Bold' + ctx.fillStyle = '#0E0E0E' + const namewidth = ctx.measureText(user.Name).width + const nameX = (width-namewidth)/2 + ctx.fillText(user.Name,nameX,150) + // set position text + ctx.font = '18px Roboto-Bold' + ctx.fillStyle = '#0E0E0E' + const position = user.Title+' at '+user.Company + const poswidth = ctx.measureText(position).width + const posX = (width-poswidth)/2 + ctx.fillText(position,posX,250) + + encoder.addFrame(ctx) + encoder.finish() + + const buf = encoder.out.getData() + return buf + } + + function generateQuestionTitleCard(question: string) { + console.log('question titlecard') + + const GIFEncoder = require('gifencoder') + const fs = require('react-native-fs') + + // screen dimensions + const width = Math.round(Dimensions.get('window').width) + const height = Math.round(Dimensions.get('window').height) + + const encoder = new GIFEncoder(width, height) + encoder.start() + encoder.setRepeat(0) + encoder.setDelay(0) + encoder.setQuality(10) + + const ctx = Canvas.getContext('2d') + + // set white background + ctx.fillStyle='#FFFFFF' + ctx.fillRect(0, 0, width, height) + + // set question text + ctx.font = '36px Roboto-Bold' + ctx.fillStyle = '#E5186E' + ctx.fillText(question,100,150) + encoder.addFrame(ctx) + encoder.finish() + + const buf = encoder.out.getData() + return buf + } useEffect(() => { @@ -41,14 +143,28 @@ function CreatingVideoScreen(props: Props) { let ffmpegCommandAV = '' // generate command string - for (let index = 0; index < videosToCombine.length; index++) { + getUser() + let index = 0 + ffmpegCommandFiles = ffmpegCommandFiles.concat('-i ' + props.videos[videosToCombine[index].id].uri + ' -i ' + generateInfoTitleCard(user) + ' ') + ffmpegCommandAV = ffmpegCommandAV.concat('[' + index + ':v]') + ffmpegCommandAV = ffmpegCommandAV.concat('[' + (index+1) + ':v]') + + ffmpegCommandFiles = ffmpegCommandFiles.concat('-i ' + generateInfoTitleCard(user) + ' ') // add info title card + for (index = 1; index < videosToCombine.length; index++) { + ffmpegCommandFiles = ffmpegCommandFiles.concat('-i ' + props.videos[videosToCombine[index].id].uri + ' -i ' + generateQuestionTitleCard(videosToCombine[index].text) + ' ') + ffmpegCommandAV = ffmpegCommandAV.concat('[' + (2*index) + ':v]') + ffmpegCommandAV = ffmpegCommandAV.concat('[' + (2*index+1) + ':v]') + } + + /*for (let index = 0; index < videosToCombine.length; index++) { ffmpegCommandFiles = ffmpegCommandFiles.concat('-i ' + props.videos[videosToCombine[index].id].uri + ' ') ffmpegCommandAV = ffmpegCommandAV.concat('[' + index + ':v:0]') ffmpegCommandAV = ffmpegCommandAV.concat('[' + index + ':a:0]') - } + }*/ // Render videos together - await RNFFmpeg.execute(`${ffmpegCommandFiles} -filter_complex "${ffmpegCommandAV}concat=n=${videosToCombine.length}:v=1:a=1[outv][outa]" -map "[outv]" -map "[outa]" -y ${props.videos['COMBINED_PLACEHOLDER'].uri}`) + await RNFFmpeg.execute(`${ffmpegCommandFiles} -filter_complex "${ffmpegCommandAV}overlay=0:0:enable'between(t, 0, 5)'" -pix_fmt yuv420p -c:a copy ${props.videos['COMBINED_PLACEHOLDER'].uri}`) + //await RNFFmpeg.execute(`${ffmpegCommandFiles} -filter_complex "${ffmpegCommandAV}concat=n=${videosToCombine.length}:v=1:a=1[outv][outa]" -map "[outv]" -map "[outa]" -y ${props.videos['COMBINED_PLACEHOLDER'].uri}`) .then(result => { console.log('result: ', result.rc) }) diff --git a/yarn-error.log b/yarn-error.log new file mode 100644 index 00000000..815133b6 --- /dev/null +++ b/yarn-error.log @@ -0,0 +1,10499 @@ +Arguments: + /usr/local/bin/node /usr/local/Cellar/yarn/1.10.1/libexec/bin/yarn.js add node-canvas + +PATH: + ~/mongodb-osx-x86_64-enterprise-4.0.10/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/Applications/VMware Fusion.app/Contents/Public:/usr/local/share/dotnet:~/.dotnet/tools:/Library/Frameworks/Mono.framework/Versions/Current/Commands:/usr/local/CrossPack-AVR/bin:/Applications/Xamarin Workbooks.app/Contents/SharedSupport/path-bin + +Yarn version: + 1.10.1 + +Node version: + 12.13.0 + +Platform: + darwin x64 + +Trace: + Error: https://registry.yarnpkg.com/node-canvas: Not found + at Request.params.callback [as _callback] (/usr/local/Cellar/yarn/1.10.1/libexec/lib/cli.js:61073:18) + at Request.self.callback (/usr/local/Cellar/yarn/1.10.1/libexec/lib/cli.js:120166:22) + at Request.emit (events.js:210:5) + at Request. (/usr/local/Cellar/yarn/1.10.1/libexec/lib/cli.js:121138:10) + at Request.emit (events.js:210:5) + at IncomingMessage. (/usr/local/Cellar/yarn/1.10.1/libexec/lib/cli.js:121060:12) + at Object.onceWrapper (events.js:299:28) + at IncomingMessage.emit (events.js:215:7) + at endReadableNT (_stream_readable.js:1183:12) + at processTicksAndRejections (internal/process/task_queues.js:80:21) + +npm manifest: + { + "scripts": { + "start": "react-native start", + "android": "react-native run-android", + "ios": "react-native run-ios", + "web": "expo start --web", + "test": "jest __tests__/server/ --collect-coverage ", + "testDebug": "jest -o --watch --coverage", + "testFinal": "jest", + "updateSnapshots": "jest -u --coverage=false", + "lint": "eslint --ext js,tsx {src,server}/*", + "server": "nodemon server/server.js", + "dev": "run-p server start", + "clean": "rm -rf node_modules .yarnclean && yarn", + "postinstall": "jetify && jetify" + }, + "lint-staged": { + "*.{js,tsx}": [ + "eslint --fix" + ] + }, + "jest": { + "preset": "react-native" + }, + "husky": { + "hooks": { + "pre-commit": "lint-staged" + } + }, + "rnpm": { + "assets": [ + "assets/fonts" + ] + }, + "dependencies": { + "@react-native-community/async-storage": "^1.9.0", + "@react-native-community/cameraroll": "^1.6.0", + "@react-native-community/masked-view": "0.1.5", + "@react-navigation/core": "^3.0.0-alpha.13", + "@react-navigation/web": "^1.0.0-alpha.9", + "@types/jest": "^24.0.25", + "@types/node": "^13.1.4", + "@types/react": "^16.9.0", + "@types/react-native": "^0.60.15", + "@types/react-native-dotenv": "^0.2.0", + "@types/react-test-renderer": "^16.9.1", + "airtable": "^0.8.1", + "bcrypt": "^3.0.7", + "canvas": "^2.6.1", + "core-js": "^3", + "core-util-is": "^1.0.2", + "dotenv": "^8.2.0", + "express-session": "^1.17.0", + "gifencoder": "^2.0.1", + "mem": "^6.0.1", + "nodemailer": "^6.4.2", + "react": "~16.9.0", + "react-dom": "16.9.0", + "react-native": "~0.61.4", + "react-native-animated-ellipsis": "^2.0.0", + "react-native-camera": "^3.23.1", + "react-native-confirmation-code-field": "^6.0.0", + "react-native-convert-ph-asset": "^1.0.3", + "react-native-dotenv": "^0.2.0", + "react-native-elements": "^1.2.7", + "react-native-ffmpeg": "^0.4.4", + "react-native-fs": "^2.16.6", + "react-native-gesture-handler": "~1.5.0", + "react-native-modal": "^11.5.3", + "react-native-orientation": "^3.1.3", + "react-native-reanimated": "~1.4.0", + "react-native-safe-area-context": "0.6.0", + "react-native-screens": "2.0.0-alpha.12", + "react-native-stream": "^0.1.9", + "react-native-unimodules": "~0.7.0", + "react-native-vector-icons": "^6.6.0", + "react-native-video": "^4.4.5", + "react-native-web": "^0.11.7", + "react-navigation": "^4.0.10", + "react-navigation-stack": "^2.0.13", + "react-navigation-tabs": "^2.7.0", + "react-redux": "^7.2.0", + "recompose": "^0.30.0", + "redux": "^4.0.5", + "redux-persist": "^6.0.0", + "reselect": "^4.0.0", + "stream": "0.0.2", + "typescript": "^3.7.2" + }, + "devDependencies": { + "@babel/core": "^7.6.4", + "@typescript-eslint/eslint-plugin": "^2.14.0", + "@typescript-eslint/parser": "^2.14.0", + "babel-preset-react-native": "5.0.2", + "body-parser": "^1.19.0", + "eslint": "^6.8.0", + "eslint-config-airbnb": "^18.0.1", + "eslint-config-prettier": "^6.9.0", + "eslint-import-resolver-typescript": "^2.0.0", + "eslint-plugin-import": "^2.19.1", + "eslint-plugin-json": "^2.0.1", + "eslint-plugin-jsx-a11y": "^6.2.3", + "eslint-plugin-prettier": "^3.1.2", + "eslint-plugin-react": "^7.17.0", + "eslint-plugin-react-hooks": "^2.1.2", + "express": "^4.17.1", + "handlebars": "^4.7.1", + "husky": "^3.1.0", + "jest": "^25.4.0", + "lint-staged": "^10.0.0-beta.14", + "nodemon": "^2.0.2", + "npm-run-all": "^4.1.5", + "prettier": "^1.19.1", + "react-test-renderer": "16.12.0", + "redux-devtools": "^3.5.0", + "supertest": "^4.0.2", + "supertest-session": "^4.0.0" + }, + "private": true, + "proxy": "http://localhost:3001" + } + +yarn manifest: + No manifest + +Lockfile: + # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. + # yarn lockfile v1 + + + "@babel/code-frame@7.0.0-beta.47": + version "7.0.0-beta.47" + resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.0.0-beta.47.tgz#d18c2f4c4ba8d093a2bcfab5616593bfe2441a27" + integrity sha512-W7IeG4MoVf4oUvWfHUx9VG9if3E0xSUDf1urrnNYtC2ow1dz2ptvQ6YsJfyVXDuPTFXz66jkHhzMW7a5Eld7TA== + dependencies: + "@babel/highlight" "7.0.0-beta.47" + + "@babel/code-frame@^7.0.0", "@babel/code-frame@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.8.3.tgz#33e25903d7481181534e12ec0a25f16b6fcf419e" + integrity sha512-a9gxpmdXtZEInkCSHUJDLHZVBgb1QS0jhss4cPP93EW7s+uC5bikET2twEF3KV+7rDblJcmNvTR7VJejqd2C2g== + dependencies: + "@babel/highlight" "^7.8.3" + + "@babel/core@^7.0.0", "@babel/core@^7.1.0", "@babel/core@^7.6.4", "@babel/core@^7.7.5": + version "7.9.0" + resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.9.0.tgz#ac977b538b77e132ff706f3b8a4dbad09c03c56e" + integrity sha512-kWc7L0fw1xwvI0zi8OKVBuxRVefwGOrKSQMvrQ3dW+bIIavBY3/NpXmpjMy7bQnLgwgzWQZ8TlM57YHpHNHz4w== + dependencies: + "@babel/code-frame" "^7.8.3" + "@babel/generator" "^7.9.0" + "@babel/helper-module-transforms" "^7.9.0" + "@babel/helpers" "^7.9.0" + "@babel/parser" "^7.9.0" + "@babel/template" "^7.8.6" + "@babel/traverse" "^7.9.0" + "@babel/types" "^7.9.0" + convert-source-map "^1.7.0" + debug "^4.1.0" + gensync "^1.0.0-beta.1" + json5 "^2.1.2" + lodash "^4.17.13" + resolve "^1.3.2" + semver "^5.4.1" + source-map "^0.5.0" + + "@babel/generator@7.0.0-beta.47": + version "7.0.0-beta.47" + resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.0.0-beta.47.tgz#1835709f377cc4d2a4affee6d9258a10bbf3b9d1" + integrity sha512-fJP+9X+gqgTTZzTqrKJHwebPwt6S/e/4YuyRyKyWHAIirGgUwjRoZgbFci24wwGYMJW7nlkCSwWG7QvCVsG0eg== + dependencies: + "@babel/types" "7.0.0-beta.47" + jsesc "^2.5.1" + lodash "^4.17.5" + source-map "^0.5.0" + trim-right "^1.0.1" + + "@babel/generator@^7.0.0", "@babel/generator@^7.9.0", "@babel/generator@^7.9.5": + version "7.9.5" + resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.9.5.tgz#27f0917741acc41e6eaaced6d68f96c3fa9afaf9" + integrity sha512-GbNIxVB3ZJe3tLeDm1HSn2AhuD/mVcyLDpgtLXa5tplmWrJdF/elxB56XNqCuD6szyNkDi6wuoKXln3QeBmCHQ== + dependencies: + "@babel/types" "^7.9.5" + jsesc "^2.5.1" + lodash "^4.17.13" + source-map "^0.5.0" + + "@babel/helper-annotate-as-pure@7.0.0-beta.47": + version "7.0.0-beta.47" + resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.0.0-beta.47.tgz#354fb596055d9db369211bf075f0d5e93904d6f6" + integrity sha512-Pjxb/PrxyKWc7jcAXlawvNAQMxxY+tSSNC5wxJstJjpO10mocmGzBOqNYjxdvVhMb3d0BEPQ8mR+D65fFpZ+TA== + dependencies: + "@babel/types" "7.0.0-beta.47" + + "@babel/helper-annotate-as-pure@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.8.3.tgz#60bc0bc657f63a0924ff9a4b4a0b24a13cf4deee" + integrity sha512-6o+mJrZBxOoEX77Ezv9zwW7WV8DdluouRKNY/IR5u/YTMuKHgugHOzYWlYvYLpLA9nPsQCAAASpCIbjI9Mv+Uw== + dependencies: + "@babel/types" "^7.8.3" + + "@babel/helper-builder-binary-assignment-operator-visitor@7.0.0-beta.47": + version "7.0.0-beta.47" + resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.0.0-beta.47.tgz#d5917c29ee3d68abc2c72f604bc043f6e056e907" + integrity sha512-nv8d6TcDBb1CJMQzwab/e0rqyqoP9d2AQBjr4GdSiVRpJX4aiLEiLBm2XprdEb/sVIRmmBnVxPXJaHDsS/K2fw== + dependencies: + "@babel/helper-explode-assignable-expression" "7.0.0-beta.47" + "@babel/types" "7.0.0-beta.47" + + "@babel/helper-builder-binary-assignment-operator-visitor@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.8.3.tgz#c84097a427a061ac56a1c30ebf54b7b22d241503" + integrity sha512-5eFOm2SyFPK4Rh3XMMRDjN7lBH0orh3ss0g3rTYZnBQ+r6YPj7lgDyCvPphynHvUrobJmeMignBr6Acw9mAPlw== + dependencies: + "@babel/helper-explode-assignable-expression" "^7.8.3" + "@babel/types" "^7.8.3" + + "@babel/helper-builder-react-jsx-experimental@^7.9.0": + version "7.9.5" + resolved "https://registry.yarnpkg.com/@babel/helper-builder-react-jsx-experimental/-/helper-builder-react-jsx-experimental-7.9.5.tgz#0b4b3e04e6123f03b404ca4dfd6528fe6bb92fe3" + integrity sha512-HAagjAC93tk748jcXpZ7oYRZH485RCq/+yEv9SIWezHRPv9moZArTnkUNciUNzvwHUABmiWKlcxJvMcu59UwTg== + dependencies: + "@babel/helper-annotate-as-pure" "^7.8.3" + "@babel/helper-module-imports" "^7.8.3" + "@babel/types" "^7.9.5" + + "@babel/helper-builder-react-jsx@7.0.0-beta.47": + version "7.0.0-beta.47" + resolved "https://registry.yarnpkg.com/@babel/helper-builder-react-jsx/-/helper-builder-react-jsx-7.0.0-beta.47.tgz#e39bbce315743044c0d64b31f82f20600f761729" + integrity sha512-oBGX/MyT4kNGuINK2k/KLHD77Ih1oTROtoxnV3uAPS9rLYhmZn3W8qy2L4bbyMwQ89nVSM427b0bTTXUEEReXA== + dependencies: + "@babel/types" "7.0.0-beta.47" + esutils "^2.0.0" + + "@babel/helper-builder-react-jsx@^7.9.0": + version "7.9.0" + resolved "https://registry.yarnpkg.com/@babel/helper-builder-react-jsx/-/helper-builder-react-jsx-7.9.0.tgz#16bf391990b57732700a3278d4d9a81231ea8d32" + integrity sha512-weiIo4gaoGgnhff54GQ3P5wsUQmnSwpkvU0r6ZHq6TzoSzKy4JxHEgnxNytaKbov2a9z/CVNyzliuCOUPEX3Jw== + dependencies: + "@babel/helper-annotate-as-pure" "^7.8.3" + "@babel/types" "^7.9.0" + + "@babel/helper-call-delegate@7.0.0-beta.47": + version "7.0.0-beta.47" + resolved "https://registry.yarnpkg.com/@babel/helper-call-delegate/-/helper-call-delegate-7.0.0-beta.47.tgz#96b7804397075f722a4030d3876f51ec19d8829b" + integrity sha512-Rx9TRmCCEP0pWau9gfR6ubcbbX3nVc4ImNY143ftC70jrKdSv5rS20yz2cmCilDzhexwGZQ3PFwOLKe3C/5aEg== + dependencies: + "@babel/helper-hoist-variables" "7.0.0-beta.47" + "@babel/traverse" "7.0.0-beta.47" + "@babel/types" "7.0.0-beta.47" + + "@babel/helper-create-class-features-plugin@^7.8.3": + version "7.9.5" + resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.9.5.tgz#79753d44017806b481017f24b02fd4113c7106ea" + integrity sha512-IipaxGaQmW4TfWoXdqjY0TzoXQ1HRS0kPpEgvjosb3u7Uedcq297xFqDQiCcQtRRwzIMif+N1MLVI8C5a4/PAA== + dependencies: + "@babel/helper-function-name" "^7.9.5" + "@babel/helper-member-expression-to-functions" "^7.8.3" + "@babel/helper-optimise-call-expression" "^7.8.3" + "@babel/helper-plugin-utils" "^7.8.3" + "@babel/helper-replace-supers" "^7.8.6" + "@babel/helper-split-export-declaration" "^7.8.3" + + "@babel/helper-create-regexp-features-plugin@^7.8.3": + version "7.8.8" + resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.8.8.tgz#5d84180b588f560b7864efaeea89243e58312087" + integrity sha512-LYVPdwkrQEiX9+1R29Ld/wTrmQu1SSKYnuOk3g0CkcZMA1p0gsNxJFj/3gBdaJ7Cg0Fnek5z0DsMULePP7Lrqg== + dependencies: + "@babel/helper-annotate-as-pure" "^7.8.3" + "@babel/helper-regex" "^7.8.3" + regexpu-core "^4.7.0" + + "@babel/helper-define-map@7.0.0-beta.47": + version "7.0.0-beta.47" + resolved "https://registry.yarnpkg.com/@babel/helper-define-map/-/helper-define-map-7.0.0-beta.47.tgz#43a9def87c5166dc29630d51b3da9cc4320c131c" + integrity sha512-pLB9RY7GZKcc/frzgfDY/HwdqxWPe60qMAvNUef1V1bDZ8i4AUgxAANgltFzj61t100WGhqaS0xGkALD+9VA+g== + dependencies: + "@babel/helper-function-name" "7.0.0-beta.47" + "@babel/types" "7.0.0-beta.47" + lodash "^4.17.5" + + "@babel/helper-define-map@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/helper-define-map/-/helper-define-map-7.8.3.tgz#a0655cad5451c3760b726eba875f1cd8faa02c15" + integrity sha512-PoeBYtxoZGtct3md6xZOCWPcKuMuk3IHhgxsRRNtnNShebf4C8YonTSblsK4tvDbm+eJAw2HAPOfCr+Q/YRG/g== + dependencies: + "@babel/helper-function-name" "^7.8.3" + "@babel/types" "^7.8.3" + lodash "^4.17.13" + + "@babel/helper-explode-assignable-expression@7.0.0-beta.47": + version "7.0.0-beta.47" + resolved "https://registry.yarnpkg.com/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.0.0-beta.47.tgz#56b688e282a698f4d1cf135453a11ae8af870a19" + integrity sha512-1mwk27zmhSuMUcVWxw5ZKiPYfuWXviZNqgA4OvFBloPf9R+dKDhNgP2uUrkHh68ltVVc3Bup1nsbd/2KM5AxEw== + dependencies: + "@babel/traverse" "7.0.0-beta.47" + "@babel/types" "7.0.0-beta.47" + + "@babel/helper-explode-assignable-expression@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.8.3.tgz#a728dc5b4e89e30fc2dfc7d04fa28a930653f982" + integrity sha512-N+8eW86/Kj147bO9G2uclsg5pwfs/fqqY5rwgIL7eTBklgXjcOJ3btzS5iM6AitJcftnY7pm2lGsrJVYLGjzIw== + dependencies: + "@babel/traverse" "^7.8.3" + "@babel/types" "^7.8.3" + + "@babel/helper-function-name@7.0.0-beta.47": + version "7.0.0-beta.47" + resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.0.0-beta.47.tgz#8057d63e951e85c57c02cdfe55ad7608d73ffb7d" + integrity sha512-0LSvt95XCYaOrDA5K68KkTyldKXizDwBnKACdYzQszp1GdbtzmSeGwFU5Ecw86fU6bkYXtDvkFTOQwk/WQSJPw== + dependencies: + "@babel/helper-get-function-arity" "7.0.0-beta.47" + "@babel/template" "7.0.0-beta.47" + "@babel/types" "7.0.0-beta.47" + + "@babel/helper-function-name@^7.8.3", "@babel/helper-function-name@^7.9.5": + version "7.9.5" + resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.9.5.tgz#2b53820d35275120e1874a82e5aabe1376920a5c" + integrity sha512-JVcQZeXM59Cd1qanDUxv9fgJpt3NeKUaqBqUEvfmQ+BCOKq2xUgaWZW2hr0dkbyJgezYuplEoh5knmrnS68efw== + dependencies: + "@babel/helper-get-function-arity" "^7.8.3" + "@babel/template" "^7.8.3" + "@babel/types" "^7.9.5" + + "@babel/helper-get-function-arity@7.0.0-beta.47": + version "7.0.0-beta.47" + resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.0.0-beta.47.tgz#2de04f97c14b094b55899d3fa83144a16d207510" + integrity sha512-63j0i3YUW8CO//uQc3ACffJdIlYcIlysuHjMF0yzQhqKoQ/CUPv0hf3nBwdRGjiWrr3JcL6++NF4XmXdwSU+fA== + dependencies: + "@babel/types" "7.0.0-beta.47" + + "@babel/helper-get-function-arity@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.8.3.tgz#b894b947bd004381ce63ea1db9f08547e920abd5" + integrity sha512-FVDR+Gd9iLjUMY1fzE2SR0IuaJToR4RkCDARVfsBBPSP53GEqSFjD8gNyxg246VUyc/ALRxFaAK8rVG7UT7xRA== + dependencies: + "@babel/types" "^7.8.3" + + "@babel/helper-hoist-variables@7.0.0-beta.47": + version "7.0.0-beta.47" + resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.0.0-beta.47.tgz#ce295d1d723fe22b2820eaec748ed701aa5ae3d0" + integrity sha512-5BcKFhyzrsInlrfO/tGoe6khUuJzGfROD7oozF/5MWsKo/c3gVJfQ5y83lZ4XoTKJt/x4PQlLU0aHd/SJpYONA== + dependencies: + "@babel/types" "7.0.0-beta.47" + + "@babel/helper-member-expression-to-functions@7.0.0-beta.47": + version "7.0.0-beta.47" + resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.0.0-beta.47.tgz#35bfcf1d16dce481ef3dec66d5a1ae6a7d80bb45" + integrity sha512-gpipslnZw2hcVGADUtqQII9KF8FPpRZsVUXwKP/0EnWwtujRFSVL+u2Fh+VXODRAxFmTLo6eGcOr/Vfan0MqYw== + dependencies: + "@babel/types" "7.0.0-beta.47" + + "@babel/helper-member-expression-to-functions@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.8.3.tgz#659b710498ea6c1d9907e0c73f206eee7dadc24c" + integrity sha512-fO4Egq88utkQFjbPrSHGmGLFqmrshs11d46WI+WZDESt7Wu7wN2G2Iu+NMMZJFDOVRHAMIkB5SNh30NtwCA7RA== + dependencies: + "@babel/types" "^7.8.3" + + "@babel/helper-module-imports@7.0.0-beta.47": + version "7.0.0-beta.47" + resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.0.0-beta.47.tgz#5af072029ffcfbece6ffbaf5d9984c75580f3f04" + integrity sha512-Rk43Ty+a6npu9znK22IqFlseStRGWxEHi2cjmLbbi63VGiseofdUtIJI65F9MTCuMTXAX7VbY/ghef1Jp5qpvw== + dependencies: + "@babel/types" "7.0.0-beta.47" + lodash "^4.17.5" + + "@babel/helper-module-imports@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.8.3.tgz#7fe39589b39c016331b6b8c3f441e8f0b1419498" + integrity sha512-R0Bx3jippsbAEtzkpZ/6FIiuzOURPcMjHp+Z6xPe6DtApDJx+w7UYyOLanZqO8+wKR9G10s/FmHXvxaMd9s6Kg== + dependencies: + "@babel/types" "^7.8.3" + + "@babel/helper-module-transforms@7.0.0-beta.47": + version "7.0.0-beta.47" + resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.0.0-beta.47.tgz#7eff91fc96873bd7b8d816698f1a69bbc01f3c38" + integrity sha512-CziMe30ZunAhe6j05oNOFOg7im1lcv3dYuMxrwBYVe9YdP4NHPU7a1wrDBUhaPmyqTIZDwGnFne7k1KP79SeGQ== + dependencies: + "@babel/helper-module-imports" "7.0.0-beta.47" + "@babel/helper-simple-access" "7.0.0-beta.47" + "@babel/helper-split-export-declaration" "7.0.0-beta.47" + "@babel/template" "7.0.0-beta.47" + "@babel/types" "7.0.0-beta.47" + lodash "^4.17.5" + + "@babel/helper-module-transforms@^7.9.0": + version "7.9.0" + resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.9.0.tgz#43b34dfe15961918707d247327431388e9fe96e5" + integrity sha512-0FvKyu0gpPfIQ8EkxlrAydOWROdHpBmiCiRwLkUiBGhCUPRRbVD2/tm3sFr/c/GWFrQ/ffutGUAnx7V0FzT2wA== + dependencies: + "@babel/helper-module-imports" "^7.8.3" + "@babel/helper-replace-supers" "^7.8.6" + "@babel/helper-simple-access" "^7.8.3" + "@babel/helper-split-export-declaration" "^7.8.3" + "@babel/template" "^7.8.6" + "@babel/types" "^7.9.0" + lodash "^4.17.13" + + "@babel/helper-optimise-call-expression@7.0.0-beta.47": + version "7.0.0-beta.47" + resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.0.0-beta.47.tgz#085d864d0613c5813c1b7c71b61bea36f195929e" + integrity sha512-NhnGhjwrhzGas4A/PoBDEtEPCGJHrzhaT6qGmo1hmkA2orG4UNi7KENC38DhJII0n2oUrKUuzTwgCvxKOTiHbw== + dependencies: + "@babel/types" "7.0.0-beta.47" + + "@babel/helper-optimise-call-expression@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.8.3.tgz#7ed071813d09c75298ef4f208956006b6111ecb9" + integrity sha512-Kag20n86cbO2AvHca6EJsvqAd82gc6VMGule4HwebwMlwkpXuVqrNRj6CkCV2sKxgi9MyAUnZVnZ6lJ1/vKhHQ== + dependencies: + "@babel/types" "^7.8.3" + + "@babel/helper-plugin-utils@7.0.0-beta.47": + version "7.0.0-beta.47" + resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.0.0-beta.47.tgz#4f564117ec39f96cf60fafcde35c9ddce0e008fd" + integrity sha512-GR67o8boOKVJRKM5Nhk7oVEHpxYy8R00lwu0F82WxxBH+iiT26DqW1e/4w/mo7Bdn1A6l0pNaOlNk1PdM2Hgag== + + "@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.8.3.tgz#9ea293be19babc0f52ff8ca88b34c3611b208670" + integrity sha512-j+fq49Xds2smCUNYmEHF9kGNkhbet6yVIBp4e6oeQpH1RUs/Ir06xUKzDjDkGcaaokPiTNs2JBWHjaE4csUkZQ== + + "@babel/helper-regex@7.0.0-beta.47": + version "7.0.0-beta.47" + resolved "https://registry.yarnpkg.com/@babel/helper-regex/-/helper-regex-7.0.0-beta.47.tgz#b8e3b53132c4edbb04804242c02ffe4d60316971" + integrity sha512-dafidvVkjJP5AIWkJspV+7RGj1jeNts0qYvlmVzqAGb6BmQzEldJr6ZPzrmlpW/AW1YJGdw7br2yiwvlCRqDvQ== + dependencies: + lodash "^4.17.5" + + "@babel/helper-regex@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/helper-regex/-/helper-regex-7.8.3.tgz#139772607d51b93f23effe72105b319d2a4c6965" + integrity sha512-BWt0QtYv/cg/NecOAZMdcn/waj/5P26DR4mVLXfFtDokSR6fyuG0Pj+e2FqtSME+MqED1khnSMulkmGl8qWiUQ== + dependencies: + lodash "^4.17.13" + + "@babel/helper-remap-async-to-generator@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.8.3.tgz#273c600d8b9bf5006142c1e35887d555c12edd86" + integrity sha512-kgwDmw4fCg7AVgS4DukQR/roGp+jP+XluJE5hsRZwxCYGg+Rv9wSGErDWhlI90FODdYfd4xG4AQRiMDjjN0GzA== + dependencies: + "@babel/helper-annotate-as-pure" "^7.8.3" + "@babel/helper-wrap-function" "^7.8.3" + "@babel/template" "^7.8.3" + "@babel/traverse" "^7.8.3" + "@babel/types" "^7.8.3" + + "@babel/helper-replace-supers@7.0.0-beta.47": + version "7.0.0-beta.47" + resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.0.0-beta.47.tgz#310b206a302868a792b659455ceba27db686cbb7" + integrity sha512-yf2JAD1+xNTjavqazqknRgPfd6MbGfvfIcAkxWsPURynAwOMSs4zThED8ImT2d5a97rGPysRJcq1jNh2L0WYxg== + dependencies: + "@babel/helper-member-expression-to-functions" "7.0.0-beta.47" + "@babel/helper-optimise-call-expression" "7.0.0-beta.47" + "@babel/traverse" "7.0.0-beta.47" + "@babel/types" "7.0.0-beta.47" + + "@babel/helper-replace-supers@^7.8.3", "@babel/helper-replace-supers@^7.8.6": + version "7.8.6" + resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.8.6.tgz#5ada744fd5ad73203bf1d67459a27dcba67effc8" + integrity sha512-PeMArdA4Sv/Wf4zXwBKPqVj7n9UF/xg6slNRtZW84FM7JpE1CbG8B612FyM4cxrf4fMAMGO0kR7voy1ForHHFA== + dependencies: + "@babel/helper-member-expression-to-functions" "^7.8.3" + "@babel/helper-optimise-call-expression" "^7.8.3" + "@babel/traverse" "^7.8.6" + "@babel/types" "^7.8.6" + + "@babel/helper-simple-access@7.0.0-beta.47": + version "7.0.0-beta.47" + resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.0.0-beta.47.tgz#234d754acbda9251a10db697ef50181eab125042" + integrity sha512-sd2t3QDKjd+hHkJKaC2AX39l6oIil1N548oMZAtV5YHlVGoWWkAVGnPMxRg7ICEjIftCU3ZI6UeaogyEhF8t7Q== + dependencies: + "@babel/template" "7.0.0-beta.47" + "@babel/types" "7.0.0-beta.47" + lodash "^4.17.5" + + "@babel/helper-simple-access@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.8.3.tgz#7f8109928b4dab4654076986af575231deb639ae" + integrity sha512-VNGUDjx5cCWg4vvCTR8qQ7YJYZ+HBjxOgXEl7ounz+4Sn7+LMD3CFrCTEU6/qXKbA2nKg21CwhhBzO0RpRbdCw== + dependencies: + "@babel/template" "^7.8.3" + "@babel/types" "^7.8.3" + + "@babel/helper-split-export-declaration@7.0.0-beta.47": + version "7.0.0-beta.47" + resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.0.0-beta.47.tgz#e11277855472d8d83baf22f2d0186c4a2059b09a" + integrity sha512-jx8GmxryT6Qy4+24W6M6TnVL9T8bxqdyg5UKHjxBdw0Y2Sano1n0WphUS2seuOugn04W2ZQLqGc0ut8nGe/taA== + dependencies: + "@babel/types" "7.0.0-beta.47" + + "@babel/helper-split-export-declaration@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.8.3.tgz#31a9f30070f91368a7182cf05f831781065fc7a9" + integrity sha512-3x3yOeyBhW851hroze7ElzdkeRXQYQbFIb7gLK1WQYsw2GWDay5gAJNw1sWJ0VFP6z5J1whqeXH/WCdCjZv6dA== + dependencies: + "@babel/types" "^7.8.3" + + "@babel/helper-validator-identifier@^7.9.0", "@babel/helper-validator-identifier@^7.9.5": + version "7.9.5" + resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.9.5.tgz#90977a8e6fbf6b431a7dc31752eee233bf052d80" + integrity sha512-/8arLKUFq882w4tWGj9JYzRpAlZgiWUJ+dtteNTDqrRBz9Iguck9Rn3ykuBDoUwh2TO4tSAJlrxDUOXWklJe4g== + + "@babel/helper-wrap-function@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.8.3.tgz#9dbdb2bb55ef14aaa01fe8c99b629bd5352d8610" + integrity sha512-LACJrbUET9cQDzb6kG7EeD7+7doC3JNvUgTEQOx2qaO1fKlzE/Bf05qs9w1oXQMmXlPO65lC3Tq9S6gZpTErEQ== + dependencies: + "@babel/helper-function-name" "^7.8.3" + "@babel/template" "^7.8.3" + "@babel/traverse" "^7.8.3" + "@babel/types" "^7.8.3" + + "@babel/helpers@^7.9.0": + version "7.9.2" + resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.9.2.tgz#b42a81a811f1e7313b88cba8adc66b3d9ae6c09f" + integrity sha512-JwLvzlXVPjO8eU9c/wF9/zOIN7X6h8DYf7mG4CiFRZRvZNKEF5dQ3H3V+ASkHoIB3mWhatgl5ONhyqHRI6MppA== + dependencies: + "@babel/template" "^7.8.3" + "@babel/traverse" "^7.9.0" + "@babel/types" "^7.9.0" + + "@babel/highlight@7.0.0-beta.47": + version "7.0.0-beta.47" + resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.0.0-beta.47.tgz#8fbc83fb2a21f0bd2b95cdbeb238cf9689cad494" + integrity sha512-d505K3Hth1eg0b2swfEF7oFMw3J9M8ceFg0s6dhCSxOOF+07WDvJ0HKT/YbK/Jk9wn8Wyr6HIRAUPKJ9Wfv8Rg== + dependencies: + chalk "^2.0.0" + esutils "^2.0.2" + js-tokens "^3.0.0" + + "@babel/highlight@^7.8.3": + version "7.9.0" + resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.9.0.tgz#4e9b45ccb82b79607271b2979ad82c7b68163079" + integrity sha512-lJZPilxX7Op3Nv/2cvFdnlepPXDxi29wxteT57Q965oc5R9v86ztx0jfxVrTcBk8C2kcPkkDa2Z4T3ZsPPVWsQ== + dependencies: + "@babel/helper-validator-identifier" "^7.9.0" + chalk "^2.0.0" + js-tokens "^4.0.0" + + "@babel/parser@^7.0.0", "@babel/parser@^7.1.0", "@babel/parser@^7.7.5", "@babel/parser@^7.8.6", "@babel/parser@^7.9.0": + version "7.9.4" + resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.9.4.tgz#68a35e6b0319bbc014465be43828300113f2f2e8" + integrity sha512-bC49otXX6N0/VYhgOMh4gnP26E9xnDZK3TmbNpxYzzz9BQLBosQwfyOe9/cXUU3txYhTzLCbcqd5c8y/OmCjHA== + + "@babel/plugin-external-helpers@^7.0.0": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-external-helpers/-/plugin-external-helpers-7.8.3.tgz#5a94164d9af393b2820a3cdc407e28ebf237de4b" + integrity sha512-mx0WXDDiIl5DwzMtzWGRSPugXi9BxROS05GQrhLNbEamhBiicgn994ibwkyiBH+6png7bm/yA7AUsvHyCXi4Vw== + dependencies: + "@babel/helper-plugin-utils" "^7.8.3" + + "@babel/plugin-proposal-class-properties@7.0.0-beta.47": + version "7.0.0-beta.47" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.0.0-beta.47.tgz#08c1a1dfc92d0f5c37b39096c6fb883e1ca4b0f5" + integrity sha512-6yuCiF+ZZHPLgAa+0a6/teNeAMsWqY6AVtZA4NhCWnwP4OH0JrRaY7rwvFCJSqNGurf8rF65W9IucM/l0+HOCg== + dependencies: + "@babel/helper-function-name" "7.0.0-beta.47" + "@babel/helper-plugin-utils" "7.0.0-beta.47" + "@babel/helper-replace-supers" "7.0.0-beta.47" + "@babel/plugin-syntax-class-properties" "7.0.0-beta.47" + + "@babel/plugin-proposal-class-properties@^7.0.0": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.8.3.tgz#5e06654af5cd04b608915aada9b2a6788004464e" + integrity sha512-EqFhbo7IosdgPgZggHaNObkmO1kNUe3slaKu54d5OWvy+p9QIKOzK1GAEpAIsZtWVtPXUHSMcT4smvDrCfY4AA== + dependencies: + "@babel/helper-create-class-features-plugin" "^7.8.3" + "@babel/helper-plugin-utils" "^7.8.3" + + "@babel/plugin-proposal-export-default-from@^7.0.0": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-export-default-from/-/plugin-proposal-export-default-from-7.8.3.tgz#4cb7c2fdeaed490b60d9bfd3dc8a20f81f9c2e7c" + integrity sha512-PYtv2S2OdCdp7GSPDg5ndGZFm9DmWFvuLoS5nBxZCgOBggluLnhTScspJxng96alHQzPyrrHxvC9/w4bFuspeA== + dependencies: + "@babel/helper-plugin-utils" "^7.8.3" + "@babel/plugin-syntax-export-default-from" "^7.8.3" + + "@babel/plugin-proposal-nullish-coalescing-operator@^7.0.0": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.8.3.tgz#e4572253fdeed65cddeecfdab3f928afeb2fd5d2" + integrity sha512-TS9MlfzXpXKt6YYomudb/KU7nQI6/xnapG6in1uZxoxDghuSMZsPb6D2fyUwNYSAp4l1iR7QtFOjkqcRYcUsfw== + dependencies: + "@babel/helper-plugin-utils" "^7.8.3" + "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.0" + + "@babel/plugin-proposal-object-rest-spread@7.0.0-beta.47": + version "7.0.0-beta.47" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.0.0-beta.47.tgz#e1529fddc88e948868ee1d0edaa27ebd9502322d" + integrity sha512-ujUjQUyTxUWHfixRD7Y5Nm8VCgHSf6YgbM37LEnojKp5lPahZO42qJfDty+Kh0tEanpI5H8BLPkJbFSzx6TNEw== + dependencies: + "@babel/helper-plugin-utils" "7.0.0-beta.47" + "@babel/plugin-syntax-object-rest-spread" "7.0.0-beta.47" + + "@babel/plugin-proposal-object-rest-spread@^7.0.0": + version "7.9.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.9.5.tgz#3fd65911306d8746014ec0d0cf78f0e39a149116" + integrity sha512-VP2oXvAf7KCYTthbUHwBlewbl1Iq059f6seJGsxMizaCdgHIeczOr7FBqELhSqfkIl04Fi8okzWzl63UKbQmmg== + dependencies: + "@babel/helper-plugin-utils" "^7.8.3" + "@babel/plugin-syntax-object-rest-spread" "^7.8.0" + "@babel/plugin-transform-parameters" "^7.9.5" + + "@babel/plugin-proposal-optional-catch-binding@^7.0.0": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.8.3.tgz#9dee96ab1650eed88646ae9734ca167ac4a9c5c9" + integrity sha512-0gkX7J7E+AtAw9fcwlVQj8peP61qhdg/89D5swOkjYbkboA2CVckn3kiyum1DE0wskGb7KJJxBdyEBApDLLVdw== + dependencies: + "@babel/helper-plugin-utils" "^7.8.3" + "@babel/plugin-syntax-optional-catch-binding" "^7.8.0" + + "@babel/plugin-proposal-optional-chaining@7.0.0-beta.47": + version "7.0.0-beta.47" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.0.0-beta.47.tgz#099e5720121f91eb36544575f98d44cd57865ea5" + integrity sha512-5jlVmdC1Lv874h2553xAp50jVv3L/23KksOLUZdF/9+ZdbAzOlhX6spHiVy/jjfU9G1MFZtZTlxhV5roGkqZvg== + dependencies: + "@babel/helper-plugin-utils" "7.0.0-beta.47" + "@babel/plugin-syntax-optional-chaining" "7.0.0-beta.47" + + "@babel/plugin-proposal-optional-chaining@^7.0.0": + version "7.9.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.9.0.tgz#31db16b154c39d6b8a645292472b98394c292a58" + integrity sha512-NDn5tu3tcv4W30jNhmc2hyD5c56G6cXx4TesJubhxrJeCvuuMpttxr0OnNCqbZGhFjLrg+NIhxxC+BK5F6yS3w== + dependencies: + "@babel/helper-plugin-utils" "^7.8.3" + "@babel/plugin-syntax-optional-chaining" "^7.8.0" + + "@babel/plugin-syntax-async-generators@^7.8.4": + version "7.8.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz#a983fb1aeb2ec3f6ed042a210f640e90e786fe0d" + integrity sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + + "@babel/plugin-syntax-bigint@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz#4c9a6f669f5d0cdf1b90a1671e9a146be5300cea" + integrity sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + + "@babel/plugin-syntax-class-properties@7.0.0-beta.47": + version "7.0.0-beta.47" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.0.0-beta.47.tgz#de52bed12fd472c848e1562f57dd4a202fe27f11" + integrity sha512-vLoAuLSjHSenX3TQmri6ttQWZp3rEtGcRp4LgYEBQ012fN5h+KmcssvkCAqm6V6ozS5KzUWpBlZ6t7YhZG6oBw== + dependencies: + "@babel/helper-plugin-utils" "7.0.0-beta.47" + + "@babel/plugin-syntax-class-properties@^7.0.0", "@babel/plugin-syntax-class-properties@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.8.3.tgz#6cb933a8872c8d359bfde69bbeaae5162fd1e8f7" + integrity sha512-UcAyQWg2bAN647Q+O811tG9MrJ38Z10jjhQdKNAL8fsyPzE3cCN/uT+f55cFVY4aGO4jqJAvmqsuY3GQDwAoXg== + dependencies: + "@babel/helper-plugin-utils" "^7.8.3" + + "@babel/plugin-syntax-dynamic-import@^7.0.0": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz#62bf98b2da3cd21d626154fc96ee5b3cb68eacb3" + integrity sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + + "@babel/plugin-syntax-export-default-from@^7.0.0", "@babel/plugin-syntax-export-default-from@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-export-default-from/-/plugin-syntax-export-default-from-7.8.3.tgz#f1e55ce850091442af4ba9c2550106035b29d678" + integrity sha512-a1qnnsr73KLNIQcQlcQ4ZHxqqfBKM6iNQZW2OMTyxNbA2WC7SHWHtGVpFzWtQAuS2pspkWVzdEBXXx8Ik0Za4w== + dependencies: + "@babel/helper-plugin-utils" "^7.8.3" + + "@babel/plugin-syntax-flow@7.0.0-beta.47": + version "7.0.0-beta.47" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.0.0-beta.47.tgz#9d0b09b9af6fec87a7b22e406bf948089d58c188" + integrity sha512-+3ZLKNV8tSDnTWL4QRNx5uZB/hUzY71WcgCwoXWy+8ma7EjZ3e3vbR69VR8dJwG1DqGsug6ZzM+afR0G4gKgPA== + dependencies: + "@babel/helper-plugin-utils" "7.0.0-beta.47" + + "@babel/plugin-syntax-flow@^7.0.0", "@babel/plugin-syntax-flow@^7.2.0", "@babel/plugin-syntax-flow@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.8.3.tgz#f2c883bd61a6316f2c89380ae5122f923ba4527f" + integrity sha512-innAx3bUbA0KSYj2E2MNFSn9hiCeowOFLxlsuhXzw8hMQnzkDomUr9QCD7E9VF60NmnG1sNTuuv6Qf4f8INYsg== + dependencies: + "@babel/helper-plugin-utils" "^7.8.3" + + "@babel/plugin-syntax-json-strings@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz#01ca21b668cd8218c9e640cb6dd88c5412b2c96a" + integrity sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + + "@babel/plugin-syntax-jsx@7.0.0-beta.47": + version "7.0.0-beta.47" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.0.0-beta.47.tgz#f3849d94288695d724bd205b4f6c3c99e4ec24a4" + integrity sha512-5scuJzIYZY8M+A1ra8mcKANIwB5TtsRD6Aw94xZxfvnjhhVMFR5RYE9HshVlBrZVY+r3cJDNIQLJMC/fGJHImA== + dependencies: + "@babel/helper-plugin-utils" "7.0.0-beta.47" + + "@babel/plugin-syntax-jsx@^7.0.0", "@babel/plugin-syntax-jsx@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.8.3.tgz#521b06c83c40480f1e58b4fd33b92eceb1d6ea94" + integrity sha512-WxdW9xyLgBdefoo0Ynn3MRSkhe5tFVxxKNVdnZSh318WrG2e2jH+E9wd/++JsqcLJZPfz87njQJ8j2Upjm0M0A== + dependencies: + "@babel/helper-plugin-utils" "^7.8.3" + + "@babel/plugin-syntax-logical-assignment-operators@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.8.3.tgz#3995d7d7ffff432f6ddc742b47e730c054599897" + integrity sha512-Zpg2Sgc++37kuFl6ppq2Q7Awc6E6AIW671x5PY8E/f7MCIyPPGK/EoeZXvvY3P42exZ3Q4/t3YOzP/HiN79jDg== + dependencies: + "@babel/helper-plugin-utils" "^7.8.3" + + "@babel/plugin-syntax-nullish-coalescing-operator@^7.8.0", "@babel/plugin-syntax-nullish-coalescing-operator@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz#167ed70368886081f74b5c36c65a88c03b66d1a9" + integrity sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + + "@babel/plugin-syntax-numeric-separator@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.8.3.tgz#0e3fb63e09bea1b11e96467271c8308007e7c41f" + integrity sha512-H7dCMAdN83PcCmqmkHB5dtp+Xa9a6LKSvA2hiFBC/5alSHxM5VgWZXFqDi0YFe8XNGT6iCa+z4V4zSt/PdZ7Dw== + dependencies: + "@babel/helper-plugin-utils" "^7.8.3" + + "@babel/plugin-syntax-object-rest-spread@7.0.0-beta.47": + version "7.0.0-beta.47" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.0.0-beta.47.tgz#21da514d94c138b2261ca09f0dec9abadce16185" + integrity sha512-UOGQCmzvNlZMQOuys7xPiTa2EjTT3xHuhUghcdJnYikqGV43obpIIaP+VDCWPvIT8g0QDIvmRWx5UefvkWXN+w== + dependencies: + "@babel/helper-plugin-utils" "7.0.0-beta.47" + + "@babel/plugin-syntax-object-rest-spread@^7.0.0", "@babel/plugin-syntax-object-rest-spread@^7.8.0", "@babel/plugin-syntax-object-rest-spread@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz#60e225edcbd98a640332a2e72dd3e66f1af55871" + integrity sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + + "@babel/plugin-syntax-optional-catch-binding@^7.8.0", "@babel/plugin-syntax-optional-catch-binding@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz#6111a265bcfb020eb9efd0fdfd7d26402b9ed6c1" + integrity sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + + "@babel/plugin-syntax-optional-chaining@7.0.0-beta.47": + version "7.0.0-beta.47" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.0.0-beta.47.tgz#f1febe859d9dde26f2b2e1f20cf679925d1fab23" + integrity sha512-lt6JV/D7QeAEf3qqUT4JTPkbU6vNCfeMW7BB7JD+HYivITkmXuGIVl7w4JrRB9LkfjkYE5vgiz3Nc733AD7v8w== + dependencies: + "@babel/helper-plugin-utils" "7.0.0-beta.47" + + "@babel/plugin-syntax-optional-chaining@^7.8.0", "@babel/plugin-syntax-optional-chaining@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz#4f69c2ab95167e0180cd5336613f8c5788f7d48a" + integrity sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + + "@babel/plugin-syntax-typescript@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.8.3.tgz#c1f659dda97711a569cef75275f7e15dcaa6cabc" + integrity sha512-GO1MQ/SGGGoiEXY0e0bSpHimJvxqB7lktLLIq2pv8xG7WZ8IMEle74jIe1FhprHBWjwjZtXHkycDLZXIWM5Wfg== + dependencies: + "@babel/helper-plugin-utils" "^7.8.3" + + "@babel/plugin-transform-arrow-functions@7.0.0-beta.47": + version "7.0.0-beta.47" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.0.0-beta.47.tgz#d6eecda4c652b909e3088f0983ebaf8ec292984b" + integrity sha512-xiU+7RJAsqx+iZqWSQQWBu9ZDTruWimkg4puDSdRVfEwgZQdOtiU2LuO0+xGFyitJPHkKuje0WvK1tFu1dmxCw== + dependencies: + "@babel/helper-plugin-utils" "7.0.0-beta.47" + + "@babel/plugin-transform-arrow-functions@^7.0.0": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.8.3.tgz#82776c2ed0cd9e1a49956daeb896024c9473b8b6" + integrity sha512-0MRF+KC8EqH4dbuITCWwPSzsyO3HIWWlm30v8BbbpOrS1B++isGxPnnuq/IZvOX5J2D/p7DQalQm+/2PnlKGxg== + dependencies: + "@babel/helper-plugin-utils" "^7.8.3" + + "@babel/plugin-transform-async-to-generator@^7.0.0": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.8.3.tgz#4308fad0d9409d71eafb9b1a6ee35f9d64b64086" + integrity sha512-imt9tFLD9ogt56Dd5CI/6XgpukMwd/fLGSrix2httihVe7LOGVPhyhMh1BU5kDM7iHD08i8uUtmV2sWaBFlHVQ== + dependencies: + "@babel/helper-module-imports" "^7.8.3" + "@babel/helper-plugin-utils" "^7.8.3" + "@babel/helper-remap-async-to-generator" "^7.8.3" + + "@babel/plugin-transform-block-scoped-functions@^7.0.0": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.8.3.tgz#437eec5b799b5852072084b3ae5ef66e8349e8a3" + integrity sha512-vo4F2OewqjbB1+yaJ7k2EJFHlTP3jR634Z9Cj9itpqNjuLXvhlVxgnjsHsdRgASR8xYDrx6onw4vW5H6We0Jmg== + dependencies: + "@babel/helper-plugin-utils" "^7.8.3" + + "@babel/plugin-transform-block-scoping@7.0.0-beta.47": + version "7.0.0-beta.47" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.0.0-beta.47.tgz#b737cc58a81bea57efd5bda0baef9a43a25859ad" + integrity sha512-V/u3Zdy40KjVQeyYUaQnCGiHQbRNJoc6IEtNDERltuW9vYPHS1n6YGc+EHKi8JVYT4kE6UHOjD+BrbCCV4kjRw== + dependencies: + "@babel/helper-plugin-utils" "7.0.0-beta.47" + lodash "^4.17.5" + + "@babel/plugin-transform-block-scoping@^7.0.0": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.8.3.tgz#97d35dab66857a437c166358b91d09050c868f3a" + integrity sha512-pGnYfm7RNRgYRi7bids5bHluENHqJhrV4bCZRwc5GamaWIIs07N4rZECcmJL6ZClwjDz1GbdMZFtPs27hTB06w== + dependencies: + "@babel/helper-plugin-utils" "^7.8.3" + lodash "^4.17.13" + + "@babel/plugin-transform-classes@7.0.0-beta.47": + version "7.0.0-beta.47" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.0.0-beta.47.tgz#7aff9cbe7b26fd94d7a9f97fa90135ef20c93fb6" + integrity sha512-hzW/jL6TPBMHJXeXwzuxMN0PFAfjVD0UzATHrFSejY5A7SvhWWrv1cZ3K0/SzCXJ9LpMdxCNiREvVjeD/Tyx2g== + dependencies: + "@babel/helper-annotate-as-pure" "7.0.0-beta.47" + "@babel/helper-define-map" "7.0.0-beta.47" + "@babel/helper-function-name" "7.0.0-beta.47" + "@babel/helper-optimise-call-expression" "7.0.0-beta.47" + "@babel/helper-plugin-utils" "7.0.0-beta.47" + "@babel/helper-replace-supers" "7.0.0-beta.47" + "@babel/helper-split-export-declaration" "7.0.0-beta.47" + globals "^11.1.0" + + "@babel/plugin-transform-classes@^7.0.0": + version "7.9.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.9.5.tgz#800597ddb8aefc2c293ed27459c1fcc935a26c2c" + integrity sha512-x2kZoIuLC//O5iA7PEvecB105o7TLzZo8ofBVhP79N+DO3jaX+KYfww9TQcfBEZD0nikNyYcGB1IKtRq36rdmg== + dependencies: + "@babel/helper-annotate-as-pure" "^7.8.3" + "@babel/helper-define-map" "^7.8.3" + "@babel/helper-function-name" "^7.9.5" + "@babel/helper-optimise-call-expression" "^7.8.3" + "@babel/helper-plugin-utils" "^7.8.3" + "@babel/helper-replace-supers" "^7.8.6" + "@babel/helper-split-export-declaration" "^7.8.3" + globals "^11.1.0" + + "@babel/plugin-transform-computed-properties@7.0.0-beta.47": + version "7.0.0-beta.47" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.0.0-beta.47.tgz#56ef2a021769a2b65e90a3e12fd10b791da9f3e0" + integrity sha512-V78qyzmjj4aq/tjpkMFbV5gPtrx7xdclW1Rn6vV9hIwMSMbtstYEXF4msy614MofvYj6gYbPbNfyhXFIUvz/xw== + dependencies: + "@babel/helper-plugin-utils" "7.0.0-beta.47" + + "@babel/plugin-transform-computed-properties@^7.0.0": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.8.3.tgz#96d0d28b7f7ce4eb5b120bb2e0e943343c86f81b" + integrity sha512-O5hiIpSyOGdrQZRQ2ccwtTVkgUDBBiCuK//4RJ6UfePllUTCENOzKxfh6ulckXKc0DixTFLCfb2HVkNA7aDpzA== + dependencies: + "@babel/helper-plugin-utils" "^7.8.3" + + "@babel/plugin-transform-destructuring@7.0.0-beta.47": + version "7.0.0-beta.47" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.0.0-beta.47.tgz#452b607775fd1c4d10621997837189efc0a6d428" + integrity sha512-3AaXC9H7qPybJbSs/QMhhj9EZF9MYrb/HRytwki1tckaYifqCJquENIZxDAYmwsWIGIHiq34WqwPRMIsz/b5uQ== + dependencies: + "@babel/helper-plugin-utils" "7.0.0-beta.47" + + "@babel/plugin-transform-destructuring@^7.0.0": + version "7.9.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.9.5.tgz#72c97cf5f38604aea3abf3b935b0e17b1db76a50" + integrity sha512-j3OEsGel8nHL/iusv/mRd5fYZ3DrOxWC82x0ogmdN/vHfAP4MYw+AFKYanzWlktNwikKvlzUV//afBW5FTp17Q== + dependencies: + "@babel/helper-plugin-utils" "^7.8.3" + + "@babel/plugin-transform-exponentiation-operator@7.0.0-beta.47": + version "7.0.0-beta.47" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.0.0-beta.47.tgz#930e1abf5db9f4db5b63dbf97f3581ad0be1e907" + integrity sha512-vyGG3kLIXpMuaPL485aqowdWFrxCxXtbzMXy9p1QTK5Q/+9UHpK9XoAVJZGknnsm091m0Ss7spo8uHaxbzYVog== + dependencies: + "@babel/helper-builder-binary-assignment-operator-visitor" "7.0.0-beta.47" + "@babel/helper-plugin-utils" "7.0.0-beta.47" + + "@babel/plugin-transform-exponentiation-operator@^7.0.0": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.8.3.tgz#581a6d7f56970e06bf51560cd64f5e947b70d7b7" + integrity sha512-zwIpuIymb3ACcInbksHaNcR12S++0MDLKkiqXHl3AzpgdKlFNhog+z/K0+TGW+b0w5pgTq4H6IwV/WhxbGYSjQ== + dependencies: + "@babel/helper-builder-binary-assignment-operator-visitor" "^7.8.3" + "@babel/helper-plugin-utils" "^7.8.3" + + "@babel/plugin-transform-flow-strip-types@7.0.0-beta.47": + version "7.0.0-beta.47" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.0.0-beta.47.tgz#fa45811094c10d70c84efdd0eac62ebd2a634bf7" + integrity sha512-X/8Gd4CxdBx7LOtW2wPSzr83bYyndqYbnJoUEosPJXOG2aRmgVo4hn+wk97vtDH+hMP7HsTApVBffrZNXS3erA== + dependencies: + "@babel/helper-plugin-utils" "7.0.0-beta.47" + "@babel/plugin-syntax-flow" "7.0.0-beta.47" + + "@babel/plugin-transform-flow-strip-types@^7.0.0": + version "7.9.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.9.0.tgz#8a3538aa40434e000b8f44a3c5c9ac7229bd2392" + integrity sha512-7Qfg0lKQhEHs93FChxVLAvhBshOPQDtJUTVHr/ZwQNRccCm4O9D79r9tVSoV8iNwjP1YgfD+e/fgHcPkN1qEQg== + dependencies: + "@babel/helper-plugin-utils" "^7.8.3" + "@babel/plugin-syntax-flow" "^7.8.3" + + "@babel/plugin-transform-for-of@7.0.0-beta.47": + version "7.0.0-beta.47" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.0.0-beta.47.tgz#527d5dc24e4a4ad0fc1d0a3990d29968cb984e76" + integrity sha512-tfH5OMzV9fWLYJTzWDhoRJKr8kvBZWH26jiCgM0ayNq75ES/X947MqMNAgBjJdTAVEV2kOyks2ItgNAJT4rOUw== + dependencies: + "@babel/helper-plugin-utils" "7.0.0-beta.47" + + "@babel/plugin-transform-for-of@^7.0.0": + version "7.9.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.9.0.tgz#0f260e27d3e29cd1bb3128da5e76c761aa6c108e" + integrity sha512-lTAnWOpMwOXpyDx06N+ywmF3jNbafZEqZ96CGYabxHrxNX8l5ny7dt4bK/rGwAh9utyP2b2Hv7PlZh1AAS54FQ== + dependencies: + "@babel/helper-plugin-utils" "^7.8.3" + + "@babel/plugin-transform-function-name@7.0.0-beta.47": + version "7.0.0-beta.47" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.0.0-beta.47.tgz#fb443c81cc77f3206a863b730b35c8c553ce5041" + integrity sha512-/5I/f8NCouugsRT6ORB1UjCP3N+Rgv/OB6SzmaeIUEpYYPM6D7WQ+4BaRYXQn4eqtOJmTgxDXYa8FgYtoeqP9A== + dependencies: + "@babel/helper-function-name" "7.0.0-beta.47" + "@babel/helper-plugin-utils" "7.0.0-beta.47" + + "@babel/plugin-transform-function-name@^7.0.0": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.8.3.tgz#279373cb27322aaad67c2683e776dfc47196ed8b" + integrity sha512-rO/OnDS78Eifbjn5Py9v8y0aR+aSYhDhqAwVfsTl0ERuMZyr05L1aFSCJnbv2mmsLkit/4ReeQ9N2BgLnOcPCQ== + dependencies: + "@babel/helper-function-name" "^7.8.3" + "@babel/helper-plugin-utils" "^7.8.3" + + "@babel/plugin-transform-literals@7.0.0-beta.47": + version "7.0.0-beta.47" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.0.0-beta.47.tgz#448fad196f062163684a38f10f14e83315892e9c" + integrity sha512-PxBw+52qWypwR76YfS2FlW4wZfp61SjIyt3OSPZeWnf0zVQWNVrlRRunJ7lBYudDYvyMwStAE/VynZ0fHtPgng== + dependencies: + "@babel/helper-plugin-utils" "7.0.0-beta.47" + + "@babel/plugin-transform-literals@^7.0.0": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.8.3.tgz#aef239823d91994ec7b68e55193525d76dbd5dc1" + integrity sha512-3Tqf8JJ/qB7TeldGl+TT55+uQei9JfYaregDcEAyBZ7akutriFrt6C/wLYIer6OYhleVQvH/ntEhjE/xMmy10A== + dependencies: + "@babel/helper-plugin-utils" "^7.8.3" + + "@babel/plugin-transform-member-expression-literals@^7.0.0": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.8.3.tgz#963fed4b620ac7cbf6029c755424029fa3a40410" + integrity sha512-3Wk2EXhnw+rP+IDkK6BdtPKsUE5IeZ6QOGrPYvw52NwBStw9V1ZVzxgK6fSKSxqUvH9eQPR3tm3cOq79HlsKYA== + dependencies: + "@babel/helper-plugin-utils" "^7.8.3" + + "@babel/plugin-transform-modules-commonjs@7.0.0-beta.47": + version "7.0.0-beta.47" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.0.0-beta.47.tgz#dfe5c6d867aa9614e55f7616736073edb3aab887" + integrity sha512-MYoLyexybBJ9ODWWMsMFzxAQey68RzhQNPjfNAYPhPPB3X160EZ5qOjWxRS2rYNvuYAxs6guy5OdrDpESqFSrQ== + dependencies: + "@babel/helper-module-transforms" "7.0.0-beta.47" + "@babel/helper-plugin-utils" "7.0.0-beta.47" + "@babel/helper-simple-access" "7.0.0-beta.47" + + "@babel/plugin-transform-modules-commonjs@^7.0.0": + version "7.9.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.9.0.tgz#e3e72f4cbc9b4a260e30be0ea59bdf5a39748940" + integrity sha512-qzlCrLnKqio4SlgJ6FMMLBe4bySNis8DFn1VkGmOcxG9gqEyPIOzeQrA//u0HAKrWpJlpZbZMPB1n/OPa4+n8g== + dependencies: + "@babel/helper-module-transforms" "^7.9.0" + "@babel/helper-plugin-utils" "^7.8.3" + "@babel/helper-simple-access" "^7.8.3" + babel-plugin-dynamic-import-node "^2.3.0" + + "@babel/plugin-transform-object-assign@7.0.0-beta.47": + version "7.0.0-beta.47" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-assign/-/plugin-transform-object-assign-7.0.0-beta.47.tgz#aaf0e4593c1e9b1ceb48fc8770736a029b17ed64" + integrity sha512-5Cc/5TsUjxiAuEQ4WUu+ccP0RI2/qcZWEZA7U87RH26rnhc0NDBZfUbEf1RGM5gBFLFVNzUAoFX8kRykHvl/nQ== + dependencies: + "@babel/helper-plugin-utils" "7.0.0-beta.47" + + "@babel/plugin-transform-object-assign@^7.0.0": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-assign/-/plugin-transform-object-assign-7.8.3.tgz#dc3b8dd50ef03837868a37b7df791f64f288538e" + integrity sha512-i3LuN8tPDqUCRFu3dkzF2r1Nx0jp4scxtm7JxtIqI9he9Vk20YD+/zshdzR9JLsoBMlJlNR82a62vQExNEVx/Q== + dependencies: + "@babel/helper-plugin-utils" "^7.8.3" + + "@babel/plugin-transform-object-super@^7.0.0": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.8.3.tgz#ebb6a1e7a86ffa96858bd6ac0102d65944261725" + integrity sha512-57FXk+gItG/GejofIyLIgBKTas4+pEU47IXKDBWFTxdPd7F80H8zybyAY7UoblVfBhBGs2EKM+bJUu2+iUYPDQ== + dependencies: + "@babel/helper-plugin-utils" "^7.8.3" + "@babel/helper-replace-supers" "^7.8.3" + + "@babel/plugin-transform-parameters@7.0.0-beta.47": + version "7.0.0-beta.47" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.0.0-beta.47.tgz#46a4236040a6552a5f165fb3ddd60368954b0ddd" + integrity sha512-UzQG8draO+30Y8eNEREuGBfmEHLL7WFxOjmTBbaTrbdOrm/znCUThqcuNz8cyn2nrZbln7M/loQ3stjf9Pt9fQ== + dependencies: + "@babel/helper-call-delegate" "7.0.0-beta.47" + "@babel/helper-get-function-arity" "7.0.0-beta.47" + "@babel/helper-plugin-utils" "7.0.0-beta.47" + + "@babel/plugin-transform-parameters@^7.0.0", "@babel/plugin-transform-parameters@^7.9.5": + version "7.9.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.9.5.tgz#173b265746f5e15b2afe527eeda65b73623a0795" + integrity sha512-0+1FhHnMfj6lIIhVvS4KGQJeuhe1GI//h5uptK4PvLt+BGBxsoUJbd3/IW002yk//6sZPlFgsG1hY6OHLcy6kA== + dependencies: + "@babel/helper-get-function-arity" "^7.8.3" + "@babel/helper-plugin-utils" "^7.8.3" + + "@babel/plugin-transform-property-literals@^7.0.0": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.8.3.tgz#33194300d8539c1ed28c62ad5087ba3807b98263" + integrity sha512-uGiiXAZMqEoQhRWMK17VospMZh5sXWg+dlh2soffpkAl96KAm+WZuJfa6lcELotSRmooLqg0MWdH6UUq85nmmg== + dependencies: + "@babel/helper-plugin-utils" "^7.8.3" + + "@babel/plugin-transform-react-display-name@7.0.0-beta.47": + version "7.0.0-beta.47" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.0.0-beta.47.tgz#7a45c1703b8b33f252148ecf1b50dd54809de952" + integrity sha512-Rw1KWihSkGHbqHiQuiFu/beMakDtobW3eLSABw1w3BvRIc/UhBXxwyIxa/q/R9hWFBholAjmx9cKey8FnZPykw== + dependencies: + "@babel/helper-plugin-utils" "7.0.0-beta.47" + + "@babel/plugin-transform-react-display-name@^7.0.0": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.8.3.tgz#70ded987c91609f78353dd76d2fb2a0bb991e8e5" + integrity sha512-3Jy/PCw8Fe6uBKtEgz3M82ljt+lTg+xJaM4og+eyu83qLT87ZUSckn0wy7r31jflURWLO83TW6Ylf7lyXj3m5A== + dependencies: + "@babel/helper-plugin-utils" "^7.8.3" + + "@babel/plugin-transform-react-jsx-source@7.0.0-beta.47": + version "7.0.0-beta.47" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.0.0-beta.47.tgz#da8c01704b896409eae168a15045216e72d278dc" + integrity sha512-oZ6D9z+qql+tz7PjGp1CaxepxqDQQTusyjeKsWr7NdEa0v2j3sWLkfK4Aa7kU9BT0+j+r/LN4u33UBkBNVoVvw== + dependencies: + "@babel/helper-plugin-utils" "7.0.0-beta.47" + "@babel/plugin-syntax-jsx" "7.0.0-beta.47" + + "@babel/plugin-transform-react-jsx-source@^7.0.0": + version "7.9.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.9.0.tgz#89ef93025240dd5d17d3122294a093e5e0183de0" + integrity sha512-K6m3LlSnTSfRkM6FcRk8saNEeaeyG5k7AVkBU2bZK3+1zdkSED3qNdsWrUgQBeTVD2Tp3VMmerxVO2yM5iITmw== + dependencies: + "@babel/helper-plugin-utils" "^7.8.3" + "@babel/plugin-syntax-jsx" "^7.8.3" + + "@babel/plugin-transform-react-jsx@7.0.0-beta.47": + version "7.0.0-beta.47" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.0.0-beta.47.tgz#98c99a69be748d966c0aea08b5ca942ba3fc9ed1" + integrity sha512-HGian2BbCsyAqs6LntVVRpjXG9TkzhHfTynjUoMxOFL29doKEy/0s96SMvmbBSR/wMRKMd1OPvCiEYYxqZtr3g== + dependencies: + "@babel/helper-builder-react-jsx" "7.0.0-beta.47" + "@babel/helper-plugin-utils" "7.0.0-beta.47" + "@babel/plugin-syntax-jsx" "7.0.0-beta.47" + + "@babel/plugin-transform-react-jsx@^7.0.0": + version "7.9.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.9.4.tgz#86f576c8540bd06d0e95e0b61ea76d55f6cbd03f" + integrity sha512-Mjqf3pZBNLt854CK0C/kRuXAnE6H/bo7xYojP+WGtX8glDGSibcwnsWwhwoSuRg0+EBnxPC1ouVnuetUIlPSAw== + dependencies: + "@babel/helper-builder-react-jsx" "^7.9.0" + "@babel/helper-builder-react-jsx-experimental" "^7.9.0" + "@babel/helper-plugin-utils" "^7.8.3" + "@babel/plugin-syntax-jsx" "^7.8.3" + + "@babel/plugin-transform-regenerator@7.0.0-beta.47": + version "7.0.0-beta.47" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.0.0-beta.47.tgz#86500e1c404055fb98fc82b73b09bd053cacb516" + integrity sha512-JEPIiJyqYRfjOYUTZguLkb2HTwudReqLyOljpOXnJ/1ymwsiof4D6ul611DGlMxJMZJGQ6TBi59iY9GoJ6j4Iw== + dependencies: + regenerator-transform "^0.12.3" + + "@babel/plugin-transform-regenerator@^7.0.0": + version "7.8.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.8.7.tgz#5e46a0dca2bee1ad8285eb0527e6abc9c37672f8" + integrity sha512-TIg+gAl4Z0a3WmD3mbYSk+J9ZUH6n/Yc57rtKRnlA/7rcCvpekHXe0CMZHP1gYp7/KLe9GHTuIba0vXmls6drA== + dependencies: + regenerator-transform "^0.14.2" + + "@babel/plugin-transform-runtime@^7.0.0": + version "7.9.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.9.0.tgz#45468c0ae74cc13204e1d3b1f4ce6ee83258af0b" + integrity sha512-pUu9VSf3kI1OqbWINQ7MaugnitRss1z533436waNXp+0N3ur3zfut37sXiQMxkuCF4VUjwZucen/quskCh7NHw== + dependencies: + "@babel/helper-module-imports" "^7.8.3" + "@babel/helper-plugin-utils" "^7.8.3" + resolve "^1.8.1" + semver "^5.5.1" + + "@babel/plugin-transform-shorthand-properties@7.0.0-beta.47": + version "7.0.0-beta.47" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.0.0-beta.47.tgz#00be44c4fad8fe2c00ed18ea15ea3c88dd519dbb" + integrity sha512-+o7/yb0Nrk4Gg/tnBgfBf+G1uGZbtkSluUnj8RyD37ajpDlWmysDjFEHSfktKcuD8YHeGz2M9AYNGcClk1fr/g== + dependencies: + "@babel/helper-plugin-utils" "7.0.0-beta.47" + + "@babel/plugin-transform-shorthand-properties@^7.0.0": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.8.3.tgz#28545216e023a832d4d3a1185ed492bcfeac08c8" + integrity sha512-I9DI6Odg0JJwxCHzbzW08ggMdCezoWcuQRz3ptdudgwaHxTjxw5HgdFJmZIkIMlRymL6YiZcped4TTCB0JcC8w== + dependencies: + "@babel/helper-plugin-utils" "^7.8.3" + + "@babel/plugin-transform-spread@7.0.0-beta.47": + version "7.0.0-beta.47" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.0.0-beta.47.tgz#3feadb02292ed1e9b75090d651b9df88a7ab5c50" + integrity sha512-LFAozFdfT4bE2AQw2BnjzLufTX4GBsTUHUGRhT8XNoDYuGnV+7k9Yj6JU3/7csJc9u6W91PArYgoO+D56CMw6Q== + dependencies: + "@babel/helper-plugin-utils" "7.0.0-beta.47" + + "@babel/plugin-transform-spread@^7.0.0": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.8.3.tgz#9c8ffe8170fdfb88b114ecb920b82fb6e95fe5e8" + integrity sha512-CkuTU9mbmAoFOI1tklFWYYbzX5qCIZVXPVy0jpXgGwkplCndQAa58s2jr66fTeQnA64bDox0HL4U56CFYoyC7g== + dependencies: + "@babel/helper-plugin-utils" "^7.8.3" + + "@babel/plugin-transform-sticky-regex@7.0.0-beta.47": + version "7.0.0-beta.47" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.0.0-beta.47.tgz#c0aa347d76b5dc87d3b37ac016ada3f950605131" + integrity sha512-+Rc6NihGoXcwAqAxbiumvzOYxRR0aUg1ZExfyHnI5QnQf0sf4xAfgT/YpGvEgLd5Ci0rka+IWSj54PhzZkhuTg== + dependencies: + "@babel/helper-plugin-utils" "7.0.0-beta.47" + "@babel/helper-regex" "7.0.0-beta.47" + + "@babel/plugin-transform-sticky-regex@^7.0.0": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.8.3.tgz#be7a1290f81dae767475452199e1f76d6175b100" + integrity sha512-9Spq0vGCD5Bb4Z/ZXXSK5wbbLFMG085qd2vhL1JYu1WcQ5bXqZBAYRzU1d+p79GcHs2szYv5pVQCX13QgldaWw== + dependencies: + "@babel/helper-plugin-utils" "^7.8.3" + "@babel/helper-regex" "^7.8.3" + + "@babel/plugin-transform-template-literals@7.0.0-beta.47": + version "7.0.0-beta.47" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.0.0-beta.47.tgz#5f7b5badf64c4c5da79026aeab03001e62a6ee5f" + integrity sha512-ORfrfN/gQoRuI+xf+kOa2i/yvXfedFRgH+KtgoIrpUQom7OhexxzD280x80LMCIkdaVGzYhvlC3kdJkFMWAfUg== + dependencies: + "@babel/helper-annotate-as-pure" "7.0.0-beta.47" + "@babel/helper-plugin-utils" "7.0.0-beta.47" + + "@babel/plugin-transform-template-literals@^7.0.0": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.8.3.tgz#7bfa4732b455ea6a43130adc0ba767ec0e402a80" + integrity sha512-820QBtykIQOLFT8NZOcTRJ1UNuztIELe4p9DCgvj4NK+PwluSJ49we7s9FB1HIGNIYT7wFUJ0ar2QpCDj0escQ== + dependencies: + "@babel/helper-annotate-as-pure" "^7.8.3" + "@babel/helper-plugin-utils" "^7.8.3" + + "@babel/plugin-transform-typescript@^7.0.0": + version "7.9.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.9.4.tgz#4bb4dde4f10bbf2d787fce9707fb09b483e33359" + integrity sha512-yeWeUkKx2auDbSxRe8MusAG+n4m9BFY/v+lPjmQDgOFX5qnySkUY5oXzkp6FwPdsYqnKay6lorXYdC0n3bZO7w== + dependencies: + "@babel/helper-create-class-features-plugin" "^7.8.3" + "@babel/helper-plugin-utils" "^7.8.3" + "@babel/plugin-syntax-typescript" "^7.8.3" + + "@babel/plugin-transform-unicode-regex@7.0.0-beta.47": + version "7.0.0-beta.47" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.0.0-beta.47.tgz#efed0b2f1dfbf28283502234a95b4be88f7fdcb6" + integrity sha512-44nWn421tMVZ/A4+1uppzoAO7nrlwWzefMr9JUi5G+tXl0DLEtWy+F7L6zCVw19C4OAOA6WlolVro5CEs6g6AQ== + dependencies: + "@babel/helper-plugin-utils" "7.0.0-beta.47" + "@babel/helper-regex" "7.0.0-beta.47" + regexpu-core "^4.1.3" + + "@babel/plugin-transform-unicode-regex@^7.0.0": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.8.3.tgz#0cef36e3ba73e5c57273effb182f46b91a1ecaad" + integrity sha512-+ufgJjYdmWfSQ+6NS9VGUR2ns8cjJjYbrbi11mZBTaWm+Fui/ncTLFF28Ei1okavY+xkojGr1eJxNsWYeA5aZw== + dependencies: + "@babel/helper-create-regexp-features-plugin" "^7.8.3" + "@babel/helper-plugin-utils" "^7.8.3" + + "@babel/register@^7.0.0": + version "7.9.0" + resolved "https://registry.yarnpkg.com/@babel/register/-/register-7.9.0.tgz#02464ede57548bddbb5e9f705d263b7c3f43d48b" + integrity sha512-Tv8Zyi2J2VRR8g7pC5gTeIN8Ihultbmk0ocyNz8H2nEZbmhp1N6q0A1UGsQbDvGP/sNinQKUHf3SqXwqjtFv4Q== + dependencies: + find-cache-dir "^2.0.0" + lodash "^4.17.13" + make-dir "^2.1.0" + pirates "^4.0.0" + source-map-support "^0.5.16" + + "@babel/runtime-corejs3@^7.8.3": + version "7.9.2" + resolved "https://registry.yarnpkg.com/@babel/runtime-corejs3/-/runtime-corejs3-7.9.2.tgz#26fe4aa77e9f1ecef9b776559bbb8e84d34284b7" + integrity sha512-HHxmgxbIzOfFlZ+tdeRKtaxWOMUoCG5Mu3wKeUmOxjYrwb3AAHgnmtCUbPPK11/raIWLIBK250t8E2BPO0p7jA== + dependencies: + core-js-pure "^3.0.0" + regenerator-runtime "^0.13.4" + + "@babel/runtime@^7.0.0", "@babel/runtime@^7.1.2", "@babel/runtime@^7.4.5", "@babel/runtime@^7.5.5", "@babel/runtime@^7.8.4", "@babel/runtime@^7.8.7": + version "7.9.2" + resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.9.2.tgz#d90df0583a3a252f09aaa619665367bae518db06" + integrity sha512-NE2DtOdufG7R5vnfQUTehdTfNycfUANEtCa9PssN9O/xmTzP4E08UI797ixaei6hBEVL9BI/PsdJS5x7mWoB9Q== + dependencies: + regenerator-runtime "^0.13.4" + + "@babel/template@7.0.0-beta.47": + version "7.0.0-beta.47" + resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.0.0-beta.47.tgz#0473970a7c0bee7a1a18c1ca999d3ba5e5bad83d" + integrity sha512-mAzrOCLwOb4jAobHi0kTwIkoamP1Do28c6zxvrDXjYSJFZHz6KGuzMaT0AV7ZCq7M3si7QypVVMVX2bE6IsuOg== + dependencies: + "@babel/code-frame" "7.0.0-beta.47" + "@babel/types" "7.0.0-beta.47" + babylon "7.0.0-beta.47" + lodash "^4.17.5" + + "@babel/template@^7.0.0", "@babel/template@^7.7.4", "@babel/template@^7.8.3", "@babel/template@^7.8.6": + version "7.8.6" + resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.8.6.tgz#86b22af15f828dfb086474f964dcc3e39c43ce2b" + integrity sha512-zbMsPMy/v0PWFZEhQJ66bqjhH+z0JgMoBWuikXybgG3Gkd/3t5oQ1Rw2WQhnSrsOmsKXnZOx15tkC4qON/+JPg== + dependencies: + "@babel/code-frame" "^7.8.3" + "@babel/parser" "^7.8.6" + "@babel/types" "^7.8.6" + + "@babel/traverse@7.0.0-beta.47": + version "7.0.0-beta.47" + resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.0.0-beta.47.tgz#0e57fdbb9ff3a909188b6ebf1e529c641e6c82a4" + integrity sha512-kYGGs//OnUnei+9TTldxlgf7llprj7VUeDKtG50+g+0k1g0yZyrkEgbyFheYFdnudR8IDEHOEXVsUuY82r5Aiw== + dependencies: + "@babel/code-frame" "7.0.0-beta.47" + "@babel/generator" "7.0.0-beta.47" + "@babel/helper-function-name" "7.0.0-beta.47" + "@babel/helper-split-export-declaration" "7.0.0-beta.47" + "@babel/types" "7.0.0-beta.47" + babylon "7.0.0-beta.47" + debug "^3.1.0" + globals "^11.1.0" + invariant "^2.2.0" + lodash "^4.17.5" + + "@babel/traverse@^7.0.0", "@babel/traverse@^7.1.0", "@babel/traverse@^7.7.4", "@babel/traverse@^7.8.3", "@babel/traverse@^7.8.6", "@babel/traverse@^7.9.0": + version "7.9.5" + resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.9.5.tgz#6e7c56b44e2ac7011a948c21e283ddd9d9db97a2" + integrity sha512-c4gH3jsvSuGUezlP6rzSJ6jf8fYjLj3hsMZRx/nX0h+fmHN0w+ekubRrHPqnMec0meycA2nwCsJ7dC8IPem2FQ== + dependencies: + "@babel/code-frame" "^7.8.3" + "@babel/generator" "^7.9.5" + "@babel/helper-function-name" "^7.9.5" + "@babel/helper-split-export-declaration" "^7.8.3" + "@babel/parser" "^7.9.0" + "@babel/types" "^7.9.5" + debug "^4.1.0" + globals "^11.1.0" + lodash "^4.17.13" + + "@babel/types@7.0.0-beta.47": + version "7.0.0-beta.47" + resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.0.0-beta.47.tgz#e6fcc1a691459002c2671d558a586706dddaeef8" + integrity sha512-MOP5pOosg7JETrVGg8OQyzmUmbyoSopT5j2HlblHsto89mPz3cmxzn1IA4UNUmnWKgeticSwfhS+Gdy25IIlBQ== + dependencies: + esutils "^2.0.2" + lodash "^4.17.5" + to-fast-properties "^2.0.0" + + "@babel/types@^7.0.0", "@babel/types@^7.3.0", "@babel/types@^7.8.3", "@babel/types@^7.8.6", "@babel/types@^7.9.0", "@babel/types@^7.9.5": + version "7.9.5" + resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.9.5.tgz#89231f82915a8a566a703b3b20133f73da6b9444" + integrity sha512-XjnvNqenk818r5zMaba+sLQjnbda31UfUURv3ei0qPQw4u+j2jMyJ5b11y8ZHYTRSI3NnInQkkkRT4fLqqPdHg== + dependencies: + "@babel/helper-validator-identifier" "^7.9.5" + lodash "^4.17.13" + to-fast-properties "^2.0.0" + + "@bcoe/v8-coverage@^0.2.3": + version "0.2.3" + resolved "https://registry.yarnpkg.com/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz#75a2e8b51cb758a7553d6804a5932d7aace75c39" + integrity sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw== + + "@cnakazawa/watch@^1.0.3": + version "1.0.4" + resolved "https://registry.yarnpkg.com/@cnakazawa/watch/-/watch-1.0.4.tgz#f864ae85004d0fcab6f50be9141c4da368d1656a" + integrity sha512-v9kIhKwjeZThiWrLmj0y17CWoyddASLj9O2yvbZkbvw/N3rWOYy9zkV66ursAoVr0mV15bL8g0c4QZUE6cdDoQ== + dependencies: + exec-sh "^0.3.2" + minimist "^1.2.0" + + "@egjs/hammerjs@^2.0.17": + version "2.0.17" + resolved "https://registry.yarnpkg.com/@egjs/hammerjs/-/hammerjs-2.0.17.tgz#5dc02af75a6a06e4c2db0202cae38c9263895124" + integrity sha512-XQsZgjm2EcVUiZQf11UBJQfmZeEmOW8DpI1gsFeln6w0ae0ii4dMQEQ0kjl6DspdWX1aGY1/loyXnP0JS06e/A== + dependencies: + "@types/hammerjs" "^2.0.36" + + "@hapi/address@2.x.x": + version "2.1.4" + resolved "https://registry.yarnpkg.com/@hapi/address/-/address-2.1.4.tgz#5d67ed43f3fd41a69d4b9ff7b56e7c0d1d0a81e5" + integrity sha512-QD1PhQk+s31P1ixsX0H0Suoupp3VMXzIVMSwobR3F3MSUO2YCV0B7xqLcUw/Bh8yuvd3LhpyqLQWTNcRmp6IdQ== + + "@hapi/bourne@1.x.x": + version "1.3.2" + resolved "https://registry.yarnpkg.com/@hapi/bourne/-/bourne-1.3.2.tgz#0a7095adea067243ce3283e1b56b8a8f453b242a" + integrity sha512-1dVNHT76Uu5N3eJNTYcvxee+jzX4Z9lfciqRRHCU27ihbUcYi+iSc2iml5Ke1LXe1SyJCLA0+14Jh4tXJgOppA== + + "@hapi/hoek@8.x.x", "@hapi/hoek@^8.3.0": + version "8.5.1" + resolved "https://registry.yarnpkg.com/@hapi/hoek/-/hoek-8.5.1.tgz#fde96064ca446dec8c55a8c2f130957b070c6e06" + integrity sha512-yN7kbciD87WzLGc5539Tn0sApjyiGHAJgKvG9W8C7O+6c7qmoQMfVs0W4bX17eqz6C78QJqqFrtgdK5EWf6Qow== + + "@hapi/joi@^15.0.3": + version "15.1.1" + resolved "https://registry.yarnpkg.com/@hapi/joi/-/joi-15.1.1.tgz#c675b8a71296f02833f8d6d243b34c57b8ce19d7" + integrity sha512-entf8ZMOK8sc+8YfeOlM8pCfg3b5+WZIKBfUaaJT8UsjAAPjartzxIYm3TIbjvA4u+u++KbcXD38k682nVHDAQ== + dependencies: + "@hapi/address" "2.x.x" + "@hapi/bourne" "1.x.x" + "@hapi/hoek" "8.x.x" + "@hapi/topo" "3.x.x" + + "@hapi/topo@3.x.x": + version "3.1.6" + resolved "https://registry.yarnpkg.com/@hapi/topo/-/topo-3.1.6.tgz#68d935fa3eae7fdd5ab0d7f953f3205d8b2bfc29" + integrity sha512-tAag0jEcjwH+P2quUfipd7liWCNX2F8NvYjQp2wtInsZxnMlypdw0FtAOLxtvvkO+GSRRbmNi8m/5y42PQJYCQ== + dependencies: + "@hapi/hoek" "^8.3.0" + + "@istanbuljs/load-nyc-config@^1.0.0": + version "1.0.0" + resolved "https://registry.yarnpkg.com/@istanbuljs/load-nyc-config/-/load-nyc-config-1.0.0.tgz#10602de5570baea82f8afbfa2630b24e7a8cfe5b" + integrity sha512-ZR0rq/f/E4f4XcgnDvtMWXCUJpi8eO0rssVhmztsZqLIEFA9UUP9zmpE0VxlM+kv/E1ul2I876Fwil2ayptDVg== + dependencies: + camelcase "^5.3.1" + find-up "^4.1.0" + js-yaml "^3.13.1" + resolve-from "^5.0.0" + + "@istanbuljs/schema@^0.1.2": + version "0.1.2" + resolved "https://registry.yarnpkg.com/@istanbuljs/schema/-/schema-0.1.2.tgz#26520bf09abe4a5644cd5414e37125a8954241dd" + integrity sha512-tsAQNx32a8CoFhjhijUIhI4kccIAgmGhy8LZMZgGfmXcpMbPRUqn5LWmgRttILi6yeGmBJd2xsPkFMs0PzgPCw== + + "@jest/console@^24.9.0": + version "24.9.0" + resolved "https://registry.yarnpkg.com/@jest/console/-/console-24.9.0.tgz#79b1bc06fb74a8cfb01cbdedf945584b1b9707f0" + integrity sha512-Zuj6b8TnKXi3q4ymac8EQfc3ea/uhLeCGThFqXeC8H9/raaH8ARPUTdId+XyGd03Z4In0/VjD2OYFcBF09fNLQ== + dependencies: + "@jest/source-map" "^24.9.0" + chalk "^2.0.1" + slash "^2.0.0" + + "@jest/console@^25.4.0": + version "25.4.0" + resolved "https://registry.yarnpkg.com/@jest/console/-/console-25.4.0.tgz#e2760b532701137801ba824dcff6bc822c961bac" + integrity sha512-CfE0erx4hdJ6t7RzAcE1wLG6ZzsHSmybvIBQDoCkDM1QaSeWL9wJMzID/2BbHHa7ll9SsbbK43HjbERbBaFX2A== + dependencies: + "@jest/types" "^25.4.0" + chalk "^3.0.0" + jest-message-util "^25.4.0" + jest-util "^25.4.0" + slash "^3.0.0" + + "@jest/core@^25.4.0": + version "25.4.0" + resolved "https://registry.yarnpkg.com/@jest/core/-/core-25.4.0.tgz#cc1fe078df69b8f0fbb023bb0bcee23ef3b89411" + integrity sha512-h1x9WSVV0+TKVtATGjyQIMJENs8aF6eUjnCoi4jyRemYZmekLr8EJOGQqTWEX8W6SbZ6Skesy9pGXrKeAolUJw== + dependencies: + "@jest/console" "^25.4.0" + "@jest/reporters" "^25.4.0" + "@jest/test-result" "^25.4.0" + "@jest/transform" "^25.4.0" + "@jest/types" "^25.4.0" + ansi-escapes "^4.2.1" + chalk "^3.0.0" + exit "^0.1.2" + graceful-fs "^4.2.3" + jest-changed-files "^25.4.0" + jest-config "^25.4.0" + jest-haste-map "^25.4.0" + jest-message-util "^25.4.0" + jest-regex-util "^25.2.6" + jest-resolve "^25.4.0" + jest-resolve-dependencies "^25.4.0" + jest-runner "^25.4.0" + jest-runtime "^25.4.0" + jest-snapshot "^25.4.0" + jest-util "^25.4.0" + jest-validate "^25.4.0" + jest-watcher "^25.4.0" + micromatch "^4.0.2" + p-each-series "^2.1.0" + realpath-native "^2.0.0" + rimraf "^3.0.0" + slash "^3.0.0" + strip-ansi "^6.0.0" + + "@jest/environment@^25.4.0": + version "25.4.0" + resolved "https://registry.yarnpkg.com/@jest/environment/-/environment-25.4.0.tgz#45071f525f0d8c5a51ed2b04fd42b55a8f0c7cb3" + integrity sha512-KDctiak4mu7b4J6BIoN/+LUL3pscBzoUCP+EtSPd2tK9fqyDY5OF+CmkBywkFWezS9tyH5ACOQNtpjtueEDH6Q== + dependencies: + "@jest/fake-timers" "^25.4.0" + "@jest/types" "^25.4.0" + jest-mock "^25.4.0" + + "@jest/fake-timers@^24.9.0": + version "24.9.0" + resolved "https://registry.yarnpkg.com/@jest/fake-timers/-/fake-timers-24.9.0.tgz#ba3e6bf0eecd09a636049896434d306636540c93" + integrity sha512-eWQcNa2YSwzXWIMC5KufBh3oWRIijrQFROsIqt6v/NS9Io/gknw1jsAC9c+ih/RQX4A3O7SeWAhQeN0goKhT9A== + dependencies: + "@jest/types" "^24.9.0" + jest-message-util "^24.9.0" + jest-mock "^24.9.0" + + "@jest/fake-timers@^25.4.0": + version "25.4.0" + resolved "https://registry.yarnpkg.com/@jest/fake-timers/-/fake-timers-25.4.0.tgz#3a9a4289ba836abd084953dca406389a57e00fbd" + integrity sha512-lI9z+VOmVX4dPPFzyj0vm+UtaB8dCJJ852lcDnY0uCPRvZAaVGnMwBBc1wxtf+h7Vz6KszoOvKAt4QijDnHDkg== + dependencies: + "@jest/types" "^25.4.0" + jest-message-util "^25.4.0" + jest-mock "^25.4.0" + jest-util "^25.4.0" + lolex "^5.0.0" + + "@jest/reporters@^25.4.0": + version "25.4.0" + resolved "https://registry.yarnpkg.com/@jest/reporters/-/reporters-25.4.0.tgz#836093433b32ce4e866298af2d6fcf6ed351b0b0" + integrity sha512-bhx/buYbZgLZm4JWLcRJ/q9Gvmd3oUh7k2V7gA4ZYBx6J28pIuykIouclRdiAC6eGVX1uRZT+GK4CQJLd/PwPg== + dependencies: + "@bcoe/v8-coverage" "^0.2.3" + "@jest/console" "^25.4.0" + "@jest/test-result" "^25.4.0" + "@jest/transform" "^25.4.0" + "@jest/types" "^25.4.0" + chalk "^3.0.0" + collect-v8-coverage "^1.0.0" + exit "^0.1.2" + glob "^7.1.2" + istanbul-lib-coverage "^3.0.0" + istanbul-lib-instrument "^4.0.0" + istanbul-lib-report "^3.0.0" + istanbul-lib-source-maps "^4.0.0" + istanbul-reports "^3.0.2" + jest-haste-map "^25.4.0" + jest-resolve "^25.4.0" + jest-util "^25.4.0" + jest-worker "^25.4.0" + slash "^3.0.0" + source-map "^0.6.0" + string-length "^3.1.0" + terminal-link "^2.0.0" + v8-to-istanbul "^4.1.3" + optionalDependencies: + node-notifier "^6.0.0" + + "@jest/source-map@^24.9.0": + version "24.9.0" + resolved "https://registry.yarnpkg.com/@jest/source-map/-/source-map-24.9.0.tgz#0e263a94430be4b41da683ccc1e6bffe2a191714" + integrity sha512-/Xw7xGlsZb4MJzNDgB7PW5crou5JqWiBQaz6xyPd3ArOg2nfn/PunV8+olXbbEZzNl591o5rWKE9BRDaFAuIBg== + dependencies: + callsites "^3.0.0" + graceful-fs "^4.1.15" + source-map "^0.6.0" + + "@jest/source-map@^25.2.6": + version "25.2.6" + resolved "https://registry.yarnpkg.com/@jest/source-map/-/source-map-25.2.6.tgz#0ef2209514c6d445ebccea1438c55647f22abb4c" + integrity sha512-VuIRZF8M2zxYFGTEhkNSvQkUKafQro4y+mwUxy5ewRqs5N/ynSFUODYp3fy1zCnbCMy1pz3k+u57uCqx8QRSQQ== + dependencies: + callsites "^3.0.0" + graceful-fs "^4.2.3" + source-map "^0.6.0" + + "@jest/test-result@^24.9.0": + version "24.9.0" + resolved "https://registry.yarnpkg.com/@jest/test-result/-/test-result-24.9.0.tgz#11796e8aa9dbf88ea025757b3152595ad06ba0ca" + integrity sha512-XEFrHbBonBJ8dGp2JmF8kP/nQI/ImPpygKHwQ/SY+es59Z3L5PI4Qb9TQQMAEeYsThG1xF0k6tmG0tIKATNiiA== + dependencies: + "@jest/console" "^24.9.0" + "@jest/types" "^24.9.0" + "@types/istanbul-lib-coverage" "^2.0.0" + + "@jest/test-result@^25.4.0": + version "25.4.0" + resolved "https://registry.yarnpkg.com/@jest/test-result/-/test-result-25.4.0.tgz#6f2ec2c8da9981ef013ad8651c1c6f0cb20c6324" + integrity sha512-8BAKPaMCHlL941eyfqhWbmp3MebtzywlxzV+qtngQ3FH+RBqnoSAhNEPj4MG7d2NVUrMOVfrwuzGpVIK+QnMAA== + dependencies: + "@jest/console" "^25.4.0" + "@jest/types" "^25.4.0" + "@types/istanbul-lib-coverage" "^2.0.0" + collect-v8-coverage "^1.0.0" + + "@jest/test-sequencer@^25.4.0": + version "25.4.0" + resolved "https://registry.yarnpkg.com/@jest/test-sequencer/-/test-sequencer-25.4.0.tgz#2b96f9d37f18dc3336b28e3c8070f97f9f55f43b" + integrity sha512-240cI+nsM3attx2bMp9uGjjHrwrpvxxrZi8Tyqp/cfOzl98oZXVakXBgxODGyBYAy/UGXPKXLvNc2GaqItrsJg== + dependencies: + "@jest/test-result" "^25.4.0" + jest-haste-map "^25.4.0" + jest-runner "^25.4.0" + jest-runtime "^25.4.0" + + "@jest/transform@^25.4.0": + version "25.4.0" + resolved "https://registry.yarnpkg.com/@jest/transform/-/transform-25.4.0.tgz#eef36f0367d639e2fd93dccd758550377fbb9962" + integrity sha512-t1w2S6V1sk++1HHsxboWxPEuSpN8pxEvNrZN+Ud/knkROWtf8LeUmz73A4ezE8476a5AM00IZr9a8FO9x1+j3g== + dependencies: + "@babel/core" "^7.1.0" + "@jest/types" "^25.4.0" + babel-plugin-istanbul "^6.0.0" + chalk "^3.0.0" + convert-source-map "^1.4.0" + fast-json-stable-stringify "^2.0.0" + graceful-fs "^4.2.3" + jest-haste-map "^25.4.0" + jest-regex-util "^25.2.6" + jest-util "^25.4.0" + micromatch "^4.0.2" + pirates "^4.0.1" + realpath-native "^2.0.0" + slash "^3.0.0" + source-map "^0.6.1" + write-file-atomic "^3.0.0" + + "@jest/types@^24.9.0": + version "24.9.0" + resolved "https://registry.yarnpkg.com/@jest/types/-/types-24.9.0.tgz#63cb26cb7500d069e5a389441a7c6ab5e909fc59" + integrity sha512-XKK7ze1apu5JWQ5eZjHITP66AX+QsLlbaJRBGYr8pNzwcAE2JVkwnf0yqjHTsDRcjR0mujy/NmZMXw5kl+kGBw== + dependencies: + "@types/istanbul-lib-coverage" "^2.0.0" + "@types/istanbul-reports" "^1.1.1" + "@types/yargs" "^13.0.0" + + "@jest/types@^25.3.0": + version "25.3.0" + resolved "https://registry.yarnpkg.com/@jest/types/-/types-25.3.0.tgz#88f94b277a1d028fd7117bc1f74451e0fc2131e7" + integrity sha512-UkaDNewdqXAmCDbN2GlUM6amDKS78eCqiw/UmF5nE0mmLTd6moJkiZJML/X52Ke3LH7Swhw883IRXq8o9nWjVw== + dependencies: + "@types/istanbul-lib-coverage" "^2.0.0" + "@types/istanbul-reports" "^1.1.1" + "@types/yargs" "^15.0.0" + chalk "^3.0.0" + + "@jest/types@^25.4.0": + version "25.4.0" + resolved "https://registry.yarnpkg.com/@jest/types/-/types-25.4.0.tgz#5afeb8f7e1cba153a28e5ac3c9fe3eede7206d59" + integrity sha512-XBeaWNzw2PPnGW5aXvZt3+VO60M+34RY3XDsCK5tW7kyj3RK0XClRutCfjqcBuaR2aBQTbluEDME9b5MB9UAPw== + dependencies: + "@types/istanbul-lib-coverage" "^2.0.0" + "@types/istanbul-reports" "^1.1.1" + "@types/yargs" "^15.0.0" + chalk "^3.0.0" + + "@react-native-community/async-storage@^1.9.0": + version "1.9.0" + resolved "https://registry.yarnpkg.com/@react-native-community/async-storage/-/async-storage-1.9.0.tgz#af26a8879bd2987970fbbe81a9623851d29a56f1" + integrity sha512-TlGMr02JcmY4huH1P7Mt7p6wJecosPpW+09+CwCFLn875IhpRqU2XiVA+BQppZOYfQdHUfUzIKyCBeXOlCEbEg== + dependencies: + deep-assign "^3.0.0" + + "@react-native-community/cameraroll@^1.6.0": + version "1.6.0" + resolved "https://registry.yarnpkg.com/@react-native-community/cameraroll/-/cameraroll-1.6.0.tgz#2a4f9318fb53b5b2576269085c60ec7aced764c8" + integrity sha512-0P6IDqFlpWmuqLBFvm4WsQ6QR6E7WDadtFQiug/zU4Ieu6wcz70pgbB6yG3uQwGqwQf6HgFq95Z7+SHV3k5hpw== + + "@react-native-community/cli-debugger-ui@^3.0.0": + version "3.0.0" + resolved "https://registry.yarnpkg.com/@react-native-community/cli-debugger-ui/-/cli-debugger-ui-3.0.0.tgz#d01d08d1e5ddc1633d82c7d84d48fff07bd39416" + integrity sha512-m3X+iWLsK/H7/b7PpbNO33eQayR/+M26la4ZbYe1KRke5Umg4PIWsvg21O8Tw4uJcY8LA5hsP+rBi/syBkBf0g== + dependencies: + serve-static "^1.13.1" + + "@react-native-community/cli-platform-android@^3.0.0": + version "3.1.4" + resolved "https://registry.yarnpkg.com/@react-native-community/cli-platform-android/-/cli-platform-android-3.1.4.tgz#61f964dc311623e60b0fb29c5f3732cc8a6f076f" + integrity sha512-ClSdY20F0gzWVLTqCv7vHjnUqOcuq10jd9GgHX6lGSc2GI+Ql3/aQg3tmG4uY3KXNNwAv3U8QCoYgg1WGfwiHA== + dependencies: + "@react-native-community/cli-tools" "^3.0.0" + chalk "^2.4.2" + execa "^1.0.0" + jetifier "^1.6.2" + logkitty "^0.6.0" + slash "^3.0.0" + xmldoc "^1.1.2" + + "@react-native-community/cli-platform-ios@^3.0.0": + version "3.2.0" + resolved "https://registry.yarnpkg.com/@react-native-community/cli-platform-ios/-/cli-platform-ios-3.2.0.tgz#c469444f5993c9e6737a4b16d78cf033e3702f00" + integrity sha512-pzEnx68H6+mHBq5jsMrr3UmAmkrLSMlC9BZ4yoUdfUXCQq6/R70zNYvH4hjUw8h2Al7Kgq53UzHUsM0ph8TSWQ== + dependencies: + "@react-native-community/cli-tools" "^3.0.0" + chalk "^2.4.2" + js-yaml "^3.13.1" + xcode "^2.0.0" + + "@react-native-community/cli-tools@^3.0.0": + version "3.0.0" + resolved "https://registry.yarnpkg.com/@react-native-community/cli-tools/-/cli-tools-3.0.0.tgz#fe48b80822ed7e49b8af051f9fe41e22a2a710b1" + integrity sha512-8IhQKZdf3E4CR8T7HhkPGgorot/cLkRDgneJFDSWk/wCYZAuUh4NEAdumQV7N0jLSMWX7xxiWUPi94lOBxVY9g== + dependencies: + chalk "^2.4.2" + lodash "^4.17.5" + mime "^2.4.1" + node-fetch "^2.5.0" + + "@react-native-community/cli-types@^3.0.0": + version "3.0.0" + resolved "https://registry.yarnpkg.com/@react-native-community/cli-types/-/cli-types-3.0.0.tgz#488d46605cb05e88537e030f38da236eeda74652" + integrity sha512-ng6Tm537E/M42GjE4TRUxQyL8sRfClcL7bQWblOCoxPZzJ2J3bdALsjeG3vDnVCIfI/R0AeFalN9KjMt0+Z/Zg== + + "@react-native-community/cli@^3.0.0": + version "3.2.1" + resolved "https://registry.yarnpkg.com/@react-native-community/cli/-/cli-3.2.1.tgz#2a466801eb6080a1f73358c5d740c53c24ed8c6f" + integrity sha512-bZ/bfZ+9r1gQSxp6t7+00DcpC6vmbVYSvzUCFM/yo5k8bhsDdcy8aocscIaXXVGG+v9Edri/Q7hH9ks7L18/Rg== + dependencies: + "@hapi/joi" "^15.0.3" + "@react-native-community/cli-debugger-ui" "^3.0.0" + "@react-native-community/cli-tools" "^3.0.0" + "@react-native-community/cli-types" "^3.0.0" + chalk "^2.4.2" + command-exists "^1.2.8" + commander "^2.19.0" + compression "^1.7.1" + connect "^3.6.5" + cosmiconfig "^5.1.0" + deepmerge "^3.2.0" + didyoumean "^1.2.1" + envinfo "^7.1.0" + errorhandler "^1.5.0" + execa "^1.0.0" + find-up "^4.1.0" + fs-extra "^7.0.1" + glob "^7.1.1" + graceful-fs "^4.1.3" + inquirer "^3.0.6" + lodash "^4.17.5" + metro "^0.56.0" + metro-config "^0.56.0" + metro-core "^0.56.0" + metro-react-native-babel-transformer "^0.56.0" + minimist "^1.2.0" + mkdirp "^0.5.1" + morgan "^1.9.0" + node-notifier "^5.2.1" + open "^6.2.0" + ora "^3.4.0" + plist "^3.0.0" + pretty-format "^25.1.0" + semver "^6.3.0" + serve-static "^1.13.1" + shell-quote "1.6.1" + strip-ansi "^5.2.0" + sudo-prompt "^9.0.0" + wcwidth "^1.0.1" + ws "^1.1.0" + + "@react-native-community/masked-view@0.1.5": + version "0.1.5" + resolved "https://registry.yarnpkg.com/@react-native-community/masked-view/-/masked-view-0.1.5.tgz#25421be6cd943a4b1660b62cfbcd45be8891462c" + integrity sha512-Lj1DzfCmW0f4HnmHtEuX8Yy2f7cnUA8r5KGGUuDDGtQt1so6QJkKeUmsnLo2zYDtsF8due6hvIL06Vdo5xxuLQ== + + "@react-navigation/core@^3.0.0-alpha.13", "@react-navigation/core@^3.7.5": + version "3.7.5" + resolved "https://registry.yarnpkg.com/@react-navigation/core/-/core-3.7.5.tgz#2b8d464574edc7bcab8be226375d8227e9814ad2" + integrity sha512-B8vKZhHvX+C+lD0UfU5ljCOWIDgDKrlzMuuqIftCB5lnMFvRQZJ5cGpK6u6+BEoX1myfO5j4KUEsRv4H+2f5lg== + dependencies: + hoist-non-react-statics "^3.3.2" + path-to-regexp "^1.8.0" + query-string "^6.11.1" + react-is "^16.13.0" + + "@react-navigation/native@^3.7.11": + version "3.7.11" + resolved "https://registry.yarnpkg.com/@react-navigation/native/-/native-3.7.11.tgz#00aa5d8187b346b16a5d2e9d1e32413c78bc4ad4" + integrity sha512-FlnGsLsAVPB9CZ+A0H6Xdv1qTi1Gg39tdXA85Oz0eijb/ilWwvk3x+IKTt/Rex3CU3oEl0ZKwtYC5aSy4CIO7Q== + dependencies: + hoist-non-react-statics "^3.3.2" + react-native-safe-area-view "^0.14.8" + + "@react-navigation/web@^1.0.0-alpha.9": + version "1.0.0-alpha.9" + resolved "https://registry.yarnpkg.com/@react-navigation/web/-/web-1.0.0-alpha.9.tgz#bb960fe7040a0cd1359b84b9921212a9468bace3" + integrity sha512-1UugAcTbJ/yJNLVvEIJ+hAp/KcwBiRU76vPvNXD1NLrU0ZzK1+GrxvzR7p4effMTJgPRkRzvz8tRNklv8YLLHQ== + dependencies: + history "^4.7.2" + query-string "^6.2.0" + + "@samverschueren/stream-to-observable@^0.3.0": + version "0.3.0" + resolved "https://registry.yarnpkg.com/@samverschueren/stream-to-observable/-/stream-to-observable-0.3.0.tgz#ecdf48d532c58ea477acfcab80348424f8d0662f" + integrity sha512-MI4Xx6LHs4Webyvi6EbspgyAb4D2Q2VtnCQ1blOJcoLS6mVa8lNN2rkIy1CVxfTUpoyIbCTkXES1rLXztFD1lg== + dependencies: + any-observable "^0.3.0" + + "@sindresorhus/is@^0.14.0": + version "0.14.0" + resolved "https://registry.yarnpkg.com/@sindresorhus/is/-/is-0.14.0.tgz#9fb3a3cf3132328151f353de4632e01e52102bea" + integrity sha512-9NET910DNaIPngYnLLPeg+Ogzqsi9uM4mSboU5y6p8S5DzMTVEsJZrawi+BoDNUVBa2DhJqQYUFvMDfgU062LQ== + + "@sinonjs/commons@^1.7.0": + version "1.7.2" + resolved "https://registry.yarnpkg.com/@sinonjs/commons/-/commons-1.7.2.tgz#505f55c74e0272b43f6c52d81946bed7058fc0e2" + integrity sha512-+DUO6pnp3udV/v2VfUWgaY5BIE1IfT7lLfeDzPVeMT1XKkaAp9LgSI9x5RtrFQoZ9Oi0PgXQQHPaoKu7dCjVxw== + dependencies: + type-detect "4.0.8" + + "@szmarczak/http-timer@^1.1.2": + version "1.1.2" + resolved "https://registry.yarnpkg.com/@szmarczak/http-timer/-/http-timer-1.1.2.tgz#b1665e2c461a2cd92f4c1bbf50d5454de0d4b421" + integrity sha512-XIB2XbzHTN6ieIjfIMV9hlVcfPU26s2vafYWQcZHWXHOxiaRZYEDKEwdl129Zyg50+foYV2jCgtrqSA6qNuNSA== + dependencies: + defer-to-connect "^1.0.1" + + "@types/babel__core@^7.1.7": + version "7.1.7" + resolved "https://registry.yarnpkg.com/@types/babel__core/-/babel__core-7.1.7.tgz#1dacad8840364a57c98d0dd4855c6dd3752c6b89" + integrity sha512-RL62NqSFPCDK2FM1pSDH0scHpJvsXtZNiYlMB73DgPBaG1E38ZYVL+ei5EkWRbr+KC4YNiAUNBnRj+bgwpgjMw== + dependencies: + "@babel/parser" "^7.1.0" + "@babel/types" "^7.0.0" + "@types/babel__generator" "*" + "@types/babel__template" "*" + "@types/babel__traverse" "*" + + "@types/babel__generator@*": + version "7.6.1" + resolved "https://registry.yarnpkg.com/@types/babel__generator/-/babel__generator-7.6.1.tgz#4901767b397e8711aeb99df8d396d7ba7b7f0e04" + integrity sha512-bBKm+2VPJcMRVwNhxKu8W+5/zT7pwNEqeokFOmbvVSqGzFneNxYcEBro9Ac7/N9tlsaPYnZLK8J1LWKkMsLAew== + dependencies: + "@babel/types" "^7.0.0" + + "@types/babel__template@*": + version "7.0.2" + resolved "https://registry.yarnpkg.com/@types/babel__template/-/babel__template-7.0.2.tgz#4ff63d6b52eddac1de7b975a5223ed32ecea9307" + integrity sha512-/K6zCpeW7Imzgab2bLkLEbz0+1JlFSrUMdw7KoIIu+IUdu51GWaBZpd3y1VXGVXzynvGa4DaIaxNZHiON3GXUg== + dependencies: + "@babel/parser" "^7.1.0" + "@babel/types" "^7.0.0" + + "@types/babel__traverse@*", "@types/babel__traverse@^7.0.6": + version "7.0.10" + resolved "https://registry.yarnpkg.com/@types/babel__traverse/-/babel__traverse-7.0.10.tgz#d9a99f017317d9b3d1abc2ced45d3bca68df0daf" + integrity sha512-74fNdUGrWsgIB/V9kTO5FGHPWYY6Eqn+3Z7L6Hc4e/BxjYV7puvBqp5HwsVYYfLm6iURYBNCx4Ut37OF9yitCw== + dependencies: + "@babel/types" "^7.3.0" + + "@types/color-name@^1.1.1": + version "1.1.1" + resolved "https://registry.yarnpkg.com/@types/color-name/-/color-name-1.1.1.tgz#1c1261bbeaa10a8055bbc5d8ab84b7b2afc846a0" + integrity sha512-rr+OQyAjxze7GgWrSaJwydHStIhHq2lvY3BOC2Mj7KnzI7XK0Uw1TOOdI9lDoajEbSWLiYgoo4f1R51erQfhPQ== + + "@types/eslint-visitor-keys@^1.0.0": + version "1.0.0" + resolved "https://registry.yarnpkg.com/@types/eslint-visitor-keys/-/eslint-visitor-keys-1.0.0.tgz#1ee30d79544ca84d68d4b3cdb0af4f205663dd2d" + integrity sha512-OCutwjDZ4aFS6PB1UZ988C4YgwlBHJd6wCeQqaLdmadZ/7e+w79+hbMUFC1QXDNCmdyoRfAFdm0RypzwR+Qpag== + + "@types/hammerjs@^2.0.36": + version "2.0.36" + resolved "https://registry.yarnpkg.com/@types/hammerjs/-/hammerjs-2.0.36.tgz#17ce0a235e9ffbcdcdf5095646b374c2bf615a4c" + integrity sha512-7TUK/k2/QGpEAv/BCwSHlYu3NXZhQ9ZwBYpzr9tjlPIL2C5BeGhH3DmVavRx3ZNyELX5TLC91JTz/cen6AAtIQ== + + "@types/istanbul-lib-coverage@*", "@types/istanbul-lib-coverage@^2.0.0", "@types/istanbul-lib-coverage@^2.0.1": + version "2.0.1" + resolved "https://registry.yarnpkg.com/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.1.tgz#42995b446db9a48a11a07ec083499a860e9138ff" + integrity sha512-hRJD2ahnnpLgsj6KWMYSrmXkM3rm2Dl1qkx6IOFD5FnuNPXJIG5L0dhgKXCYTRMGzU4n0wImQ/xfmRc4POUFlg== + + "@types/istanbul-lib-report@*": + version "3.0.0" + resolved "https://registry.yarnpkg.com/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz#c14c24f18ea8190c118ee7562b7ff99a36552686" + integrity sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg== + dependencies: + "@types/istanbul-lib-coverage" "*" + + "@types/istanbul-reports@^1.1.1": + version "1.1.1" + resolved "https://registry.yarnpkg.com/@types/istanbul-reports/-/istanbul-reports-1.1.1.tgz#7a8cbf6a406f36c8add871625b278eaf0b0d255a" + integrity sha512-UpYjBi8xefVChsCoBpKShdxTllC9pwISirfoZsUa2AAdQg/Jd2KQGtSbw+ya7GPo7x/wAPlH6JBhKhAsXUEZNA== + dependencies: + "@types/istanbul-lib-coverage" "*" + "@types/istanbul-lib-report" "*" + + "@types/jest@^24.0.25": + version "24.9.1" + resolved "https://registry.yarnpkg.com/@types/jest/-/jest-24.9.1.tgz#02baf9573c78f1b9974a5f36778b366aa77bd534" + integrity sha512-Fb38HkXSVA4L8fGKEZ6le5bB8r6MRWlOCZbVuWZcmOMSCd2wCYOwN1ibj8daIoV9naq7aaOZjrLCoCMptKU/4Q== + dependencies: + jest-diff "^24.3.0" + + "@types/json-schema@^7.0.3": + version "7.0.4" + resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.4.tgz#38fd73ddfd9b55abb1e1b2ed578cb55bd7b7d339" + integrity sha512-8+KAKzEvSUdeo+kmqnKrqgeE+LcA0tjYWFY7RPProVYwnqDjukzO+3b6dLD56rYX5TdWejnEOLJYOIeh4CXKuA== + + "@types/json5@^0.0.29": + version "0.0.29" + resolved "https://registry.yarnpkg.com/@types/json5/-/json5-0.0.29.tgz#ee28707ae94e11d2b827bcbe5270bcea7f3e71ee" + integrity sha1-7ihweulOEdK4J7y+UnC86n8+ce4= + + "@types/node@^13.1.4": + version "13.11.1" + resolved "https://registry.yarnpkg.com/@types/node/-/node-13.11.1.tgz#49a2a83df9d26daacead30d0ccc8762b128d53c7" + integrity sha512-eWQGP3qtxwL8FGneRrC5DwrJLGN4/dH1clNTuLfN81HCrxVtxRjygDTUoZJ5ASlDEeo0ppYFQjQIlXhtXpOn6g== + + "@types/normalize-package-data@^2.4.0": + version "2.4.0" + resolved "https://registry.yarnpkg.com/@types/normalize-package-data/-/normalize-package-data-2.4.0.tgz#e486d0d97396d79beedd0a6e33f4534ff6b4973e" + integrity sha512-f5j5b/Gf71L+dbqxIpQ4Z2WlmI/mPJ0fOkGGmFgtb6sAu97EPczzbS3/tJKxmcYDj55OX6ssqwDAWOHIYDRDGA== + + "@types/parse-json@^4.0.0": + version "4.0.0" + resolved "https://registry.yarnpkg.com/@types/parse-json/-/parse-json-4.0.0.tgz#2f8bb441434d163b35fb8ffdccd7138927ffb8c0" + integrity sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA== + + "@types/prettier@^1.19.0": + version "1.19.1" + resolved "https://registry.yarnpkg.com/@types/prettier/-/prettier-1.19.1.tgz#33509849f8e679e4add158959fdb086440e9553f" + integrity sha512-5qOlnZscTn4xxM5MeGXAMOsIOIKIbh9e85zJWfBRVPlRMEVawzoPhINYbRGkBZCI8LxvBe7tJCdWiarA99OZfQ== + + "@types/prop-types@*": + version "15.7.3" + resolved "https://registry.yarnpkg.com/@types/prop-types/-/prop-types-15.7.3.tgz#2ab0d5da2e5815f94b0b9d4b95d1e5f243ab2ca7" + integrity sha512-KfRL3PuHmqQLOG+2tGpRO26Ctg+Cq1E01D2DMriKEATHgWLfeNDmq9e29Q9WIky0dQ3NPkd1mzYH8Lm936Z9qw== + + "@types/react-native-dotenv@^0.2.0": + version "0.2.0" + resolved "https://registry.yarnpkg.com/@types/react-native-dotenv/-/react-native-dotenv-0.2.0.tgz#32c58422a422c1adf68acce363ed791314d5a8e7" + integrity sha512-ZxX+dU/yoQc0jTk+/NWttkiuXceJyN5FpOSqDl0WynN5GDzxwH7OMruQ47qcY8llo2RD3irjvzJ9BwC8gDiq0A== + + "@types/react-native-vector-icons@^6.4.4": + version "6.4.5" + resolved "https://registry.yarnpkg.com/@types/react-native-vector-icons/-/react-native-vector-icons-6.4.5.tgz#74cbfc564bd8435e43ad6728572a0e5b49c335d1" + integrity sha512-JBpcjWQE4n0GlE0p6HpDDclT+uXpFC453T5k4h+B38q0utlGJhvgNr8899BoJGc1xOktA2cgqFKmFMJd0h7YaA== + dependencies: + "@types/react" "*" + "@types/react-native" "*" + + "@types/react-native@*": + version "0.62.4" + resolved "https://registry.yarnpkg.com/@types/react-native/-/react-native-0.62.4.tgz#0aea6619a19de1c6994ce8e4175fc4e44409bcdb" + integrity sha512-AKImyybUzqqPItKNuURkMe7y1X5cxuSJh5td8qbFSEXO58S5qjw01eZweWkKyTVCvrWGXkfm43u1zoYcZSGL6w== + dependencies: + "@types/react" "*" + + "@types/react-native@^0.60.15": + version "0.60.31" + resolved "https://registry.yarnpkg.com/@types/react-native/-/react-native-0.60.31.tgz#a7af12197f884ad8dd22cda2df9862ed72973ded" + integrity sha512-Y0Q+nv50KHnLL+jM0UH68gQQv7Wt6v2KuNepiHKwK1DoWGVd1oYun/GJCnvUje+/V8pMQQWW6QuBvHZz1pV7tQ== + dependencies: + "@types/prop-types" "*" + "@types/react" "*" + + "@types/react-test-renderer@^16.9.1": + version "16.9.2" + resolved "https://registry.yarnpkg.com/@types/react-test-renderer/-/react-test-renderer-16.9.2.tgz#e1c408831e8183e5ad748fdece02214a7c2ab6c5" + integrity sha512-4eJr1JFLIAlWhzDkBCkhrOIWOvOxcCAfQh+jiKg7l/nNZcCIL2MHl2dZhogIFKyHzedVWHaVP1Yydq/Ruu4agw== + dependencies: + "@types/react" "*" + + "@types/react@*", "@types/react@^16.9.0": + version "16.9.33" + resolved "https://registry.yarnpkg.com/@types/react/-/react-16.9.33.tgz#a5274520f0d28cbbb73c8652ddd48646fd4bcae5" + integrity sha512-ovgoy7p9999HDzwv8Sewhl8GJjn/r0GRsFrM9UMwp1uodh0kQ0pwIHLQ6LNfqGSyjNzJ8II/HIg0BL7Yn/B9yA== + dependencies: + "@types/prop-types" "*" + csstype "^2.2.0" + + "@types/stack-utils@^1.0.1": + version "1.0.1" + resolved "https://registry.yarnpkg.com/@types/stack-utils/-/stack-utils-1.0.1.tgz#0a851d3bd96498fa25c33ab7278ed3bd65f06c3e" + integrity sha512-l42BggppR6zLmpfU6fq9HEa2oGPEI8yrSPL3GITjfRInppYFahObbIQOQK3UGxEnyQpltZLaPe75046NOZQikw== + + "@types/yargs-parser@*": + version "15.0.0" + resolved "https://registry.yarnpkg.com/@types/yargs-parser/-/yargs-parser-15.0.0.tgz#cb3f9f741869e20cce330ffbeb9271590483882d" + integrity sha512-FA/BWv8t8ZWJ+gEOnLLd8ygxH/2UFbAvgEonyfN6yWGLKc7zVjbpl2Y4CTjid9h2RfgPP6SEt6uHwEOply00yw== + + "@types/yargs@^13.0.0": + version "13.0.8" + resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-13.0.8.tgz#a38c22def2f1c2068f8971acb3ea734eb3c64a99" + integrity sha512-XAvHLwG7UQ+8M4caKIH0ZozIOYay5fQkAgyIXegXT9jPtdIGdhga+sUEdAr1CiG46aB+c64xQEYyEzlwWVTNzA== + dependencies: + "@types/yargs-parser" "*" + + "@types/yargs@^15.0.0": + version "15.0.4" + resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-15.0.4.tgz#7e5d0f8ca25e9d5849f2ea443cf7c402decd8299" + integrity sha512-9T1auFmbPZoxHz0enUFlUuKRy3it01R+hlggyVUMtnCTQRunsQYifnSGb8hET4Xo8yiC0o0r1paW3ud5+rbURg== + dependencies: + "@types/yargs-parser" "*" + + "@typescript-eslint/eslint-plugin@^2.14.0": + version "2.27.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-2.27.0.tgz#e479cdc4c9cf46f96b4c287755733311b0d0ba4b" + integrity sha512-/my+vVHRN7zYgcp0n4z5A6HAK7bvKGBiswaM5zIlOQczsxj/aiD7RcgD+dvVFuwFaGh5+kM7XA6Q6PN0bvb1tw== + dependencies: + "@typescript-eslint/experimental-utils" "2.27.0" + functional-red-black-tree "^1.0.1" + regexpp "^3.0.0" + tsutils "^3.17.1" + + "@typescript-eslint/experimental-utils@2.27.0": + version "2.27.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/experimental-utils/-/experimental-utils-2.27.0.tgz#801a952c10b58e486c9a0b36cf21e2aab1e9e01a" + integrity sha512-vOsYzjwJlY6E0NJRXPTeCGqjv5OHgRU1kzxHKWJVPjDYGbPgLudBXjIlc+OD1hDBZ4l1DLbOc5VjofKahsu9Jw== + dependencies: + "@types/json-schema" "^7.0.3" + "@typescript-eslint/typescript-estree" "2.27.0" + eslint-scope "^5.0.0" + eslint-utils "^2.0.0" + + "@typescript-eslint/parser@^2.14.0": + version "2.27.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-2.27.0.tgz#d91664335b2c46584294e42eb4ff35838c427287" + integrity sha512-HFUXZY+EdwrJXZo31DW4IS1ujQW3krzlRjBrFRrJcMDh0zCu107/nRfhk/uBasO8m0NVDbBF5WZKcIUMRO7vPg== + dependencies: + "@types/eslint-visitor-keys" "^1.0.0" + "@typescript-eslint/experimental-utils" "2.27.0" + "@typescript-eslint/typescript-estree" "2.27.0" + eslint-visitor-keys "^1.1.0" + + "@typescript-eslint/typescript-estree@2.27.0": + version "2.27.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-2.27.0.tgz#a288e54605412da8b81f1660b56c8b2e42966ce8" + integrity sha512-t2miCCJIb/FU8yArjAvxllxbTiyNqaXJag7UOpB5DVoM3+xnjeOngtqlJkLRnMtzaRcJhe3CIR9RmL40omubhg== + dependencies: + debug "^4.1.1" + eslint-visitor-keys "^1.1.0" + glob "^7.1.6" + is-glob "^4.0.1" + lodash "^4.17.15" + semver "^6.3.0" + tsutils "^3.17.1" + + "@unimodules/core@~5.0.0": + version "5.0.0" + resolved "https://registry.yarnpkg.com/@unimodules/core/-/core-5.0.0.tgz#e1e3ca3f91f3d27dbc93c6eebc03a40c711da755" + integrity sha512-PswccfzFIviX61Lm8h6/QyC94bWe+6cARwhzgzTCKa6aR6azmi4732ExhX4VxfQjJNHB0szYVXGXVEDsFkj+tQ== + dependencies: + compare-versions "^3.4.0" + + "@unimodules/react-native-adapter@~5.0.0": + version "5.0.0" + resolved "https://registry.yarnpkg.com/@unimodules/react-native-adapter/-/react-native-adapter-5.0.0.tgz#af9835821a2bf38390b9f09f3231c0b7546ee510" + integrity sha512-qb5p5wUQoi3TRa/33aLLHSnS7sewV99oBxIo9gnzNI3VFzbOm3rsbTjOJNcR2hx0raUolTtnQT75VbgagVQx4w== + dependencies: + invariant "^2.2.4" + lodash "^4.5.0" + prop-types "^15.6.1" + + abab@^2.0.0: + version "2.0.3" + resolved "https://registry.yarnpkg.com/abab/-/abab-2.0.3.tgz#623e2075e02eb2d3f2475e49f99c91846467907a" + integrity sha512-tsFzPpcttalNjFBCFMqsKYQcWxxen1pgJR56by//QwvJc4/OUS3kPOOttx2tSIfjsylB0pYu7f5D3K1RCxUnUg== + + abbrev@1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" + integrity sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q== + + abort-controller@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/abort-controller/-/abort-controller-3.0.0.tgz#eaf54d53b62bae4138e809ca225c8439a6efb392" + integrity sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg== + dependencies: + event-target-shim "^5.0.0" + + absolute-path@^0.0.0: + version "0.0.0" + resolved "https://registry.yarnpkg.com/absolute-path/-/absolute-path-0.0.0.tgz#a78762fbdadfb5297be99b15d35a785b2f095bf7" + integrity sha1-p4di+9rftSl76ZsV01p4Wy8JW/c= + + accepts@~1.3.5, accepts@~1.3.7: + version "1.3.7" + resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.7.tgz#531bc726517a3b2b41f850021c6cc15eaab507cd" + integrity sha512-Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA== + dependencies: + mime-types "~2.1.24" + negotiator "0.6.2" + + acorn-globals@^4.3.2: + version "4.3.4" + resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-4.3.4.tgz#9fa1926addc11c97308c4e66d7add0d40c3272e7" + integrity sha512-clfQEh21R+D0leSbUdWf3OcfqyaCSAQ8Ryq00bofSekfr9W8u1jyYZo6ir0xu9Gtcf7BjcHJpnbZH7JOCpP60A== + dependencies: + acorn "^6.0.1" + acorn-walk "^6.0.1" + + acorn-jsx@^5.2.0: + version "5.2.0" + resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.2.0.tgz#4c66069173d6fdd68ed85239fc256226182b2ebe" + integrity sha512-HiUX/+K2YpkpJ+SzBffkM/AQ2YE03S0U1kjTLVpoJdhZMOWy8qvXVN9JdLqv2QsaQ6MPYQIuNmwD8zOiYUofLQ== + + acorn-walk@^6.0.1: + version "6.2.0" + resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-6.2.0.tgz#123cb8f3b84c2171f1f7fb252615b1c78a6b1a8c" + integrity sha512-7evsyfH1cLOCdAzZAd43Cic04yKydNx0cF+7tiA19p1XnLLPU4dpCQOqpjqwokFe//vS0QqfqqjCS2JkiIs0cA== + + acorn@^6.0.1: + version "6.4.1" + resolved "https://registry.yarnpkg.com/acorn/-/acorn-6.4.1.tgz#531e58ba3f51b9dacb9a6646ca4debf5b14ca474" + integrity sha512-ZVA9k326Nwrj3Cj9jlh3wGFutC2ZornPNARZwsNYqQYgN0EsV2d53w5RN/co65Ohn4sUAUtb1rSUAOD6XN9idA== + + acorn@^7.1.0, acorn@^7.1.1: + version "7.1.1" + resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.1.1.tgz#e35668de0b402f359de515c5482a1ab9f89a69bf" + integrity sha512-add7dgA5ppRPxCFJoAGfMDi7PIBXq1RtGo7BhbLaxwrXPOmw8gq48Y9ozT01hUKy9byMjlR20EJhu5zlkErEkg== + + airtable@^0.8.1: + version "0.8.1" + resolved "https://registry.yarnpkg.com/airtable/-/airtable-0.8.1.tgz#8d10f04f41673b86ed75fa054f54470357e36ae0" + integrity sha512-Cxw55ta1olDwDERz++HFJOBX6LONtg+d7+wOcYguqI4PR4P5RHmgjTbY8tPKgLHb8U3FVOyAbpb7NpLRSnLGgg== + dependencies: + es6-promise "4.2.8" + lodash "4.17.15" + request "2.88.0" + xhr "2.3.3" + + ajv@^6.10.0, ajv@^6.10.2, ajv@^6.5.5: + version "6.12.0" + resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.0.tgz#06d60b96d87b8454a5adaba86e7854da629db4b7" + integrity sha512-D6gFiFA0RRLyUbvijN74DWAjXSFxWKaWP7mldxkVhyhAV3+SWA9HEJPHQ2c9soIeTFJqcSdFDGFgdqs1iUU2Hw== + dependencies: + fast-deep-equal "^3.1.1" + fast-json-stable-stringify "^2.0.0" + json-schema-traverse "^0.4.1" + uri-js "^4.2.2" + + ansi-align@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/ansi-align/-/ansi-align-3.0.0.tgz#b536b371cf687caaef236c18d3e21fe3797467cb" + integrity sha512-ZpClVKqXN3RGBmKibdfWzqCY4lnjEuoNzU5T0oEFpfd/z5qJHVarukridD4juLO2FXMiwUQxr9WqQtaYa8XRYw== + dependencies: + string-width "^3.0.0" + + ansi-colors@^1.0.1: + version "1.1.0" + resolved "https://registry.yarnpkg.com/ansi-colors/-/ansi-colors-1.1.0.tgz#6374b4dd5d4718ff3ce27a671a3b1cad077132a9" + integrity sha512-SFKX67auSNoVR38N3L+nvsPjOE0bybKTYbkf5tRvushrAPQ9V75huw0ZxBkKVeRU9kqH3d6HA4xTckbwZ4ixmA== + dependencies: + ansi-wrap "^0.1.0" + + ansi-cyan@^0.1.1: + version "0.1.1" + resolved "https://registry.yarnpkg.com/ansi-cyan/-/ansi-cyan-0.1.1.tgz#538ae528af8982f28ae30d86f2f17456d2609873" + integrity sha1-U4rlKK+JgvKK4w2G8vF0VtJgmHM= + dependencies: + ansi-wrap "0.1.0" + + ansi-escapes@^3.0.0: + version "3.2.0" + resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-3.2.0.tgz#8780b98ff9dbf5638152d1f1fe5c1d7b4442976b" + integrity sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ== + + ansi-escapes@^4.2.1: + version "4.3.1" + resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-4.3.1.tgz#a5c47cc43181f1f38ffd7076837700d395522a61" + integrity sha512-JWF7ocqNrp8u9oqpgV+wH5ftbt+cfvv+PTjOvKLT3AdYly/LmORARfEVT1iyjwN+4MqE5UmVKoAdIBqeoCHgLA== + dependencies: + type-fest "^0.11.0" + + ansi-fragments@^0.2.1: + version "0.2.1" + resolved "https://registry.yarnpkg.com/ansi-fragments/-/ansi-fragments-0.2.1.tgz#24409c56c4cc37817c3d7caa99d8969e2de5a05e" + integrity sha512-DykbNHxuXQwUDRv5ibc2b0x7uw7wmwOGLBUd5RmaQ5z8Lhx19vwvKV+FAsM5rEA6dEcHxX+/Ad5s9eF2k2bB+w== + dependencies: + colorette "^1.0.7" + slice-ansi "^2.0.0" + strip-ansi "^5.0.0" + + ansi-gray@^0.1.1: + version "0.1.1" + resolved "https://registry.yarnpkg.com/ansi-gray/-/ansi-gray-0.1.1.tgz#2962cf54ec9792c48510a3deb524436861ef7251" + integrity sha1-KWLPVOyXksSFEKPetSRDaGHvclE= + dependencies: + ansi-wrap "0.1.0" + + ansi-red@^0.1.1: + version "0.1.1" + resolved "https://registry.yarnpkg.com/ansi-red/-/ansi-red-0.1.1.tgz#8c638f9d1080800a353c9c28c8a81ca4705d946c" + integrity sha1-jGOPnRCAgAo1PJwoyKgcpHBdlGw= + dependencies: + ansi-wrap "0.1.0" + + ansi-regex@^2.0.0: + version "2.1.1" + resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" + integrity sha1-w7M6te42DYbg5ijwRorn7yfWVN8= + + ansi-regex@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" + integrity sha1-7QMXwyIGT3lGbAKWa922Bas32Zg= + + ansi-regex@^4.0.0, ansi-regex@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-4.1.0.tgz#8b9f8f08cf1acb843756a839ca8c7e3168c51997" + integrity sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg== + + ansi-regex@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.0.tgz#388539f55179bf39339c81af30a654d69f87cb75" + integrity sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg== + + ansi-styles@^2.2.1: + version "2.2.1" + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" + integrity sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4= + + ansi-styles@^3.2.0, ansi-styles@^3.2.1: + version "3.2.1" + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" + integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== + dependencies: + color-convert "^1.9.0" + + ansi-styles@^4.0.0, ansi-styles@^4.1.0: + version "4.2.1" + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.2.1.tgz#90ae75c424d008d2624c5bf29ead3177ebfcf359" + integrity sha512-9VGjrMsG1vePxcSweQsN20KY/c4zN0h9fLjqAbwbPfahM3t+NL+M9HC8xeXG2I8pX5NoamTGNuomEUFI7fcUjA== + dependencies: + "@types/color-name" "^1.1.1" + color-convert "^2.0.1" + + ansi-wrap@0.1.0, ansi-wrap@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/ansi-wrap/-/ansi-wrap-0.1.0.tgz#a82250ddb0015e9a27ca82e82ea603bbfa45efaf" + integrity sha1-qCJQ3bABXponyoLoLqYDu/pF768= + + any-observable@^0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/any-observable/-/any-observable-0.3.0.tgz#af933475e5806a67d0d7df090dd5e8bef65d119b" + integrity sha512-/FQM1EDkTsf63Ub2C6O7GuYFDsSXUwsaZDurV0np41ocwq0jthUAYCmhBX9f+KwlaCgIuWyr/4WlUQUBfKfZog== + + anymatch@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-2.0.0.tgz#bcb24b4f37934d9aa7ac17b4adaf89e7c76ef2eb" + integrity sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw== + dependencies: + micromatch "^3.1.4" + normalize-path "^2.1.1" + + anymatch@^3.0.3, anymatch@~3.1.1: + version "3.1.1" + resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.1.tgz#c55ecf02185e2469259399310c173ce31233b142" + integrity sha512-mM8522psRCqzV+6LhomX5wgp25YVibjh8Wj23I5RPkPppSVSjyKD2A2mBJmWGa+KN7f2D6LNh9jkBCeyLktzjg== + dependencies: + normalize-path "^3.0.0" + picomatch "^2.0.4" + + aproba@^1.0.3: + version "1.2.0" + resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a" + integrity sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw== + + are-we-there-yet@~1.1.2: + version "1.1.5" + resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz#4b35c2944f062a8bfcda66410760350fe9ddfc21" + integrity sha512-5hYdAkZlcG8tOLujVDTgCT+uPX0VnpAH28gWsLfzpXYm7wP6mp5Q/gYyR7YQ0cKVJcXJnl3j2kpBan13PtQf6w== + dependencies: + delegates "^1.0.0" + readable-stream "^2.0.6" + + argparse@^1.0.7: + version "1.0.10" + resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" + integrity sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg== + dependencies: + sprintf-js "~1.0.2" + + aria-query@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/aria-query/-/aria-query-3.0.0.tgz#65b3fcc1ca1155a8c9ae64d6eee297f15d5133cc" + integrity sha1-ZbP8wcoRVajJrmTW7uKX8V1RM8w= + dependencies: + ast-types-flow "0.0.7" + commander "^2.11.0" + + arr-diff@^1.0.1: + version "1.1.0" + resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-1.1.0.tgz#687c32758163588fef7de7b36fabe495eb1a399a" + integrity sha1-aHwydYFjWI/vfeezb6vklesaOZo= + dependencies: + arr-flatten "^1.0.1" + array-slice "^0.2.3" + + arr-diff@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-4.0.0.tgz#d6461074febfec71e7e15235761a329a5dc7c520" + integrity sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA= + + arr-flatten@^1.0.1, arr-flatten@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" + integrity sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg== + + arr-union@^2.0.1: + version "2.1.0" + resolved "https://registry.yarnpkg.com/arr-union/-/arr-union-2.1.0.tgz#20f9eab5ec70f5c7d215b1077b1c39161d292c7d" + integrity sha1-IPnqtexw9cfSFbEHexw5Fh0pLH0= + + arr-union@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/arr-union/-/arr-union-3.1.0.tgz#e39b09aea9def866a8f206e288af63919bae39c4" + integrity sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ= + + array-equal@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/array-equal/-/array-equal-1.0.0.tgz#8c2a5ef2472fd9ea742b04c77a75093ba2757c93" + integrity sha1-jCpe8kcv2ep0KwTHenUJO6J1fJM= + + array-filter@~0.0.0: + version "0.0.1" + resolved "https://registry.yarnpkg.com/array-filter/-/array-filter-0.0.1.tgz#7da8cf2e26628ed732803581fd21f67cacd2eeec" + integrity sha1-fajPLiZijtcygDWB/SH2fKzS7uw= + + array-find-index@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/array-find-index/-/array-find-index-1.0.2.tgz#df010aa1287e164bbda6f9723b0a96a1ec4187a1" + integrity sha1-3wEKoSh+Fku9pvlyOwqWoexBh6E= + + array-flatten@1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-1.1.1.tgz#9a5f699051b1e7073328f2a008968b64ea2955d2" + integrity sha1-ml9pkFGx5wczKPKgCJaLZOopVdI= + + array-includes@^3.0.3, array-includes@^3.1.1: + version "3.1.1" + resolved "https://registry.yarnpkg.com/array-includes/-/array-includes-3.1.1.tgz#cdd67e6852bdf9c1215460786732255ed2459348" + integrity sha512-c2VXaCHl7zPsvpkFsw4nxvFie4fh1ur9bpcgsVkIjqn0H/Xwdg+7fv3n2r/isyS8EBj5b06M9kHyZuIr4El6WQ== + dependencies: + define-properties "^1.1.3" + es-abstract "^1.17.0" + is-string "^1.0.5" + + array-map@~0.0.0: + version "0.0.0" + resolved "https://registry.yarnpkg.com/array-map/-/array-map-0.0.0.tgz#88a2bab73d1cf7bcd5c1b118a003f66f665fa662" + integrity sha1-iKK6tz0c97zVwbEYoAP2b2ZfpmI= + + array-reduce@~0.0.0: + version "0.0.0" + resolved "https://registry.yarnpkg.com/array-reduce/-/array-reduce-0.0.0.tgz#173899d3ffd1c7d9383e4479525dbe278cab5f2b" + integrity sha1-FziZ0//Rx9k4PkR5Ul2+J4yrXys= + + array-slice@^0.2.3: + version "0.2.3" + resolved "https://registry.yarnpkg.com/array-slice/-/array-slice-0.2.3.tgz#dd3cfb80ed7973a75117cdac69b0b99ec86186f5" + integrity sha1-3Tz7gO15c6dRF82sabC5nshhhvU= + + array-unique@^0.3.2: + version "0.3.2" + resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.3.2.tgz#a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428" + integrity sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg= + + array.prototype.flat@^1.2.1: + version "1.2.3" + resolved "https://registry.yarnpkg.com/array.prototype.flat/-/array.prototype.flat-1.2.3.tgz#0de82b426b0318dbfdb940089e38b043d37f6c7b" + integrity sha512-gBlRZV0VSmfPIeWfuuy56XZMvbVfbEUnOXUvt3F/eUUUSyzlgLxhEX4YAEpxNAogRGehPSnfXyPtYyKAhkzQhQ== + dependencies: + define-properties "^1.1.3" + es-abstract "^1.17.0-next.1" + + art@^0.10.0: + version "0.10.3" + resolved "https://registry.yarnpkg.com/art/-/art-0.10.3.tgz#b01d84a968ccce6208df55a733838c96caeeaea2" + integrity sha512-HXwbdofRTiJT6qZX/FnchtldzJjS3vkLJxQilc3Xj+ma2MXjY4UAyQ0ls1XZYVnDvVIBiFZbC6QsvtW86TD6tQ== + + asap@~2.0.3: + version "2.0.6" + resolved "https://registry.yarnpkg.com/asap/-/asap-2.0.6.tgz#e50347611d7e690943208bbdafebcbc2fb866d46" + integrity sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY= + + asn1@~0.2.3: + version "0.2.4" + resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.4.tgz#8d2475dfab553bb33e77b54e59e880bb8ce23136" + integrity sha512-jxwzQpLQjSmWXgwaCZE9Nz+glAG01yF1QnWgbhGwHI5A6FRIEY6IVqtHhIepHqI7/kyEyQEagBC5mBEFlIYvdg== + dependencies: + safer-buffer "~2.1.0" + + assert-plus@1.0.0, assert-plus@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" + integrity sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU= + + assign-symbols@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/assign-symbols/-/assign-symbols-1.0.0.tgz#59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367" + integrity sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c= + + ast-types-flow@0.0.7, ast-types-flow@^0.0.7: + version "0.0.7" + resolved "https://registry.yarnpkg.com/ast-types-flow/-/ast-types-flow-0.0.7.tgz#f70b735c6bca1a5c9c22d982c3e39e7feba3bdad" + integrity sha1-9wtzXGvKGlycItmCw+Oef+ujva0= + + astral-regex@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-1.0.0.tgz#6c8c3fb827dd43ee3918f27b82782ab7658a6fd9" + integrity sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg== + + async-limiter@~1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/async-limiter/-/async-limiter-1.0.1.tgz#dd379e94f0db8310b08291f9d64c3209766617fd" + integrity sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ== + + async@^2.4.0: + version "2.6.3" + resolved "https://registry.yarnpkg.com/async/-/async-2.6.3.tgz#d72625e2344a3656e3a3ad4fa749fa83299d82ff" + integrity sha512-zflvls11DCy+dQWzTW2dzuilv8Z5X/pjfmZOWba6TNIVDm+2UDaJmXSOXlasHKfNBs8oo3M0aT50fDEWfKZjXg== + dependencies: + lodash "^4.17.14" + + asynckit@^0.4.0: + version "0.4.0" + resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" + integrity sha1-x57Zf380y48robyXkLzDZkdLS3k= + + atob@^2.1.2: + version "2.1.2" + resolved "https://registry.yarnpkg.com/atob/-/atob-2.1.2.tgz#6d9517eb9e030d2436666651e86bd9f6f13533c9" + integrity sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg== + + aws-sign2@~0.7.0: + version "0.7.0" + resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.7.0.tgz#b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8" + integrity sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg= + + aws4@^1.8.0: + version "1.9.1" + resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.9.1.tgz#7e33d8f7d449b3f673cd72deb9abdc552dbe528e" + integrity sha512-wMHVg2EOHaMRxbzgFJ9gtjOOCrI80OHLG14rxi28XwOW8ux6IiEbRCGGGqCtdAIg4FQCbW20k9RsT4y3gJlFug== + + axobject-query@^2.0.2: + version "2.1.2" + resolved "https://registry.yarnpkg.com/axobject-query/-/axobject-query-2.1.2.tgz#2bdffc0371e643e5f03ba99065d5179b9ca79799" + integrity sha512-ICt34ZmrVt8UQnvPl6TVyDTkmhXmAyAT4Jh5ugfGUX4MOrZ+U/ZY6/sdylRw3qGNr9Ub5AJsaHeDMzNLehRdOQ== + + babel-code-frame@^6.26.0: + version "6.26.0" + resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b" + integrity sha1-Y/1D99weO7fONZR9uP42mj9Yx0s= + dependencies: + chalk "^1.1.3" + esutils "^2.0.2" + js-tokens "^3.0.2" + + babel-helper-bindify-decorators@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-helper-bindify-decorators/-/babel-helper-bindify-decorators-6.24.1.tgz#14c19e5f142d7b47f19a52431e52b1ccbc40a330" + integrity sha1-FMGeXxQte0fxmlJDHlKxzLxAozA= + dependencies: + babel-runtime "^6.22.0" + babel-traverse "^6.24.1" + babel-types "^6.24.1" + + babel-helper-builder-binary-assignment-operator-visitor@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.24.1.tgz#cce4517ada356f4220bcae8a02c2b346f9a56664" + integrity sha1-zORReto1b0IgvK6KAsKzRvmlZmQ= + dependencies: + babel-helper-explode-assignable-expression "^6.24.1" + babel-runtime "^6.22.0" + babel-types "^6.24.1" + + babel-helper-explode-assignable-expression@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.24.1.tgz#f25b82cf7dc10433c55f70592d5746400ac22caa" + integrity sha1-8luCz33BBDPFX3BZLVdGQArCLKo= + dependencies: + babel-runtime "^6.22.0" + babel-traverse "^6.24.1" + babel-types "^6.24.1" + + babel-helper-explode-class@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-helper-explode-class/-/babel-helper-explode-class-6.24.1.tgz#7dc2a3910dee007056e1e31d640ced3d54eaa9eb" + integrity sha1-fcKjkQ3uAHBW4eMdZAztPVTqqes= + dependencies: + babel-helper-bindify-decorators "^6.24.1" + babel-runtime "^6.22.0" + babel-traverse "^6.24.1" + babel-types "^6.24.1" + + babel-helper-function-name@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz#d3475b8c03ed98242a25b48351ab18399d3580a9" + integrity sha1-00dbjAPtmCQqJbSDUasYOZ01gKk= + dependencies: + babel-helper-get-function-arity "^6.24.1" + babel-runtime "^6.22.0" + babel-template "^6.24.1" + babel-traverse "^6.24.1" + babel-types "^6.24.1" + + babel-helper-get-function-arity@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz#8f7782aa93407c41d3aa50908f89b031b1b6853d" + integrity sha1-j3eCqpNAfEHTqlCQj4mwMbG2hT0= + dependencies: + babel-runtime "^6.22.0" + babel-types "^6.24.1" + + babel-helper-remap-async-to-generator@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.24.1.tgz#5ec581827ad723fecdd381f1c928390676e4551b" + integrity sha1-XsWBgnrXI/7N04HxySg5BnbkVRs= + dependencies: + babel-helper-function-name "^6.24.1" + babel-runtime "^6.22.0" + babel-template "^6.24.1" + babel-traverse "^6.24.1" + babel-types "^6.24.1" + + babel-jest@^25.4.0: + version "25.4.0" + resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-25.4.0.tgz#409eb3e2ddc2ad9a92afdbb00991f1633f8018d0" + integrity sha512-p+epx4K0ypmHuCnd8BapfyOwWwosNCYhedetQey1awddtfmEX0MmdxctGl956uwUmjwXR5VSS5xJcGX9DvdIog== + dependencies: + "@jest/transform" "^25.4.0" + "@jest/types" "^25.4.0" + "@types/babel__core" "^7.1.7" + babel-plugin-istanbul "^6.0.0" + babel-preset-jest "^25.4.0" + chalk "^3.0.0" + slash "^3.0.0" + + babel-messages@^6.23.0: + version "6.23.0" + resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" + integrity sha1-8830cDhYA1sqKVHG7F7fbGLyYw4= + dependencies: + babel-runtime "^6.22.0" + + babel-plugin-dotenv@0.1.1: + version "0.1.1" + resolved "https://registry.yarnpkg.com/babel-plugin-dotenv/-/babel-plugin-dotenv-0.1.1.tgz#9c8faea67a7c034fe7e94099187ab2e7573400bc" + integrity sha1-nI+upnp8A0/n6UCZGHqy51c0ALw= + dependencies: + dotenv "^2.0.0" + + babel-plugin-dynamic-import-node@^2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.0.tgz#f00f507bdaa3c3e3ff6e7e5e98d90a7acab96f7f" + integrity sha512-o6qFkpeQEBxcqt0XYlWzAVxNCSCZdUgcR8IRlhD/8DylxjjO4foPcvTW0GGKa/cVt3rvxZ7o5ippJ+/0nvLhlQ== + dependencies: + object.assign "^4.1.0" + + babel-plugin-istanbul@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-6.0.0.tgz#e159ccdc9af95e0b570c75b4573b7c34d671d765" + integrity sha512-AF55rZXpe7trmEylbaE1Gv54wn6rwU03aptvRoVIGP8YykoSxqdVLV1TfwflBCE/QtHmqtP8SWlTENqbK8GCSQ== + dependencies: + "@babel/helper-plugin-utils" "^7.0.0" + "@istanbuljs/load-nyc-config" "^1.0.0" + "@istanbuljs/schema" "^0.1.2" + istanbul-lib-instrument "^4.0.0" + test-exclude "^6.0.0" + + babel-plugin-jest-hoist@^25.4.0: + version "25.4.0" + resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-25.4.0.tgz#0c122c1b93fb76f52d2465be2e8069e798e9d442" + integrity sha512-M3a10JCtTyKevb0MjuH6tU+cP/NVQZ82QPADqI1RQYY1OphztsCeIeQmTsHmF/NS6m0E51Zl4QNsI3odXSQF5w== + dependencies: + "@types/babel__traverse" "^7.0.6" + + babel-plugin-syntax-async-functions@^6.8.0: + version "6.13.0" + resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz#cad9cad1191b5ad634bf30ae0872391e0647be95" + integrity sha1-ytnK0RkbWtY0vzCuCHI5HgZHvpU= + + babel-plugin-syntax-async-generators@^6.5.0: + version "6.13.0" + resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-generators/-/babel-plugin-syntax-async-generators-6.13.0.tgz#6bc963ebb16eccbae6b92b596eb7f35c342a8b9a" + integrity sha1-a8lj67FuzLrmuStZbrfzXDQqi5o= + + babel-plugin-syntax-class-properties@^6.8.0: + version "6.13.0" + resolved "https://registry.yarnpkg.com/babel-plugin-syntax-class-properties/-/babel-plugin-syntax-class-properties-6.13.0.tgz#d7eb23b79a317f8543962c505b827c7d6cac27de" + integrity sha1-1+sjt5oxf4VDlixQW4J8fWysJ94= + + babel-plugin-syntax-decorators@^6.13.0: + version "6.13.0" + resolved "https://registry.yarnpkg.com/babel-plugin-syntax-decorators/-/babel-plugin-syntax-decorators-6.13.0.tgz#312563b4dbde3cc806cee3e416cceeaddd11ac0b" + integrity sha1-MSVjtNvePMgGzuPkFszurd0RrAs= + + babel-plugin-syntax-dynamic-import@^6.18.0: + version "6.18.0" + resolved "https://registry.yarnpkg.com/babel-plugin-syntax-dynamic-import/-/babel-plugin-syntax-dynamic-import-6.18.0.tgz#8d6a26229c83745a9982a441051572caa179b1da" + integrity sha1-jWomIpyDdFqZgqRBBRVyyqF5sdo= + + babel-plugin-syntax-exponentiation-operator@^6.8.0: + version "6.13.0" + resolved "https://registry.yarnpkg.com/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz#9ee7e8337290da95288201a6a57f4170317830de" + integrity sha1-nufoM3KQ2pUoggGmpX9BcDF4MN4= + + babel-plugin-syntax-object-rest-spread@^6.8.0: + version "6.13.0" + resolved "https://registry.yarnpkg.com/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz#fd6536f2bce13836ffa3a5458c4903a597bb3bf5" + integrity sha1-/WU28rzhODb/o6VFjEkDpZe7O/U= + + babel-plugin-syntax-trailing-function-commas@^6.22.0: + version "6.22.0" + resolved "https://registry.yarnpkg.com/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.22.0.tgz#ba0360937f8d06e40180a43fe0d5616fff532cf3" + integrity sha1-ugNgk3+NBuQBgKQ/4NVhb/9TLPM= + + babel-plugin-syntax-trailing-function-commas@^7.0.0-beta.0: + version "7.0.0-beta.0" + resolved "https://registry.yarnpkg.com/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-7.0.0-beta.0.tgz#aa213c1435e2bffeb6fca842287ef534ad05d5cf" + integrity sha512-Xj9XuRuz3nTSbaTXWv3itLOcxyF4oPD8douBBmj7U9BBC6nEBYfyOJYQMf/8PJAFotC62UY5dFfIGEPr7WswzQ== + + babel-plugin-transform-async-generator-functions@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-generator-functions/-/babel-plugin-transform-async-generator-functions-6.24.1.tgz#f058900145fd3e9907a6ddf28da59f215258a5db" + integrity sha1-8FiQAUX9PpkHpt3yjaWfIVJYpds= + dependencies: + babel-helper-remap-async-to-generator "^6.24.1" + babel-plugin-syntax-async-generators "^6.5.0" + babel-runtime "^6.22.0" + + babel-plugin-transform-async-to-generator@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.24.1.tgz#6536e378aff6cb1d5517ac0e40eb3e9fc8d08761" + integrity sha1-ZTbjeK/2yx1VF6wOQOs+n8jQh2E= + dependencies: + babel-helper-remap-async-to-generator "^6.24.1" + babel-plugin-syntax-async-functions "^6.8.0" + babel-runtime "^6.22.0" + + babel-plugin-transform-class-properties@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-class-properties/-/babel-plugin-transform-class-properties-6.24.1.tgz#6a79763ea61d33d36f37b611aa9def81a81b46ac" + integrity sha1-anl2PqYdM9NvN7YRqp3vgagbRqw= + dependencies: + babel-helper-function-name "^6.24.1" + babel-plugin-syntax-class-properties "^6.8.0" + babel-runtime "^6.22.0" + babel-template "^6.24.1" + + babel-plugin-transform-decorators@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-decorators/-/babel-plugin-transform-decorators-6.24.1.tgz#788013d8f8c6b5222bdf7b344390dfd77569e24d" + integrity sha1-eIAT2PjGtSIr33s0Q5Df13Vp4k0= + dependencies: + babel-helper-explode-class "^6.24.1" + babel-plugin-syntax-decorators "^6.13.0" + babel-runtime "^6.22.0" + babel-template "^6.24.1" + babel-types "^6.24.1" + + babel-plugin-transform-exponentiation-operator@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.24.1.tgz#2ab0c9c7f3098fa48907772bb813fe41e8de3a0e" + integrity sha1-KrDJx/MJj6SJB3cruBP+QejeOg4= + dependencies: + babel-helper-builder-binary-assignment-operator-visitor "^6.24.1" + babel-plugin-syntax-exponentiation-operator "^6.8.0" + babel-runtime "^6.22.0" + + babel-plugin-transform-object-rest-spread@^6.22.0: + version "6.26.0" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.26.0.tgz#0f36692d50fef6b7e2d4b3ac1478137a963b7b06" + integrity sha1-DzZpLVD+9rfi1LOsFHgTepY7ewY= + dependencies: + babel-plugin-syntax-object-rest-spread "^6.8.0" + babel-runtime "^6.26.0" + + babel-preset-current-node-syntax@^0.1.2: + version "0.1.2" + resolved "https://registry.yarnpkg.com/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-0.1.2.tgz#fb4a4c51fe38ca60fede1dc74ab35eb843cb41d6" + integrity sha512-u/8cS+dEiK1SFILbOC8/rUI3ml9lboKuuMvZ/4aQnQmhecQAgPw5ew066C1ObnEAUmlx7dv/s2z52psWEtLNiw== + dependencies: + "@babel/plugin-syntax-async-generators" "^7.8.4" + "@babel/plugin-syntax-bigint" "^7.8.3" + "@babel/plugin-syntax-class-properties" "^7.8.3" + "@babel/plugin-syntax-json-strings" "^7.8.3" + "@babel/plugin-syntax-logical-assignment-operators" "^7.8.3" + "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" + "@babel/plugin-syntax-numeric-separator" "^7.8.3" + "@babel/plugin-syntax-object-rest-spread" "^7.8.3" + "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" + "@babel/plugin-syntax-optional-chaining" "^7.8.3" + + babel-preset-fbjs@^3.1.2, babel-preset-fbjs@^3.2.0: + version "3.3.0" + resolved "https://registry.yarnpkg.com/babel-preset-fbjs/-/babel-preset-fbjs-3.3.0.tgz#a6024764ea86c8e06a22d794ca8b69534d263541" + integrity sha512-7QTLTCd2gwB2qGoi5epSULMHugSVgpcVt5YAeiFO9ABLrutDQzKfGwzxgZHLpugq8qMdg/DhRZDZ5CLKxBkEbw== + dependencies: + "@babel/plugin-proposal-class-properties" "^7.0.0" + "@babel/plugin-proposal-object-rest-spread" "^7.0.0" + "@babel/plugin-syntax-class-properties" "^7.0.0" + "@babel/plugin-syntax-flow" "^7.0.0" + "@babel/plugin-syntax-jsx" "^7.0.0" + "@babel/plugin-syntax-object-rest-spread" "^7.0.0" + "@babel/plugin-transform-arrow-functions" "^7.0.0" + "@babel/plugin-transform-block-scoped-functions" "^7.0.0" + "@babel/plugin-transform-block-scoping" "^7.0.0" + "@babel/plugin-transform-classes" "^7.0.0" + "@babel/plugin-transform-computed-properties" "^7.0.0" + "@babel/plugin-transform-destructuring" "^7.0.0" + "@babel/plugin-transform-flow-strip-types" "^7.0.0" + "@babel/plugin-transform-for-of" "^7.0.0" + "@babel/plugin-transform-function-name" "^7.0.0" + "@babel/plugin-transform-literals" "^7.0.0" + "@babel/plugin-transform-member-expression-literals" "^7.0.0" + "@babel/plugin-transform-modules-commonjs" "^7.0.0" + "@babel/plugin-transform-object-super" "^7.0.0" + "@babel/plugin-transform-parameters" "^7.0.0" + "@babel/plugin-transform-property-literals" "^7.0.0" + "@babel/plugin-transform-react-display-name" "^7.0.0" + "@babel/plugin-transform-react-jsx" "^7.0.0" + "@babel/plugin-transform-shorthand-properties" "^7.0.0" + "@babel/plugin-transform-spread" "^7.0.0" + "@babel/plugin-transform-template-literals" "^7.0.0" + babel-plugin-syntax-trailing-function-commas "^7.0.0-beta.0" + + babel-preset-jest@^25.4.0: + version "25.4.0" + resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-25.4.0.tgz#10037cc32b751b994b260964629e49dc479abf4c" + integrity sha512-PwFiEWflHdu3JCeTr0Pb9NcHHE34qWFnPQRVPvqQITx4CsDCzs6o05923I10XvLvn9nNsRHuiVgB72wG/90ZHQ== + dependencies: + babel-plugin-jest-hoist "^25.4.0" + babel-preset-current-node-syntax "^0.1.2" + + babel-preset-react-native@5.0.2: + version "5.0.2" + resolved "https://registry.yarnpkg.com/babel-preset-react-native/-/babel-preset-react-native-5.0.2.tgz#dfed62379712a9c017ff99ce4fbeac1e11d42285" + integrity sha512-Ua5JeQ1yGK8UoydMPzE2Ghq5raOKxXzpyApYDuHi4etIbXi5+GnCin19Nu+1obLQCf2Dxy9Y/GZwI0rnNOjggA== + dependencies: + "@babel/plugin-proposal-class-properties" "7.0.0-beta.47" + "@babel/plugin-proposal-object-rest-spread" "7.0.0-beta.47" + "@babel/plugin-proposal-optional-chaining" "7.0.0-beta.47" + "@babel/plugin-transform-arrow-functions" "7.0.0-beta.47" + "@babel/plugin-transform-block-scoping" "7.0.0-beta.47" + "@babel/plugin-transform-classes" "7.0.0-beta.47" + "@babel/plugin-transform-computed-properties" "7.0.0-beta.47" + "@babel/plugin-transform-destructuring" "7.0.0-beta.47" + "@babel/plugin-transform-exponentiation-operator" "7.0.0-beta.47" + "@babel/plugin-transform-flow-strip-types" "7.0.0-beta.47" + "@babel/plugin-transform-for-of" "7.0.0-beta.47" + "@babel/plugin-transform-function-name" "7.0.0-beta.47" + "@babel/plugin-transform-literals" "7.0.0-beta.47" + "@babel/plugin-transform-modules-commonjs" "7.0.0-beta.47" + "@babel/plugin-transform-object-assign" "7.0.0-beta.47" + "@babel/plugin-transform-parameters" "7.0.0-beta.47" + "@babel/plugin-transform-react-display-name" "7.0.0-beta.47" + "@babel/plugin-transform-react-jsx" "7.0.0-beta.47" + "@babel/plugin-transform-react-jsx-source" "7.0.0-beta.47" + "@babel/plugin-transform-regenerator" "7.0.0-beta.47" + "@babel/plugin-transform-shorthand-properties" "7.0.0-beta.47" + "@babel/plugin-transform-spread" "7.0.0-beta.47" + "@babel/plugin-transform-sticky-regex" "7.0.0-beta.47" + "@babel/plugin-transform-template-literals" "7.0.0-beta.47" + "@babel/plugin-transform-unicode-regex" "7.0.0-beta.47" + "@babel/template" "7.0.0-beta.47" + metro-babel7-plugin-react-transform "^0.39.1" + + babel-preset-stage-2@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-preset-stage-2/-/babel-preset-stage-2-6.24.1.tgz#d9e2960fb3d71187f0e64eec62bc07767219bdc1" + integrity sha1-2eKWD7PXEYfw5k7sYrwHdnIZvcE= + dependencies: + babel-plugin-syntax-dynamic-import "^6.18.0" + babel-plugin-transform-class-properties "^6.24.1" + babel-plugin-transform-decorators "^6.24.1" + babel-preset-stage-3 "^6.24.1" + + babel-preset-stage-3@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-preset-stage-3/-/babel-preset-stage-3-6.24.1.tgz#836ada0a9e7a7fa37cb138fb9326f87934a48395" + integrity sha1-g2raCp56f6N8sTj7kyb4eTSkg5U= + dependencies: + babel-plugin-syntax-trailing-function-commas "^6.22.0" + babel-plugin-transform-async-generator-functions "^6.24.1" + babel-plugin-transform-async-to-generator "^6.24.1" + babel-plugin-transform-exponentiation-operator "^6.24.1" + babel-plugin-transform-object-rest-spread "^6.22.0" + + babel-runtime@^6.22.0, babel-runtime@^6.26.0: + version "6.26.0" + resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe" + integrity sha1-llxwWGaOgrVde/4E/yM3vItWR/4= + dependencies: + core-js "^2.4.0" + regenerator-runtime "^0.11.0" + + babel-template@^6.24.1: + version "6.26.0" + resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.26.0.tgz#de03e2d16396b069f46dd9fff8521fb1a0e35e02" + integrity sha1-3gPi0WOWsGn0bdn/+FIfsaDjXgI= + dependencies: + babel-runtime "^6.26.0" + babel-traverse "^6.26.0" + babel-types "^6.26.0" + babylon "^6.18.0" + lodash "^4.17.4" + + babel-traverse@^6.24.1, babel-traverse@^6.26.0: + version "6.26.0" + resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.26.0.tgz#46a9cbd7edcc62c8e5c064e2d2d8d0f4035766ee" + integrity sha1-RqnL1+3MYsjlwGTi0tjQ9ANXZu4= + dependencies: + babel-code-frame "^6.26.0" + babel-messages "^6.23.0" + babel-runtime "^6.26.0" + babel-types "^6.26.0" + babylon "^6.18.0" + debug "^2.6.8" + globals "^9.18.0" + invariant "^2.2.2" + lodash "^4.17.4" + + babel-types@^6.24.1, babel-types@^6.26.0: + version "6.26.0" + resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.26.0.tgz#a3b073f94ab49eb6fa55cd65227a334380632497" + integrity sha1-o7Bz+Uq0nrb6Vc1lInozQ4BjJJc= + dependencies: + babel-runtime "^6.26.0" + esutils "^2.0.2" + lodash "^4.17.4" + to-fast-properties "^1.0.3" + + babylon@7.0.0-beta.47: + version "7.0.0-beta.47" + resolved "https://registry.yarnpkg.com/babylon/-/babylon-7.0.0-beta.47.tgz#6d1fa44f0abec41ab7c780481e62fd9aafbdea80" + integrity sha512-+rq2cr4GDhtToEzKFD6KZZMDBXhjFAr9JjPw9pAppZACeEWqNM294j+NdBzkSHYXwzzBmVjZ3nEVJlOhbR2gOQ== + + babylon@^6.18.0: + version "6.18.0" + resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3" + integrity sha512-q/UEjfGJ2Cm3oKV71DJz9d25TPnq5rhBVL2Q4fA5wcC3jcrdn7+SssEybFIxwAvvP+YCsCYNKughoF33GxgycQ== + + balanced-match@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" + integrity sha1-ibTRmasr7kneFk6gK4nORi1xt2c= + + base-64@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/base-64/-/base-64-0.1.0.tgz#780a99c84e7d600260361511c4877613bf24f6bb" + integrity sha1-eAqZyE59YAJgNhURxId2E78k9rs= + + base64-js@^1.1.2, base64-js@^1.2.0, base64-js@^1.2.3: + version "1.3.1" + resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.3.1.tgz#58ece8cb75dd07e71ed08c736abc5fac4dbf8df1" + integrity sha512-mLQ4i2QO1ytvGWFWmcngKO//JXAQueZvwEKtjgQFM4jIK0kU+ytMfplL8j+n5mspOfjHwoAg+9yhb7BwAHm36g== + + base@^0.11.1: + version "0.11.2" + resolved "https://registry.yarnpkg.com/base/-/base-0.11.2.tgz#7bde5ced145b6d551a90db87f83c558b4eb48a8f" + integrity sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg== + dependencies: + cache-base "^1.0.1" + class-utils "^0.3.5" + component-emitter "^1.2.1" + define-property "^1.0.0" + isobject "^3.0.1" + mixin-deep "^1.2.0" + pascalcase "^0.1.1" + + basic-auth@~2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/basic-auth/-/basic-auth-2.0.1.tgz#b998279bf47ce38344b4f3cf916d4679bbf51e3a" + integrity sha512-NF+epuEdnUYVlGuhaxbbq+dvJttwLnGY+YixlXlME5KpQ5W3CnXA5cVTneY3SPbPDRkcjMbifrwmFYcClgOZeg== + dependencies: + safe-buffer "5.1.2" + + bcrypt-pbkdf@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz#a4301d389b6a43f9b67ff3ca11a3f6637e360e9e" + integrity sha1-pDAdOJtqQ/m2f/PKEaP2Y342Dp4= + dependencies: + tweetnacl "^0.14.3" + + bcrypt@^3.0.7: + version "3.0.8" + resolved "https://registry.yarnpkg.com/bcrypt/-/bcrypt-3.0.8.tgz#fe437b7569faffc1105c3c3f6e7d2913e3d3bea5" + integrity sha512-jKV6RvLhI36TQnPDvUFqBEnGX9c8dRRygKxCZu7E+MgLfKZbmmXL8a7/SFFOyHoPNX9nV81cKRC5tbQfvEQtpw== + dependencies: + nan "2.14.0" + node-pre-gyp "0.14.0" + + big-integer@^1.6.44: + version "1.6.48" + resolved "https://registry.yarnpkg.com/big-integer/-/big-integer-1.6.48.tgz#8fd88bd1632cba4a1c8c3e3d7159f08bb95b4b9e" + integrity sha512-j51egjPa7/i+RdiRuJbPdJ2FIUYYPhvYLjzoYbcMMm62ooO6F94fETG4MTs46zPAF9Brs04OajboA/qTGuz78w== + + binary-extensions@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.0.0.tgz#23c0df14f6a88077f5f986c0d167ec03c3d5537c" + integrity sha512-Phlt0plgpIIBOGTT/ehfFnbNlfsDEiqmzE2KRXoX1bLIlir4X/MR+zSyBEkL05ffWgnRSf/DXv+WrUAVr93/ow== + + bindings@^1.5.0: + version "1.5.0" + resolved "https://registry.yarnpkg.com/bindings/-/bindings-1.5.0.tgz#10353c9e945334bc0511a6d90b38fbc7c9c504df" + integrity sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ== + dependencies: + file-uri-to-path "1.0.0" + + blueimp-md5@^2.10.0: + version "2.13.0" + resolved "https://registry.yarnpkg.com/blueimp-md5/-/blueimp-md5-2.13.0.tgz#07314b0c64dda0bf1733f96ce40d5af94eb28965" + integrity sha512-lmp0m647R5e77ORduxLW5mISIDcvgJZa52vMBv5uVI3UmSWTQjkJsZVBfaFqQPw/QFogJwvY6e3Gl9nP+Loe+Q== + + body-parser@1.19.0, body-parser@^1.19.0: + version "1.19.0" + resolved "https://registry.yarnpkg.com/body-parser/-/body-parser-1.19.0.tgz#96b2709e57c9c4e09a6fd66a8fd979844f69f08a" + integrity sha512-dhEPs72UPbDnAQJ9ZKMNTP6ptJaionhP5cBb541nXPlW60Jepo9RV/a4fX4XWW9CuFNK22krhrj1+rgzifNCsw== + dependencies: + bytes "3.1.0" + content-type "~1.0.4" + debug "2.6.9" + depd "~1.1.2" + http-errors "1.7.2" + iconv-lite "0.4.24" + on-finished "~2.3.0" + qs "6.7.0" + raw-body "2.4.0" + type-is "~1.6.17" + + boxen@^4.2.0: + version "4.2.0" + resolved "https://registry.yarnpkg.com/boxen/-/boxen-4.2.0.tgz#e411b62357d6d6d36587c8ac3d5d974daa070e64" + integrity sha512-eB4uT9RGzg2odpER62bBwSLvUeGC+WbRjjyyFhGsKnc8wp/m0+hQsMUvUe3H2V0D5vw0nBdO1hCJoZo5mKeuIQ== + dependencies: + ansi-align "^3.0.0" + camelcase "^5.3.1" + chalk "^3.0.0" + cli-boxes "^2.2.0" + string-width "^4.1.0" + term-size "^2.1.0" + type-fest "^0.8.1" + widest-line "^3.1.0" + + bplist-creator@0.0.8: + version "0.0.8" + resolved "https://registry.yarnpkg.com/bplist-creator/-/bplist-creator-0.0.8.tgz#56b2a6e79e9aec3fc33bf831d09347d73794e79c" + integrity sha512-Za9JKzD6fjLC16oX2wsXfc+qBEhJBJB1YPInoAQpMLhDuj5aVOv1baGeIQSq1Fr3OCqzvsoQcSBSwGId/Ja2PA== + dependencies: + stream-buffers "~2.2.0" + + bplist-parser@0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/bplist-parser/-/bplist-parser-0.2.0.tgz#43a9d183e5bf9d545200ceac3e712f79ebbe8d0e" + integrity sha512-z0M+byMThzQmD9NILRniCUXYsYpjwnlO8N5uCFaCqIOpqRsJCrQL9NK3JsD67CN5a08nF5oIL2bD6loTdHOuKw== + dependencies: + big-integer "^1.6.44" + + brace-expansion@^1.1.7: + version "1.1.11" + resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" + integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== + dependencies: + balanced-match "^1.0.0" + concat-map "0.0.1" + + braces@^2.3.1: + version "2.3.2" + resolved "https://registry.yarnpkg.com/braces/-/braces-2.3.2.tgz#5979fd3f14cd531565e5fa2df1abfff1dfaee729" + integrity sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w== + dependencies: + arr-flatten "^1.1.0" + array-unique "^0.3.2" + extend-shallow "^2.0.1" + fill-range "^4.0.0" + isobject "^3.0.1" + repeat-element "^1.1.2" + snapdragon "^0.8.1" + snapdragon-node "^2.0.1" + split-string "^3.0.2" + to-regex "^3.0.1" + + braces@^3.0.1, braces@~3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107" + integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== + dependencies: + fill-range "^7.0.1" + + browser-process-hrtime@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz#3c9b4b7d782c8121e56f10106d84c0d0ffc94626" + integrity sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow== + + browser-resolve@^1.11.3: + version "1.11.3" + resolved "https://registry.yarnpkg.com/browser-resolve/-/browser-resolve-1.11.3.tgz#9b7cbb3d0f510e4cb86bdbd796124d28b5890af6" + integrity sha512-exDi1BYWB/6raKHmDTCicQfTkqwN5fioMFV4j8BsfMU4R2DK/QfZfK7kOVkmWCNANf0snkBzqGqAJBao9gZMdQ== + dependencies: + resolve "1.1.7" + + bser@2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/bser/-/bser-2.1.1.tgz#e6787da20ece9d07998533cfd9de6f5c38f4bc05" + integrity sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ== + dependencies: + node-int64 "^0.4.0" + + buffer-crc32@^0.2.13: + version "0.2.13" + resolved "https://registry.yarnpkg.com/buffer-crc32/-/buffer-crc32-0.2.13.tgz#0d333e3f00eac50aa1454abd30ef8c2a5d9a7242" + integrity sha1-DTM+PwDqxQqhRUq9MO+MKl2ackI= + + buffer-from@^1.0.0: + version "1.1.1" + resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.1.tgz#32713bc028f75c02fdb710d7c7bcec1f2c6070ef" + integrity sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A== + + bytes@3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.0.0.tgz#d32815404d689699f85a4ea4fa8755dd13a96048" + integrity sha1-0ygVQE1olpn4Wk6k+odV3ROpYEg= + + bytes@3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.1.0.tgz#f6cf7933a360e0588fa9fde85651cdc7f805d1f6" + integrity sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg== + + cache-base@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/cache-base/-/cache-base-1.0.1.tgz#0a7f46416831c8b662ee36fe4e7c59d76f666ab2" + integrity sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ== + dependencies: + collection-visit "^1.0.0" + component-emitter "^1.2.1" + get-value "^2.0.6" + has-value "^1.0.0" + isobject "^3.0.1" + set-value "^2.0.0" + to-object-path "^0.3.0" + union-value "^1.0.0" + unset-value "^1.0.0" + + cacheable-request@^6.0.0: + version "6.1.0" + resolved "https://registry.yarnpkg.com/cacheable-request/-/cacheable-request-6.1.0.tgz#20ffb8bd162ba4be11e9567d823db651052ca912" + integrity sha512-Oj3cAGPCqOZX7Rz64Uny2GYAZNliQSqfbePrgAQ1wKAihYmCUnraBtJtKcGR4xz7wF+LoJC+ssFZvv5BgF9Igg== + dependencies: + clone-response "^1.0.2" + get-stream "^5.1.0" + http-cache-semantics "^4.0.0" + keyv "^3.0.0" + lowercase-keys "^2.0.0" + normalize-url "^4.1.0" + responselike "^1.0.2" + + caller-callsite@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/caller-callsite/-/caller-callsite-2.0.0.tgz#847e0fce0a223750a9a027c54b33731ad3154134" + integrity sha1-hH4PzgoiN1CpoCfFSzNzGtMVQTQ= + dependencies: + callsites "^2.0.0" + + caller-path@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-2.0.0.tgz#468f83044e369ab2010fac5f06ceee15bb2cb1f4" + integrity sha1-Ro+DBE42mrIBD6xfBs7uFbsssfQ= + dependencies: + caller-callsite "^2.0.0" + + callsites@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/callsites/-/callsites-2.0.0.tgz#06eb84f00eea413da86affefacbffb36093b3c50" + integrity sha1-BuuE8A7qQT2oav/vrL/7Ngk7PFA= + + callsites@^3.0.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" + integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== + + camelcase@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd" + integrity sha1-1UVjW+HjPFQmScaRc+Xeas+uNN0= + + camelcase@^5.0.0, camelcase@^5.3.1: + version "5.3.1" + resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320" + integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg== + + canvas@^2.2.0, canvas@^2.6.1: + version "2.6.1" + resolved "https://registry.yarnpkg.com/canvas/-/canvas-2.6.1.tgz#0d087dd4d60f5a5a9efa202757270abea8bef89e" + integrity sha512-S98rKsPcuhfTcYbtF53UIJhcbgIAK533d1kJKMwsMwAIFgfd58MOyxRud3kktlzWiEkFliaJtvyZCBtud/XVEA== + dependencies: + nan "^2.14.0" + node-pre-gyp "^0.11.0" + simple-get "^3.0.3" + + capture-exit@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/capture-exit/-/capture-exit-2.0.0.tgz#fb953bfaebeb781f62898239dabb426d08a509a4" + integrity sha512-PiT/hQmTonHhl/HFGN+Lx3JJUznrVYJ3+AQsnthneZbvW7x+f08Tk7yLJTLEOUvBTbduLeeBkxEaYXUOUrRq6g== + dependencies: + rsvp "^4.8.4" + + caseless@~0.12.0: + version "0.12.0" + resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" + integrity sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw= + + chalk@^1.0.0, chalk@^1.1.3: + version "1.1.3" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" + integrity sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg= + dependencies: + ansi-styles "^2.2.1" + escape-string-regexp "^1.0.2" + has-ansi "^2.0.0" + strip-ansi "^3.0.0" + supports-color "^2.0.0" + + chalk@^2.0.0, chalk@^2.0.1, chalk@^2.1.0, chalk@^2.4.1, chalk@^2.4.2: + version "2.4.2" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" + integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== + dependencies: + ansi-styles "^3.2.1" + escape-string-regexp "^1.0.5" + supports-color "^5.3.0" + + chalk@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-3.0.0.tgz#3f73c2bf526591f574cc492c51e2456349f844e4" + integrity sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg== + dependencies: + ansi-styles "^4.1.0" + supports-color "^7.1.0" + + change-emitter@^0.1.2: + version "0.1.6" + resolved "https://registry.yarnpkg.com/change-emitter/-/change-emitter-0.1.6.tgz#e8b2fe3d7f1ab7d69a32199aff91ea6931409515" + integrity sha1-6LL+PX8at9aaMhma/5HqaTFAlRU= + + chardet@^0.4.0: + version "0.4.2" + resolved "https://registry.yarnpkg.com/chardet/-/chardet-0.4.2.tgz#b5473b33dc97c424e5d98dc87d55d4d8a29c8bf2" + integrity sha1-tUc7M9yXxCTl2Y3IfVXU2KKci/I= + + chardet@^0.7.0: + version "0.7.0" + resolved "https://registry.yarnpkg.com/chardet/-/chardet-0.7.0.tgz#90094849f0937f2eedc2425d0d28a9e5f0cbad9e" + integrity sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA== + + chokidar@^3.2.2: + version "3.3.1" + resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.3.1.tgz#c84e5b3d18d9a4d77558fef466b1bf16bbeb3450" + integrity sha512-4QYCEWOcK3OJrxwvyyAOxFuhpvOVCYkr33LPfFNBjAD/w3sEzWsp2BUOkI4l9bHvWioAd0rc6NlHUOEaWkTeqg== + dependencies: + anymatch "~3.1.1" + braces "~3.0.2" + glob-parent "~5.1.0" + is-binary-path "~2.1.0" + is-glob "~4.0.1" + normalize-path "~3.0.0" + readdirp "~3.3.0" + optionalDependencies: + fsevents "~2.1.2" + + chownr@^1.1.1: + version "1.1.4" + resolved "https://registry.yarnpkg.com/chownr/-/chownr-1.1.4.tgz#6fc9d7b42d32a583596337666e7d08084da2cc6b" + integrity sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg== + + ci-info@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-2.0.0.tgz#67a9e964be31a51e15e5010d58e6f12834002f46" + integrity sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ== + + class-utils@^0.3.5: + version "0.3.6" + resolved "https://registry.yarnpkg.com/class-utils/-/class-utils-0.3.6.tgz#f93369ae8b9a7ce02fd41faad0ca83033190c463" + integrity sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg== + dependencies: + arr-union "^3.1.0" + define-property "^0.2.5" + isobject "^3.0.0" + static-extend "^0.1.1" + + cli-boxes@^2.2.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/cli-boxes/-/cli-boxes-2.2.0.tgz#538ecae8f9c6ca508e3c3c95b453fe93cb4c168d" + integrity sha512-gpaBrMAizVEANOpfZp/EEUixTXDyGt7DFzdK5hU+UbWt/J0lB0w20ncZj59Z9a93xHb9u12zF5BS6i9RKbtg4w== + + cli-cursor@^2.0.0, cli-cursor@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5" + integrity sha1-s12sN2R5+sw+lHR9QdDQ9SOP/LU= + dependencies: + restore-cursor "^2.0.0" + + cli-cursor@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-3.1.0.tgz#264305a7ae490d1d03bf0c9ba7c925d1753af307" + integrity sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw== + dependencies: + restore-cursor "^3.1.0" + + cli-spinners@^2.0.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/cli-spinners/-/cli-spinners-2.3.0.tgz#0632239a4b5aa4c958610142c34bb7a651fc8df5" + integrity sha512-Xs2Hf2nzrvJMFKimOR7YR0QwZ8fc0u98kdtwN1eNAZzNQgH3vK2pXzff6GJtKh7S5hoJ87ECiAiZFS2fb5Ii2w== + + cli-truncate@^0.2.1: + version "0.2.1" + resolved "https://registry.yarnpkg.com/cli-truncate/-/cli-truncate-0.2.1.tgz#9f15cfbb0705005369216c626ac7d05ab90dd574" + integrity sha1-nxXPuwcFAFNpIWxiasfQWrkN1XQ= + dependencies: + slice-ansi "0.0.4" + string-width "^1.0.1" + + cli-width@^2.0.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.2.0.tgz#ff19ede8a9a5e579324147b0c11f0fbcbabed639" + integrity sha1-/xnt6Kml5XkyQUewwR8PvLq+1jk= + + cliui@^3.2.0: + version "3.2.0" + resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d" + integrity sha1-EgYBU3qRbSmUD5NNo7SNWFo5IT0= + dependencies: + string-width "^1.0.1" + strip-ansi "^3.0.1" + wrap-ansi "^2.0.0" + + cliui@^4.0.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/cliui/-/cliui-4.1.0.tgz#348422dbe82d800b3022eef4f6ac10bf2e4d1b49" + integrity sha512-4FG+RSG9DL7uEwRUZXZn3SS34DiDPfzP0VOiEwtUWlE+AR2EIg+hSyvrIgUUfhdgR/UkAeW2QHgeP+hWrXs7jQ== + dependencies: + string-width "^2.1.1" + strip-ansi "^4.0.0" + wrap-ansi "^2.0.0" + + cliui@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/cliui/-/cliui-5.0.0.tgz#deefcfdb2e800784aa34f46fa08e06851c7bbbc5" + integrity sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA== + dependencies: + string-width "^3.1.0" + strip-ansi "^5.2.0" + wrap-ansi "^5.1.0" + + cliui@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/cliui/-/cliui-6.0.0.tgz#511d702c0c4e41ca156d7d0e96021f23e13225b1" + integrity sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ== + dependencies: + string-width "^4.2.0" + strip-ansi "^6.0.0" + wrap-ansi "^6.2.0" + + clone-response@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/clone-response/-/clone-response-1.0.2.tgz#d1dc973920314df67fbeb94223b4ee350239e96b" + integrity sha1-0dyXOSAxTfZ/vrlCI7TuNQI56Ws= + dependencies: + mimic-response "^1.0.0" + + clone@^1.0.2: + version "1.0.4" + resolved "https://registry.yarnpkg.com/clone/-/clone-1.0.4.tgz#da309cc263df15994c688ca902179ca3c7cd7c7e" + integrity sha1-2jCcwmPfFZlMaIypAheco8fNfH4= + + co@^4.6.0: + version "4.6.0" + resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" + integrity sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ= + + code-point-at@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" + integrity sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c= + + collect-v8-coverage@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/collect-v8-coverage/-/collect-v8-coverage-1.0.1.tgz#cc2c8e94fc18bbdffe64d6534570c8a673b27f59" + integrity sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg== + + collection-visit@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/collection-visit/-/collection-visit-1.0.0.tgz#4bc0373c164bc3291b4d368c829cf1a80a59dca0" + integrity sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA= + dependencies: + map-visit "^1.0.0" + object-visit "^1.0.0" + + color-convert@^1.9.0, color-convert@^1.9.1: + version "1.9.3" + resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" + integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== + dependencies: + color-name "1.1.3" + + color-convert@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" + integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== + dependencies: + color-name "~1.1.4" + + color-name@1.1.3: + version "1.1.3" + resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" + integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU= + + color-name@^1.0.0, color-name@~1.1.4: + version "1.1.4" + resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" + integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== + + color-string@^1.5.2: + version "1.5.3" + resolved "https://registry.yarnpkg.com/color-string/-/color-string-1.5.3.tgz#c9bbc5f01b58b5492f3d6857459cb6590ce204cc" + integrity sha512-dC2C5qeWoYkxki5UAXapdjqO672AM4vZuPGRQfO8b5HKuKGBbKWpITyDYN7TOFKvRW7kOgAn3746clDBMDJyQw== + dependencies: + color-name "^1.0.0" + simple-swizzle "^0.2.2" + + color-support@^1.1.3: + version "1.1.3" + resolved "https://registry.yarnpkg.com/color-support/-/color-support-1.1.3.tgz#93834379a1cc9a0c61f82f52f0d04322251bd5a2" + integrity sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg== + + color@^3.1.0, color@^3.1.2: + version "3.1.2" + resolved "https://registry.yarnpkg.com/color/-/color-3.1.2.tgz#68148e7f85d41ad7649c5fa8c8106f098d229e10" + integrity sha512-vXTJhHebByxZn3lDvDJYw4lR5+uB3vuoHsuYA5AKuxRVn5wzzIfQKGLBmgdVRHKTJYeK5rvJcHnrd0Li49CFpg== + dependencies: + color-convert "^1.9.1" + color-string "^1.5.2" + + colorette@^1.0.7: + version "1.1.0" + resolved "https://registry.yarnpkg.com/colorette/-/colorette-1.1.0.tgz#1f943e5a357fac10b4e0f5aaef3b14cdc1af6ec7" + integrity sha512-6S062WDQUXi6hOfkO/sBPVwE5ASXY4G2+b4atvhJfSsuUUhIaUKlkjLe9692Ipyt5/a+IPF5aVTu3V5gvXq5cg== + + combined-stream@^1.0.6, combined-stream@~1.0.6: + version "1.0.8" + resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.8.tgz#c3d45a8b34fd730631a110a8a2520682b31d5a7f" + integrity sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg== + dependencies: + delayed-stream "~1.0.0" + + command-exists@^1.2.8: + version "1.2.8" + resolved "https://registry.yarnpkg.com/command-exists/-/command-exists-1.2.8.tgz#715acefdd1223b9c9b37110a149c6392c2852291" + integrity sha512-PM54PkseWbiiD/mMsbvW351/u+dafwTJ0ye2qB60G1aGQP9j3xK2gmMDc+R34L3nDtx4qMCitXT75mkbkGJDLw== + + commander@^2.11.0, commander@^2.19.0, commander@~2.20.3: + version "2.20.3" + resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33" + integrity sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ== + + commander@^4.0.1: + version "4.1.1" + resolved "https://registry.yarnpkg.com/commander/-/commander-4.1.1.tgz#9fd602bd936294e9e9ef46a3f4d6964044b18068" + integrity sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA== + + commander@~2.13.0: + version "2.13.0" + resolved "https://registry.yarnpkg.com/commander/-/commander-2.13.0.tgz#6964bca67685df7c1f1430c584f07d7597885b9c" + integrity sha512-MVuS359B+YzaWqjCL/c+22gfryv+mCBPHAv3zyVI2GN8EY6IRP8VwtasXn8jyyhvvq84R4ImN1OKRtcbIasjYA== + + commondir@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b" + integrity sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs= + + compare-versions@^3.4.0: + version "3.6.0" + resolved "https://registry.yarnpkg.com/compare-versions/-/compare-versions-3.6.0.tgz#1a5689913685e5a87637b8d3ffca75514ec41d62" + integrity sha512-W6Af2Iw1z4CB7q4uU4hv646dW9GQuBM+YpC0UvUCWSD8w90SJjp+ujJuXaEMtAXBtSqGfMPuFOVn4/+FlaqfBA== + + component-emitter@^1.2.0, component-emitter@^1.2.1: + version "1.3.0" + resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.3.0.tgz#16e4070fba8ae29b679f2215853ee181ab2eabc0" + integrity sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg== + + compressible@~2.0.16: + version "2.0.18" + resolved "https://registry.yarnpkg.com/compressible/-/compressible-2.0.18.tgz#af53cca6b070d4c3c0750fbd77286a6d7cc46fba" + integrity sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg== + dependencies: + mime-db ">= 1.43.0 < 2" + + compression@^1.7.1: + version "1.7.4" + resolved "https://registry.yarnpkg.com/compression/-/compression-1.7.4.tgz#95523eff170ca57c29a0ca41e6fe131f41e5bb8f" + integrity sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ== + dependencies: + accepts "~1.3.5" + bytes "3.0.0" + compressible "~2.0.16" + debug "2.6.9" + on-headers "~1.0.2" + safe-buffer "5.1.2" + vary "~1.1.2" + + concat-map@0.0.1: + version "0.0.1" + resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" + integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s= + + concat-stream@^1.6.0: + version "1.6.2" + resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.2.tgz#904bdf194cd3122fc675c77fc4ac3d4ff0fd1a34" + integrity sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw== + dependencies: + buffer-from "^1.0.0" + inherits "^2.0.3" + readable-stream "^2.2.2" + typedarray "^0.0.6" + + configstore@^5.0.1: + version "5.0.1" + resolved "https://registry.yarnpkg.com/configstore/-/configstore-5.0.1.tgz#d365021b5df4b98cdd187d6a3b0e3f6a7cc5ed96" + integrity sha512-aMKprgk5YhBNyH25hj8wGt2+D52Sw1DRRIzqBwLp2Ya9mFmY8KPvvtvmna8SxVR9JMZ4kzMD68N22vlaRpkeFA== + dependencies: + dot-prop "^5.2.0" + graceful-fs "^4.1.2" + make-dir "^3.0.0" + unique-string "^2.0.0" + write-file-atomic "^3.0.0" + xdg-basedir "^4.0.0" + + confusing-browser-globals@^1.0.9: + version "1.0.9" + resolved "https://registry.yarnpkg.com/confusing-browser-globals/-/confusing-browser-globals-1.0.9.tgz#72bc13b483c0276801681871d4898516f8f54fdd" + integrity sha512-KbS1Y0jMtyPgIxjO7ZzMAuUpAKMt1SzCL9fsrKsX6b0zJPTaT0SiSPmewwVZg9UAO83HVIlEhZF84LIjZ0lmAw== + + connect@^3.6.5: + version "3.7.0" + resolved "https://registry.yarnpkg.com/connect/-/connect-3.7.0.tgz#5d49348910caa5e07a01800b030d0c35f20484f8" + integrity sha512-ZqRXc+tZukToSNmh5C2iWMSoV3X1YUcPbqEM4DkEG5tNQXrQUZCNVGGv3IuicnkMtPfGf3Xtp8WCXs295iQ1pQ== + dependencies: + debug "2.6.9" + finalhandler "1.1.2" + parseurl "~1.3.3" + utils-merge "1.0.1" + + console-control-strings@^1.0.0, console-control-strings@~1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" + integrity sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4= + + contains-path@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/contains-path/-/contains-path-0.1.0.tgz#fe8cf184ff6670b6baef01a9d4861a5cbec4120a" + integrity sha1-/ozxhP9mcLa67wGp1IYaXL7EEgo= + + content-disposition@0.5.3: + version "0.5.3" + resolved "https://registry.yarnpkg.com/content-disposition/-/content-disposition-0.5.3.tgz#e130caf7e7279087c5616c2007d0485698984fbd" + integrity sha512-ExO0774ikEObIAEV9kDo50o+79VCUdEB6n6lzKgGwupcVeRlhrj3qGAfwq8G6uBJjkqLrhT0qEYFcWng8z1z0g== + dependencies: + safe-buffer "5.1.2" + + content-type@~1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.4.tgz#e138cc75e040c727b1966fe5e5f8c9aee256fe3b" + integrity sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA== + + convert-source-map@^1.4.0, convert-source-map@^1.6.0, convert-source-map@^1.7.0: + version "1.7.0" + resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.7.0.tgz#17a2cb882d7f77d3490585e2ce6c524424a3a442" + integrity sha512-4FJkXzKXEDB1snCFZlLP4gpC3JILicCpGbzG9f9G7tGqGCzETQ2hWPrcinA9oU4wtf2biUaEH5065UnMeR33oA== + dependencies: + safe-buffer "~5.1.1" + + cookie-signature@1.0.6: + version "1.0.6" + resolved "https://registry.yarnpkg.com/cookie-signature/-/cookie-signature-1.0.6.tgz#e303a882b342cc3ee8ca513a79999734dab3ae2c" + integrity sha1-4wOogrNCzD7oylE6eZmXNNqzriw= + + cookie@0.4.0: + version "0.4.0" + resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.4.0.tgz#beb437e7022b3b6d49019d088665303ebe9c14ba" + integrity sha512-+Hp8fLp57wnUSt0tY0tHEXh4voZRDnoIrZPqlo3DPiI4y9lwg/jqx+1Om94/W6ZaPDOUbnjOt/99w66zk+l1Xg== + + cookiejar@^2.1.0: + version "2.1.2" + resolved "https://registry.yarnpkg.com/cookiejar/-/cookiejar-2.1.2.tgz#dd8a235530752f988f9a0844f3fc589e3111125c" + integrity sha512-Mw+adcfzPxcPeI+0WlvRrr/3lGVO0bD75SxX6811cxSh1Wbxx7xZBGK1eVtDf6si8rg2lhnUjsVLMFMfbRIuwA== + + copy-descriptor@^0.1.0: + version "0.1.1" + resolved "https://registry.yarnpkg.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d" + integrity sha1-Z29us8OZl8LuGsOpJP1hJHSPV40= + + core-js-pure@^3.0.0: + version "3.6.4" + resolved "https://registry.yarnpkg.com/core-js-pure/-/core-js-pure-3.6.4.tgz#4bf1ba866e25814f149d4e9aaa08c36173506e3a" + integrity sha512-epIhRLkXdgv32xIUFaaAry2wdxZYBi6bgM7cB136dzzXXa+dFyRLTZeLUJxnd8ShrmyVXBub63n2NHo2JAt8Cw== + + core-js@^1.0.0: + version "1.2.7" + resolved "https://registry.yarnpkg.com/core-js/-/core-js-1.2.7.tgz#652294c14651db28fa93bd2d5ff2983a4f08c636" + integrity sha1-ZSKUwUZR2yj6k70tX/KYOk8IxjY= + + core-js@^2.2.2, core-js@^2.4.0, core-js@^2.4.1: + version "2.6.11" + resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.6.11.tgz#38831469f9922bded8ee21c9dc46985e0399308c" + integrity sha512-5wjnpaT/3dV+XB4borEsnAYQchn00XSgTAWKDkEqv+K8KevjbzmofK6hfJ9TZIlpj2N0xQpazy7PiRQiWHqzWg== + + core-js@^3: + version "3.6.4" + resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.6.4.tgz#440a83536b458114b9cb2ac1580ba377dc470647" + integrity sha512-4paDGScNgZP2IXXilaffL9X7968RuvwlkK3xWtZRVqgd8SYNiVKRJvkFd1aqqEuPfN7E68ZHEp9hDj6lHj4Hyw== + + core-util-is@1.0.2, core-util-is@^1.0.2, core-util-is@~1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" + integrity sha1-tf1UIgqivFq1eqtxQMlAdUUDwac= + + cosmiconfig@^5.0.5, cosmiconfig@^5.1.0, cosmiconfig@^5.2.1: + version "5.2.1" + resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-5.2.1.tgz#040f726809c591e77a17c0a3626ca45b4f168b1a" + integrity sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA== + dependencies: + import-fresh "^2.0.0" + is-directory "^0.3.1" + js-yaml "^3.13.1" + parse-json "^4.0.0" + + cosmiconfig@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-6.0.0.tgz#da4fee853c52f6b1e6935f41c1a2fc50bd4a9982" + integrity sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg== + dependencies: + "@types/parse-json" "^4.0.0" + import-fresh "^3.1.0" + parse-json "^5.0.0" + path-type "^4.0.0" + yaml "^1.7.2" + + create-react-class@^15.6.2, create-react-class@^15.6.3: + version "15.6.3" + resolved "https://registry.yarnpkg.com/create-react-class/-/create-react-class-15.6.3.tgz#2d73237fb3f970ae6ebe011a9e66f46dbca80036" + integrity sha512-M+/3Q6E6DLO6Yx3OwrWjwHBnvfXXYA7W+dFjt/ZDBemHO1DDZhsalX/NUtnTYclN6GfnBDRh4qRHjcDHmlJBJg== + dependencies: + fbjs "^0.8.9" + loose-envify "^1.3.1" + object-assign "^4.1.1" + + cross-spawn@^5.0.1, cross-spawn@^5.1.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" + integrity sha1-6L0O/uWPz/b4+UUQoKVUu/ojVEk= + dependencies: + lru-cache "^4.0.1" + shebang-command "^1.2.0" + which "^1.2.9" + + cross-spawn@^6.0.0, cross-spawn@^6.0.5: + version "6.0.5" + resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-6.0.5.tgz#4a5ec7c64dfae22c3a14124dbacdee846d80cbc4" + integrity sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ== + dependencies: + nice-try "^1.0.4" + path-key "^2.0.1" + semver "^5.5.0" + shebang-command "^1.2.0" + which "^1.2.9" + + cross-spawn@^7.0.0: + version "7.0.2" + resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.2.tgz#d0d7dcfa74e89115c7619f4f721a94e1fdb716d6" + integrity sha512-PD6G8QG3S4FK/XCGFbEQrDqO2AnMMsy0meR7lerlIOHAAbkuavGU/pOqprrlvfTNjvowivTeBsjebAL0NSoMxw== + dependencies: + path-key "^3.1.0" + shebang-command "^2.0.0" + which "^2.0.1" + + crypto-random-string@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/crypto-random-string/-/crypto-random-string-2.0.0.tgz#ef2a7a966ec11083388369baa02ebead229b30d5" + integrity sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA== + + css-in-js-utils@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/css-in-js-utils/-/css-in-js-utils-2.0.1.tgz#3b472b398787291b47cfe3e44fecfdd9e914ba99" + integrity sha512-PJF0SpJT+WdbVVt0AOYp9C8GnuruRlL/UFW7932nLWmFLQTaWEzTBQEx7/hn4BuV+WON75iAViSUJLiU3PKbpA== + dependencies: + hyphenate-style-name "^1.0.2" + isobject "^3.0.1" + + cssom@^0.4.1: + version "0.4.4" + resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.4.4.tgz#5a66cf93d2d0b661d80bf6a44fb65f5c2e4e0a10" + integrity sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw== + + cssom@~0.3.6: + version "0.3.8" + resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.3.8.tgz#9f1276f5b2b463f2114d3f2c75250af8c1a36f4a" + integrity sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg== + + cssstyle@^2.0.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-2.2.0.tgz#e4c44debccd6b7911ed617a4395e5754bba59992" + integrity sha512-sEb3XFPx3jNnCAMtqrXPDeSgQr+jojtCeNf8cvMNMh1cG970+lljssvQDzPq6lmmJu2Vhqood/gtEomBiHOGnA== + dependencies: + cssom "~0.3.6" + + csstype@^2.2.0: + version "2.6.10" + resolved "https://registry.yarnpkg.com/csstype/-/csstype-2.6.10.tgz#e63af50e66d7c266edb6b32909cfd0aabe03928b" + integrity sha512-D34BqZU4cIlMCY93rZHbrq9pjTAQJ3U8S8rfBqjwHxkGPThWFjzZDQpgMJY0QViLxth6ZKYiwFBo14RdN44U/w== + + damerau-levenshtein@^1.0.4: + version "1.0.6" + resolved "https://registry.yarnpkg.com/damerau-levenshtein/-/damerau-levenshtein-1.0.6.tgz#143c1641cb3d85c60c32329e26899adea8701791" + integrity sha512-JVrozIeElnj3QzfUIt8tB8YMluBJom4Vw9qTPpjGYQ9fYlB3D/rb6OordUxf3xeFB35LKWs0xqcO5U6ySvBtug== + + dashdash@^1.12.0: + version "1.14.1" + resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" + integrity sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA= + dependencies: + assert-plus "^1.0.0" + + data-urls@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/data-urls/-/data-urls-1.1.0.tgz#15ee0582baa5e22bb59c77140da8f9c76963bbfe" + integrity sha512-YTWYI9se1P55u58gL5GkQHW4P6VJBJ5iBT+B5a7i2Tjadhv52paJG0qHX4A0OR6/t52odI64KP2YvFpkDOi3eQ== + dependencies: + abab "^2.0.0" + whatwg-mimetype "^2.2.0" + whatwg-url "^7.0.0" + + date-fns@^1.27.2: + version "1.30.1" + resolved "https://registry.yarnpkg.com/date-fns/-/date-fns-1.30.1.tgz#2e71bf0b119153dbb4cc4e88d9ea5acfb50dc05c" + integrity sha512-hBSVCvSmWC+QypYObzwGOd9wqdDpOt+0wl0KbU+R+uuZBS1jN8VsD1ss3irQDknRj5NvxiTF6oj/nDRnN/UQNw== + + dayjs@^1.8.15: + version "1.8.23" + resolved "https://registry.yarnpkg.com/dayjs/-/dayjs-1.8.23.tgz#07b5a8e759c4d75ae07bdd0ad6977f851c01e510" + integrity sha512-NmYHMFONftoZbeOhVz6jfiXI4zSiPN6NoVWJgC0aZQfYVwzy/ZpESPHuCcI0B8BUMpSJQ08zenHDbofOLKq8hQ== + + debounce@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/debounce/-/debounce-1.2.0.tgz#44a540abc0ea9943018dc0eaa95cce87f65cd131" + integrity sha512-mYtLl1xfZLi1m4RtQYlZgJUNQjl4ZxVnHzIR8nLLgi4q1YT8o/WM+MK/f8yfcc9s5Ir5zRaPZyZU6xs1Syoocg== + + debug@2.6.9, debug@^2.2.0, debug@^2.3.3, debug@^2.6.8, debug@^2.6.9: + version "2.6.9" + resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" + integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA== + dependencies: + ms "2.0.0" + + debug@^3.1.0, debug@^3.2.6: + version "3.2.6" + resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.6.tgz#e83d17de16d8a7efb7717edbe5fb10135eee629b" + integrity sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ== + dependencies: + ms "^2.1.1" + + debug@^4.0.1, debug@^4.1.0, debug@^4.1.1: + version "4.1.1" + resolved "https://registry.yarnpkg.com/debug/-/debug-4.1.1.tgz#3b72260255109c6b589cee050f1d516139664791" + integrity sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw== + dependencies: + ms "^2.1.1" + + decamelize@^1.1.1, decamelize@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" + integrity sha1-9lNNFRSCabIDUue+4m9QH5oZEpA= + + decode-uri-component@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.0.tgz#eb3913333458775cb84cd1a1fae062106bb87545" + integrity sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU= + + decompress-response@^3.3.0: + version "3.3.0" + resolved "https://registry.yarnpkg.com/decompress-response/-/decompress-response-3.3.0.tgz#80a4dd323748384bfa248083622aedec982adff3" + integrity sha1-gKTdMjdIOEv6JICDYirt7Jgq3/M= + dependencies: + mimic-response "^1.0.0" + + decompress-response@^4.2.0: + version "4.2.1" + resolved "https://registry.yarnpkg.com/decompress-response/-/decompress-response-4.2.1.tgz#414023cc7a302da25ce2ec82d0d5238ccafd8986" + integrity sha512-jOSne2qbyE+/r8G1VU+G/82LBs2Fs4LAsTiLSHOCOMZQl2OKZ6i8i4IyHemTe+/yIXOtTcRQMzPcgyhoFlqPkw== + dependencies: + mimic-response "^2.0.0" + + dedent@^0.7.0: + version "0.7.0" + resolved "https://registry.yarnpkg.com/dedent/-/dedent-0.7.0.tgz#2495ddbaf6eb874abb0e1be9df22d2e5a544326c" + integrity sha1-JJXduvbrh0q7Dhvp3yLS5aVEMmw= + + deep-assign@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/deep-assign/-/deep-assign-3.0.0.tgz#c8e4c4d401cba25550a2f0f486a2e75bc5f219a2" + integrity sha512-YX2i9XjJ7h5q/aQ/IM9PEwEnDqETAIYbggmdDB3HLTlSgo1CxPsj6pvhPG68rq6SVE0+p+6Ywsm5fTYNrYtBWw== + dependencies: + is-obj "^1.0.0" + + deep-extend@^0.6.0: + version "0.6.0" + resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.6.0.tgz#c4fa7c95404a17a9c3e8ca7e1537312b736330ac" + integrity sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA== + + deep-is@~0.1.3: + version "0.1.3" + resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" + integrity sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ= + + deepmerge@^3.1.0, deepmerge@^3.2.0: + version "3.3.0" + resolved "https://registry.yarnpkg.com/deepmerge/-/deepmerge-3.3.0.tgz#d3c47fd6f3a93d517b14426b0628a17b0125f5f7" + integrity sha512-GRQOafGHwMHpjPx9iCvTgpu9NojZ49q794EEL94JVEw6VaeA8XTUyBKvAkOOjBX9oJNiV6G3P+T+tihFjo2TqA== + + deepmerge@^4.2.2: + version "4.2.2" + resolved "https://registry.yarnpkg.com/deepmerge/-/deepmerge-4.2.2.tgz#44d2ea3679b8f4d4ffba33f03d865fc1e7bf4955" + integrity sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg== + + defaults@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/defaults/-/defaults-1.0.3.tgz#c656051e9817d9ff08ed881477f3fe4019f3ef7d" + integrity sha1-xlYFHpgX2f8I7YgUd/P+QBnz730= + dependencies: + clone "^1.0.2" + + defer-to-connect@^1.0.1: + version "1.1.3" + resolved "https://registry.yarnpkg.com/defer-to-connect/-/defer-to-connect-1.1.3.tgz#331ae050c08dcf789f8c83a7b81f0ed94f4ac591" + integrity sha512-0ISdNousHvZT2EiFlZeZAHBUvSxmKswVCEf8hW7KWgG4a8MVEu/3Vb6uWYozkjylyCxe0JBIiRB1jV45S70WVQ== + + define-properties@^1.1.2, define-properties@^1.1.3: + version "1.1.3" + resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.3.tgz#cf88da6cbee26fe6db7094f61d870cbd84cee9f1" + integrity sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ== + dependencies: + object-keys "^1.0.12" + + define-property@^0.2.5: + version "0.2.5" + resolved "https://registry.yarnpkg.com/define-property/-/define-property-0.2.5.tgz#c35b1ef918ec3c990f9a5bc57be04aacec5c8116" + integrity sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY= + dependencies: + is-descriptor "^0.1.0" + + define-property@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/define-property/-/define-property-1.0.0.tgz#769ebaaf3f4a63aad3af9e8d304c9bbe79bfb0e6" + integrity sha1-dp66rz9KY6rTr56NMEybvnm/sOY= + dependencies: + is-descriptor "^1.0.0" + + define-property@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/define-property/-/define-property-2.0.2.tgz#d459689e8d654ba77e02a817f8710d702cb16e9d" + integrity sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ== + dependencies: + is-descriptor "^1.0.2" + isobject "^3.0.1" + + delayed-stream@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" + integrity sha1-3zrhmayt+31ECqrgsp4icrJOxhk= + + delegates@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" + integrity sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o= + + denodeify@^1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/denodeify/-/denodeify-1.2.1.tgz#3a36287f5034e699e7577901052c2e6c94251631" + integrity sha1-OjYof1A05pnnV3kBBSwubJQlFjE= + + depd@~1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.2.tgz#9bcd52e14c097763e749b274c4346ed2e560b5a9" + integrity sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak= + + depd@~2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/depd/-/depd-2.0.0.tgz#b696163cc757560d09cf22cc8fad1571b79e76df" + integrity sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw== + + destroy@~1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.0.4.tgz#978857442c44749e4206613e37946205826abd80" + integrity sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA= + + detect-libc@^1.0.2: + version "1.0.3" + resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b" + integrity sha1-+hN8S9aY7fVc1c0CrFWfkaTEups= + + detect-newline@^3.0.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/detect-newline/-/detect-newline-3.1.0.tgz#576f5dfc63ae1a192ff192d8ad3af6308991b651" + integrity sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA== + + didyoumean@^1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/didyoumean/-/didyoumean-1.2.1.tgz#e92edfdada6537d484d73c0172fd1eba0c4976ff" + integrity sha1-6S7f2tplN9SE1zwBcv0eugxJdv8= + + diff-sequences@^24.9.0: + version "24.9.0" + resolved "https://registry.yarnpkg.com/diff-sequences/-/diff-sequences-24.9.0.tgz#5715d6244e2aa65f48bba0bc972db0b0b11e95b5" + integrity sha512-Dj6Wk3tWyTE+Fo1rW8v0Xhwk80um6yFYKbuAxc9c3EZxIHFDYwbi34Uk42u1CdnIiVorvt4RmlSDjIPyzGC2ew== + + diff-sequences@^25.2.6: + version "25.2.6" + resolved "https://registry.yarnpkg.com/diff-sequences/-/diff-sequences-25.2.6.tgz#5f467c00edd35352b7bca46d7927d60e687a76dd" + integrity sha512-Hq8o7+6GaZeoFjtpgvRBUknSXNeJiCx7V9Fr94ZMljNiCr9n9L8H8aJqgWOQiDDGdyn29fRNcDdRVJ5fdyihfg== + + doctrine@1.5.0: + version "1.5.0" + resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-1.5.0.tgz#379dce730f6166f76cefa4e6707a159b02c5a6fa" + integrity sha1-N53Ocw9hZvds76TmcHoVmwLFpvo= + dependencies: + esutils "^2.0.2" + isarray "^1.0.0" + + doctrine@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.1.0.tgz#5cd01fc101621b42c4cd7f5d1a66243716d3f39d" + integrity sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw== + dependencies: + esutils "^2.0.2" + + doctrine@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-3.0.0.tgz#addebead72a6574db783639dc87a121773973961" + integrity sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w== + dependencies: + esutils "^2.0.2" + + dom-walk@^0.1.0: + version "0.1.2" + resolved "https://registry.yarnpkg.com/dom-walk/-/dom-walk-0.1.2.tgz#0c548bef048f4d1f2a97249002236060daa3fd84" + integrity sha512-6QvTW9mrGeIegrFXdtQi9pk7O/nSK6lSdXW2eqUspN5LWD7UTji2Fqw5V2YLjBpHEoU9Xl/eUWNpDeZvoyOv2w== + + domexception@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/domexception/-/domexception-1.0.1.tgz#937442644ca6a31261ef36e3ec677fe805582c90" + integrity sha512-raigMkn7CJNNo6Ihro1fzG7wr3fHuYVytzquZKX5n0yizGsTcYgzdIUwj1X9pK0VvjeihV+XiclP+DjwbsSKug== + dependencies: + webidl-conversions "^4.0.2" + + dot-prop@^5.2.0: + version "5.2.0" + resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-5.2.0.tgz#c34ecc29556dc45f1f4c22697b6f4904e0cc4fcb" + integrity sha512-uEUyaDKoSQ1M4Oq8l45hSE26SnTxL6snNnqvK/VWx5wJhmff5z0FUVJDKDanor/6w3kzE3i7XZOk+7wC0EXr1A== + dependencies: + is-obj "^2.0.0" + + dotenv@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-2.0.0.tgz#bd759c357aaa70365e01c96b7b0bec08a6e0d949" + integrity sha1-vXWcNXqqcDZeAclrewvsCKbg2Uk= + + dotenv@^8.2.0: + version "8.2.0" + resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-8.2.0.tgz#97e619259ada750eea3e4ea3e26bceea5424b16a" + integrity sha512-8sJ78ElpbDJBHNeBzUbUVLsqKdccaa/BXF1uPTw3GrvQTBgrQrtObr2mUrE38vzYd8cEv+m/JBfDLioYcfXoaw== + + duplexer3@^0.1.4: + version "0.1.4" + resolved "https://registry.yarnpkg.com/duplexer3/-/duplexer3-0.1.4.tgz#ee01dd1cac0ed3cbc7fdbea37dc0a8f1ce002ce2" + integrity sha1-7gHdHKwO08vH/b6jfcCo8c4ALOI= + + ecc-jsbn@~0.1.1: + version "0.1.2" + resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz#3a83a904e54353287874c564b7549386849a98c9" + integrity sha1-OoOpBOVDUyh4dMVkt1SThoSamMk= + dependencies: + jsbn "~0.1.0" + safer-buffer "^2.1.0" + + ee-first@1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d" + integrity sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0= + + elegant-spinner@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/elegant-spinner/-/elegant-spinner-1.0.1.tgz#db043521c95d7e303fd8f345bedc3349cfb0729e" + integrity sha1-2wQ1IcldfjA/2PNFvtwzSc+wcp4= + + eme-encryption-scheme-polyfill@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/eme-encryption-scheme-polyfill/-/eme-encryption-scheme-polyfill-2.0.1.tgz#b080b01bffd74c75c9cf8044c1cabedf3b83954f" + integrity sha512-Wz+Ro1c0/2Wsx2RLFvTOO0m4LvYn+7cSnq3XOvRvLLBq8jbvUACH/zpU9s0/5+mQa5oaelkU69x+q0z/iWYrFA== + + emitter-component@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/emitter-component/-/emitter-component-1.1.1.tgz#065e2dbed6959bf470679edabeaf7981d1003ab6" + integrity sha1-Bl4tvtaVm/RwZ57avq95gdEAOrY= + + emoji-regex@^7.0.1, emoji-regex@^7.0.2: + version "7.0.3" + resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-7.0.3.tgz#933a04052860c85e83c122479c4748a8e4c72156" + integrity sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA== + + emoji-regex@^8.0.0: + version "8.0.0" + resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" + integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== + + encodeurl@~1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.2.tgz#ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59" + integrity sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k= + + encoding@^0.1.11: + version "0.1.12" + resolved "https://registry.yarnpkg.com/encoding/-/encoding-0.1.12.tgz#538b66f3ee62cd1ab51ec323829d1f9480c74beb" + integrity sha1-U4tm8+5izRq1HsMjgp0flIDHS+s= + dependencies: + iconv-lite "~0.4.13" + + end-of-stream@^1.1.0: + version "1.4.4" + resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.4.tgz#5ae64a5f45057baf3626ec14da0ca5e4b2431eb0" + integrity sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q== + dependencies: + once "^1.4.0" + + envinfo@^7.1.0: + version "7.5.0" + resolved "https://registry.yarnpkg.com/envinfo/-/envinfo-7.5.0.tgz#91410bb6db262fb4f1409bd506e9ff57e91023f4" + integrity sha512-jDgnJaF/Btomk+m3PZDTTCb5XIIIX3zYItnCRfF73zVgvinLoRomuhi75Y4su0PtQxWz4v66XnLLckyvyJTOIQ== + + error-ex@^1.2.0, error-ex@^1.3.1: + version "1.3.2" + resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" + integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g== + dependencies: + is-arrayish "^0.2.1" + + errorhandler@^1.5.0: + version "1.5.1" + resolved "https://registry.yarnpkg.com/errorhandler/-/errorhandler-1.5.1.tgz#b9ba5d17cf90744cd1e851357a6e75bf806a9a91" + integrity sha512-rcOwbfvP1WTViVoUjcfZicVzjhjTuhSMntHh6mW3IrEiyE6mJyXvsToJUJGlGlw/2xU9P5whlWNGlIDVeCiT4A== + dependencies: + accepts "~1.3.7" + escape-html "~1.0.3" + + es-abstract@^1.17.0, es-abstract@^1.17.0-next.1, es-abstract@^1.17.5: + version "1.17.5" + resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.17.5.tgz#d8c9d1d66c8981fb9200e2251d799eee92774ae9" + integrity sha512-BR9auzDbySxOcfog0tLECW8l28eRGpDpU3Dm3Hp4q/N+VtLTmyj4EUN088XZWQDW/hzj6sYRDXeOFsaAODKvpg== + dependencies: + es-to-primitive "^1.2.1" + function-bind "^1.1.1" + has "^1.0.3" + has-symbols "^1.0.1" + is-callable "^1.1.5" + is-regex "^1.0.5" + object-inspect "^1.7.0" + object-keys "^1.1.1" + object.assign "^4.1.0" + string.prototype.trimleft "^2.1.1" + string.prototype.trimright "^2.1.1" + + es-to-primitive@^1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.1.tgz#e55cd4c9cdc188bcefb03b366c736323fc5c898a" + integrity sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA== + dependencies: + is-callable "^1.1.4" + is-date-object "^1.0.1" + is-symbol "^1.0.2" + + es6-promise@4.2.8: + version "4.2.8" + resolved "https://registry.yarnpkg.com/es6-promise/-/es6-promise-4.2.8.tgz#4eb21594c972bc40553d276e510539143db53e0a" + integrity sha512-HJDGx5daxeIvxdBxvG2cb9g4tEvwIk3i8+nhX0yGrYmZUzbkdg8QbDevheDB8gd0//uPj4c1EQua8Q+MViT0/w== + + escape-goat@^2.0.0: + version "2.1.1" + resolved "https://registry.yarnpkg.com/escape-goat/-/escape-goat-2.1.1.tgz#1b2dc77003676c457ec760b2dc68edb648188675" + integrity sha512-8/uIhbG12Csjy2JEW7D9pHbreaVaS/OpN3ycnyvElTdwM5n6GY6W6e2IPemfvGZeUMqZ9A/3GqIZMgKnBhAw/Q== + + escape-html@~1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988" + integrity sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg= + + escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" + integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ= + + escodegen@^1.11.1: + version "1.14.1" + resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.14.1.tgz#ba01d0c8278b5e95a9a45350142026659027a457" + integrity sha512-Bmt7NcRySdIfNPfU2ZoXDrrXsG9ZjvDxcAlMfDUgRBjLOWTuIACXPBFJH7Z+cLb40JeQco5toikyc9t9P8E9SQ== + dependencies: + esprima "^4.0.1" + estraverse "^4.2.0" + esutils "^2.0.2" + optionator "^0.8.1" + optionalDependencies: + source-map "~0.6.1" + + eslint-config-airbnb-base@^14.1.0: + version "14.1.0" + resolved "https://registry.yarnpkg.com/eslint-config-airbnb-base/-/eslint-config-airbnb-base-14.1.0.tgz#2ba4592dd6843258221d9bff2b6831bd77c874e4" + integrity sha512-+XCcfGyCnbzOnktDVhwsCAx+9DmrzEmuwxyHUJpw+kqBVT744OUBrB09khgFKlK1lshVww6qXGsYPZpavoNjJw== + dependencies: + confusing-browser-globals "^1.0.9" + object.assign "^4.1.0" + object.entries "^1.1.1" + + eslint-config-airbnb@^18.0.1: + version "18.1.0" + resolved "https://registry.yarnpkg.com/eslint-config-airbnb/-/eslint-config-airbnb-18.1.0.tgz#724d7e93dadd2169492ff5363c5aaa779e01257d" + integrity sha512-kZFuQC/MPnH7KJp6v95xsLBf63G/w7YqdPfQ0MUanxQ7zcKUNG8j+sSY860g3NwCBOa62apw16J6pRN+AOgXzw== + dependencies: + eslint-config-airbnb-base "^14.1.0" + object.assign "^4.1.0" + object.entries "^1.1.1" + + eslint-config-prettier@^6.9.0: + version "6.10.1" + resolved "https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-6.10.1.tgz#129ef9ec575d5ddc0e269667bf09defcd898642a" + integrity sha512-svTy6zh1ecQojvpbJSgH3aei/Rt7C6i090l5f2WQ4aB05lYHeZIR1qL4wZyyILTbtmnbHP5Yn8MrsOJMGa8RkQ== + dependencies: + get-stdin "^6.0.0" + + eslint-import-resolver-node@^0.3.2: + version "0.3.3" + resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.3.tgz#dbaa52b6b2816b50bc6711af75422de808e98404" + integrity sha512-b8crLDo0M5RSe5YG8Pu2DYBj71tSB6OvXkfzwbJU2w7y8P4/yo0MyF8jU26IEuEuHF2K5/gcAJE3LhQGqBBbVg== + dependencies: + debug "^2.6.9" + resolve "^1.13.1" + + eslint-import-resolver-typescript@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/eslint-import-resolver-typescript/-/eslint-import-resolver-typescript-2.0.0.tgz#e95f126cc12d3018b9cc11692b4dbfd3e17d3ea6" + integrity sha512-bT5Frpl8UWoHBtY25vKUOMoVIMlJQOMefHLyQ4Tz3MQpIZ2N6yYKEEIHMo38bszBNUuMBW6M3+5JNYxeiGFH4w== + dependencies: + debug "^4.1.1" + is-glob "^4.0.1" + resolve "^1.12.0" + tiny-glob "^0.2.6" + tsconfig-paths "^3.9.0" + + eslint-module-utils@^2.4.1: + version "2.6.0" + resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.6.0.tgz#579ebd094f56af7797d19c9866c9c9486629bfa6" + integrity sha512-6j9xxegbqe8/kZY8cYpcp0xhbK0EgJlg3g9mib3/miLaExuuwc3n5UEfSnU6hWMbT0FAYVvDbL9RrRgpUeQIvA== + dependencies: + debug "^2.6.9" + pkg-dir "^2.0.0" + + eslint-plugin-import@^2.19.1: + version "2.20.2" + resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.20.2.tgz#91fc3807ce08be4837141272c8b99073906e588d" + integrity sha512-FObidqpXrR8OnCh4iNsxy+WACztJLXAHBO5hK79T1Hc77PgQZkyDGA5Ag9xAvRpglvLNxhH/zSmZ70/pZ31dHg== + dependencies: + array-includes "^3.0.3" + array.prototype.flat "^1.2.1" + contains-path "^0.1.0" + debug "^2.6.9" + doctrine "1.5.0" + eslint-import-resolver-node "^0.3.2" + eslint-module-utils "^2.4.1" + has "^1.0.3" + minimatch "^3.0.4" + object.values "^1.1.0" + read-pkg-up "^2.0.0" + resolve "^1.12.0" + + eslint-plugin-json@^2.0.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/eslint-plugin-json/-/eslint-plugin-json-2.1.1.tgz#7b9c4da2121f6f48d44efceb9a99ac0d4d12b299" + integrity sha512-Ktsab8ij33V2KFLhh4alC1FYztdmbV32DeMZYYUCZm4kKLW1s4DrleKKgtbAHSJsmshCK5QGOZtfyc2r3jCRsg== + dependencies: + lodash "^4.17.15" + vscode-json-languageservice "^3.5.1" + + eslint-plugin-jsx-a11y@^6.2.3: + version "6.2.3" + resolved "https://registry.yarnpkg.com/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.2.3.tgz#b872a09d5de51af70a97db1eea7dc933043708aa" + integrity sha512-CawzfGt9w83tyuVekn0GDPU9ytYtxyxyFZ3aSWROmnRRFQFT2BiPJd7jvRdzNDi6oLWaS2asMeYSNMjWTV4eNg== + dependencies: + "@babel/runtime" "^7.4.5" + aria-query "^3.0.0" + array-includes "^3.0.3" + ast-types-flow "^0.0.7" + axobject-query "^2.0.2" + damerau-levenshtein "^1.0.4" + emoji-regex "^7.0.2" + has "^1.0.3" + jsx-ast-utils "^2.2.1" + + eslint-plugin-prettier@^3.1.2: + version "3.1.2" + resolved "https://registry.yarnpkg.com/eslint-plugin-prettier/-/eslint-plugin-prettier-3.1.2.tgz#432e5a667666ab84ce72f945c72f77d996a5c9ba" + integrity sha512-GlolCC9y3XZfv3RQfwGew7NnuFDKsfI4lbvRK+PIIo23SFH+LemGs4cKwzAaRa+Mdb+lQO/STaIayno8T5sJJA== + dependencies: + prettier-linter-helpers "^1.0.0" + + eslint-plugin-react-hooks@^2.1.2: + version "2.5.1" + resolved "https://registry.yarnpkg.com/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-2.5.1.tgz#4ef5930592588ce171abeb26f400c7fbcbc23cd0" + integrity sha512-Y2c4b55R+6ZzwtTppKwSmK/Kar8AdLiC2f9NADCuxbcTgPPg41Gyqa6b9GppgXSvCtkRw43ZE86CT5sejKC6/g== + + eslint-plugin-react@^7.17.0: + version "7.19.0" + resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.19.0.tgz#6d08f9673628aa69c5559d33489e855d83551666" + integrity sha512-SPT8j72CGuAP+JFbT0sJHOB80TX/pu44gQ4vXH/cq+hQTiY2PuZ6IHkqXJV6x1b28GDdo1lbInjKUrrdUf0LOQ== + dependencies: + array-includes "^3.1.1" + doctrine "^2.1.0" + has "^1.0.3" + jsx-ast-utils "^2.2.3" + object.entries "^1.1.1" + object.fromentries "^2.0.2" + object.values "^1.1.1" + prop-types "^15.7.2" + resolve "^1.15.1" + semver "^6.3.0" + string.prototype.matchall "^4.0.2" + xregexp "^4.3.0" + + eslint-scope@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-5.0.0.tgz#e87c8887c73e8d1ec84f1ca591645c358bfc8fb9" + integrity sha512-oYrhJW7S0bxAFDvWqzvMPRm6pcgcnWc4QnofCAqRTRfQC0JcwenzGglTtsLyIuuWFfkqDG9vz67cnttSd53djw== + dependencies: + esrecurse "^4.1.0" + estraverse "^4.1.1" + + eslint-utils@^1.4.3: + version "1.4.3" + resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-1.4.3.tgz#74fec7c54d0776b6f67e0251040b5806564e981f" + integrity sha512-fbBN5W2xdY45KulGXmLHZ3c3FHfVYmKg0IrAKGOkT/464PQsx2UeIzfz1RmEci+KLm1bBaAzZAh8+/E+XAeZ8Q== + dependencies: + eslint-visitor-keys "^1.1.0" + + eslint-utils@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-2.0.0.tgz#7be1cc70f27a72a76cd14aa698bcabed6890e1cd" + integrity sha512-0HCPuJv+7Wv1bACm8y5/ECVfYdfsAm9xmVb7saeFlxjPYALefjhbYoCkBjPdPzGH8wWyTpAez82Fh3VKYEZ8OA== + dependencies: + eslint-visitor-keys "^1.1.0" + + eslint-visitor-keys@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.1.0.tgz#e2a82cea84ff246ad6fb57f9bde5b46621459ec2" + integrity sha512-8y9YjtM1JBJU/A9Kc+SbaOV4y29sSWckBwMHa+FGtVj5gN/sbnKDf6xJUl+8g7FAij9LVaP8C24DUiH/f/2Z9A== + + eslint@^6.8.0: + version "6.8.0" + resolved "https://registry.yarnpkg.com/eslint/-/eslint-6.8.0.tgz#62262d6729739f9275723824302fb227c8c93ffb" + integrity sha512-K+Iayyo2LtyYhDSYwz5D5QdWw0hCacNzyq1Y821Xna2xSJj7cijoLLYmLxTQgcgZ9mC61nryMy9S7GRbYpI5Ig== + dependencies: + "@babel/code-frame" "^7.0.0" + ajv "^6.10.0" + chalk "^2.1.0" + cross-spawn "^6.0.5" + debug "^4.0.1" + doctrine "^3.0.0" + eslint-scope "^5.0.0" + eslint-utils "^1.4.3" + eslint-visitor-keys "^1.1.0" + espree "^6.1.2" + esquery "^1.0.1" + esutils "^2.0.2" + file-entry-cache "^5.0.1" + functional-red-black-tree "^1.0.1" + glob-parent "^5.0.0" + globals "^12.1.0" + ignore "^4.0.6" + import-fresh "^3.0.0" + imurmurhash "^0.1.4" + inquirer "^7.0.0" + is-glob "^4.0.0" + js-yaml "^3.13.1" + json-stable-stringify-without-jsonify "^1.0.1" + levn "^0.3.0" + lodash "^4.17.14" + minimatch "^3.0.4" + mkdirp "^0.5.1" + natural-compare "^1.4.0" + optionator "^0.8.3" + progress "^2.0.0" + regexpp "^2.0.1" + semver "^6.1.2" + strip-ansi "^5.2.0" + strip-json-comments "^3.0.1" + table "^5.2.3" + text-table "^0.2.0" + v8-compile-cache "^2.0.3" + + espree@^6.1.2: + version "6.2.1" + resolved "https://registry.yarnpkg.com/espree/-/espree-6.2.1.tgz#77fc72e1fd744a2052c20f38a5b575832e82734a" + integrity sha512-ysCxRQY3WaXJz9tdbWOwuWr5Y/XrPTGX9Kiz3yoUXwW0VZ4w30HTkQLaGx/+ttFjF8i+ACbArnB4ce68a9m5hw== + dependencies: + acorn "^7.1.1" + acorn-jsx "^5.2.0" + eslint-visitor-keys "^1.1.0" + + esprima@^4.0.0, esprima@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" + integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== + + esquery@^1.0.1: + version "1.2.0" + resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.2.0.tgz#a010a519c0288f2530b3404124bfb5f02e9797fe" + integrity sha512-weltsSqdeWIX9G2qQZz7KlTRJdkkOCTPgLYJUz1Hacf48R4YOwGPHO3+ORfWedqJKbq5WQmsgK90n+pFLIKt/Q== + dependencies: + estraverse "^5.0.0" + + esrecurse@^4.1.0: + version "4.2.1" + resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.2.1.tgz#007a3b9fdbc2b3bb87e4879ea19c92fdbd3942cf" + integrity sha512-64RBB++fIOAXPw3P9cy89qfMlvZEXZkqqJkjqqXIvzP5ezRZjW+lPWjw35UX/3EhUPFYbg5ER4JYgDw4007/DQ== + dependencies: + estraverse "^4.1.0" + + estraverse@^4.1.0, estraverse@^4.1.1, estraverse@^4.2.0: + version "4.3.0" + resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.3.0.tgz#398ad3f3c5a24948be7725e83d11a7de28cdbd1d" + integrity sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw== + + estraverse@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.0.0.tgz#ac81750b482c11cca26e4b07e83ed8f75fbcdc22" + integrity sha512-j3acdrMzqrxmJTNj5dbr1YbjacrYgAxVMeF0gK16E3j494mOe7xygM/ZLIguEQ0ETwAg2hlJCtHRGav+y0Ny5A== + + esutils@^2.0.0, esutils@^2.0.2: + version "2.0.3" + resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64" + integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== + + etag@~1.8.1: + version "1.8.1" + resolved "https://registry.yarnpkg.com/etag/-/etag-1.8.1.tgz#41ae2eeb65efa62268aebfea83ac7d79299b0887" + integrity sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc= + + event-target-shim@^5.0.0, event-target-shim@^5.0.1: + version "5.0.1" + resolved "https://registry.yarnpkg.com/event-target-shim/-/event-target-shim-5.0.1.tgz#5d4d3ebdf9583d63a5333ce2deb7480ab2b05789" + integrity sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ== + + eventemitter3@^3.0.0: + version "3.1.2" + resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-3.1.2.tgz#2d3d48f9c346698fce83a85d7d664e98535df6e7" + integrity sha512-tvtQIeLVHjDkJYnzf2dgVMxfuSGJeM/7UCG17TT4EumTfNtF+0nebF/4zWOIkCreAbtNqhGEboB6BWrwqNaw4Q== + + exec-sh@^0.3.2: + version "0.3.4" + resolved "https://registry.yarnpkg.com/exec-sh/-/exec-sh-0.3.4.tgz#3a018ceb526cc6f6df2bb504b2bfe8e3a4934ec5" + integrity sha512-sEFIkc61v75sWeOe72qyrqg2Qg0OuLESziUDk/O/z2qgS15y2gWVFrI6f2Qn/qw/0/NCfCEsmNA4zOjkwEZT1A== + + execa@^0.7.0: + version "0.7.0" + resolved "https://registry.yarnpkg.com/execa/-/execa-0.7.0.tgz#944becd34cc41ee32a63a9faf27ad5a65fc59777" + integrity sha1-lEvs00zEHuMqY6n68nrVpl/Fl3c= + dependencies: + cross-spawn "^5.0.1" + get-stream "^3.0.0" + is-stream "^1.1.0" + npm-run-path "^2.0.0" + p-finally "^1.0.0" + signal-exit "^3.0.0" + strip-eof "^1.0.0" + + execa@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/execa/-/execa-1.0.0.tgz#c6236a5bb4df6d6f15e88e7f017798216749ddd8" + integrity sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA== + dependencies: + cross-spawn "^6.0.0" + get-stream "^4.0.0" + is-stream "^1.1.0" + npm-run-path "^2.0.0" + p-finally "^1.0.0" + signal-exit "^3.0.0" + strip-eof "^1.0.0" + + execa@^3.2.0, execa@^3.4.0: + version "3.4.0" + resolved "https://registry.yarnpkg.com/execa/-/execa-3.4.0.tgz#c08ed4550ef65d858fac269ffc8572446f37eb89" + integrity sha512-r9vdGQk4bmCuK1yKQu1KTwcT2zwfWdbdaXfCtAh+5nU/4fSX+JAb7vZGvI5naJrQlvONrEB20jeruESI69530g== + dependencies: + cross-spawn "^7.0.0" + get-stream "^5.0.0" + human-signals "^1.1.1" + is-stream "^2.0.0" + merge-stream "^2.0.0" + npm-run-path "^4.0.0" + onetime "^5.1.0" + p-finally "^2.0.0" + signal-exit "^3.0.2" + strip-final-newline "^2.0.0" + + exit@^0.1.2: + version "0.1.2" + resolved "https://registry.yarnpkg.com/exit/-/exit-0.1.2.tgz#0632638f8d877cc82107d30a0fff1a17cba1cd0c" + integrity sha1-BjJjj42HfMghB9MKD/8aF8uhzQw= + + expand-brackets@^2.1.4: + version "2.1.4" + resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-2.1.4.tgz#b77735e315ce30f6b6eff0f83b04151a22449622" + integrity sha1-t3c14xXOMPa27/D4OwQVGiJEliI= + dependencies: + debug "^2.3.3" + define-property "^0.2.5" + extend-shallow "^2.0.1" + posix-character-classes "^0.1.0" + regex-not "^1.0.0" + snapdragon "^0.8.1" + to-regex "^3.0.1" + + expect@^25.4.0: + version "25.4.0" + resolved "https://registry.yarnpkg.com/expect/-/expect-25.4.0.tgz#0b16c17401906d1679d173e59f0d4580b22f8dc8" + integrity sha512-7BDIX99BTi12/sNGJXA9KMRcby4iAmu1xccBOhyKCyEhjcVKS3hPmHdA/4nSI9QGIOkUropKqr3vv7WMDM5lvQ== + dependencies: + "@jest/types" "^25.4.0" + ansi-styles "^4.0.0" + jest-get-type "^25.2.6" + jest-matcher-utils "^25.4.0" + jest-message-util "^25.4.0" + jest-regex-util "^25.2.6" + + expo-app-loader-provider@~8.0.0: + version "8.0.0" + resolved "https://registry.yarnpkg.com/expo-app-loader-provider/-/expo-app-loader-provider-8.0.0.tgz#c18ef20a24153f5a0dbb297106ef0bcb5de57180" + integrity sha512-uMEdstZdm14JW8jfWXBWItIjGPNBH7cLj2pNu5e0pYF21W4j759rGL17NTNWit4UdLZg/zJB/HHRidVwEINfxA== + + expo-asset@~8.0.0: + version "8.0.0" + resolved "https://registry.yarnpkg.com/expo-asset/-/expo-asset-8.0.0.tgz#400c7cf8693711ddc87da02d20a7d47bd517afeb" + integrity sha512-ICPptpetXB+v88Sqr8yMVEA46UNlUUb8AMbyUytdUJqV7V2itHDQywl08ofOlOICzNgjDFIQdCs3crkTVQ1Zng== + dependencies: + blueimp-md5 "^2.10.0" + path-browserify "^1.0.0" + url-parse "^1.4.4" + + expo-constants@~8.0.0: + version "8.0.0" + resolved "https://registry.yarnpkg.com/expo-constants/-/expo-constants-8.0.0.tgz#e2c5a072dacb4263ccfc57dcb4835ca791960d48" + integrity sha512-NGRwSWfhwNFA9WVLXwqnSDPJJ4DdXTqEkl9Fr9PcyW5VCoFgz7uke256E1YZsYhOE0Ph365lu/5jjZs+MRmRog== + dependencies: + ua-parser-js "^0.7.19" + + expo-file-system@~8.0.0: + version "8.0.0" + resolved "https://registry.yarnpkg.com/expo-file-system/-/expo-file-system-8.0.0.tgz#60b90c8a375308dc85922592a77531a8e0cde6f7" + integrity sha512-mi84jt3EHVUfxu5eGOikNuRDi7+5daCFSP9LVgk5aQz8Oepo143vnH/+WE4lQEg+u8dB6EmmCWncyc2Fklxv7A== + dependencies: + uuid-js "^0.7.5" + + expo-permissions@~8.0.0: + version "8.0.0" + resolved "https://registry.yarnpkg.com/expo-permissions/-/expo-permissions-8.0.0.tgz#5a45e8451dd7ff37c9e6ce5e2447818372547813" + integrity sha512-GHTRmwh1rd1b0FcibluPFu93NNQyl9b1anBBDVPmomoo9Prz7kDcO5p2hFqM99r896yvAUSe0fPloPKUq4g/1A== + + express-session@^1.17.0: + version "1.17.0" + resolved "https://registry.yarnpkg.com/express-session/-/express-session-1.17.0.tgz#9b50dbb5e8a03c3537368138f072736150b7f9b3" + integrity sha512-t4oX2z7uoSqATbMfsxWMbNjAL0T5zpvcJCk3Z9wnPPN7ibddhnmDZXHfEcoBMG2ojKXZoCyPMc5FbtK+G7SoDg== + dependencies: + cookie "0.4.0" + cookie-signature "1.0.6" + debug "2.6.9" + depd "~2.0.0" + on-headers "~1.0.2" + parseurl "~1.3.3" + safe-buffer "5.2.0" + uid-safe "~2.1.5" + + express@^4.17.1: + version "4.17.1" + resolved "https://registry.yarnpkg.com/express/-/express-4.17.1.tgz#4491fc38605cf51f8629d39c2b5d026f98a4c134" + integrity sha512-mHJ9O79RqluphRrcw2X/GTh3k9tVv8YcoyY4Kkh4WDMUYKRZUq0h1o0w2rrrxBqM7VoeUVqgb27xlEMXTnYt4g== + dependencies: + accepts "~1.3.7" + array-flatten "1.1.1" + body-parser "1.19.0" + content-disposition "0.5.3" + content-type "~1.0.4" + cookie "0.4.0" + cookie-signature "1.0.6" + debug "2.6.9" + depd "~1.1.2" + encodeurl "~1.0.2" + escape-html "~1.0.3" + etag "~1.8.1" + finalhandler "~1.1.2" + fresh "0.5.2" + merge-descriptors "1.0.1" + methods "~1.1.2" + on-finished "~2.3.0" + parseurl "~1.3.3" + path-to-regexp "0.1.7" + proxy-addr "~2.0.5" + qs "6.7.0" + range-parser "~1.2.1" + safe-buffer "5.1.2" + send "0.17.1" + serve-static "1.14.1" + setprototypeof "1.1.1" + statuses "~1.5.0" + type-is "~1.6.18" + utils-merge "1.0.1" + vary "~1.1.2" + + extend-shallow@^1.1.2: + version "1.1.4" + resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-1.1.4.tgz#19d6bf94dfc09d76ba711f39b872d21ff4dd9071" + integrity sha1-Gda/lN/AnXa6cR85uHLSH/TdkHE= + dependencies: + kind-of "^1.1.0" + + extend-shallow@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-2.0.1.tgz#51af7d614ad9a9f610ea1bafbb989d6b1c56890f" + integrity sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8= + dependencies: + is-extendable "^0.1.0" + + extend-shallow@^3.0.0, extend-shallow@^3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-3.0.2.tgz#26a71aaf073b39fb2127172746131c2704028db8" + integrity sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg= + dependencies: + assign-symbols "^1.0.0" + is-extendable "^1.0.1" + + extend@^3.0.0, extend@~3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.2.tgz#f8b1136b4071fbd8eb140aff858b1019ec2915fa" + integrity sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g== + + external-editor@^2.0.4: + version "2.2.0" + resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-2.2.0.tgz#045511cfd8d133f3846673d1047c154e214ad3d5" + integrity sha512-bSn6gvGxKt+b7+6TKEv1ZycHleA7aHhRHyAqJyp5pbUFuYYNIzpZnQDk7AsYckyWdEnTeAnay0aCy2aV6iTk9A== + dependencies: + chardet "^0.4.0" + iconv-lite "^0.4.17" + tmp "^0.0.33" + + external-editor@^3.0.3: + version "3.1.0" + resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-3.1.0.tgz#cb03f740befae03ea4d283caed2741a83f335495" + integrity sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew== + dependencies: + chardet "^0.7.0" + iconv-lite "^0.4.24" + tmp "^0.0.33" + + extglob@^2.0.4: + version "2.0.4" + resolved "https://registry.yarnpkg.com/extglob/-/extglob-2.0.4.tgz#ad00fe4dc612a9232e8718711dc5cb5ab0285543" + integrity sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw== + dependencies: + array-unique "^0.3.2" + define-property "^1.0.0" + expand-brackets "^2.1.4" + extend-shallow "^2.0.1" + fragment-cache "^0.2.1" + regex-not "^1.0.0" + snapdragon "^0.8.1" + to-regex "^3.0.1" + + extsprintf@1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" + integrity sha1-lpGEQOMEGnpBT4xS48V06zw+HgU= + + extsprintf@^1.2.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.4.0.tgz#e2689f8f356fad62cca65a3a91c5df5f9551692f" + integrity sha1-4mifjzVvrWLMplo6kcXfX5VRaS8= + + fancy-log@^1.3.2: + version "1.3.3" + resolved "https://registry.yarnpkg.com/fancy-log/-/fancy-log-1.3.3.tgz#dbc19154f558690150a23953a0adbd035be45fc7" + integrity sha512-k9oEhlyc0FrVh25qYuSELjr8oxsCoc4/LEZfg2iJJrfEk/tZL9bCoJE47gqAvI2m/AUjluCS4+3I0eTx8n3AEw== + dependencies: + ansi-gray "^0.1.1" + color-support "^1.1.3" + parse-node-version "^1.0.0" + time-stamp "^1.0.0" + + fast-deep-equal@^3.1.1: + version "3.1.1" + resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.1.tgz#545145077c501491e33b15ec408c294376e94ae4" + integrity sha512-8UEa58QDLauDNfpbrX55Q9jrGHThw2ZMdOky5Gl1CDtVeJDPVrG4Jxx1N8jw2gkWaff5UUuX1KJd+9zGe2B+ZA== + + fast-diff@^1.1.2: + version "1.2.0" + resolved "https://registry.yarnpkg.com/fast-diff/-/fast-diff-1.2.0.tgz#73ee11982d86caaf7959828d519cfe927fac5f03" + integrity sha512-xJuoT5+L99XlZ8twedaRf6Ax2TgQVxvgZOYoPKqZufmJib0tL2tegPBOZb1pVNgIhlqDlA0eO0c3wBvQcmzx4w== + + fast-json-stable-stringify@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" + integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== + + fast-levenshtein@~2.0.6: + version "2.0.6" + resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" + integrity sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc= + + fb-watchman@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-2.0.1.tgz#fc84fb39d2709cf3ff6d743706157bb5708a8a85" + integrity sha512-DkPJKQeY6kKwmuMretBhr7G6Vodr7bFwDYTXIkfG1gjvNpaxBTQV3PbXg6bR1c1UP4jPOX0jHUbbHANL9vRjVg== + dependencies: + bser "2.1.1" + + fbjs-css-vars@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/fbjs-css-vars/-/fbjs-css-vars-1.0.2.tgz#216551136ae02fe255932c3ec8775f18e2c078b8" + integrity sha512-b2XGFAFdWZWg0phtAWLHCk836A1Xann+I+Dgd3Gk64MHKZO44FfoD1KxyvbSh0qZsIoXQGGlVztIY+oitJPpRQ== + + fbjs-scripts@^1.1.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/fbjs-scripts/-/fbjs-scripts-1.2.0.tgz#069a0c0634242d10031c6460ef1fccefcdae8b27" + integrity sha512-5krZ8T0Bf8uky0abPoCLrfa7Orxd8UH4Qq8hRUF2RZYNMu+FmEOrBc7Ib3YVONmxTXTlLAvyrrdrVmksDb2OqQ== + dependencies: + "@babel/core" "^7.0.0" + ansi-colors "^1.0.1" + babel-preset-fbjs "^3.2.0" + core-js "^2.4.1" + cross-spawn "^5.1.0" + fancy-log "^1.3.2" + object-assign "^4.0.1" + plugin-error "^0.1.2" + semver "^5.1.0" + through2 "^2.0.0" + + fbjs@^0.8.1, fbjs@^0.8.9: + version "0.8.17" + resolved "https://registry.yarnpkg.com/fbjs/-/fbjs-0.8.17.tgz#c4d598ead6949112653d6588b01a5cdcd9f90fdd" + integrity sha1-xNWY6taUkRJlPWWIsBpc3Nn5D90= + dependencies: + core-js "^1.0.0" + isomorphic-fetch "^2.1.1" + loose-envify "^1.0.0" + object-assign "^4.1.0" + promise "^7.1.1" + setimmediate "^1.0.5" + ua-parser-js "^0.7.18" + + fbjs@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/fbjs/-/fbjs-1.0.0.tgz#52c215e0883a3c86af2a7a776ed51525ae8e0a5a" + integrity sha512-MUgcMEJaFhCaF1QtWGnmq9ZDRAzECTCRAF7O6UZIlAlkTs1SasiX9aP0Iw7wfD2mJ7wDTNfg2w7u5fSCwJk1OA== + dependencies: + core-js "^2.4.1" + fbjs-css-vars "^1.0.0" + isomorphic-fetch "^2.1.1" + loose-envify "^1.0.0" + object-assign "^4.1.0" + promise "^7.1.1" + setimmediate "^1.0.5" + ua-parser-js "^0.7.18" + + figures@^1.7.0: + version "1.7.0" + resolved "https://registry.yarnpkg.com/figures/-/figures-1.7.0.tgz#cbe1e3affcf1cd44b80cadfed28dc793a9701d2e" + integrity sha1-y+Hjr/zxzUS4DK3+0o3Hk6lwHS4= + dependencies: + escape-string-regexp "^1.0.5" + object-assign "^4.1.0" + + figures@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/figures/-/figures-2.0.0.tgz#3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962" + integrity sha1-OrGi0qYsi/tDGgyUy3l6L84nyWI= + dependencies: + escape-string-regexp "^1.0.5" + + figures@^3.0.0: + version "3.2.0" + resolved "https://registry.yarnpkg.com/figures/-/figures-3.2.0.tgz#625c18bd293c604dc4a8ddb2febf0c88341746af" + integrity sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg== + dependencies: + escape-string-regexp "^1.0.5" + + file-entry-cache@^5.0.1: + version "5.0.1" + resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-5.0.1.tgz#ca0f6efa6dd3d561333fb14515065c2fafdf439c" + integrity sha512-bCg29ictuBaKUwwArK4ouCaqDgLZcysCFLmM/Yn/FDoqndh/9vNuQfXRDvTuXKLxfD/JtZQGKFT8MGcJBK644g== + dependencies: + flat-cache "^2.0.1" + + file-uri-to-path@1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz#553a7b8446ff6f684359c445f1e37a05dacc33dd" + integrity sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw== + + fill-range@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-4.0.0.tgz#d544811d428f98eb06a63dc402d2403c328c38f7" + integrity sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc= + dependencies: + extend-shallow "^2.0.1" + is-number "^3.0.0" + repeat-string "^1.6.1" + to-regex-range "^2.1.0" + + fill-range@^7.0.1: + version "7.0.1" + resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40" + integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ== + dependencies: + to-regex-range "^5.0.1" + + finalhandler@1.1.2, finalhandler@~1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/finalhandler/-/finalhandler-1.1.2.tgz#b7e7d000ffd11938d0fdb053506f6ebabe9f587d" + integrity sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA== + dependencies: + debug "2.6.9" + encodeurl "~1.0.2" + escape-html "~1.0.3" + on-finished "~2.3.0" + parseurl "~1.3.3" + statuses "~1.5.0" + unpipe "~1.0.0" + + find-cache-dir@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-2.1.0.tgz#8d0f94cd13fe43c6c7c261a0d86115ca918c05f7" + integrity sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ== + dependencies: + commondir "^1.0.1" + make-dir "^2.0.0" + pkg-dir "^3.0.0" + + find-up@^2.0.0, find-up@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" + integrity sha1-RdG35QbHF93UgndaK3eSCjwMV6c= + dependencies: + locate-path "^2.0.0" + + find-up@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/find-up/-/find-up-3.0.0.tgz#49169f1d7993430646da61ecc5ae355c21c97b73" + integrity sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg== + dependencies: + locate-path "^3.0.0" + + find-up@^4.0.0, find-up@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/find-up/-/find-up-4.1.0.tgz#97afe7d6cdc0bc5928584b7c8d7b16e8a9aa5d19" + integrity sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw== + dependencies: + locate-path "^5.0.0" + path-exists "^4.0.0" + + flat-cache@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-2.0.1.tgz#5d296d6f04bda44a4630a301413bdbc2ec085ec0" + integrity sha512-LoQe6yDuUMDzQAEH8sgmh4Md6oZnc/7PjtwjNFSzveXqSHt6ka9fPBuso7IGf9Rz4uqnSnWiFH2B/zj24a5ReA== + dependencies: + flatted "^2.0.0" + rimraf "2.6.3" + write "1.0.3" + + flatted@^2.0.0: + version "2.0.2" + resolved "https://registry.yarnpkg.com/flatted/-/flatted-2.0.2.tgz#4575b21e2bcee7434aa9be662f4b7b5f9c2b5138" + integrity sha512-r5wGx7YeOwNWNlCA0wQ86zKyDLMQr+/RB8xy74M4hTphfmjlijTSSXGuH8rnvKZnfT9i+75zmd8jcKdMR4O6jA== + + for-in@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" + integrity sha1-gQaNKVqBQuwKxybG4iAMMPttXoA= + + forever-agent@~0.6.1: + version "0.6.1" + resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" + integrity sha1-+8cfDEGt6zf5bFd60e1C2P2sypE= + + form-data@^2.3.1: + version "2.5.1" + resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.5.1.tgz#f2cbec57b5e59e23716e128fe44d4e5dd23895f4" + integrity sha512-m21N3WOmEEURgk6B9GLOE4RuWOFf28Lhh9qGYeNlGq4VDXUlJy2th2slBNU8Gp8EzloYZOibZJ7t5ecIrFSjVA== + dependencies: + asynckit "^0.4.0" + combined-stream "^1.0.6" + mime-types "^2.1.12" + + form-data@~2.3.2: + version "2.3.3" + resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.3.3.tgz#dcce52c05f644f298c6a7ab936bd724ceffbf3a6" + integrity sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ== + dependencies: + asynckit "^0.4.0" + combined-stream "^1.0.6" + mime-types "^2.1.12" + + formidable@^1.2.0: + version "1.2.2" + resolved "https://registry.yarnpkg.com/formidable/-/formidable-1.2.2.tgz#bf69aea2972982675f00865342b982986f6b8dd9" + integrity sha512-V8gLm+41I/8kguQ4/o1D3RIHRmhYFG4pnNyonvua+40rqcEmT4+V71yaZ3B457xbbgCsCfjSPi65u/W6vK1U5Q== + + forwarded@~0.1.2: + version "0.1.2" + resolved "https://registry.yarnpkg.com/forwarded/-/forwarded-0.1.2.tgz#98c23dab1175657b8c0573e8ceccd91b0ff18c84" + integrity sha1-mMI9qxF1ZXuMBXPozszZGw/xjIQ= + + fragment-cache@^0.2.1: + version "0.2.1" + resolved "https://registry.yarnpkg.com/fragment-cache/-/fragment-cache-0.2.1.tgz#4290fad27f13e89be7f33799c6bc5a0abfff0d19" + integrity sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk= + dependencies: + map-cache "^0.2.2" + + fresh@0.5.2: + version "0.5.2" + resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.5.2.tgz#3d8cadd90d976569fa835ab1f8e4b23a105605a7" + integrity sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac= + + fs-extra@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-1.0.0.tgz#cd3ce5f7e7cb6145883fcae3191e9877f8587950" + integrity sha1-zTzl9+fLYUWIP8rjGR6Yd/hYeVA= + dependencies: + graceful-fs "^4.1.2" + jsonfile "^2.1.0" + klaw "^1.0.0" + + fs-extra@^7.0.1: + version "7.0.1" + resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-7.0.1.tgz#4f189c44aa123b895f722804f55ea23eadc348e9" + integrity sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw== + dependencies: + graceful-fs "^4.1.2" + jsonfile "^4.0.0" + universalify "^0.1.0" + + fs-minipass@^1.2.5: + version "1.2.7" + resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-1.2.7.tgz#ccff8570841e7fe4265693da88936c55aed7f7c7" + integrity sha512-GWSSJGFy4e9GUeCcbIkED+bgAoFyj7XF1mV8rma3QW4NIqX9Kyx79N/PF61H5udOV3aY1IaMLs6pGbH71nlCTA== + dependencies: + minipass "^2.6.0" + + fs.realpath@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" + integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8= + + fsevents@^1.2.7: + version "1.2.12" + resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.2.12.tgz#db7e0d8ec3b0b45724fd4d83d43554a8f1f0de5c" + integrity sha512-Ggd/Ktt7E7I8pxZRbGIs7vwqAPscSESMrCSkx2FtWeqmheJgCo2R74fTsZFCifr0VTPwqRpPv17+6b8Zp7th0Q== + dependencies: + bindings "^1.5.0" + nan "^2.12.1" + + fsevents@^2.1.2, fsevents@~2.1.2: + version "2.1.2" + resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.1.2.tgz#4c0a1fb34bc68e543b4b82a9ec392bfbda840805" + integrity sha512-R4wDiBwZ0KzpgOWetKDug1FZcYhqYnUYKtfZYt4mD5SBz76q0KR4Q9o7GIPamsVPGmW3EYPPJ0dOOjvx32ldZA== + + function-bind@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" + integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== + + functional-red-black-tree@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327" + integrity sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc= + + gauge@~2.7.3: + version "2.7.4" + resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" + integrity sha1-LANAXHU4w51+s3sxcCLjJfsBi/c= + dependencies: + aproba "^1.0.3" + console-control-strings "^1.0.0" + has-unicode "^2.0.0" + object-assign "^4.1.0" + signal-exit "^3.0.0" + string-width "^1.0.1" + strip-ansi "^3.0.1" + wide-align "^1.1.0" + + gensync@^1.0.0-beta.1: + version "1.0.0-beta.1" + resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.1.tgz#58f4361ff987e5ff6e1e7a210827aa371eaac269" + integrity sha512-r8EC6NO1sngH/zdD9fiRDLdcgnbayXah+mLgManTaIZJqEC1MZstmnox8KpnI2/fxQwrp5OpCOYWLp4rBl4Jcg== + + get-caller-file@^1.0.1: + version "1.0.3" + resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.3.tgz#f978fa4c90d1dfe7ff2d6beda2a515e713bdcf4a" + integrity sha512-3t6rVToeoZfYSGd8YoLFR2DJkiQrIiUrGcjvFX2mDw3bn6k2OtwHN0TNCLbBO+w8qTvimhDkv+LSscbJY1vE6w== + + get-caller-file@^2.0.1: + version "2.0.5" + resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" + integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== + + get-own-enumerable-property-symbols@^3.0.0: + version "3.0.2" + resolved "https://registry.yarnpkg.com/get-own-enumerable-property-symbols/-/get-own-enumerable-property-symbols-3.0.2.tgz#b5fde77f22cbe35f390b4e089922c50bce6ef664" + integrity sha512-I0UBV/XOz1XkIJHEUDMZAbzCThU/H8DxmSfmdGcKPnVhu2VfFqr34jr9777IyaTYvxjedWhqVIilEDsCdP5G6g== + + get-stdin@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-6.0.0.tgz#9e09bf712b360ab9225e812048f71fde9c89657b" + integrity sha512-jp4tHawyV7+fkkSKyvjuLZswblUtz+SQKzSWnBbii16BuZksJlU1wuBYXY75r+duh/llF1ur6oNwi+2ZzjKZ7g== + + get-stdin@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-7.0.0.tgz#8d5de98f15171a125c5e516643c7a6d0ea8a96f6" + integrity sha512-zRKcywvrXlXsA0v0i9Io4KDRaAw7+a1ZpjRwl9Wox8PFlVCCHra7E9c4kqXCoCM9nR5tBkaTTZRBoCm60bFqTQ== + + get-stream@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14" + integrity sha1-jpQ9E1jcN1VQVOy+LtsFqhdO3hQ= + + get-stream@^4.0.0, get-stream@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-4.1.0.tgz#c1b255575f3dc21d59bfc79cd3d2b46b1c3a54b5" + integrity sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w== + dependencies: + pump "^3.0.0" + + get-stream@^5.0.0, get-stream@^5.1.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-5.1.0.tgz#01203cdc92597f9b909067c3e656cc1f4d3c4dc9" + integrity sha512-EXr1FOzrzTfGeL0gQdeFEvOMm2mzMOglyiOXSTpPC+iAjAKftbr3jpCMWynogwYnM+eSj9sHGc6wjIcDvYiygw== + dependencies: + pump "^3.0.0" + + get-value@^2.0.3, get-value@^2.0.6: + version "2.0.6" + resolved "https://registry.yarnpkg.com/get-value/-/get-value-2.0.6.tgz#dc15ca1c672387ca76bd37ac0a395ba2042a2c28" + integrity sha1-3BXKHGcjh8p2vTesCjlbogQqLCg= + + getpass@^0.1.1: + version "0.1.7" + resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" + integrity sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo= + dependencies: + assert-plus "^1.0.0" + + gifencoder@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/gifencoder/-/gifencoder-2.0.1.tgz#fd363402e506529494757856aa66196697ee6bd4" + integrity sha512-x19DcyWY10SkshBpokqFOo/HBht9GB75evRYvaLMbez9p+yB/o+kt0fK9AwW59nFiAMs2UUQsjv1lX/hvu9Ong== + dependencies: + canvas "^2.2.0" + + glob-parent@^5.0.0, glob-parent@~5.1.0: + version "5.1.1" + resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.1.tgz#b6c1ef417c4e5663ea498f1c45afac6916bbc229" + integrity sha512-FnI+VGOpnlGHWZxthPGR+QhR78fuiK0sNLkHQv+bL9fQi57lNNdquIbna/WrfROrolq8GK5Ek6BiMwqL/voRYQ== + dependencies: + is-glob "^4.0.1" + + glob@^7.1.1, glob@^7.1.2, glob@^7.1.3, glob@^7.1.4, glob@^7.1.6: + version "7.1.6" + resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.6.tgz#141f33b81a7c2492e125594307480c46679278a6" + integrity sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA== + dependencies: + fs.realpath "^1.0.0" + inflight "^1.0.4" + inherits "2" + minimatch "^3.0.4" + once "^1.3.0" + path-is-absolute "^1.0.0" + + global-dirs@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/global-dirs/-/global-dirs-2.0.1.tgz#acdf3bb6685bcd55cb35e8a052266569e9469201" + integrity sha512-5HqUqdhkEovj2Of/ms3IeS/EekcO54ytHRLV4PEY2rhRwrHXLQjeVEES0Lhka0xwNDtGYn58wyC4s5+MHsOO6A== + dependencies: + ini "^1.3.5" + + global@~4.3.0: + version "4.3.2" + resolved "https://registry.yarnpkg.com/global/-/global-4.3.2.tgz#e76989268a6c74c38908b1305b10fc0e394e9d0f" + integrity sha1-52mJJopsdMOJCLEwWxD8DjlOnQ8= + dependencies: + min-document "^2.19.0" + process "~0.5.1" + + globals@^11.1.0: + version "11.12.0" + resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e" + integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA== + + globals@^12.1.0: + version "12.4.0" + resolved "https://registry.yarnpkg.com/globals/-/globals-12.4.0.tgz#a18813576a41b00a24a97e7f815918c2e19925f8" + integrity sha512-BWICuzzDvDoH54NHKCseDanAhE3CeDorgDL5MT6LMXXj2WCnd9UC2szdk4AWLfjdgNBCXLUanXYcpBBKOSWGwg== + dependencies: + type-fest "^0.8.1" + + globals@^9.18.0: + version "9.18.0" + resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a" + integrity sha512-S0nG3CLEQiY/ILxqtztTWH/3iRRdyBLw6KMDxnKMchrtbj2OFmehVh0WUCfW3DUrIgx/qFrJPICrq4Z4sTR9UQ== + + globalyzer@^0.1.0: + version "0.1.4" + resolved "https://registry.yarnpkg.com/globalyzer/-/globalyzer-0.1.4.tgz#bc8e273afe1ac7c24eea8def5b802340c5cc534f" + integrity sha512-LeguVWaxgHN0MNbWC6YljNMzHkrCny9fzjmEUdnF1kQ7wATFD1RHFRqA1qxaX2tgxGENlcxjOflopBwj3YZiXA== + + globrex@^0.1.1: + version "0.1.2" + resolved "https://registry.yarnpkg.com/globrex/-/globrex-0.1.2.tgz#dd5d9ec826232730cd6793a5e33a9302985e6098" + integrity sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg== + + got@^9.6.0: + version "9.6.0" + resolved "https://registry.yarnpkg.com/got/-/got-9.6.0.tgz#edf45e7d67f99545705de1f7bbeeeb121765ed85" + integrity sha512-R7eWptXuGYxwijs0eV+v3o6+XH1IqVK8dJOEecQfTmkncw9AV4dcw/Dhxi8MdlqPthxxpZyizMzyg8RTmEsG+Q== + dependencies: + "@sindresorhus/is" "^0.14.0" + "@szmarczak/http-timer" "^1.1.2" + cacheable-request "^6.0.0" + decompress-response "^3.3.0" + duplexer3 "^0.1.4" + get-stream "^4.1.0" + lowercase-keys "^1.0.1" + mimic-response "^1.0.1" + p-cancelable "^1.0.0" + to-readable-stream "^1.0.0" + url-parse-lax "^3.0.0" + + graceful-fs@^4.1.11, graceful-fs@^4.1.15, graceful-fs@^4.1.2, graceful-fs@^4.1.3, graceful-fs@^4.1.6, graceful-fs@^4.1.9, graceful-fs@^4.2.3: + version "4.2.3" + resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.3.tgz#4a12ff1b60376ef09862c2093edd908328be8423" + integrity sha512-a30VEBm4PEdx1dRB7MFK7BejejvCvBronbLjht+sHuGYj8PHs7M/5Z+rt5lw551vZ7yfTCj4Vuyy3mSJytDWRQ== + + growly@^1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/growly/-/growly-1.3.0.tgz#f10748cbe76af964b7c96c93c6bcc28af120c081" + integrity sha1-8QdIy+dq+WS3yWyTxrzCivEgwIE= + + "hammerjs@https://github.com/naver/hammer.js.git": + version "2.0.17-snapshot" + resolved "https://github.com/naver/hammer.js.git#54bc698b25edd6e1b76ca975ebaced5ce0467d51" + dependencies: + "@types/hammerjs" "^2.0.36" + + handlebars@^4.7.1: + version "4.7.6" + resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.7.6.tgz#d4c05c1baf90e9945f77aa68a7a219aa4a7df74e" + integrity sha512-1f2BACcBfiwAfStCKZNrUCgqNZkGsAT7UM3kkYtXuLo0KnaVfjKOyf7PRzB6++aK9STyT1Pd2ZCPe3EGOXleXA== + dependencies: + minimist "^1.2.5" + neo-async "^2.6.0" + source-map "^0.6.1" + wordwrap "^1.0.0" + optionalDependencies: + uglify-js "^3.1.4" + + har-schema@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-2.0.0.tgz#a94c2224ebcac04782a0d9035521f24735b7ec92" + integrity sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI= + + har-validator@~5.1.0, har-validator@~5.1.3: + version "5.1.3" + resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-5.1.3.tgz#1ef89ebd3e4996557675eed9893110dc350fa080" + integrity sha512-sNvOCzEQNr/qrvJgc3UG/kD4QtlHycrzwS+6mfTrrSq97BvaYcPZZI1ZSqGSPR73Cxn4LKTD4PttRwfU7jWq5g== + dependencies: + ajv "^6.5.5" + har-schema "^2.0.0" + + has-ansi@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" + integrity sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE= + dependencies: + ansi-regex "^2.0.0" + + has-flag@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" + integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0= + + has-flag@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" + integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== + + has-symbols@^1.0.0, has-symbols@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.1.tgz#9f5214758a44196c406d9bd76cebf81ec2dd31e8" + integrity sha512-PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg== + + has-unicode@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" + integrity sha1-4Ob+aijPUROIVeCG0Wkedx3iqLk= + + has-value@^0.3.1: + version "0.3.1" + resolved "https://registry.yarnpkg.com/has-value/-/has-value-0.3.1.tgz#7b1f58bada62ca827ec0a2078025654845995e1f" + integrity sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8= + dependencies: + get-value "^2.0.3" + has-values "^0.1.4" + isobject "^2.0.0" + + has-value@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/has-value/-/has-value-1.0.0.tgz#18b281da585b1c5c51def24c930ed29a0be6b177" + integrity sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc= + dependencies: + get-value "^2.0.6" + has-values "^1.0.0" + isobject "^3.0.0" + + has-values@^0.1.4: + version "0.1.4" + resolved "https://registry.yarnpkg.com/has-values/-/has-values-0.1.4.tgz#6d61de95d91dfca9b9a02089ad384bff8f62b771" + integrity sha1-bWHeldkd/Km5oCCJrThL/49it3E= + + has-values@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/has-values/-/has-values-1.0.0.tgz#95b0b63fec2146619a6fe57fe75628d5a39efe4f" + integrity sha1-lbC2P+whRmGab+V/51Yo1aOe/k8= + dependencies: + is-number "^3.0.0" + kind-of "^4.0.0" + + has-yarn@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/has-yarn/-/has-yarn-2.1.0.tgz#137e11354a7b5bf11aa5cb649cf0c6f3ff2b2e77" + integrity sha512-UqBRqi4ju7T+TqGNdqAO0PaSVGsDGJUBQvk9eUWNGRY1CFGDzYhLWoM7JQEemnlvVcv/YEmc2wNW8BC24EnUsw== + + has@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" + integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== + dependencies: + function-bind "^1.1.1" + + hermes-engine@^0.2.1: + version "0.2.1" + resolved "https://registry.yarnpkg.com/hermes-engine/-/hermes-engine-0.2.1.tgz#25c0f1ff852512a92cb5c5cc47cf967e1e722ea2" + integrity sha512-eNHUQHuadDMJARpaqvlCZoK/Nitpj6oywq3vQ3wCwEsww5morX34mW5PmKWQTO7aU0ck0hgulxR+EVDlXygGxQ== + + history@^4.7.2: + version "4.10.1" + resolved "https://registry.yarnpkg.com/history/-/history-4.10.1.tgz#33371a65e3a83b267434e2b3f3b1b4c58aad4cf3" + integrity sha512-36nwAD620w12kuzPAsyINPWJqlNbij+hpK1k9XRloDtym8mxzGYl2c17LnV6IAGB2Dmg4tEa7G7DlawS0+qjew== + dependencies: + "@babel/runtime" "^7.1.2" + loose-envify "^1.2.0" + resolve-pathname "^3.0.0" + tiny-invariant "^1.0.2" + tiny-warning "^1.0.0" + value-equal "^1.0.1" + + hoist-non-react-statics@^2.3.1: + version "2.5.5" + resolved "https://registry.yarnpkg.com/hoist-non-react-statics/-/hoist-non-react-statics-2.5.5.tgz#c5903cf409c0dfd908f388e619d86b9c1174cb47" + integrity sha512-rqcy4pJo55FTTLWt+bU8ukscqHeE/e9KWvsOW2b/a3afxQZhwkQdT1rPPCJ0rYXdj4vNcasY8zHTH+jF/qStxw== + + hoist-non-react-statics@^3.1.0, hoist-non-react-statics@^3.3.0, hoist-non-react-statics@^3.3.2: + version "3.3.2" + resolved "https://registry.yarnpkg.com/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz#ece0acaf71d62c2969c2ec59feff42a4b1a85b45" + integrity sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw== + dependencies: + react-is "^16.7.0" + + hosted-git-info@^2.1.4: + version "2.8.8" + resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.8.8.tgz#7539bd4bc1e0e0a895815a2e0262420b12858488" + integrity sha512-f/wzC2QaWBs7t9IYqB4T3sR1xviIViXJRJTWBlx2Gf3g0Xi5vI7Yy4koXQ1c9OYDGHN9sBy1DQ2AB8fqZBWhUg== + + html-encoding-sniffer@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/html-encoding-sniffer/-/html-encoding-sniffer-1.0.2.tgz#e70d84b94da53aa375e11fe3a351be6642ca46f8" + integrity sha512-71lZziiDnsuabfdYiUeWdCVyKuqwWi23L8YeIgV9jSSZHCtb6wB1BKWooH7L3tn4/FuZJMVWyNaIDr4RGmaSYw== + dependencies: + whatwg-encoding "^1.0.1" + + html-escaper@^2.0.0: + version "2.0.2" + resolved "https://registry.yarnpkg.com/html-escaper/-/html-escaper-2.0.2.tgz#dfd60027da36a36dfcbe236262c00a5822681453" + integrity sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg== + + http-cache-semantics@^4.0.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/http-cache-semantics/-/http-cache-semantics-4.1.0.tgz#49e91c5cbf36c9b94bcfcd71c23d5249ec74e390" + integrity sha512-carPklcUh7ROWRK7Cv27RPtdhYhUsela/ue5/jKzjegVvXDqM2ILE9Q2BGn9JZJh1g87cp56su/FgQSzcWS8cQ== + + http-errors@1.7.2: + version "1.7.2" + resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.7.2.tgz#4f5029cf13239f31036e5b2e55292bcfbcc85c8f" + integrity sha512-uUQBt3H/cSIVfch6i1EuPNy/YsRSOUBXTVfZ+yR7Zjez3qjBz6i9+i4zjNaoqcoFVI4lQJ5plg63TvGfRSDCRg== + dependencies: + depd "~1.1.2" + inherits "2.0.3" + setprototypeof "1.1.1" + statuses ">= 1.5.0 < 2" + toidentifier "1.0.0" + + http-errors@~1.7.2: + version "1.7.3" + resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.7.3.tgz#6c619e4f9c60308c38519498c14fbb10aacebb06" + integrity sha512-ZTTX0MWrsQ2ZAhA1cejAwDLycFsd7I7nVtnkT3Ol0aqodaKW+0CTZDQ1uBv5whptCnc8e8HeRRJxRs0kmm/Qfw== + dependencies: + depd "~1.1.2" + inherits "2.0.4" + setprototypeof "1.1.1" + statuses ">= 1.5.0 < 2" + toidentifier "1.0.0" + + http-signature@~1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.2.0.tgz#9aecd925114772f3d95b65a60abb8f7c18fbace1" + integrity sha1-muzZJRFHcvPZW2WmCruPfBj7rOE= + dependencies: + assert-plus "^1.0.0" + jsprim "^1.2.2" + sshpk "^1.7.0" + + human-signals@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-1.1.1.tgz#c5b1cd14f50aeae09ab6c59fe63ba3395fe4dfa3" + integrity sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw== + + husky@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/husky/-/husky-3.1.0.tgz#5faad520ab860582ed94f0c1a77f0f04c90b57c0" + integrity sha512-FJkPoHHB+6s4a+jwPqBudBDvYZsoQW5/HBuMSehC8qDiCe50kpcxeqFoDSlow+9I6wg47YxBoT3WxaURlrDIIQ== + dependencies: + chalk "^2.4.2" + ci-info "^2.0.0" + cosmiconfig "^5.2.1" + execa "^1.0.0" + get-stdin "^7.0.0" + opencollective-postinstall "^2.0.2" + pkg-dir "^4.2.0" + please-upgrade-node "^3.2.0" + read-pkg "^5.2.0" + run-node "^1.0.0" + slash "^3.0.0" + + hyphenate-style-name@^1.0.2: + version "1.0.3" + resolved "https://registry.yarnpkg.com/hyphenate-style-name/-/hyphenate-style-name-1.0.3.tgz#097bb7fa0b8f1a9cf0bd5c734cf95899981a9b48" + integrity sha512-EcuixamT82oplpoJ2XU4pDtKGWQ7b00CD9f1ug9IaQ3p1bkHMiKCZ9ut9QDI6qsa6cpUuB+A/I+zLtdNK4n2DQ== + + iconv-lite@0.4.24, iconv-lite@^0.4.17, iconv-lite@^0.4.24, iconv-lite@^0.4.4, iconv-lite@~0.4.13: + version "0.4.24" + resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" + integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA== + dependencies: + safer-buffer ">= 2.1.2 < 3" + + ieee754@^1.1.8: + version "1.1.13" + resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.13.tgz#ec168558e95aa181fd87d37f55c32bbcb6708b84" + integrity sha512-4vf7I2LYV/HaWerSo3XmlMkp5eZ83i+/CDluXi/IGTs/O1sejBNhTtnxzmRZfvOUqj7lZjqHkeTvpgSFDlWZTg== + + ignore-by-default@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/ignore-by-default/-/ignore-by-default-1.0.1.tgz#48ca6d72f6c6a3af00a9ad4ae6876be3889e2b09" + integrity sha1-SMptcvbGo68Aqa1K5odr44ieKwk= + + ignore-walk@^3.0.1: + version "3.0.3" + resolved "https://registry.yarnpkg.com/ignore-walk/-/ignore-walk-3.0.3.tgz#017e2447184bfeade7c238e4aefdd1e8f95b1e37" + integrity sha512-m7o6xuOaT1aqheYHKf8W6J5pYH85ZI9w077erOzLje3JsB1gkafkAhHHY19dqjulgIZHFm32Cp5uNZgcQqdJKw== + dependencies: + minimatch "^3.0.4" + + ignore@^4.0.6: + version "4.0.6" + resolved "https://registry.yarnpkg.com/ignore/-/ignore-4.0.6.tgz#750e3db5862087b4737ebac8207ffd1ef27b25fc" + integrity sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg== + + image-size@^0.6.0: + version "0.6.3" + resolved "https://registry.yarnpkg.com/image-size/-/image-size-0.6.3.tgz#e7e5c65bb534bd7cdcedd6cb5166272a85f75fb2" + integrity sha512-47xSUiQioGaB96nqtp5/q55m0aBQSQdyIloMOc/x+QVTDZLNmXE892IIDrJ0hM1A5vcNUDD5tDffkSP5lCaIIA== + + import-fresh@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-2.0.0.tgz#d81355c15612d386c61f9ddd3922d4304822a546" + integrity sha1-2BNVwVYS04bGH53dOSLUMEgipUY= + dependencies: + caller-path "^2.0.0" + resolve-from "^3.0.0" + + import-fresh@^3.0.0, import-fresh@^3.1.0: + version "3.2.1" + resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.2.1.tgz#633ff618506e793af5ac91bf48b72677e15cbe66" + integrity sha512-6e1q1cnWP2RXD9/keSkxHScg508CdXqXWgWBaETNhyuBFz+kUZlKboh+ISK+bU++DmbHimVBrOz/zzPe0sZ3sQ== + dependencies: + parent-module "^1.0.0" + resolve-from "^4.0.0" + + import-lazy@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/import-lazy/-/import-lazy-2.1.0.tgz#05698e3d45c88e8d7e9d92cb0584e77f096f3e43" + integrity sha1-BWmOPUXIjo1+nZLLBYTnfwlvPkM= + + import-local@^3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/import-local/-/import-local-3.0.2.tgz#a8cfd0431d1de4a2199703d003e3e62364fa6db6" + integrity sha512-vjL3+w0oulAVZ0hBHnxa/Nm5TAurf9YLQJDhqRZyqb+VKGOB6LU8t9H1Nr5CIo16vh9XfJTOoHwU0B71S557gA== + dependencies: + pkg-dir "^4.2.0" + resolve-cwd "^3.0.0" + + imurmurhash@^0.1.4: + version "0.1.4" + resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" + integrity sha1-khi5srkoojixPcT7a21XbyMUU+o= + + indent-string@^3.0.0: + version "3.2.0" + resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-3.2.0.tgz#4a5fd6d27cc332f37e5419a504dbb837105c9289" + integrity sha1-Sl/W0nzDMvN+VBmlBNu4NxBckok= + + inflight@^1.0.4: + version "1.0.6" + resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" + integrity sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk= + dependencies: + once "^1.3.0" + wrappy "1" + + inherits@2, inherits@2.0.4, inherits@^2.0.3, inherits@~2.0.3: + version "2.0.4" + resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" + integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== + + inherits@2.0.3: + version "2.0.3" + resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" + integrity sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4= + + ini@^1.3.5, ini@~1.3.0: + version "1.3.5" + resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927" + integrity sha512-RZY5huIKCMRWDUqZlEi72f/lmXKMvuszcMBduliQ3nnWbx9X/ZBQO7DijMEYS9EhHBb2qacRUMtC7svLwe0lcw== + + inline-style-prefixer@^5.0.3: + version "5.1.2" + resolved "https://registry.yarnpkg.com/inline-style-prefixer/-/inline-style-prefixer-5.1.2.tgz#e5a5a3515e25600e016b71e39138971228486c33" + integrity sha512-PYUF+94gDfhy+LsQxM0g3d6Hge4l1pAqOSOiZuHWzMvQEGsbRQ/ck2WioLqrY2ZkHyPgVUXxn+hrkF7D6QUGbA== + dependencies: + css-in-js-utils "^2.0.0" + + inquirer@^3.0.6: + version "3.3.0" + resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-3.3.0.tgz#9dd2f2ad765dcab1ff0443b491442a20ba227dc9" + integrity sha512-h+xtnyk4EwKvFWHrUYsWErEVR+igKtLdchu+o0Z1RL7VU/jVMFbYir2bp6bAj8efFNxWqHX0dIss6fJQ+/+qeQ== + dependencies: + ansi-escapes "^3.0.0" + chalk "^2.0.0" + cli-cursor "^2.1.0" + cli-width "^2.0.0" + external-editor "^2.0.4" + figures "^2.0.0" + lodash "^4.3.0" + mute-stream "0.0.7" + run-async "^2.2.0" + rx-lite "^4.0.8" + rx-lite-aggregates "^4.0.8" + string-width "^2.1.0" + strip-ansi "^4.0.0" + through "^2.3.6" + + inquirer@^7.0.0: + version "7.1.0" + resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-7.1.0.tgz#1298a01859883e17c7264b82870ae1034f92dd29" + integrity sha512-5fJMWEmikSYu0nv/flMc475MhGbB7TSPd/2IpFV4I4rMklboCH2rQjYY5kKiYGHqUF9gvaambupcJFFG9dvReg== + dependencies: + ansi-escapes "^4.2.1" + chalk "^3.0.0" + cli-cursor "^3.1.0" + cli-width "^2.0.0" + external-editor "^3.0.3" + figures "^3.0.0" + lodash "^4.17.15" + mute-stream "0.0.8" + run-async "^2.4.0" + rxjs "^6.5.3" + string-width "^4.1.0" + strip-ansi "^6.0.0" + through "^2.3.6" + + internal-slot@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/internal-slot/-/internal-slot-1.0.2.tgz#9c2e9fb3cd8e5e4256c6f45fe310067fcfa378a3" + integrity sha512-2cQNfwhAfJIkU4KZPkDI+Gj5yNNnbqi40W9Gge6dfnk4TocEVm00B3bdiL+JINrbGJil2TeHvM4rETGzk/f/0g== + dependencies: + es-abstract "^1.17.0-next.1" + has "^1.0.3" + side-channel "^1.0.2" + + invariant@^2.2.0, invariant@^2.2.2, invariant@^2.2.4: + version "2.2.4" + resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.4.tgz#610f3c92c9359ce1db616e538008d23ff35158e6" + integrity sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA== + dependencies: + loose-envify "^1.0.0" + + invert-kv@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" + integrity sha1-EEqOSqym09jNFXqO+L+rLXo//bY= + + invert-kv@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-2.0.0.tgz#7393f5afa59ec9ff5f67a27620d11c226e3eec02" + integrity sha512-wPVv/y/QQ/Uiirj/vh3oP+1Ww+AWehmi1g5fFWGPF6IpCBCDVrhgHRMvrLfdYcwDh3QJbGXDW4JAuzxElLSqKA== + + ip-regex@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/ip-regex/-/ip-regex-2.1.0.tgz#fa78bf5d2e6913c911ce9f819ee5146bb6d844e9" + integrity sha1-+ni/XS5pE8kRzp+BnuUUa7bYROk= + + ipaddr.js@1.9.1: + version "1.9.1" + resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.9.1.tgz#bff38543eeb8984825079ff3a2a8e6cbd46781b3" + integrity sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g== + + is-accessor-descriptor@^0.1.6: + version "0.1.6" + resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz#a9e12cb3ae8d876727eeef3843f8a0897b5c98d6" + integrity sha1-qeEss66Nh2cn7u84Q/igiXtcmNY= + dependencies: + kind-of "^3.0.2" + + is-accessor-descriptor@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz#169c2f6d3df1f992618072365c9b0ea1f6878656" + integrity sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ== + dependencies: + kind-of "^6.0.0" + + is-arrayish@^0.2.1: + version "0.2.1" + resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" + integrity sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0= + + is-arrayish@^0.3.1: + version "0.3.2" + resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.3.2.tgz#4574a2ae56f7ab206896fb431eaeed066fdf8f03" + integrity sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ== + + is-binary-path@~2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09" + integrity sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw== + dependencies: + binary-extensions "^2.0.0" + + is-buffer@^1.1.5: + version "1.1.6" + resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" + integrity sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w== + + is-callable@^1.1.4, is-callable@^1.1.5: + version "1.1.5" + resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.1.5.tgz#f7e46b596890456db74e7f6e976cb3273d06faab" + integrity sha512-ESKv5sMCJB2jnHTWZ3O5itG+O128Hsus4K4Qh1h2/cgn2vbgnLSVqfV46AeJA9D5EeeLa9w81KUXMtn34zhX+Q== + + is-ci@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-2.0.0.tgz#6bc6334181810e04b5c22b3d589fdca55026404c" + integrity sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w== + dependencies: + ci-info "^2.0.0" + + is-data-descriptor@^0.1.4: + version "0.1.4" + resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz#0b5ee648388e2c860282e793f1856fec3f301b56" + integrity sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y= + dependencies: + kind-of "^3.0.2" + + is-data-descriptor@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz#d84876321d0e7add03990406abbbbd36ba9268c7" + integrity sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ== + dependencies: + kind-of "^6.0.0" + + is-date-object@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.2.tgz#bda736f2cd8fd06d32844e7743bfa7494c3bfd7e" + integrity sha512-USlDT524woQ08aoZFzh3/Z6ch9Y/EWXEHQ/AaRN0SkKq4t2Jw2R2339tSXmwuVoY7LLlBCbOIlx2myP/L5zk0g== + + is-descriptor@^0.1.0: + version "0.1.6" + resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-0.1.6.tgz#366d8240dde487ca51823b1ab9f07a10a78251ca" + integrity sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg== + dependencies: + is-accessor-descriptor "^0.1.6" + is-data-descriptor "^0.1.4" + kind-of "^5.0.0" + + is-descriptor@^1.0.0, is-descriptor@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-1.0.2.tgz#3b159746a66604b04f8c81524ba365c5f14d86ec" + integrity sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg== + dependencies: + is-accessor-descriptor "^1.0.0" + is-data-descriptor "^1.0.0" + kind-of "^6.0.2" + + is-directory@^0.3.1: + version "0.3.1" + resolved "https://registry.yarnpkg.com/is-directory/-/is-directory-0.3.1.tgz#61339b6f2475fc772fd9c9d83f5c8575dc154ae1" + integrity sha1-YTObbyR1/Hcv2cnYP1yFddwVSuE= + + is-extendable@^0.1.0, is-extendable@^0.1.1: + version "0.1.1" + resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" + integrity sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik= + + is-extendable@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-1.0.1.tgz#a7470f9e426733d81bd81e1155264e3a3507cab4" + integrity sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA== + dependencies: + is-plain-object "^2.0.4" + + is-extglob@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" + integrity sha1-qIwCU1eR8C7TfHahueqXc8gz+MI= + + is-fullwidth-code-point@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" + integrity sha1-754xOG8DGn8NZDr4L95QxFfvAMs= + dependencies: + number-is-nan "^1.0.0" + + is-fullwidth-code-point@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" + integrity sha1-o7MKXE8ZkYMWeqq5O+764937ZU8= + + is-fullwidth-code-point@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" + integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== + + is-function@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/is-function/-/is-function-1.0.1.tgz#12cfb98b65b57dd3d193a3121f5f6e2f437602b5" + integrity sha1-Es+5i2W1fdPRk6MSH19uL0N2ArU= + + is-generator-fn@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/is-generator-fn/-/is-generator-fn-2.1.0.tgz#7d140adc389aaf3011a8f2a2a4cfa6faadffb118" + integrity sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ== + + is-glob@^4.0.0, is-glob@^4.0.1, is-glob@~4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.1.tgz#7567dbe9f2f5e2467bc77ab83c4a29482407a5dc" + integrity sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg== + dependencies: + is-extglob "^2.1.1" + + is-installed-globally@^0.3.1: + version "0.3.2" + resolved "https://registry.yarnpkg.com/is-installed-globally/-/is-installed-globally-0.3.2.tgz#fd3efa79ee670d1187233182d5b0a1dd00313141" + integrity sha512-wZ8x1js7Ia0kecP/CHM/3ABkAmujX7WPvQk6uu3Fly/Mk44pySulQpnHG46OMjHGXApINnV4QhY3SWnECO2z5g== + dependencies: + global-dirs "^2.0.1" + is-path-inside "^3.0.1" + + is-npm@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/is-npm/-/is-npm-4.0.0.tgz#c90dd8380696df87a7a6d823c20d0b12bbe3c84d" + integrity sha512-96ECIfh9xtDDlPylNPXhzjsykHsMJZ18ASpaWzQyBr4YRTcVjUvzaHayDAES2oU/3KpljhHUjtSRNiDwi0F0ig== + + is-number@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" + integrity sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU= + dependencies: + kind-of "^3.0.2" + + is-number@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" + integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== + + is-obj@^1.0.0, is-obj@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-1.0.1.tgz#3e4729ac1f5fde025cd7d83a896dab9f4f67db0f" + integrity sha1-PkcprB9f3gJc19g6iW2rn09n2w8= + + is-obj@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-2.0.0.tgz#473fb05d973705e3fd9620545018ca8e22ef4982" + integrity sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w== + + is-observable@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/is-observable/-/is-observable-1.1.0.tgz#b3e986c8f44de950867cab5403f5a3465005975e" + integrity sha512-NqCa4Sa2d+u7BWc6CukaObG3Fh+CU9bvixbpcXYhy2VvYS7vVGIdAgnIS5Ks3A/cqk4rebLJ9s8zBstT2aKnIA== + dependencies: + symbol-observable "^1.1.0" + + is-path-inside@^3.0.1: + version "3.0.2" + resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-3.0.2.tgz#f5220fc82a3e233757291dddc9c5877f2a1f3017" + integrity sha512-/2UGPSgmtqwo1ktx8NDHjuPwZWmHhO+gj0f93EkhLB5RgW9RZevWYYlIkS6zePc6U2WpOdQYIwHe9YC4DWEBVg== + + is-plain-object@^2.0.3, is-plain-object@^2.0.4: + version "2.0.4" + resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677" + integrity sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og== + dependencies: + isobject "^3.0.1" + + is-promise@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa" + integrity sha1-eaKp7OfwlugPNtKy87wWwf9L8/o= + + is-regex@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.0.5.tgz#39d589a358bf18967f726967120b8fc1aed74eae" + integrity sha512-vlKW17SNq44owv5AQR3Cq0bQPEb8+kF3UKZ2fiZNOWtztYE5i0CzCZxFDwO58qAOWtxdBRVO/V5Qin1wjCqFYQ== + dependencies: + has "^1.0.3" + + is-regexp@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-regexp/-/is-regexp-1.0.0.tgz#fd2d883545c46bac5a633e7b9a09e87fa2cb5069" + integrity sha1-/S2INUXEa6xaYz57mgnof6LLUGk= + + is-stream@^1.0.1, is-stream@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" + integrity sha1-EtSj3U5o4Lec6428hBc66A2RykQ= + + is-stream@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-2.0.0.tgz#bde9c32680d6fae04129d6ac9d921ce7815f78e3" + integrity sha512-XCoy+WlUr7d1+Z8GgSuXmpuUFC9fOhRXglJMx+dwLKTkL44Cjd4W1Z5P+BQZpr+cR93aGP4S/s7Ftw6Nd/kiEw== + + is-string@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/is-string/-/is-string-1.0.5.tgz#40493ed198ef3ff477b8c7f92f644ec82a5cd3a6" + integrity sha512-buY6VNRjhQMiF1qWDouloZlQbRhDPCebwxSjxMjxgemYT46YMd2NR0/H+fBhEfWX4A/w9TBJ+ol+okqJKFE6vQ== + + is-symbol@^1.0.2: + version "1.0.3" + resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.3.tgz#38e1014b9e6329be0de9d24a414fd7441ec61937" + integrity sha512-OwijhaRSgqvhm/0ZdAcXNZt9lYdKFpcRDT5ULUuYXPoT794UNOdU+gpT6Rzo7b4V2HUl/op6GqY894AZwv9faQ== + dependencies: + has-symbols "^1.0.1" + + is-typedarray@^1.0.0, is-typedarray@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" + integrity sha1-5HnICFjfDBsR3dppQPlgEfzaSpo= + + is-windows@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-1.0.2.tgz#d1850eb9791ecd18e6182ce12a30f396634bb19d" + integrity sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA== + + is-wsl@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/is-wsl/-/is-wsl-1.1.0.tgz#1f16e4aa22b04d1336b66188a66af3c600c3a66d" + integrity sha1-HxbkqiKwTRM2tmGIpmrzxgDDpm0= + + is-wsl@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/is-wsl/-/is-wsl-2.1.1.tgz#4a1c152d429df3d441669498e2486d3596ebaf1d" + integrity sha512-umZHcSrwlDHo2TGMXv0DZ8dIUGunZ2Iv68YZnrmCiBPkZ4aaOhtv7pXJKeki9k3qJ3RJr0cDyitcl5wEH3AYog== + + is-yarn-global@^0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/is-yarn-global/-/is-yarn-global-0.3.0.tgz#d502d3382590ea3004893746754c89139973e232" + integrity sha512-VjSeb/lHmkoyd8ryPVIKvOCn4D1koMqY+vqyjjUfc3xyKtP4dYOxM44sZrnqQSzSds3xyOrUTLTC9LVCVgLngw== + + isarray@0.0.1: + version "0.0.1" + resolved "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf" + integrity sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8= + + isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" + integrity sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE= + + isexe@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" + integrity sha1-6PvzdNxVb/iUehDcsFctYz8s+hA= + + isobject@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" + integrity sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk= + dependencies: + isarray "1.0.0" + + isobject@^3.0.0, isobject@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df" + integrity sha1-TkMekrEalzFjaqH5yNHMvP2reN8= + + isomorphic-fetch@^2.1.1: + version "2.2.1" + resolved "https://registry.yarnpkg.com/isomorphic-fetch/-/isomorphic-fetch-2.2.1.tgz#611ae1acf14f5e81f729507472819fe9733558a9" + integrity sha1-YRrhrPFPXoH3KVB0coGf6XM1WKk= + dependencies: + node-fetch "^1.0.1" + whatwg-fetch ">=0.10.0" + + isstream@~0.1.2: + version "0.1.2" + resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" + integrity sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo= + + istanbul-lib-coverage@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-3.0.0.tgz#f5944a37c70b550b02a78a5c3b2055b280cec8ec" + integrity sha512-UiUIqxMgRDET6eR+o5HbfRYP1l0hqkWOs7vNxC/mggutCMUIhWMm8gAHb8tHlyfD3/l6rlgNA5cKdDzEAf6hEg== + + istanbul-lib-instrument@^4.0.0: + version "4.0.1" + resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-4.0.1.tgz#61f13ac2c96cfefb076fe7131156cc05907874e6" + integrity sha512-imIchxnodll7pvQBYOqUu88EufLCU56LMeFPZZM/fJZ1irYcYdqroaV+ACK1Ila8ls09iEYArp+nqyC6lW1Vfg== + dependencies: + "@babel/core" "^7.7.5" + "@babel/parser" "^7.7.5" + "@babel/template" "^7.7.4" + "@babel/traverse" "^7.7.4" + "@istanbuljs/schema" "^0.1.2" + istanbul-lib-coverage "^3.0.0" + semver "^6.3.0" + + istanbul-lib-report@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz#7518fe52ea44de372f460a76b5ecda9ffb73d8a6" + integrity sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw== + dependencies: + istanbul-lib-coverage "^3.0.0" + make-dir "^3.0.0" + supports-color "^7.1.0" + + istanbul-lib-source-maps@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.0.tgz#75743ce6d96bb86dc7ee4352cf6366a23f0b1ad9" + integrity sha512-c16LpFRkR8vQXyHZ5nLpY35JZtzj1PQY1iZmesUbf1FZHbIupcWfjgOXBY9YHkLEQ6puz1u4Dgj6qmU/DisrZg== + dependencies: + debug "^4.1.1" + istanbul-lib-coverage "^3.0.0" + source-map "^0.6.1" + + istanbul-reports@^3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-3.0.2.tgz#d593210e5000683750cb09fc0644e4b6e27fd53b" + integrity sha512-9tZvz7AiR3PEDNGiV9vIouQ/EAcqMXFmkcA1CDFTwOB98OZVDL0PH9glHotf5Ugp6GCOTypfzGWI/OqjWNCRUw== + dependencies: + html-escaper "^2.0.0" + istanbul-lib-report "^3.0.0" + + jest-changed-files@^25.4.0: + version "25.4.0" + resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-25.4.0.tgz#e573db32c2fd47d2b90357ea2eda0622c5c5cbd6" + integrity sha512-VR/rfJsEs4BVMkwOTuStRyS630fidFVekdw/lBaBQjx9KK3VZFOZ2c0fsom2fRp8pMCrCTP6LGna00o/DXGlqA== + dependencies: + "@jest/types" "^25.4.0" + execa "^3.2.0" + throat "^5.0.0" + + jest-cli@^25.4.0: + version "25.4.0" + resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-25.4.0.tgz#5dac8be0fece6ce39f0d671395a61d1357322bab" + integrity sha512-usyrj1lzCJZMRN1r3QEdnn8e6E6yCx/QN7+B1sLoA68V7f3WlsxSSQfy0+BAwRiF4Hz2eHauf11GZG3PIfWTXQ== + dependencies: + "@jest/core" "^25.4.0" + "@jest/test-result" "^25.4.0" + "@jest/types" "^25.4.0" + chalk "^3.0.0" + exit "^0.1.2" + import-local "^3.0.2" + is-ci "^2.0.0" + jest-config "^25.4.0" + jest-util "^25.4.0" + jest-validate "^25.4.0" + prompts "^2.0.1" + realpath-native "^2.0.0" + yargs "^15.3.1" + + jest-config@^25.4.0: + version "25.4.0" + resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-25.4.0.tgz#56e5df3679a96ff132114b44fb147389c8c0a774" + integrity sha512-egT9aKYxMyMSQV1aqTgam0SkI5/I2P9qrKexN5r2uuM2+68ypnc+zPGmfUxK7p1UhE7dYH9SLBS7yb+TtmT1AA== + dependencies: + "@babel/core" "^7.1.0" + "@jest/test-sequencer" "^25.4.0" + "@jest/types" "^25.4.0" + babel-jest "^25.4.0" + chalk "^3.0.0" + deepmerge "^4.2.2" + glob "^7.1.1" + jest-environment-jsdom "^25.4.0" + jest-environment-node "^25.4.0" + jest-get-type "^25.2.6" + jest-jasmine2 "^25.4.0" + jest-regex-util "^25.2.6" + jest-resolve "^25.4.0" + jest-util "^25.4.0" + jest-validate "^25.4.0" + micromatch "^4.0.2" + pretty-format "^25.4.0" + realpath-native "^2.0.0" + + jest-diff@^24.3.0: + version "24.9.0" + resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-24.9.0.tgz#931b7d0d5778a1baf7452cb816e325e3724055da" + integrity sha512-qMfrTs8AdJE2iqrTp0hzh7kTd2PQWrsFyj9tORoKmu32xjPjeE4NyjVRDz8ybYwqS2ik8N4hsIpiVTyFeo2lBQ== + dependencies: + chalk "^2.0.1" + diff-sequences "^24.9.0" + jest-get-type "^24.9.0" + pretty-format "^24.9.0" + + jest-diff@^25.4.0: + version "25.4.0" + resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-25.4.0.tgz#260b70f19a46c283adcad7f081cae71eb784a634" + integrity sha512-kklLbJVXW0y8UKOWOdYhI6TH5MG6QAxrWiBMgQaPIuhj3dNFGirKCd+/xfplBXICQ7fI+3QcqHm9p9lWu1N6ug== + dependencies: + chalk "^3.0.0" + diff-sequences "^25.2.6" + jest-get-type "^25.2.6" + pretty-format "^25.4.0" + + jest-docblock@^25.3.0: + version "25.3.0" + resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-25.3.0.tgz#8b777a27e3477cd77a168c05290c471a575623ef" + integrity sha512-aktF0kCar8+zxRHxQZwxMy70stc9R1mOmrLsT5VO3pIT0uzGRSDAXxSlz4NqQWpuLjPpuMhPRl7H+5FRsvIQAg== + dependencies: + detect-newline "^3.0.0" + + jest-each@^25.4.0: + version "25.4.0" + resolved "https://registry.yarnpkg.com/jest-each/-/jest-each-25.4.0.tgz#ad4e46164764e8e77058f169a0076a7f86f6b7d4" + integrity sha512-lwRIJ8/vQU/6vq3nnSSUw1Y3nz5tkYSFIywGCZpUBd6WcRgpn8NmJoQICojbpZmsJOJNHm0BKdyuJ6Xdx+eDQQ== + dependencies: + "@jest/types" "^25.4.0" + chalk "^3.0.0" + jest-get-type "^25.2.6" + jest-util "^25.4.0" + pretty-format "^25.4.0" + + jest-environment-jsdom@^25.4.0: + version "25.4.0" + resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-25.4.0.tgz#bbfc7f85bb6ade99089062a830c79cb454565cf0" + integrity sha512-KTitVGMDrn2+pt7aZ8/yUTuS333w3pWt1Mf88vMntw7ZSBNDkRS6/4XLbFpWXYfWfp1FjcjQTOKzbK20oIehWQ== + dependencies: + "@jest/environment" "^25.4.0" + "@jest/fake-timers" "^25.4.0" + "@jest/types" "^25.4.0" + jest-mock "^25.4.0" + jest-util "^25.4.0" + jsdom "^15.2.1" + + jest-environment-node@^25.4.0: + version "25.4.0" + resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-25.4.0.tgz#188aef01ae6418e001c03fdd1c299961e1439082" + integrity sha512-wryZ18vsxEAKFH7Z74zi/y/SyI1j6UkVZ6QsllBuT/bWlahNfQjLNwFsgh/5u7O957dYFoXj4yfma4n4X6kU9A== + dependencies: + "@jest/environment" "^25.4.0" + "@jest/fake-timers" "^25.4.0" + "@jest/types" "^25.4.0" + jest-mock "^25.4.0" + jest-util "^25.4.0" + semver "^6.3.0" + + jest-get-type@^24.9.0: + version "24.9.0" + resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-24.9.0.tgz#1684a0c8a50f2e4901b6644ae861f579eed2ef0e" + integrity sha512-lUseMzAley4LhIcpSP9Jf+fTrQ4a1yHQwLNeeVa2cEmbCGeoZAtYPOIv8JaxLD/sUpKxetKGP+gsHl8f8TSj8Q== + + jest-get-type@^25.2.6: + version "25.2.6" + resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-25.2.6.tgz#0b0a32fab8908b44d508be81681487dbabb8d877" + integrity sha512-DxjtyzOHjObRM+sM1knti6or+eOgcGU4xVSb2HNP1TqO4ahsT+rqZg+nyqHWJSvWgKC5cG3QjGFBqxLghiF/Ig== + + jest-haste-map@^24.7.1: + version "24.9.0" + resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-24.9.0.tgz#b38a5d64274934e21fa417ae9a9fbeb77ceaac7d" + integrity sha512-kfVFmsuWui2Sj1Rp1AJ4D9HqJwE4uwTlS/vO+eRUaMmd54BFpli2XhMQnPC2k4cHFVbB2Q2C+jtI1AGLgEnCjQ== + dependencies: + "@jest/types" "^24.9.0" + anymatch "^2.0.0" + fb-watchman "^2.0.0" + graceful-fs "^4.1.15" + invariant "^2.2.4" + jest-serializer "^24.9.0" + jest-util "^24.9.0" + jest-worker "^24.9.0" + micromatch "^3.1.10" + sane "^4.0.3" + walker "^1.0.7" + optionalDependencies: + fsevents "^1.2.7" + + jest-haste-map@^25.4.0: + version "25.4.0" + resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-25.4.0.tgz#da7c309dd7071e0a80c953ba10a0ec397efb1ae2" + integrity sha512-5EoCe1gXfGC7jmXbKzqxESrgRcaO3SzWXGCnvp9BcT0CFMyrB1Q6LIsjl9RmvmJGQgW297TCfrdgiy574Rl9HQ== + dependencies: + "@jest/types" "^25.4.0" + anymatch "^3.0.3" + fb-watchman "^2.0.0" + graceful-fs "^4.2.3" + jest-serializer "^25.2.6" + jest-util "^25.4.0" + jest-worker "^25.4.0" + micromatch "^4.0.2" + sane "^4.0.3" + walker "^1.0.7" + which "^2.0.2" + optionalDependencies: + fsevents "^2.1.2" + + jest-jasmine2@^25.4.0: + version "25.4.0" + resolved "https://registry.yarnpkg.com/jest-jasmine2/-/jest-jasmine2-25.4.0.tgz#3d3d19514022e2326e836c2b66d68b4cb63c5861" + integrity sha512-QccxnozujVKYNEhMQ1vREiz859fPN/XklOzfQjm2j9IGytAkUbSwjFRBtQbHaNZ88cItMpw02JnHGsIdfdpwxQ== + dependencies: + "@babel/traverse" "^7.1.0" + "@jest/environment" "^25.4.0" + "@jest/source-map" "^25.2.6" + "@jest/test-result" "^25.4.0" + "@jest/types" "^25.4.0" + chalk "^3.0.0" + co "^4.6.0" + expect "^25.4.0" + is-generator-fn "^2.0.0" + jest-each "^25.4.0" + jest-matcher-utils "^25.4.0" + jest-message-util "^25.4.0" + jest-runtime "^25.4.0" + jest-snapshot "^25.4.0" + jest-util "^25.4.0" + pretty-format "^25.4.0" + throat "^5.0.0" + + jest-leak-detector@^25.4.0: + version "25.4.0" + resolved "https://registry.yarnpkg.com/jest-leak-detector/-/jest-leak-detector-25.4.0.tgz#cf94a160c78e53d810e7b2f40b5fd7ee263375b3" + integrity sha512-7Y6Bqfv2xWsB+7w44dvZuLs5SQ//fzhETgOGG7Gq3TTGFdYvAgXGwV8z159RFZ6fXiCPm/szQ90CyfVos9JIFQ== + dependencies: + jest-get-type "^25.2.6" + pretty-format "^25.4.0" + + jest-matcher-utils@^25.4.0: + version "25.4.0" + resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-25.4.0.tgz#dc3e7aec402a1e567ed80b572b9ad285878895e6" + integrity sha512-yPMdtj7YDgXhnGbc66bowk8AkQ0YwClbbwk3Kzhn5GVDrciiCr27U4NJRbrqXbTdtxjImONITg2LiRIw650k5A== + dependencies: + chalk "^3.0.0" + jest-diff "^25.4.0" + jest-get-type "^25.2.6" + pretty-format "^25.4.0" + + jest-message-util@^24.9.0: + version "24.9.0" + resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-24.9.0.tgz#527f54a1e380f5e202a8d1149b0ec872f43119e3" + integrity sha512-oCj8FiZ3U0hTP4aSui87P4L4jC37BtQwUMqk+zk/b11FR19BJDeZsZAvIHutWnmtw7r85UmR3CEWZ0HWU2mAlw== + dependencies: + "@babel/code-frame" "^7.0.0" + "@jest/test-result" "^24.9.0" + "@jest/types" "^24.9.0" + "@types/stack-utils" "^1.0.1" + chalk "^2.0.1" + micromatch "^3.1.10" + slash "^2.0.0" + stack-utils "^1.0.1" + + jest-message-util@^25.4.0: + version "25.4.0" + resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-25.4.0.tgz#2899e8bc43f5317acf8dfdfe89ea237d354fcdab" + integrity sha512-LYY9hRcVGgMeMwmdfh9tTjeux1OjZHMusq/E5f3tJN+dAoVVkJtq5ZUEPIcB7bpxDUt2zjUsrwg0EGgPQ+OhXQ== + dependencies: + "@babel/code-frame" "^7.0.0" + "@jest/types" "^25.4.0" + "@types/stack-utils" "^1.0.1" + chalk "^3.0.0" + micromatch "^4.0.2" + slash "^3.0.0" + stack-utils "^1.0.1" + + jest-mock@^24.9.0: + version "24.9.0" + resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-24.9.0.tgz#c22835541ee379b908673ad51087a2185c13f1c6" + integrity sha512-3BEYN5WbSq9wd+SyLDES7AHnjH9A/ROBwmz7l2y+ol+NtSFO8DYiEBzoO1CeFc9a8DYy10EO4dDFVv/wN3zl1w== + dependencies: + "@jest/types" "^24.9.0" + + jest-mock@^25.4.0: + version "25.4.0" + resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-25.4.0.tgz#ded7d64b5328d81d78d2138c825d3a45e30ec8ca" + integrity sha512-MdazSfcYAUjJjuVTTnusLPzE0pE4VXpOUzWdj8sbM+q6abUjm3bATVPXFqTXrxSieR8ocpvQ9v/QaQCftioQFg== + dependencies: + "@jest/types" "^25.4.0" + + jest-pnp-resolver@^1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/jest-pnp-resolver/-/jest-pnp-resolver-1.2.1.tgz#ecdae604c077a7fbc70defb6d517c3c1c898923a" + integrity sha512-pgFw2tm54fzgYvc/OHrnysABEObZCUNFnhjoRjaVOCN8NYc032/gVjPaHD4Aq6ApkSieWtfKAFQtmDKAmhupnQ== + + jest-regex-util@^25.2.6: + version "25.2.6" + resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-25.2.6.tgz#d847d38ba15d2118d3b06390056028d0f2fd3964" + integrity sha512-KQqf7a0NrtCkYmZZzodPftn7fL1cq3GQAFVMn5Hg8uKx/fIenLEobNanUxb7abQ1sjADHBseG/2FGpsv/wr+Qw== + + jest-resolve-dependencies@^25.4.0: + version "25.4.0" + resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-25.4.0.tgz#783937544cfc40afcc7c569aa54748c4b3f83f5a" + integrity sha512-A0eoZXx6kLiuG1Ui7wITQPl04HwjLErKIJTt8GR3c7UoDAtzW84JtCrgrJ6Tkw6c6MwHEyAaLk7dEPml5pf48A== + dependencies: + "@jest/types" "^25.4.0" + jest-regex-util "^25.2.6" + jest-snapshot "^25.4.0" + + jest-resolve@^25.4.0: + version "25.4.0" + resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-25.4.0.tgz#6f4540ce0d419c4c720e791e871da32ba4da7a60" + integrity sha512-wOsKqVDFWUiv8BtLMCC6uAJ/pHZkfFgoBTgPtmYlsprAjkxrr2U++ZnB3l5ykBMd2O24lXvf30SMAjJIW6k2aA== + dependencies: + "@jest/types" "^25.4.0" + browser-resolve "^1.11.3" + chalk "^3.0.0" + jest-pnp-resolver "^1.2.1" + read-pkg-up "^7.0.1" + realpath-native "^2.0.0" + resolve "^1.15.1" + slash "^3.0.0" + + jest-runner@^25.4.0: + version "25.4.0" + resolved "https://registry.yarnpkg.com/jest-runner/-/jest-runner-25.4.0.tgz#6ca4a3d52e692bbc081228fa68f750012f1f29e5" + integrity sha512-wWQSbVgj2e/1chFdMRKZdvlmA6p1IPujhpLT7TKNtCSl1B0PGBGvJjCaiBal/twaU2yfk8VKezHWexM8IliBfA== + dependencies: + "@jest/console" "^25.4.0" + "@jest/environment" "^25.4.0" + "@jest/test-result" "^25.4.0" + "@jest/types" "^25.4.0" + chalk "^3.0.0" + exit "^0.1.2" + graceful-fs "^4.2.3" + jest-config "^25.4.0" + jest-docblock "^25.3.0" + jest-haste-map "^25.4.0" + jest-jasmine2 "^25.4.0" + jest-leak-detector "^25.4.0" + jest-message-util "^25.4.0" + jest-resolve "^25.4.0" + jest-runtime "^25.4.0" + jest-util "^25.4.0" + jest-worker "^25.4.0" + source-map-support "^0.5.6" + throat "^5.0.0" + + jest-runtime@^25.4.0: + version "25.4.0" + resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-25.4.0.tgz#1e5227a9e2159d26ae27dcd426ca6bc041983439" + integrity sha512-lgNJlCDULtXu9FumnwCyWlOub8iytijwsPNa30BKrSNtgoT6NUMXOPrZvsH06U6v0wgD/Igwz13nKA2wEKU2VA== + dependencies: + "@jest/console" "^25.4.0" + "@jest/environment" "^25.4.0" + "@jest/source-map" "^25.2.6" + "@jest/test-result" "^25.4.0" + "@jest/transform" "^25.4.0" + "@jest/types" "^25.4.0" + "@types/yargs" "^15.0.0" + chalk "^3.0.0" + collect-v8-coverage "^1.0.0" + exit "^0.1.2" + glob "^7.1.3" + graceful-fs "^4.2.3" + jest-config "^25.4.0" + jest-haste-map "^25.4.0" + jest-message-util "^25.4.0" + jest-mock "^25.4.0" + jest-regex-util "^25.2.6" + jest-resolve "^25.4.0" + jest-snapshot "^25.4.0" + jest-util "^25.4.0" + jest-validate "^25.4.0" + realpath-native "^2.0.0" + slash "^3.0.0" + strip-bom "^4.0.0" + yargs "^15.3.1" + + jest-serializer@^24.4.0, jest-serializer@^24.9.0: + version "24.9.0" + resolved "https://registry.yarnpkg.com/jest-serializer/-/jest-serializer-24.9.0.tgz#e6d7d7ef96d31e8b9079a714754c5d5c58288e73" + integrity sha512-DxYipDr8OvfrKH3Kel6NdED3OXxjvxXZ1uIY2I9OFbGg+vUkkg7AGvi65qbhbWNPvDckXmzMPbK3u3HaDO49bQ== + + jest-serializer@^25.2.6: + version "25.2.6" + resolved "https://registry.yarnpkg.com/jest-serializer/-/jest-serializer-25.2.6.tgz#3bb4cc14fe0d8358489dbbefbb8a4e708ce039b7" + integrity sha512-RMVCfZsezQS2Ww4kB5HJTMaMJ0asmC0BHlnobQC6yEtxiFKIxohFA4QSXSabKwSggaNkqxn6Z2VwdFCjhUWuiQ== + + jest-snapshot@^25.4.0: + version "25.4.0" + resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-25.4.0.tgz#e0b26375e2101413fd2ccb4278a5711b1922545c" + integrity sha512-J4CJ0X2SaGheYRZdLz9CRHn9jUknVmlks4UBeu270hPAvdsauFXOhx9SQP2JtRzhnR3cvro/9N9KP83/uvFfRg== + dependencies: + "@babel/types" "^7.0.0" + "@jest/types" "^25.4.0" + "@types/prettier" "^1.19.0" + chalk "^3.0.0" + expect "^25.4.0" + jest-diff "^25.4.0" + jest-get-type "^25.2.6" + jest-matcher-utils "^25.4.0" + jest-message-util "^25.4.0" + jest-resolve "^25.4.0" + make-dir "^3.0.0" + natural-compare "^1.4.0" + pretty-format "^25.4.0" + semver "^6.3.0" + + jest-util@^24.9.0: + version "24.9.0" + resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-24.9.0.tgz#7396814e48536d2e85a37de3e4c431d7cb140162" + integrity sha512-x+cZU8VRmOJxbA1K5oDBdxQmdq0OIdADarLxk0Mq+3XS4jgvhG/oKGWcIDCtPG0HgjxOYvF+ilPJQsAyXfbNOg== + dependencies: + "@jest/console" "^24.9.0" + "@jest/fake-timers" "^24.9.0" + "@jest/source-map" "^24.9.0" + "@jest/test-result" "^24.9.0" + "@jest/types" "^24.9.0" + callsites "^3.0.0" + chalk "^2.0.1" + graceful-fs "^4.1.15" + is-ci "^2.0.0" + mkdirp "^0.5.1" + slash "^2.0.0" + source-map "^0.6.0" + + jest-util@^25.4.0: + version "25.4.0" + resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-25.4.0.tgz#6a093d09d86d2b41ef583e5fe7dd3976346e1acd" + integrity sha512-WSZD59sBtAUjLv1hMeKbNZXmMcrLRWcYqpO8Dz8b4CeCTZpfNQw2q9uwrYAD+BbJoLJlu4ezVPwtAmM/9/SlZA== + dependencies: + "@jest/types" "^25.4.0" + chalk "^3.0.0" + is-ci "^2.0.0" + make-dir "^3.0.0" + + jest-validate@^24.7.0: + version "24.9.0" + resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-24.9.0.tgz#0775c55360d173cd854e40180756d4ff52def8ab" + integrity sha512-HPIt6C5ACwiqSiwi+OfSSHbK8sG7akG8eATl+IPKaeIjtPOeBUd/g3J7DghugzxrGjI93qS/+RPKe1H6PqvhRQ== + dependencies: + "@jest/types" "^24.9.0" + camelcase "^5.3.1" + chalk "^2.0.1" + jest-get-type "^24.9.0" + leven "^3.1.0" + pretty-format "^24.9.0" + + jest-validate@^25.4.0: + version "25.4.0" + resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-25.4.0.tgz#2e177a93b716a137110eaf2768f3d9095abd3f38" + integrity sha512-hvjmes/EFVJSoeP1yOl8qR8mAtMR3ToBkZeXrD/ZS9VxRyWDqQ/E1C5ucMTeSmEOGLipvdlyipiGbHJ+R1MQ0g== + dependencies: + "@jest/types" "^25.4.0" + camelcase "^5.3.1" + chalk "^3.0.0" + jest-get-type "^25.2.6" + leven "^3.1.0" + pretty-format "^25.4.0" + + jest-watcher@^25.4.0: + version "25.4.0" + resolved "https://registry.yarnpkg.com/jest-watcher/-/jest-watcher-25.4.0.tgz#63ec0cd5c83bb9c9d1ac95be7558dd61c995ff05" + integrity sha512-36IUfOSRELsKLB7k25j/wutx0aVuHFN6wO94gPNjQtQqFPa2rkOymmx9rM5EzbF3XBZZ2oqD9xbRVoYa2w86gw== + dependencies: + "@jest/test-result" "^25.4.0" + "@jest/types" "^25.4.0" + ansi-escapes "^4.2.1" + chalk "^3.0.0" + jest-util "^25.4.0" + string-length "^3.1.0" + + jest-worker@^24.6.0, jest-worker@^24.9.0: + version "24.9.0" + resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-24.9.0.tgz#5dbfdb5b2d322e98567898238a9697bcce67b3e5" + integrity sha512-51PE4haMSXcHohnSMdM42anbvZANYTqMrr52tVKPqqsPJMzoP6FYYDVqahX/HrAoKEKz3uUPzSvKs9A3qR4iVw== + dependencies: + merge-stream "^2.0.0" + supports-color "^6.1.0" + + jest-worker@^25.4.0: + version "25.4.0" + resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-25.4.0.tgz#ee0e2ceee5a36ecddf5172d6d7e0ab00df157384" + integrity sha512-ghAs/1FtfYpMmYQ0AHqxV62XPvKdUDIBBApMZfly+E9JEmYh2K45G0R5dWxx986RN12pRCxsViwQVtGl+N4whw== + dependencies: + merge-stream "^2.0.0" + supports-color "^7.0.0" + + jest@^25.4.0: + version "25.4.0" + resolved "https://registry.yarnpkg.com/jest/-/jest-25.4.0.tgz#fb96892c5c4e4a6b9bcb12068849cddf4c5f8cc7" + integrity sha512-XWipOheGB4wai5JfCYXd6vwsWNwM/dirjRoZgAa7H2wd8ODWbli2AiKjqG8AYhyx+8+5FBEdpO92VhGlBydzbw== + dependencies: + "@jest/core" "^25.4.0" + import-local "^3.0.2" + jest-cli "^25.4.0" + + jetifier@^1.6.2: + version "1.6.5" + resolved "https://registry.yarnpkg.com/jetifier/-/jetifier-1.6.5.tgz#ea87324a4230bef20a9651178ecab978ee54a8cb" + integrity sha512-T7yzBSu9PR+DqjYt+I0KVO1XTb1QhAfHnXV5Nd3xpbXM6Xg4e3vP60Q4qkNU8Fh6PHC2PivPUNN3rY7G2MxcDQ== + + js-tokens@^3.0.0, js-tokens@^3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b" + integrity sha1-mGbfOVECEw449/mWvOtlRDIJwls= + + "js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" + integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== + + js-yaml@^3.13.1: + version "3.13.1" + resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.13.1.tgz#aff151b30bfdfa8e49e05da22e7415e9dfa37847" + integrity sha512-YfbcO7jXDdyj0DGxYVSlSeQNHbD7XPWvrVWeVUujrQEoZzWJIRrCPoyk6kL6IAjAG2IolMK4T0hNUe0HOUs5Jw== + dependencies: + argparse "^1.0.7" + esprima "^4.0.0" + + jsbn@~0.1.0: + version "0.1.1" + resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" + integrity sha1-peZUwuWi3rXyAdls77yoDA7y9RM= + + jsc-android@^245459.0.0: + version "245459.0.0" + resolved "https://registry.yarnpkg.com/jsc-android/-/jsc-android-245459.0.0.tgz#e584258dd0b04c9159a27fb104cd5d491fd202c9" + integrity sha512-wkjURqwaB1daNkDi2OYYbsLnIdC/lUM2nPXQKRs5pqEU9chDg435bjvo+LSaHotDENygHQDHe+ntUkkw2gwMtg== + + jsdom@^15.2.1: + version "15.2.1" + resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-15.2.1.tgz#d2feb1aef7183f86be521b8c6833ff5296d07ec5" + integrity sha512-fAl1W0/7T2G5vURSyxBzrJ1LSdQn6Tr5UX/xD4PXDx/PDgwygedfW6El/KIj3xJ7FU61TTYnc/l/B7P49Eqt6g== + dependencies: + abab "^2.0.0" + acorn "^7.1.0" + acorn-globals "^4.3.2" + array-equal "^1.0.0" + cssom "^0.4.1" + cssstyle "^2.0.0" + data-urls "^1.1.0" + domexception "^1.0.1" + escodegen "^1.11.1" + html-encoding-sniffer "^1.0.2" + nwsapi "^2.2.0" + parse5 "5.1.0" + pn "^1.1.0" + request "^2.88.0" + request-promise-native "^1.0.7" + saxes "^3.1.9" + symbol-tree "^3.2.2" + tough-cookie "^3.0.1" + w3c-hr-time "^1.0.1" + w3c-xmlserializer "^1.1.2" + webidl-conversions "^4.0.2" + whatwg-encoding "^1.0.5" + whatwg-mimetype "^2.3.0" + whatwg-url "^7.0.0" + ws "^7.0.0" + xml-name-validator "^3.0.0" + + jsesc@^2.5.1: + version "2.5.2" + resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4" + integrity sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA== + + jsesc@~0.5.0: + version "0.5.0" + resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" + integrity sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0= + + json-buffer@3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/json-buffer/-/json-buffer-3.0.0.tgz#5b1f397afc75d677bde8bcfc0e47e1f9a3d9a898" + integrity sha1-Wx85evx11ne96Lz8Dkfh+aPZqJg= + + json-parse-better-errors@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz#bb867cfb3450e69107c131d1c514bab3dc8bcaa9" + integrity sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw== + + json-schema-traverse@^0.4.1: + version "0.4.1" + resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" + integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== + + json-schema@0.2.3: + version "0.2.3" + resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" + integrity sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM= + + json-stable-stringify-without-jsonify@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" + integrity sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE= + + json-stable-stringify@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" + integrity sha1-mnWdOcXy/1A/1TAGRu1EX4jE+a8= + dependencies: + jsonify "~0.0.0" + + json-stringify-safe@~5.0.1: + version "5.0.1" + resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" + integrity sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus= + + json5@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/json5/-/json5-1.0.1.tgz#779fb0018604fa854eacbf6252180d83543e3dbe" + integrity sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow== + dependencies: + minimist "^1.2.0" + + json5@^2.1.2: + version "2.1.3" + resolved "https://registry.yarnpkg.com/json5/-/json5-2.1.3.tgz#c9b0f7fa9233bfe5807fe66fcf3a5617ed597d43" + integrity sha512-KXPvOm8K9IJKFM0bmdn8QXh7udDh1g/giieX0NLCaMnb4hEiVFqnop2ImTXCc5e0/oHz3LTqmHGtExn5hfMkOA== + dependencies: + minimist "^1.2.5" + + jsonc-parser@^2.2.1: + version "2.2.1" + resolved "https://registry.yarnpkg.com/jsonc-parser/-/jsonc-parser-2.2.1.tgz#db73cd59d78cce28723199466b2a03d1be1df2bc" + integrity sha512-o6/yDBYccGvTz1+QFevz6l6OBZ2+fMVu2JZ9CIhzsYRX4mjaK5IyX9eldUdCmga16zlgQxyrj5pt9kzuj2C02w== + + jsonfile@^2.1.0: + version "2.4.0" + resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-2.4.0.tgz#3736a2b428b87bbda0cc83b53fa3d633a35c2ae8" + integrity sha1-NzaitCi4e72gzIO1P6PWM6NcKug= + optionalDependencies: + graceful-fs "^4.1.6" + + jsonfile@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-4.0.0.tgz#8771aae0799b64076b76640fca058f9c10e33ecb" + integrity sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss= + optionalDependencies: + graceful-fs "^4.1.6" + + jsonify@~0.0.0: + version "0.0.0" + resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" + integrity sha1-LHS27kHZPKUbe1qu6PUDYx0lKnM= + + jsprim@^1.2.2: + version "1.4.1" + resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2" + integrity sha1-MT5mvB5cwG5Di8G3SZwuXFastqI= + dependencies: + assert-plus "1.0.0" + extsprintf "1.3.0" + json-schema "0.2.3" + verror "1.10.0" + + jsx-ast-utils@^2.2.1, jsx-ast-utils@^2.2.3: + version "2.2.3" + resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-2.2.3.tgz#8a9364e402448a3ce7f14d357738310d9248054f" + integrity sha512-EdIHFMm+1BPynpKOpdPqiOsvnIrInRGJD7bzPZdPkjitQEqpdpUuFpq4T0npZFKTiB3RhWFdGN+oqOJIdhDhQA== + dependencies: + array-includes "^3.0.3" + object.assign "^4.1.0" + + keymirror@^0.1.1: + version "0.1.1" + resolved "https://registry.yarnpkg.com/keymirror/-/keymirror-0.1.1.tgz#918889ea13f8d0a42e7c557250eee713adc95c35" + integrity sha1-kYiJ6hP40KQufFVyUO7nE63JXDU= + + keyv@^3.0.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/keyv/-/keyv-3.1.0.tgz#ecc228486f69991e49e9476485a5be1e8fc5c4d9" + integrity sha512-9ykJ/46SN/9KPM/sichzQ7OvXyGDYKGTaDlKMGCAlg2UK8KRy4jb0d8sFc+0Tt0YYnThq8X2RZgCg74RPxgcVA== + dependencies: + json-buffer "3.0.0" + + kind-of@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-1.1.0.tgz#140a3d2d41a36d2efcfa9377b62c24f8495a5c44" + integrity sha1-FAo9LUGjbS78+pN3tiwk+ElaXEQ= + + kind-of@^3.0.2, kind-of@^3.0.3, kind-of@^3.2.0: + version "3.2.2" + resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" + integrity sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ= + dependencies: + is-buffer "^1.1.5" + + kind-of@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" + integrity sha1-IIE989cSkosgc3hpGkUGb65y3Vc= + dependencies: + is-buffer "^1.1.5" + + kind-of@^5.0.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-5.1.0.tgz#729c91e2d857b7a419a1f9aa65685c4c33f5845d" + integrity sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw== + + kind-of@^6.0.0, kind-of@^6.0.2: + version "6.0.3" + resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.3.tgz#07c05034a6c349fa06e24fa35aa76db4580ce4dd" + integrity sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw== + + klaw@^1.0.0: + version "1.3.1" + resolved "https://registry.yarnpkg.com/klaw/-/klaw-1.3.1.tgz#4088433b46b3b1ba259d78785d8e96f73ba02439" + integrity sha1-QIhDO0azsbolnXh4XY6W9zugJDk= + optionalDependencies: + graceful-fs "^4.1.9" + + kleur@^3.0.3: + version "3.0.3" + resolved "https://registry.yarnpkg.com/kleur/-/kleur-3.0.3.tgz#a79c9ecc86ee1ce3fa6206d1216c501f147fc07e" + integrity sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w== + + latest-version@^5.0.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/latest-version/-/latest-version-5.1.0.tgz#119dfe908fe38d15dfa43ecd13fa12ec8832face" + integrity sha512-weT+r0kTkRQdCdYCNtkMwWXQTMEswKrFBkm4ckQOMVhhqhIMI1UT2hMj+1iigIhgSZm5gTmrRXBNoGUgaTY1xA== + dependencies: + package-json "^6.3.0" + + lcid@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" + integrity sha1-MIrMr6C8SDo4Z7S28rlQYlHRuDU= + dependencies: + invert-kv "^1.0.0" + + lcid@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/lcid/-/lcid-2.0.0.tgz#6ef5d2df60e52f82eb228a4c373e8d1f397253cf" + integrity sha512-avPEb8P8EGnwXKClwsNUgryVjllcRqtMYa49NTsbQagYuT1DcXnl1915oxWjoyGrXR6zH/Y0Zc96xWsPcoDKeA== + dependencies: + invert-kv "^2.0.0" + + leven@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/leven/-/leven-3.1.0.tgz#77891de834064cccba82ae7842bb6b14a13ed7f2" + integrity sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A== + + levn@^0.3.0, levn@~0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" + integrity sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4= + dependencies: + prelude-ls "~1.1.2" + type-check "~0.3.2" + + lines-and-columns@^1.1.6: + version "1.1.6" + resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.1.6.tgz#1c00c743b433cd0a4e80758f7b64a57440d9ff00" + integrity sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA= + + lint-staged@^10.0.0-beta.14: + version "10.1.2" + resolved "https://registry.yarnpkg.com/lint-staged/-/lint-staged-10.1.2.tgz#beaefc58037ea9e02fe7639cb323d584312a7957" + integrity sha512-Vtbe8rhWbJxPNlnXk6jczRh6wvAVjGg+VhELAIjLakOjTACdB4qJOD4W2R8oUXLRCqL1t9WMUsXbSlVK34A8Lg== + dependencies: + chalk "^3.0.0" + commander "^4.0.1" + cosmiconfig "^6.0.0" + debug "^4.1.1" + dedent "^0.7.0" + execa "^3.4.0" + listr "^0.14.3" + log-symbols "^3.0.0" + micromatch "^4.0.2" + normalize-path "^3.0.0" + please-upgrade-node "^3.2.0" + string-argv "0.3.1" + stringify-object "^3.3.0" + + listr-silent-renderer@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/listr-silent-renderer/-/listr-silent-renderer-1.1.1.tgz#924b5a3757153770bf1a8e3fbf74b8bbf3f9242e" + integrity sha1-kktaN1cVN3C/Go4/v3S4u/P5JC4= + + listr-update-renderer@^0.5.0: + version "0.5.0" + resolved "https://registry.yarnpkg.com/listr-update-renderer/-/listr-update-renderer-0.5.0.tgz#4ea8368548a7b8aecb7e06d8c95cb45ae2ede6a2" + integrity sha512-tKRsZpKz8GSGqoI/+caPmfrypiaq+OQCbd+CovEC24uk1h952lVj5sC7SqyFUm+OaJ5HN/a1YLt5cit2FMNsFA== + dependencies: + chalk "^1.1.3" + cli-truncate "^0.2.1" + elegant-spinner "^1.0.1" + figures "^1.7.0" + indent-string "^3.0.0" + log-symbols "^1.0.2" + log-update "^2.3.0" + strip-ansi "^3.0.1" + + listr-verbose-renderer@^0.5.0: + version "0.5.0" + resolved "https://registry.yarnpkg.com/listr-verbose-renderer/-/listr-verbose-renderer-0.5.0.tgz#f1132167535ea4c1261102b9f28dac7cba1e03db" + integrity sha512-04PDPqSlsqIOaaaGZ+41vq5FejI9auqTInicFRndCBgE3bXG8D6W1I+mWhk+1nqbHmyhla/6BUrd5OSiHwKRXw== + dependencies: + chalk "^2.4.1" + cli-cursor "^2.1.0" + date-fns "^1.27.2" + figures "^2.0.0" + + listr@^0.14.3: + version "0.14.3" + resolved "https://registry.yarnpkg.com/listr/-/listr-0.14.3.tgz#2fea909604e434be464c50bddba0d496928fa586" + integrity sha512-RmAl7su35BFd/xoMamRjpIE4j3v+L28o8CT5YhAXQJm1fD+1l9ngXY8JAQRJ+tFK2i5njvi0iRUKV09vPwA0iA== + dependencies: + "@samverschueren/stream-to-observable" "^0.3.0" + is-observable "^1.1.0" + is-promise "^2.1.0" + is-stream "^1.1.0" + listr-silent-renderer "^1.1.1" + listr-update-renderer "^0.5.0" + listr-verbose-renderer "^0.5.0" + p-map "^2.0.0" + rxjs "^6.3.3" + + load-json-file@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-2.0.0.tgz#7947e42149af80d696cbf797bcaabcfe1fe29ca8" + integrity sha1-eUfkIUmvgNaWy/eXvKq8/h/inKg= + dependencies: + graceful-fs "^4.1.2" + parse-json "^2.2.0" + pify "^2.0.0" + strip-bom "^3.0.0" + + load-json-file@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-4.0.0.tgz#2f5f45ab91e33216234fd53adab668eb4ec0993b" + integrity sha1-L19Fq5HjMhYjT9U62rZo607AmTs= + dependencies: + graceful-fs "^4.1.2" + parse-json "^4.0.0" + pify "^3.0.0" + strip-bom "^3.0.0" + + locate-path@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" + integrity sha1-K1aLJl7slExtnA3pw9u7ygNUzY4= + dependencies: + p-locate "^2.0.0" + path-exists "^3.0.0" + + locate-path@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-3.0.0.tgz#dbec3b3ab759758071b58fe59fc41871af21400e" + integrity sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A== + dependencies: + p-locate "^3.0.0" + path-exists "^3.0.0" + + locate-path@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-5.0.0.tgz#1afba396afd676a6d42504d0a67a3a7eb9f62aa0" + integrity sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g== + dependencies: + p-locate "^4.1.0" + + lodash.sortby@^4.7.0: + version "4.7.0" + resolved "https://registry.yarnpkg.com/lodash.sortby/-/lodash.sortby-4.7.0.tgz#edd14c824e2cc9c1e0b0a1b42bb5210516a42438" + integrity sha1-7dFMgk4sycHgsKG0K7UhBRakJDg= + + lodash.throttle@^4.1.1: + version "4.1.1" + resolved "https://registry.yarnpkg.com/lodash.throttle/-/lodash.throttle-4.1.1.tgz#c23e91b710242ac70c37f1e1cda9274cc39bf2f4" + integrity sha1-wj6RtxAkKscMN/HhzaknTMOb8vQ= + + lodash@4.17.15, lodash@^4.0.0, lodash@^4.17.13, lodash@^4.17.14, lodash@^4.17.15, lodash@^4.17.4, lodash@^4.17.5, lodash@^4.2.0, lodash@^4.3.0, lodash@^4.5.0: + version "4.17.15" + resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.15.tgz#b447f6670a0455bbfeedd11392eff330ea097548" + integrity sha512-8xOcRHvCjnocdS5cpwXQXVzmmh5e5+saE2QGoeQmbKmRS6J3VQppPOIt0MnmE+4xlZoumy0GPG0D0MVIQbNA1A== + + log-symbols@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-1.0.2.tgz#376ff7b58ea3086a0f09facc74617eca501e1a18" + integrity sha1-N2/3tY6jCGoPCfrMdGF+ylAeGhg= + dependencies: + chalk "^1.0.0" + + log-symbols@^2.2.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-2.2.0.tgz#5740e1c5d6f0dfda4ad9323b5332107ef6b4c40a" + integrity sha512-VeIAFslyIerEJLXHziedo2basKbMKtTw3vfn5IzG0XTjhAVEJyNHnL2p7vc+wBDSdQuUpNw3M2u6xb9QsAY5Eg== + dependencies: + chalk "^2.0.1" + + log-symbols@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-3.0.0.tgz#f3a08516a5dea893336a7dee14d18a1cfdab77c4" + integrity sha512-dSkNGuI7iG3mfvDzUuYZyvk5dD9ocYCYzNU6CYDE6+Xqd+gwme6Z00NS3dUh8mq/73HaEtT7m6W+yUPtU6BZnQ== + dependencies: + chalk "^2.4.2" + + log-update@^2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/log-update/-/log-update-2.3.0.tgz#88328fd7d1ce7938b29283746f0b1bc126b24708" + integrity sha1-iDKP19HOeTiykoN0bwsbwSayRwg= + dependencies: + ansi-escapes "^3.0.0" + cli-cursor "^2.0.0" + wrap-ansi "^3.0.1" + + logkitty@^0.6.0: + version "0.6.1" + resolved "https://registry.yarnpkg.com/logkitty/-/logkitty-0.6.1.tgz#fe29209669d261539cbd6bb998a136fc92a1a05c" + integrity sha512-cHuXN8qUZuzX/7kB6VyS7kB4xyD24e8gyHXIFNhIv+fjW3P+jEXNUhj0o/7qWJtv7UZpbnPgUqzu/AZQ8RAqxQ== + dependencies: + ansi-fragments "^0.2.1" + dayjs "^1.8.15" + yargs "^12.0.5" + + lolex@^5.0.0: + version "5.1.2" + resolved "https://registry.yarnpkg.com/lolex/-/lolex-5.1.2.tgz#953694d098ce7c07bc5ed6d0e42bc6c0c6d5a367" + integrity sha512-h4hmjAvHTmd+25JSwrtTIuwbKdwg5NzZVRMLn9saij4SZaepCrTCxPr35H/3bjwfMJtN+t3CX8672UIkglz28A== + dependencies: + "@sinonjs/commons" "^1.7.0" + + loose-envify@^1.0.0, loose-envify@^1.1.0, loose-envify@^1.2.0, loose-envify@^1.3.1, loose-envify@^1.4.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf" + integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q== + dependencies: + js-tokens "^3.0.0 || ^4.0.0" + + lowercase-keys@^1.0.0, lowercase-keys@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-1.0.1.tgz#6f9e30b47084d971a7c820ff15a6c5167b74c26f" + integrity sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA== + + lowercase-keys@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-2.0.0.tgz#2603e78b7b4b0006cbca2fbcc8a3202558ac9479" + integrity sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA== + + lru-cache@^4.0.1: + version "4.1.5" + resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.5.tgz#8bbe50ea85bed59bc9e33dcab8235ee9bcf443cd" + integrity sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g== + dependencies: + pseudomap "^1.0.2" + yallist "^2.1.2" + + make-dir@^2.0.0, make-dir@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-2.1.0.tgz#5f0310e18b8be898cc07009295a30ae41e91e6f5" + integrity sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA== + dependencies: + pify "^4.0.1" + semver "^5.6.0" + + make-dir@^3.0.0: + version "3.0.2" + resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-3.0.2.tgz#04a1acbf22221e1d6ef43559f43e05a90dbb4392" + integrity sha512-rYKABKutXa6vXTXhoV18cBE7PaewPXHe/Bdq4v+ZLMhxbWApkFFplT0LcbMW+6BbjnQXzZ/sAvSE/JdguApG5w== + dependencies: + semver "^6.0.0" + + makeerror@1.0.x: + version "1.0.11" + resolved "https://registry.yarnpkg.com/makeerror/-/makeerror-1.0.11.tgz#e01a5c9109f2af79660e4e8b9587790184f5a96c" + integrity sha1-4BpckQnyr3lmDk6LlYd5AYT1qWw= + dependencies: + tmpl "1.0.x" + + map-age-cleaner@^0.1.1, map-age-cleaner@^0.1.3: + version "0.1.3" + resolved "https://registry.yarnpkg.com/map-age-cleaner/-/map-age-cleaner-0.1.3.tgz#7d583a7306434c055fe474b0f45078e6e1b4b92a" + integrity sha512-bJzx6nMoP6PDLPBFmg7+xRKeFZvFboMrGlxmNj9ClvX53KrmvM5bXFXEWjbz4cz1AFn+jWJ9z/DJSz7hrs0w3w== + dependencies: + p-defer "^1.0.0" + + map-cache@^0.2.2: + version "0.2.2" + resolved "https://registry.yarnpkg.com/map-cache/-/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf" + integrity sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8= + + map-visit@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/map-visit/-/map-visit-1.0.0.tgz#ecdca8f13144e660f1b5bd41f12f3479d98dfb8f" + integrity sha1-7Nyo8TFE5mDxtb1B8S80edmN+48= + dependencies: + object-visit "^1.0.0" + + media-typer@0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748" + integrity sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g= + + mem@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/mem/-/mem-1.1.0.tgz#5edd52b485ca1d900fe64895505399a0dfa45f76" + integrity sha1-Xt1StIXKHZAP5kiVUFOZoN+kX3Y= + dependencies: + mimic-fn "^1.0.0" + + mem@^4.0.0: + version "4.3.0" + resolved "https://registry.yarnpkg.com/mem/-/mem-4.3.0.tgz#461af497bc4ae09608cdb2e60eefb69bff744178" + integrity sha512-qX2bG48pTqYRVmDB37rn/6PT7LcR8T7oAX3bf99u1Tt1nzxYfxkgqDwUwolPlXweM0XzBOBFzSx4kfp7KP1s/w== + dependencies: + map-age-cleaner "^0.1.1" + mimic-fn "^2.0.0" + p-is-promise "^2.0.0" + + mem@^6.0.1: + version "6.0.1" + resolved "https://registry.yarnpkg.com/mem/-/mem-6.0.1.tgz#3f8ad1b0f8c4e00daf07f104e95b9d78131d7908" + integrity sha512-uIRYASflIsXqvKe+7aXbLrydaRzz4qiK6amqZDQI++eRtW3UoKtnDcGeCAOREgll7YMxO5E4VB9+3B0LFmy96g== + dependencies: + map-age-cleaner "^0.1.3" + mimic-fn "^3.0.0" + + memorystream@^0.3.1: + version "0.3.1" + resolved "https://registry.yarnpkg.com/memorystream/-/memorystream-0.3.1.tgz#86d7090b30ce455d63fbae12dda51a47ddcaf9b2" + integrity sha1-htcJCzDORV1j+64S3aUaR93K+bI= + + merge-descriptors@1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/merge-descriptors/-/merge-descriptors-1.0.1.tgz#b00aaa556dd8b44568150ec9d1b953f3f90cbb61" + integrity sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E= + + merge-stream@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-1.0.1.tgz#4041202d508a342ba00174008df0c251b8c135e1" + integrity sha1-QEEgLVCKNCugAXQAjfDCUbjBNeE= + dependencies: + readable-stream "^2.0.1" + + merge-stream@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-2.0.0.tgz#52823629a14dd00c9770fb6ad47dc6310f2c1f60" + integrity sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w== + + methods@^1.1.1, methods@^1.1.2, methods@~1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee" + integrity sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4= + + metro-babel-register@^0.56.0, metro-babel-register@^0.56.4: + version "0.56.4" + resolved "https://registry.yarnpkg.com/metro-babel-register/-/metro-babel-register-0.56.4.tgz#b0c627a1cfdd1bdd768f81af79481754e833a902" + integrity sha512-Phm6hMluOWYqfykftjJ1jsTpWvbgb49AC/1taxEctxUdRCZlFgZwBleJZAhQYxJD5J+ikFkEbHDzePEXb29KVA== + dependencies: + "@babel/core" "^7.0.0" + "@babel/plugin-proposal-class-properties" "^7.0.0" + "@babel/plugin-proposal-nullish-coalescing-operator" "^7.0.0" + "@babel/plugin-proposal-object-rest-spread" "^7.0.0" + "@babel/plugin-proposal-optional-catch-binding" "^7.0.0" + "@babel/plugin-proposal-optional-chaining" "^7.0.0" + "@babel/plugin-transform-async-to-generator" "^7.0.0" + "@babel/plugin-transform-flow-strip-types" "^7.0.0" + "@babel/plugin-transform-modules-commonjs" "^7.0.0" + "@babel/register" "^7.0.0" + core-js "^2.2.2" + escape-string-regexp "^1.0.5" + + metro-babel-transformer@^0.56.4: + version "0.56.4" + resolved "https://registry.yarnpkg.com/metro-babel-transformer/-/metro-babel-transformer-0.56.4.tgz#fe1d0dc600fcf90201a5bea4d42caea10b801057" + integrity sha512-IOi4ILgZvaX7GCGHBJp79paNVOq5QxhhbyqAdEJgDP8bHfl/OVHoVKSypfrsMSKSiBrqxhIjyc4XjkXsQtkx5g== + dependencies: + "@babel/core" "^7.0.0" + metro-source-map "^0.56.4" + + metro-babel7-plugin-react-transform@^0.39.1: + version "0.39.1" + resolved "https://registry.yarnpkg.com/metro-babel7-plugin-react-transform/-/metro-babel7-plugin-react-transform-0.39.1.tgz#deb851fa6904ed5b9f4e38f69e3f318a0fb670e6" + integrity sha512-7atigK+8EZ1DAWhpcw2a60OhCPihe9TsRHGOKUUwJjXmXDxmYxoxejh1kK5vJSaW38P45PkUBwnfNwISWFv4mQ== + dependencies: + "@babel/helper-module-imports" "7.0.0-beta.47" + lodash "^4.17.5" + + metro-cache@^0.56.4: + version "0.56.4" + resolved "https://registry.yarnpkg.com/metro-cache/-/metro-cache-0.56.4.tgz#542f9f8a35f8fb9d5576f46fd3ab4d4f42851a7e" + integrity sha512-d1hiUSKwtRsuMxUhHVJ3tjK2BbpUlJGvTyMWohK8Wxx+0GbnWRWWFcI4vlCzlZfoK0VtZK2MJEl5t7Du1mIniQ== + dependencies: + jest-serializer "^24.4.0" + metro-core "^0.56.4" + mkdirp "^0.5.1" + rimraf "^2.5.4" + + metro-config@^0.56.0, metro-config@^0.56.4: + version "0.56.4" + resolved "https://registry.yarnpkg.com/metro-config/-/metro-config-0.56.4.tgz#338fd8165fba59424cec427c1a881757945e57e9" + integrity sha512-O85QDHwWdMn/8ERe13y4a6vbZL0AHyO8atTvL+9BCulLEO+FQBi1iJjr3+ViLa8cf0m5dRftDsa7P47m5euk4A== + dependencies: + cosmiconfig "^5.0.5" + jest-validate "^24.7.0" + metro "^0.56.4" + metro-cache "^0.56.4" + metro-core "^0.56.4" + pretty-format "^24.7.0" + + metro-core@^0.56.0, metro-core@^0.56.4: + version "0.56.4" + resolved "https://registry.yarnpkg.com/metro-core/-/metro-core-0.56.4.tgz#67cc41b3c0bf66e9c2306f50239a1080b1e82312" + integrity sha512-hMzkBdgPt5Zm9nr/1KtIT+A6H7TNiLVCEGG5OiAXj8gTRsA2yy7wAdQpwy0xbE+zi88t/pLOzXpd3ClG/YxyWg== + dependencies: + jest-haste-map "^24.7.1" + lodash.throttle "^4.1.1" + metro-resolver "^0.56.4" + wordwrap "^1.0.0" + + metro-inspector-proxy@^0.56.4: + version "0.56.4" + resolved "https://registry.yarnpkg.com/metro-inspector-proxy/-/metro-inspector-proxy-0.56.4.tgz#7343ff3c5908af4fd99e96b6d646e24e99816be4" + integrity sha512-E1S3MO25mWKmcLn1UQuCDiS0hf9P2Fwq8sEAX5lBLoZbehepNH+4xJ3xXSY51JX4dozBrE8GGoKL4ll3II40LA== + dependencies: + connect "^3.6.5" + debug "^2.2.0" + rxjs "^5.4.3" + ws "^1.1.5" + yargs "^9.0.0" + + metro-minify-uglify@^0.56.4: + version "0.56.4" + resolved "https://registry.yarnpkg.com/metro-minify-uglify/-/metro-minify-uglify-0.56.4.tgz#13589dfb1d43343608aacb7f78ddfcc052daa63c" + integrity sha512-BHgj7+BKEK2pHvWHUR730bIrsZwl8DPtr49x9L0j2grPZ5/UROWXzEr8VZgIss7fl64t845uu1HXNNyuSj2EhA== + dependencies: + uglify-es "^3.1.9" + + metro-react-native-babel-preset@^0.56.4: + version "0.56.4" + resolved "https://registry.yarnpkg.com/metro-react-native-babel-preset/-/metro-react-native-babel-preset-0.56.4.tgz#dcedc64b7ff5c0734839458e70eb0ebef6d063a8" + integrity sha512-CzbBDM9Rh6w8s1fq+ZqihAh7DDqUAcfo9pPww25+N/eJ7UK436Q7JdfxwdIPpBwLFn6o6MyYn+uwL9OEWBJarA== + dependencies: + "@babel/plugin-proposal-class-properties" "^7.0.0" + "@babel/plugin-proposal-export-default-from" "^7.0.0" + "@babel/plugin-proposal-nullish-coalescing-operator" "^7.0.0" + "@babel/plugin-proposal-object-rest-spread" "^7.0.0" + "@babel/plugin-proposal-optional-catch-binding" "^7.0.0" + "@babel/plugin-proposal-optional-chaining" "^7.0.0" + "@babel/plugin-syntax-dynamic-import" "^7.0.0" + "@babel/plugin-syntax-export-default-from" "^7.0.0" + "@babel/plugin-syntax-flow" "^7.2.0" + "@babel/plugin-transform-arrow-functions" "^7.0.0" + "@babel/plugin-transform-block-scoping" "^7.0.0" + "@babel/plugin-transform-classes" "^7.0.0" + "@babel/plugin-transform-computed-properties" "^7.0.0" + "@babel/plugin-transform-destructuring" "^7.0.0" + "@babel/plugin-transform-exponentiation-operator" "^7.0.0" + "@babel/plugin-transform-flow-strip-types" "^7.0.0" + "@babel/plugin-transform-for-of" "^7.0.0" + "@babel/plugin-transform-function-name" "^7.0.0" + "@babel/plugin-transform-literals" "^7.0.0" + "@babel/plugin-transform-modules-commonjs" "^7.0.0" + "@babel/plugin-transform-object-assign" "^7.0.0" + "@babel/plugin-transform-parameters" "^7.0.0" + "@babel/plugin-transform-react-display-name" "^7.0.0" + "@babel/plugin-transform-react-jsx" "^7.0.0" + "@babel/plugin-transform-react-jsx-source" "^7.0.0" + "@babel/plugin-transform-regenerator" "^7.0.0" + "@babel/plugin-transform-runtime" "^7.0.0" + "@babel/plugin-transform-shorthand-properties" "^7.0.0" + "@babel/plugin-transform-spread" "^7.0.0" + "@babel/plugin-transform-sticky-regex" "^7.0.0" + "@babel/plugin-transform-template-literals" "^7.0.0" + "@babel/plugin-transform-typescript" "^7.0.0" + "@babel/plugin-transform-unicode-regex" "^7.0.0" + "@babel/template" "^7.0.0" + react-refresh "^0.4.0" + + metro-react-native-babel-transformer@^0.56.0: + version "0.56.4" + resolved "https://registry.yarnpkg.com/metro-react-native-babel-transformer/-/metro-react-native-babel-transformer-0.56.4.tgz#3c6e48b605c305362ee624e45ff338656e35fc1d" + integrity sha512-ng74eutuy1nyGI9+TDzzVAVfEmNPDlapV4msTQMKPi4EFqo/fBn7Ct33ME9l5E51pQBBnxt/UwcpTvd13b29kQ== + dependencies: + "@babel/core" "^7.0.0" + babel-preset-fbjs "^3.1.2" + metro-babel-transformer "^0.56.4" + metro-react-native-babel-preset "^0.56.4" + metro-source-map "^0.56.4" + + metro-resolver@^0.56.4: + version "0.56.4" + resolved "https://registry.yarnpkg.com/metro-resolver/-/metro-resolver-0.56.4.tgz#9876f57bca37fd1bfcffd733541e2ee4a89fad7f" + integrity sha512-Ug4ulVfpkKZ1Wu7mdYj9XLGuOqZTuWCqEhyx3siKTc/2eBwKZQXmiNo5d/IxWNvmwL/87Abeb724I6CMzMfjiQ== + dependencies: + absolute-path "^0.0.0" + + metro-source-map@^0.56.0, metro-source-map@^0.56.4: + version "0.56.4" + resolved "https://registry.yarnpkg.com/metro-source-map/-/metro-source-map-0.56.4.tgz#868ccac3f3519fe14eca358bc186f63651b2b9bc" + integrity sha512-f1P9/rpFmG3Z0Jatiw2zvLItx1TwR7mXTSDj4qLDCWeVMB3kEXAr3R0ucumTW8c6HfpJljeRBWzYFXF33fd81g== + dependencies: + "@babel/traverse" "^7.0.0" + "@babel/types" "^7.0.0" + invariant "^2.2.4" + metro-symbolicate "^0.56.4" + ob1 "^0.56.4" + source-map "^0.5.6" + vlq "^1.0.0" + + metro-symbolicate@^0.56.4: + version "0.56.4" + resolved "https://registry.yarnpkg.com/metro-symbolicate/-/metro-symbolicate-0.56.4.tgz#53e9d40beac9049fa75a3e620ddd47d4907ff015" + integrity sha512-8mCNNn6zV5FFKCIcRgI7736Xl+owgvYuy8qanPxZN36f7utiWRYeB+PirEBPcglBk4qQvoy2lT6oPULNXZQbbQ== + dependencies: + invariant "^2.2.4" + metro-source-map "^0.56.4" + source-map "^0.5.6" + through2 "^2.0.1" + vlq "^1.0.0" + + metro@^0.56.0, metro@^0.56.4: + version "0.56.4" + resolved "https://registry.yarnpkg.com/metro/-/metro-0.56.4.tgz#be7e1380ee6ac3552c25ead8098eab261029e4d7" + integrity sha512-Kt3OQJQtQdts0JrKnyGdLpKHDjqYBgIfzvYrvfhmFCkKuZ8aqRlVnvpfjQ4/OBm0Fmm9NyyxbNRD9VIbj7WjnA== + dependencies: + "@babel/core" "^7.0.0" + "@babel/generator" "^7.0.0" + "@babel/parser" "^7.0.0" + "@babel/plugin-external-helpers" "^7.0.0" + "@babel/template" "^7.0.0" + "@babel/traverse" "^7.0.0" + "@babel/types" "^7.0.0" + absolute-path "^0.0.0" + async "^2.4.0" + babel-preset-fbjs "^3.1.2" + buffer-crc32 "^0.2.13" + chalk "^2.4.1" + concat-stream "^1.6.0" + connect "^3.6.5" + debug "^2.2.0" + denodeify "^1.2.1" + eventemitter3 "^3.0.0" + fbjs "^1.0.0" + fs-extra "^1.0.0" + graceful-fs "^4.1.3" + image-size "^0.6.0" + invariant "^2.2.4" + jest-haste-map "^24.7.1" + jest-worker "^24.6.0" + json-stable-stringify "^1.0.1" + lodash.throttle "^4.1.1" + merge-stream "^1.0.1" + metro-babel-register "^0.56.4" + metro-babel-transformer "^0.56.4" + metro-cache "^0.56.4" + metro-config "^0.56.4" + metro-core "^0.56.4" + metro-inspector-proxy "^0.56.4" + metro-minify-uglify "^0.56.4" + metro-react-native-babel-preset "^0.56.4" + metro-resolver "^0.56.4" + metro-source-map "^0.56.4" + metro-symbolicate "^0.56.4" + mime-types "2.1.11" + mkdirp "^0.5.1" + node-fetch "^2.2.0" + nullthrows "^1.1.0" + resolve "^1.5.0" + rimraf "^2.5.4" + serialize-error "^2.1.0" + source-map "^0.5.6" + temp "0.8.3" + throat "^4.1.0" + wordwrap "^1.0.0" + write-file-atomic "^1.2.0" + ws "^1.1.5" + xpipe "^1.0.5" + yargs "^9.0.0" + + micromatch@^3.1.10, micromatch@^3.1.4: + version "3.1.10" + resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-3.1.10.tgz#70859bc95c9840952f359a068a3fc49f9ecfac23" + integrity sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg== + dependencies: + arr-diff "^4.0.0" + array-unique "^0.3.2" + braces "^2.3.1" + define-property "^2.0.2" + extend-shallow "^3.0.2" + extglob "^2.0.4" + fragment-cache "^0.2.1" + kind-of "^6.0.2" + nanomatch "^1.2.9" + object.pick "^1.3.0" + regex-not "^1.0.0" + snapdragon "^0.8.1" + to-regex "^3.0.2" + + micromatch@^4.0.2: + version "4.0.2" + resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.2.tgz#4fcb0999bf9fbc2fcbdd212f6d629b9a56c39259" + integrity sha512-y7FpHSbMUMoyPbYUSzO6PaZ6FyRnQOpHuKwbo1G+Knck95XVU4QAiKdGEnj5wwoS7PlOgthX/09u5iFJ+aYf5Q== + dependencies: + braces "^3.0.1" + picomatch "^2.0.5" + + mime-db@1.43.0, "mime-db@>= 1.43.0 < 2": + version "1.43.0" + resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.43.0.tgz#0a12e0502650e473d735535050e7c8f4eb4fae58" + integrity sha512-+5dsGEEovYbT8UY9yD7eE4XTc4UwJ1jBYlgaQQF38ENsKR3wj/8q8RFZrF9WIZpB2V1ArTVFUva8sAul1NzRzQ== + + mime-db@~1.23.0: + version "1.23.0" + resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.23.0.tgz#a31b4070adaea27d732ea333740a64d0ec9a6659" + integrity sha1-oxtAcK2uon1zLqMzdApk0OyaZlk= + + mime-types@2.1.11: + version "2.1.11" + resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.11.tgz#c259c471bda808a85d6cd193b430a5fae4473b3c" + integrity sha1-wlnEcb2oCKhdbNGTtDCl+uRHOzw= + dependencies: + mime-db "~1.23.0" + + mime-types@^2.1.12, mime-types@~2.1.19, mime-types@~2.1.24: + version "2.1.26" + resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.26.tgz#9c921fc09b7e149a65dfdc0da4d20997200b0a06" + integrity sha512-01paPWYgLrkqAyrlDorC1uDwl2p3qZT7yl806vW7DvDoxwXi46jsjFbg+WdwotBIk6/MbEhO/dh5aZ5sNj/dWQ== + dependencies: + mime-db "1.43.0" + + mime@1.6.0, mime@^1.4.1: + version "1.6.0" + resolved "https://registry.yarnpkg.com/mime/-/mime-1.6.0.tgz#32cd9e5c64553bd58d19a568af452acff04981b1" + integrity sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg== + + mime@^2.4.1: + version "2.4.4" + resolved "https://registry.yarnpkg.com/mime/-/mime-2.4.4.tgz#bd7b91135fc6b01cde3e9bae33d659b63d8857e5" + integrity sha512-LRxmNwziLPT828z+4YkNzloCFC2YM4wrB99k+AV5ZbEyfGNWfG8SO1FUXLmLDBSo89NrJZ4DIWeLjy1CHGhMGA== + + mimic-fn@^1.0.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.2.0.tgz#820c86a39334640e99516928bd03fca88057d022" + integrity sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ== + + mimic-fn@^2.0.0, mimic-fn@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b" + integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg== + + mimic-fn@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-3.0.0.tgz#76044cfa8818bbf6999c5c9acadf2d3649b14b4b" + integrity sha512-PiVO95TKvhiwgSwg1IdLYlCTdul38yZxZMIcnDSFIBUm4BNZha2qpQ4GpJ++15bHoKDtrW2D69lMfFwdFYtNZQ== + + mimic-response@^1.0.0, mimic-response@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/mimic-response/-/mimic-response-1.0.1.tgz#4923538878eef42063cb8a3e3b0798781487ab1b" + integrity sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ== + + mimic-response@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/mimic-response/-/mimic-response-2.1.0.tgz#d13763d35f613d09ec37ebb30bac0469c0ee8f43" + integrity sha512-wXqjST+SLt7R009ySCglWBCFpjUygmCIfD790/kVbiGmUgfYGuB14PiTd5DwVxSV4NcYHjzMkoj5LjQZwTQLEA== + + min-document@^2.19.0: + version "2.19.0" + resolved "https://registry.yarnpkg.com/min-document/-/min-document-2.19.0.tgz#7bd282e3f5842ed295bb748cdd9f1ffa2c824685" + integrity sha1-e9KC4/WELtKVu3SM3Z8f+iyCRoU= + dependencies: + dom-walk "^0.1.0" + + minimatch@^3.0.4: + version "3.0.4" + resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" + integrity sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA== + dependencies: + brace-expansion "^1.1.7" + + minimist@^1.1.1, minimist@^1.2.0, minimist@^1.2.5: + version "1.2.5" + resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.5.tgz#67d66014b66a6a8aaa0c083c5fd58df4e4e97602" + integrity sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw== + + minipass@^2.6.0, minipass@^2.8.6, minipass@^2.9.0: + version "2.9.0" + resolved "https://registry.yarnpkg.com/minipass/-/minipass-2.9.0.tgz#e713762e7d3e32fed803115cf93e04bca9fcc9a6" + integrity sha512-wxfUjg9WebH+CUDX/CdbRlh5SmfZiy/hpkxaRI16Y9W56Pa75sWgd/rvFilSgrauD9NyFymP/+JFV3KwzIsJeg== + dependencies: + safe-buffer "^5.1.2" + yallist "^3.0.0" + + minizlib@^1.2.1: + version "1.3.3" + resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-1.3.3.tgz#2290de96818a34c29551c8a8d301216bd65a861d" + integrity sha512-6ZYMOEnmVsdCeTJVE0W9ZD+pVnE8h9Hma/iOwwRDsdQoePpoX56/8B6z3P9VNwppJuBKNRuFDRNRqRWexT9G9Q== + dependencies: + minipass "^2.9.0" + + mixin-deep@^1.2.0: + version "1.3.2" + resolved "https://registry.yarnpkg.com/mixin-deep/-/mixin-deep-1.3.2.tgz#1120b43dc359a785dce65b55b82e257ccf479566" + integrity sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA== + dependencies: + for-in "^1.0.2" + is-extendable "^1.0.1" + + mkdirp@^0.5.0, mkdirp@^0.5.1: + version "0.5.5" + resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.5.tgz#d91cefd62d1436ca0f41620e251288d420099def" + integrity sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ== + dependencies: + minimist "^1.2.5" + + morgan@^1.9.0: + version "1.10.0" + resolved "https://registry.yarnpkg.com/morgan/-/morgan-1.10.0.tgz#091778abc1fc47cd3509824653dae1faab6b17d7" + integrity sha512-AbegBVI4sh6El+1gNwvD5YIck7nSA36weD7xvIxG4in80j/UoK8AEGaWnnz8v1GxonMCltmlNs5ZKbGvl9b1XQ== + dependencies: + basic-auth "~2.0.1" + debug "2.6.9" + depd "~2.0.0" + on-finished "~2.3.0" + on-headers "~1.0.2" + + ms@2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" + integrity sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g= + + ms@2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.1.tgz#30a5864eb3ebb0a66f2ebe6d727af06a09d86e0a" + integrity sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg== + + ms@^2.1.1: + version "2.1.2" + resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" + integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== + + mute-stream@0.0.7: + version "0.0.7" + resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.7.tgz#3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab" + integrity sha1-MHXOk7whuPq0PhvE2n6BFe0ee6s= + + mute-stream@0.0.8: + version "0.0.8" + resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.8.tgz#1630c42b2251ff81e2a283de96a5497ea92e5e0d" + integrity sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA== + + nan@2.14.0, nan@^2.12.1: + version "2.14.0" + resolved "https://registry.yarnpkg.com/nan/-/nan-2.14.0.tgz#7818f722027b2459a86f0295d434d1fc2336c52c" + integrity sha512-INOFj37C7k3AfaNTtX8RhsTw7qRy7eLET14cROi9+5HAVbbHuIWUHEauBv5qT4Av2tWasiTY1Jw6puUNqRJXQg== + + nan@^2.14.0: + version "2.14.1" + resolved "https://registry.yarnpkg.com/nan/-/nan-2.14.1.tgz#d7be34dfa3105b91494c3147089315eff8874b01" + integrity sha512-isWHgVjnFjh2x2yuJ/tj3JbwoHu3UC2dX5G/88Cm24yB6YopVgxvBObDY7n5xW6ExmFhJpSEQqFPvq9zaXc8Jw== + + nanomatch@^1.2.9: + version "1.2.13" + resolved "https://registry.yarnpkg.com/nanomatch/-/nanomatch-1.2.13.tgz#b87a8aa4fc0de8fe6be88895b38983ff265bd119" + integrity sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA== + dependencies: + arr-diff "^4.0.0" + array-unique "^0.3.2" + define-property "^2.0.2" + extend-shallow "^3.0.2" + fragment-cache "^0.2.1" + is-windows "^1.0.2" + kind-of "^6.0.2" + object.pick "^1.3.0" + regex-not "^1.0.0" + snapdragon "^0.8.1" + to-regex "^3.0.1" + + natural-compare@^1.4.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" + integrity sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc= + + needle@^2.2.1: + version "2.4.1" + resolved "https://registry.yarnpkg.com/needle/-/needle-2.4.1.tgz#14af48732463d7475696f937626b1b993247a56a" + integrity sha512-x/gi6ijr4B7fwl6WYL9FwlCvRQKGlUNvnceho8wxkwXqN8jvVmmmATTmZPRRG7b/yC1eode26C2HO9jl78Du9g== + dependencies: + debug "^3.2.6" + iconv-lite "^0.4.4" + sax "^1.2.4" + + negotiator@0.6.2: + version "0.6.2" + resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.2.tgz#feacf7ccf525a77ae9634436a64883ffeca346fb" + integrity sha512-hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw== + + neo-async@^2.6.0: + version "2.6.1" + resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.1.tgz#ac27ada66167fa8849a6addd837f6b189ad2081c" + integrity sha512-iyam8fBuCUpWeKPGpaNMetEocMt364qkCsfL9JuhjXX6dRnguRVOfk2GZaDpPjcOKiiXCPINZC1GczQ7iTq3Zw== + + nice-try@^1.0.4: + version "1.0.5" + resolved "https://registry.yarnpkg.com/nice-try/-/nice-try-1.0.5.tgz#a3378a7696ce7d223e88fc9b764bd7ef1089e366" + integrity sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ== + + node-fetch@^1.0.1: + version "1.7.3" + resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-1.7.3.tgz#980f6f72d85211a5347c6b2bc18c5b84c3eb47ef" + integrity sha512-NhZ4CsKx7cYm2vSrBAr2PvFOe6sWDf0UYLRqA6svUYg7+/TSfVAu49jYC4BvQ4Sms9SZgdqGBgroqfDhJdTyKQ== + dependencies: + encoding "^0.1.11" + is-stream "^1.0.1" + + node-fetch@^2.2.0, node-fetch@^2.5.0: + version "2.6.0" + resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.0.tgz#e633456386d4aa55863f676a7ab0daa8fdecb0fd" + integrity sha512-8dG4H5ujfvFiqDmVu9fQ5bOHUC15JMjMY/Zumv26oOvvVJjM67KF8koCWIabKQ1GJIa9r2mMZscBq/TbdOcmNA== + + node-int64@^0.4.0: + version "0.4.0" + resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b" + integrity sha1-h6kGXNs1XTGC2PlM4RGIuCXGijs= + + node-modules-regexp@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/node-modules-regexp/-/node-modules-regexp-1.0.0.tgz#8d9dbe28964a4ac5712e9131642107c71e90ec40" + integrity sha1-jZ2+KJZKSsVxLpExZCEHxx6Q7EA= + + node-notifier@^5.2.1: + version "5.4.3" + resolved "https://registry.yarnpkg.com/node-notifier/-/node-notifier-5.4.3.tgz#cb72daf94c93904098e28b9c590fd866e464bd50" + integrity sha512-M4UBGcs4jeOK9CjTsYwkvH6/MzuUmGCyTW+kCY7uO+1ZVr0+FHGdPdIf5CCLqAaxnRrWidyoQlNkMIIVwbKB8Q== + dependencies: + growly "^1.3.0" + is-wsl "^1.1.0" + semver "^5.5.0" + shellwords "^0.1.1" + which "^1.3.0" + + node-notifier@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/node-notifier/-/node-notifier-6.0.0.tgz#cea319e06baa16deec8ce5cd7f133c4a46b68e12" + integrity sha512-SVfQ/wMw+DesunOm5cKqr6yDcvUTDl/yc97ybGHMrteNEY6oekXpNpS3lZwgLlwz0FLgHoiW28ZpmBHUDg37cw== + dependencies: + growly "^1.3.0" + is-wsl "^2.1.1" + semver "^6.3.0" + shellwords "^0.1.1" + which "^1.3.1" + + node-pre-gyp@0.14.0: + version "0.14.0" + resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.14.0.tgz#9a0596533b877289bcad4e143982ca3d904ddc83" + integrity sha512-+CvDC7ZttU/sSt9rFjix/P05iS43qHCOOGzcr3Ry99bXG7VX953+vFyEuph/tfqoYu8dttBkE86JSKBO2OzcxA== + dependencies: + detect-libc "^1.0.2" + mkdirp "^0.5.1" + needle "^2.2.1" + nopt "^4.0.1" + npm-packlist "^1.1.6" + npmlog "^4.0.2" + rc "^1.2.7" + rimraf "^2.6.1" + semver "^5.3.0" + tar "^4.4.2" + + node-pre-gyp@^0.11.0: + version "0.11.0" + resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.11.0.tgz#db1f33215272f692cd38f03238e3e9b47c5dd054" + integrity sha512-TwWAOZb0j7e9eGaf9esRx3ZcLaE5tQ2lvYy1pb5IAaG1a2e2Kv5Lms1Y4hpj+ciXJRofIxxlt5haeQ/2ANeE0Q== + dependencies: + detect-libc "^1.0.2" + mkdirp "^0.5.1" + needle "^2.2.1" + nopt "^4.0.1" + npm-packlist "^1.1.6" + npmlog "^4.0.2" + rc "^1.2.7" + rimraf "^2.6.1" + semver "^5.3.0" + tar "^4" + + nodemailer@^6.4.2: + version "6.4.6" + resolved "https://registry.yarnpkg.com/nodemailer/-/nodemailer-6.4.6.tgz#d37f504f6560b36616f646a606894fe18819107f" + integrity sha512-/kJ+FYVEm2HuUlw87hjSqTss+GU35D4giOpdSfGp7DO+5h6RlJj7R94YaYHOkoxu1CSaM0d3WRBtCzwXrY6MKA== + + nodemon@^2.0.2: + version "2.0.3" + resolved "https://registry.yarnpkg.com/nodemon/-/nodemon-2.0.3.tgz#e9c64df8740ceaef1cb00e1f3da57c0a93ef3714" + integrity sha512-lLQLPS90Lqwc99IHe0U94rDgvjo+G9I4uEIxRG3evSLROcqQ9hwc0AxlSHKS4T1JW/IMj/7N5mthiN58NL/5kw== + dependencies: + chokidar "^3.2.2" + debug "^3.2.6" + ignore-by-default "^1.0.1" + minimatch "^3.0.4" + pstree.remy "^1.1.7" + semver "^5.7.1" + supports-color "^5.5.0" + touch "^3.1.0" + undefsafe "^2.0.2" + update-notifier "^4.0.0" + + nopt@^4.0.1: + version "4.0.3" + resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.3.tgz#a375cad9d02fd921278d954c2254d5aa57e15e48" + integrity sha512-CvaGwVMztSMJLOeXPrez7fyfObdZqNUK1cPAEzLHrTybIua9pMdmmPR5YwtfNftIOMv3DPUhFaxsZMNTQO20Kg== + dependencies: + abbrev "1" + osenv "^0.1.4" + + nopt@~1.0.10: + version "1.0.10" + resolved "https://registry.yarnpkg.com/nopt/-/nopt-1.0.10.tgz#6ddd21bd2a31417b92727dd585f8a6f37608ebee" + integrity sha1-bd0hvSoxQXuScn3Vhfim83YI6+4= + dependencies: + abbrev "1" + + normalize-css-color@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/normalize-css-color/-/normalize-css-color-1.0.2.tgz#02991e97cccec6623fe573afbbf0de6a1f3e9f8d" + integrity sha1-Apkel8zOxmI/5XOvu/Deah8+n40= + + normalize-package-data@^2.3.2, normalize-package-data@^2.5.0: + version "2.5.0" + resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.5.0.tgz#e66db1838b200c1dfc233225d12cb36520e234a8" + integrity sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA== + dependencies: + hosted-git-info "^2.1.4" + resolve "^1.10.0" + semver "2 || 3 || 4 || 5" + validate-npm-package-license "^3.0.1" + + normalize-path@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" + integrity sha1-GrKLVW4Zg2Oowab35vogE3/mrtk= + dependencies: + remove-trailing-separator "^1.0.1" + + normalize-path@^3.0.0, normalize-path@~3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" + integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== + + normalize-url@^4.1.0: + version "4.5.0" + resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-4.5.0.tgz#453354087e6ca96957bd8f5baf753f5982142129" + integrity sha512-2s47yzUxdexf1OhyRi4Em83iQk0aPvwTddtFz4hnSSw9dCEsLEGf6SwIO8ss/19S9iBb5sJaOuTvTGDeZI00BQ== + + npm-bundled@^1.0.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/npm-bundled/-/npm-bundled-1.1.1.tgz#1edd570865a94cdb1bc8220775e29466c9fb234b" + integrity sha512-gqkfgGePhTpAEgUsGEgcq1rqPXA+tv/aVBlgEzfXwA1yiUJF7xtEt3CtVwOjNYQOVknDk0F20w58Fnm3EtG0fA== + dependencies: + npm-normalize-package-bin "^1.0.1" + + npm-normalize-package-bin@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/npm-normalize-package-bin/-/npm-normalize-package-bin-1.0.1.tgz#6e79a41f23fd235c0623218228da7d9c23b8f6e2" + integrity sha512-EPfafl6JL5/rU+ot6P3gRSCpPDW5VmIzX959Ob1+ySFUuuYHWHekXpwdUZcKP5C+DS4GEtdJluwBjnsNDl+fSA== + + npm-packlist@^1.1.6: + version "1.4.8" + resolved "https://registry.yarnpkg.com/npm-packlist/-/npm-packlist-1.4.8.tgz#56ee6cc135b9f98ad3d51c1c95da22bbb9b2ef3e" + integrity sha512-5+AZgwru5IevF5ZdnFglB5wNlHG1AOOuw28WhUq8/8emhBmLv6jX5by4WJCh7lW0uSYZYS6DXqIsyZVIXRZU9A== + dependencies: + ignore-walk "^3.0.1" + npm-bundled "^1.0.1" + npm-normalize-package-bin "^1.0.1" + + npm-run-all@^4.1.5: + version "4.1.5" + resolved "https://registry.yarnpkg.com/npm-run-all/-/npm-run-all-4.1.5.tgz#04476202a15ee0e2e214080861bff12a51d98fba" + integrity sha512-Oo82gJDAVcaMdi3nuoKFavkIHBRVqQ1qvMb+9LHk/cF4P6B2m8aP04hGf7oL6wZ9BuGwX1onlLhpuoofSyoQDQ== + dependencies: + ansi-styles "^3.2.1" + chalk "^2.4.1" + cross-spawn "^6.0.5" + memorystream "^0.3.1" + minimatch "^3.0.4" + pidtree "^0.3.0" + read-pkg "^3.0.0" + shell-quote "^1.6.1" + string.prototype.padend "^3.0.0" + + npm-run-path@^2.0.0: + version "2.0.2" + resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" + integrity sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8= + dependencies: + path-key "^2.0.0" + + npm-run-path@^4.0.0: + version "4.0.1" + resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-4.0.1.tgz#b7ecd1e5ed53da8e37a55e1c2269e0b97ed748ea" + integrity sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw== + dependencies: + path-key "^3.0.0" + + npmlog@^4.0.2: + version "4.1.2" + resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" + integrity sha512-2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg== + dependencies: + are-we-there-yet "~1.1.2" + console-control-strings "~1.1.0" + gauge "~2.7.3" + set-blocking "~2.0.0" + + nullthrows@^1.1.0: + version "1.1.1" + resolved "https://registry.yarnpkg.com/nullthrows/-/nullthrows-1.1.1.tgz#7818258843856ae971eae4208ad7d7eb19a431b1" + integrity sha512-2vPPEi+Z7WqML2jZYddDIfy5Dqb0r2fze2zTxNNknZaFpVHU3mFB3R+DWeJWGVx0ecvttSGlJTI+WG+8Z4cDWw== + + number-is-nan@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" + integrity sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0= + + nwsapi@^2.2.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/nwsapi/-/nwsapi-2.2.0.tgz#204879a9e3d068ff2a55139c2c772780681a38b7" + integrity sha512-h2AatdwYH+JHiZpv7pt/gSX1XoRGb7L/qSIeuqA6GwYoF9w1vP1cw42TO0aI2pNyshRK5893hNSl+1//vHK7hQ== + + oauth-sign@~0.9.0: + version "0.9.0" + resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.9.0.tgz#47a7b016baa68b5fa0ecf3dee08a85c679ac6455" + integrity sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ== + + ob1@^0.56.4: + version "0.56.4" + resolved "https://registry.yarnpkg.com/ob1/-/ob1-0.56.4.tgz#c4acb3baa42f4993a44b35b2da7c8ef443dcccec" + integrity sha512-URgFof9z2wotiYFsqlydXtQfGV81gvBI2ODy64xfd3vPo+AYom5PVDX4t4zn23t/O+S2IxqApSQM8uJAybmz7w== + + object-assign@^4.0.1, object-assign@^4.1.0, object-assign@^4.1.1: + version "4.1.1" + resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" + integrity sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM= + + object-copy@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/object-copy/-/object-copy-0.1.0.tgz#7e7d858b781bd7c991a41ba975ed3812754e998c" + integrity sha1-fn2Fi3gb18mRpBupde04EnVOmYw= + dependencies: + copy-descriptor "^0.1.0" + define-property "^0.2.5" + kind-of "^3.0.3" + + object-inspect@^1.7.0: + version "1.7.0" + resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.7.0.tgz#f4f6bd181ad77f006b5ece60bd0b6f398ff74a67" + integrity sha512-a7pEHdh1xKIAgTySUGgLMx/xwDZskN1Ud6egYYN3EdRW4ZMPNEDUTF+hwy2LUC+Bl+SyLXANnwz/jyh/qutKUw== + + object-keys@^1.0.11, object-keys@^1.0.12, object-keys@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" + integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== + + object-visit@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/object-visit/-/object-visit-1.0.1.tgz#f79c4493af0c5377b59fe39d395e41042dd045bb" + integrity sha1-95xEk68MU3e1n+OdOV5BBC3QRbs= + dependencies: + isobject "^3.0.0" + + object.assign@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.0.tgz#968bf1100d7956bb3ca086f006f846b3bc4008da" + integrity sha512-exHJeq6kBKj58mqGyTQ9DFvrZC/eR6OwxzoM9YRoGBqrXYonaFyGiFMuc9VZrXf7DarreEwMpurG3dd+CNyW5w== + dependencies: + define-properties "^1.1.2" + function-bind "^1.1.1" + has-symbols "^1.0.0" + object-keys "^1.0.11" + + object.entries@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/object.entries/-/object.entries-1.1.1.tgz#ee1cf04153de02bb093fec33683900f57ce5399b" + integrity sha512-ilqR7BgdyZetJutmDPfXCDffGa0/Yzl2ivVNpbx/g4UeWrCdRnFDUBrKJGLhGieRHDATnyZXWBeCb29k9CJysQ== + dependencies: + define-properties "^1.1.3" + es-abstract "^1.17.0-next.1" + function-bind "^1.1.1" + has "^1.0.3" + + object.fromentries@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/object.fromentries/-/object.fromentries-2.0.2.tgz#4a09c9b9bb3843dd0f89acdb517a794d4f355ac9" + integrity sha512-r3ZiBH7MQppDJVLx6fhD618GKNG40CZYH9wgwdhKxBDDbQgjeWGGd4AtkZad84d291YxvWe7bJGuE65Anh0dxQ== + dependencies: + define-properties "^1.1.3" + es-abstract "^1.17.0-next.1" + function-bind "^1.1.1" + has "^1.0.3" + + object.pick@^1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/object.pick/-/object.pick-1.3.0.tgz#87a10ac4c1694bd2e1cbf53591a66141fb5dd747" + integrity sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c= + dependencies: + isobject "^3.0.1" + + object.values@^1.1.0, object.values@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.1.1.tgz#68a99ecde356b7e9295a3c5e0ce31dc8c953de5e" + integrity sha512-WTa54g2K8iu0kmS/us18jEmdv1a4Wi//BZ/DTVYEcH0XhLM5NYdpDHja3gt57VrZLcNAO2WGA+KpWsDBaHt6eA== + dependencies: + define-properties "^1.1.3" + es-abstract "^1.17.0-next.1" + function-bind "^1.1.1" + has "^1.0.3" + + on-finished@~2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/on-finished/-/on-finished-2.3.0.tgz#20f1336481b083cd75337992a16971aa2d906947" + integrity sha1-IPEzZIGwg811M3mSoWlxqi2QaUc= + dependencies: + ee-first "1.1.1" + + on-headers@~1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/on-headers/-/on-headers-1.0.2.tgz#772b0ae6aaa525c399e489adfad90c403eb3c28f" + integrity sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA== + + once@^1.3.0, once@^1.3.1, once@^1.4.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" + integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E= + dependencies: + wrappy "1" + + onetime@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/onetime/-/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4" + integrity sha1-BnQoIw/WdEOyeUsiu6UotoZ5YtQ= + dependencies: + mimic-fn "^1.0.0" + + onetime@^5.1.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/onetime/-/onetime-5.1.0.tgz#fff0f3c91617fe62bb50189636e99ac8a6df7be5" + integrity sha512-5NcSkPHhwTVFIQN+TUqXoS5+dlElHXdpAWu9I0HP20YOtIi+aZ0Ct82jdlILDxjLEAWwvm+qj1m6aEtsDVmm6Q== + dependencies: + mimic-fn "^2.1.0" + + open@^6.2.0: + version "6.4.0" + resolved "https://registry.yarnpkg.com/open/-/open-6.4.0.tgz#5c13e96d0dc894686164f18965ecfe889ecfc8a9" + integrity sha512-IFenVPgF70fSm1keSd2iDBIDIBZkroLeuffXq+wKTzTJlBpesFWojV9lb8mzOfaAzM1sr7HQHuO0vtV0zYekGg== + dependencies: + is-wsl "^1.1.0" + + opencollective-postinstall@^2.0.0, opencollective-postinstall@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/opencollective-postinstall/-/opencollective-postinstall-2.0.2.tgz#5657f1bede69b6e33a45939b061eb53d3c6c3a89" + integrity sha512-pVOEP16TrAO2/fjej1IdOyupJY8KDUM1CvsaScRbw6oddvpQoOfGk4ywha0HKKVAD6RkW4x6Q+tNBwhf3Bgpuw== + + optionator@^0.8.1, optionator@^0.8.3: + version "0.8.3" + resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.3.tgz#84fa1d036fe9d3c7e21d99884b601167ec8fb495" + integrity sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA== + dependencies: + deep-is "~0.1.3" + fast-levenshtein "~2.0.6" + levn "~0.3.0" + prelude-ls "~1.1.2" + type-check "~0.3.2" + word-wrap "~1.2.3" + + options@>=0.0.5: + version "0.0.6" + resolved "https://registry.yarnpkg.com/options/-/options-0.0.6.tgz#ec22d312806bb53e731773e7cdaefcf1c643128f" + integrity sha1-7CLTEoBrtT5zF3Pnza788cZDEo8= + + ora@^3.4.0: + version "3.4.0" + resolved "https://registry.yarnpkg.com/ora/-/ora-3.4.0.tgz#bf0752491059a3ef3ed4c85097531de9fdbcd318" + integrity sha512-eNwHudNbO1folBP3JsZ19v9azXWtQZjICdr3Q0TDPIaeBQ3mXLrh54wM+er0+hSp+dWKf+Z8KM58CYzEyIYxYg== + dependencies: + chalk "^2.4.2" + cli-cursor "^2.1.0" + cli-spinners "^2.0.0" + log-symbols "^2.2.0" + strip-ansi "^5.2.0" + wcwidth "^1.0.1" + + os-homedir@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" + integrity sha1-/7xJiDNuDoM94MFox+8VISGqf7M= + + os-locale@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-2.1.0.tgz#42bc2900a6b5b8bd17376c8e882b65afccf24bf2" + integrity sha512-3sslG3zJbEYcaC4YVAvDorjGxc7tv6KVATnLPZONiljsUncvihe9BQoVCEs0RZ1kmf4Hk9OBqlZfJZWI4GanKA== + dependencies: + execa "^0.7.0" + lcid "^1.0.0" + mem "^1.1.0" + + os-locale@^3.0.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-3.1.0.tgz#a802a6ee17f24c10483ab9935719cef4ed16bf1a" + integrity sha512-Z8l3R4wYWM40/52Z+S265okfFj8Kt2cC2MKY+xNi3kFs+XGI7WXu/I309QQQYbRW4ijiZ+yxs9pqEhJh0DqW3Q== + dependencies: + execa "^1.0.0" + lcid "^2.0.0" + mem "^4.0.0" + + os-tmpdir@^1.0.0, os-tmpdir@~1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" + integrity sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ= + + osenv@^0.1.4: + version "0.1.5" + resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.5.tgz#85cdfafaeb28e8677f416e287592b5f3f49ea410" + integrity sha512-0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g== + dependencies: + os-homedir "^1.0.0" + os-tmpdir "^1.0.0" + + p-cancelable@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/p-cancelable/-/p-cancelable-1.1.0.tgz#d078d15a3af409220c886f1d9a0ca2e441ab26cc" + integrity sha512-s73XxOZ4zpt1edZYZzvhqFa6uvQc1vwUa0K0BdtIZgQMAJj9IbebH+JkgKZc9h+B05PKHLOTl4ajG1BmNrVZlw== + + p-defer@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/p-defer/-/p-defer-1.0.0.tgz#9f6eb182f6c9aa8cd743004a7d4f96b196b0fb0c" + integrity sha1-n26xgvbJqozXQwBKfU+WsZaw+ww= + + p-each-series@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/p-each-series/-/p-each-series-2.1.0.tgz#961c8dd3f195ea96c747e636b262b800a6b1af48" + integrity sha512-ZuRs1miPT4HrjFa+9fRfOFXxGJfORgelKV9f9nNOWw2gl6gVsRaVDOQP0+MI0G0wGKns1Yacsu0GjOFbTK0JFQ== + + p-finally@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" + integrity sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4= + + p-finally@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-2.0.1.tgz#bd6fcaa9c559a096b680806f4d657b3f0f240561" + integrity sha512-vpm09aKwq6H9phqRQzecoDpD8TmVyGw70qmWlyq5onxY7tqyTTFVvxMykxQSQKILBSFlbXpypIw2T1Ml7+DDtw== + + p-is-promise@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/p-is-promise/-/p-is-promise-2.1.0.tgz#918cebaea248a62cf7ffab8e3bca8c5f882fc42e" + integrity sha512-Y3W0wlRPK8ZMRbNq97l4M5otioeA5lm1z7bkNkxCka8HSPjR0xRWmpCmc9utiaLP9Jb1eD8BgeIxTW4AIF45Pg== + + p-limit@^1.1.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.3.0.tgz#b86bd5f0c25690911c7590fcbfc2010d54b3ccb8" + integrity sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q== + dependencies: + p-try "^1.0.0" + + p-limit@^2.0.0, p-limit@^2.2.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.3.0.tgz#3dd33c647a214fdfffd835933eb086da0dc21db1" + integrity sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w== + dependencies: + p-try "^2.0.0" + + p-locate@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" + integrity sha1-IKAQOyIqcMj9OcwuWAaA893l7EM= + dependencies: + p-limit "^1.1.0" + + p-locate@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-3.0.0.tgz#322d69a05c0264b25997d9f40cd8a891ab0064a4" + integrity sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ== + dependencies: + p-limit "^2.0.0" + + p-locate@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-4.1.0.tgz#a3428bb7088b3a60292f66919278b7c297ad4f07" + integrity sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A== + dependencies: + p-limit "^2.2.0" + + p-map@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/p-map/-/p-map-2.1.0.tgz#310928feef9c9ecc65b68b17693018a665cea175" + integrity sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw== + + p-try@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/p-try/-/p-try-1.0.0.tgz#cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3" + integrity sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M= + + p-try@^2.0.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6" + integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ== + + package-json@^6.3.0: + version "6.5.0" + resolved "https://registry.yarnpkg.com/package-json/-/package-json-6.5.0.tgz#6feedaca35e75725876d0b0e64974697fed145b0" + integrity sha512-k3bdm2n25tkyxcjSKzB5x8kfVxlMdgsbPr0GkZcwHsLpba6cBjqCt1KlcChKEvxHIcTB1FVMuwoijZ26xex5MQ== + dependencies: + got "^9.6.0" + registry-auth-token "^4.0.0" + registry-url "^5.0.0" + semver "^6.2.0" + + parent-module@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2" + integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g== + dependencies: + callsites "^3.0.0" + + parse-headers@^2.0.0: + version "2.0.3" + resolved "https://registry.yarnpkg.com/parse-headers/-/parse-headers-2.0.3.tgz#5e8e7512383d140ba02f0c7aa9f49b4399c92515" + integrity sha512-QhhZ+DCCit2Coi2vmAKbq5RGTRcQUOE2+REgv8vdyu7MnYx2eZztegqtTx99TZ86GTIwqiy3+4nQTWZ2tgmdCA== + + parse-json@^2.2.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" + integrity sha1-9ID0BDTvgHQfhGkJn43qGPVaTck= + dependencies: + error-ex "^1.2.0" + + parse-json@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-4.0.0.tgz#be35f5425be1f7f6c747184f98a788cb99477ee0" + integrity sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA= + dependencies: + error-ex "^1.3.1" + json-parse-better-errors "^1.0.1" + + parse-json@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-5.0.0.tgz#73e5114c986d143efa3712d4ea24db9a4266f60f" + integrity sha512-OOY5b7PAEFV0E2Fir1KOkxchnZNCdowAJgQ5NuxjpBKTRP3pQhwkrkxqQjeoKJ+fO7bCpmIZaogI4eZGDMEGOw== + dependencies: + "@babel/code-frame" "^7.0.0" + error-ex "^1.3.1" + json-parse-better-errors "^1.0.1" + lines-and-columns "^1.1.6" + + parse-node-version@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/parse-node-version/-/parse-node-version-1.0.1.tgz#e2b5dbede00e7fa9bc363607f53327e8b073189b" + integrity sha512-3YHlOa/JgH6Mnpr05jP9eDG254US9ek25LyIxZlDItp2iJtwyaXQb57lBYLdT3MowkUFYEV2XXNAYIPlESvJlA== + + parse5@5.1.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/parse5/-/parse5-5.1.0.tgz#c59341c9723f414c452975564c7c00a68d58acd2" + integrity sha512-fxNG2sQjHvlVAYmzBZS9YlDp6PTSSDwa98vkD4QgVDDCAo84z5X1t5XyJQ62ImdLXx5NdIIfihey6xpum9/gRQ== + + parseurl@~1.3.3: + version "1.3.3" + resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.3.tgz#9da19e7bee8d12dff0513ed5b76957793bc2e8d4" + integrity sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ== + + pascalcase@^0.1.1: + version "0.1.1" + resolved "https://registry.yarnpkg.com/pascalcase/-/pascalcase-0.1.1.tgz#b363e55e8006ca6fe21784d2db22bd15d7917f14" + integrity sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ= + + path-browserify@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-1.0.1.tgz#d98454a9c3753d5790860f16f68867b9e46be1fd" + integrity sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g== + + path-exists@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" + integrity sha1-zg6+ql94yxiSXqfYENe1mwEP1RU= + + path-exists@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3" + integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w== + + path-is-absolute@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" + integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18= + + path-key@^2.0.0, path-key@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" + integrity sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A= + + path-key@^3.0.0, path-key@^3.1.0: + version "3.1.1" + resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" + integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== + + path-parse@^1.0.6: + version "1.0.6" + resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.6.tgz#d62dbb5679405d72c4737ec58600e9ddcf06d24c" + integrity sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw== + + path-to-regexp@0.1.7: + version "0.1.7" + resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-0.1.7.tgz#df604178005f522f15eb4490e7247a1bfaa67f8c" + integrity sha1-32BBeABfUi8V60SQ5yR6G/qmf4w= + + path-to-regexp@^1.8.0: + version "1.8.0" + resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-1.8.0.tgz#887b3ba9d84393e87a0a0b9f4cb756198b53548a" + integrity sha512-n43JRhlUKUAlibEJhPeir1ncUID16QnEjNpwzNdO3Lm4ywrBpBZ5oLD0I6br9evr1Y9JTqwRtAh7JLoOzAQdVA== + dependencies: + isarray "0.0.1" + + path-type@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/path-type/-/path-type-2.0.0.tgz#f012ccb8415b7096fc2daa1054c3d72389594c73" + integrity sha1-8BLMuEFbcJb8LaoQVMPXI4lZTHM= + dependencies: + pify "^2.0.0" + + path-type@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/path-type/-/path-type-3.0.0.tgz#cef31dc8e0a1a3bb0d105c0cd97cf3bf47f4e36f" + integrity sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg== + dependencies: + pify "^3.0.0" + + path-type@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b" + integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw== + + performance-now@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b" + integrity sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns= + + picomatch@^2.0.4, picomatch@^2.0.5, picomatch@^2.0.7: + version "2.2.2" + resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.2.2.tgz#21f333e9b6b8eaff02468f5146ea406d345f4dad" + integrity sha512-q0M/9eZHzmr0AulXyPwNfZjtwZ/RBZlbN3K3CErVrk50T2ASYI7Bye0EvekFY3IP1Nt2DHu0re+V2ZHIpMkuWg== + + pidtree@^0.3.0: + version "0.3.1" + resolved "https://registry.yarnpkg.com/pidtree/-/pidtree-0.3.1.tgz#ef09ac2cc0533df1f3250ccf2c4d366b0d12114a" + integrity sha512-qQbW94hLHEqCg7nhby4yRC7G2+jYHY4Rguc2bjw7Uug4GIJuu1tvf2uHaZv5Q8zdt+WKJ6qK1FOI6amaWUo5FA== + + pify@^2.0.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" + integrity sha1-7RQaasBDqEnqWISY59yosVMw6Qw= + + pify@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176" + integrity sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY= + + pify@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/pify/-/pify-4.0.1.tgz#4b2cd25c50d598735c50292224fd8c6df41e3231" + integrity sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g== + + pirates@^4.0.0, pirates@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/pirates/-/pirates-4.0.1.tgz#643a92caf894566f91b2b986d2c66950a8e2fb87" + integrity sha512-WuNqLTbMI3tmfef2TKxlQmAiLHKtFhlsCZnPIpuv2Ow0RDVO8lfy1Opf4NUzlMXLjPl+Men7AuVdX6TA+s+uGA== + dependencies: + node-modules-regexp "^1.0.0" + + pkg-dir@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-2.0.0.tgz#f6d5d1109e19d63edf428e0bd57e12777615334b" + integrity sha1-9tXREJ4Z1j7fQo4L1X4Sd3YVM0s= + dependencies: + find-up "^2.1.0" + + pkg-dir@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-3.0.0.tgz#2749020f239ed990881b1f71210d51eb6523bea3" + integrity sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw== + dependencies: + find-up "^3.0.0" + + pkg-dir@^4.2.0: + version "4.2.0" + resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-4.2.0.tgz#f099133df7ede422e81d1d8448270eeb3e4261f3" + integrity sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ== + dependencies: + find-up "^4.0.0" + + please-upgrade-node@^3.2.0: + version "3.2.0" + resolved "https://registry.yarnpkg.com/please-upgrade-node/-/please-upgrade-node-3.2.0.tgz#aeddd3f994c933e4ad98b99d9a556efa0e2fe942" + integrity sha512-gQR3WpIgNIKwBMVLkpMUeR3e1/E1y42bqDQZfql+kDeXd8COYfM8PQA4X6y7a8u9Ua9FHmsrrmirW2vHs45hWg== + dependencies: + semver-compare "^1.0.0" + + plist@^3.0.0, plist@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/plist/-/plist-3.0.1.tgz#a9b931d17c304e8912ef0ba3bdd6182baf2e1f8c" + integrity sha512-GpgvHHocGRyQm74b6FWEZZVRroHKE1I0/BTjAmySaohK+cUn+hZpbqXkc3KWgW3gQYkqcQej35FohcT0FRlkRQ== + dependencies: + base64-js "^1.2.3" + xmlbuilder "^9.0.7" + xmldom "0.1.x" + + plugin-error@^0.1.2: + version "0.1.2" + resolved "https://registry.yarnpkg.com/plugin-error/-/plugin-error-0.1.2.tgz#3b9bb3335ccf00f425e07437e19276967da47ace" + integrity sha1-O5uzM1zPAPQl4HQ34ZJ2ln2kes4= + dependencies: + ansi-cyan "^0.1.1" + ansi-red "^0.1.1" + arr-diff "^1.0.1" + arr-union "^2.0.1" + extend-shallow "^1.1.2" + + pn@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/pn/-/pn-1.1.0.tgz#e2f4cef0e219f463c179ab37463e4e1ecdccbafb" + integrity sha512-2qHaIQr2VLRFoxe2nASzsV6ef4yOOH+Fi9FBOVH6cqeSgUnoyySPZkxzLuzd+RYOQTRpROA0ztTMqxROKSb/nA== + + posix-character-classes@^0.1.0: + version "0.1.1" + resolved "https://registry.yarnpkg.com/posix-character-classes/-/posix-character-classes-0.1.1.tgz#01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab" + integrity sha1-AerA/jta9xoqbAL+q7jB/vfgDqs= + + prelude-ls@~1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" + integrity sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ= + + prepend-http@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-2.0.0.tgz#e92434bfa5ea8c19f41cdfd401d741a3c819d897" + integrity sha1-6SQ0v6XqjBn0HN/UAddBo8gZ2Jc= + + prettier-linter-helpers@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/prettier-linter-helpers/-/prettier-linter-helpers-1.0.0.tgz#d23d41fe1375646de2d0104d3454a3008802cf7b" + integrity sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w== + dependencies: + fast-diff "^1.1.2" + + prettier@^1.19.1: + version "1.19.1" + resolved "https://registry.yarnpkg.com/prettier/-/prettier-1.19.1.tgz#f7d7f5ff8a9cd872a7be4ca142095956a60797cb" + integrity sha512-s7PoyDv/II1ObgQunCbB9PdLmUcBZcnWOcxDh7O0N/UwDEsHyqkW+Qh28jW+mVuCdx7gLB0BotYI1Y6uI9iyew== + + pretty-format@^24.7.0, pretty-format@^24.9.0: + version "24.9.0" + resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-24.9.0.tgz#12fac31b37019a4eea3c11aa9a959eb7628aa7c9" + integrity sha512-00ZMZUiHaJrNfk33guavqgvfJS30sLYf0f8+Srklv0AMPodGGHcoHgksZ3OThYnIvOd+8yMCn0YiEOogjlgsnA== + dependencies: + "@jest/types" "^24.9.0" + ansi-regex "^4.0.0" + ansi-styles "^3.2.0" + react-is "^16.8.4" + + pretty-format@^25.1.0: + version "25.3.0" + resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-25.3.0.tgz#d0a4f988ff4a6cd350342fdabbb809aeb4d49ad5" + integrity sha512-wToHwF8bkQknIcFkBqNfKu4+UZqnrLn/Vr+wwKQwwvPzkBfDDKp/qIabFqdgtoi5PEnM8LFByVsOrHoa3SpTVA== + dependencies: + "@jest/types" "^25.3.0" + ansi-regex "^5.0.0" + ansi-styles "^4.0.0" + react-is "^16.12.0" + + pretty-format@^25.4.0: + version "25.4.0" + resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-25.4.0.tgz#c58801bb5c4926ff4a677fe43f9b8b99812c7830" + integrity sha512-PI/2dpGjXK5HyXexLPZU/jw5T9Q6S1YVXxxVxco+LIqzUFHXIbKZKdUVt7GcX7QUCr31+3fzhi4gN4/wUYPVxQ== + dependencies: + "@jest/types" "^25.4.0" + ansi-regex "^5.0.0" + ansi-styles "^4.0.0" + react-is "^16.12.0" + + private@^0.1.6, private@^0.1.8: + version "0.1.8" + resolved "https://registry.yarnpkg.com/private/-/private-0.1.8.tgz#2381edb3689f7a53d653190060fcf822d2f368ff" + integrity sha512-VvivMrbvd2nKkiG38qjULzlc+4Vx4wm/whI9pQD35YrARNnhxeiRktSOhSukRLFNlzg6Br/cJPet5J/u19r/mg== + + process-nextick-args@~2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2" + integrity sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag== + + process@~0.5.1: + version "0.5.2" + resolved "https://registry.yarnpkg.com/process/-/process-0.5.2.tgz#1638d8a8e34c2f440a91db95ab9aeb677fc185cf" + integrity sha1-FjjYqONML0QKkduVq5rrZ3/Bhc8= + + progress@^2.0.0: + version "2.0.3" + resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.3.tgz#7e8cf8d8f5b8f239c1bc68beb4eb78567d572ef8" + integrity sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA== + + promise@^7.1.1: + version "7.3.1" + resolved "https://registry.yarnpkg.com/promise/-/promise-7.3.1.tgz#064b72602b18f90f29192b8b1bc418ffd1ebd3bf" + integrity sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg== + dependencies: + asap "~2.0.3" + + prompts@^2.0.1: + version "2.3.2" + resolved "https://registry.yarnpkg.com/prompts/-/prompts-2.3.2.tgz#480572d89ecf39566d2bd3fe2c9fccb7c4c0b068" + integrity sha512-Q06uKs2CkNYVID0VqwfAl9mipo99zkBv/n2JtWY89Yxa3ZabWSrs0e2KTudKVa3peLUvYXMefDqIleLPVUBZMA== + dependencies: + kleur "^3.0.3" + sisteransi "^1.0.4" + + prop-types@^15.5.10, prop-types@^15.5.7, prop-types@^15.6.0, prop-types@^15.6.1, prop-types@^15.6.2, prop-types@^15.7.2: + version "15.7.2" + resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.7.2.tgz#52c41e75b8c87e72b9d9360e0206b99dcbffa6c5" + integrity sha512-8QQikdH7//R2vurIJSutZ1smHYTcLpRWEOlHnzcWHmBYrOGUysKwSsrC89BCiFj3CbrfJ/nXFdJepOVrY1GCHQ== + dependencies: + loose-envify "^1.4.0" + object-assign "^4.1.1" + react-is "^16.8.1" + + proxy-addr@~2.0.5: + version "2.0.6" + resolved "https://registry.yarnpkg.com/proxy-addr/-/proxy-addr-2.0.6.tgz#fdc2336505447d3f2f2c638ed272caf614bbb2bf" + integrity sha512-dh/frvCBVmSsDYzw6n926jv974gddhkFPfiN8hPOi30Wax25QZyZEGveluCgliBnqmuM+UJmBErbAUFIoDbjOw== + dependencies: + forwarded "~0.1.2" + ipaddr.js "1.9.1" + + pseudomap@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" + integrity sha1-8FKijacOYYkX7wqKw0wa5aaChrM= + + psl@^1.1.24, psl@^1.1.28: + version "1.8.0" + resolved "https://registry.yarnpkg.com/psl/-/psl-1.8.0.tgz#9326f8bcfb013adcc005fdff056acce020e51c24" + integrity sha512-RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ/6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ== + + pstree.remy@^1.1.7: + version "1.1.7" + resolved "https://registry.yarnpkg.com/pstree.remy/-/pstree.remy-1.1.7.tgz#c76963a28047ed61542dc361aa26ee55a7fa15f3" + integrity sha512-xsMgrUwRpuGskEzBFkH8NmTimbZ5PcPup0LA8JJkHIm2IMUbQcpo3yeLNWVrufEYjh8YwtSVh0xz6UeWc5Oh5A== + + pump@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/pump/-/pump-3.0.0.tgz#b4a2116815bde2f4e1ea602354e8c75565107a64" + integrity sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww== + dependencies: + end-of-stream "^1.1.0" + once "^1.3.1" + + punycode@^1.4.1: + version "1.4.1" + resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" + integrity sha1-wNWmOycYgArY4esPpSachN1BhF4= + + punycode@^2.1.0, punycode@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec" + integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A== + + pupa@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/pupa/-/pupa-2.0.1.tgz#dbdc9ff48ffbea4a26a069b6f9f7abb051008726" + integrity sha512-hEJH0s8PXLY/cdXh66tNEQGndDrIKNqNC5xmrysZy3i5C3oEoLna7YAOad+7u125+zH1HNXUmGEkrhb3c2VriA== + dependencies: + escape-goat "^2.0.0" + + qs@6.7.0: + version "6.7.0" + resolved "https://registry.yarnpkg.com/qs/-/qs-6.7.0.tgz#41dc1a015e3d581f1621776be31afb2876a9b1bc" + integrity sha512-VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ== + + qs@^6.5.1: + version "6.9.3" + resolved "https://registry.yarnpkg.com/qs/-/qs-6.9.3.tgz#bfadcd296c2d549f1dffa560619132c977f5008e" + integrity sha512-EbZYNarm6138UKKq46tdx08Yo/q9ZhFoAXAI1meAFd2GtbRDhbZY2WQSICskT0c5q99aFzLG1D4nvTk9tqfXIw== + + qs@~6.5.2: + version "6.5.2" + resolved "https://registry.yarnpkg.com/qs/-/qs-6.5.2.tgz#cb3ae806e8740444584ef154ce8ee98d403f3e36" + integrity sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA== + + query-string@^6.11.1, query-string@^6.2.0: + version "6.12.0" + resolved "https://registry.yarnpkg.com/query-string/-/query-string-6.12.0.tgz#fa0fe5b3ddf4d040d1236b80672949ab33d5cf80" + integrity sha512-aoiFW9ZU7jP8Itjqfpw80Qe7RoyCIhFrW522sdsp9LG92pat6CCG3d8qNZBaUi71FsEjIfLjx9Ky347FtVoqXA== + dependencies: + decode-uri-component "^0.2.0" + split-on-first "^1.0.0" + strict-uri-encode "^2.0.0" + + querystringify@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/querystringify/-/querystringify-2.1.1.tgz#60e5a5fd64a7f8bfa4d2ab2ed6fdf4c85bad154e" + integrity sha512-w7fLxIRCRT7U8Qu53jQnJyPkYZIaR4n5151KMfcJlO/A9397Wxb1amJvROTK6TOnp7PfoAmg/qXiNHI+08jRfA== + + random-bytes@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/random-bytes/-/random-bytes-1.0.0.tgz#4f68a1dc0ae58bd3fb95848c30324db75d64360b" + integrity sha1-T2ih3Arli9P7lYSMMDJNt11kNgs= + + range-parser@~1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.1.tgz#3cf37023d199e1c24d1a55b84800c2f3e6468031" + integrity sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg== + + raw-body@2.4.0: + version "2.4.0" + resolved "https://registry.yarnpkg.com/raw-body/-/raw-body-2.4.0.tgz#a1ce6fb9c9bc356ca52e89256ab59059e13d0332" + integrity sha512-4Oz8DUIwdvoa5qMJelxipzi/iJIi40O5cGV1wNYp5hvZP8ZN0T+jiNkL0QepXs+EsQ9XJ8ipEDoiH70ySUJP3Q== + dependencies: + bytes "3.1.0" + http-errors "1.7.2" + iconv-lite "0.4.24" + unpipe "1.0.0" + + rc@^1.2.7, rc@^1.2.8: + version "1.2.8" + resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.8.tgz#cd924bf5200a075b83c188cd6b9e211b7fc0d3ed" + integrity sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw== + dependencies: + deep-extend "^0.6.0" + ini "~1.3.0" + minimist "^1.2.0" + strip-json-comments "~2.0.1" + + react-devtools-core@^3.6.3: + version "3.6.3" + resolved "https://registry.yarnpkg.com/react-devtools-core/-/react-devtools-core-3.6.3.tgz#977d95b684c6ad28205f0c62e1e12c5f16675814" + integrity sha512-+P+eFy/yo8Z/UH9J0DqHZuUM5+RI2wl249TNvMx3J2jpUomLQa4Zxl56GEotGfw3PIP1eI+hVf1s53FlUONStQ== + dependencies: + shell-quote "^1.6.1" + ws "^3.3.1" + + react-dom@16.9.0: + version "16.9.0" + resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-16.9.0.tgz#5e65527a5e26f22ae3701131bcccaee9fb0d3962" + integrity sha512-YFT2rxO9hM70ewk9jq0y6sQk8cL02xm4+IzYBz75CQGlClQQ1Bxq0nhHF6OtSbit+AIahujJgb/CPRibFkMNJQ== + dependencies: + loose-envify "^1.1.0" + object-assign "^4.1.1" + prop-types "^15.6.2" + scheduler "^0.15.0" + + react-is@^16.12.0, react-is@^16.13.0, react-is@^16.7.0, react-is@^16.8.1, react-is@^16.8.4, react-is@^16.8.6, react-is@^16.9.0: + version "16.13.1" + resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.13.1.tgz#789729a4dc36de2999dc156dd6c1d9c18cea56a4" + integrity sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ== + + react-lifecycles-compat@^3.0.2, react-lifecycles-compat@^3.0.4: + version "3.0.4" + resolved "https://registry.yarnpkg.com/react-lifecycles-compat/-/react-lifecycles-compat-3.0.4.tgz#4f1a273afdfc8f3488a8c516bfda78f872352362" + integrity sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA== + + react-native-animatable@1.3.3: + version "1.3.3" + resolved "https://registry.yarnpkg.com/react-native-animatable/-/react-native-animatable-1.3.3.tgz#a13a4af8258e3bb14d0a9d839917e9bb9274ec8a" + integrity sha512-2ckIxZQAsvWn25Ho+DK3d1mXIgj7tITkrS4pYDvx96WyOttSvzzFeQnM2od0+FUMzILbdHDsDEqZvnz1DYNQ1w== + dependencies: + prop-types "^15.7.2" + + react-native-animated-ellipsis@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/react-native-animated-ellipsis/-/react-native-animated-ellipsis-2.0.0.tgz#b216a1a54ce9ee8a64b44bab48d9c9980670882c" + integrity sha512-a/dyEbJZsbK3ZWJuhnEraOpXb/JjinPWN+CaZzZnsrCX1FTqsatV/k2/qoJlARWYPDqR9YZpI828+pe/b+JVDA== + dependencies: + babel-preset-stage-2 "^6.24.1" + prop-types "^15.5.10" + + react-native-camera@^3.23.1: + version "3.23.1" + resolved "https://registry.yarnpkg.com/react-native-camera/-/react-native-camera-3.23.1.tgz#fb6fe52f8a357852de6dcd81d0d187cd632dc7dd" + integrity sha512-ghQT2IhiZiNMDgixD/MrfwgFx9arwOb2z79xDJ8dsz8DFcpBMbXjXZETaAK0WaZ/MWOaY84k0eGlx1hoVT77wQ== + dependencies: + prop-types "^15.6.2" + + react-native-confirmation-code-field@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/react-native-confirmation-code-field/-/react-native-confirmation-code-field-6.0.0.tgz#bc5e84cbe9bb9be85b5df2ab2d4e73a8084bc013" + integrity sha512-VydbDBernUpKTNw/ee6oGRgRYuYyRauodRCn8JrsTRGyi7+aG0O6Tx7fOiu+vCXjahTzqk0nC8qgodI/1fIWhw== + + react-native-convert-ph-asset@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/react-native-convert-ph-asset/-/react-native-convert-ph-asset-1.0.3.tgz#af299a6a3f7270b55c3bdfe472a40cea02c93c80" + integrity sha512-qdTrUsDlxOvC7KnamjjRnxaijr3myfOwzbYR0vyTl0BjPT25jkCQ9a4Q26egRdy8uqiw7mqB1ZhG5OohwnpsOg== + + react-native-dotenv@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/react-native-dotenv/-/react-native-dotenv-0.2.0.tgz#311551cb6a35a3dcfede648bded55c0e3ece579d" + integrity sha1-MRVRy2o1o9z+3mSL3tVcDj7OV50= + dependencies: + babel-plugin-dotenv "0.1.1" + + react-native-elements@^1.2.7: + version "1.2.7" + resolved "https://registry.yarnpkg.com/react-native-elements/-/react-native-elements-1.2.7.tgz#1eca2db715c41722aeb67aea62bd2a4621adb134" + integrity sha512-0S+0R1cbItl15i64qrkWnyMztwpw60d0SUsZGVDKRAMf0Jvq9Clgyh/MzxJx2sr42mbedQP1sg5Et4fZM7Fp1w== + dependencies: + "@types/react-native-vector-icons" "^6.4.4" + color "^3.1.0" + deepmerge "^3.1.0" + hoist-non-react-statics "^3.1.0" + opencollective-postinstall "^2.0.0" + prop-types "^15.7.2" + react-native-ratings "^6.3.0" + react-native-status-bar-height "^2.2.0" + + react-native-ffmpeg@^0.4.4: + version "0.4.4" + resolved "https://registry.yarnpkg.com/react-native-ffmpeg/-/react-native-ffmpeg-0.4.4.tgz#9f4dbda53c96078cecbbe83a866d4b535b957131" + integrity sha512-MUBV3Xvto1Hl049Y9EaOZdjazkK1ixQzCzPEt1o7V2duSOrM2kJ2o/RiC4rSRgapU2uqYRHMZ6X4JJI7y40qXw== + + react-native-fs@^2.16.6: + version "2.16.6" + resolved "https://registry.yarnpkg.com/react-native-fs/-/react-native-fs-2.16.6.tgz#2901789a43210a35a0ef0a098019bbef3af395fd" + integrity sha512-ZWOooD1AuFoAGY3HS2GY7Qx2LZo4oIg6AK0wbC68detxwvX75R/q9lRqThXNKP6vIo2VHWa0fYUo/SrLw80E8w== + dependencies: + base-64 "^0.1.0" + utf8 "^3.0.0" + + react-native-gesture-handler@~1.5.0: + version "1.5.6" + resolved "https://registry.yarnpkg.com/react-native-gesture-handler/-/react-native-gesture-handler-1.5.6.tgz#5d90145f624e3707db2930f43ab41579683e2375" + integrity sha512-z2jLUkRiRc0PBAC9UcXYkqy3VUzBG0cYQAGMsDHsd90JgrzudHAFRJV9fvFm18wNauFTNnJievjZ0C3rI2ydhw== + dependencies: + "@egjs/hammerjs" "^2.0.17" + hammerjs "https://github.com/naver/hammer.js.git" + hoist-non-react-statics "^2.3.1" + invariant "^2.2.4" + prop-types "^15.7.2" + + react-native-iphone-x-helper@^1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/react-native-iphone-x-helper/-/react-native-iphone-x-helper-1.2.1.tgz#645e2ffbbb49e80844bb4cbbe34a126fda1e6772" + integrity sha512-/VbpIEp8tSNNHIvstuA3Swx610whci1Zpc9mqNkqn14DkMbw+ORviln2u0XyHG1kPvvwTNGZY6QpeFwxYaSdbQ== + + react-native-modal@^11.5.3: + version "11.5.6" + resolved "https://registry.yarnpkg.com/react-native-modal/-/react-native-modal-11.5.6.tgz#bb25a78c35a5e24f45de060e5f64284397d38a87" + integrity sha512-APGNfbvgC4hXbJqcSADu79GLoMKIHUmgR3fDQ7rCGZNBypkStSP8imZ4PKK/OzIZZfjGU9aP49jhMgGbhY9KHA== + dependencies: + prop-types "^15.6.2" + react-native-animatable "1.3.3" + + react-native-orientation@^3.1.3: + version "3.1.3" + resolved "https://registry.yarnpkg.com/react-native-orientation/-/react-native-orientation-3.1.3.tgz#d45803841fe94b6cce9acbe904fd5ca191a3711e" + integrity sha512-A0h0E+2f95X4avmhaBG1ZT8WDxBACA/q//JN2eF1E7kq8AJVxt5XDiavv+aSBkBlqFsfF3bIS+T/DB5mXmnxuA== + + react-native-ratings@^6.3.0: + version "6.5.0" + resolved "https://registry.yarnpkg.com/react-native-ratings/-/react-native-ratings-6.5.0.tgz#a1606ccba3c5b54eec8e6cfa4765a45cf0e4ab8d" + integrity sha512-YMcfQ7UQCmXGEc/WPlukHSHs5yvckTwjq5fTRk1FG8gaO7fZCNygEUGPuw4Dbvvp3IlsCUn0bOQd63RYsb7NDQ== + dependencies: + lodash "^4.17.4" + prop-types "^15.5.10" + + react-native-reanimated@~1.4.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/react-native-reanimated/-/react-native-reanimated-1.4.0.tgz#7f1acbf9be08492d834f512700570978052be2f9" + integrity sha512-tO7nSNNP+iRLVbkcSS5GXyDBb7tSI02+XuRL3/S39EAr35rnvUy2JfeLUQG+fWSObJjnMVhasUDEUwlENk8IXw== + + react-native-safe-area-context@0.6.0: + version "0.6.0" + resolved "https://registry.yarnpkg.com/react-native-safe-area-context/-/react-native-safe-area-context-0.6.0.tgz#f53f5a5bcafb462a8798a26b145e68946389ad60" + integrity sha512-blY0akr3ZLTuZFdUotmjV+7LVXpBnd5CGFlNhTiarNNGJoHu79K42IJpUpmtg75iC9aWbSW7QHstlP0xz11V0A== + + react-native-safe-area-view@^0.14.8: + version "0.14.9" + resolved "https://registry.yarnpkg.com/react-native-safe-area-view/-/react-native-safe-area-view-0.14.9.tgz#90ee8383037010d9a5055a97cf97e4c1da1f0c3d" + integrity sha512-WII/ulhpVyL/qbYb7vydq7dJAfZRBcEhg4/UWt6F6nAKpLa3gAceMOxBxI914ppwSP/TdUsandFy6lkJQE0z4A== + dependencies: + hoist-non-react-statics "^2.3.1" + + react-native-screens@2.0.0-alpha.12: + version "2.0.0-alpha.12" + resolved "https://registry.yarnpkg.com/react-native-screens/-/react-native-screens-2.0.0-alpha.12.tgz#35a6ef3b472958e9d35f0ca9e582d0d158f8e379" + integrity sha512-x9M7FEdcm97bVDp3pi//nhduJHLFMrmDQs0fq299yx3kHdgHbrmhsa8jgW4HvDQhjyPE0FWADY/GrXFuPRj80w== + dependencies: + debounce "^1.2.0" + + react-native-status-bar-height@^2.2.0: + version "2.5.0" + resolved "https://registry.yarnpkg.com/react-native-status-bar-height/-/react-native-status-bar-height-2.5.0.tgz#bc0fb85230603850aab9667ee8111a62954de90c" + integrity sha512-sYBCPYA/NapBSHkdm/IVL4ID3LLlIuLqINi2FBDyMkc2BU9pfSGOtkz9yfxoK39mYJuTrlTOQ7mManARUsYDSA== + + react-native-stream@^0.1.9: + version "0.1.9" + resolved "https://registry.yarnpkg.com/react-native-stream/-/react-native-stream-0.1.9.tgz#13680cce893ca7d34a86664d9d5b4ee1a772c97c" + integrity sha1-E2gMzok8p9NKhmZNnVtO4adyyXw= + dependencies: + base64-js "^1.2.0" + ieee754 "^1.1.8" + + react-native-tab-view@^2.11.0: + version "2.14.0" + resolved "https://registry.yarnpkg.com/react-native-tab-view/-/react-native-tab-view-2.14.0.tgz#dd801f82fdb8e92fce9688b78d13923f3a5a2b3f" + integrity sha512-Z7XAM3NsMB96c17e9EAveunk7SUgilXWwVUTmWI1u/+p2SeOMUOB87z+//UXrcVlD1e9BPweR73q7dq7krTzTg== + + react-native-unimodules@~0.7.0: + version "0.7.0" + resolved "https://registry.yarnpkg.com/react-native-unimodules/-/react-native-unimodules-0.7.0.tgz#ce4e48898c3ef0b986b87e7421303abf8afc862c" + integrity sha512-7tdSIWx5/EhDkEpGYCNaIsiJwluJYsJ0BtvJUVuWliRbN/IBVRc1b/nW4CKKSW/w+fXPel+k3GNlAN0p0S/BiA== + dependencies: + "@unimodules/core" "~5.0.0" + "@unimodules/react-native-adapter" "~5.0.0" + chalk "^2.4.2" + expo-app-loader-provider "~8.0.0" + expo-asset "~8.0.0" + expo-constants "~8.0.0" + expo-file-system "~8.0.0" + expo-permissions "~8.0.0" + unimodules-barcode-scanner-interface "~5.0.0" + unimodules-camera-interface "~5.0.0" + unimodules-constants-interface "~5.0.0" + unimodules-face-detector-interface "~5.0.0" + unimodules-file-system-interface "~5.0.0" + unimodules-font-interface "~5.0.0" + unimodules-image-loader-interface "~5.0.0" + unimodules-permissions-interface "~5.0.0" + unimodules-sensors-interface "~5.0.0" + unimodules-task-manager-interface "~5.0.0" + + react-native-vector-icons@^6.6.0: + version "6.6.0" + resolved "https://registry.yarnpkg.com/react-native-vector-icons/-/react-native-vector-icons-6.6.0.tgz#66cf004918eb05d90778d64bd42077c1800d481b" + integrity sha512-MImKVx8JEvVVBnaShMr7/yTX4Y062JZMupht1T+IEgbqBj4aQeQ1z2SH4VHWKNtWtppk4kz9gYyUiMWqx6tNSw== + dependencies: + lodash "^4.0.0" + prop-types "^15.6.2" + yargs "^13.2.2" + + react-native-video@^4.4.5: + version "4.4.5" + resolved "https://registry.yarnpkg.com/react-native-video/-/react-native-video-4.4.5.tgz#d0db799293f8622c7894dd0f8875cb41bfafbde8" + integrity sha512-jm1Yf1S3ZqrsbUo+3v9nUaQz/eD4kytzkm8jfDEvKzg/EEzci1EzjLSZqQcNtyLg1fvfkyRbvvzUYhS2SjdKPA== + dependencies: + keymirror "^0.1.1" + prop-types "^15.5.10" + shaka-player "^2.4.4" + + react-native-web@^0.11.7: + version "0.11.7" + resolved "https://registry.yarnpkg.com/react-native-web/-/react-native-web-0.11.7.tgz#d173d5a9b58db23b6d442c4bc4c81e9939adac23" + integrity sha512-w1KAxX2FYLS2GAi3w3BnEZg/IUu7FdgHnLmFKHplRnHMV3u1OPB2EVA7ndNdfu7ds4Rn2OZjSXoNh6F61g3gkA== + dependencies: + array-find-index "^1.0.2" + create-react-class "^15.6.2" + debounce "^1.2.0" + deep-assign "^3.0.0" + fbjs "^1.0.0" + hyphenate-style-name "^1.0.2" + inline-style-prefixer "^5.0.3" + normalize-css-color "^1.0.2" + prop-types "^15.6.0" + react-timer-mixin "^0.13.4" + + react-native@~0.61.4: + version "0.61.5" + resolved "https://registry.yarnpkg.com/react-native/-/react-native-0.61.5.tgz#6e21acb56cbd75a3baeb1f70201a66f42600bba8" + integrity sha512-MXqE3NoGO0T3dUKIKkIppijBhRRMpfN6ANbhMXHDuyfA+fSilRWgCwYgR/YNCC7ntECoJYikKaNTUBB0DeQy6Q== + dependencies: + "@babel/runtime" "^7.0.0" + "@react-native-community/cli" "^3.0.0" + "@react-native-community/cli-platform-android" "^3.0.0" + "@react-native-community/cli-platform-ios" "^3.0.0" + abort-controller "^3.0.0" + art "^0.10.0" + base64-js "^1.1.2" + connect "^3.6.5" + create-react-class "^15.6.3" + escape-string-regexp "^1.0.5" + event-target-shim "^5.0.1" + fbjs "^1.0.0" + fbjs-scripts "^1.1.0" + hermes-engine "^0.2.1" + invariant "^2.2.4" + jsc-android "^245459.0.0" + metro-babel-register "^0.56.0" + metro-react-native-babel-transformer "^0.56.0" + metro-source-map "^0.56.0" + nullthrows "^1.1.0" + pretty-format "^24.7.0" + promise "^7.1.1" + prop-types "^15.7.2" + react-devtools-core "^3.6.3" + react-refresh "^0.4.0" + regenerator-runtime "^0.13.2" + scheduler "0.15.0" + stacktrace-parser "^0.1.3" + whatwg-fetch "^3.0.0" + + react-navigation-stack@^2.0.13: + version "2.3.11" + resolved "https://registry.yarnpkg.com/react-navigation-stack/-/react-navigation-stack-2.3.11.tgz#3260c311c7d18303b0ed179f8477697321a162e9" + integrity sha512-KdEzb/gga5mRd4i1hcUwxSEr+KmSWRyseucryfYyc/5gm7OQ+8fJfhasA37I0IQj5KF7rDZy6Zb/x88V0LTO/A== + dependencies: + color "^3.1.2" + react-native-iphone-x-helper "^1.2.1" + + react-navigation-tabs@^2.7.0: + version "2.8.11" + resolved "https://registry.yarnpkg.com/react-navigation-tabs/-/react-navigation-tabs-2.8.11.tgz#473faa7dfb8ab324b558b35064b728087ac3a52a" + integrity sha512-jVZlf5TMegcxV3cciAlF8kdvsLcnOwIICtfaNP7ieqqRBSHEIl3KMsqEpasOSmHVtJSQIINTQIwKC8Uj+ZW3uQ== + dependencies: + hoist-non-react-statics "^3.3.2" + react-lifecycles-compat "^3.0.4" + react-native-safe-area-view "^0.14.8" + react-native-tab-view "^2.11.0" + + react-navigation@^4.0.10: + version "4.3.7" + resolved "https://registry.yarnpkg.com/react-navigation/-/react-navigation-4.3.7.tgz#33809fdfd7922c503d454c6367fae45dd67cb08a" + integrity sha512-mFElgGxjAoCPGjOedEOYyORN0IdubyCSTWf5/mcWWHiigakXSs0XRuC8pe5d+d0sqES10Gy5BYRb5KrdVJg2Lw== + dependencies: + "@react-navigation/core" "^3.7.5" + "@react-navigation/native" "^3.7.11" + + react-redux@^7.2.0: + version "7.2.0" + resolved "https://registry.yarnpkg.com/react-redux/-/react-redux-7.2.0.tgz#f970f62192b3981642fec46fd0db18a074fe879d" + integrity sha512-EvCAZYGfOLqwV7gh849xy9/pt55rJXPwmYvI4lilPM5rUT/1NxuuN59ipdBksRVSvz0KInbPnp4IfoXJXCqiDA== + dependencies: + "@babel/runtime" "^7.5.5" + hoist-non-react-statics "^3.3.0" + loose-envify "^1.4.0" + prop-types "^15.7.2" + react-is "^16.9.0" + + react-refresh@^0.4.0: + version "0.4.2" + resolved "https://registry.yarnpkg.com/react-refresh/-/react-refresh-0.4.2.tgz#54a277a6caaac2803d88f1d6f13c1dcfbd81e334" + integrity sha512-kv5QlFFSZWo7OlJFNYbxRtY66JImuP2LcrFgyJfQaf85gSP+byzG21UbDQEYjU7f//ny8rwiEkO6py2Y+fEgAQ== + + react-test-renderer@16.12.0: + version "16.12.0" + resolved "https://registry.yarnpkg.com/react-test-renderer/-/react-test-renderer-16.12.0.tgz#11417ffda579306d4e841a794d32140f3da1b43f" + integrity sha512-Vj/teSqt2oayaWxkbhQ6gKis+t5JrknXfPVo+aIJ8QwYAqMPH77uptOdrlphyxl8eQI/rtkOYg86i/UWkpFu0w== + dependencies: + object-assign "^4.1.1" + prop-types "^15.6.2" + react-is "^16.8.6" + scheduler "^0.18.0" + + react-timer-mixin@^0.13.4: + version "0.13.4" + resolved "https://registry.yarnpkg.com/react-timer-mixin/-/react-timer-mixin-0.13.4.tgz#75a00c3c94c13abe29b43d63b4c65a88fc8264d3" + integrity sha512-4+ow23tp/Tv7hBM5Az5/Be/eKKF7DIvJ09voz5LyHGQaqqz9WV8YMs31eFvcYQs7d451LSg7kDJV70XYN/Ug/Q== + + react@~16.9.0: + version "16.9.0" + resolved "https://registry.yarnpkg.com/react/-/react-16.9.0.tgz#40ba2f9af13bc1a38d75dbf2f4359a5185c4f7aa" + integrity sha512-+7LQnFBwkiw+BobzOF6N//BdoNw0ouwmSJTEm9cglOOmsg/TMiFHZLe2sEoN5M7LgJTj9oHH0gxklfnQe66S1w== + dependencies: + loose-envify "^1.1.0" + object-assign "^4.1.1" + prop-types "^15.6.2" + + read-pkg-up@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-2.0.0.tgz#6b72a8048984e0c41e79510fd5e9fa99b3b549be" + integrity sha1-a3KoBImE4MQeeVEP1en6mbO1Sb4= + dependencies: + find-up "^2.0.0" + read-pkg "^2.0.0" + + read-pkg-up@^7.0.1: + version "7.0.1" + resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-7.0.1.tgz#f3a6135758459733ae2b95638056e1854e7ef507" + integrity sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg== + dependencies: + find-up "^4.1.0" + read-pkg "^5.2.0" + type-fest "^0.8.1" + + read-pkg@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-2.0.0.tgz#8ef1c0623c6a6db0dc6713c4bfac46332b2368f8" + integrity sha1-jvHAYjxqbbDcZxPEv6xGMysjaPg= + dependencies: + load-json-file "^2.0.0" + normalize-package-data "^2.3.2" + path-type "^2.0.0" + + read-pkg@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-3.0.0.tgz#9cbc686978fee65d16c00e2b19c237fcf6e38389" + integrity sha1-nLxoaXj+5l0WwA4rGcI3/Pbjg4k= + dependencies: + load-json-file "^4.0.0" + normalize-package-data "^2.3.2" + path-type "^3.0.0" + + read-pkg@^5.2.0: + version "5.2.0" + resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-5.2.0.tgz#7bf295438ca5a33e56cd30e053b34ee7250c93cc" + integrity sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg== + dependencies: + "@types/normalize-package-data" "^2.4.0" + normalize-package-data "^2.5.0" + parse-json "^5.0.0" + type-fest "^0.6.0" + + readable-stream@^2.0.1, readable-stream@^2.0.6, readable-stream@^2.2.2, readable-stream@^2.3.5, readable-stream@~2.3.6: + version "2.3.7" + resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.7.tgz#1eca1cf711aef814c04f62252a36a62f6cb23b57" + integrity sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw== + dependencies: + core-util-is "~1.0.0" + inherits "~2.0.3" + isarray "~1.0.0" + process-nextick-args "~2.0.0" + safe-buffer "~5.1.1" + string_decoder "~1.1.1" + util-deprecate "~1.0.1" + + readdirp@~3.3.0: + version "3.3.0" + resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.3.0.tgz#984458d13a1e42e2e9f5841b129e162f369aff17" + integrity sha512-zz0pAkSPOXXm1viEwygWIPSPkcBYjW1xU5j/JBh5t9bGCJwa6f9+BJa6VaB2g+b55yVrmXzqkyLf4xaWYM0IkQ== + dependencies: + picomatch "^2.0.7" + + realpath-native@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/realpath-native/-/realpath-native-2.0.0.tgz#7377ac429b6e1fd599dc38d08ed942d0d7beb866" + integrity sha512-v1SEYUOXXdbBZK8ZuNgO4TBjamPsiSgcFr0aP+tEKpQZK8vooEUqV6nm6Cv502mX4NF2EfsnVqtNAHG+/6Ur1Q== + + recompose@^0.30.0: + version "0.30.0" + resolved "https://registry.yarnpkg.com/recompose/-/recompose-0.30.0.tgz#82773641b3927e8c7d24a0d87d65aeeba18aabd0" + integrity sha512-ZTrzzUDa9AqUIhRk4KmVFihH0rapdCSMFXjhHbNrjAWxBuUD/guYlyysMnuHjlZC/KRiOKRtB4jf96yYSkKE8w== + dependencies: + "@babel/runtime" "^7.0.0" + change-emitter "^0.1.2" + fbjs "^0.8.1" + hoist-non-react-statics "^2.3.1" + react-lifecycles-compat "^3.0.2" + symbol-observable "^1.0.4" + + redux-devtools-instrument@^1.9.0: + version "1.9.6" + resolved "https://registry.yarnpkg.com/redux-devtools-instrument/-/redux-devtools-instrument-1.9.6.tgz#6b412595f74b9d48cfd4ecc13e585b1588ed6e7e" + integrity sha512-MwvY4cLEB2tIfWWBzrUR02UM9qRG2i7daNzywRvabOSVdvAY7s9BxSwMmVRH1Y/7QWjplNtOwgT0apKhHg2Qew== + dependencies: + lodash "^4.2.0" + symbol-observable "^1.0.2" + + redux-devtools@^3.5.0: + version "3.5.0" + resolved "https://registry.yarnpkg.com/redux-devtools/-/redux-devtools-3.5.0.tgz#d69ab76d4f0f8abdf6d24bcf5954d7a1aa2b6827" + integrity sha512-pGU8TZNvWxPaCCE432AGm6H6alQbAz80gQM5CzM3SjX9/oSNu/HPF17xFdPQJOXasqyih1Gv167kZDTRe7r0iQ== + dependencies: + lodash "^4.2.0" + prop-types "^15.5.7" + redux-devtools-instrument "^1.9.0" + + redux-persist@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/redux-persist/-/redux-persist-6.0.0.tgz#b4d2972f9859597c130d40d4b146fecdab51b3a8" + integrity sha512-71LLMbUq2r02ng2We9S215LtPu3fY0KgaGE0k8WRgl6RkqxtGfl7HUozz1Dftwsb0D/5mZ8dwAaPbtnzfvbEwQ== + + redux@^4.0.5: + version "4.0.5" + resolved "https://registry.yarnpkg.com/redux/-/redux-4.0.5.tgz#4db5de5816e17891de8a80c424232d06f051d93f" + integrity sha512-VSz1uMAH24DM6MF72vcojpYPtrTUu3ByVWfPL1nPfVRb5mZVTve5GnNCUV53QM/BZ66xfWrm0CTWoM+Xlz8V1w== + dependencies: + loose-envify "^1.4.0" + symbol-observable "^1.2.0" + + regenerate-unicode-properties@^8.2.0: + version "8.2.0" + resolved "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-8.2.0.tgz#e5de7111d655e7ba60c057dbe9ff37c87e65cdec" + integrity sha512-F9DjY1vKLo/tPePDycuH3dn9H1OTPIkVD9Kz4LODu+F2C75mgjAJ7x/gwy6ZcSNRAAkhNlJSOHRe8k3p+K9WhA== + dependencies: + regenerate "^1.4.0" + + regenerate@^1.4.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.0.tgz#4a856ec4b56e4077c557589cae85e7a4c8869a11" + integrity sha512-1G6jJVDWrt0rK99kBjvEtziZNCICAuvIPkSiUFIQxVP06RCVpq3dmDo2oi6ABpYaDYaTRr67BEhL8r1wgEZZKg== + + regenerator-runtime@^0.11.0: + version "0.11.1" + resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz#be05ad7f9bf7d22e056f9726cee5017fbf19e2e9" + integrity sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg== + + regenerator-runtime@^0.13.2, regenerator-runtime@^0.13.4: + version "0.13.5" + resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.5.tgz#d878a1d094b4306d10b9096484b33ebd55e26697" + integrity sha512-ZS5w8CpKFinUzOwW3c83oPeVXoNsrLsaCoLtJvAClH135j/R77RuymhiSErhm2lKcwSCIpmvIWSbDkIfAqKQlA== + + regenerator-transform@^0.12.3: + version "0.12.4" + resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.12.4.tgz#aa9b6c59f4b97be080e972506c560b3bccbfcff0" + integrity sha512-p2I0fY+TbSLD2/VFTFb/ypEHxs3e3AjU0DzttdPqk2bSmDhfSh5E54b86Yc6XhUa5KykK1tgbvZ4Nr82oCJWkQ== + dependencies: + private "^0.1.6" + + regenerator-transform@^0.14.2: + version "0.14.4" + resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.14.4.tgz#5266857896518d1616a78a0479337a30ea974cc7" + integrity sha512-EaJaKPBI9GvKpvUz2mz4fhx7WPgvwRLY9v3hlNHWmAuJHI13T4nwKnNvm5RWJzEdnI5g5UwtOww+S8IdoUC2bw== + dependencies: + "@babel/runtime" "^7.8.4" + private "^0.1.8" + + regex-not@^1.0.0, regex-not@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/regex-not/-/regex-not-1.0.2.tgz#1f4ece27e00b0b65e0247a6810e6a85d83a5752c" + integrity sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A== + dependencies: + extend-shallow "^3.0.2" + safe-regex "^1.1.0" + + regexp.prototype.flags@^1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.3.0.tgz#7aba89b3c13a64509dabcf3ca8d9fbb9bdf5cb75" + integrity sha512-2+Q0C5g951OlYlJz6yu5/M33IcsESLlLfsyIaLJaG4FA2r4yP8MvVMJUUP/fVBkSpbbbZlS5gynbEWLipiiXiQ== + dependencies: + define-properties "^1.1.3" + es-abstract "^1.17.0-next.1" + + regexpp@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-2.0.1.tgz#8d19d31cf632482b589049f8281f93dbcba4d07f" + integrity sha512-lv0M6+TkDVniA3aD1Eg0DVpfU/booSu7Eev3TDO/mZKHBfVjgCGTV4t4buppESEYDtkArYFOxTJWv6S5C+iaNw== + + regexpp@^3.0.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-3.1.0.tgz#206d0ad0a5648cffbdb8ae46438f3dc51c9f78e2" + integrity sha512-ZOIzd8yVsQQA7j8GCSlPGXwg5PfmA1mrq0JP4nGhh54LaKN3xdai/vHUDu74pKwV8OxseMS65u2NImosQcSD0Q== + + regexpu-core@^4.1.3, regexpu-core@^4.7.0: + version "4.7.0" + resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-4.7.0.tgz#fcbf458c50431b0bb7b45d6967b8192d91f3d938" + integrity sha512-TQ4KXRnIn6tz6tjnrXEkD/sshygKH/j5KzK86X8MkeHyZ8qst/LZ89j3X4/8HEIfHANTFIP/AbXakeRhWIl5YQ== + dependencies: + regenerate "^1.4.0" + regenerate-unicode-properties "^8.2.0" + regjsgen "^0.5.1" + regjsparser "^0.6.4" + unicode-match-property-ecmascript "^1.0.4" + unicode-match-property-value-ecmascript "^1.2.0" + + registry-auth-token@^4.0.0: + version "4.1.1" + resolved "https://registry.yarnpkg.com/registry-auth-token/-/registry-auth-token-4.1.1.tgz#40a33be1e82539460f94328b0f7f0f84c16d9479" + integrity sha512-9bKS7nTl9+/A1s7tnPeGrUpRcVY+LUh7bfFgzpndALdPfXQBfQV77rQVtqgUV3ti4vc/Ik81Ex8UJDWDQ12zQA== + dependencies: + rc "^1.2.8" + + registry-url@^5.0.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/registry-url/-/registry-url-5.1.0.tgz#e98334b50d5434b81136b44ec638d9c2009c5009" + integrity sha512-8acYXXTI0AkQv6RAOjE3vOaIXZkT9wo4LOFbBKYQEEnnMNBpKqdUrI6S4NT0KPIo/WVvJ5tE/X5LF/TQUf0ekw== + dependencies: + rc "^1.2.8" + + regjsgen@^0.5.1: + version "0.5.1" + resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.5.1.tgz#48f0bf1a5ea205196929c0d9798b42d1ed98443c" + integrity sha512-5qxzGZjDs9w4tzT3TPhCJqWdCc3RLYwy9J2NB0nm5Lz+S273lvWcpjaTGHsT1dc6Hhfq41uSEOw8wBmxrKOuyg== + + regjsparser@^0.6.4: + version "0.6.4" + resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.6.4.tgz#a769f8684308401a66e9b529d2436ff4d0666272" + integrity sha512-64O87/dPDgfk8/RQqC4gkZoGyyWFIEUTTh80CU6CWuK5vkCGyekIx+oKcEIYtP/RAxSQltCZHCNu/mdd7fqlJw== + dependencies: + jsesc "~0.5.0" + + remove-trailing-separator@^1.0.1: + version "1.1.0" + resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" + integrity sha1-wkvOKig62tW8P1jg1IJJuSN52O8= + + repeat-element@^1.1.2: + version "1.1.3" + resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.3.tgz#782e0d825c0c5a3bb39731f84efee6b742e6b1ce" + integrity sha512-ahGq0ZnV5m5XtZLMb+vP76kcAM5nkLqk0lpqAuojSKGgQtn4eRi4ZZGm2olo2zKFH+sMsWaqOCW1dqAnOru72g== + + repeat-string@^1.6.1: + version "1.6.1" + resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" + integrity sha1-jcrkcOHIirwtYA//Sndihtp15jc= + + request-promise-core@1.1.3: + version "1.1.3" + resolved "https://registry.yarnpkg.com/request-promise-core/-/request-promise-core-1.1.3.tgz#e9a3c081b51380dfea677336061fea879a829ee9" + integrity sha512-QIs2+ArIGQVp5ZYbWD5ZLCY29D5CfWizP8eWnm8FoGD1TX61veauETVQbrV60662V0oFBkrDOuaBI8XgtuyYAQ== + dependencies: + lodash "^4.17.15" + + request-promise-native@^1.0.7: + version "1.0.8" + resolved "https://registry.yarnpkg.com/request-promise-native/-/request-promise-native-1.0.8.tgz#a455b960b826e44e2bf8999af64dff2bfe58cb36" + integrity sha512-dapwLGqkHtwL5AEbfenuzjTYg35Jd6KPytsC2/TLkVMz8rm+tNt72MGUWT1RP/aYawMpN6HqbNGBQaRcBtjQMQ== + dependencies: + request-promise-core "1.1.3" + stealthy-require "^1.1.1" + tough-cookie "^2.3.3" + + request@2.88.0: + version "2.88.0" + resolved "https://registry.yarnpkg.com/request/-/request-2.88.0.tgz#9c2fca4f7d35b592efe57c7f0a55e81052124fef" + integrity sha512-NAqBSrijGLZdM0WZNsInLJpkJokL72XYjUpnB0iwsRgxh7dB6COrHnTBNwN0E+lHDAJzu7kLAkDeY08z2/A0hg== + dependencies: + aws-sign2 "~0.7.0" + aws4 "^1.8.0" + caseless "~0.12.0" + combined-stream "~1.0.6" + extend "~3.0.2" + forever-agent "~0.6.1" + form-data "~2.3.2" + har-validator "~5.1.0" + http-signature "~1.2.0" + is-typedarray "~1.0.0" + isstream "~0.1.2" + json-stringify-safe "~5.0.1" + mime-types "~2.1.19" + oauth-sign "~0.9.0" + performance-now "^2.1.0" + qs "~6.5.2" + safe-buffer "^5.1.2" + tough-cookie "~2.4.3" + tunnel-agent "^0.6.0" + uuid "^3.3.2" + + request@^2.88.0: + version "2.88.2" + resolved "https://registry.yarnpkg.com/request/-/request-2.88.2.tgz#d73c918731cb5a87da047e207234146f664d12b3" + integrity sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw== + dependencies: + aws-sign2 "~0.7.0" + aws4 "^1.8.0" + caseless "~0.12.0" + combined-stream "~1.0.6" + extend "~3.0.2" + forever-agent "~0.6.1" + form-data "~2.3.2" + har-validator "~5.1.3" + http-signature "~1.2.0" + is-typedarray "~1.0.0" + isstream "~0.1.2" + json-stringify-safe "~5.0.1" + mime-types "~2.1.19" + oauth-sign "~0.9.0" + performance-now "^2.1.0" + qs "~6.5.2" + safe-buffer "^5.1.2" + tough-cookie "~2.5.0" + tunnel-agent "^0.6.0" + uuid "^3.3.2" + + require-directory@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" + integrity sha1-jGStX9MNqxyXbiNE/+f3kqam30I= + + require-main-filename@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" + integrity sha1-l/cXtp1IeE9fUmpsWqj/3aBVpNE= + + require-main-filename@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-2.0.0.tgz#d0b329ecc7cc0f61649f62215be69af54aa8989b" + integrity sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg== + + requires-port@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/requires-port/-/requires-port-1.0.0.tgz#925d2601d39ac485e091cf0da5c6e694dc3dcaff" + integrity sha1-kl0mAdOaxIXgkc8NpcbmlNw9yv8= + + reselect@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/reselect/-/reselect-4.0.0.tgz#f2529830e5d3d0e021408b246a206ef4ea4437f7" + integrity sha512-qUgANli03jjAyGlnbYVAV5vvnOmJnODyABz51RdBN7M4WaVu8mecZWgyQNkG8Yqe3KRGRt0l4K4B3XVEULC4CA== + + resolve-cwd@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/resolve-cwd/-/resolve-cwd-3.0.0.tgz#0f0075f1bb2544766cf73ba6a6e2adfebcb13f2d" + integrity sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg== + dependencies: + resolve-from "^5.0.0" + + resolve-from@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-3.0.0.tgz#b22c7af7d9d6881bc8b6e653335eebcb0a188748" + integrity sha1-six699nWiBvItuZTM17rywoYh0g= + + resolve-from@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6" + integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g== + + resolve-from@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-5.0.0.tgz#c35225843df8f776df21c57557bc087e9dfdfc69" + integrity sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw== + + resolve-pathname@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/resolve-pathname/-/resolve-pathname-3.0.0.tgz#99d02224d3cf263689becbb393bc560313025dcd" + integrity sha512-C7rARubxI8bXFNB/hqcp/4iUeIXJhJZvFPFPiSPRnhU5UPxzMFIl+2E6yY6c4k9giDJAhtV+enfA+G89N6Csng== + + resolve-url@^0.2.1: + version "0.2.1" + resolved "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a" + integrity sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo= + + resolve@1.1.7: + version "1.1.7" + resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b" + integrity sha1-IDEU2CrSxe2ejgQRs5ModeiJ6Xs= + + resolve@^1.10.0, resolve@^1.12.0, resolve@^1.13.1, resolve@^1.15.1, resolve@^1.3.2, resolve@^1.5.0, resolve@^1.8.1: + version "1.15.1" + resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.15.1.tgz#27bdcdeffeaf2d6244b95bb0f9f4b4653451f3e8" + integrity sha512-84oo6ZTtoTUpjgNEr5SJyzQhzL72gaRodsSfyxC/AXRvwu0Yse9H8eF9IpGo7b8YetZhlI6v7ZQ6bKBFV/6S7w== + dependencies: + path-parse "^1.0.6" + + responselike@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/responselike/-/responselike-1.0.2.tgz#918720ef3b631c5642be068f15ade5a46f4ba1e7" + integrity sha1-kYcg7ztjHFZCvgaPFa3lpG9Loec= + dependencies: + lowercase-keys "^1.0.0" + + restore-cursor@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf" + integrity sha1-n37ih/gv0ybU/RYpI9YhKe7g368= + dependencies: + onetime "^2.0.0" + signal-exit "^3.0.2" + + restore-cursor@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-3.1.0.tgz#39f67c54b3a7a58cea5236d95cf0034239631f7e" + integrity sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA== + dependencies: + onetime "^5.1.0" + signal-exit "^3.0.2" + + ret@~0.1.10: + version "0.1.15" + resolved "https://registry.yarnpkg.com/ret/-/ret-0.1.15.tgz#b8a4825d5bdb1fc3f6f53c2bc33f81388681c7bc" + integrity sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg== + + rimraf@2.6.3: + version "2.6.3" + resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.3.tgz#b2d104fe0d8fb27cf9e0a1cda8262dd3833c6cab" + integrity sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA== + dependencies: + glob "^7.1.3" + + rimraf@^2.5.4, rimraf@^2.6.1: + version "2.7.1" + resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.7.1.tgz#35797f13a7fdadc566142c29d4f07ccad483e3ec" + integrity sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w== + dependencies: + glob "^7.1.3" + + rimraf@^3.0.0: + version "3.0.2" + resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a" + integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA== + dependencies: + glob "^7.1.3" + + rimraf@~2.2.6: + version "2.2.8" + resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.2.8.tgz#e439be2aaee327321952730f99a8929e4fc50582" + integrity sha1-5Dm+Kq7jJzIZUnMPmaiSnk/FBYI= + + rsvp@^4.8.4: + version "4.8.5" + resolved "https://registry.yarnpkg.com/rsvp/-/rsvp-4.8.5.tgz#c8f155311d167f68f21e168df71ec5b083113734" + integrity sha512-nfMOlASu9OnRJo1mbEk2cz0D56a1MBNrJ7orjRZQG10XDyuvwksKbuXNp6qa+kbn839HwjwhBzhFmdsaEAfauA== + + run-async@^2.2.0, run-async@^2.4.0: + version "2.4.0" + resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.4.0.tgz#e59054a5b86876cfae07f431d18cbaddc594f1e8" + integrity sha512-xJTbh/d7Lm7SBhc1tNvTpeCHaEzoyxPrqNlvSdMfBTYwaY++UJFyXUOxAtsRUXjlqOfj8luNaR9vjCh4KeV+pg== + dependencies: + is-promise "^2.1.0" + + run-node@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/run-node/-/run-node-1.0.0.tgz#46b50b946a2aa2d4947ae1d886e9856fd9cabe5e" + integrity sha512-kc120TBlQ3mih1LSzdAJXo4xn/GWS2ec0l3S+syHDXP9uRr0JAT8Qd3mdMuyjqCzeZktgP3try92cEgf9Nks8A== + + rx-lite-aggregates@^4.0.8: + version "4.0.8" + resolved "https://registry.yarnpkg.com/rx-lite-aggregates/-/rx-lite-aggregates-4.0.8.tgz#753b87a89a11c95467c4ac1626c4efc4e05c67be" + integrity sha1-dTuHqJoRyVRnxKwWJsTvxOBcZ74= + dependencies: + rx-lite "*" + + rx-lite@*, rx-lite@^4.0.8: + version "4.0.8" + resolved "https://registry.yarnpkg.com/rx-lite/-/rx-lite-4.0.8.tgz#0b1e11af8bc44836f04a6407e92da42467b79444" + integrity sha1-Cx4Rr4vESDbwSmQH6S2kJGe3lEQ= + + rxjs@^5.4.3: + version "5.5.12" + resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-5.5.12.tgz#6fa61b8a77c3d793dbaf270bee2f43f652d741cc" + integrity sha512-xx2itnL5sBbqeeiVgNPVuQQ1nC8Jp2WfNJhXWHmElW9YmrpS9UVnNzhP3EH3HFqexO5Tlp8GhYY+WEcqcVMvGw== + dependencies: + symbol-observable "1.0.1" + + rxjs@^6.3.3, rxjs@^6.5.3: + version "6.5.5" + resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-6.5.5.tgz#c5c884e3094c8cfee31bf27eb87e54ccfc87f9ec" + integrity sha512-WfQI+1gohdf0Dai/Bbmk5L5ItH5tYqm3ki2c5GdWhKjalzjg93N3avFjVStyZZz+A2Em+ZxKH5bNghw9UeylGQ== + dependencies: + tslib "^1.9.0" + + safe-buffer@5.1.2, safe-buffer@~5.1.0, safe-buffer@~5.1.1: + version "5.1.2" + resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" + integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== + + safe-buffer@5.2.0, safe-buffer@^5.0.1, safe-buffer@^5.1.2: + version "5.2.0" + resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.0.tgz#b74daec49b1148f88c64b68d49b1e815c1f2f519" + integrity sha512-fZEwUGbVl7kouZs1jCdMLdt95hdIv0ZeHg6L7qPeciMZhZ+/gdesW4wgTARkrFWEpspjEATAzUGPG8N2jJiwbg== + + safe-regex@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/safe-regex/-/safe-regex-1.1.0.tgz#40a3669f3b077d1e943d44629e157dd48023bf2e" + integrity sha1-QKNmnzsHfR6UPURinhV91IAjvy4= + dependencies: + ret "~0.1.10" + + "safer-buffer@>= 2.1.2 < 3", safer-buffer@^2.0.2, safer-buffer@^2.1.0, safer-buffer@~2.1.0: + version "2.1.2" + resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" + integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== + + sane@^4.0.3: + version "4.1.0" + resolved "https://registry.yarnpkg.com/sane/-/sane-4.1.0.tgz#ed881fd922733a6c461bc189dc2b6c006f3ffded" + integrity sha512-hhbzAgTIX8O7SHfp2c8/kREfEn4qO/9q8C9beyY6+tvZ87EpoZ3i1RIEvp27YBswnNbY9mWd6paKVmKbAgLfZA== + dependencies: + "@cnakazawa/watch" "^1.0.3" + anymatch "^2.0.0" + capture-exit "^2.0.0" + exec-sh "^0.3.2" + execa "^1.0.0" + fb-watchman "^2.0.0" + micromatch "^3.1.4" + minimist "^1.1.1" + walker "~1.0.5" + + sax@^1.2.1, sax@^1.2.4: + version "1.2.4" + resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" + integrity sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw== + + saxes@^3.1.9: + version "3.1.11" + resolved "https://registry.yarnpkg.com/saxes/-/saxes-3.1.11.tgz#d59d1fd332ec92ad98a2e0b2ee644702384b1c5b" + integrity sha512-Ydydq3zC+WYDJK1+gRxRapLIED9PWeSuuS41wqyoRmzvhhh9nc+QQrVMKJYzJFULazeGhzSV0QleN2wD3boh2g== + dependencies: + xmlchars "^2.1.1" + + scheduler@0.15.0, scheduler@^0.15.0: + version "0.15.0" + resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.15.0.tgz#6bfcf80ff850b280fed4aeecc6513bc0b4f17f8e" + integrity sha512-xAefmSfN6jqAa7Kuq7LIJY0bwAPG3xlCj0HMEBQk1lxYiDKZscY2xJ5U/61ZTrYbmNQbXa+gc7czPkVo11tnCg== + dependencies: + loose-envify "^1.1.0" + object-assign "^4.1.1" + + scheduler@^0.18.0: + version "0.18.0" + resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.18.0.tgz#5901ad6659bc1d8f3fdaf36eb7a67b0d6746b1c4" + integrity sha512-agTSHR1Nbfi6ulI0kYNK0203joW2Y5W4po4l+v03tOoiJKpTBbxpNhWDvqc/4IcOw+KLmSiQLTasZ4cab2/UWQ== + dependencies: + loose-envify "^1.1.0" + object-assign "^4.1.1" + + semver-compare@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/semver-compare/-/semver-compare-1.0.0.tgz#0dee216a1c941ab37e9efb1788f6afc5ff5537fc" + integrity sha1-De4hahyUGrN+nvsXiPavxf9VN/w= + + semver-diff@^3.1.1: + version "3.1.1" + resolved "https://registry.yarnpkg.com/semver-diff/-/semver-diff-3.1.1.tgz#05f77ce59f325e00e2706afd67bb506ddb1ca32b" + integrity sha512-GX0Ix/CJcHyB8c4ykpHGIAvLyOwOobtM/8d+TQkAd81/bEjgPHrfba41Vpesr7jX/t8Uh+R3EX9eAS5be+jQYg== + dependencies: + semver "^6.3.0" + + "semver@2 || 3 || 4 || 5", semver@^5.1.0, semver@^5.3.0, semver@^5.4.1, semver@^5.5.0, semver@^5.5.1, semver@^5.6.0, semver@^5.7.1: + version "5.7.1" + resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7" + integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ== + + semver@^6.0.0, semver@^6.1.2, semver@^6.2.0, semver@^6.3.0: + version "6.3.0" + resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" + integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== + + send@0.17.1: + version "0.17.1" + resolved "https://registry.yarnpkg.com/send/-/send-0.17.1.tgz#c1d8b059f7900f7466dd4938bdc44e11ddb376c8" + integrity sha512-BsVKsiGcQMFwT8UxypobUKyv7irCNRHk1T0G680vk88yf6LBByGcZJOTJCrTP2xVN6yI+XjPJcNuE3V4fT9sAg== + dependencies: + debug "2.6.9" + depd "~1.1.2" + destroy "~1.0.4" + encodeurl "~1.0.2" + escape-html "~1.0.3" + etag "~1.8.1" + fresh "0.5.2" + http-errors "~1.7.2" + mime "1.6.0" + ms "2.1.1" + on-finished "~2.3.0" + range-parser "~1.2.1" + statuses "~1.5.0" + + serialize-error@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/serialize-error/-/serialize-error-2.1.0.tgz#50b679d5635cdf84667bdc8e59af4e5b81d5f60a" + integrity sha1-ULZ51WNc34Rme9yOWa9OW4HV9go= + + serve-static@1.14.1, serve-static@^1.13.1: + version "1.14.1" + resolved "https://registry.yarnpkg.com/serve-static/-/serve-static-1.14.1.tgz#666e636dc4f010f7ef29970a88a674320898b2f9" + integrity sha512-JMrvUwE54emCYWlTI+hGrGv5I8dEwmco/00EvkzIIsR7MqrHonbD9pO2MOfFnpFntl7ecpZs+3mW+XbQZu9QCg== + dependencies: + encodeurl "~1.0.2" + escape-html "~1.0.3" + parseurl "~1.3.3" + send "0.17.1" + + set-blocking@^2.0.0, set-blocking@~2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" + integrity sha1-BF+XgtARrppoA93TgrJDkrPYkPc= + + set-value@^2.0.0, set-value@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/set-value/-/set-value-2.0.1.tgz#a18d40530e6f07de4228c7defe4227af8cad005b" + integrity sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw== + dependencies: + extend-shallow "^2.0.1" + is-extendable "^0.1.1" + is-plain-object "^2.0.3" + split-string "^3.0.1" + + setimmediate@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285" + integrity sha1-KQy7Iy4waULX1+qbg3Mqt4VvgoU= + + setprototypeof@1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.1.1.tgz#7e95acb24aa92f5885e0abef5ba131330d4ae683" + integrity sha512-JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw== + + shaka-player@^2.4.4: + version "2.5.10" + resolved "https://registry.yarnpkg.com/shaka-player/-/shaka-player-2.5.10.tgz#6f4e72e2433002d11824a223b02edd5004e30e2b" + integrity sha512-kS9TQL6bWODo4XNnozERZWsEiWlLZ6huspPx4ZjmMjeOBL9gwqlULLfLyO+5gA3CYV/dk9LaAi1WAEaLWckGpA== + dependencies: + eme-encryption-scheme-polyfill "^2.0.1" + + shebang-command@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" + integrity sha1-RKrGW2lbAzmJaMOfNj/uXer98eo= + dependencies: + shebang-regex "^1.0.0" + + shebang-command@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" + integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA== + dependencies: + shebang-regex "^3.0.0" + + shebang-regex@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" + integrity sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM= + + shebang-regex@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" + integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== + + shell-quote@1.6.1: + version "1.6.1" + resolved "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.6.1.tgz#f4781949cce402697127430ea3b3c5476f481767" + integrity sha1-9HgZSczkAmlxJ0MOo7PFR29IF2c= + dependencies: + array-filter "~0.0.0" + array-map "~0.0.0" + array-reduce "~0.0.0" + jsonify "~0.0.0" + + shell-quote@^1.6.1: + version "1.7.2" + resolved "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.7.2.tgz#67a7d02c76c9da24f99d20808fcaded0e0e04be2" + integrity sha512-mRz/m/JVscCrkMyPqHc/bczi3OQHkLTqXHEFu0zDhK/qfv3UcOA4SVmRCLmos4bhjr9ekVQubj/R7waKapmiQg== + + shellwords@^0.1.1: + version "0.1.1" + resolved "https://registry.yarnpkg.com/shellwords/-/shellwords-0.1.1.tgz#d6b9181c1a48d397324c84871efbcfc73fc0654b" + integrity sha512-vFwSUfQvqybiICwZY5+DAWIPLKsWO31Q91JSKl3UYv+K5c2QRPzn0qzec6QPu1Qc9eHYItiP3NdJqNVqetYAww== + + side-channel@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/side-channel/-/side-channel-1.0.2.tgz#df5d1abadb4e4bf4af1cd8852bf132d2f7876947" + integrity sha512-7rL9YlPHg7Ancea1S96Pa8/QWb4BtXL/TZvS6B8XFetGBeuhAsfmUspK6DokBeZ64+Kj9TCNRD/30pVz1BvQNA== + dependencies: + es-abstract "^1.17.0-next.1" + object-inspect "^1.7.0" + + signal-exit@^3.0.0, signal-exit@^3.0.2: + version "3.0.3" + resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.3.tgz#a1410c2edd8f077b08b4e253c8eacfcaf057461c" + integrity sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA== + + simple-concat@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/simple-concat/-/simple-concat-1.0.0.tgz#7344cbb8b6e26fb27d66b2fc86f9f6d5997521c6" + integrity sha1-c0TLuLbib7J9ZrL8hvn21Zl1IcY= + + simple-get@^3.0.3: + version "3.1.0" + resolved "https://registry.yarnpkg.com/simple-get/-/simple-get-3.1.0.tgz#b45be062435e50d159540b576202ceec40b9c6b3" + integrity sha512-bCR6cP+aTdScaQCnQKbPKtJOKDp/hj9EDLJo3Nw4y1QksqaovlW/bnptB6/c1e+qmNIDHRK+oXFDdEqBT8WzUA== + dependencies: + decompress-response "^4.2.0" + once "^1.3.1" + simple-concat "^1.0.0" + + simple-plist@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/simple-plist/-/simple-plist-1.1.0.tgz#8354ab63eb3922a054c78ce96c209c532e907a23" + integrity sha512-2i5Tc0BYAqppM7jVzmNrI+aEUntPolIq4fDgji6WuNNn1D/qYdn2KwoLhZdzQkE04lu9L5tUoeJsjuJAvd+lFg== + dependencies: + bplist-creator "0.0.8" + bplist-parser "0.2.0" + plist "^3.0.1" + + simple-swizzle@^0.2.2: + version "0.2.2" + resolved "https://registry.yarnpkg.com/simple-swizzle/-/simple-swizzle-0.2.2.tgz#a4da6b635ffcccca33f70d17cb92592de95e557a" + integrity sha1-pNprY1/8zMoz9w0Xy5JZLeleVXo= + dependencies: + is-arrayish "^0.3.1" + + sisteransi@^1.0.4: + version "1.0.5" + resolved "https://registry.yarnpkg.com/sisteransi/-/sisteransi-1.0.5.tgz#134d681297756437cc05ca01370d3a7a571075ed" + integrity sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg== + + slash@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/slash/-/slash-2.0.0.tgz#de552851a1759df3a8f206535442f5ec4ddeab44" + integrity sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A== + + slash@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634" + integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q== + + slice-ansi@0.0.4: + version "0.0.4" + resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-0.0.4.tgz#edbf8903f66f7ce2f8eafd6ceed65e264c831b35" + integrity sha1-7b+JA/ZvfOL46v1s7tZeJkyDGzU= + + slice-ansi@^2.0.0, slice-ansi@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-2.1.0.tgz#cacd7693461a637a5788d92a7dd4fba068e81636" + integrity sha512-Qu+VC3EwYLldKa1fCxuuvULvSJOKEgk9pi8dZeCVK7TqBfUNTH4sFkk4joj8afVSfAYgJoSOetjx9QWOJ5mYoQ== + dependencies: + ansi-styles "^3.2.0" + astral-regex "^1.0.0" + is-fullwidth-code-point "^2.0.0" + + slide@^1.1.5: + version "1.1.6" + resolved "https://registry.yarnpkg.com/slide/-/slide-1.1.6.tgz#56eb027d65b4d2dce6cb2e2d32c4d4afc9e1d707" + integrity sha1-VusCfWW00tzmyy4tMsTUr8nh1wc= + + snapdragon-node@^2.0.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/snapdragon-node/-/snapdragon-node-2.1.1.tgz#6c175f86ff14bdb0724563e8f3c1b021a286853b" + integrity sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw== + dependencies: + define-property "^1.0.0" + isobject "^3.0.0" + snapdragon-util "^3.0.1" + + snapdragon-util@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/snapdragon-util/-/snapdragon-util-3.0.1.tgz#f956479486f2acd79700693f6f7b805e45ab56e2" + integrity sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ== + dependencies: + kind-of "^3.2.0" + + snapdragon@^0.8.1: + version "0.8.2" + resolved "https://registry.yarnpkg.com/snapdragon/-/snapdragon-0.8.2.tgz#64922e7c565b0e14204ba1aa7d6964278d25182d" + integrity sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg== + dependencies: + base "^0.11.1" + debug "^2.2.0" + define-property "^0.2.5" + extend-shallow "^2.0.1" + map-cache "^0.2.2" + source-map "^0.5.6" + source-map-resolve "^0.5.0" + use "^3.1.0" + + source-map-resolve@^0.5.0: + version "0.5.3" + resolved "https://registry.yarnpkg.com/source-map-resolve/-/source-map-resolve-0.5.3.tgz#190866bece7553e1f8f267a2ee82c606b5509a1a" + integrity sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw== + dependencies: + atob "^2.1.2" + decode-uri-component "^0.2.0" + resolve-url "^0.2.1" + source-map-url "^0.4.0" + urix "^0.1.0" + + source-map-support@^0.5.16: + version "0.5.16" + resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.16.tgz#0ae069e7fe3ba7538c64c98515e35339eac5a042" + integrity sha512-efyLRJDr68D9hBBNIPWFjhpFzURh+KJykQwvMyW5UiZzYwoF6l4YMMDIJJEyFWxWCqfyxLzz6tSfUFR+kXXsVQ== + dependencies: + buffer-from "^1.0.0" + source-map "^0.6.0" + + source-map-support@^0.5.6: + version "0.5.17" + resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.17.tgz#29fe1b3c98b9dbd5064ada89052ee8ff070cb46c" + integrity sha512-bwdKOBZ5L0gFRh4KOxNap/J/MpvX9Yxsq9lFDx65s3o7F/NiHy7JRaGIS8MwW6tZPAq9UXE207Il0cfcb5yu/Q== + dependencies: + buffer-from "^1.0.0" + source-map "^0.6.0" + + source-map-url@^0.4.0: + version "0.4.0" + resolved "https://registry.yarnpkg.com/source-map-url/-/source-map-url-0.4.0.tgz#3e935d7ddd73631b97659956d55128e87b5084a3" + integrity sha1-PpNdfd1zYxuXZZlW1VEo6HtQhKM= + + source-map@^0.5.0, source-map@^0.5.6: + version "0.5.7" + resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" + integrity sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w= + + source-map@^0.6.0, source-map@^0.6.1, source-map@~0.6.1: + version "0.6.1" + resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" + integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== + + source-map@^0.7.3: + version "0.7.3" + resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.7.3.tgz#5302f8169031735226544092e64981f751750383" + integrity sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ== + + spdx-correct@^3.0.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.1.0.tgz#fb83e504445268f154b074e218c87c003cd31df4" + integrity sha512-lr2EZCctC2BNR7j7WzJ2FpDznxky1sjfxvvYEyzxNyb6lZXHODmEoJeFu4JupYlkfha1KZpJyoqiJ7pgA1qq8Q== + dependencies: + spdx-expression-parse "^3.0.0" + spdx-license-ids "^3.0.0" + + spdx-exceptions@^2.1.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.2.0.tgz#2ea450aee74f2a89bfb94519c07fcd6f41322977" + integrity sha512-2XQACfElKi9SlVb1CYadKDXvoajPgBVPn/gOQLrTvHdElaVhr7ZEbqJaRnJLVNeaI4cMEAgVCeBMKF6MWRDCRA== + + spdx-expression-parse@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-3.0.0.tgz#99e119b7a5da00e05491c9fa338b7904823b41d0" + integrity sha512-Yg6D3XpRD4kkOmTpdgbUiEJFKghJH03fiC1OPll5h/0sO6neh2jqRDVHOQ4o/LMea0tgCkbMgea5ip/e+MkWyg== + dependencies: + spdx-exceptions "^2.1.0" + spdx-license-ids "^3.0.0" + + spdx-license-ids@^3.0.0: + version "3.0.5" + resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.5.tgz#3694b5804567a458d3c8045842a6358632f62654" + integrity sha512-J+FWzZoynJEXGphVIS+XEh3kFSjZX/1i9gFBaWQcB+/tmpe2qUsSBABpcxqxnAxFdiUFEgAX1bjYGQvIZmoz9Q== + + split-on-first@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/split-on-first/-/split-on-first-1.1.0.tgz#f610afeee3b12bce1d0c30425e76398b78249a5f" + integrity sha512-43ZssAJaMusuKWL8sKUBQXHWOpq8d6CfN/u1p4gUzfJkM05C8rxTmYrkIPTXapZpORA6LkkzcUulJ8FqA7Uudw== + + split-string@^3.0.1, split-string@^3.0.2: + version "3.1.0" + resolved "https://registry.yarnpkg.com/split-string/-/split-string-3.1.0.tgz#7cb09dda3a86585705c64b39a6466038682e8fe2" + integrity sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw== + dependencies: + extend-shallow "^3.0.0" + + sprintf-js@~1.0.2: + version "1.0.3" + resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" + integrity sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw= + + sshpk@^1.7.0: + version "1.16.1" + resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.16.1.tgz#fb661c0bef29b39db40769ee39fa70093d6f6877" + integrity sha512-HXXqVUq7+pcKeLqqZj6mHFUMvXtOJt1uoUx09pFW6011inTMxqI8BA8PM95myrIyyKwdnzjdFjLiE6KBPVtJIg== + dependencies: + asn1 "~0.2.3" + assert-plus "^1.0.0" + bcrypt-pbkdf "^1.0.0" + dashdash "^1.12.0" + ecc-jsbn "~0.1.1" + getpass "^0.1.1" + jsbn "~0.1.0" + safer-buffer "^2.0.2" + tweetnacl "~0.14.0" + + stack-utils@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/stack-utils/-/stack-utils-1.0.2.tgz#33eba3897788558bebfc2db059dc158ec36cebb8" + integrity sha512-MTX+MeG5U994cazkjd/9KNAapsHnibjMLnfXodlkXw76JEea0UiNzrqidzo1emMwk7w5Qhc9jd4Bn9TBb1MFwA== + + stacktrace-parser@^0.1.3: + version "0.1.9" + resolved "https://registry.yarnpkg.com/stacktrace-parser/-/stacktrace-parser-0.1.9.tgz#11e6d61d42e8cfc87293143d0766408b7a87b00f" + integrity sha512-DRy03ljj0367Ud3OAJHD6eVS/+CvMK2u/djVYuU37fHYcYHoZ8tkFyhbRf7PNG1h3bWLsw+SNTSXrPFe07A7aQ== + dependencies: + type-fest "^0.7.1" + + static-extend@^0.1.1: + version "0.1.2" + resolved "https://registry.yarnpkg.com/static-extend/-/static-extend-0.1.2.tgz#60809c39cbff55337226fd5e0b520f341f1fb5c6" + integrity sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY= + dependencies: + define-property "^0.2.5" + object-copy "^0.1.0" + + "statuses@>= 1.5.0 < 2", statuses@~1.5.0: + version "1.5.0" + resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.5.0.tgz#161c7dac177659fd9811f43771fa99381478628c" + integrity sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow= + + stealthy-require@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/stealthy-require/-/stealthy-require-1.1.1.tgz#35b09875b4ff49f26a777e509b3090a3226bf24b" + integrity sha1-NbCYdbT/SfJqd35QmzCQoyJr8ks= + + stream-buffers@~2.2.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/stream-buffers/-/stream-buffers-2.2.0.tgz#91d5f5130d1cef96dcfa7f726945188741d09ee4" + integrity sha1-kdX1Ew0c75bc+n9yaUUYh0HQnuQ= + + stream@0.0.2: + version "0.0.2" + resolved "https://registry.yarnpkg.com/stream/-/stream-0.0.2.tgz#7f5363f057f6592c5595f00bc80a27f5cec1f0ef" + integrity sha1-f1Nj8Ff2WSxVlfALyAon9c7B8O8= + dependencies: + emitter-component "^1.1.1" + + strict-uri-encode@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/strict-uri-encode/-/strict-uri-encode-2.0.0.tgz#b9c7330c7042862f6b142dc274bbcc5866ce3546" + integrity sha1-ucczDHBChi9rFC3CdLvMWGbONUY= + + string-argv@0.3.1: + version "0.3.1" + resolved "https://registry.yarnpkg.com/string-argv/-/string-argv-0.3.1.tgz#95e2fbec0427ae19184935f816d74aaa4c5c19da" + integrity sha512-a1uQGz7IyVy9YwhqjZIZu1c8JO8dNIe20xBmSS6qu9kv++k3JGzCVmprbNN5Kn+BgzD5E7YYwg1CcjuJMRNsvg== + + string-length@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/string-length/-/string-length-3.1.0.tgz#107ef8c23456e187a8abd4a61162ff4ac6e25837" + integrity sha512-Ttp5YvkGm5v9Ijagtaz1BnN+k9ObpvS0eIBblPMp2YWL8FBmi9qblQ9fexc2k/CXFgrTIteU3jAw3payCnwSTA== + dependencies: + astral-regex "^1.0.0" + strip-ansi "^5.2.0" + + string-width@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" + integrity sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M= + dependencies: + code-point-at "^1.0.0" + is-fullwidth-code-point "^1.0.0" + strip-ansi "^3.0.0" + + "string-width@^1.0.2 || 2", string-width@^2.0.0, string-width@^2.1.0, string-width@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" + integrity sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw== + dependencies: + is-fullwidth-code-point "^2.0.0" + strip-ansi "^4.0.0" + + string-width@^3.0.0, string-width@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/string-width/-/string-width-3.1.0.tgz#22767be21b62af1081574306f69ac51b62203961" + integrity sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w== + dependencies: + emoji-regex "^7.0.1" + is-fullwidth-code-point "^2.0.0" + strip-ansi "^5.1.0" + + string-width@^4.0.0, string-width@^4.1.0, string-width@^4.2.0: + version "4.2.0" + resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.0.tgz#952182c46cc7b2c313d1596e623992bd163b72b5" + integrity sha512-zUz5JD+tgqtuDjMhwIg5uFVV3dtqZ9yQJlZVfq4I01/K5Paj5UHj7VyrQOJvzawSVlKpObApbfD0Ed6yJc+1eg== + dependencies: + emoji-regex "^8.0.0" + is-fullwidth-code-point "^3.0.0" + strip-ansi "^6.0.0" + + string.prototype.matchall@^4.0.2: + version "4.0.2" + resolved "https://registry.yarnpkg.com/string.prototype.matchall/-/string.prototype.matchall-4.0.2.tgz#48bb510326fb9fdeb6a33ceaa81a6ea04ef7648e" + integrity sha512-N/jp6O5fMf9os0JU3E72Qhf590RSRZU/ungsL/qJUYVTNv7hTG0P/dbPjxINVN9jpscu3nzYwKESU3P3RY5tOg== + dependencies: + define-properties "^1.1.3" + es-abstract "^1.17.0" + has-symbols "^1.0.1" + internal-slot "^1.0.2" + regexp.prototype.flags "^1.3.0" + side-channel "^1.0.2" + + string.prototype.padend@^3.0.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/string.prototype.padend/-/string.prototype.padend-3.1.0.tgz#dc08f57a8010dc5c153550318f67e13adbb72ac3" + integrity sha512-3aIv8Ffdp8EZj8iLwREGpQaUZiPyrWrpzMBHvkiSW/bK/EGve9np07Vwy7IJ5waydpGXzQZu/F8Oze2/IWkBaA== + dependencies: + define-properties "^1.1.3" + es-abstract "^1.17.0-next.1" + + string.prototype.trimend@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.0.tgz#ee497fd29768646d84be2c9b819e292439614373" + integrity sha512-EEJnGqa/xNfIg05SxiPSqRS7S9qwDhYts1TSLR1BQfYUfPe1stofgGKvwERK9+9yf+PpfBMlpBaCHucXGPQfUA== + dependencies: + define-properties "^1.1.3" + es-abstract "^1.17.5" + + string.prototype.trimleft@^2.1.1: + version "2.1.2" + resolved "https://registry.yarnpkg.com/string.prototype.trimleft/-/string.prototype.trimleft-2.1.2.tgz#4408aa2e5d6ddd0c9a80739b087fbc067c03b3cc" + integrity sha512-gCA0tza1JBvqr3bfAIFJGqfdRTyPae82+KTnm3coDXkZN9wnuW3HjGgN386D7hfv5CHQYCI022/rJPVlqXyHSw== + dependencies: + define-properties "^1.1.3" + es-abstract "^1.17.5" + string.prototype.trimstart "^1.0.0" + + string.prototype.trimright@^2.1.1: + version "2.1.2" + resolved "https://registry.yarnpkg.com/string.prototype.trimright/-/string.prototype.trimright-2.1.2.tgz#c76f1cef30f21bbad8afeb8db1511496cfb0f2a3" + integrity sha512-ZNRQ7sY3KroTaYjRS6EbNiiHrOkjihL9aQE/8gfQ4DtAC/aEBRHFJa44OmoWxGGqXuJlfKkZW4WcXErGr+9ZFg== + dependencies: + define-properties "^1.1.3" + es-abstract "^1.17.5" + string.prototype.trimend "^1.0.0" + + string.prototype.trimstart@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.0.tgz#afe596a7ce9de905496919406c9734845f01a2f2" + integrity sha512-iCP8g01NFYiiBOnwG1Xc3WZLyoo+RuBymwIlWncShXDDJYWN6DbnM3odslBJdgCdRlq94B5s63NWAZlcn2CS4w== + dependencies: + define-properties "^1.1.3" + es-abstract "^1.17.5" + + string_decoder@~1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" + integrity sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg== + dependencies: + safe-buffer "~5.1.0" + + stringify-object@^3.3.0: + version "3.3.0" + resolved "https://registry.yarnpkg.com/stringify-object/-/stringify-object-3.3.0.tgz#703065aefca19300d3ce88af4f5b3956d7556629" + integrity sha512-rHqiFh1elqCQ9WPLIC8I0Q/g/wj5J1eMkyoiD6eoQApWHP0FtlK7rqnhmabL5VUY9JQCcqwwvlOaSuutekgyrw== + dependencies: + get-own-enumerable-property-symbols "^3.0.0" + is-obj "^1.0.1" + is-regexp "^1.0.0" + + strip-ansi@^3.0.0, strip-ansi@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" + integrity sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8= + dependencies: + ansi-regex "^2.0.0" + + strip-ansi@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" + integrity sha1-qEeQIusaw2iocTibY1JixQXuNo8= + dependencies: + ansi-regex "^3.0.0" + + strip-ansi@^5.0.0, strip-ansi@^5.1.0, strip-ansi@^5.2.0: + version "5.2.0" + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-5.2.0.tgz#8c9a536feb6afc962bdfa5b104a5091c1ad9c0ae" + integrity sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA== + dependencies: + ansi-regex "^4.1.0" + + strip-ansi@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.0.tgz#0b1571dd7669ccd4f3e06e14ef1eed26225ae532" + integrity sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w== + dependencies: + ansi-regex "^5.0.0" + + strip-bom@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" + integrity sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM= + + strip-bom@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-4.0.0.tgz#9c3505c1db45bcedca3d9cf7a16f5c5aa3901878" + integrity sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w== + + strip-eof@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" + integrity sha1-u0P/VZim6wXYm1n80SnJgzE2Br8= + + strip-final-newline@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/strip-final-newline/-/strip-final-newline-2.0.0.tgz#89b852fb2fcbe936f6f4b3187afb0a12c1ab58ad" + integrity sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA== + + strip-json-comments@^3.0.1: + version "3.1.0" + resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.0.tgz#7638d31422129ecf4457440009fba03f9f9ac180" + integrity sha512-e6/d0eBu7gHtdCqFt0xJr642LdToM5/cN4Qb9DbHjVx1CP5RyeM+zH7pbecEmDv/lBqb0QH+6Uqq75rxFPkM0w== + + strip-json-comments@~2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" + integrity sha1-PFMZQukIwml8DsNEhYwobHygpgo= + + sudo-prompt@^9.0.0: + version "9.1.1" + resolved "https://registry.yarnpkg.com/sudo-prompt/-/sudo-prompt-9.1.1.tgz#73853d729770392caec029e2470db9c221754db0" + integrity sha512-es33J1g2HjMpyAhz8lOR+ICmXXAqTuKbuXuUWLhOLew20oN9oUCgCJx615U/v7aioZg7IX5lIh9x34vwneu4pA== + + superagent@^3.8.3: + version "3.8.3" + resolved "https://registry.yarnpkg.com/superagent/-/superagent-3.8.3.tgz#460ea0dbdb7d5b11bc4f78deba565f86a178e128" + integrity sha512-GLQtLMCoEIK4eDv6OGtkOoSMt3D+oq0y3dsxMuYuDvaNUvuT8eFBuLmfR0iYYzHC1e8hpzC6ZsxbuP6DIalMFA== + dependencies: + component-emitter "^1.2.0" + cookiejar "^2.1.0" + debug "^3.1.0" + extend "^3.0.0" + form-data "^2.3.1" + formidable "^1.2.0" + methods "^1.1.1" + mime "^1.4.1" + qs "^6.5.1" + readable-stream "^2.3.5" + + supertest-session@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/supertest-session/-/supertest-session-4.0.0.tgz#3b442cbc37ede15a4acf7f8c570b836d880f8a40" + integrity sha512-9d7KAL+K9hnnicov7USv/Nu1tSl40qSrOsB8zZHOEtfEzHaAoID6tbl1NeCVUg7SJreJMlNn+KJ88V7FW8gD6Q== + dependencies: + object-assign "^4.0.1" + + supertest@^4.0.2: + version "4.0.2" + resolved "https://registry.yarnpkg.com/supertest/-/supertest-4.0.2.tgz#c2234dbdd6dc79b6f15b99c8d6577b90e4ce3f36" + integrity sha512-1BAbvrOZsGA3YTCWqbmh14L0YEq0EGICX/nBnfkfVJn7SrxQV1I3pMYjSzG9y/7ZU2V9dWqyqk2POwxlb09duQ== + dependencies: + methods "^1.1.2" + superagent "^3.8.3" + + supports-color@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" + integrity sha1-U10EXOa2Nj+kARcIRimZXp3zJMc= + + supports-color@^5.3.0, supports-color@^5.5.0: + version "5.5.0" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" + integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== + dependencies: + has-flag "^3.0.0" + + supports-color@^6.1.0: + version "6.1.0" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-6.1.0.tgz#0764abc69c63d5ac842dd4867e8d025e880df8f3" + integrity sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ== + dependencies: + has-flag "^3.0.0" + + supports-color@^7.0.0, supports-color@^7.1.0: + version "7.1.0" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.1.0.tgz#68e32591df73e25ad1c4b49108a2ec507962bfd1" + integrity sha512-oRSIpR8pxT1Wr2FquTNnGet79b3BWljqOuoW/h4oBhxJ/HUbX5nX6JSruTkvXDCFMwDPvsaTTbvMLKZWSy0R5g== + dependencies: + has-flag "^4.0.0" + + supports-hyperlinks@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/supports-hyperlinks/-/supports-hyperlinks-2.1.0.tgz#f663df252af5f37c5d49bbd7eeefa9e0b9e59e47" + integrity sha512-zoE5/e+dnEijk6ASB6/qrK+oYdm2do1hjoLWrqUC/8WEIW1gbxFcKuBof7sW8ArN6e+AYvsE8HBGiVRWL/F5CA== + dependencies: + has-flag "^4.0.0" + supports-color "^7.0.0" + + symbol-observable@1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-1.0.1.tgz#8340fc4702c3122df5d22288f88283f513d3fdd4" + integrity sha1-g0D8RwLDEi310iKI+IKD9RPT/dQ= + + symbol-observable@^1.0.2, symbol-observable@^1.0.4, symbol-observable@^1.1.0, symbol-observable@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-1.2.0.tgz#c22688aed4eab3cdc2dfeacbb561660560a00804" + integrity sha512-e900nM8RRtGhlV36KGEU9k65K3mPb1WV70OdjfxlG2EAuM1noi/E/BaW/uMhL7bPEssK8QV57vN3esixjUvcXQ== + + symbol-tree@^3.2.2: + version "3.2.4" + resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.4.tgz#430637d248ba77e078883951fb9aa0eed7c63fa2" + integrity sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw== + + table@^5.2.3: + version "5.4.6" + resolved "https://registry.yarnpkg.com/table/-/table-5.4.6.tgz#1292d19500ce3f86053b05f0e8e7e4a3bb21079e" + integrity sha512-wmEc8m4fjnob4gt5riFRtTu/6+4rSe12TpAELNSqHMfF3IqnA+CH37USM6/YR3qRZv7e56kAEAtd6nKZaxe0Ug== + dependencies: + ajv "^6.10.2" + lodash "^4.17.14" + slice-ansi "^2.1.0" + string-width "^3.0.0" + + tar@^4, tar@^4.4.2: + version "4.4.13" + resolved "https://registry.yarnpkg.com/tar/-/tar-4.4.13.tgz#43b364bc52888d555298637b10d60790254ab525" + integrity sha512-w2VwSrBoHa5BsSyH+KxEqeQBAllHhccyMFVHtGtdMpF4W7IRWfZjFiQceJPChOeTsSDVUpER2T8FA93pr0L+QA== + dependencies: + chownr "^1.1.1" + fs-minipass "^1.2.5" + minipass "^2.8.6" + minizlib "^1.2.1" + mkdirp "^0.5.0" + safe-buffer "^5.1.2" + yallist "^3.0.3" + + temp@0.8.3: + version "0.8.3" + resolved "https://registry.yarnpkg.com/temp/-/temp-0.8.3.tgz#e0c6bc4d26b903124410e4fed81103014dfc1f59" + integrity sha1-4Ma8TSa5AxJEEOT+2BEDAU38H1k= + dependencies: + os-tmpdir "^1.0.0" + rimraf "~2.2.6" + + term-size@^2.1.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/term-size/-/term-size-2.2.0.tgz#1f16adedfe9bdc18800e1776821734086fcc6753" + integrity sha512-a6sumDlzyHVJWb8+YofY4TW112G6p2FCPEAFk+59gIYHv3XHRhm9ltVQ9kli4hNWeQBwSpe8cRN25x0ROunMOw== + + terminal-link@^2.0.0: + version "2.1.1" + resolved "https://registry.yarnpkg.com/terminal-link/-/terminal-link-2.1.1.tgz#14a64a27ab3c0df933ea546fba55f2d078edc994" + integrity sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ== + dependencies: + ansi-escapes "^4.2.1" + supports-hyperlinks "^2.0.0" + + test-exclude@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-6.0.0.tgz#04a8698661d805ea6fa293b6cb9e63ac044ef15e" + integrity sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w== + dependencies: + "@istanbuljs/schema" "^0.1.2" + glob "^7.1.4" + minimatch "^3.0.4" + + text-table@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" + integrity sha1-f17oI66AUgfACvLfSoTsP8+lcLQ= + + throat@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/throat/-/throat-4.1.0.tgz#89037cbc92c56ab18926e6ba4cbb200e15672a6a" + integrity sha1-iQN8vJLFarGJJua6TLsgDhVnKmo= + + throat@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/throat/-/throat-5.0.0.tgz#c5199235803aad18754a667d659b5e72ce16764b" + integrity sha512-fcwX4mndzpLQKBS1DVYhGAcYaYt7vsHNIvQV+WXMvnow5cgjPphq5CaayLaGsjRdSCKZFNGt7/GYAuXaNOiYCA== + + through2@^2.0.0, through2@^2.0.1: + version "2.0.5" + resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.5.tgz#01c1e39eb31d07cb7d03a96a70823260b23132cd" + integrity sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ== + dependencies: + readable-stream "~2.3.6" + xtend "~4.0.1" + + through@^2.3.6: + version "2.3.8" + resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" + integrity sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU= + + time-stamp@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/time-stamp/-/time-stamp-1.1.0.tgz#764a5a11af50561921b133f3b44e618687e0f5c3" + integrity sha1-dkpaEa9QVhkhsTPztE5hhofg9cM= + + tiny-glob@^0.2.6: + version "0.2.6" + resolved "https://registry.yarnpkg.com/tiny-glob/-/tiny-glob-0.2.6.tgz#9e056e169d9788fe8a734dfa1ff02e9b92ed7eda" + integrity sha512-A7ewMqPu1B5PWwC3m7KVgAu96Ch5LA0w4SnEN/LbDREj/gAD0nPWboRbn8YoP9ISZXqeNAlMvKSKoEuhcfK3Pw== + dependencies: + globalyzer "^0.1.0" + globrex "^0.1.1" + + tiny-invariant@^1.0.2: + version "1.1.0" + resolved "https://registry.yarnpkg.com/tiny-invariant/-/tiny-invariant-1.1.0.tgz#634c5f8efdc27714b7f386c35e6760991d230875" + integrity sha512-ytxQvrb1cPc9WBEI/HSeYYoGD0kWnGEOR8RY6KomWLBVhqz0RgTwVO9dLrGz7dC+nN9llyI7OKAgRq8Vq4ZBSw== + + tiny-warning@^1.0.0: + version "1.0.3" + resolved "https://registry.yarnpkg.com/tiny-warning/-/tiny-warning-1.0.3.tgz#94a30db453df4c643d0fd566060d60a875d84754" + integrity sha512-lBN9zLN/oAf68o3zNXYrdCt1kP8WsiGW8Oo2ka41b2IM5JL/S1CTyX1rW0mb/zSuJun0ZUrDxx4sqvYS2FWzPA== + + tmp@^0.0.33: + version "0.0.33" + resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9" + integrity sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw== + dependencies: + os-tmpdir "~1.0.2" + + tmpl@1.0.x: + version "1.0.4" + resolved "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.4.tgz#23640dd7b42d00433911140820e5cf440e521dd1" + integrity sha1-I2QN17QtAEM5ERQIIOXPRA5SHdE= + + to-fast-properties@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47" + integrity sha1-uDVx+k2MJbguIxsG46MFXeTKGkc= + + to-fast-properties@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e" + integrity sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4= + + to-object-path@^0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/to-object-path/-/to-object-path-0.3.0.tgz#297588b7b0e7e0ac08e04e672f85c1f4999e17af" + integrity sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68= + dependencies: + kind-of "^3.0.2" + + to-readable-stream@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/to-readable-stream/-/to-readable-stream-1.0.0.tgz#ce0aa0c2f3df6adf852efb404a783e77c0475771" + integrity sha512-Iq25XBt6zD5npPhlLVXGFN3/gyR2/qODcKNNyTMd4vbm39HUaOiAM4PMq0eMVC/Tkxz+Zjdsc55g9yyz+Yq00Q== + + to-regex-range@^2.1.0: + version "2.1.1" + resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-2.1.1.tgz#7c80c17b9dfebe599e27367e0d4dd5590141db38" + integrity sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg= + dependencies: + is-number "^3.0.0" + repeat-string "^1.6.1" + + to-regex-range@^5.0.1: + version "5.0.1" + resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" + integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== + dependencies: + is-number "^7.0.0" + + to-regex@^3.0.1, to-regex@^3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/to-regex/-/to-regex-3.0.2.tgz#13cfdd9b336552f30b51f33a8ae1b42a7a7599ce" + integrity sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw== + dependencies: + define-property "^2.0.2" + extend-shallow "^3.0.2" + regex-not "^1.0.2" + safe-regex "^1.1.0" + + toidentifier@1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/toidentifier/-/toidentifier-1.0.0.tgz#7e1be3470f1e77948bc43d94a3c8f4d7752ba553" + integrity sha512-yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw== + + touch@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/touch/-/touch-3.1.0.tgz#fe365f5f75ec9ed4e56825e0bb76d24ab74af83b" + integrity sha512-WBx8Uy5TLtOSRtIq+M03/sKDrXCLHxwDcquSP2c43Le03/9serjQBIztjRz6FkJez9D/hleyAXTBGLwwZUw9lA== + dependencies: + nopt "~1.0.10" + + tough-cookie@^2.3.3, tough-cookie@~2.5.0: + version "2.5.0" + resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.5.0.tgz#cd9fb2a0aa1d5a12b473bd9fb96fa3dcff65ade2" + integrity sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g== + dependencies: + psl "^1.1.28" + punycode "^2.1.1" + + tough-cookie@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-3.0.1.tgz#9df4f57e739c26930a018184887f4adb7dca73b2" + integrity sha512-yQyJ0u4pZsv9D4clxO69OEjLWYw+jbgspjTue4lTQZLfV0c5l1VmK2y1JK8E9ahdpltPOaAThPcp5nKPUgSnsg== + dependencies: + ip-regex "^2.1.0" + psl "^1.1.28" + punycode "^2.1.1" + + tough-cookie@~2.4.3: + version "2.4.3" + resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.4.3.tgz#53f36da3f47783b0925afa06ff9f3b165280f781" + integrity sha512-Q5srk/4vDM54WJsJio3XNn6K2sCG+CQ8G5Wz6bZhRZoAe/+TxjWB/GlFAnYEbkYVlON9FMk/fE3h2RLpPXo4lQ== + dependencies: + psl "^1.1.24" + punycode "^1.4.1" + + tr46@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/tr46/-/tr46-1.0.1.tgz#a8b13fd6bfd2489519674ccde55ba3693b706d09" + integrity sha1-qLE/1r/SSJUZZ0zN5VujaTtwbQk= + dependencies: + punycode "^2.1.0" + + trim-right@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" + integrity sha1-yy4SAwZ+DI3h9hQJS5/kVwTqYAM= + + tsconfig-paths@^3.9.0: + version "3.9.0" + resolved "https://registry.yarnpkg.com/tsconfig-paths/-/tsconfig-paths-3.9.0.tgz#098547a6c4448807e8fcb8eae081064ee9a3c90b" + integrity sha512-dRcuzokWhajtZWkQsDVKbWyY+jgcLC5sqJhg2PSgf4ZkH2aHPvaOY8YWGhmjb68b5qqTfasSsDO9k7RUiEmZAw== + dependencies: + "@types/json5" "^0.0.29" + json5 "^1.0.1" + minimist "^1.2.0" + strip-bom "^3.0.0" + + tslib@^1.8.1, tslib@^1.9.0: + version "1.11.1" + resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.11.1.tgz#eb15d128827fbee2841549e171f45ed338ac7e35" + integrity sha512-aZW88SY8kQbU7gpV19lN24LtXh/yD4ZZg6qieAJDDg+YBsJcSmLGK9QpnUjAKVG/xefmvJGd1WUmfpT/g6AJGA== + + tsutils@^3.17.1: + version "3.17.1" + resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-3.17.1.tgz#ed719917f11ca0dee586272b2ac49e015a2dd759" + integrity sha512-kzeQ5B8H3w60nFY2g8cJIuH7JDpsALXySGtwGJ0p2LSjLgay3NdIpqq5SoOBe46bKDW2iq25irHCr8wjomUS2g== + dependencies: + tslib "^1.8.1" + + tunnel-agent@^0.6.0: + version "0.6.0" + resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" + integrity sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0= + dependencies: + safe-buffer "^5.0.1" + + tweetnacl@^0.14.3, tweetnacl@~0.14.0: + version "0.14.5" + resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" + integrity sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q= + + type-check@~0.3.2: + version "0.3.2" + resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" + integrity sha1-WITKtRLPHTVeP7eE8wgEsrUg23I= + dependencies: + prelude-ls "~1.1.2" + + type-detect@4.0.8: + version "4.0.8" + resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-4.0.8.tgz#7646fb5f18871cfbb7749e69bd39a6388eb7450c" + integrity sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g== + + type-fest@^0.11.0: + version "0.11.0" + resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.11.0.tgz#97abf0872310fed88a5c466b25681576145e33f1" + integrity sha512-OdjXJxnCN1AvyLSzeKIgXTXxV+99ZuXl3Hpo9XpJAv9MBcHrrJOQ5kV7ypXOuQie+AmWG25hLbiKdwYTifzcfQ== + + type-fest@^0.6.0: + version "0.6.0" + resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.6.0.tgz#8d2a2370d3df886eb5c90ada1c5bf6188acf838b" + integrity sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg== + + type-fest@^0.7.1: + version "0.7.1" + resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.7.1.tgz#8dda65feaf03ed78f0a3f9678f1869147f7c5c48" + integrity sha512-Ne2YiiGN8bmrmJJEuTWTLJR32nh/JdL1+PSicowtNb0WFpn59GK8/lfD61bVtzguz7b3PBt74nxpv/Pw5po5Rg== + + type-fest@^0.8.1: + version "0.8.1" + resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.8.1.tgz#09e249ebde851d3b1e48d27c105444667f17b83d" + integrity sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA== + + type-is@~1.6.17, type-is@~1.6.18: + version "1.6.18" + resolved "https://registry.yarnpkg.com/type-is/-/type-is-1.6.18.tgz#4e552cd05df09467dcbc4ef739de89f2cf37c131" + integrity sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g== + dependencies: + media-typer "0.3.0" + mime-types "~2.1.24" + + typedarray-to-buffer@^3.1.5: + version "3.1.5" + resolved "https://registry.yarnpkg.com/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz#a97ee7a9ff42691b9f783ff1bc5112fe3fca9080" + integrity sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q== + dependencies: + is-typedarray "^1.0.0" + + typedarray@^0.0.6: + version "0.0.6" + resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" + integrity sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c= + + typescript@^3.7.2: + version "3.8.3" + resolved "https://registry.yarnpkg.com/typescript/-/typescript-3.8.3.tgz#409eb8544ea0335711205869ec458ab109ee1061" + integrity sha512-MYlEfn5VrLNsgudQTVJeNaQFUAI7DkhnOjdpAp4T+ku1TfQClewlbSuTVHiA+8skNBgaf02TL/kLOvig4y3G8w== + + ua-parser-js@^0.7.18, ua-parser-js@^0.7.19: + version "0.7.21" + resolved "https://registry.yarnpkg.com/ua-parser-js/-/ua-parser-js-0.7.21.tgz#853cf9ce93f642f67174273cc34565ae6f308777" + integrity sha512-+O8/qh/Qj8CgC6eYBVBykMrNtp5Gebn4dlGD/kKXVkJNDwyrAwSIqwz8CDf+tsAIWVycKcku6gIXJ0qwx/ZXaQ== + + uglify-es@^3.1.9: + version "3.3.9" + resolved "https://registry.yarnpkg.com/uglify-es/-/uglify-es-3.3.9.tgz#0c1c4f0700bed8dbc124cdb304d2592ca203e677" + integrity sha512-r+MU0rfv4L/0eeW3xZrd16t4NZfK8Ld4SWVglYBb7ez5uXFWHuVRs6xCTrf1yirs9a4j4Y27nn7SRfO6v67XsQ== + dependencies: + commander "~2.13.0" + source-map "~0.6.1" + + uglify-js@^3.1.4: + version "3.8.1" + resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.8.1.tgz#43bb15ce6f545eaa0a64c49fd29375ea09fa0f93" + integrity sha512-W7KxyzeaQmZvUFbGj4+YFshhVrMBGSg2IbcYAjGWGvx8DHvJMclbTDMpffdxFUGPBHjIytk7KJUR/KUXstUGDw== + dependencies: + commander "~2.20.3" + source-map "~0.6.1" + + uid-safe@~2.1.5: + version "2.1.5" + resolved "https://registry.yarnpkg.com/uid-safe/-/uid-safe-2.1.5.tgz#2b3d5c7240e8fc2e58f8aa269e5ee49c0857bd3a" + integrity sha512-KPHm4VL5dDXKz01UuEd88Df+KzynaohSL9fBh096KWAxSKZQDI2uBrVqtvRM4rwrIrRRKsdLNML/lnaaVSRioA== + dependencies: + random-bytes "~1.0.0" + + ultron@1.0.x: + version "1.0.2" + resolved "https://registry.yarnpkg.com/ultron/-/ultron-1.0.2.tgz#ace116ab557cd197386a4e88f4685378c8b2e4fa" + integrity sha1-rOEWq1V80Zc4ak6I9GhTeMiy5Po= + + ultron@~1.1.0: + version "1.1.1" + resolved "https://registry.yarnpkg.com/ultron/-/ultron-1.1.1.tgz#9fe1536a10a664a65266a1e3ccf85fd36302bc9c" + integrity sha512-UIEXBNeYmKptWH6z8ZnqTeS8fV74zG0/eRU9VGkpzz+LIJNs8W/zM/L+7ctCkRrgbNnnR0xxw4bKOr0cW0N0Og== + + undefsafe@^2.0.2: + version "2.0.3" + resolved "https://registry.yarnpkg.com/undefsafe/-/undefsafe-2.0.3.tgz#6b166e7094ad46313b2202da7ecc2cd7cc6e7aae" + integrity sha512-nrXZwwXrD/T/JXeygJqdCO6NZZ1L66HrxM/Z7mIq2oPanoN0F1nLx3lwJMu6AwJY69hdixaFQOuoYsMjE5/C2A== + dependencies: + debug "^2.2.0" + + unicode-canonical-property-names-ecmascript@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-1.0.4.tgz#2619800c4c825800efdd8343af7dd9933cbe2818" + integrity sha512-jDrNnXWHd4oHiTZnx/ZG7gtUTVp+gCcTTKr8L0HjlwphROEW3+Him+IpvC+xcJEFegapiMZyZe02CyuOnRmbnQ== + + unicode-match-property-ecmascript@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-1.0.4.tgz#8ed2a32569961bce9227d09cd3ffbb8fed5f020c" + integrity sha512-L4Qoh15vTfntsn4P1zqnHulG0LdXgjSO035fEpdtp6YxXhMT51Q6vgM5lYdG/5X3MjS+k/Y9Xw4SFCY9IkR0rg== + dependencies: + unicode-canonical-property-names-ecmascript "^1.0.4" + unicode-property-aliases-ecmascript "^1.0.4" + + unicode-match-property-value-ecmascript@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-1.2.0.tgz#0d91f600eeeb3096aa962b1d6fc88876e64ea531" + integrity sha512-wjuQHGQVofmSJv1uVISKLE5zO2rNGzM/KCYZch/QQvez7C1hUhBIuZ701fYXExuufJFMPhv2SyL8CyoIfMLbIQ== + + unicode-property-aliases-ecmascript@^1.0.4: + version "1.1.0" + resolved "https://registry.yarnpkg.com/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-1.1.0.tgz#dd57a99f6207bedff4628abefb94c50db941c8f4" + integrity sha512-PqSoPh/pWetQ2phoj5RLiaqIk4kCNwoV3CI+LfGmWLKI3rE3kl1h59XpX2BjgDrmbxD9ARtQobPGU1SguCYuQg== + + unimodules-barcode-scanner-interface@~5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/unimodules-barcode-scanner-interface/-/unimodules-barcode-scanner-interface-5.0.0.tgz#c8965299fb0d4d4c1f323e7c3dd0314eaeeda8c1" + integrity sha512-8irSCD2UOxojD+3KzrsoGe/TlNOF4NQuCtlhCY5PjDU3SoBAZzSmlLfkz6nYs4iovNila0FZu4vE6msm9Ehdtw== + + unimodules-camera-interface@~5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/unimodules-camera-interface/-/unimodules-camera-interface-5.0.0.tgz#980b6ac221deea26badf92ee0baca91c546dc6b1" + integrity sha512-fe1Q1RZ6daKLtT5M87HdznBAV9qEsuHdPZVUWsLfizCXrHwCcRWErwb4RZoJC20Y11sj+kkLlE4W5fBJDn6/WA== + + unimodules-constants-interface@~5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/unimodules-constants-interface/-/unimodules-constants-interface-5.0.0.tgz#0e224fde9cf809ed7a026672180e3c96dc186f34" + integrity sha512-s7Fwe3MV6BCj+Sexwfrj9mLAzJlhMfOd/ZM9PNZG10nlTRw8uDxQq0VH1m8NuJqV1Ma2BUmQM7H3lBPe4EysYg== + + unimodules-face-detector-interface@~5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/unimodules-face-detector-interface/-/unimodules-face-detector-interface-5.0.0.tgz#4d8d63db954b849387e23b84df833945f21c11cc" + integrity sha512-6VrjHPu429tI54TrGZDQCNIdIXplSwmnJ4jsoVwpubluK+Z4pTRxbEuR3hKelGsvQCUzA38TDD94w7pGMwpe3A== + + unimodules-file-system-interface@~5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/unimodules-file-system-interface/-/unimodules-file-system-interface-5.0.0.tgz#890cb2c11c55dfccb4abd51cb3b7142bfd15adea" + integrity sha512-3MRHOigD39geBA6opGkWBoi6nSbFnAr6OWNWiCNN3z1KyFEgeGUFJtTUhzZ/gjsipHubwcWgWBlBSSZKIA7qPQ== + + unimodules-font-interface@~5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/unimodules-font-interface/-/unimodules-font-interface-5.0.0.tgz#c9d40f2fe94cc44493f4948d7701def6d2dacd04" + integrity sha512-S7S5JcOzqpEEt7fmqBkTkps5pg5InQRiu0KBv8txgQ6ZkW/OYjt4j5/fb6IkLB5RWEdm7Ji/xxmJLafRSj2bjA== + + unimodules-image-loader-interface@~5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/unimodules-image-loader-interface/-/unimodules-image-loader-interface-5.0.0.tgz#59d706367b3df0b0078b1ef510397ff91338256f" + integrity sha512-HzT+eqp1jgm9/KiJfAlb5p4rykQlMMo6eI4S626vRtFcywCr6yKN7y5vYT5jmSxR2QIWY/jLGrX4DSt9dCbYbg== + + unimodules-permissions-interface@~5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/unimodules-permissions-interface/-/unimodules-permissions-interface-5.0.0.tgz#567f3506875befa1f35a64654cf40a2ce9ae4036" + integrity sha512-ULtTRsGPSkXm1dELq0Eoq7RCReDYhu71NH2iWnnhmg8MZLykBInHw0bgcd0Fe7IYlRK3VXy8elldAIpFf3OKdw== + + unimodules-sensors-interface@~5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/unimodules-sensors-interface/-/unimodules-sensors-interface-5.0.0.tgz#42803532a95d9b6f13b4c08846d39a39144b3d7b" + integrity sha512-ilmeamfmbADXgq595VpJd+5tJLebfbwqMgwVxQ6/EX1niJkHgRk9iloYqx5QRKXwscwbGepIWXjMIv1/DNShQQ== + + unimodules-task-manager-interface@~5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/unimodules-task-manager-interface/-/unimodules-task-manager-interface-5.0.0.tgz#a43b573d319dd84ee526d5eb77b540b3ce5d50e0" + integrity sha512-t5M4sgZBl3i6iUO8PAzjD90bh5RyAdQfLf1GqSVsV8BJVEr1uKokGm6t7lq3E+PCC41ulpeiVApdXPImJywJdg== + + union-value@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/union-value/-/union-value-1.0.1.tgz#0b6fe7b835aecda61c6ea4d4f02c14221e109847" + integrity sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg== + dependencies: + arr-union "^3.1.0" + get-value "^2.0.6" + is-extendable "^0.1.1" + set-value "^2.0.1" + + unique-string@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/unique-string/-/unique-string-2.0.0.tgz#39c6451f81afb2749de2b233e3f7c5e8843bd89d" + integrity sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg== + dependencies: + crypto-random-string "^2.0.0" + + universalify@^0.1.0: + version "0.1.2" + resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.1.2.tgz#b646f69be3942dabcecc9d6639c80dc105efaa66" + integrity sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg== + + unpipe@1.0.0, unpipe@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec" + integrity sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw= + + unset-value@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/unset-value/-/unset-value-1.0.0.tgz#8376873f7d2335179ffb1e6fc3a8ed0dfc8ab559" + integrity sha1-g3aHP30jNRef+x5vw6jtDfyKtVk= + dependencies: + has-value "^0.3.1" + isobject "^3.0.0" + + update-notifier@^4.0.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/update-notifier/-/update-notifier-4.1.0.tgz#4866b98c3bc5b5473c020b1250583628f9a328f3" + integrity sha512-w3doE1qtI0/ZmgeoDoARmI5fjDoT93IfKgEGqm26dGUOh8oNpaSTsGNdYRN/SjOuo10jcJGwkEL3mroKzktkew== + dependencies: + boxen "^4.2.0" + chalk "^3.0.0" + configstore "^5.0.1" + has-yarn "^2.1.0" + import-lazy "^2.1.0" + is-ci "^2.0.0" + is-installed-globally "^0.3.1" + is-npm "^4.0.0" + is-yarn-global "^0.3.0" + latest-version "^5.0.0" + pupa "^2.0.1" + semver-diff "^3.1.1" + xdg-basedir "^4.0.0" + + uri-js@^4.2.2: + version "4.2.2" + resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.2.2.tgz#94c540e1ff772956e2299507c010aea6c8838eb0" + integrity sha512-KY9Frmirql91X2Qgjry0Wd4Y+YTdrdZheS8TFwvkbLWf/G5KNJDCh6pKL5OZctEW4+0Baa5idK2ZQuELRwPznQ== + dependencies: + punycode "^2.1.0" + + urix@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/urix/-/urix-0.1.0.tgz#da937f7a62e21fec1fd18d49b35c2935067a6c72" + integrity sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI= + + url-parse-lax@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/url-parse-lax/-/url-parse-lax-3.0.0.tgz#16b5cafc07dbe3676c1b1999177823d6503acb0c" + integrity sha1-FrXK/Afb42dsGxmZF3gj1lA6yww= + dependencies: + prepend-http "^2.0.0" + + url-parse@^1.4.4: + version "1.4.7" + resolved "https://registry.yarnpkg.com/url-parse/-/url-parse-1.4.7.tgz#a8a83535e8c00a316e403a5db4ac1b9b853ae278" + integrity sha512-d3uaVyzDB9tQoSXFvuSUNFibTd9zxd2bkVrDRvF5TmvWWQwqE4lgYJ5m+x1DbecWkw+LK4RNl2CU1hHuOKPVlg== + dependencies: + querystringify "^2.1.1" + requires-port "^1.0.0" + + use@^3.1.0: + version "3.1.1" + resolved "https://registry.yarnpkg.com/use/-/use-3.1.1.tgz#d50c8cac79a19fbc20f2911f56eb973f4e10070f" + integrity sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ== + + utf8@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/utf8/-/utf8-3.0.0.tgz#f052eed1364d696e769ef058b183df88c87f69d1" + integrity sha512-E8VjFIQ/TyQgp+TZfS6l8yp/xWppSAHzidGiRrqe4bK4XP9pTRyKFgGJpO3SN7zdX4DeomTrwaseCHovfpFcqQ== + + util-deprecate@~1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" + integrity sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8= + + utils-merge@1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.1.tgz#9f95710f50a267947b2ccc124741c1028427e713" + integrity sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM= + + uuid-js@^0.7.5: + version "0.7.5" + resolved "https://registry.yarnpkg.com/uuid-js/-/uuid-js-0.7.5.tgz#6c886d02a53d2d40dcf25d91a170b4a7b25b94d0" + integrity sha1-bIhtAqU9LUDc8l2RoXC0p7JblNA= + + uuid@^3.3.2: + version "3.4.0" + resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.4.0.tgz#b23e4358afa8a202fe7a100af1f5f883f02007ee" + integrity sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A== + + v8-compile-cache@^2.0.3: + version "2.1.0" + resolved "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.1.0.tgz#e14de37b31a6d194f5690d67efc4e7f6fc6ab30e" + integrity sha512-usZBT3PW+LOjM25wbqIlZwPeJV+3OSz3M1k1Ws8snlW39dZyYL9lOGC5FgPVHfk0jKmjiDV8Z0mIbVQPiwFs7g== + + v8-to-istanbul@^4.1.3: + version "4.1.3" + resolved "https://registry.yarnpkg.com/v8-to-istanbul/-/v8-to-istanbul-4.1.3.tgz#22fe35709a64955f49a08a7c7c959f6520ad6f20" + integrity sha512-sAjOC+Kki6aJVbUOXJbcR0MnbfjvBzwKZazEJymA2IX49uoOdEdk+4fBq5cXgYgiyKtAyrrJNtBZdOeDIF+Fng== + dependencies: + "@types/istanbul-lib-coverage" "^2.0.1" + convert-source-map "^1.6.0" + source-map "^0.7.3" + + validate-npm-package-license@^3.0.1: + version "3.0.4" + resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz#fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a" + integrity sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew== + dependencies: + spdx-correct "^3.0.0" + spdx-expression-parse "^3.0.0" + + value-equal@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/value-equal/-/value-equal-1.0.1.tgz#1e0b794c734c5c0cade179c437d356d931a34d6c" + integrity sha512-NOJ6JZCAWr0zlxZt+xqCHNTEKOsrks2HQd4MqhP1qy4z1SkbEP467eNx6TgDKXMvUOb+OENfJCZwM+16n7fRfw== + + vary@~1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.2.tgz#2299f02c6ded30d4a5961b0b9f74524a18f634fc" + integrity sha1-IpnwLG3tMNSllhsLn3RSShj2NPw= + + verror@1.10.0: + version "1.10.0" + resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400" + integrity sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA= + dependencies: + assert-plus "^1.0.0" + core-util-is "1.0.2" + extsprintf "^1.2.0" + + vlq@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/vlq/-/vlq-1.0.1.tgz#c003f6e7c0b4c1edd623fd6ee50bbc0d6a1de468" + integrity sha512-gQpnTgkubC6hQgdIcRdYGDSDc+SaujOdyesZQMv6JlfQee/9Mp0Qhnys6WxDWvQnL5WZdT7o2Ul187aSt0Rq+w== + + vscode-json-languageservice@^3.5.1: + version "3.5.2" + resolved "https://registry.yarnpkg.com/vscode-json-languageservice/-/vscode-json-languageservice-3.5.2.tgz#4b898140a8e581359c10660845a4cae15dcbb4f9" + integrity sha512-9cUvBq00O08lpWVVOx6tQ1yLxCHss79nsUdEAVYGomRyMbnPBmc0AkYPcXI9WK1EM6HBo0R9Zo3NjFhcICpy4A== + dependencies: + jsonc-parser "^2.2.1" + vscode-languageserver-textdocument "^1.0.1" + vscode-languageserver-types "^3.15.1" + vscode-nls "^4.1.1" + vscode-uri "^2.1.1" + + vscode-languageserver-textdocument@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/vscode-languageserver-textdocument/-/vscode-languageserver-textdocument-1.0.1.tgz#178168e87efad6171b372add1dea34f53e5d330f" + integrity sha512-UIcJDjX7IFkck7cSkNNyzIz5FyvpQfY7sdzVy+wkKN/BLaD4DQ0ppXQrKePomCxTS7RrolK1I0pey0bG9eh8dA== + + vscode-languageserver-types@^3.15.1: + version "3.15.1" + resolved "https://registry.yarnpkg.com/vscode-languageserver-types/-/vscode-languageserver-types-3.15.1.tgz#17be71d78d2f6236d414f0001ce1ef4d23e6b6de" + integrity sha512-+a9MPUQrNGRrGU630OGbYVQ+11iOIovjCkqxajPa9w57Sd5ruK8WQNsslzpa0x/QJqC8kRc2DUxWjIFwoNm4ZQ== + + vscode-nls@^4.1.1: + version "4.1.2" + resolved "https://registry.yarnpkg.com/vscode-nls/-/vscode-nls-4.1.2.tgz#ca8bf8bb82a0987b32801f9fddfdd2fb9fd3c167" + integrity sha512-7bOHxPsfyuCqmP+hZXscLhiHwe7CSuFE4hyhbs22xPIhQ4jv99FcR4eBzfYYVLP356HNFpdvz63FFb/xw6T4Iw== + + vscode-uri@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/vscode-uri/-/vscode-uri-2.1.1.tgz#5aa1803391b6ebdd17d047f51365cf62c38f6e90" + integrity sha512-eY9jmGoEnVf8VE8xr5znSah7Qt1P/xsCdErz+g8HYZtJ7bZqKH5E3d+6oVNm1AC/c6IHUDokbmVXKOi4qPAC9A== + + w3c-hr-time@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz#0a89cdf5cc15822df9c360543676963e0cc308cd" + integrity sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ== + dependencies: + browser-process-hrtime "^1.0.0" + + w3c-xmlserializer@^1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/w3c-xmlserializer/-/w3c-xmlserializer-1.1.2.tgz#30485ca7d70a6fd052420a3d12fd90e6339ce794" + integrity sha512-p10l/ayESzrBMYWRID6xbuCKh2Fp77+sA0doRuGn4tTIMrrZVeqfpKjXHY+oDh3K4nLdPgNwMTVP6Vp4pvqbNg== + dependencies: + domexception "^1.0.1" + webidl-conversions "^4.0.2" + xml-name-validator "^3.0.0" + + walker@^1.0.7, walker@~1.0.5: + version "1.0.7" + resolved "https://registry.yarnpkg.com/walker/-/walker-1.0.7.tgz#2f7f9b8fd10d677262b18a884e28d19618e028fb" + integrity sha1-L3+bj9ENZ3JisYqITijRlhjgKPs= + dependencies: + makeerror "1.0.x" + + wcwidth@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/wcwidth/-/wcwidth-1.0.1.tgz#f0b0dcf915bc5ff1528afadb2c0e17b532da2fe8" + integrity sha1-8LDc+RW8X/FSivrbLA4XtTLaL+g= + dependencies: + defaults "^1.0.3" + + webidl-conversions@^4.0.2: + version "4.0.2" + resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-4.0.2.tgz#a855980b1f0b6b359ba1d5d9fb39ae941faa63ad" + integrity sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg== + + whatwg-encoding@^1.0.1, whatwg-encoding@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz#5abacf777c32166a51d085d6b4f3e7d27113ddb0" + integrity sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw== + dependencies: + iconv-lite "0.4.24" + + whatwg-fetch@>=0.10.0, whatwg-fetch@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/whatwg-fetch/-/whatwg-fetch-3.0.0.tgz#fc804e458cc460009b1a2b966bc8817d2578aefb" + integrity sha512-9GSJUgz1D4MfyKU7KRqwOjXCXTqWdFNvEr7eUBYchQiVc744mqK/MzXPNR2WsPkmkOa4ywfg8C2n8h+13Bey1Q== + + whatwg-mimetype@^2.2.0, whatwg-mimetype@^2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz#3d4b1e0312d2079879f826aff18dbeeca5960fbf" + integrity sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g== + + whatwg-url@^7.0.0: + version "7.1.0" + resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-7.1.0.tgz#c2c492f1eca612988efd3d2266be1b9fc6170d06" + integrity sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg== + dependencies: + lodash.sortby "^4.7.0" + tr46 "^1.0.1" + webidl-conversions "^4.0.2" + + which-module@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a" + integrity sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho= + + which@^1.2.9, which@^1.3.0, which@^1.3.1: + version "1.3.1" + resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a" + integrity sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ== + dependencies: + isexe "^2.0.0" + + which@^2.0.1, which@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" + integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== + dependencies: + isexe "^2.0.0" + + wide-align@^1.1.0: + version "1.1.3" + resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.3.tgz#ae074e6bdc0c14a431e804e624549c633b000457" + integrity sha512-QGkOQc8XL6Bt5PwnsExKBPuMKBxnGxWWW3fU55Xt4feHozMUhdUMaBCk290qpm/wG5u/RSKzwdAC4i51YigihA== + dependencies: + string-width "^1.0.2 || 2" + + widest-line@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/widest-line/-/widest-line-3.1.0.tgz#8292333bbf66cb45ff0de1603b136b7ae1496eca" + integrity sha512-NsmoXalsWVDMGupxZ5R08ka9flZjjiLvHVAWYOKtiKM8ujtZWr9cRffak+uSE48+Ob8ObalXpwyeUiyDD6QFgg== + dependencies: + string-width "^4.0.0" + + word-wrap@~1.2.3: + version "1.2.3" + resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c" + integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ== + + wordwrap@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" + integrity sha1-J1hIEIkUVqQXHI0CJkQa3pDLyus= + + wrap-ansi@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" + integrity sha1-2Pw9KE3QV5T+hJc8rs3Rz4JP3YU= + dependencies: + string-width "^1.0.1" + strip-ansi "^3.0.1" + + wrap-ansi@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-3.0.1.tgz#288a04d87eda5c286e060dfe8f135ce8d007f8ba" + integrity sha1-KIoE2H7aXChuBg3+jxNc6NAH+Lo= + dependencies: + string-width "^2.1.1" + strip-ansi "^4.0.0" + + wrap-ansi@^5.1.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-5.1.0.tgz#1fd1f67235d5b6d0fee781056001bfb694c03b09" + integrity sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q== + dependencies: + ansi-styles "^3.2.0" + string-width "^3.0.0" + strip-ansi "^5.0.0" + + wrap-ansi@^6.2.0: + version "6.2.0" + resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-6.2.0.tgz#e9393ba07102e6c91a3b221478f0257cd2856e53" + integrity sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA== + dependencies: + ansi-styles "^4.0.0" + string-width "^4.1.0" + strip-ansi "^6.0.0" + + wrappy@1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" + integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8= + + write-file-atomic@^1.2.0: + version "1.3.4" + resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-1.3.4.tgz#f807a4f0b1d9e913ae7a48112e6cc3af1991b45f" + integrity sha1-+Aek8LHZ6ROuekgRLmzDrxmRtF8= + dependencies: + graceful-fs "^4.1.11" + imurmurhash "^0.1.4" + slide "^1.1.5" + + write-file-atomic@^3.0.0: + version "3.0.3" + resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-3.0.3.tgz#56bd5c5a5c70481cd19c571bd39ab965a5de56e8" + integrity sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q== + dependencies: + imurmurhash "^0.1.4" + is-typedarray "^1.0.0" + signal-exit "^3.0.2" + typedarray-to-buffer "^3.1.5" + + write@1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/write/-/write-1.0.3.tgz#0800e14523b923a387e415123c865616aae0f5c3" + integrity sha512-/lg70HAjtkUgWPVZhZcm+T4hkL8Zbtp1nFNOn3lRrxnlv50SRBv7cR7RqR+GMsd3hUXy9hWBo4CHTbFTcOYwig== + dependencies: + mkdirp "^0.5.1" + + ws@^1.1.0, ws@^1.1.5: + version "1.1.5" + resolved "https://registry.yarnpkg.com/ws/-/ws-1.1.5.tgz#cbd9e6e75e09fc5d2c90015f21f0c40875e0dd51" + integrity sha512-o3KqipXNUdS7wpQzBHSe180lBGO60SoK0yVo3CYJgb2MkobuWuBX6dhkYP5ORCLd55y+SaflMOV5fqAB53ux4w== + dependencies: + options ">=0.0.5" + ultron "1.0.x" + + ws@^3.3.1: + version "3.3.3" + resolved "https://registry.yarnpkg.com/ws/-/ws-3.3.3.tgz#f1cf84fe2d5e901ebce94efaece785f187a228f2" + integrity sha512-nnWLa/NwZSt4KQJu51MYlCcSQ5g7INpOrOMt4XV8j4dqTXdmlUmSHQ8/oLC069ckre0fRsgfvsKwbTdtKLCDkA== + dependencies: + async-limiter "~1.0.0" + safe-buffer "~5.1.0" + ultron "~1.1.0" + + ws@^7.0.0: + version "7.2.3" + resolved "https://registry.yarnpkg.com/ws/-/ws-7.2.3.tgz#a5411e1fb04d5ed0efee76d26d5c46d830c39b46" + integrity sha512-HTDl9G9hbkNDk98naoR/cHDws7+EyYMOdL1BmjsZXRUjf7d+MficC4B7HLUPlSiho0vg+CWKrGIt/VJBd1xunQ== + + xcode@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/xcode/-/xcode-2.1.0.tgz#bab64a7e954bb50ca8d19da7e09531c65a43ecfe" + integrity sha512-uCrmPITrqTEzhn0TtT57fJaNaw8YJs1aCzs+P/QqxsDbvPZSv7XMPPwXrKvHtD6pLjBM/NaVwraWJm8q83Y4iQ== + dependencies: + simple-plist "^1.0.0" + uuid "^3.3.2" + + xdg-basedir@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/xdg-basedir/-/xdg-basedir-4.0.0.tgz#4bc8d9984403696225ef83a1573cbbcb4e79db13" + integrity sha512-PSNhEJDejZYV7h50BohL09Er9VaIefr2LMAf3OEmpCkjOi34eYyQYAXUTjEQtZJTKcF0E2UKTh+osDLsgNim9Q== + + xhr@2.3.3: + version "2.3.3" + resolved "https://registry.yarnpkg.com/xhr/-/xhr-2.3.3.tgz#ad6b810e0917ce72b5ec704f5d41f1503b8e7524" + integrity sha1-rWuBDgkXznK17HBPXUHxUDuOdSQ= + dependencies: + global "~4.3.0" + is-function "^1.0.1" + parse-headers "^2.0.0" + xtend "^4.0.0" + + xml-name-validator@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-3.0.0.tgz#6ae73e06de4d8c6e47f9fb181f78d648ad457c6a" + integrity sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw== + + xmlbuilder@^9.0.7: + version "9.0.7" + resolved "https://registry.yarnpkg.com/xmlbuilder/-/xmlbuilder-9.0.7.tgz#132ee63d2ec5565c557e20f4c22df9aca686b10d" + integrity sha1-Ey7mPS7FVlxVfiD0wi35rKaGsQ0= + + xmlchars@^2.1.1: + version "2.2.0" + resolved "https://registry.yarnpkg.com/xmlchars/-/xmlchars-2.2.0.tgz#060fe1bcb7f9c76fe2a17db86a9bc3ab894210cb" + integrity sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw== + + xmldoc@^1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/xmldoc/-/xmldoc-1.1.2.tgz#6666e029fe25470d599cd30e23ff0d1ed50466d7" + integrity sha512-ruPC/fyPNck2BD1dpz0AZZyrEwMOrWTO5lDdIXS91rs3wtm4j+T8Rp2o+zoOYkkAxJTZRPOSnOGei1egoRmKMQ== + dependencies: + sax "^1.2.1" + + xmldom@0.1.x: + version "0.1.31" + resolved "https://registry.yarnpkg.com/xmldom/-/xmldom-0.1.31.tgz#b76c9a1bd9f0a9737e5a72dc37231cf38375e2ff" + integrity sha512-yS2uJflVQs6n+CyjHoaBmVSqIDevTAWrzMmjG1Gc7h1qQ7uVozNhEPJAwZXWyGQ/Gafo3fCwrcaokezLPupVyQ== + + xpipe@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/xpipe/-/xpipe-1.0.5.tgz#8dd8bf45fc3f7f55f0e054b878f43a62614dafdf" + integrity sha1-jdi/Rfw/f1Xw4FS4ePQ6YmFNr98= + + xregexp@^4.3.0: + version "4.3.0" + resolved "https://registry.yarnpkg.com/xregexp/-/xregexp-4.3.0.tgz#7e92e73d9174a99a59743f67a4ce879a04b5ae50" + integrity sha512-7jXDIFXh5yJ/orPn4SXjuVrWWoi4Cr8jfV1eHv9CixKSbU+jY4mxfrBwAuDvupPNKpMUY+FeIqsVw/JLT9+B8g== + dependencies: + "@babel/runtime-corejs3" "^7.8.3" + + xtend@^4.0.0, xtend@~4.0.1: + version "4.0.2" + resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54" + integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ== + + y18n@^3.2.1: + version "3.2.1" + resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" + integrity sha1-bRX7qITAhnnA136I53WegR4H+kE= + + "y18n@^3.2.1 || ^4.0.0", y18n@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/y18n/-/y18n-4.0.0.tgz#95ef94f85ecc81d007c264e190a120f0a3c8566b" + integrity sha512-r9S/ZyXu/Xu9q1tYlpsLIsa3EeLXXk0VwlxqTcFRfg9EhMW+17kbt9G0NrgCmhGb5vT2hyhJZLfDGx+7+5Uj/w== + + yallist@^2.1.2: + version "2.1.2" + resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" + integrity sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI= + + yallist@^3.0.0, yallist@^3.0.3: + version "3.1.1" + resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.1.1.tgz#dbb7daf9bfd8bac9ab45ebf602b8cbad0d5d08fd" + integrity sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g== + + yaml@^1.7.2: + version "1.8.3" + resolved "https://registry.yarnpkg.com/yaml/-/yaml-1.8.3.tgz#2f420fca58b68ce3a332d0ca64be1d191dd3f87a" + integrity sha512-X/v7VDnK+sxbQ2Imq4Jt2PRUsRsP7UcpSl3Llg6+NRRqWLIvxkMFYtH1FmvwNGYRKKPa+EPA4qDBlI9WVG1UKw== + dependencies: + "@babel/runtime" "^7.8.7" + + yargs-parser@^11.1.1: + version "11.1.1" + resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-11.1.1.tgz#879a0865973bca9f6bab5cbdf3b1c67ec7d3bcf4" + integrity sha512-C6kB/WJDiaxONLJQnF8ccx9SEeoTTLek8RVbaOIsrAUS8VrBEXfmeSnCZxygc+XC2sNMBIwOOnfcxiynjHsVSQ== + dependencies: + camelcase "^5.0.0" + decamelize "^1.2.0" + + yargs-parser@^13.1.2: + version "13.1.2" + resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-13.1.2.tgz#130f09702ebaeef2650d54ce6e3e5706f7a4fb38" + integrity sha512-3lbsNRf/j+A4QuSZfDRA7HRSfWrzO0YjqTJd5kjAq37Zep1CEgaYmrH9Q3GwPiB9cHyd1Y1UwggGhJGoxipbzg== + dependencies: + camelcase "^5.0.0" + decamelize "^1.2.0" + + yargs-parser@^18.1.1: + version "18.1.3" + resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-18.1.3.tgz#be68c4975c6b2abf469236b0c870362fab09a7b0" + integrity sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ== + dependencies: + camelcase "^5.0.0" + decamelize "^1.2.0" + + yargs-parser@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-7.0.0.tgz#8d0ac42f16ea55debd332caf4c4038b3e3f5dfd9" + integrity sha1-jQrELxbqVd69MyyvTEA4s+P139k= + dependencies: + camelcase "^4.1.0" + + yargs@^12.0.5: + version "12.0.5" + resolved "https://registry.yarnpkg.com/yargs/-/yargs-12.0.5.tgz#05f5997b609647b64f66b81e3b4b10a368e7ad13" + integrity sha512-Lhz8TLaYnxq/2ObqHDql8dX8CJi97oHxrjUcYtzKbbykPtVW9WB+poxI+NM2UIzsMgNCZTIf0AQwsjK5yMAqZw== + dependencies: + cliui "^4.0.0" + decamelize "^1.2.0" + find-up "^3.0.0" + get-caller-file "^1.0.1" + os-locale "^3.0.0" + require-directory "^2.1.1" + require-main-filename "^1.0.1" + set-blocking "^2.0.0" + string-width "^2.0.0" + which-module "^2.0.0" + y18n "^3.2.1 || ^4.0.0" + yargs-parser "^11.1.1" + + yargs@^13.2.2: + version "13.3.2" + resolved "https://registry.yarnpkg.com/yargs/-/yargs-13.3.2.tgz#ad7ffefec1aa59565ac915f82dccb38a9c31a2dd" + integrity sha512-AX3Zw5iPruN5ie6xGRIDgqkT+ZhnRlZMLMHAs8tg7nRruy2Nb+i5o9bwghAogtM08q1dpr2LVoS8KSTMYpWXUw== + dependencies: + cliui "^5.0.0" + find-up "^3.0.0" + get-caller-file "^2.0.1" + require-directory "^2.1.1" + require-main-filename "^2.0.0" + set-blocking "^2.0.0" + string-width "^3.0.0" + which-module "^2.0.0" + y18n "^4.0.0" + yargs-parser "^13.1.2" + + yargs@^15.3.1: + version "15.3.1" + resolved "https://registry.yarnpkg.com/yargs/-/yargs-15.3.1.tgz#9505b472763963e54afe60148ad27a330818e98b" + integrity sha512-92O1HWEjw27sBfgmXiixJWT5hRBp2eobqXicLtPBIDBhYB+1HpwZlXmbW2luivBJHBzki+7VyCLRtAkScbTBQA== + dependencies: + cliui "^6.0.0" + decamelize "^1.2.0" + find-up "^4.1.0" + get-caller-file "^2.0.1" + require-directory "^2.1.1" + require-main-filename "^2.0.0" + set-blocking "^2.0.0" + string-width "^4.2.0" + which-module "^2.0.0" + y18n "^4.0.0" + yargs-parser "^18.1.1" + + yargs@^9.0.0: + version "9.0.1" + resolved "https://registry.yarnpkg.com/yargs/-/yargs-9.0.1.tgz#52acc23feecac34042078ee78c0c007f5085db4c" + integrity sha1-UqzCP+7Kw0BCB47njAwAf1CF20w= + dependencies: + camelcase "^4.1.0" + cliui "^3.2.0" + decamelize "^1.1.1" + get-caller-file "^1.0.1" + os-locale "^2.0.0" + read-pkg-up "^2.0.0" + require-directory "^2.1.1" + require-main-filename "^1.0.1" + set-blocking "^2.0.0" + string-width "^2.0.0" + which-module "^2.0.0" + y18n "^3.2.1" + yargs-parser "^7.0.0" diff --git a/yarn.lock b/yarn.lock index a8b0c65a..b0b748be 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2694,7 +2694,12 @@ balanced-match@^1.0.0: resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" integrity sha1-ibTRmasr7kneFk6gK4nORi1xt2c= -base64-js@^1.1.2, base64-js@^1.2.3, base64-js@^1.3.0: +base-64@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/base-64/-/base-64-0.1.0.tgz#780a99c84e7d600260361511c4877613bf24f6bb" + integrity sha1-eAqZyE59YAJgNhURxId2E78k9rs= + +base64-js@^1.1.2, base64-js@^1.2.0, base64-js@^1.2.3, base64-js@^1.3.0: version "1.3.1" resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.3.1.tgz#58ece8cb75dd07e71ed08c736abc5fac4dbf8df1" integrity sha512-mLQ4i2QO1ytvGWFWmcngKO//JXAQueZvwEKtjgQFM4jIK0kU+ytMfplL8j+n5mspOfjHwoAg+9yhb7BwAHm36g== @@ -2942,6 +2947,15 @@ camelcase@^5.0.0, camelcase@^5.3.1: resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320" integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg== +canvas@^2.2.0, canvas@^2.6.1: + version "2.6.1" + resolved "https://registry.yarnpkg.com/canvas/-/canvas-2.6.1.tgz#0d087dd4d60f5a5a9efa202757270abea8bef89e" + integrity sha512-S98rKsPcuhfTcYbtF53UIJhcbgIAK533d1kJKMwsMwAIFgfd58MOyxRud3kktlzWiEkFliaJtvyZCBtud/XVEA== + dependencies: + nan "^2.14.0" + node-pre-gyp "^0.11.0" + simple-get "^3.0.3" + capture-exit@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/capture-exit/-/capture-exit-2.0.0.tgz#fb953bfaebeb781f62898239dabb426d08a509a4" @@ -3462,6 +3476,11 @@ csstype@^2.2.0: resolved "https://registry.yarnpkg.com/csstype/-/csstype-2.6.10.tgz#e63af50e66d7c266edb6b32909cfd0aabe03928b" integrity sha512-D34BqZU4cIlMCY93rZHbrq9pjTAQJ3U8S8rfBqjwHxkGPThWFjzZDQpgMJY0QViLxth6ZKYiwFBo14RdN44U/w== +ctx-polyfill@^1.1.4: + version "1.1.4" + resolved "https://registry.yarnpkg.com/ctx-polyfill/-/ctx-polyfill-1.1.4.tgz#08420bc5c540d08ac36d05720ca503c65e302d65" + integrity sha1-CEILxcVA0IrDbQVyDKUDxl4wLWU= + damerau-levenshtein@^1.0.4: version "1.0.6" resolved "https://registry.yarnpkg.com/damerau-levenshtein/-/damerau-levenshtein-1.0.6.tgz#143c1641cb3d85c60c32329e26899adea8701791" @@ -3536,6 +3555,13 @@ decompress-response@^3.3.0: dependencies: mimic-response "^1.0.0" +decompress-response@^4.2.0: + version "4.2.1" + resolved "https://registry.yarnpkg.com/decompress-response/-/decompress-response-4.2.1.tgz#414023cc7a302da25ce2ec82d0d5238ccafd8986" + integrity sha512-jOSne2qbyE+/r8G1VU+G/82LBs2Fs4LAsTiLSHOCOMZQl2OKZ6i8i4IyHemTe+/yIXOtTcRQMzPcgyhoFlqPkw== + dependencies: + mimic-response "^2.0.0" + dedent@^0.7.0: version "0.7.0" resolved "https://registry.yarnpkg.com/dedent/-/dedent-0.7.0.tgz#2495ddbaf6eb874abb0e1be9df22d2e5a544326c" @@ -3750,6 +3776,11 @@ eme-encryption-scheme-polyfill@^2.0.1: resolved "https://registry.yarnpkg.com/eme-encryption-scheme-polyfill/-/eme-encryption-scheme-polyfill-2.0.1.tgz#b080b01bffd74c75c9cf8044c1cabedf3b83954f" integrity sha512-Wz+Ro1c0/2Wsx2RLFvTOO0m4LvYn+7cSnq3XOvRvLLBq8jbvUACH/zpU9s0/5+mQa5oaelkU69x+q0z/iWYrFA== +emitter-component@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/emitter-component/-/emitter-component-1.1.1.tgz#065e2dbed6959bf470679edabeaf7981d1003ab6" + integrity sha1-Bl4tvtaVm/RwZ57avq95gdEAOrY= + emoji-regex@^7.0.1, emoji-regex@^7.0.2: version "7.0.3" resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-7.0.3.tgz#933a04052860c85e83c122479c4748a8e4c72156" @@ -3840,6 +3871,11 @@ escape-html@~1.0.3: resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988" integrity sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg= +escape-string-regexp@2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz#a30304e99daa32e23b2fd20f51babd07cffca344" + integrity sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w== + escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: version "1.0.5" resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" @@ -4733,6 +4769,13 @@ getpass@^0.1.1: dependencies: assert-plus "^1.0.0" +gifencoder@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/gifencoder/-/gifencoder-2.0.1.tgz#fd363402e506529494757856aa66196697ee6bd4" + integrity sha512-x19DcyWY10SkshBpokqFOo/HBht9GB75evRYvaLMbez9p+yB/o+kt0fK9AwW59nFiAMs2UUQsjv1lX/hvu9Ong== + dependencies: + canvas "^2.2.0" + glob-parent@^5.0.0, glob-parent@~5.1.0: version "5.1.1" resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.1.tgz#b6c1ef417c4e5663ea498f1c45afac6916bbc229" @@ -5098,6 +5141,11 @@ iconv-lite@0.4.24, iconv-lite@^0.4.17, iconv-lite@^0.4.24, iconv-lite@^0.4.4, ic dependencies: safer-buffer ">= 2.1.2 < 3" +ieee754@^1.1.8: + version "1.1.13" + resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.13.tgz#ec168558e95aa181fd87d37f55c32bbcb6708b84" + integrity sha512-4vf7I2LYV/HaWerSo3XmlMkp5eZ83i+/CDluXi/IGTs/O1sejBNhTtnxzmRZfvOUqj7lZjqHkeTvpgSFDlWZTg== + ignore-by-default@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/ignore-by-default/-/ignore-by-default-1.0.1.tgz#48ca6d72f6c6a3af00a9ad4ae6876be3889e2b09" @@ -5237,7 +5285,7 @@ internal-slot@^1.0.2: has "^1.0.3" side-channel "^1.0.2" -invariant@^2.2.0, invariant@^2.2.2, invariant@^2.2.4: +invariant@2.2.4, invariant@^2.2.0, invariant@^2.2.2, invariant@^2.2.4: version "2.2.4" resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.4.tgz#610f3c92c9359ce1db616e538008d23ff35158e6" integrity sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA== @@ -6990,6 +7038,11 @@ mimic-response@^1.0.0, mimic-response@^1.0.1: resolved "https://registry.yarnpkg.com/mimic-response/-/mimic-response-1.0.1.tgz#4923538878eef42063cb8a3e3b0798781487ab1b" integrity sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ== +mimic-response@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/mimic-response/-/mimic-response-2.1.0.tgz#d13763d35f613d09ec37ebb30bac0469c0ee8f43" + integrity sha512-wXqjST+SLt7R009ySCglWBCFpjUygmCIfD790/kVbiGmUgfYGuB14PiTd5DwVxSV4NcYHjzMkoj5LjQZwTQLEA== + min-document@^2.19.0: version "2.19.0" resolved "https://registry.yarnpkg.com/min-document/-/min-document-2.19.0.tgz#7bd282e3f5842ed295bb748cdd9f1ffa2c824685" @@ -7080,6 +7133,11 @@ nan@2.14.0, nan@^2.12.1: resolved "https://registry.yarnpkg.com/nan/-/nan-2.14.0.tgz#7818f722027b2459a86f0295d434d1fc2336c52c" integrity sha512-INOFj37C7k3AfaNTtX8RhsTw7qRy7eLET14cROi9+5HAVbbHuIWUHEauBv5qT4Av2tWasiTY1Jw6puUNqRJXQg== +nan@^2.14.0: + version "2.14.1" + resolved "https://registry.yarnpkg.com/nan/-/nan-2.14.1.tgz#d7be34dfa3105b91494c3147089315eff8874b01" + integrity sha512-isWHgVjnFjh2x2yuJ/tj3JbwoHu3UC2dX5G/88Cm24yB6YopVgxvBObDY7n5xW6ExmFhJpSEQqFPvq9zaXc8Jw== + nanomatch@^1.2.9: version "1.2.13" resolved "https://registry.yarnpkg.com/nanomatch/-/nanomatch-1.2.13.tgz#b87a8aa4fc0de8fe6be88895b38983ff265bd119" @@ -7192,6 +7250,22 @@ node-pre-gyp@0.14.0: semver "^5.3.0" tar "^4.4.2" +node-pre-gyp@^0.11.0: + version "0.11.0" + resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.11.0.tgz#db1f33215272f692cd38f03238e3e9b47c5dd054" + integrity sha512-TwWAOZb0j7e9eGaf9esRx3ZcLaE5tQ2lvYy1pb5IAaG1a2e2Kv5Lms1Y4hpj+ciXJRofIxxlt5haeQ/2ANeE0Q== + dependencies: + detect-libc "^1.0.2" + mkdirp "^0.5.1" + needle "^2.2.1" + nopt "^4.0.1" + npm-packlist "^1.1.6" + npmlog "^4.0.2" + rc "^1.2.7" + rimraf "^2.6.1" + semver "^5.3.0" + tar "^4" + nodemailer@^6.4.6: version "6.4.6" resolved "https://registry.yarnpkg.com/nodemailer/-/nodemailer-6.4.6.tgz#d37f504f6560b36616f646a606894fe18819107f" @@ -8099,6 +8173,13 @@ react-native-camera@^3.23.1: dependencies: prop-types "^15.6.2" +react-native-canvas@^0.1.37: + version "0.1.37" + resolved "https://registry.yarnpkg.com/react-native-canvas/-/react-native-canvas-0.1.37.tgz#62381f685effcd3263d10f13b4174a8c5b533dcf" + integrity sha512-8W3YlS9WoxQeyK7/fjzlVIOcAqigE5pscn9xoU7rSYyzOJ69h5LjDlytjgZ6i7G7KqCRTarVIYJL8dAuER1OVQ== + dependencies: + ctx-polyfill "^1.1.4" + react-native-confirmation-code-field@^6.0.0: version "6.0.0" resolved "https://registry.yarnpkg.com/react-native-confirmation-code-field/-/react-native-confirmation-code-field-6.0.0.tgz#bc5e84cbe9bb9be85b5df2ab2d4e73a8084bc013" @@ -8135,6 +8216,14 @@ react-native-ffmpeg@^0.4.4: resolved "https://registry.yarnpkg.com/react-native-ffmpeg/-/react-native-ffmpeg-0.4.4.tgz#9f4dbda53c96078cecbbe83a866d4b535b957131" integrity sha512-MUBV3Xvto1Hl049Y9EaOZdjazkK1ixQzCzPEt1o7V2duSOrM2kJ2o/RiC4rSRgapU2uqYRHMZ6X4JJI7y40qXw== +react-native-fs@^2.16.6: + version "2.16.6" + resolved "https://registry.yarnpkg.com/react-native-fs/-/react-native-fs-2.16.6.tgz#2901789a43210a35a0ef0a098019bbef3af395fd" + integrity sha512-ZWOooD1AuFoAGY3HS2GY7Qx2LZo4oIg6AK0wbC68detxwvX75R/q9lRqThXNKP6vIo2VHWa0fYUo/SrLw80E8w== + dependencies: + base-64 "^0.1.0" + utf8 "^3.0.0" + react-native-gesture-handler@~1.5.0: version "1.5.6" resolved "https://registry.yarnpkg.com/react-native-gesture-handler/-/react-native-gesture-handler-1.5.6.tgz#5d90145f624e3707db2930f43ab41579683e2375" @@ -8201,6 +8290,14 @@ react-native-status-bar-height@^2.2.0: resolved "https://registry.yarnpkg.com/react-native-status-bar-height/-/react-native-status-bar-height-2.5.0.tgz#bc0fb85230603850aab9667ee8111a62954de90c" integrity sha512-sYBCPYA/NapBSHkdm/IVL4ID3LLlIuLqINi2FBDyMkc2BU9pfSGOtkz9yfxoK39mYJuTrlTOQ7mManARUsYDSA== +react-native-stream@^0.1.9: + version "0.1.9" + resolved "https://registry.yarnpkg.com/react-native-stream/-/react-native-stream-0.1.9.tgz#13680cce893ca7d34a86664d9d5b4ee1a772c97c" + integrity sha1-E2gMzok8p9NKhmZNnVtO4adyyXw= + dependencies: + base64-js "^1.2.0" + ieee754 "^1.1.8" + react-native-tab-view@^2.11.0: version "2.14.0" resolved "https://registry.yarnpkg.com/react-native-tab-view/-/react-native-tab-view-2.14.0.tgz#dd801f82fdb8e92fce9688b78d13923f3a5a2b3f" @@ -8264,6 +8361,14 @@ react-native-web@^0.11.7: prop-types "^15.6.0" react-timer-mixin "^0.13.4" +react-native-webview@^9.4.0: + version "9.4.0" + resolved "https://registry.yarnpkg.com/react-native-webview/-/react-native-webview-9.4.0.tgz#108da34a6c7e1c032dcabc942b7e4947ca1d8028" + integrity sha512-BBOFUuza0p04+7fNi7TJmB0arpDJzGxHYwTCgI4vj5n/fl7u4jbm7ETp88mf7lo9lP6C6HGLo38KnEy1aXCQkg== + dependencies: + escape-string-regexp "2.0.0" + invariant "2.2.4" + react-native@~0.61.4: version "0.61.5" resolved "https://registry.yarnpkg.com/react-native/-/react-native-0.61.5.tgz#6e21acb56cbd75a3baeb1f70201a66f42600bba8" @@ -9037,6 +9142,20 @@ signal-exit@^3.0.0, signal-exit@^3.0.2: resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.3.tgz#a1410c2edd8f077b08b4e253c8eacfcaf057461c" integrity sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA== +simple-concat@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/simple-concat/-/simple-concat-1.0.0.tgz#7344cbb8b6e26fb27d66b2fc86f9f6d5997521c6" + integrity sha1-c0TLuLbib7J9ZrL8hvn21Zl1IcY= + +simple-get@^3.0.3: + version "3.1.0" + resolved "https://registry.yarnpkg.com/simple-get/-/simple-get-3.1.0.tgz#b45be062435e50d159540b576202ceec40b9c6b3" + integrity sha512-bCR6cP+aTdScaQCnQKbPKtJOKDp/hj9EDLJo3Nw4y1QksqaovlW/bnptB6/c1e+qmNIDHRK+oXFDdEqBT8WzUA== + dependencies: + decompress-response "^4.2.0" + once "^1.3.1" + simple-concat "^1.0.0" + simple-plist@^1.0.0: version "1.1.0" resolved "https://registry.yarnpkg.com/simple-plist/-/simple-plist-1.1.0.tgz#8354ab63eb3922a054c78ce96c209c532e907a23" @@ -9257,6 +9376,13 @@ stream-buffers@~2.2.0: resolved "https://registry.yarnpkg.com/stream-buffers/-/stream-buffers-2.2.0.tgz#91d5f5130d1cef96dcfa7f726945188741d09ee4" integrity sha1-kdX1Ew0c75bc+n9yaUUYh0HQnuQ= +stream@0.0.2: + version "0.0.2" + resolved "https://registry.yarnpkg.com/stream/-/stream-0.0.2.tgz#7f5363f057f6592c5595f00bc80a27f5cec1f0ef" + integrity sha1-f1Nj8Ff2WSxVlfALyAon9c7B8O8= + dependencies: + emitter-component "^1.1.1" + strict-uri-encode@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/strict-uri-encode/-/strict-uri-encode-2.0.0.tgz#b9c7330c7042862f6b142dc274bbcc5866ce3546" @@ -9533,7 +9659,7 @@ table@^5.2.3: slice-ansi "^2.1.0" string-width "^3.0.0" -tar@^4.4.2: +tar@^4, tar@^4.4.2: version "4.4.13" resolved "https://registry.yarnpkg.com/tar/-/tar-4.4.13.tgz#43b364bc52888d555298637b10d60790254ab525" integrity sha512-w2VwSrBoHa5BsSyH+KxEqeQBAllHhccyMFVHtGtdMpF4W7IRWfZjFiQceJPChOeTsSDVUpER2T8FA93pr0L+QA== @@ -10035,6 +10161,11 @@ use@^3.1.0: resolved "https://registry.yarnpkg.com/use/-/use-3.1.1.tgz#d50c8cac79a19fbc20f2911f56eb973f4e10070f" integrity sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ== +utf8@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/utf8/-/utf8-3.0.0.tgz#f052eed1364d696e769ef058b183df88c87f69d1" + integrity sha512-E8VjFIQ/TyQgp+TZfS6l8yp/xWppSAHzidGiRrqe4bK4XP9pTRyKFgGJpO3SN7zdX4DeomTrwaseCHovfpFcqQ== + util-deprecate@~1.0.1: version "1.0.2" resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf"